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

Side by Side Diff: LayoutTests/fast/dom/shadow/drop-event-for-input-in-shadow.html

Issue 58533003: Move fast/js/resources files to resources. (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="../resources/event-sender-util.js"></script> 4 <script src="../resources/event-sender-util.js"></script>
5 <script src="../../js/resources/js-test-pre.js"></script> 5 <script src="../../../resources/js-test.js"></script>
6 <script> 6 <script>
7 function createInput(name) { 7 function createInput(name) {
8 var div = document.createElement('input'); 8 var div = document.createElement('input');
9 div.style.width = '100px'; 9 div.style.width = '100px';
10 div.style.height = '100px'; 10 div.style.height = '100px';
11 11
12 div.addEventListener('drop', function(e) { 12 div.addEventListener('drop', function(e) {
13 debug('PASS: drop event is fired.'); 13 debug('PASS: drop event is fired.');
14 }); 14 });
15 15
(...skipping 10 matching lines...) Expand all
26 eventSender.mouseUp(); 26 eventSender.mouseUp();
27 } 27 }
28 </script> 28 </script>
29 </head> 29 </head>
30 <body onload="runTest()"> 30 <body onload="runTest()">
31 31
32 <div id="host"></div> 32 <div id="host"></div>
33 <pre id="console"></pre> 33 <pre id="console"></pre>
34 </body> 34 </body>
35 </html> 35 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/shadow/distribution-crash.html ('k') | LayoutTests/fast/dom/shadow/drop-event-in-shadow.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698