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
michael@0 | 1 | <html class="reftest-wait"> |
michael@0 | 2 | <head> |
michael@0 | 3 | <style> |
michael@0 | 4 | #el0 { |
michael@0 | 5 | -moz-column-count: 3; |
michael@0 | 6 | column-count: 3; |
michael@0 | 7 | max-width: 13ex; |
michael@0 | 8 | display: inline-block; |
michael@0 | 9 | } |
michael@0 | 10 | #el0:first-line { font-family: x; } |
michael@0 | 11 | #el0:first-letter { float: right; } |
michael@0 | 12 | </style> |
michael@0 | 13 | <script> |
michael@0 | 14 | onload = function() { |
michael@0 | 15 | el0=document.createElement('object') |
michael@0 | 16 | el0.setAttribute('id','el0') |
michael@0 | 17 | document.body.appendChild(el0) |
michael@0 | 18 | el0.appendChild(document.createTextNode(unescape('%ua000%uf400'))) |
michael@0 | 19 | el0.appendChild(document.createTextNode(unescape('%u3000')+'AA')) |
michael@0 | 20 | el0.appendChild(document.createTextNode('')) |
michael@0 | 21 | document.documentElement.removeAttribute("class"); |
michael@0 | 22 | } |
michael@0 | 23 | </script> |
michael@0 | 24 | </head> |
michael@0 | 25 | <body> |
michael@0 | 26 | </body> |
michael@0 | 27 | </html> |
michael@0 | 28 |