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

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

Powered by Google App Engine
This is Rietveld 408576698