Added pseudo-fix for #164; fixed some tests that failed in IE

This commit is contained in:
Jörn Zaefferer 2006-11-07 11:19:44 +00:00
parent d91ee794ba
commit 98e8ea3186
2 changed files with 7 additions and 11 deletions

View file

@ -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();

10
src/jquery/jquery.js vendored
View file

@ -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 {