summaryrefslogtreecommitdiffstats
path: root/dom/base/test/jsmodules/test_topLevelIntroType.html
blob: ab4c80815b1559324b69624204580d83bc0ee0f3 (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>Test introduction type of a top-level module</title>
<script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
<script>
  var introType;
  var extractIntroType;

  info('start');
  SimpleTest.waitForExplicitFinish();

  function testIntroductionType() {
    extractIntroType();
    ok(introType == "scriptElement", 'Check introduction type');
    SimpleTest.finish();
  }
</script>
<iframe src="iframe_extractIntroType.html"></iframe>
<script type="module" src="module_extractIntroType.js">
</script>
<body onload='testIntroductionType()'></body>