Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / bugs / bug30559.html
blobee0e72d0b5de00be7eff6db2465d9f6d8b239ff8
1 <html>
2 <HEAD>
3 <SCRIPT>
5 function doIt() {
6 var textarea = document.getElementsByTagName("TEXTAREA")[0];
7 textarea.value = "bar";
9 </SCRIPT>
10 <BODY BGCOLOR=#FFFFFF onload="doIt()">
11 The bug causes the nested table containing the textarea to be positioned away from the left edge of the outer table
12 <BR>
14 <TABLE WIDTH=300 BORDER=1 ALIGN=CENTER>
15 <TR>
16 <TD WIDTH=150>
17 <TABLE border=1>
18 <FORM>
19 <TR>
20 <TD>
21 <TEXTAREA row=2 cols=5>foo</TEXTAREA>
22 </TD>
23 </TR>
24 </FORM>
25 </TABLE>
26 </TD>
27 </TR>
28 </TABLE>
30 </body>
31 </html>