| 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>
|
|
|