https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 4be224602569115133e2acdd051ea43956974def authored by quasicomputational on 24 December 2018, 18:42:19 UTC
Implement the 'overflow-inline' media query.
Tip revision: 4be2246
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