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

Side by Side Diff: LayoutTests/fast/dom/shadow/event-path-for-user-agent-shadow-tree.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 <script src="resources/shadow-dom.js"></script> 5 <script src="resources/shadow-dom.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <p id="description"></p> 8 <p id="description"></p>
9 <div id="sandbox"> 9 <div id="sandbox">
10 <details id="details"> 10 <details id="details">
(...skipping 13 matching lines...) Expand all
24 }); 24 });
25 var clickEvent = document.createEvent("MouseEvents"); 25 var clickEvent = document.createEvent("MouseEvents");
26 clickEvent.initMouseEvent('click', true, false, window, 0, 0, 0, 0, 0, false, fa lse, false, false, 0, null); 26 clickEvent.initMouseEvent('click', true, false, window, 0, 0, 0, 0, 0, false, fa lse, false, false, 0, null);
27 27
28 debug("\nDispaching a click event on #details-child"); 28 debug("\nDispaching a click event on #details-child");
29 document.getElementById('details-child').dispatchEvent(clickEvent); 29 document.getElementById('details-child').dispatchEvent(clickEvent);
30 30
31 debug("\nDispaching a click event on #summary-child"); 31 debug("\nDispaching a click event on #summary-child");
32 document.getElementById('summary-child').dispatchEvent(clickEvent); 32 document.getElementById('summary-child').dispatchEvent(clickEvent);
33 </script> 33 </script>
34 <script src="../../js/resources/js-test-post.js"></script>
35 </body> 34 </body>
36 </html> 35 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/shadow/event-path.html ('k') | LayoutTests/fast/dom/shadow/event-path-in-shadow-tree.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698