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

Side by Side Diff: LayoutTests/fast/multicol/column-width-zero.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 <style> 4 <style>
5 #multicolumn 5 #multicolumn
6 { 6 {
7 display: block; 7 display: block;
8 -moz-column-width: 0; 8 -moz-column-width: 0;
9 -o-column-width: 0; 9 -o-column-width: 0;
10 -webkit-column-width: 0; 10 -webkit-column-width: 0;
11 column-width: 0; 11 column-width: 0;
12 } 12 }
13 </style> 13 </style>
14 <script src="../js/resources/js-test-pre.js"></script> 14 <script src="../js/resources/js-test-pre.js"></script>
15 <script> 15 <script>
16 if (window.testRunner) 16 if (window.testRunner)
17 testRunner.dumpAsText(); 17 testRunner.dumpAsText();
18 </script> 18 </script>
19 </head> 19 </head>
20 <body> 20 <body>
21 <div id="multicolumn"></div> 21 <div id="multicolumn"></div>
22 </body> 22 </body>
23 <script> 23 <script>
24 description("Test for column-width property with zero value"); 24 description("Test for column-width property with zero value");
25 var divElement = document.getElementById("multicolumn"); 25 var divElement = document.getElementById("multicolumn");
26 shouldBe('getComputedStyle(divElement).webkitColumnWidth', '"auto"'); 26 shouldBe('getComputedStyle(divElement).webkitColumnWidth', '"auto"');
27 </script> 27 </script>
28 <script src="../js/resources/js-test-post.js"></script>
29 </html> 28 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/mediastream/getusermedia.html ('k') | LayoutTests/fast/multicol/columns-shorthand-parsing-2.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698