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/content-visibility/slot-content-visibility-16-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel=author href="mailto:jarhar@chromium.org">
<div>
<template shadowrootmode=open></template>
<span id="outside"></span>
</div>
<div style="content-visibility:hidden"></div>
<script>
getComputedStyle(outside).color;
outside.style.color = "green";
getComputedStyle(outside).color;
</script>