Skip to content

Commit 7049877

Browse files
mgoldmethvin
authored andcommittedApr 4, 2013
Correct oldIE-related comments, revert some workarounds. Close jquerygh-1207.
1 parent ba16ba2 commit 7049877

File tree

5 files changed

+10
-17
lines changed

5 files changed

+10
-17
lines changed
 

‎CONTRIBUTING.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -207,10 +207,12 @@ This will only run the "css" module tests. This will significantly speed up your
207207
**ALWAYS RUN THE FULL SUITE BEFORE COMMITTING AND PUSHING A PATCH!**
208208

209209

210-
### jQuery supports the following browsers:
210+
### jQuery 2.x supports the following browsers:
211211

212212
* Chrome Current-1
213213
* Safari Current-1
214214
* Firefox Current-1
215-
* IE 6+
215+
* IE 9+
216216
* Opera Current-1
217+
218+
jQuery 1.x additionally supports IE6+.

‎src/ajax.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var
88
ajax_rquery = /\?/,
99
rhash = /#.*$/,
1010
rts = /([?&])_=[^&]*/,
11-
rheaders = /^(.*?):[ \t]*([^\r\n]*)\r?$/mg, // IE leaves an \r character at EOL
11+
rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg,
1212
// #7653, #8125, #8152: local protocol detection
1313
rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
1414
rnoContent = /^(?:GET|HEAD)$/,

‎src/attributes.js

+3-6
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,8 @@ jQuery.fn.extend({
2323
removeProp: function( name ) {
2424
name = jQuery.propFix[ name ] || name;
2525
return this.each(function() {
26-
// try/catch handles cases where IE balks (such as removing a property on window)
27-
try {
28-
this[ name ] = undefined;
29-
delete this[ name ];
30-
} catch( e ) {}
26+
this[ name ] = undefined;
27+
delete this[ name ];
3128
});
3229
},
3330

@@ -249,7 +246,7 @@ jQuery.extend({
249246
for ( ; i < max; i++ ) {
250247
option = options[ i ];
251248

252-
// oldIE doesn't update selected after form reset (#2551)
249+
// IE6-9 doesn't update selected after form reset (#2551)
253250
if ( ( option.selected || i === index ) &&
254251
// Don't return options that are disabled or in a disabled optgroup
255252
( jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null ) &&

‎src/core.js

+1-7
Original file line numberDiff line numberDiff line change
@@ -133,13 +133,7 @@ jQuery.fn = jQuery.prototype = {
133133
// Check parentNode to catch when Blackberry 4.6 returns
134134
// nodes that are no longer in the document #6963
135135
if ( elem && elem.parentNode ) {
136-
// Handle the case where IE and Opera return items
137-
// by name instead of ID
138-
if ( elem.id !== match[2] ) {
139-
return rootjQuery.find( selector );
140-
}
141-
142-
// Otherwise, we inject the element directly into the jQuery object
136+
// Inject the element directly into the jQuery object
143137
this.length = 1;
144138
this[0] = elem;
145139
}

‎src/effects.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ function defaultPrefilter( elem, props, opts ) {
279279
// height/width overflow pass
280280
if ( elem.nodeType === 1 && ( "height" in props || "width" in props ) ) {
281281
// Make sure that nothing sneaks out
282-
// Record all 3 overflow attributes because IE does not
282+
// Record all 3 overflow attributes because IE9-10 do not
283283
// change the overflow attribute when overflowX and
284284
// overflowY are set to the same value
285285
opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];

0 commit comments

Comments
 (0)
Please sign in to comment.