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

Side by Side Diff: LayoutTests/fast/multicol/old/column-width-zero.html

Issue 299373006: Move old multicol tests to a separate directory. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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 <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="../../resources/js-test.js"></script> 14 <script src="../../../resources/js-test.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 </html> 28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698