| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="resources/util.js"></script> | 4 <script src="resources/util.js"></script> |
| 5 <script src="../../fast/js/resources/js-test-pre.js"></script> | 5 <script src="../../fast/js/resources/js-test-pre.js"></script> |
| 6 </head> | 6 </head> |
| 7 <body> | 7 <body> |
| 8 <pre id="console"></pre> | 8 <pre id="console"></pre> |
| 9 <iframe id="frame1" src="data:text/html,<body></body>"></iframe> | 9 <iframe id="frame1" src="data:text/html,<body></body>"></iframe> |
| 10 <iframe id="frame2" src="data:text/html,<body></body>"></iframe> | 10 <iframe id="frame2" src="data:text/html,<body></body>"></iframe> |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 shouldBe('internals.markerCountForNode(testEditable2.childNodes[0], "spellin
g")', '0'); | 44 shouldBe('internals.markerCountForNode(testEditable2.childNodes[0], "spellin
g")', '0'); |
| 45 internals.setContinuousSpellCheckingEnabled(true); | 45 internals.setContinuousSpellCheckingEnabled(true); |
| 46 testEditable1.focus(); | 46 testEditable1.focus(); |
| 47 testEditable2.focus(); | 47 testEditable2.focus(); |
| 48 shouldBe('internals.markerCountForNode(testEditable1.childNodes[0], "spellin
g")', '3'); | 48 shouldBe('internals.markerCountForNode(testEditable1.childNodes[0], "spellin
g")', '3'); |
| 49 shouldBe('internals.markerCountForNode(testEditable2.childNodes[0], "spellin
g")', '3'); | 49 shouldBe('internals.markerCountForNode(testEditable2.childNodes[0], "spellin
g")', '3'); |
| 50 } else { | 50 } else { |
| 51 log("Automatic testing impossible. Test manually. See steps in the descripti
on."); | 51 log("Automatic testing impossible. Test manually. See steps in the descripti
on."); |
| 52 } | 52 } |
| 53 </script> | 53 </script> |
| 54 <script src="../../fast/js/resources/js-test-post.js"></script> | |
| 55 </body> | 54 </body> |
| 56 </html> | 55 </html> |
| OLD | NEW |