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

Side by Side Diff: third_party/WebKit/LayoutTests/html/dialog/inert-node-is-uneditable.html

Issue 2671603003: Move DIALOG element tests to html/dialog/. (Closed)
Patch Set: Created 3 years, 10 months 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../../resources/js-test.js"></script> 4 <script src="../../resources/js-test.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>
11 <script> 11 <script>
12 function clickOn(element) 12 function clickOn(element)
13 { 13 {
14 if (!window.eventSender) 14 if (!window.eventSender)
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 </body> 59 </body>
60 </html> 60 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698