Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-contain/quote-scoping-shadow-dom-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<style>
#test { contain: style; }
</style>
<body>
<q id="test"></q>
<div>
<template shadowrootmode="open">
<slot></slot>
</template>
<q id="test2"></q>
</div>
<script>
test.offsetTop;
test2.slot = "1";
test2.appendChild(test);
test.offsetTop;
</script>
</body>