summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/dom/render-blocking/element-render-blocking-019.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:13:33 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:13:33 +0000
commit086c044dc34dfc0f74fbe41f4ecb402b2cd34884 (patch)
treea4f824bd33cb075dd5aa3eb5a0a94af221bbe83a /testing/web-platform/tests/html/dom/render-blocking/element-render-blocking-019.html
parentAdding debian version 124.0.1-1. (diff)
downloadfirefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.tar.xz
firefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.zip
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/html/dom/render-blocking/element-render-blocking-019.html')
-rw-r--r--testing/web-platform/tests/html/dom/render-blocking/element-render-blocking-019.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/dom/render-blocking/element-render-blocking-019.html b/testing/web-platform/tests/html/dom/render-blocking/element-render-blocking-019.html
new file mode 100644
index 0000000000..80a7019edc
--- /dev/null
+++ b/testing/web-platform/tests/html/dom/render-blocking/element-render-blocking-019.html
@@ -0,0 +1,32 @@
+<!DOCTYPE html>
+<head>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="support/utils.js"></script>
+<title>Media attribute changes in the body to not apply</title>
+
+<link id=link rel=expect href="#last" blocking="render" media="(min-width: 10px)">
+<script>
+async_test((t) => {
+ requestAnimationFrame(() => {
+ t.step(() => assert_false(!!document.getElementById("last")));
+ t.done();
+ });
+}, "changing media to non-matching in the body makes it non blocking");
+</script>
+</head>
+<body>
+<script>
+link.media = "(max-width: 10px)";
+</script>
+
+ <div id="first"></div>
+ <script>
+ generateParserDelay();
+ </script>
+ <div id="second"></div>
+ <script>
+ generateParserDelay();
+ </script>
+ <div id="last"></div>
+</body>