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

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

Issue 269053005: Remove CSS media features -webkit-transform-2d, -webkit-animation and -webkit-view-mode (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update tests Created 6 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Media queries with invalid ident values must be dropped</title> 4 <title>Media queries with invalid ident values must be dropped</title>
5 <style> 5 <style>
6 @media not all and (orientation: block) { 6 @media not all and (orientation: block) {
7 #t1 { color: red; } 7 #t1 { color: red; }
8 } 8 }
9 @media not all and (view-mode: portrait) { 9 @media not all and (pointer: landscape) {
10 #t2 { color: red; } 10 #t2 { color: red; }
11 } 11 }
12 @media not all and (pointer: landscape) { 12 @media not all and (scan: none) {
13 #t3 { color: red; } 13 #t3 { color: red; }
14 } 14 }
15 @media not all and (scan: none) {
16 #t4 { color: red; }
17 }
18 </style> 15 </style>
19 </head> 16 </head>
20 <body> 17 <body>
21 <div id="t1">Should not be red</div> 18 <div id="t1">Should not be red</div>
22 <div id="t2">Should not be red</div> 19 <div id="t2">Should not be red</div>
23 <div id="t3">Should not be red</div> 20 <div id="t3">Should not be red</div>
24 <div id="t4">Should not be red</div>
25 </body> 21 </body>
26 </html> 22 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/media/mq-transform-04-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