blob: 67c466aa702577b1b0f609932be2749d2ff82306 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
#host {
width: 200px;
}
</style>
</head>
<body>
<div id="host" tabindex=0>
<div>
<div><div>First line leads,</div></div>
</div>
</div>
<script>
if (window.internals)
internals.settings.setAuthorShadowDOMForAnyElementEnabled(true);
var host = document.getElementById("host");
var shadow1 = host.webkitCreateShadowRoot();
shadow1.innerHTML = "<div><shadow></shadow><div></div></div>";
var shadow2 = host.webkitCreateShadowRoot();
shadow2.innerHTML = "<section>"
+ "<shadow></shadow>"
+ "<div>second line follows.</div>"
+ "</section>";
host.focus();
host.blur();
</script>
</body>
</html>