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

Side by Side Diff: LayoutTests/fast/css/parsing-not-after-supports.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 <script src="../js/resources/js-test-pre.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 <style> 5 <style>
6 span:not(.whatever) { 6 span:not(.whatever) {
7 background-color: red; 7 background-color: red;
8 } 8 }
9 @supports (color: red) { 9 @supports (color: red) {
10 span { 10 span {
11 color: red; 11 color: red;
12 } 12 }
13 } 13 }
14 span:not(.whatever) { 14 span:not(.whatever) {
15 background-color: green; 15 background-color: green;
16 } 16 }
17 </style> 17 </style>
18 </head> 18 </head>
19 <body> 19 <body>
20 <span id='target'></span> 20 <span id='target'></span>
21 <pre id='console'></pre> 21 <pre id='console'></pre>
22 <script> 22 <script>
23 description('Test for issue 257695: CSS @supports bug: breaks following :not()') ; 23 description('Test for issue 257695: CSS @supports bug: breaks following :not()') ;
24 var target = document.getElementById('target'); 24 var target = document.getElementById('target');
25 shouldBe('getComputedStyle(target).backgroundColor', '"rgb(0, 128, 0)"'); 25 shouldBe('getComputedStyle(target).backgroundColor', '"rgb(0, 128, 0)"');
26 </script> 26 </script>
27 </body> 27 </body>
28 </html> 28 </html>
29 29
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/padding-start-end.html ('k') | LayoutTests/fast/css/parsing-object-position.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698