summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/mediaqueries/mq-unknown-feature-custom-property.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/mediaqueries/mq-unknown-feature-custom-property.html')
-rw-r--r--testing/web-platform/tests/css/mediaqueries/mq-unknown-feature-custom-property.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/mediaqueries/mq-unknown-feature-custom-property.html b/testing/web-platform/tests/css/mediaqueries/mq-unknown-feature-custom-property.html
new file mode 100644
index 0000000000..48ad5b4f51
--- /dev/null
+++ b/testing/web-platform/tests/css/mediaqueries/mq-unknown-feature-custom-property.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<title>Media Queries Test: Custom property name as media feature name</title>
+<link rel="help" href="https://drafts.csswg.org/mediaqueries-4/#mq-syntax">
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<style id="media_sheet">
+ @media (--FOO: bar) {}
+</style>
+<script>
+ test(() => {
+ assert_equals(media_sheet.sheet.cssRules[0].conditionText, "(--FOO: bar)")
+ }, "Serialization of <mf-name> : <mf-value> with custom property feature name and ident value");
+</script>