summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/mediaqueries/mq-unknown-feature-custom-property.html
blob: 48ad5b4f51449bf90c5375c27ec1c1a13e88a5d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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>