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

Side by Side Diff: LayoutTests/fast/masking/parsing-mask.html

Issue 1274643002: CSSStyleDeclaraction returns empty string (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed changes from imported/csswg-test Created 5 years, 4 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 <style> 3 <style>
4 * { font-size: 16px; } 4 * { font-size: 16px; }
5 div { font-size: 8px; } 5 div { font-size: 8px; }
6 </style> 6 </style>
7 <body> 7 <body>
8 <script src="../../resources/js-test.js"></script> 8 <script src="../../resources/js-test.js"></script>
9 <script> 9 <script>
10 description('Test that clip-path shapes accept different length units'); 10 description('Test that clip-path shapes accept different length units');
(...skipping 18 matching lines...) Expand all
29 } 29 }
30 30
31 function testInner(property, value, expected) { 31 function testInner(property, value, expected) {
32 if (expected === null) 32 if (expected === null)
33 shouldBeNull('innerStyle("' + property + '", "' + value + '")'); 33 shouldBeNull('innerStyle("' + property + '", "' + value + '")');
34 else 34 else
35 shouldBeEqualToString('innerStyle("' + property + '", "' + value + '")', expected); 35 shouldBeEqualToString('innerStyle("' + property + '", "' + value + '")', expected);
36 } 36 }
37 37
38 function negativeTest(property, value) { 38 function negativeTest(property, value) {
39 testInner(property, value, null); 39 testInner(property, value, "");
40 // FIXME: Computed style not yet implemented. 40 // FIXME: Computed style not yet implemented.
41 // testComputed(property, value, 'none'); 41 // testComputed(property, value, 'none');
42 } 42 }
43 43
44 // test mask-image 44 // test mask-image
45 testInner("-webkit-mask", "none", "none"); 45 testInner("-webkit-mask", "none", "none");
46 testInner("-webkit-mask", "none, none", "none, none"); 46 testInner("-webkit-mask", "none, none", "none, none");
47 testInner("-webkit-mask", "none, none, none", "none, none, none"); 47 testInner("-webkit-mask", "none, none, none", "none, none, none");
48 testInner("-webkit-mask", "url(file:///image.png), none", "url(file:///image.png ), none"); 48 testInner("-webkit-mask", "url(file:///image.png), none", "url(file:///image.png ), none");
49 testInner("-webkit-mask", "none, url(file:///image.png)", "none, url(file:///ima ge.png)"); 49 testInner("-webkit-mask", "none, url(file:///image.png)", "none, url(file:///ima ge.png)");
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 negativeTest("-webkit-mask", "none top 20px bottom / auto repeat-x scroll border -box border-box"); 178 negativeTest("-webkit-mask", "none top 20px bottom / auto repeat-x scroll border -box border-box");
179 179
180 negativeTest("mask-source-type", "rubbish"); 180 negativeTest("mask-source-type", "rubbish");
181 negativeTest("mask-source-type", ""); 181 negativeTest("mask-source-type", "");
182 negativeTest("mask-source-type", "center"); 182 negativeTest("mask-source-type", "center");
183 negativeTest("mask-source-type", "repeat"); 183 negativeTest("mask-source-type", "repeat");
184 184
185 </script> 185 </script>
186 </body> 186 </body>
187 </html> 187 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698