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

Unified Diff: chrome/test/data/extensions/platform_apps/web_view/drag_drop/main.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/main.html
diff --git a/chrome/test/data/extensions/platform_apps/web_view/pointer_lock/main.html b/chrome/test/data/extensions/platform_apps/web_view/drag_drop/main.html
similarity index 51%
copy from chrome/test/data/extensions/platform_apps/web_view/pointer_lock/main.html
copy to chrome/test/data/extensions/platform_apps/web_view/drag_drop/main.html
index 2a38dd9424fda6454d44cc0d02ab9248a2ffd738..cd3ba3bbfc4cc4ae663bd8118a721f78127ac541 100644
--- a/chrome/test/data/extensions/platform_apps/web_view/pointer_lock/main.html
+++ b/chrome/test/data/extensions/platform_apps/web_view/drag_drop/main.html
@@ -4,19 +4,27 @@
* LICENSE file.
-->
<!-- See chrome/browser/extensions/web_view_interactive_browsertest.cc
-(WebViewInteractiveTest, PointerLock) for documentation on this test. -->
+(WebViewInteractiveTest, DragDrop) for documentation on this test. -->
<html><head>
<style type="text/css">
* {
margin: 0px;
padding: 0px;
+ -webkit-user-select: auto
+ }
+ body {
+ padding: 20px;
}
</style>
</head>
-<body>
- <div id="webview-tag-container" style="height:600px; background:#FFFF00;">
+<body style="background: #FFFF00;">
+ <div id="webview-tag-container" style="height:150px;">
+ </div>
+ <div>
+ <input type="text" id="textbox3" style="width:200px; height: 50px;"></textbox>
+ </div>
+ <div id="webview-tag-container-2" style="height:50px;">
</div>
- <div id="mousemove-capture-container" style="height:50px; width:200px; background:#0000FF;"></div>
<script src="main.js"></script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698