| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <style> | |
| div { | |
| position: relative; | |
| width: 200px; | |
| height: 200px; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <p>This test should not crash.</p> | |
| <div style="background-color: green" id="outer"> | |
| <div> | |
| <div style="background-color: blue; left: 100px; top: 100px"></div> | |
| </div> | |
| </div> | |
| <script> | |
| function doTest() { | |
| document.getElementById("outer").style.overflow = "clip"; | |
| } | |
| window.addEventListener('load', doTest, false); | |
| </script> | |
| </body> | |
| </html> |