summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_custom_element.html
blob: 7c87e0416f3716974c29c51cefe8a36c570dd6cd (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
<!DOCTYPE html>
<html>
  <head>
    <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css">
    <script src="/tests/SimpleTest/SimpleTest.js"></script>
  </head>
  <body onload="startTests()">
    <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=783129" target="_blank">Mozilla Bug 783129</a>
    <iframe id="fooframe" src="/"></iframe>
    <script type="application/javascript">

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

    function startTests() {
      var frame = document.getElementById("fooframe");
      class XFoo extends frame.contentWindow.HTMLElement {};
      frame.contentWindow.customElements.define("x-foo", XFoo);
      var elem = new XFoo();
      is(elem.tagName, "X-FOO", "Constructor should create an x-foo element.");

      var anotherElem = $("fooframe").contentDocument.createElement("x-foo");
      is(anotherElem.tagName, "X-FOO", "createElement should create an x-foo element.");
      SimpleTest.finish();
    }

    </script>
  </body>
</html>