summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/dom/documents/dom-tree-accessors/document.scripts.html
blob: 82d3db14b2d5c7d2c1cb85b30f70d3ceff73a4de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<meta charset=utf-8>
<title>Document.scripts</title>
<link rel="author" title="Intel" href="http://www.intel.com">
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<div id=log></div>
<script>
test(function() {
  var scripts = document.scripts;
  assert_true(scripts instanceof HTMLCollection);
  assert_equals(scripts.length, 3);

  var script = document.createElement("script");
  document.body.appendChild(script);
  assert_equals(scripts.length, 4);

  document.body.removeChild(script);
  assert_equals(scripts.length, 3);
}, "Document.scripts should be a live collection");
</script>