summaryrefslogtreecommitdiffstats
path: root/dom/xhr/tests/test_sync_xhr_document_write_with_iframe.html
blob: eb03f7cf23130a831620091ff607e42aaf96199d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE HTML>
<html>
<head>
  <title>Test for Bug </title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script>
function runTest() {
  let w = window.open('file_sync_xhr_document_write_with_iframe.html');
  addEventListener('message', evt => {
    is(evt.data, 'DONE');
    w.close();
    SimpleTest.finish();
  }, { once: true });
}

SimpleTest.waitForExplicitFinish();
addLoadEvent(runTest);
</script>
</pre>
</body>
</html>