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

Side by Side Diff: LayoutTests/fast/events/bogus-dropEffect-effectAllowed.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 </style> 8 </style>
9 <script> 9 <script>
10 var dragMe; 10 var dragMe;
11 var dropTarget; 11 var dropTarget;
12 var effectAllowedElem; 12 var effectAllowedElem;
13 var dropEffectElem; 13 var dropEffectElem;
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 <p>Items that can be dragged to the drop target:</p> 135 <p>Items that can be dragged to the drop target:</p>
136 <div id="dragMe" draggable="true">Square</div> 136 <div id="dragMe" draggable="true">Square</div>
137 <hr/> 137 <hr/>
138 </div> 138 </div>
139 <div id="console"></div> 139 <div id="console"></div>
140 <script> 140 <script>
141 description("This test checks that effectAllowed and dropEffect cannot b e set to values that aren't defined in the spec"); 141 description("This test checks that effectAllowed and dropEffect cannot b e set to values that aren't defined in the spec");
142 </script> 142 </script>
143 </body> 143 </body>
144 </html> 144 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698