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>
5 <style>
6 #outer {
7 -moz-column-count: 2;
8 }
9 #inner {
10 border: 1px solid green;
11 }
12 </style>
14 <style id="s">
15 #inner {
16 float: right;
17 height: 1em;
18 }
19 </style>
21 </head>
23 <body onload="document.getElementById('s').disabled = true;">
25 <div id="outer"><div id="inner"></div></div>
27 </body>
28 </html>