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

Side by Side Diff: LayoutTests/fast/css/getComputedStyle/getComputedStyle-column-rule.html

Issue 48903019: Delete js-test-post.js. (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 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <script src="../../js/resources/js-test-pre.js"></script> 5 <script src="../../js/resources/js-test-pre.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <script> 8 <script>
9 9
10 description("Test to make sure -webkit-column-rule property returns CSSValueList properly.") 10 description("Test to make sure -webkit-column-rule property returns CSSValueList properly.")
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 shouldBeEqualToString("computedStyle.getPropertyValue('-webkit-column-rule')", ' 0px hidden rgb(0, 0, 255)'); 67 shouldBeEqualToString("computedStyle.getPropertyValue('-webkit-column-rule')", ' 0px hidden rgb(0, 0, 255)');
68 shouldBeEqualToString("computedStyle.getPropertyCSSValue('-webkit-column-rule'). toString()", '[object CSSValueList]'); 68 shouldBeEqualToString("computedStyle.getPropertyCSSValue('-webkit-column-rule'). toString()", '[object CSSValueList]');
69 shouldBeEqualToString("computedStyle.getPropertyCSSValue('-webkit-column-rule'). cssText", '0px hidden rgb(0, 0, 255)'); 69 shouldBeEqualToString("computedStyle.getPropertyCSSValue('-webkit-column-rule'). cssText", '0px hidden rgb(0, 0, 255)');
70 shouldBe("computedStyle.getPropertyCSSValue('-webkit-column-rule').length", "3") ; 70 shouldBe("computedStyle.getPropertyCSSValue('-webkit-column-rule').length", "3") ;
71 shouldBe("computedStyle.getPropertyCSSValue('-webkit-column-rule').item(0).getFl oatValue(CSSPrimitiveValue.CSS_PX)", "0"); 71 shouldBe("computedStyle.getPropertyCSSValue('-webkit-column-rule').item(0).getFl oatValue(CSSPrimitiveValue.CSS_PX)", "0");
72 shouldBeEqualToString("computedStyle.getPropertyCSSValue('-webkit-column-rule'). item(1).getStringValue()", "hidden"); 72 shouldBeEqualToString("computedStyle.getPropertyCSSValue('-webkit-column-rule'). item(1).getStringValue()", "hidden");
73 73
74 document.body.removeChild(testContainer); 74 document.body.removeChild(testContainer);
75 75
76 </script> 76 </script>
77 <script src="../../js/resources/js-test-post.js"></script>
78 </body> 77 </body>
79 </html> 78 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698