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

Side by Side Diff: LayoutTests/editing/shadow/select-contenteditable-shadowhost.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 <body> 3 <body>
4 <script src="../../fast/js/resources/js-test-pre.js"></script> 4 <script src="../../fast/js/resources/js-test-pre.js"></script>
5 <script src="../../fast/dom/resources/event-sender-util.js"></script> 5 <script src="../../fast/dom/resources/event-sender-util.js"></script>
6 6
7 <p>This test confirms that selecting an element having Shadow DOM doesn't cross editing boundaries errornously.</p> 7 <p>This test confirms that selecting an element having Shadow DOM doesn't cross editing boundaries errornously.</p>
8 8
9 <div> 9 <div>
10 <div id="before">BEFORE</div> 10 <div id="before">BEFORE</div>
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 mouseMoveToElem(host); 42 mouseMoveToElem(host);
43 eventSender.mouseUp(); 43 eventSender.mouseUp();
44 shouldBeNull('selection.anchorNode'); 44 shouldBeNull('selection.anchorNode');
45 shouldBeNull('selection.focusNode'); 45 shouldBeNull('selection.focusNode');
46 // Check crash won't happen. 46 // Check crash won't happen.
47 document.execCommand('delete'); 47 document.execCommand('delete');
48 debug('PASS document.execCommand("delete") did not crash.'); 48 debug('PASS document.execCommand("delete") did not crash.');
49 49
50 var successfullyParsed = true; 50 var successfullyParsed = true;
51 </script> 51 </script>
52 <script src="../../fast/js/resources/js-test-post.js"></script>
53 </body> 52 </body>
54 53
55 </html> 54 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698