| OLD | NEW |
| 1 <div style="position: relative;"> | 1 <div style="position: relative;"> |
| 2 <div style="width: 100px; height: 100px; background-color: red;"></div> | 2 <div style="width: 100px; height: 100px; background-color: red;"></div> |
| 3 <div style="visibility: hidden; position: absolute; top: 0;"> | 3 <div style="visibility: hidden; position: absolute; top: 0;"> |
| 4 <div id="inner" style="width: 100px; height: 100px; background-color: gr
een;"></div> | 4 <div id="inner" style="width: 100px; height: 100px; background-color: gr
een;"></div> |
| 5 </div> | 5 </div> |
| 6 </div> | 6 </div> |
| 7 <script src="../../resources/run-after-display.js"></script> |
| 7 <script> | 8 <script> |
| 8 function test() | 9 if (window.testRunner) |
| 9 { | 10 testRunner.waitUntilDone(); |
| 11 runAfterDisplay(function() { |
| 10 document.getElementById("inner").style.visibility = "visible"; | 12 document.getElementById("inner").style.visibility = "visible"; |
| 11 } | 13 if (window.testRunner) |
| 12 if (window.testRunner) { | 14 testRunner.notifyDone(); |
| 13 document.body.offsetTop; | 15 }); |
| 14 testRunner.display(); | |
| 15 test(); | |
| 16 } else | |
| 17 setTimeout(test, 0); | |
| 18 </script> | 16 </script> |
| OLD | NEW |