blob: 74fdff2bf2b06765cfc67a9346d40c77c9e30c8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<link rel=author href="mailto:jarhar@chromium.org">
<link rel=help href="https://bugs.chromium.org/p/chromium/issues/detail?id=1251931">
<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>
|