mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-19 10:20:22 +00:00
Other browsers such as Chrome and Firefox retain the text's color when the text is part of a selection, so let's mimic them.
11 lines
447 B
HTML
11 lines
447 B
HTML
<!DOCTYPE html>
|
|
<link rel="match" href="../expected/selection-start-in-end-node-ref.html" />
|
|
<meta name="fuzzy" content="maxDifference=0-1;totalPixels=0-268">
|
|
<!-- The text after the end node must not be selected. -->
|
|
<span id="end">End Node <span id="start">Start Node</span></span> NOT SELECTED
|
|
<script>
|
|
let range = document.createRange();
|
|
range.setStart(start, 0);
|
|
range.setEnd(end, 2);
|
|
window.getSelection().addRange(range);
|
|
</script>
|