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 lang="en">
4 <head>
5 <meta charset="utf-8">
6 <title>Grid</title>
7 <style>
8 body {
9 background: #fff;
10 }
11 .r {background: red; width: 300px; height: 50px}
12 .g {background: green; width: 300px; height: 50px}
13 </style>
14 </head>
16 <body>
17 <div class=r></div>
18 <div class=g></div>
19 <div class=r></div>
20 <div class=g></div>
21 <div class=r></div>
22 <div class=g></div>
23 </body>
24 </html>