Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <div>This test has passed if it doesn't crash under ASAN.</div> | |
|
inferno
2013/07/19 20:25:08
nit: we should add a <!DOCTYPE html>
Julien - ping for review
2013/07/19 20:52:31
Nope, this test requires quirks mode :(
| |
| 2 <style> | |
| 3 * { display: flex; } | |
| 4 </style> | |
| 5 <table><td id="crashy"></td></table> | |
| 6 <script> | |
| 7 if (window.testRunner) | |
| 8 testRunner.dumpAsText(); | |
| 9 | |
| 10 crashy.offsetLeft; | |
| 11 crashy.parentNode.removeChild(crashy); | |
| 12 </script> | |
| OLD | NEW |