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 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css">
6 #inner:first-letter { }
7 #outer { direction: rtl; }
9 </style>
11 <script type="text/javascript">
13 function boom()
14 {
15 document.documentElement.style.whiteSpace = "pre";
16 }
18 </script>
19 </head>
21 <body onload="boom();"><div id="outer"><div id="inner"><span id="s"><span>
23 </span>AB</span></div></div></body>
24 </html>