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

Side by Side Diff: LayoutTests/fast/dom/HTMLDialogElement/inert-node-is-uneditable.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="../../js/resources/js-test-pre.js"></script> 4 <script src="../../js/resources/js-test-pre.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <span id="not-editable" contenteditable>I'm not editable.</span> 7 <span id="not-editable" contenteditable>I'm not editable.</span>
8 <dialog> 8 <dialog>
9 <span id="editable" contenteditable>I'm editable.</span> 9 <span id="editable" contenteditable>I'm editable.</span>
10 </dialog> 10 </dialog>
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 oldValue = editable.textContent; 49 oldValue = editable.textContent;
50 eventSender.keyDown('a'); 50 eventSender.keyDown('a');
51 shouldNotBe('editable.textContent', 'oldValue'); 51 shouldNotBe('editable.textContent', 'oldValue');
52 52
53 notEditable.remove(); 53 notEditable.remove();
54 editable.remove(); 54 editable.remove();
55 } 55 }
56 56
57 test(); 57 test();
58 </script> 58 </script>
59 <script src="../../js/resources/js-test-post.js"></script>
60 </body> 59 </body>
61 </html> 60 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698