aboutsummaryrefslogtreecommitdiffstats
path: root/tests/visual/mouse
diff options
context:
space:
mode:
authorawgy <josh.varner@gmail.com>2011-02-05 07:45:37 -0600
committerawgy <josh.varner@gmail.com>2011-02-05 07:45:37 -0600
commitcf0649ed6abcee7045308a8cdbe9123259fa064a (patch)
tree3e7c60c7c7dda8d080a2206e69c81e632e03eaf0 /tests/visual/mouse
parent548bdb12a116771b34a99ba97769ddef22f7d156 (diff)
downloadjquery-ui-cf0649ed6abcee7045308a8cdbe9123259fa064a.tar.gz
jquery-ui-cf0649ed6abcee7045308a8cdbe9123259fa064a.zip
Mouse: Adding visual test for issue #6946 - Mouse: click event suppressed after drag in Gecko
Diffstat (limited to 'tests/visual/mouse')
-rw-r--r--tests/visual/mouse/mouse_ticket_6946.html67
1 files changed, 67 insertions, 0 deletions
diff --git a/tests/visual/mouse/mouse_ticket_6946.html b/tests/visual/mouse/mouse_ticket_6946.html
new file mode 100644
index 000000000..0851d4d19
--- /dev/null
+++ b/tests/visual/mouse/mouse_ticket_6946.html
@@ -0,0 +1,67 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset=utf-8 />
+ <title>Test for Issue #6946</title>
+ <link rel="stylesheet" href="../all.css" type="text/css">
+ <link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css" type="text/css" />
+ <script type="text/javascript" src="../../../jquery-1.4.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.sortable.js"></script>
+ <style type="text/css" media="screen">
+
+ body {
+ background: white;
+ font-size: 90%;
+ }
+ .error {
+ color: #f55;
+ font-style: italic;
+ }
+ #sortable div:hover {
+ cursor: move;
+ }
+
+ </style>
+</head>
+<body>
+ <h1>Test for Issue #6946</h1>
+ <p>Use the following list to test the steps listed below:</p>
+ <div id="sortable">
+ <div>One</div>
+ <div>Two</div>
+ <div>Three</div>
+ </div>
+ <div id="events"></div>
+ <h2>Expected</h2>
+ <ol>
+ <li>Drag an item to a new position in the list and release.</li>
+ <li>The click event should be received (appropriately suppressed by jQuery UI).</li>
+ <li>Click the same item.</li>
+ <li>The click event should be received.</li>
+ <li>Click the same item again.</li>
+ <li>The click event should be received.</li>
+ </ol>
+ <h2>Experienced (Gecko/Opera)</h2>
+ <ol>
+ <li>Drag an item to a new position in the list and release.</li>
+ <li>The click event is not received <em>(never sent by browser)</em>.</li>
+ <li>Click the same item.</li>
+ <li class="error">The click event is not received (erroneously suppressed by jQuery UI).</li>
+ <li>Click the same item again.</li>
+ <li>The click event is finally received.</li>
+ </ol>
+ <script type="text/javascript">
+
+ $(function () {
+ $('#sortable').sortable();
+ $('#sortable').bind('click', function () {
+ $('#events').append('Click event received!<br />');
+ });
+ });​
+
+ </script>
+</body>
+</html>​ \ No newline at end of file