summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/tests/chrome/test_bug1050049.html
blob: 751ebd4670c6e13811483ec08f955223ef244a15 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1050049
-->
<head>
  <meta charset="utf-8">
  <title>Test for Bug 1050049</title>
  <script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="chrome://global/skin"/>
  <link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"/>
  <script type="application/javascript">

  /** Test for Bug 1050049 **/
  SimpleTest.waitForExplicitFinish();

  var regularBindingURI = window.location.toString().replace("test_bug1050049.html", "file_bug1050049.xml") + "#regularChromeBinding";
  var whitelistedBindingURI = window.location.toString().replace("test_bug1050049.html", "file_bug1050049.xml") + "#whitelistedChromeBinding";

  function testApplyBinding(doc, bindingURI, expectBind) {
    var d = doc.createElement('div');
    doc.body.appendChild(d);
    d.style.MozBinding = "url(" + bindingURI + ")";

    return new Promise(function(resolve, reject) {
      // Wait two ticks of the refresh driver for the binding to be applied.
      function onceBindingWouldBeApplied() {
        is(!!doc.getAnonymousNodes(d), expectBind, "Binding " + (expectBind ? "should" : "shouldn't") +
                                                   " be applied: " + bindingURI + ", " + doc.location);
        resolve();
      }
      window.requestAnimationFrame(function() { window.requestAnimationFrame(onceBindingWouldBeApplied); });
    });
  }

  function go() {
    testApplyBinding(document, regularBindingURI, true)
      .then(testApplyBinding.bind(null, window[0].document, regularBindingURI, false))
      .then(testApplyBinding.bind(null, document, whitelistedBindingURI, true))
      .then(testApplyBinding.bind(null, window[0].document, whitelistedBindingURI, true))
      .then(SimpleTest.finish.bind(SimpleTest));
  }

  </script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1050049">Mozilla Bug 1050049</a>
<p id="display"></p>
<div id="content" style="display: none">

</div>
<pre id="test">
</pre>
<iframe onload="go();" src="http://example.org/tests/js/xpconnect/tests/mochitest/file_empty.html"></iframe>
</body>
</html>