Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / bugs / bug68912.html
blob584e97c607791ea2a5c451745dce95afb573aa1e
1 <html>
2 <head>
3 <title>Crash TR.cells = null</title>
4 <script language="javascript">
6 function crashme()
8 var elm = document.createElement('tr');
10 elm.cells = null;
11 alert('No Crash');
15 </script>
16 </head>
17 <body>
19 <p>
20 This test case creates a TR element then tries to assign to the cells property
21 </p>
22 <p>
23 Crash
24 <button onclick="crashme()">TR.cells = null</button>
25 </p>
27 </body>
28 </html>