blob: 80e5d06e11f5e27f7902bf91611c16719be68957 (
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 shadowroot=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>
|