Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / multicol / inline-children-crash.html
blob79cf886110a6a6d1b7c857140400d3a473c651b0
1 <!DOCTYPE html>
2 <script>
3 if (window.testRunner)
4 testRunner.dumpAsText();
5 onload = function() {
6 document.getElementById('mc').offsetTop; // trigger layout
7 document.getElementById('mc').style.webkitColumns = 'auto';
8 document.getElementById('mc').style.columns = 'auto';
9 document.getElementById('inline').style.color = 'green';
11 </script>
12 <p>This test should not crash.</p>
13 <div id="mc" style="-webkit-columns:3; columns:3;">
14 <span id="inline">PASS</span>
15 </div>