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

Side by Side Diff: LayoutTests/fast/events/drag-and-drop-fire-drag-dragover.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 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../js/resources/js-test-pre.js"></script> 3 <script src="../../resources/js-test.js"></script>
4 <style> 4 <style>
5 #dropTarget, #dragMe { text-align: center; display: table-cell; vertical-align: middle } 5 #dropTarget, #dragMe { text-align: center; display: table-cell; vertical-align: middle }
6 #dropTarget {width: 256px; height: 256px; border: 1px dashed} 6 #dropTarget {width: 256px; height: 256px; border: 1px dashed}
7 #dragMe {-webkit-user-drag: element; -webkit-user-select: none; background: #ff0 000; width: 64px; height: 64px; color: white} 7 #dragMe {-webkit-user-drag: element; -webkit-user-select: none; background: #ff0 000; width: 64px; height: 64px; color: white}
8 #console { height: 250px; overflow:scroll } 8 #console { height: 250px; overflow:scroll }
9 </style> 9 </style>
10 <script> 10 <script>
11 var dragMe; 11 var dragMe;
12 var dropTarget; 12 var dropTarget;
13 var consoleElm; 13 var consoleElm;
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 <div id="dragMe" draggable="true">Square</div> 153 <div id="dragMe" draggable="true">Square</div>
154 <hr/> 154 <hr/>
155 </div> 155 </div>
156 <div id="console"></div> 156 <div id="console"></div>
157 <script> 157 <script>
158 description("This test checks that the event handlers ondrag and ondrago ver fire in that order, " + 158 description("This test checks that the event handlers ondrag and ondrago ver fire in that order, " +
159 "as per http://www.whatwg.org/specs/web-apps/current-work/#current-drag- operation."); 159 "as per http://www.whatwg.org/specs/web-apps/current-work/#current-drag- operation.");
160 </script> 160 </script>
161 </body> 161 </body>
162 </html> 162 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698