Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dynamic / 013.html
bloba0c8449207dd020a7b2a7486369b35f07f9d341b
1 <html>
2 <head>
3 <title>Webmail links</title>
4 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
6 <meta http-equiv='Content-Type' content='text/html; charset=utf-8'>
8 <script type='text/javascript'>
9 <!--
10 function init_table() {
12 var myTable = window.document.getElementById("my_table");
13 var row;
14 var cell;
16 row = myTable.insertRow(0);
18 cell = row.insertCell(0);
19 cell.colSpan = 1;
20 cell.innerHTML = "span 1";
22 cell = row.insertCell(1);
23 cell.colSpan = 1;
24 cell.innerHTML = "span 1";
26 row = myTable.insertRow(1);
28 cell = row.insertCell(0);
29 cell.colSpan = 2;
30 cell.innerHTML = "should span 2";
34 //-->
35 </script>
36 </head>
37 <body onload="init_table()">
39 <table id='my_table' border='1' width='200px' height='200px' cellpadding='0' cellspacing='0'>
40 <tfoot>
41 </tfoot>
42 <tbody>
43 </tbody>
44 </table>
46 </body>
47 </html>