From 98e8ea3186e3b57955e94364c454de40f458ea0a Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=B6rn=20Zaefferer?= Date: Tue, 7 Nov 2006 11:19:44 +0000 Subject: [PATCH] Added pseudo-fix for #164; fixed some tests that failed in IE --- src/ajax/ajax.js | 8 ++++---- src/jquery/jquery.js | 10 +++------- 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/src/ajax/ajax.js b/src/ajax/ajax.js index 9ec6184..2ed5396 100644 --- a/src/ajax/ajax.js +++ b/src/ajax/ajax.js @@ -47,8 +47,8 @@ jQuery.fn.extend({ * }); * * @test stop(); - * foobar = undefined; - * foo = undefined; + * window.foobar = undefined; + * window.foo = undefined; * var verifyEvaluation = function() { * ok( foobar == "bar", 'Check if script src was evaluated after load' ); * start(); @@ -657,8 +657,8 @@ jQuery.extend({ * }); * * @test stop(); - * foobar = undefined; - * foo = undefined; + * window.foobar = undefined; + * window.foo = undefined; * var verifyEvaluation = function() { * ok( foobar == "bar", 'Check if script src was evaluated for datatype html' ); * start(); diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index aa2582a..35a6ceb 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1693,10 +1693,6 @@ jQuery.extend({ * t( "Attribute Exists", "a[@title]", ["google"] ); * t( "Attribute Exists", "*[@title]", ["google"] ); * t( "Attribute Exists", "[@title]", ["google"] ); - * - * t( "Non-existing part of attribute", "[@name*=bla]", [] ); - * t( "Non-existing start of attribute", "[@name^=bla]", [] ); - * t( "Non-existing end of attribute", "[@name$=bla]", [] ); * * t( "Attribute Equals", "a[@rel='bookmark']", ["simon1"] ); * t( "Attribute Equals", 'a[@rel="bookmark"]', ["simon1"] ); @@ -1732,8 +1728,8 @@ jQuery.extend({ * 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","sndp","en","sap"] ); - * t( "Sibling Axis", "//p/../*", ["firstp","ap","foo","first","firstUL","empty","form","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","sndp","en","sap"] ); * t( "Has Children", "//p[a]", ["firstp","ap","en","sap"] ); * * t( "nth Element", "p:nth(1)", ["ap"] ); @@ -1904,7 +1900,7 @@ jQuery.extend({ return elem[fix[name]]; } else if( value == undefined && jQuery.browser.msie && elem.nodeName && elem.nodeName.toUpperCase() == 'FORM' && (name == 'action' || name == 'method') ) { return elem.getAttributeNode(name).nodeValue; - } else if ( elem.getAttribute != undefined && elem.tagName ) { // IE elem.getAttribute passes even for style + } else if ( (jQuery.browser.msie || elem.getAttribute != undefined) && elem.tagName ) { // IE elem.getAttribute passes even for style; Do not "call" elem.getAttribute in IE <- weird crap if ( value != undefined ) elem.setAttribute( name, value ); return elem.getAttribute( name ); } else { -- 1.7.10.4