summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/media/mq-invalid-syntax-04.html
blob: a5e608ccb314b3d8ffdc0ad74ac844fe48c3cc0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<html>
<head>
<title>CSS3 media query test: syntactically invalid media query inside css rule should eval to false. Using style element, css media rule.</title>
<link rel="help" href="http://www.w3.org/TR/css3-mediaqueries/" />
<style type="text/css">
p { color: green }
@media all and invalid {
p { color: red }
}
</style>
</head>
<body>
<p> This text should be green.</p>
</body>
</html>