summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/dom/ranges/Range-detach.html
blob: ac35d71369a21f611c89f034b1b0f351d95994a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<title>Range.detach</title>
<link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com">
<meta name=timeout content=long>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<div id=log></div>
<script>
test(function() {
  var r = document.createRange();
  r.detach()
  r.detach()
})
</script>