summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/dom/nodes/Comment-in-doctype.xhtml
blob: c0817d353de18ecad2234b6e0b648ee03d437557 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html [<!--x-->]><html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title>XML: Comment in doctype internal subset</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
  </head>
  <body>
    <script>
      test(() => {
        assert_equals(document.documentElement.previousSibling, document.firstChild);
        assert_equals(document.firstChild.nodeType, Node.DOCUMENT_TYPE_NODE);
      });
    </script>
  </body>
</html>