https://github.com/web-platform-tests/wpt
Revision aa1cdafe011083b507a42701f58134c4e485906e authored by moz-wptsync-bot on 13 March 2018, 19:14:33 UTC, committed by moz-wptsync-bot on 13 March 2018, 19:14:33 UTC
bugzilla-url: https://bugzilla.mozilla.org/show_bug.cgi?id=1444628
gecko-commit: 220a09bc56cde59c0f1764fab4e8fb6814caa39f
gecko-integration-branch: central
gecko-reviewers: ahal
1 parent c7a4bd8
Raw File
Tip revision: aa1cdafe011083b507a42701f58134c4e485906e authored by moz-wptsync-bot on 13 March 2018, 19:14:33 UTC
Fix a bunch of typo in the doc
Tip revision: aa1cdaf
classname-query-after-sibling-adoption.html
<!-- quirks mode -->
<html>
  <head>
    <title>Quirks mode elements with class names should remain queriable regardless of sibling adoption into standards mode documents</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
  </head>
  <body>
    <div>
      <button class="Foo"></button>
      <button class="Foo"></button>
    </div>
    <template><div class="Bar"></div></template>
    <script>
    test(function () {
      var templateDocument = document.querySelector("template").content.ownerDocument;
      assert_equals(templateDocument.compatMode, "CSS1Compat");
      assert_equals(document.compatMode, "BackCompat");
      var container = document.querySelector("div");
      var button1 = container.querySelector(".foo");
      assert_true(button1 instanceof Element);
      templateDocument.appendChild(button1);
      assert_true(templateDocument.querySelector(".Foo") instanceof Element);
      assert_false(templateDocument.querySelector(".foo") instanceof Element);
      var button2byHierarchy = container.firstElementChild;
      var button2bySelector = container.querySelector(".foo");
      assert_true(button2bySelector instanceof Element);
      assert_equals(button2bySelector, button2byHierarchy);
    });
    </script>
  </body>
</html>
back to top