blob: 4d511e83a05646a4bcd6fe6eb48c0159d5739f44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<html>
<head>
<script>
function start() {
o1 = document.createElement('u')
o2 = document.createElement('li')
o3 = document.createElement('style')
o2.textContent = '\nr'
o1.appendChild(o2)
document.documentElement.appendChild(o1)
o3.textContent = 'html { white-space: pre } :first-letter { float: left }'
document.documentElement.appendChild(o3)
}
document.addEventListener('DOMContentLoaded', start)
</script>
</head>
</html>
|