blob: 1bdec03e60efb9d55077344dd300b9498c51d530 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<style>
#container + * { clear: both; }
</style>
<p id="container"><textarea></textarea></p>
<script>
if (window.testRunner)
testRunner.dumpAsText();
var textarea = document.getElementsByTagName('textarea')[0];
textarea.focus();
textarea.innerHTML = 'a\n';
textarea.selectionStart = 1;
textarea.selectionEnd = 1;
document.execCommand('InsertLineBreak', false, null);
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";
</script>
</body>
</html>