summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/cssom/xml-stylesheet-pi-in-doctype.xhtml
blob: 59911eb52c2d6f646e985e7680fa08c0b937b0b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html [<?xml-stylesheet href="data:text/css,html{z-index: 1}"?>]>
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title>xml-stylesheet processing instruction in doctype internal subset</title>
    <link rel="help" href="https://drafts.csswg.org/cssom/#prolog"/>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
  </head>
  <body>
    <script>
      promise_test(async () => {
        await new Promise(resolve => window.onload = resolve);
        assert_equals(getComputedStyle(document.documentElement).zIndex, "auto");
      });
    </script>
  </body>
</html>