aboutsummaryrefslogtreecommitdiffstats
path: root/tests/visual/draggable/draggable_option_iframeFix_selector.html
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2011-11-03 08:45:04 -0400
committerScott González <scott.gonzalez@gmail.com>2011-11-03 08:45:23 -0400
commit95d7314bd9bd9d5ca8983d646a51ee0fb51a1149 (patch)
tree67ba95e5fd81031a0b4fee378d1876a6e7f40d2c /tests/visual/draggable/draggable_option_iframeFix_selector.html
parent4f9209feb020bf11c260195e7c8960a33f3a80fa (diff)
downloadjquery-ui-95d7314bd9bd9d5ca8983d646a51ee0fb51a1149.tar.gz
jquery-ui-95d7314bd9bd9d5ca8983d646a51ee0fb51a1149.zip
Tests: Removed visual tests for plugins that are being rewritten.
Diffstat (limited to 'tests/visual/draggable/draggable_option_iframeFix_selector.html')
-rw-r--r--tests/visual/draggable/draggable_option_iframeFix_selector.html30
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/visual/draggable/draggable_option_iframeFix_selector.html b/tests/visual/draggable/draggable_option_iframeFix_selector.html
deleted file mode 100644
index 0e485fe3f..000000000
--- a/tests/visual/draggable/draggable_option_iframeFix_selector.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8" />
- <title>Draggable Visual Test : Draggable option iframeFix selector</title>
- <link rel="stylesheet" href="../visual.css" type="text/css" />
- <link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css" type="text/css">
- <script type="text/javascript" src="../../../jquery-1.6.4.js"></script>
- <script type="text/javascript" src="../../../ui/jquery.ui.core.js"></script>
- <script type="text/javascript" src="../../../ui/jquery.ui.widget.js"></script>
- <script type="text/javascript" src="../../../ui/jquery.ui.mouse.js"></script>
- <script type="text/javascript" src="../../../ui/jquery.ui.draggable.js"></script>
- <script type="text/javascript">
- $(function() {
- $("#draggable").draggable({
- cursorAt: { top: -10, left: -10 },
- iframeFix: "#iframe2"
- });
- });
- </script>
-</head>
-<body>
-<div id="draggable">
- <p> Draggable </p>
-</div>
-<iframe id="iframe1"></iframe>
-<iframe id="iframe2"></iframe>
-<iframe id="iframe3"></iframe>
-</body>
-</html>