Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-values/random-in-media.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Values and Units Test: random() invalid in media queries</title>
<link rel="help" href="https://drafts.csswg.org/css-values-5/#random">
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/10982">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/mediaqueries/resources/matchmedia-utils.js"></script>
<script>
query_should_be_unknown("(width > random(10px, 30px))");
query_should_be_unknown("(width > random(element-shared, 10px, 30px))");
</script>