Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(799)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/HTMLTableRowElement/insertCell.html

Issue 2785963002: Move tests for table elements to LayoutTests/html/tabular_data/. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2
3 <head>
4 <script type="text/javascript">
5
6 function test()
7 {
8 if (window.testRunner)
9 testRunner.dumpAsText();
10 var tr = document.getElementById('row');
11 tr.insertCell(0).innerHTML = "<td>cell inside table inside cell 0</td>";
12 tr.insertCell(1).innerHTML = "<td>cell inside table inside cell 1</td>";
13 }
14
15 </script>
16 </head>
17
18 <body onload="test()">
19
20 <p>This tests a particular case of insertCell that was crashing on ebay at the t ime the test was written.</p>
21
22 <p><table><tr id="row"></tr></table></p>
23
24 <p>If there was no crash, and you can see text above mentioning cell 1 as well a s cell 0, the test passed.</p>
25
26 </body>
27
28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698