]> source.dussan.org Git - jquery-ui.git/commitdiff
dialog: added visual test for ticket #4826 - Setting resizable false toggles resizabl...
authorCa-Phun Ung <pazu2k@gmail.com>
Tue, 15 Sep 2009 14:43:37 +0000 (14:43 +0000)
committerCa-Phun Ung <pazu2k@gmail.com>
Tue, 15 Sep 2009 14:43:37 +0000 (14:43 +0000)
tests/visual/dialog/dialog_ticket_4826.html [new file with mode: 0644]

diff --git a/tests/visual/dialog/dialog_ticket_4826.html b/tests/visual/dialog/dialog_ticket_4826.html
new file mode 100644 (file)
index 0000000..267e862
--- /dev/null
@@ -0,0 +1,42 @@
+<!doctype html>
+<html lang="en">
+<head>
+       <title>Dialog Visual Test : Dialog ticket #4826</title>
+       <link rel="stylesheet" href="../visual.css" type="text/css" />
+       <link rel="stylesheet" href="../../../themes/base/ui.all.css" type="text/css">
+       <script type="text/javascript" src="../../../jquery-1.3.2.js"></script>
+       <script type="text/javascript" src="../../../ui/ui.core.js"></script>
+       <script type="text/javascript" src="../../../ui/ui.draggable.js"></script>
+       <script type="text/javascript" src="../../../ui/ui.position.js"></script>
+       <script type="text/javascript" src="../../../ui/ui.resizable.js"></script>
+       <script type="text/javascript" src="../../../ui/ui.stackfix.js"></script>
+       <script type="text/javascript" src="../../../ui/ui.dialog.js"></script>
+       <script type="text/javascript">
+       $(function() {
+               
+               $('#dialog').dialog({ resizable: false });
+               
+               $('#handle').click(function() {
+                 $('#dialog')
+                       .dialog('option', {
+                               resizable: false
+                       })
+                       .dialog('open');
+                       
+                 return false;
+               });
+               
+       });
+       </script>
+</head>
+<body>
+
+<h1 class="ui-widget-header"><a href="http://dev.jqueryui.com/ticket/4826">#4826 - Setting resizable false toggles resizable on dialog</a></h1>
+
+<button id="handle">Click me!</button>
+<div id="dialog" title="Dialog Title">
+  <p id="msg">I should <strong>NEVER</strong> be resizable!</p>
+</div>
+
+</body>
+</html>
\ No newline at end of file