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

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

Issue 2507223003: Tests for dragging between two frames (potentially cross-site from main frame). (Closed)
Patch Set: Maybe this is ready for landing? 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/drop_target.html
diff --git a/chrome/test/data/drag_and_drop/drop_target.html b/chrome/test/data/drag_and_drop/drop_target.html
index 4f1bbccecc617af4ca45d0e3e6bb0ef86bc9b213..b77ace2c08f7cdc481e04e599108f98eba115d8f 100644
--- a/chrome/test/data/drag_and_drop/drop_target.html
+++ b/chrome/test/data/drag_and_drop/drop_target.html
@@ -38,7 +38,9 @@
</script>
</head>
<body>
- <div ondragover="dragover_handler(event);" ondrop="drop_handler(event);">
- <p>Use this frame as a target of a drag-n-drop</p>
+ <div ondragover="dragover_handler(event);"
+ ondrop="drop_handler(event);"
+ ondragenter="window.reportDragAndDropEvent(event);"
+ ><p>Use this frame as a target of a drag-n-drop</p>
</div>
</body>

Powered by Google App Engine
This is Rietveld 408576698