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-035.xht - WPT Dashboard Interop Dashboard
<head>
<title>CSS Test: An @supports rule with unbalanced invalid syntax must fail to parse</title>
<link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au" />
<meta name="flags" content="invalid" />
<meta name="assert" content="An @supports condition with a parenthesized expression that has unbalanced parentheses must fail to parse."/>
<link rel="match" href="support/pass.xht" />
<style type="text/css"><![CDATA[
html { background-color: green }
@supports not ({ something @with (unbalanced parens }) {
html { background-color: red }
}
/* parser still looking for second close parenthesis */
html { background-color: red }
]]></style>
</head>
<body>
</body>
</html>