mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Build: Don't assume the browser environment; smoke test on Node w/ jsdom
Fixes gh-1950 Closes gh-1949
This commit is contained in:
parent
ab20d9d24f
commit
76df9e4e38
17
Gruntfile.js
17
Gruntfile.js
@ -157,9 +157,24 @@ module.exports = function( grunt ) {
|
||||
|
||||
grunt.registerTask( "lint", [ "jshint", "jscs" ] );
|
||||
|
||||
grunt.registerTask( "node_smoke_test", function() {
|
||||
var done = this.async();
|
||||
require( "jsdom" ).env( "", function( errors, window ) {
|
||||
if ( errors ) {
|
||||
console.error( errors );
|
||||
done( false );
|
||||
}
|
||||
require( "./" )( window );
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
// Short list as a high frequency watch task
|
||||
grunt.registerTask( "dev", [ "build:*:*", "lint" ] );
|
||||
|
||||
// Default grunt
|
||||
grunt.registerTask( "test_fast", [ "node_smoke_test" ] );
|
||||
|
||||
grunt.registerTask( "test", [ "default", "test_fast" ] );
|
||||
|
||||
grunt.registerTask( "default", [ "jsonlint", "dev", "uglify", "dist:*", "compare_size" ] );
|
||||
};
|
||||
|
@ -43,6 +43,7 @@
|
||||
"grunt-jsonlint": "1.0.4",
|
||||
"grunt-npmcopy": "0.1.0",
|
||||
"gzip-js": "0.3.2",
|
||||
"jsdom": "1.5.0",
|
||||
"load-grunt-tasks": "1.0.0",
|
||||
"npm": "2.1.12",
|
||||
"qunitjs": "1.16.0",
|
||||
@ -54,6 +55,6 @@
|
||||
"scripts": {
|
||||
"build": "npm install && grunt",
|
||||
"start": "grunt watch",
|
||||
"test": "grunt"
|
||||
"test": "grunt test"
|
||||
}
|
||||
}
|
||||
|
@ -15,9 +15,13 @@
|
||||
|
||||
"sub": true,
|
||||
|
||||
"browser": true,
|
||||
|
||||
"globals": {
|
||||
"window": true,
|
||||
"setTimeout": true,
|
||||
"clearTimeout": true,
|
||||
"setInterval": true,
|
||||
"clearInterval": true,
|
||||
|
||||
"jQuery": true,
|
||||
"define": true,
|
||||
"module": true,
|
||||
|
@ -1,13 +1,15 @@
|
||||
define([
|
||||
"./core",
|
||||
"./var/document",
|
||||
"./var/rnotwhite",
|
||||
"./ajax/var/location",
|
||||
"./ajax/var/nonce",
|
||||
"./ajax/var/rquery",
|
||||
"./core/init",
|
||||
"./ajax/parseJSON",
|
||||
"./ajax/parseXML",
|
||||
"./deferred"
|
||||
], function( jQuery, rnotwhite, nonce, rquery ) {
|
||||
], function( jQuery, document, rnotwhite, location, nonce, rquery ) {
|
||||
|
||||
var
|
||||
rhash = /#.*$/,
|
||||
|
@ -11,7 +11,7 @@ jQuery.parseXML = function( data ) {
|
||||
|
||||
// Support: IE9
|
||||
try {
|
||||
xml = ( new DOMParser() ).parseFromString( data, "text/xml" );
|
||||
xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" );
|
||||
} catch ( e ) {
|
||||
xml = undefined;
|
||||
}
|
||||
|
@ -1,7 +1,8 @@
|
||||
define([
|
||||
"../core",
|
||||
"../var/document",
|
||||
"../ajax"
|
||||
], function( jQuery ) {
|
||||
], function( jQuery, document ) {
|
||||
|
||||
// Install script dataType
|
||||
jQuery.ajaxSetup({
|
||||
|
3
src/ajax/var/location.js
Normal file
3
src/ajax/var/location.js
Normal file
@ -0,0 +1,3 @@
|
||||
define(function() {
|
||||
return window.location;
|
||||
});
|
@ -6,7 +6,7 @@ define([
|
||||
|
||||
jQuery.ajaxSettings.xhr = function() {
|
||||
try {
|
||||
return new XMLHttpRequest();
|
||||
return new window.XMLHttpRequest();
|
||||
} catch ( e ) {}
|
||||
};
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
define([
|
||||
"../var/document",
|
||||
"../var/support"
|
||||
], function( support ) {
|
||||
], function( document, support ) {
|
||||
|
||||
(function() {
|
||||
var input = document.createElement( "input" ),
|
||||
|
@ -1,5 +1,6 @@
|
||||
define([
|
||||
"./var/arr",
|
||||
"./var/document",
|
||||
"./var/slice",
|
||||
"./var/concat",
|
||||
"./var/push",
|
||||
@ -8,12 +9,9 @@ define([
|
||||
"./var/toString",
|
||||
"./var/hasOwn",
|
||||
"./var/support"
|
||||
], function( arr, slice, concat, push, indexOf, class2type, toString, hasOwn, support ) {
|
||||
], function( arr, document, slice, concat, push, indexOf, class2type, toString, hasOwn, support ) {
|
||||
|
||||
var
|
||||
// Use the correct document accordingly with window argument (sandbox)
|
||||
document = window.document,
|
||||
|
||||
version = "@VERSION",
|
||||
|
||||
// Define a local copy of jQuery
|
||||
|
@ -1,9 +1,10 @@
|
||||
// Initialize a jQuery object
|
||||
define([
|
||||
"../core",
|
||||
"../var/document",
|
||||
"./var/rsingleTag",
|
||||
"../traversing/findFilter"
|
||||
], function( jQuery, rsingleTag ) {
|
||||
], function( jQuery, document, rsingleTag ) {
|
||||
|
||||
// A central reference to the root jQuery(document)
|
||||
var rootjQuery,
|
||||
|
@ -1,5 +1,6 @@
|
||||
define([
|
||||
"../core",
|
||||
"../var/document",
|
||||
"./var/rsingleTag",
|
||||
|
||||
// This is the only module that needs core/support
|
||||
@ -7,7 +8,7 @@ define([
|
||||
|
||||
// buildFragment
|
||||
"../manipulation"
|
||||
], function( jQuery, rsingleTag, support ) {
|
||||
], function( jQuery, document, rsingleTag, support ) {
|
||||
|
||||
// data: string of html
|
||||
// context (optional): If specified, the fragment will be created in this context,
|
||||
|
@ -1,8 +1,9 @@
|
||||
define([
|
||||
"../core",
|
||||
"../var/document",
|
||||
"../core/init",
|
||||
"../deferred"
|
||||
], function( jQuery ) {
|
||||
], function( jQuery, document ) {
|
||||
|
||||
// The deferred used on DOM ready
|
||||
var readyList;
|
||||
|
@ -1,9 +1,15 @@
|
||||
define([
|
||||
"../var/document",
|
||||
"../var/support"
|
||||
], function( support ) {
|
||||
], function( document, support ) {
|
||||
|
||||
support.createHTMLDocument = (function() {
|
||||
var doc = document.implementation.createHTMLDocument( "" );
|
||||
// Support: Node with jsdom<=1.5.0+
|
||||
// jsdom's document created via the above method doesn't contain the body
|
||||
if ( !doc.body ) {
|
||||
return false;
|
||||
}
|
||||
doc.body.innerHTML = "<form></form><form></form>";
|
||||
return doc.body.childNodes.length === 2;
|
||||
})();
|
||||
|
@ -1,7 +1,8 @@
|
||||
define([
|
||||
"../core",
|
||||
"../var/document",
|
||||
"../manipulation" // appendTo
|
||||
], function( jQuery ) {
|
||||
], function( jQuery, document ) {
|
||||
|
||||
var iframe,
|
||||
elemdisplay = {
|
||||
|
@ -1,11 +1,12 @@
|
||||
define([
|
||||
"../core",
|
||||
"../var/document",
|
||||
"../var/documentElement",
|
||||
"../var/support"
|
||||
], function( jQuery, support ) {
|
||||
], function( jQuery, document, documentElement, support ) {
|
||||
|
||||
(function() {
|
||||
var pixelPositionVal, boxSizingReliableVal,
|
||||
docElem = document.documentElement,
|
||||
container = document.createElement( "div" ),
|
||||
div = document.createElement( "div" );
|
||||
|
||||
@ -33,13 +34,13 @@ define([
|
||||
"display:block;margin-top:1%;top:1%;" +
|
||||
"border:1px;padding:1px;width:4px;position:absolute";
|
||||
div.innerHTML = "";
|
||||
docElem.appendChild( container );
|
||||
documentElement.appendChild( container );
|
||||
|
||||
var divStyle = window.getComputedStyle( div, null );
|
||||
pixelPositionVal = divStyle.top !== "1%";
|
||||
boxSizingReliableVal = divStyle.width === "4px";
|
||||
|
||||
docElem.removeChild( container );
|
||||
documentElement.removeChild( container );
|
||||
}
|
||||
|
||||
// Support: node.js jsdom
|
||||
@ -78,11 +79,11 @@ define([
|
||||
"display:block;margin:0;border:0;padding:0";
|
||||
marginDiv.style.marginRight = marginDiv.style.width = "0";
|
||||
div.style.width = "1px";
|
||||
docElem.appendChild( container );
|
||||
documentElement.appendChild( container );
|
||||
|
||||
ret = !parseFloat( window.getComputedStyle( marginDiv, null ).marginRight );
|
||||
|
||||
docElem.removeChild( container );
|
||||
documentElement.removeChild( container );
|
||||
div.removeChild( marginDiv );
|
||||
|
||||
return ret;
|
||||
|
3
src/effects.js
vendored
3
src/effects.js
vendored
@ -1,5 +1,6 @@
|
||||
define([
|
||||
"./core",
|
||||
"./var/document",
|
||||
"./var/pnum",
|
||||
"./css/var/cssExpand",
|
||||
"./css/var/isHidden",
|
||||
@ -12,7 +13,7 @@ define([
|
||||
"./css",
|
||||
"./deferred",
|
||||
"./traversing"
|
||||
], function( jQuery, pnum, cssExpand, isHidden, defaultDisplay, dataPriv ) {
|
||||
], function( jQuery, document, pnum, cssExpand, isHidden, defaultDisplay, dataPriv ) {
|
||||
|
||||
var
|
||||
fxNow, timerId,
|
||||
|
@ -1,5 +1,6 @@
|
||||
define([
|
||||
"./core",
|
||||
"./var/document",
|
||||
"./var/rnotwhite",
|
||||
"./var/hasOwn",
|
||||
"./var/slice",
|
||||
@ -9,7 +10,7 @@ define([
|
||||
"./core/init",
|
||||
"./data/accepts",
|
||||
"./selector"
|
||||
], function( jQuery, rnotwhite, hasOwn, slice, support, dataPriv ) {
|
||||
], function( jQuery, document, rnotwhite, hasOwn, slice, support, dataPriv ) {
|
||||
|
||||
var
|
||||
rkeyEvent = /^key/,
|
||||
|
@ -1,6 +1,7 @@
|
||||
define([
|
||||
"../var/document",
|
||||
"../var/support"
|
||||
], function( support ) {
|
||||
], function( document, support ) {
|
||||
|
||||
(function() {
|
||||
var fragment = document.createDocumentFragment(),
|
||||
|
@ -1,6 +1,8 @@
|
||||
define([
|
||||
"./core",
|
||||
"./core/access",
|
||||
"./var/document",
|
||||
"./var/documentElement",
|
||||
"./css/var/rnumnonpx",
|
||||
"./css/curCSS",
|
||||
"./css/addGetHookIf",
|
||||
@ -9,9 +11,7 @@ define([
|
||||
"./core/init",
|
||||
"./css",
|
||||
"./selector" // contains
|
||||
], function( jQuery, access, rnumnonpx, curCSS, addGetHookIf, support ) {
|
||||
|
||||
var docElem = window.document.documentElement;
|
||||
], function( jQuery, access, document, documentElement, rnumnonpx, curCSS, addGetHookIf, support ) {
|
||||
|
||||
/**
|
||||
* Gets a window from an element
|
||||
@ -145,14 +145,14 @@ jQuery.fn.extend({
|
||||
|
||||
offsetParent: function() {
|
||||
return this.map(function() {
|
||||
var offsetParent = this.offsetParent || docElem;
|
||||
var offsetParent = this.offsetParent || documentElement;
|
||||
|
||||
while ( offsetParent && ( !jQuery.nodeName( offsetParent, "html" ) &&
|
||||
jQuery.css( offsetParent, "position" ) === "static" ) ) {
|
||||
offsetParent = offsetParent.offsetParent;
|
||||
}
|
||||
|
||||
return offsetParent || docElem;
|
||||
return offsetParent || documentElement;
|
||||
});
|
||||
}
|
||||
});
|
||||
|
@ -1,6 +1,8 @@
|
||||
define([
|
||||
"./core"
|
||||
], function( jQuery ) {
|
||||
"./core",
|
||||
"./var/document",
|
||||
"./var/documentElement"
|
||||
], function( jQuery, document, documentElement ) {
|
||||
|
||||
/*
|
||||
* Optional (non-Sizzle) selector module for custom builds.
|
||||
@ -28,12 +30,11 @@ define([
|
||||
*/
|
||||
|
||||
var hasDuplicate,
|
||||
docElem = window.document.documentElement,
|
||||
matches = docElem.matches ||
|
||||
docElem.webkitMatchesSelector ||
|
||||
docElem.mozMatchesSelector ||
|
||||
docElem.oMatchesSelector ||
|
||||
docElem.msMatchesSelector,
|
||||
matches = documentElement.matches ||
|
||||
documentElement.webkitMatchesSelector ||
|
||||
documentElement.mozMatchesSelector ||
|
||||
documentElement.oMatchesSelector ||
|
||||
documentElement.msMatchesSelector,
|
||||
sortOrder = function( a, b ) {
|
||||
// Flag for duplicate removal
|
||||
if ( a === b ) {
|
||||
|
3
src/var/document.js
Normal file
3
src/var/document.js
Normal file
@ -0,0 +1,3 @@
|
||||
define(function() {
|
||||
return window.document;
|
||||
});
|
5
src/var/documentElement.js
Normal file
5
src/var/documentElement.js
Normal file
@ -0,0 +1,5 @@
|
||||
define([
|
||||
"./document"
|
||||
], function( document ) {
|
||||
return document.documentElement;
|
||||
});
|
Loading…
Reference in New Issue
Block a user