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

Unified Diff: third_party/webdriver/test_data/draggableLists.html

Issue 424363004: Update third_party/webdriver/pylib to r18456 and delete test_data (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: "python" -> "pylib" Created 6 years, 5 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: third_party/webdriver/test_data/draggableLists.html
diff --git a/third_party/webdriver/test_data/draggableLists.html b/third_party/webdriver/test_data/draggableLists.html
deleted file mode 100644
index 404195e0d309d1807440f1b7b1bbaf9d0624269c..0000000000000000000000000000000000000000
--- a/third_party/webdriver/test_data/draggableLists.html
+++ /dev/null
@@ -1,67 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
- <head>
- <meta charset="UTF-8" />
- <title>jQuery UI Sortable - Connect lists</title>
- <!--link type="text/css" href="development-bundle/themes/base/jquery.ui.all.css" rel="stylesheet" /-->
- <!--link type="text/css" href="development-bundle/demos/demos.css" rel="stylesheet" /-->
- <link type="text/css" href="css/ui-lightness/jquery-ui-1.8.10.custom.css" rel="stylesheet" />
- <script type="text/javascript" src="js/jquery-1.4.4.min.js"></script>
- <script type="text/javascript" src="js/jquery-ui-1.8.10.custom.min.js"></script>
- <style type="text/css">
- #sortable1, #sortable2 { list-style-type: none; margin: 0; padding: 0; float: left; margin-right: 10px; }
- #sortable1 li, #sortable2 li { margin: 0 5px 5px 5px; padding: 5px; font-size: 1.2em; width: 120px; }
- </style>
- <script type="text/javascript">
- $(function() {
- $("#sortable1, #sortable2").sortable({
- connectWith: '.connectedSortable'
- }).disableSelection();
-
- var report_event = function(report_text) {
- var reportElement = $("#dragging_reports");
- var origText = reportElement.text();
- reportElement.text(origText + " " + report_text);
- }
-
- $("#sortable2").droppable({
- out: function(event, ui) {
- report_event("DragOut");
- }
- });
-
- $("#sortable1").droppable({
- drop: function(event, ui) {
- report_event("DropIn " + ui.draggable.text());
- }
- });
- });
- </script>
- </head>
- <body>
- <div class="demo">
- <ul id="sortable1" class="connectedSortable">
- <li id="leftitem-1" class="ui-state-default">LeftItem 1</li>
- <li id="leftitem-2" class="ui-state-default">LeftItem 2</li>
- <li id="leftitem-3" class="ui-state-default">LeftItem 3</li>
- <li id="leftitem-4" class="ui-state-default">LeftItem 4</li>
- <li id="leftitem-5" class="ui-state-default">LeftItem 5</li>
- </ul>
-
- <ul id="sortable2" class="connectedSortable">
- <li id="rightitem-1" class="ui-state-highlight">RightItem 1</li>
- <li id="rightitem-2" class="ui-state-highlight">RightItem 2</li>
- <li id="rightitem-3" class="ui-state-highlight">RightItem 3</li>
- <li id="rightitem-4" class="ui-state-highlight">RightItem 4</li>
- <li id="rightitem-5" class="ui-state-highlight">RightItem 5</li>
- </ul>
-
- </div>
-
- <br/>
- <div class="test-data">
- <p id="dragging_reports">Nothing happened.</p>
- </div>
-
- </body>
-</html>
« no previous file with comments | « third_party/webdriver/test_data/dragAndDropTest.html ('k') | third_party/webdriver/test_data/droppableItems.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698