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

Unified Diff: third_party/webdriver/test_data/droppableItems.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
« no previous file with comments | « third_party/webdriver/test_data/draggableLists.html ('k') | third_party/webdriver/test_data/dynamic.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/webdriver/test_data/droppableItems.html
diff --git a/third_party/webdriver/test_data/droppableItems.html b/third_party/webdriver/test_data/droppableItems.html
deleted file mode 100644
index fc850ac96b705442ed19afcc32636379f9a6e05a..0000000000000000000000000000000000000000
--- a/third_party/webdriver/test_data/droppableItems.html
+++ /dev/null
@@ -1,65 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8" />
- <title>jQuery UI Droppable - Default Demo</title>
- <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">
- #draggable { width: 100px; height: 100px; padding: 0.5em; float: left; margin: 10px 10px 10px 0; }
- #droppable { width: 150px; height: 150px; padding: 0.5em; float: left; margin: 10px; }
- </style>
- <script type="text/javascript">
- $(function() {
- $("#draggable").draggable();
- $("#droppable").droppable({
- drop: function(event, ui) {
- $(this).addClass('ui-state-highlight').find('p').html('Dropped!');
- }
- });
-
- var report_event = function(report_text) {
- var reportElement = $("#drop_reports");
- var origText = reportElement.text();
- reportElement.text(origText + " " + report_text);
- }
-
- $('body').mousedown(function() {
- report_event('down');
- });
-
- $('body').mousemove(function() {
- report_event('move');
- });
-
- $('body').mouseup(function() {
- report_event('up');
- });
- });
- </script>
-</head>
-<body>
-<div class="demo">
-
-<div id="draggable" class="ui-widget-content">
- <p>Drag me to my target</p>
-</div>
-
-<div id="droppable" class="ui-widget-header">
- <p>Drop here</p>
-</div>
-
-<div class="test-data">
- <p id="drop_reports">start</p>
-</div>
-
-</div><!-- End demo -->
-
-<div class="demo-description">
-
-<p>Taken from the JQuery demo.</p>
-
-</div><!-- End demo-description -->
-</body>
-</html>
« no previous file with comments | « third_party/webdriver/test_data/draggableLists.html ('k') | third_party/webdriver/test_data/dynamic.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698