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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/background-serialize.html

Issue 1363233003: Make sure <url>s are being serialized according to spec (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix interpolation tests Created 5 years, 2 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
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../resources/js-test.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <pre id='console'></pre> 7 <pre id='console'></pre>
8 </body> 8 </body>
9 <script> 9 <script>
10 var style = document.createElement('style'); 10 var style = document.createElement('style');
(...skipping 14 matching lines...) Expand all
25 shouldBeEqualToString("test('.test { background: inherit; }')", ".test { backgro und: inherit; }"); 25 shouldBeEqualToString("test('.test { background: inherit; }')", ".test { backgro und: inherit; }");
26 shouldBeEqualToString("test('.test { background: inherit; background-color: blac k; }')", ".test { background-image: inherit; background-attachment: inherit; bac kground-color: black; background-size: inherit; background-origin: inherit; back ground-clip: inherit; background-position: inherit; background-repeat: inherit; }"); 26 shouldBeEqualToString("test('.test { background: inherit; background-color: blac k; }')", ".test { background-image: inherit; background-attachment: inherit; bac kground-color: black; background-size: inherit; background-origin: inherit; back ground-clip: inherit; background-position: inherit; background-repeat: inherit; }");
27 shouldBeEqualToString("test('.test { background: none; background-repeat: repeat -x !important;}')", ".test { background-image: none; background-attachment: init ial; background-color: initial; background-size: initial; background-origin: ini tial; background-clip: initial; background-position: initial; background-repeat: repeat-x !important; }"); 27 shouldBeEqualToString("test('.test { background: none; background-repeat: repeat -x !important;}')", ".test { background-image: none; background-attachment: init ial; background-color: initial; background-size: initial; background-origin: ini tial; background-clip: initial; background-position: initial; background-repeat: repeat-x !important; }");
28 shouldBeEqualToString("test('.test { background: none; background-repeat: repeat -x;}')", ".test { background: none repeat-x; }"); 28 shouldBeEqualToString("test('.test { background: none; background-repeat: repeat -x;}')", ".test { background: none repeat-x; }");
29 shouldBeEqualToString("test('.test { background: none; background-position-x: 0% ;}')", ".test { background: none 0%; }"); 29 shouldBeEqualToString("test('.test { background: none; background-position-x: 0% ;}')", ".test { background: none 0%; }");
30 shouldBeEqualToString("test('.test { background: none; background-position: 20% 80%;}')", ".test { background: none 20% 80%; }"); 30 shouldBeEqualToString("test('.test { background: none; background-position: 20% 80%;}')", ".test { background: none 20% 80%; }");
31 shouldBeEqualToString("test('.test { background-position-x: 5%; }')", ".test { b ackground-position-x: 5%; }"); 31 shouldBeEqualToString("test('.test { background-position-x: 5%; }')", ".test { b ackground-position-x: 5%; }");
32 shouldBeEqualToString("test('.test { background-position-y: 5%; }')", ".test { b ackground-position-y: 5%; }"); 32 shouldBeEqualToString("test('.test { background-position-y: 5%; }')", ".test { b ackground-position-y: 5%; }");
33 shouldBeEqualToString("test('.test { background-position-x: 5%; background-posit ion-y: 10%; }')", ".test { background-position: 5% 10%; }"); 33 shouldBeEqualToString("test('.test { background-position-x: 5%; background-posit ion-y: 10%; }')", ".test { background-position: 5% 10%; }");
34 shouldBeEqualToString("test('.test { background-position-x: 5%; background-posit ion-y: 10% !important; }')", ".test { background-position-x: 5%; background-posi tion-y: 10% !important; }"); 34 shouldBeEqualToString("test('.test { background-position-x: 5%; background-posit ion-y: 10% !important; }')", ".test { background-position-x: 5%; background-posi tion-y: 10% !important; }");
35 shouldBeEqualToString("test('.test { background: url(dummy://test.png); }')", ". test { background: url(dummy://test.png); }"); 35 shouldBeEqualToString("test('.test { background: url(dummy://test.png); }')", '. test { background: url("dummy://test.png"); }');
36 shouldBeEqualToString("test('.test { background: url(dummy://test.png); backgrou nd-color: black; }')", ".test { background: url(dummy://test.png) black; }"); 36 shouldBeEqualToString("test('.test { background: url(dummy://test.png); backgrou nd-color: black; }')", '.test { background: url("dummy://test.png") black; }');
37 37
38 </script> 38 </script>
39 <script src="../js/resources/js-test-post.js"></script> 39 <script src="../js/resources/js-test-post.js"></script>
40 </html> 40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698