https://github.com/web-platform-tests/wpt
Raw File
Tip revision: dd6fbaac2a7deeea999adeecd4b30a3655f48c7e authored by Yoav Weiss on 19 April 2018, 20:02:31 UTC
[Resource Timing] Align TAO parsing to spec
Tip revision: dd6fbaa
layout-slot-no-longer-assigned.html
<!DOCTYPE html>
<title>Layout using slot elements</title>
<link rel="author" title="Hayato Ito" href="mailto:hayato@google.com"/>
<link rel="help" href="https://dom.spec.whatwg.org/#shadow-tree-slots">
<link rel="match" href="reference/empty.html"/>
<div id="host"></div>
<script>
const host = document.querySelector('#host');
const sr = host.attachShadow({ mode: 'open' });
sr.innerHTML = '<slot name=s1></slot>'
host.innerHTML = '<div id=d1 slot=s1></div>';

document.body.offsetLeft;
document.querySelector('#d1').setAttribute('slot', 's2');
</script>
back to top