https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 951ade940eacfdad4de7530058690a10637a277d authored by Geoffrey Sneddon on 09 April 2018, 11:49:58 UTC
fixup! Move the config into its own class
Tip revision: 951ade9
selection-image-001-noref.html
<!doctype html>
<title>CSS Test Reference</title>
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1449010">
<p>
  Some text <img src="resources/blue15x15.png"> some more.
</p>
<script>
onload = () => {
  getSelection().removeAllRanges();
  let r = document.createRange();
  r.selectNode(document.documentElement);
  getSelection().addRange(r);
}
</script>
back to top