| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| #test0 { -webkit-column-count: 2; } | |
| </style> | |
| </head> | |
| <body> | |
| <p>Test that a input element with multicolumn style attached is rendered property.</p> | |
| <p>The test passes if it does not crash or assert.</p> | |
| <p id="result">FAIL</p> | |
| <input style="-webkit-column-count: 2;" /> | |
| <script> | |
| if (window.testRunner) | |
| testRunner.dumpAsText(); | |
| document.body.offsetTop; | |
| document.getElementById("result").innerHTML = "PASS"; | |
| </script> | |
| </body> | |
| </html> |