https://github.com/web-platform-tests/wpt
Raw File
Tip revision: d667dfe87079b7acf0d9ec69afd1158e5f7fde8a authored by Rob Buis on 12 April 2018, 16:14:10 UTC
Fix regression allowing text value for -webkit-background-origin
Tip revision: d667dfe
layout-slot-no-longer-fallback.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><div id="fallback">Should not be displayed</div></slot>'

document.body.offsetLeft;
host.appendChild(document.createElement('div'));
</script>
back to top