Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / multicol / newmulticol / regular-block-becomes-multicol.html
blob5e0c761143db3ddd0b4dd8d7e2d1fe9135a57fa2
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Change regular block to multicol</title>
5 <script>
6 function test() {
7 var elm = document.getElementById('elm');
8 elm.offsetTop; // trigger layout
9 elm.style.WebkitColumns = 4;
10 elm.style.columns = 4;
12 </script>
13 </head>
14 <body onload="test()">
15 <p>You should see the word 'PASS' below.</p>
16 <div style="font-family:monospace; float:left;">
17 <div id="elm" style="-webkit-column-gap:0; column-gap:0; orphans:1; widows:1;">
18 P<br>
19 A<br>
20 S<br>
21 S<br>
22 </div>
23 </div>
24 </body>
25 </html>