| OLD | NEW |
| 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../../fast/js/resources/js-test-pre.js"></script> |
| 5 </head> | 5 </head> |
| 6 <body> | 6 <body> |
| 7 <p id="description"></p> | 7 <p id="description"></p> |
| 8 <div id="console"></div> | 8 <div id="console"></div> |
| 9 | 9 |
| 10 <div id=container> | 10 <div id=container> |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 document.execCommand("InsertHTML", false, "12x̲̅45"); | 127 document.execCommand("InsertHTML", false, "12x̲̅45"); |
| 128 shouldBe("domValueOf('n')", "'12' + fancyX + '45'"); | 128 shouldBe("domValueOf('n')", "'12' + fancyX + '45'"); |
| 129 shouldBe("visibleValueOf('n')", "'12' + fancyX + '45'"); | 129 shouldBe("visibleValueOf('n')", "'12' + fancyX + '45'"); |
| 130 document.getElementById("huge").focus(); | 130 document.getElementById("huge").focus(); |
| 131 document.execCommand("InsertHTML", false, "12x̲̅45"); | 131 document.execCommand("InsertHTML", false, "12x̲̅45"); |
| 132 shouldBe("domValueOf('huge')", "'12' + fancyX + '45'"); | 132 shouldBe("domValueOf('huge')", "'12' + fancyX + '45'"); |
| 133 shouldBe("visibleValueOf('huge')", "'12' + fancyX + '45'"); | 133 shouldBe("visibleValueOf('huge')", "'12' + fancyX + '45'"); |
| 134 | 134 |
| 135 document.getElementById('container').innerHTML = ''; | 135 document.getElementById('container').innerHTML = ''; |
| 136 </script> | 136 </script> |
| 137 <script src="../../fast/js/resources/js-test-post.js"></script> | |
| 138 </body> | 137 </body> |
| 139 </html> | 138 </html> |
| OLD | NEW |