2017-10-03 18:34:59 +02:00
<!doctype html>
2017-10-22 14:02:24 +02:00
< html lang = "en" >
2014-03-24 08:30:44 +01:00
< head >
< meta charset = "utf-8" >
2018-12-16 15:39:48 +01:00
< meta name = "viewport" content = "width=device-width, initial-scale=1, shrink-to-fit=no" >
2014-03-24 08:30:44 +01:00
< title > Bootstrap Plugin Test Suite< / title >
2011-09-10 07:47:49 +02:00
2014-03-24 08:30:44 +01:00
<!-- jQuery -->
2017-11-10 11:25:47 +01:00
< script >
(function () {
2018-12-17 03:18:37 +01:00
var path = '../../site/docs/4.2/assets/js/vendor/jquery-slim.min.js'
2017-11-10 11:25:47 +01:00
// get jquery param from the query string.
var jQueryVersion = location.search.match(/[?& ]jquery=(.*?)(?=& |$)/)
2018-03-21 11:00:13 +01:00
// If a version was specified, use that version from jQuery CDN
2017-11-10 11:25:47 +01:00
if (jQueryVersion) {
2018-03-21 11:00:13 +01:00
path = 'https://code.jquery.com/jquery-' + jQueryVersion[1] + '.min.js'
2017-11-10 11:25:47 +01:00
}
document.write('< script src = "' + path + '" > < \ / s c r i p t > ' )
}())
< / script >
2018-09-14 15:09:12 +02:00
< script src = "../../node_modules/popper.js/dist/umd/popper.min.js" > < / script >
2011-09-10 07:47:49 +02:00
2014-03-24 08:30:44 +01:00
<!-- QUnit -->
2018-05-07 15:56:24 +02:00
< link rel = "stylesheet" href = "../../node_modules/qunit/qunit/qunit.css" media = "screen" >
< script src = "../../node_modules/qunit/qunit/qunit.js" > < / script >
2017-02-22 00:57:16 +01:00
2018-03-09 23:17:57 +01:00
<!-- Sinon -->
2018-03-21 10:47:37 +01:00
< script src = "../../node_modules/sinon/pkg/sinon-no-sourcemaps.js" > < / script >
2018-03-09 23:17:57 +01:00
2018-03-03 22:04:11 +01:00
<!-- Hammer simulator -->
< script src = "../../node_modules/hammer-simulator/index.js" > < / script >
2014-03-24 08:30:44 +01:00
< script >
2017-02-22 00:57:16 +01:00
// Disable jQuery event aliases to ensure we don't accidentally use any of them
[
'blur',
'focus',
'focusin',
'focusout',
'resize',
'scroll',
'click',
'dblclick',
'mousedown',
'mouseup',
'mousemove',
'mouseover',
'mouseout',
'mouseenter',
'mouseleave',
'change',
'select',
'submit',
'keydown',
'keypress',
'keyup',
'contextmenu'
].forEach(function(eventAlias) {
$.fn[eventAlias] = function() {
throw new Error('Using the ".' + eventAlias + '()" method is not allowed, so that Bootstrap can be compatible with custom jQuery builds which exclude the "event aliases" module that defines said method. See https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md#js')
}
})
2015-07-03 04:30:11 +02:00
// Require assert.expect in each test
2015-03-01 15:33:48 +01:00
QUnit.config.requireExpects = true
2017-02-22 00:57:16 +01:00
// See https://github.com/axemclion/grunt-saucelabs#test-result-details-with-qunit
var log = []
var testName
QUnit.done(function(testResults) {
2014-06-18 21:32:03 +02:00
var tests = []
2017-02-22 00:57:16 +01:00
for (var i = 0; i < log.length ; i + + ) {
2014-06-18 21:32:03 +02:00
var details = log[i]
tests.push({
2014-03-24 08:30:44 +01:00
name: details.name,
result: details.result,
expected: details.expected,
actual: details.actual,
source: details.source
2014-06-18 21:32:03 +02:00
})
}
testResults.tests = tests
2014-02-20 06:27:50 +01:00
2014-06-18 21:32:03 +02:00
window.global_test_results = testResults
})
2014-02-20 06:27:50 +01:00
2017-02-22 00:57:16 +01:00
QUnit.testStart(function(testDetails) {
QUnit.log(function(details) {
2014-03-24 08:30:44 +01:00
if (!details.result) {
details.name = testDetails.name
log.push(details)
}
2015-02-26 08:26:26 +01:00
})
2014-03-24 08:30:44 +01:00
})
2014-06-18 21:32:18 +02:00
2015-03-01 09:46:49 +01:00
// Display fixture on-screen on iOS to avoid false positives
2017-02-22 00:57:16 +01:00
// See https://github.com/twbs/bootstrap/pull/15955
2015-03-01 09:46:49 +01:00
if (/iPhone|iPad|iPod/.test(navigator.userAgent)) {
QUnit.begin(function() {
$('#qunit-fixture').css({ top: 0, left: 0 })
})
2017-02-22 00:57:16 +01:00
QUnit.done(function() {
2015-03-01 09:46:49 +01:00
$('#qunit-fixture').css({ top: '', left: '' })
})
}
2014-03-24 08:30:44 +01:00
< / script >
2011-09-10 07:47:49 +02:00
2017-02-22 00:57:16 +01:00
<!-- Transpiled Plugins -->
2017-05-29 20:18:45 +02:00
< script src = "../dist/util.js" > < / script >
< script src = "../dist/alert.js" > < / script >
< script src = "../dist/button.js" > < / script >
< script src = "../dist/carousel.js" > < / script >
< script src = "../dist/collapse.js" > < / script >
< script src = "../dist/dropdown.js" > < / script >
< script src = "../dist/modal.js" > < / script >
< script src = "../dist/scrollspy.js" > < / script >
< script src = "../dist/tab.js" > < / script >
< script src = "../dist/tooltip.js" > < / script >
< script src = "../dist/popover.js" > < / script >
2018-08-23 18:31:25 +02:00
< script src = "../dist/toast.js" > < / script >
2015-05-07 21:48:22 +02:00
2017-02-22 00:57:16 +01:00
<!-- Unit Tests -->
2014-03-24 08:30:44 +01:00
< script src = "unit/alert.js" > < / script >
< script src = "unit/button.js" > < / script >
< script src = "unit/carousel.js" > < / script >
< script src = "unit/collapse.js" > < / script >
< script src = "unit/dropdown.js" > < / script >
< script src = "unit/modal.js" > < / script >
< script src = "unit/scrollspy.js" > < / script >
2015-05-12 23:28:11 +02:00
< script src = "unit/tab.js" > < / script >
2014-03-24 08:30:44 +01:00
< script src = "unit/tooltip.js" > < / script >
2015-05-12 23:28:11 +02:00
< script src = "unit/popover.js" > < / script >
2017-10-25 09:32:21 +02:00
< script src = "unit/util.js" > < / script >
2018-08-23 18:31:25 +02:00
< script src = "unit/toast.js" > < / script >
2014-03-24 08:30:44 +01:00
< / head >
< body >
2014-06-18 21:32:18 +02:00
< div id = "qunit-container" >
2014-03-24 08:30:44 +01:00
< div id = "qunit" > < / div >
< div id = "qunit-fixture" > < / div >
< / div >
< / body >
2013-04-23 09:34:27 +02:00
< / html >