Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Dialog: Move array notation support for position option to backCompat…
… check. Fixes #8824 - Deprecate array notation for position option.
- Loading branch information
1 parent
0be97bf
commit a0310eb
Showing
7 changed files
with
147 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>jQuery UI Dialog Test Suite</title> | ||
|
||
<script src="../../jquery.js"></script> | ||
<link rel="stylesheet" href="../../../external/qunit.css"> | ||
<script src="../../../external/qunit.js"></script> | ||
<script src="../../jquery.simulate.js"></script> | ||
<script src="../testsuite.js"></script> | ||
<script> | ||
TestHelpers.loadResources({ | ||
css: [ "ui.core", "ui.dialog" ], | ||
js: [ | ||
"ui/jquery.ui.core.js", | ||
"ui/jquery.ui.widget.js", | ||
"ui/jquery.ui.position.js", | ||
"ui/jquery.ui.mouse.js", | ||
"ui/jquery.ui.draggable.js", | ||
"ui/jquery.ui.resizable.js", | ||
"ui/jquery.ui.button.js", | ||
"ui/jquery.ui.dialog.js" | ||
] | ||
}); | ||
</script> | ||
|
||
<script src="dialog_common.js"></script> | ||
<script src="dialog_core.js"></script> | ||
<script src="dialog_events.js"></script> | ||
<script src="dialog_methods.js"></script> | ||
<script src="dialog_options.js"></script> | ||
<script src="dialog_test_helpers.js"></script> | ||
<script src="dialog_tickets.js"></script> | ||
<script src="dialog_deprecated.js"></script> | ||
|
||
<script src="../swarminject.js"></script> | ||
</head> | ||
<body> | ||
|
||
<h1 id="qunit-header">jQuery UI Dialog Test Suite</h1> | ||
<h2 id="qunit-banner"></h2> | ||
<div id="qunit-testrunner-toolbar"></div> | ||
<h2 id="qunit-userAgent"></h2> | ||
<ol id="qunit-tests"></ol> | ||
<div id="qunit-fixture"> | ||
<div id="dialog1"></div> | ||
<div id="dialog2"></div> | ||
<div id="form-dialog" title="Profile Information"> | ||
<fieldset> | ||
<legend>Please share some personal information</legend> | ||
<label for="favorite-animal">Your favorite animal</label><input id="favorite-animal"> | ||
<label for="favorite-color">Your favorite color</label><input id="favorite-color"> | ||
</fieldset> | ||
<div role="group" aria-describedby="section2"> | ||
<p id="section2">Some more (optional) information</p> | ||
<label for="favorite-food">Favorite food</label><input id="favorite-food"> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
module("dialog (deprecated): position opton with array"); | ||
|
||
if ( !$.ui.ie ) { | ||
test("position, right bottom on window w/array", function() { | ||
expect( 2 ); | ||
var el = $('<div></div>').dialog({ position: ["right", "bottom"] }), | ||
dialog = el.dialog('widget'), | ||
offset = dialog.offset(); | ||
closeEnough(offset.left, $(window).width() - dialog.outerWidth() + $(window).scrollLeft(), 1); | ||
closeEnough(offset.top, $(window).height() - dialog.outerHeight() + $(window).scrollTop(), 1); | ||
el.remove(); | ||
}); | ||
} | ||
|
||
test("position, offset from top left w/array", function() { | ||
expect( 2 ); | ||
var el = $('<div></div>').dialog({ position: [10, 10] }), | ||
dialog = el.dialog('widget'), | ||
offset = dialog.offset(); | ||
closeEnough(offset.left, 10 + $(window).scrollLeft(), 1); | ||
closeEnough(offset.top, 10 + $(window).scrollTop(), 1); | ||
el.remove(); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters