Fri, 16 Jan 2015 04:50:19 +0100
Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css">
5 div:first-letter { float: left; }
6 </style>
7 <script>
8 function boom()
9 {
10 var v = document.getElementById("v");
11 var t = v.firstChild;
12 v.appendChild(document.createTextNode(" "));
13 v.removeChild(t);
14 }
15 </script>
16 </head>
17 <body onload="boom();"><div id="v" style="-moz-column-count: 2; width: 1px;">a b</div></body>
18 </html>