blob: 2b519664c713755e8095fec850ad1bfa52ecdf58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<div>This test has passed if it doesn't crash under ASAN.</div>
<style>
* { display: flex; }
</style>
<table><td id="crashy"></td></table>
<script>
if (window.testRunner)
testRunner.dumpAsText();
crashy.offsetLeft;
crashy.parentNode.removeChild(crashy);
</script>
|