Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / multicol / inline-children-crash.html
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';
10     }
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>