summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/execution-timing/150-import-xhtml.xhtml
blob: d6144795db6602b47cff9b0580c3babf079bcc38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>Stylesheet in XHTML BODY with @import blocking scripts</title>
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
  <script src="testlib/testlib.js"></script>
</head>
<body>
  <div id="log">FAILED (This TC requires JavaScript enabled)</div>
  <div id="test">Test</div>
  <!-- this stylesheet blocks scripts -->
  <link rel="stylesheet" href="css/import.css?pipe=trickle(d2)" />
  <script>
    test(function() {
      assert_equals(getComputedStyle(document.getElementById("test")).position,
                    "fixed");
    });
  </script>
</body>
</html>