Sign in
chromium
/
devtools
/
devtools-frontend
/
main
/
.
/
test
/
e2e
/
resources
/
elements
/
adopted-stylesheet-iframe.html
blob: b76aab32c35e0ee9050e12c028c782f1c84f6b51 [
file
]
<div
class
=
"from-iframe"
>
from iframe
</div>
<script>
const
iframeStyle
=
new
CSSStyleSheet
();
iframeStyle
.
replaceSync
(
'/* For iframe */\n.from-iframe {\n color: blue;\n}\n'
);
document
.
adoptedStyleSheets
=
[
iframeStyle
];
</script>