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

Side by Side Diff: third_party/WebKit/LayoutTests/html/dialog/simulated-click-inert.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> 4 <script>
5 function clickOn(element) 5 function clickOn(element)
6 { 6 {
7 if (!window.eventSender) 7 if (!window.eventSender)
8 return; 8 return;
9 9
10 var absoluteTop = 0; 10 var absoluteTop = 0;
(...skipping 23 matching lines...) Expand all
34 </head> 34 </head>
35 <body onload="runTest()"> 35 <body onload="runTest()">
36 <p>Ensure that simulated click is still dispatched to an inert node. 36 <p>Ensure that simulated click is still dispatched to an inert node.
37 To test manually, click the CLICK ME label and verify it does change the val ue of the checkbox.</p> 37 To test manually, click the CLICK ME label and verify it does change the val ue of the checkbox.</p>
38 <div> 38 <div>
39 </div> 39 </div>
40 <input type="checkbox" id="target"> 40 <input type="checkbox" id="target">
41 <dialog><label for="target">CLICK ME</label></dialog> 41 <dialog><label for="target">CLICK ME</label></dialog>
42 </body> 42 </body>
43 </html> 43 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698