https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c63b9d03ba8b8c32dd9188e1fb23465951d49b03 authored by Ting-Yu Lin on 11 April 2018, 09:35:12 UTC
Part 5: Add web-platform-tests for linear-gradient with writing-modes.
Tip revision: c63b9d0
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