https://github.com/web-platform-tests/wpt
Raw File
Tip revision: dd7ffe7ae5c4df2f19f961f340d376f64b6c0de3 authored by Philip Jägenstedt on 06 April 2018, 11:10:29 UTC
Fix all lint errors in svg/import/*
Tip revision: dd7ffe7
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