Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css">
6 #tablecell {
7 display: table-cell;
8 }
9 .border { border: 1px solid blue; }
11 </style>
12 </head>
13 <body>
15 <span class="border">
16 <span id="tablecell">x</span>
17 </span>
19 <script>
21 document.body.offsetWidth;
22 document.getElementById("tablecell").removeAttribute("id");
24 </script>
25 </body>
26 </html>