Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / multicol / content-change-same-height.html
1 <!DOCTYPE html>
2 <script>
3     if (window.testRunner)
4         testRunner.dumpAsText();
5     onload = function() {
6         document.body.offsetTop;
7         document.getElementById('elm').innerHTML= "x";
8         document.body.offsetTop;
9         document.getElementById('elm').innerHTML= "PASS";
10     }
11 </script>
12 <p>No assertions should fail.</p>
13 <div style="-webkit-columns:2; columns:2;">
14     <span id="elm">FAIL</span>
15 </div>