Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dynamic / 014.html
blob243a6bc52afe3cc029e628fba0104376a00053ea
1 <html>
2 <head>
3 <script type="text/javascript">
4 function showBug() {
5 var table, row, cell;
6 table = document.createElement("table");
7 document.body.appendChild(table);
8 row = table.insertRow(0);
9 row.insertCell(0).appendChild(document.createTextNode("row 1"));
10 row = table.insertRow(1);
11 row.insertCell(0).appendChild(document.createTextNode("row 2"));
12 row = table.insertRow(2);
13 row.insertCell(0).appendChild(document.createTextNode("row 3"));
15 </script>
16 </head>
17 <body onLoad="showBug();">
18 <p>You should see three rows below labeled "row 1", "row 2", "row 3", from top to bottom.</p>
19 </body>
20 </html>