mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
parent
afe2727c56
commit
4ed8b49453
7
external/qunit/LICENSE.txt
vendored
7
external/qunit/LICENSE.txt
vendored
@ -30,6 +30,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||||||
|
|
||||||
====
|
====
|
||||||
|
|
||||||
All files located in the node_modules directory are externally maintained
|
All files located in the node_modules and external directories are
|
||||||
libraries used by this software which have their own licenses; we
|
externally maintained libraries used by this software which have their
|
||||||
recommend you read them, as their terms may differ from the terms above.
|
own licenses; we recommend you read them, as their terms may differ from
|
||||||
|
the terms above.
|
||||||
|
41
external/qunit/qunit.css
vendored
41
external/qunit/qunit.css
vendored
@ -1,27 +1,27 @@
|
|||||||
/*!
|
/*!
|
||||||
* QUnit 1.23.1
|
* QUnit 1.17.1
|
||||||
* https://qunitjs.com/
|
* http://qunitjs.com/
|
||||||
*
|
*
|
||||||
* Copyright jQuery Foundation and other contributors
|
* Copyright jQuery Foundation and other contributors
|
||||||
* Released under the MIT license
|
* Released under the MIT license
|
||||||
* https://jquery.org/license
|
* http://jquery.org/license
|
||||||
*
|
*
|
||||||
* Date: 2016-04-12T17:29Z
|
* Date: 2015-01-20T19:39Z
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/** Font Family and Sizes */
|
/** Font Family and Sizes */
|
||||||
|
|
||||||
#qunit-tests, #qunit-header, #qunit-banner, #qunit-testrunner-toolbar, #qunit-filteredTest, #qunit-userAgent, #qunit-testresult {
|
#qunit-tests, #qunit-header, #qunit-banner, #qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult {
|
||||||
font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
|
font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
#qunit-testrunner-toolbar, #qunit-filteredTest, #qunit-userAgent, #qunit-testresult, #qunit-tests li { font-size: small; }
|
#qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult, #qunit-tests li { font-size: small; }
|
||||||
#qunit-tests { font-size: smaller; }
|
#qunit-tests { font-size: smaller; }
|
||||||
|
|
||||||
|
|
||||||
/** Resets */
|
/** Resets */
|
||||||
|
|
||||||
#qunit-tests, #qunit-header, #qunit-banner, #qunit-filteredTest, #qunit-userAgent, #qunit-testresult, #qunit-modulefilter {
|
#qunit-tests, #qunit-header, #qunit-banner, #qunit-userAgent, #qunit-testresult, #qunit-modulefilter {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
@ -68,12 +68,6 @@
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
#qunit-filteredTest {
|
|
||||||
padding: 0.5em 1em 0.5em 1em;
|
|
||||||
background-color: #F4FF77;
|
|
||||||
color: #366097;
|
|
||||||
}
|
|
||||||
|
|
||||||
#qunit-userAgent {
|
#qunit-userAgent {
|
||||||
padding: 0.5em 1em 0.5em 1em;
|
padding: 0.5em 1em 0.5em 1em;
|
||||||
background-color: #2B81AF;
|
background-color: #2B81AF;
|
||||||
@ -120,19 +114,9 @@
|
|||||||
display: list-item;
|
display: list-item;
|
||||||
}
|
}
|
||||||
|
|
||||||
#qunit-tests.hidepass {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
#qunit-tests.hidepass li.running,
|
#qunit-tests.hidepass li.running,
|
||||||
#qunit-tests.hidepass li.pass {
|
#qunit-tests.hidepass li.pass {
|
||||||
visibility: hidden;
|
display: none;
|
||||||
position: absolute;
|
|
||||||
width: 0;
|
|
||||||
height: 0;
|
|
||||||
padding: 0;
|
|
||||||
border: 0;
|
|
||||||
margin: 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#qunit-tests li strong {
|
#qunit-tests li strong {
|
||||||
@ -148,11 +132,6 @@
|
|||||||
color: #C2CCD1;
|
color: #C2CCD1;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#qunit-tests li p a {
|
|
||||||
padding: 0.25em;
|
|
||||||
color: #6B6464;
|
|
||||||
}
|
|
||||||
#qunit-tests li a:hover,
|
#qunit-tests li a:hover,
|
||||||
#qunit-tests li a:focus {
|
#qunit-tests li a:focus {
|
||||||
color: #000;
|
color: #000;
|
||||||
@ -172,10 +151,6 @@
|
|||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.qunit-source {
|
|
||||||
margin: 0.6em 0 0.3em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.qunit-collapsed {
|
.qunit-collapsed {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
3881
external/qunit/qunit.js
vendored
3881
external/qunit/qunit.js
vendored
File diff suppressed because it is too large
Load Diff
@ -41,7 +41,7 @@
|
|||||||
"gzip-js": "0.3.2",
|
"gzip-js": "0.3.2",
|
||||||
"jsdom": "5.6.1",
|
"jsdom": "5.6.1",
|
||||||
"load-grunt-tasks": "1.0.0",
|
"load-grunt-tasks": "1.0.0",
|
||||||
"qunitjs": "1.23.1",
|
"qunitjs": "1.17.1",
|
||||||
"qunit-assert-step": "1.0.3",
|
"qunit-assert-step": "1.0.3",
|
||||||
"requirejs": "2.1.17",
|
"requirejs": "2.1.17",
|
||||||
"sinon": "1.10.3",
|
"sinon": "1.10.3",
|
||||||
|
Loading…
Reference in New Issue
Block a user