Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-conditional/css-supports-022.xht - WPT Dashboard Interop Dashboard
<head>
<title>CSS Test: An @supports rule with balanced invalid syntax within parentheses must evaluate to false</title>
<link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au" />
<meta name="assert" content="An @supports condition must successfully parse even if a declaration has an empty property value."/>
<link rel="match" href="support/pass.xht" />
<style type="text/css"><![CDATA[
html { background-color: red }
@supports (unknown:) or (color: green) {
html { background-color: green }
}
]]></style>
</head>
<body>
</body>
</html>