Skip to content

Commit

Permalink
Update fixture to include new JS
Browse files Browse the repository at this point in the history
  • Loading branch information
gibson042 committed Aug 27, 2024
1 parent d388f7b commit b77b1ae
Showing 1 changed file with 23 additions and 6 deletions.
29 changes: 23 additions & 6 deletions test/baselines/generated-reference/assets-inline.html
Original file line number Diff line number Diff line change
Expand Up @@ -1467,6 +1467,7 @@
const extraIndent = ' '.repeat(markerText.length + 2);
marker.textContent = `${indent}${markerText}. `;
marker.setAttribute('aria-hidden', 'true');
marker.setAttribute('class', 'list-marker');
const attributesContainer = li.querySelector('.attributes-tag');
if (attributesContainer == null) {
li.prepend(marker);
Expand All @@ -1488,6 +1489,7 @@
// Omit indendation when copying a single algorithm step.
document.addEventListener('copy', evt => {
// Construct a DOM from the selection.
const doc = document.implementation.createHTMLDocument('');
const domRoot = doc.createElement('div');
const html = evt.clipboardData.getData('text/html');
Expand All @@ -1497,18 +1499,33 @@
const selection = getSelection();
const singleRange = selection?.rangeCount === 1 && selection.getRangeAt(0);
const container = singleRange?.commonAncestorContainer;
if (!container?.querySelector?.("span[aria-hidden='true']")) {
if (!container?.querySelector?.('.list-marker')) {
return;
}
domRoot.append(singleRange.cloneContents());
}
const hiddenElems = [...domRoot.querySelectorAll("span[aria-hidden='true']")];
const lastHidden = hiddenElems.at(-1);
if (lastHidden?.parentNode !== domRoot || lastHidden.previousSibling) {
// Manipulation is not appropriate, either because there is more than one
// hidden element or because the only one is not at the beginning.
// Preserve the indentation if there is no hidden list marker, or if selection
// of more than one step is indicated by either multiple such markers or by
// visible text before the first one.
const listMarkers = domRoot.querySelectorAll('.list-marker');
if (listMarkers.length !== 1) {
return;
}
const treeWalker = document.createTreeWalker(domRoot, undefined, {
acceptNode(node) {
return node.nodeType === Node.TEXT_NODE || node === listMarkers[0]
? NodeFilter.FILTER_ACCEPT
: NodeFilter.FILTER_SKIP;
},
});
while (treeWalker.nextNode()) {
const node = treeWalker.currentNode;
if (node.nodeType === Node.ELEMENT_NODE) break;
if (node.data) return;
}
// Strip leading indentation from the plain text representation.
evt.clipboardData.setData('text/plain', domRoot.textContent.trimStart());
if (!html) {
evt.clipboardData.setData('text/html', domRoot.innerHTML);
Expand Down

0 comments on commit b77b1ae

Please sign in to comment.