5 #container + * { clear: both; }
7 <p id=
"container"><textarea></textarea></p>
10 if (window
.testRunner
)
11 testRunner
.dumpAsText();
13 var textarea
= document
.getElementsByTagName('textarea')[0];
15 textarea
.innerHTML
= 'a\n';
16 textarea
.selectionStart
= 1;
17 textarea
.selectionEnd
= 1;
18 document
.execCommand('InsertLineBreak', false, null);
20 document
.body
.innerText
= "This test verifies WebKit doesn't crash even if the DOM changes in shadow DOM caused the shadow host's style to change.\nPASS";