Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-display/display-contents-slot-attach-whitespace.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>Attaching shadow slot with assigned whitespace separated inline elements</title>
<link rel="match" href="../reference/pass_if_two_words.html">
<p>There should be a space between "two" and "words" below.</p>
<div id="host"><span>two</span> <span>words</span></div>
<script>
host.offsetTop;
host.attachShadow({mode:"open"}).innerHTML = "<slot></slot>";
</script>