6 document
.getElementById('console').appendChild(document
.createTextNode(msg
+ '\n'));
11 if (window
.testRunner
)
12 testRunner
.dumpAsText();
13 var td
= document
.getElementById("td");
14 var text
= td
.firstChild
;
15 var s
= window
.getSelection();
17 document
.execCommand("InsertNewlineInQuotedContent");
18 var tables
= document
.getElementsByTagName("table");
19 if (tables
.length
== 1)
26 <body onload=
"test()">
27 <p>This tests that inserting a newline inside a table still works and doesn't break the table apart, even when in quoted content.
</p>
28 <div contenteditable=
"true">
29 <blockquote type=
"cite"><table border=
"1" id=
"tb"><tr><td id=
"td">foobar
</td></tr></table></blockquote>
31 <pre id=
"console"></pre>