Testing: update QUnit to 1.18.0

This commit is contained in:
Mottie 2015-07-24 12:32:22 -05:00
parent 8cf622f7e1
commit 319149816d
3 changed files with 1298 additions and 260 deletions

View File

@ -3,15 +3,17 @@
<head>
<meta charset="utf-8">
<title>Tablesorter Testing (WIP)</title>
<link rel="stylesheet" href="testing/qunit-1.16.0.css">
<link rel="stylesheet" href="testing/qunit-1.18.0.css">
<link rel="stylesheet" href="testing/testing.css">
<script src="testing/qunit-1.16.0.js"></script>
<script src="testing/qunit-1.18.0.js"></script>
<script src="docs/js/jquery-latest.min.js"></script>
<script src="js/jquery.tablesorter.js"></script>
<script src="js/widgets/widget-filter.js"></script>
<script src="js/parsers/parser-network.js"></script>
<script src="js/extras/jquery.metadata.js"></script>
<script src="testing/testing.js"></script>
<script src="testing/testing-ipv6.js"></script>
<script src="testing/testing-widgets.js"></script>

View File

@ -1,12 +1,12 @@
/*!
* QUnit 1.16.0
* QUnit 1.18.0
* http://qunitjs.com/
*
* Copyright 2006, 2014 jQuery Foundation and other contributors
* Copyright jQuery Foundation and other contributors
* Released under the MIT license
* http://jquery.org/license
*
* Date: 2014-12-03T16:32Z
* Date: 2015-04-03T10:23Z
*/
/** Font Family and Sizes */
@ -77,6 +77,18 @@
#qunit-modulefilter-container {
float: right;
padding: 0.2em;
}
.qunit-url-config {
display: inline-block;
padding: 0.1em;
}
.qunit-filter {
display: block;
float: right;
margin-left: 1em;
}
/** Tests: Pass/Fail */
@ -95,12 +107,22 @@
display: none;
}
#qunit-tests li.pass, #qunit-tests li.running, #qunit-tests li.fail {
#qunit-tests li.running,
#qunit-tests li.pass,
#qunit-tests li.fail,
#qunit-tests li.skipped {
display: list-item;
}
#qunit-tests.hidepass li.pass, #qunit-tests.hidepass li.running {
display: none;
#qunit-tests.hidepass li.running,
#qunit-tests.hidepass li.pass {
visibility: hidden;
position: absolute;
width: 0px;
height: 0px;
padding: 0;
border: 0;
margin: 0;
}
#qunit-tests li strong {
@ -116,6 +138,11 @@
color: #C2CCD1;
text-decoration: none;
}
#qunit-tests li p a {
padding: 0.25em;
color: #6B6464;
}
#qunit-tests li a:hover,
#qunit-tests li a:focus {
color: #000;

File diff suppressed because it is too large Load Diff