| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <style> | 2 <style> |
| 3 </style> | 3 </style> |
| 4 <script> | 4 <script> |
| 5 if (window.testRunner) | 5 if (window.testRunner) |
| 6 testRunner.dumpAsText(); | 6 testRunner.dumpAsText(); |
| 7 | 7 |
| 8 var css = null; | 8 var css = null; |
| 9 | 9 |
| 10 function boom2() { | 10 function boom2() { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 | 39 |
| 40 setTimeout(boom2, 0); | 40 setTimeout(boom2, 0); |
| 41 } | 41 } |
| 42 | 42 |
| 43 onload = function() { | 43 onload = function() { |
| 44 css = document.styleSheets[0]; | 44 css = document.styleSheets[0]; |
| 45 setTimeout(boom, 0); | 45 setTimeout(boom, 0); |
| 46 } | 46 } |
| 47 </script> | 47 </script> |
| 48 <!-- | 48 <!-- |
| 49 This test forces a situation where we reassign a RenderLayer's grouped mapping, | 49 This test forces a situation where we reassign a Layer's grouped mapping, |
| 50 but don't inform the old mapping of the change, and the old mapping attempts to | 50 but don't inform the old mapping of the change, and the old mapping attempts to |
| 51 use the stale pointer. | 51 use the stale pointer. |
| 52 | 52 |
| 53 FIXME: this test is gross and should be reduced to a minimal repro. | 53 FIXME: this test is gross and should be reduced to a minimal repro. |
| 54 --> | 54 --> |
| 55 <body>This test passes if it does not crash</body> | 55 <body>This test passes if it does not crash</body> |
| OLD | NEW |