summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/dom/render-blocking/script-inserted-stylesheet-link.html
blob: 46755387d712adc23582c80c61e06b0bb61c400e (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
<!doctype html>
<title>Script-inserted stylesheet links with "blocking=render" are render-blocking</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="support/test-render-blocking.js"></script>

<script>
const stylesheet = document.createElement('link');
stylesheet.rel = 'stylesheet';
stylesheet.href = 'support/target-red.css?pipe=trickle(d1)';
stylesheet.blocking = 'render';
document.head.appendChild(stylesheet);
</script>

<div class="target">
  This should be red
</div>

<script>
test_render_blocking(
    stylesheet,
    () => {
      let color = getComputedStyle(document.querySelector('.target')).color;
      assert_equals(color, 'rgb(255, 0, 0)');
    },
    'Render-blocking stylesheet is applied');
</script>