Update scroll position immediately after resizing view
[framework/web/webkit-efl.git] / LayoutTests / printing / simultaneous-position-float-change.html
1 <html>
2 <head>
3     <style media="print">
4         div { position: absolute; }
5         span {display: none; }
6     </style>
7 </head>
8 <body>
9     <div> 
10         <span style="float: right;"> 
11             0
12         </span>
13     </div>
14     <script>
15 document.body.offsetWidth;
16 if (window.testRunner)
17     testRunner.setPrinting();
18 document.body.offsetWidth;
19 </script>
20
21 </body>
22 </html>