summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/test_remote_frame.html
blob: 765d526ae98f03f3a507a198a2d7435d63566cb6 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE HTML>
<html>
<head>
  <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="/tests/SimpleTest/WindowSnapshot.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  <style>
  div, iframe {
    position:absolute;
    left:0; top:50px;
    width:400px; height:400px;
    transform: translateY(50px);
    border:5px solid black;
  }
  </style>
</head>
  <body>
    <div id="d" style="background:blue"></div>

  <script type="application/javascript;version=1.7">
    "use strict";

    var referenceSnapshot;
    var iterations = 0;

    SimpleTest.waitForExplicitFinish();
    SimpleTest.requestFlakyTimeout("untriaged");

    function pollForTestPass() {
      var snapshot = snapshotWindow(window);
      if (compareSnapshots(referenceSnapshot, snapshot, true)[0]) {
        ok(true, "Test passed after " + iterations + " iterations");
        SimpleTest.finish();
        return;
      }

      ++iterations;
      if (iterations == 20) {
        todo(false, "We couldn't draw the frame, but at least we didn't crash");
        SimpleTest.finish();
        return;
      }
      setTimeout(pollForTestPass, 10);
    }
    function addRemoteFrame() {
      let iframe = document.createElement("iframe");
      SpecialPowers.wrap(iframe).mozbrowser = true;
      iframe.src = "data:text/html,<html style='background:blue;'>";

      document.body.appendChild(iframe);

      pollForTestPass();
    }
    addEventListener("load", function() {
      referenceSnapshot = snapshotWindow(window);
      document.getElementById("d").style.display = 'none';
      SpecialPowers.addPermission("browser", true, document);
      SpecialPowers.pushPrefEnv({
        "set": [
          ["dom.ipc.browser_frames.oop_by_default", true],
          ["dom.mozBrowserFramesEnabled", true]
        ]
      }, addRemoteFrame);      
    });
  </script>
</body>