Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(131)

Side by Side Diff: LayoutTests/editing/spelling/spellcheck-editable-on-focus-multiframe.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698