blob: 17352a30bd15afa57298510e49586bfe0decb0c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
html {
color: orange;
}
</style>
<script>
function boom()
{
document.documentElement.offsetHeight;
document.getElementById("hostW").attachShadow({ mode: "open" }).innerHTML = '<z></z>';
document.getElementsByTagName("style")[0].remove();
}
</script>
</head>
<body onload="boom();"><div style="display: contents;" id="hostW"></div></body>
</html>
|