diff options
author | Scott González <scott.gonzalez@gmail.com> | 2008-09-19 18:28:31 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2008-09-19 18:28:31 +0000 |
commit | 14e0450dc70441c70d4e3be16f9aaaf36fcc1d59 (patch) | |
tree | 9fd90e6de5a68476bb65a7b533ffd1f7f1743df6 /tests/dialog.js | |
parent | 939448c7562c71caae7a30984bfef9b8ad45452d (diff) | |
download | jquery-ui-14e0450dc70441c70d4e3be16f9aaaf36fcc1d59.tar.gz jquery-ui-14e0450dc70441c70d4e3be16f9aaaf36fcc1d59.zip |
Dialog: Added an id to the title span (needed for ARIA support).
Diffstat (limited to 'tests/dialog.js')
-rw-r--r-- | tests/dialog.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/dialog.js b/tests/dialog.js index b5fbfa6ee..b6362aa4e 100644 --- a/tests/dialog.js +++ b/tests/dialog.js @@ -193,6 +193,30 @@ test("defaults", function() { el.remove();
});
+test("title id", function() {
+ expect(3);
+
+ var titleId;
+
+ // reset the uuid so we know what values to expect
+ $.ui.dialog.uuid = 0;
+
+ el = $('<div/>').dialog();
+ titleId = dlg().find('.ui-dialog-title').attr('id');
+ equals(titleId, 'ui-dialog-title-1', 'auto-numbered title id');
+ el.remove();
+
+ el = $('<div/>').dialog();
+ titleId = dlg().find('.ui-dialog-title').attr('id');
+ equals(titleId, 'ui-dialog-title-2', 'auto-numbered title id');
+ el.remove();
+
+ el = $('<div id="foo"/>').dialog();
+ titleId = dlg().find('.ui-dialog-title').attr('id');
+ equals(titleId, 'ui-dialog-title-foo', 'carried over title id');
+ el.remove();
+});
+
module("dialog: Options");
test("autoOpen", function() {
|