9 lines
310 B
HTML
9 lines
310 B
HTML
<!DOCTYPE html>
|
|
<meta charset="UTF-8">
|
|
<script>
|
|
root = document.createElement("div")
|
|
document.documentElement.appendChild(root)
|
|
document.documentElement.appendChild(document.createElement("thead"))
|
|
document.documentElement.getBoundingClientRect()
|
|
root.appendChild(document.createElement("textarea"))
|
|
</script>
|