summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/mediaqueries/match-media-parsing.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/css/mediaqueries/match-media-parsing.html
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/mediaqueries/match-media-parsing.html')
-rw-r--r--testing/web-platform/tests/css/mediaqueries/match-media-parsing.html58
1 files changed, 58 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/mediaqueries/match-media-parsing.html b/testing/web-platform/tests/css/mediaqueries/match-media-parsing.html
new file mode 100644
index 0000000000..c029f54945
--- /dev/null
+++ b/testing/web-platform/tests/css/mediaqueries/match-media-parsing.html
@@ -0,0 +1,58 @@
+<!DOCTYPE html>
+<link rel="help" href="https://drafts.csswg.org/css-syntax-3/#parse-comma-separated-list-of-component-values">
+<script type="text/javascript" src="/resources/testharness.js"></script>
+<script type="text/javascript" src="/resources/testharnessreport.js"></script>
+
+<script>
+function test_parsing(query, expected) {
+ if(expected === undefined)
+ expected = query;
+
+ test(() => {
+ const match = window.matchMedia(query);
+ assert_equals(match.media, expected)
+ }, "Test parsing '" + query + "' with matchMedia");
+}
+
+function test_resolution_parsing() {
+ test_parsing("(min-resolution: 1x)");
+ test_parsing("(min-resolution: calc(1x))", "(min-resolution: calc(1dppx))");
+ test_parsing("(resolution: 2x)");
+ test_parsing("(resolution: calc(2x))", "(resolution: calc(2dppx))");
+ test_parsing("(max-resolution: 7x)");
+ test_parsing("(max-resolution: calc(7x))", "(max-resolution: calc(7dppx))");
+
+ test_parsing("(resolution: 2dppx)");
+ test_parsing("(resolution: 600dpi)");
+ test_parsing("(resolution: 77dpcm)");
+
+ test_parsing("(resolution: calc(1x + 2x))", "(resolution: calc(3dppx))");
+ test_parsing("(resolution: calc(5x - 2x))", "(resolution: calc(3dppx))");
+ test_parsing("(resolution: calc(1x * 3))", "(resolution: calc(3dppx))");
+ test_parsing("(resolution: calc(6x / 2))", "(resolution: calc(3dppx))");
+}
+
+test_parsing("", "");
+test_parsing(" ", "");
+test_parsing("all", "all");
+test_parsing(" all", "all");
+test_parsing(" all ", "all");
+test_parsing("all,all", "all, all");
+test_parsing(" all , all ", "all, all");
+test_parsing("(color)", "(color)");
+test_parsing("(color", "(color)");
+test_parsing(" (color)", "(color)");
+test_parsing(" ( color ) ", "(color)");
+test_parsing(" ( color ", "(color)");
+test_parsing("color)", "not all");
+test_parsing(" color)", "not all");
+test_parsing(" color ), ( color", "not all, (color)");
+test_parsing(" foo ", "foo");
+test_parsing(",", "not all, not all");
+test_parsing(" , ", "not all, not all");
+test_parsing(",,", "not all, not all, not all");
+test_parsing(" , , ", "not all, not all, not all");
+test_parsing(" foo,", "foo, not all");
+
+test_resolution_parsing();
+</script>