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

Side by Side Diff: LayoutTests/fast/dom/shadow/drop-event-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 createBox(name) { 7 function createBox(name) {
8 var div = document.createElement('div'); 8 var div = document.createElement('div');
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('dragover', function(e) { 12 div.addEventListener('dragover', function(e) {
13 e.preventDefault(); 13 e.preventDefault();
14 }); 14 });
15 div.addEventListener('drop', function(e) { 15 div.addEventListener('drop', function(e) {
(...skipping 13 matching lines...) Expand all
29 eventSender.mouseUp(); 29 eventSender.mouseUp();
30 } 30 }
31 </script> 31 </script>
32 </head> 32 </head>
33 <body onload="runTest()"> 33 <body onload="runTest()">
34 34
35 <div id="host"></div> 35 <div id="host"></div>
36 <pre id="console"></pre> 36 <pre id="console"></pre>
37 </body> 37 </body>
38 </html> 38 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698