diff options
author | John Resig <jeresig@gmail.com> | 2007-03-24 02:03:47 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2007-03-24 02:03:47 +0000 |
commit | 0f7c89cd97de6ca644a834a119dda1e057fd724e (patch) | |
tree | a9d437fb86e7a70eaf20e94306a6335413c2885e /src/selector | |
parent | 7ad613c5e9aaf79666c5de39ebfafad5c46e13b9 (diff) | |
download | jquery-0f7c89cd97de6ca644a834a119dda1e057fd724e.tar.gz jquery-0f7c89cd97de6ca644a834a119dda1e057fd724e.zip |
Added a fix and test for bug #978 (Appending elements into an IFrame, in IE).
Diffstat (limited to 'src/selector')
-rw-r--r-- | src/selector/selectorTest.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/selector/selectorTest.js b/src/selector/selectorTest.js index c9cf762a5..fea247ea3 100644 --- a/src/selector/selectorTest.js +++ b/src/selector/selectorTest.js @@ -144,8 +144,8 @@ test("expressions - basic xpath", function() { t( "Attribute Exists", "//a[@title]", ["google"] );
t( "Attribute Equals", "//a[@rel='bookmark']", ["simon1"] );
t( "Parent Axis", "//p/..", ["main","foo"] );
- t( "Sibling Axis", "//p/../", ["firstp","ap","foo","first","firstUL","empty","form","floatTest","sndp","en","sap"] );
- t( "Sibling Axis", "//p/../*", ["firstp","ap","foo","first","firstUL","empty","form","floatTest","sndp","en","sap"] );
+ t( "Sibling Axis", "//p/../", ["firstp","ap","foo","first","firstUL","empty","form","floatTest","iframe","sndp","en","sap"] );
+ t( "Sibling Axis", "//p/../*", ["firstp","ap","foo","first","firstUL","empty","form","floatTest","iframe","sndp","en","sap"] );
t( "Has Children", "//p[a]", ["firstp","ap","en","sap"] );
$("#foo").each(function() {
|