Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / multicol / column-width-zero.html
blob2ce42f9ffd32d218d0d1ec1d18aead307e33cebf
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #multicolumn
7 display: block;
8 -moz-column-width: 0;
9 -o-column-width: 0;
10 -webkit-column-width: 0;
11 column-width: 0;
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>