| <!DOCTYPE html> |
| <html> |
| <head> |
| <style> |
| .absolute-container { |
| position: absolute; |
| width: 100px; |
| height: 300px; |
| background-color: #FF5252; |
| } |
| .absolute-block { |
| position: absolute; |
| width: 50%; |
| height: 50px; |
| top: 100px; |
| background-color: #03A9F4; |
| } |
| .no-offset { |
| left: 0px; |
| } |
| .offset { |
| left: 30px; |
| } |
| </style> |
| <script> |
| if (window.testRunner) { |
| window.testRunner.waitUntilDone(); |
| } |
| |
| window.onload = function() { |
| if (window.testRunner) { |
| window.testRunner.DoNonMeasuredLayout(); |
| } |
| |
| var node = document.getElementById('node'); |
| node.className = "absolute-container offset"; |
| |
| if (window.testRunner) { |
| window.testRunner.notifyDone(); |
| } |
| } |
| </script> |
| </head> |
| <body> |
| <div id="node" class="absolute-container no-offset"> |
| <div class="offset"> |
| <div class="absolute-block"></div> |
| </div> |
| </div> |
| </body> |
| </html> |