Bug 1545675 [wpt PR 16364] - WPT/BGPT: Add animation stop and set time tests, make...
[gecko.git] / testing / web-platform / tests / css / selectors / selection-image-001-noref.html
blobdf3d946ecb34d689a7bfdc43c4957a9726988aec
1 <!doctype html>
2 <title>CSS Test Reference</title>
3 <link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
4 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1449010">
5 <p>
6 Some text <img src="resources/blue15x15.png"> some more.
7 </p>
8 <script>
9 onload = () => {
10 getSelection().removeAllRanges();
11 let r = document.createRange();
12 r.selectNode(document.documentElement);
13 getSelection().addRange(r);
15 </script>