summaryrefslogtreecommitdiffstats
path: root/toolkit/components/extensions/test/xpcshell/data/file_document_write.html
blob: f8369ae5743ec2bf98110bbf56c7d6403785e950 (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
29
30
31
32
33
34
35
36
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
  <iframe id="iframe"></iframe>

  <script type="text/javascript">
    "use strict";
    addEventListener("load", () => {
      // Send a heap-minimize observer notification so our script cache is
      // cleared, and our content script isn't available for synchronous
      // insertion.
      window.dispatchEvent(new CustomEvent("MozHeapMinimize"));

      let iframe = document.getElementById("iframe");
      let doc = iframe.contentDocument;
      let win = iframe.contentWindow;
      doc.open("text/html");
      // We need to do two writes here. The first creates the document element,
      // which normally triggers parser blocking. The second triggers the
      // creation of the element we're about to query for, which would normally
      // happen asynchronously if the parser were blocked.
      doc.write("<div id=meh>");
      doc.write("<div id=beer></div>");

      let elem = doc.getElementById("beer");
      top.postMessage(elem instanceof win.HTMLDivElement ? "ok" : "fail",
                      "*");

      doc.close();
    }, {once: true});
  </script>
</body>
</html>