diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-09-02 11:51:24 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-09-02 11:51:24 -0400 |
commit | 0ab54d87dc521b73819a3ac480f7aa94365e52e2 (patch) | |
tree | de7fdfc28a0b8ff6d5b475c62fa7054f0cf18042 | |
parent | 23d4eb5372ce67df80afd04b8c90d9c0dc2c64d6 (diff) | |
download | jquery-ui-0ab54d87dc521b73819a3ac480f7aa94365e52e2.tar.gz jquery-ui-0ab54d87dc521b73819a3ac480f7aa94365e52e2.zip |
Core tests: Fixed object element for focusable/tabbable tests. Fixes #4488 - :focusable and :tabbable are broken with jQuery 1.3.2.
-rw-r--r-- | tests/unit/core/core.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/core/core.html b/tests/unit/core/core.html index c3643af61..44b950cee 100644 --- a/tests/unit/core/core.html +++ b/tests/unit/core/core.html @@ -66,7 +66,7 @@ <option>option</option> </select> <textarea id="visibleAncestor-textarea">x</textarea> - <object id="visibleAncestor-object">xxx</object> + <object id="visibleAncestor-object" codebase="about:blank">xxx</object> <a href="#" id="visibleAncestor-anchorWithHref">anchor</a> <a id="visibleAncestor-anchorWithoutHref">anchor</a> <span id="visibleAncestor-span">x</span> |