Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Side by Side Diff: LayoutTests/fast/media/mq-unknown-ident-values.html

Issue 13896036: [CSSMQ] Implemented support for the scan media feature. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: another static_cast removed. Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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; }
8 }
9 @media not all and (view-mode: portrait) {
10 #t2 { color: red; }
11 }
12 @media not all and (pointer: landscape) {
13 #t3 { color: red; }
14 }
15 @media not all and (scan: none) {
16 #t4 { color: red; }
17 }
18 </style>
19 </head>
20 <body>
21 <div id="t1">Should not be red</div>
22 <div id="t2">Should not be red</div>
23 <div id="t3">Should not be red</div>
24 <div id="t4">Should not be red</div>
25 </body>
26 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/media/mq-scan-02-expected.html ('k') | LayoutTests/fast/media/mq-unknown-ident-values-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698