blob: 6075deb9369c72bbf48506d3d1e13d27effcef12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function boom()
{
var y = document.createTextNode('Y');
document.body.insertBefore(y, document.getElementById("v").nextSibling);
}
</script>
</head>
<body onload="boom();" style="column-count: 2; width: 10ch; letter-spacing: 1px; font-family: monospace;">
<div style="background: lightblue; float: right; height: 14em; width: 1ch;" id="v"></div>a bcd<span>‫X</span>
</body>
</html>
|