| OLD | NEW |
| 1 <script> | 1 <script> |
| 2 window.onload = function() { | 2 window.onload = function() { |
| 3 var oSelection=window.getSelection(); | 3 var oSelection=window.getSelection(); |
| 4 document.execCommand("SelectAll", false, false) | 4 document.execCommand("SelectAll", false, false) |
| 5 var oRange = oSelection.getRangeAt(0); | 5 var oRange = oSelection.getRangeAt(0); |
| 6 var oDocumentFragment = oRange.extractContents(); | 6 var oDocumentFragment = oRange.extractContents(); |
| 7 | 7 |
| 8 document.body.appendChild(document.createTextNode('PASS, if no assert or cra
sh in debug')); | 8 document.body.appendChild(document.createTextNode('PASS, if no assert or cra
sh in debug')); |
| 9 | 9 |
| 10 if (window.layoutTestController) | 10 if (window.layoutTestController) |
| 11 layoutTestController.dumpAsText(); | 11 layoutTestController.dumpAsText(); |
| 12 } | 12 } |
| 13 </script> | 13 </script> |
| 14 <style> | 14 <style> |
| 15 *{word-break:inherit;text-rendering:optimizeLegibility;} | 15 *{word-break:inherit;text-rendering:optimizeLegibility;} |
| 16 .fixedNavDown{nav-down:#;position:fixed; } | 16 .fixedNavDown{nav-down:#;position:fixed; } |
| 17 </style> | 17 </style> |
| 18 | 18 |
| 19 <ruby><rt class="fixedNavDown">A</rt></ruby> | 19 <ruby><rt class="fixedNavDown">A</rt></ruby> |
| OLD | NEW |