blob: 3e8063e38517ba92331c342ead8ccd71a8a176a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!doctype html>
<body>
<script>
const SVG_NS = "http://www.w3.org/2000/svg";
let g = document.createElementNS(SVG_NS, "g");
g.style.display = "contents";
document.body.appendChild(g);
let div = document.createElement('div');
div.style.width = div.style.height = "100px";
div.style.backgroundColor = "green";
g.appendChild(div);
</script>
</body>
|