gecko-dev/layout/reftests/webcomponents/remove-insertion-point-1.html
Jessica Jong bdf8958759 Bug 1409975 - Part 4: Update and add reftests for Shadow DOM v1. r=emilio
--HG--
rename : layout/reftests/webcomponents/basic-insertion-point-1-ref.html => layout/reftests/webcomponents/basic-slot-5-ref.html
rename : layout/reftests/webcomponents/basic-insertion-point-1.html => layout/reftests/webcomponents/basic-slot-5.html
rename : layout/reftests/webcomponents/basic-insertion-point-2-ref.html => layout/reftests/webcomponents/basic-slot-6-ref.html
rename : layout/reftests/webcomponents/basic-insertion-point-2.html => layout/reftests/webcomponents/basic-slot-6.html
2017-12-04 16:06:42 +08:00

27 lines
736 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<script>
function tweak() {
// div with style "border: 10px solid green"
var shadowDiv = document.createElement("div");
shadowDiv.style.border = "10px solid green";
// Insertion point will match nothing and use fallback content.
var slot = document.createElement("slot");
shadowDiv.appendChild(slot);
var shadowRoot = document.getElementById('outer').attachShadow({mode: 'open'});
shadowRoot.appendChild(shadowDiv);
// Remove the insertion point from the ShadowRoot, "Hello" should no
// longer be rendered.
shadowDiv.removeChild(slot);
}
</script>
</head>
<body onload="tweak()">
<div id="outer">Hello</div>
</body>
</html>