Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
2 <head style="display: none ! important;">
4 <style>
5 #a { direction: rtl; }
6 #a { position: absolute; }
7 #a { right: 5px; }
8 #a { left: -10em; }
9 #b { direction: ltr; }
10 #b { width: 10%; }
11 #b { display: -moz-inline-block; }
12 #c { display: -moz-inline-block; }
13 #e { display: -moz-inline-block; }
14 #d { display: -moz-inline-block; }
15 #d { padding: 5px 10px; }
16 #d dl, #d dt, #d dd { display: inline; }
17 #d dt { margin-left: 5px; }
18 #d dd { margin-left: 2px; }
19 #d dd:before { content: "="; }
20 </style>
22 <style id="newstyle"></style>
23 <script>
24 function change()
25 {
26 document.getElementById("newstyle").appendChild(document.createTextNode("#b { white-space: pre; }"));
27 document.documentElement.removeAttribute("class");
28 }
29 </script>
31 </head>
33 <body onload="setTimeout(change, 1);">
35 <div id="a"><div id="b">
37 <div id="c"></div>
39 <div id="d">
40 <dl>
41 <dt>0</dt><dd><span id="e">Accessibility Statement</span></dd>
42 <dt>1</dt><dd>Main Page</dd>
43 <dt>2</dt><dd>Skip to Content</dd>
44 <dt>3</dt><dd>List of Posts</dd>
45 <dt>4</dt><dd>Search</dd>
46 <dt>p</dt><dd>Previous (individual/monthly archive page)</dd>
47 </dl>
48 </div>
50 </div></div>
52 </body>
53 </html>