Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / multicol / span / generated-child-split-flow-crash.html
1 <!DOCTYPE html>
2 <html style="font-family: Ahem; -webkit-font-smoothing: none;">
3 <style>
4     #div1 { 
5         -webkit-column-count: 2;
6     }
7     #span1:after 
8     {
9         display: block;
10         content: counter(c);
11         color: green;
12         -webkit-column-span: all;
13     }
14 </style>
15 <div id="div1">
16 A<span id="span1" style="color: blue">B</span>C
17 </div>
18 <div style="font-family: initial;">PASS if no crash</div>
19 <script>
20 function runTest()
21 {
22     if (window.testRunner)
23         testRunner.dumpAsText();
24
25     span1 = document.getElementById('span1');
26     span1.style.display = 'block';
27     document.body.offsetTop;
28     document.body.style.zoom = 2;
29 }
30
31 window.onload = runTest;
32 </script>
33 </html>