blob: 8f20f3b7271c61dbb9cea299c9ed2d371d7c7ba9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<html>
<head>
<style>
* {
quotes: none !important;
}
</style>
<script>
function start () {
const o1 = document.getElementById('id_1')
const o2 = document.createElement('q')
const o3 = document.createElement('v')
document.documentElement.appendChild(o1)
o3.dir = 'rtl'
o2.appendChild(o3)
document.documentElement.appendChild(o2)
}
document.addEventListener('DOMContentLoaded', start)
</script>
</head>
<q id="id_1">
</html>
|