Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / media / mq-unknown-ident-values.html
blobcd026319e399d8b8c15c3eabf8789891b84427ea
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Media queries with invalid ident values must be dropped</title>
5 <style>
6 @media not all and (orientation: block) {
7 #t1 { color: red; }
9 @media not all and (pointer: landscape) {
10 #t2 { color: red; }
12 @media not all and (scan: none) {
13 #t3 { color: red; }
15 </style>
16 </head>
17 <body>
18 <div id="t1">Should not be red</div>
19 <div id="t2">Should not be red</div>
20 <div id="t3">Should not be red</div>
21 </body>
22 </html>