dom/xslt/tests/mochitest/test_bug1729517.html
author Tom Schuster <tschuster@mozilla.com>
Thu, 17 Jul 2025 07:01:33 +0000 (9 hours ago)
changeset 796956 2732dfd8c3b2071a053c85819299033f50ec5d48
parent 693863 d9181eed5c93ca6ec3f04a6e71aa0c0e06d2b198
permissions -rw-r--r--
Bug 1977645 - Remove svg.use-element.data-url-href.allowed pref. r=longsonr Differential Revision: https://phabricator.services.mozilla.com/D257534
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title><!-- TODO: insert title here --></title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" href="/tests/SimpleTest/test.css"/>
  <script>
    SimpleTest.waitForExplicitFinish();
    async function runTest() {
      let frame = document.getElementById("frame");
      let loaded = new Promise((resolve) => {
        frame.addEventListener("load", () => {
          let failed = JSON.parse(frame.contentDocument.title);
          ok(failed instanceof Array, "Frame's title is expected to be a JSON representation of the array of failed conditions.");
          is(failed.length, 0, "No scripts should run in sandboxed iframe document created by XSLT.");
          for (let desc of failed) {
            info(desc);
          }
          resolve();
        }, { once: true });
      });
      frame.src = "file_bug1729517.xml";
      await loaded;

      let results = new Promise((resolve) => {
        addEventListener("message", ({ data }) => {
          resolve(data);
        }, { once: true });
      });

      let win = window.open(`https://example.com/tests/dom/xslt/tests/mochitest/file_bug1729517_2.xml`);
      for (const [header, result] of await results) {
        is(result, "PASS", `${header} of the source document should apply to document created by XSLT.`);
      }
      win.close();

      SimpleTest.finish();
    }
  </script>
</head>
<body onload="runTest();">
<p id="display"></p>
<iframe sandbox="allow-same-origin" id="frame"></iframe>
<div id="content" style="display: none"></div>
<pre id="test"></pre>
</body>
</html>