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

Unified Diff: chrome/test/data/drag_and_drop/image_source.html

Issue 2478583005: Browser tests for starting a drag-and-drop out of an OOPIF. (Closed)
Patch Set: Integrate the test with the nested drag-and-drop message loop. Created 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/drag_and_drop/image_source.html
diff --git a/content/test/data/drag_and_drop/image_source.html b/chrome/test/data/drag_and_drop/image_source.html
similarity index 89%
rename from content/test/data/drag_and_drop/image_source.html
rename to chrome/test/data/drag_and_drop/image_source.html
index f9969601ba122dea42e9549e6129766c7f757e6c..98a556ef861f8a8fab35a55109aaf1538f6c74bc 100644
--- a/content/test/data/drag_and_drop/image_source.html
+++ b/chrome/test/data/drag_and_drop/image_source.html
@@ -20,6 +20,7 @@
<script>
function dragstart_handler(ev) {
window.reportDragAndDropEvent(ev);
+ ev.dataTransfer.effectAllowed = "copy";
}
function dragend_handler(ev) {
@@ -30,5 +31,5 @@
<body>
<img ondragstart="dragstart_handler(event);"
ondragend="dragend_handler(event);"
- src="/single_face.jpg">
+ src="/image_decoding/droids.jpg">
</body>

Powered by Google App Engine
This is Rietveld 408576698