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

Unified Diff: chrome/test/data/extensions/platform_apps/web_view/drag_drop/guest.html

Issue 12086095: Fixed drag and drop into and out of Browser Plugin. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Addressed comments Created 7 years, 8 months 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/extensions/platform_apps/web_view/drag_drop/guest.html
diff --git a/chrome/test/data/extensions/platform_apps/web_view/drag_drop/guest.html b/chrome/test/data/extensions/platform_apps/web_view/drag_drop/guest.html
new file mode 100644
index 0000000000000000000000000000000000000000..625d0f006013826803dd4718c9896d406502080d
--- /dev/null
+++ b/chrome/test/data/extensions/platform_apps/web_view/drag_drop/guest.html
@@ -0,0 +1,26 @@
+<!--
+ * Copyright (c) 2013 The Chromium Authors. All rights reserved. Use of this
+ * source code is governed by a BSD-style license that can be found in the
+ * LICENSE file.
+-->
+<!-- See chrome/browser/extensions/web_view_interactive_browsertest.cc
+(WebViewInteractiveTest, DragDrop) for documentation on this test. -->
+<html><head>
+ <style type="text/css">
+ * {
+ margin: 0px;
+ padding: 0px;
+ }
+ </style>
+</head>
+<body>
+Drop me into text boxes 1 & 3<br>
+<div style="position:absolute; left:0px; top:50px; width:300px;">
+ <input type="text" id="textbox1" style="width:200px; height: 50px;"></input>
+</div>
+<div style="position:absolute; left:0px; top:100px; width:300px;">
+ <input type="text" id="textbox2" style="width:200px; height: 50px;"></input>
+</div>
+<script src="guest.js"></script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698