fune/testing/web-platform/tests/css/css-scoping/shadow-reassign-dynamic-002.html
Emilio Cobos Álvarez 404ee2e0f4 Bug 1465572: Changing the slot name should properly invalidate layout. r=smaug
Just something I found while trying to construct a test-case for this.

MozReview-Commit-ID: A01qzQ14QG9

--HG--
extra : rebase_source : 5329a8791774b402b633a992fa9bca2cc5b320fb
2018-06-02 09:17:17 +02:00

21 lines
847 B
HTML

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Scoping: Dynamic reassignment of a slot.</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="help" href="https://drafts.csswg.org/css-scoping/#selectors-data-model">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1465572">
<link rel="match" href="reference/green-box.html"/>
<div id="host">
FAIL
<div style="background: green" slot="the-slot"></div>
</div>
<script>
document.body.offsetTop;
host.attachShadow({ mode: "open" }).innerHTML = `
<style>::slotted(div) { width: 100px; height: 100px }</style>
<p>Test passes if you see a single 100px by 100px green box below.</p>
<slot>FAIL</slot>
`;
document.body.offsetTop;
host.shadowRoot.querySelector("slot").setAttribute("name", "the-slot");
</script>