Update comments about window.getComputedStyle in both locations.

This commit is contained in:
Rick Waldron 2012-08-11 16:30:46 -04:00
parent 3722aef8be
commit dc3f7d3868
2 changed files with 3 additions and 5 deletions

View File

@ -278,7 +278,7 @@ jQuery.extend({
}
});
// NOTE: To any future maintainer, we've used both window.getComputedStyle
// NOTE: To any future maintainer, we've window.getComputedStyle
// because jsdom on node.js will break without it.
if ( window.getComputedStyle ) {
curCSS = function( elem, name ) {

View File

@ -214,10 +214,8 @@ jQuery.support = (function() {
support.boxSizing = ( div.offsetWidth === 4 );
support.doesNotIncludeMarginInBodyOffset = ( body.offsetTop !== 1 );
// NOTE: To any future maintainer, window.getComputedStyle was used here
// instead of getComputedStyle because it gave a better gzip size.
// The difference between window.getComputedStyle and getComputedStyle is
// 7 bytes
// NOTE: To any future maintainer, we've window.getComputedStyle
// because jsdom on node.js will break without it.
if ( window.getComputedStyle ) {
support.pixelPosition = ( window.getComputedStyle( div, null ) || {} ).top !== "1%";
support.boxSizingReliable = ( window.getComputedStyle( div, null ) || { width: "4px" } ).width === "4px";