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 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html>
3 <head>
4 <style type="text/css">
6 #relleft {
7 float: left;
8 width: 290px;
9 margin: 15px 0 0 0;
10 }
12 #fl:first-line { }
14 #cols { -moz-column-width: 4503599627370497mm; }
16 </style>
18 <script type="text/javascript">
20 function boom()
21 {
22 document.getElementById("x").setAttribute("id", "cols");
23 document.getElementById("fl").firstChild.splitText(1);
24 }
26 </script>
27 </head>
29 <body onload="boom();">
30 <div id="x"><div id="relleft"></div><div id="fl">
31 a b c d</div></div>
32 </body>
33 </html>