blob: c4e7db14e729cde5bf8f9bd6498f74485a8212c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<div id="host">host</div>
<script>
"use strict";
document.getElementById("host").attachShadow({mode: "closed"});
</script>
</body>
</html>
|