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-021.xht - WPT Dashboard Interop Dashboard
<head>
<title>CSS Test: An @supports rule with valid syntax but a failing condition must not apply rules inside it</title>
<link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au" />
<meta name="assert" content="A disjunction of two @supports conditions must cause the @supports condition to pass if one condition passes and the other fails due to being an unsupported property."/>
<link rel="match" href="support/pass.xht" />
<style type="text/css"><![CDATA[
@supports (unknown: green) or (color: green) {
html { background-color: green }
}
]]></style>
</head>
<body>
</body>
</html>