mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-16 18:44:01 +02:00
Merge branch 'v4-dev' into v4-docs-streamlined
This commit is contained in:
8
js/tests/vendor/qunit.css
vendored
8
js/tests/vendor/qunit.css
vendored
@@ -1,12 +1,12 @@
|
||||
/*!
|
||||
* QUnit 2.2.0
|
||||
* QUnit 2.3.2
|
||||
* https://qunitjs.com/
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license
|
||||
* https://jquery.org/license
|
||||
*
|
||||
* Date: 2017-03-11T16:19Z
|
||||
* Date: 2017-04-18T02:19Z
|
||||
*/
|
||||
|
||||
/** Font Family and Sizes */
|
||||
@@ -236,7 +236,7 @@
|
||||
}
|
||||
|
||||
#qunit-tests.hidepass li.running,
|
||||
#qunit-tests.hidepass li.pass {
|
||||
#qunit-tests.hidepass li.pass:not(.todo) {
|
||||
visibility: hidden;
|
||||
position: absolute;
|
||||
width: 0;
|
||||
@@ -433,4 +433,4 @@
|
||||
left: -10000px;
|
||||
width: 1000px;
|
||||
height: 1000px;
|
||||
}
|
||||
}
|
12
js/tests/vendor/qunit.js
vendored
12
js/tests/vendor/qunit.js
vendored
@@ -1,12 +1,12 @@
|
||||
/*!
|
||||
* QUnit 2.2.0
|
||||
* QUnit 2.3.2
|
||||
* https://qunitjs.com/
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license
|
||||
* https://jquery.org/license
|
||||
*
|
||||
* Date: 2017-03-11T16:19Z
|
||||
* Date: 2017-04-18T02:19Z
|
||||
*/
|
||||
(function (global$1) {
|
||||
'use strict';
|
||||
@@ -21,12 +21,12 @@
|
||||
var document = window && window.document;
|
||||
var navigator = window && window.navigator;
|
||||
|
||||
var sessionStorage = function () {
|
||||
var localSessionStorage = function () {
|
||||
var x = "qunit-test-string";
|
||||
try {
|
||||
sessionStorage.setItem(x, x);
|
||||
sessionStorage.removeItem(x);
|
||||
return sessionStorage;
|
||||
global$1.sessionStorage.setItem(x, x);
|
||||
global$1.sessionStorage.removeItem(x);
|
||||
return global$1.sessionStorage;
|
||||
} catch (e) {
|
||||
return undefined;
|
||||
}
|
||||
|
Reference in New Issue
Block a user