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 dir="rtl">
3 <head>
4 <meta charset="UTF-8">
5 <title>dir() selector</title>
6 <style>
7 :-moz-dir(ltr) { color: blue }
8 :-moz-dir(rtl) { color: lime }
9 :-moz-dir(foopy) { color: red }
10 div { text-align: left; }
11 </style>
12 </head>
13 <body>
14 <div>This element has default direction.</div>
15 <div dir="ltr">This element is ltr.</div>
16 <div dir="rtl">This element is rtl.</div>
17 <div dir="ltr">
18 <div>This element should inherit ltr.</div>
19 <div dir="ltr">This element is ltr.</div>
20 <div dir="rtl">This element is rtl.</div>
21 </div>
22 <div dir="rtl">
23 <div>This element should inherit rtl.</div>
24 <div dir="ltr">This element is ltr.</div>
25 <div dir="rtl">This element is rtl.</div>
26 </div>
27 <div dir="foopy">This element has an invalid dir attribute and
28 should have default direction.</div>
29 </body>
30 </html>