2017-10-03 12:34:59 -04:00
<!doctype html>
2017-10-22 08:02:24 -04:00
< html lang = "en" >
2014-03-24 03:30:44 -04:00
< head >
< meta charset = "utf-8" >
2017-02-21 18:57:16 -05:00
< meta name = "viewport" content = "width=device-width, initial-scale=1, shrink-to-fit=no" >
2014-03-24 03:30:44 -04:00
< title > Bootstrap Plugin Test Suite< / title >
2011-09-10 01:47:49 -04:00
2014-03-24 03:30:44 -04:00
<!-- jQuery -->
2017-11-10 05:25:47 -05:00
< script >
(function () {
var path = '../../assets/js/vendor/jquery-slim.min.js'
// get jquery param from the query string.
var jQueryVersion = location.search.match(/[?& ]jquery=(.*?)(?=& |$)/)
// If a version was specified, use that version from our vendor folder
if (jQueryVersion) {
path = 'vendor/jquery-' + jQueryVersion[1] + '.min.js'
}
document.write('< script src = "' + path + '" > < \ / s c r i p t > ' )
}())
< / script >
2017-05-29 14:18:45 -04:00
< script src = "../../assets/js/vendor/popper.min.js" > < / script >
2011-09-10 01:47:49 -04:00
2014-03-24 03:30:44 -04:00
<!-- QUnit -->
< link rel = "stylesheet" href = "vendor/qunit.css" media = "screen" >
< script src = "vendor/qunit.js" > < / script >
2017-02-21 18:57:16 -05:00
2014-03-24 03:30:44 -04:00
< script >
2017-02-21 18:57:16 -05: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-02 22:30:11 -04:00
// Require assert.expect in each test
2015-03-01 09:33:48 -05:00
QUnit.config.requireExpects = true
2017-02-21 18:57:16 -05:00
// See https://github.com/axemclion/grunt-saucelabs#test-result-details-with-qunit
var log = []
var testName
QUnit.done(function(testResults) {
2014-06-18 15:32:03 -04:00
var tests = []
2017-02-21 18:57:16 -05:00
for (var i = 0; i < log.length ; i + + ) {
2014-06-18 15:32:03 -04:00
var details = log[i]
tests.push({
2014-03-24 03:30:44 -04:00
name: details.name,
result: details.result,
expected: details.expected,
actual: details.actual,
source: details.source
2014-06-18 15:32:03 -04:00
})
}
testResults.tests = tests
2014-02-20 00:27:50 -05:00
2014-06-18 15:32:03 -04:00
window.global_test_results = testResults
})
2014-02-20 00:27:50 -05:00
2017-02-21 18:57:16 -05:00
QUnit.testStart(function(testDetails) {
QUnit.log(function(details) {
2014-03-24 03:30:44 -04:00
if (!details.result) {
details.name = testDetails.name
log.push(details)
}
2015-02-26 02:26:26 -05:00
})
2014-03-24 03:30:44 -04:00
})
2014-06-18 15:32:18 -04:00
2015-03-01 03:46:49 -05:00
// Display fixture on-screen on iOS to avoid false positives
2017-02-21 18:57:16 -05:00
// See https://github.com/twbs/bootstrap/pull/15955
2015-03-01 03:46:49 -05:00
if (/iPhone|iPad|iPod/.test(navigator.userAgent)) {
QUnit.begin(function() {
$('#qunit-fixture').css({ top: 0, left: 0 })
})
2017-02-21 18:57:16 -05:00
QUnit.done(function() {
2015-03-01 03:46:49 -05:00
$('#qunit-fixture').css({ top: '', left: '' })
})
}
2014-03-24 03:30:44 -04:00
< / script >
2011-09-10 01:47:49 -04:00
2017-02-21 18:57:16 -05:00
<!-- Transpiled Plugins -->
2017-05-29 14:18:45 -04: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 >
2015-05-07 15:48:22 -04:00
2017-02-21 18:57:16 -05:00
<!-- Unit Tests -->
2014-03-24 03:30:44 -04: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 17:28:11 -04:00
< script src = "unit/tab.js" > < / script >
2014-03-24 03:30:44 -04:00
< script src = "unit/tooltip.js" > < / script >
2015-05-12 17:28:11 -04:00
< script src = "unit/popover.js" > < / script >
2017-10-25 03:32:21 -04:00
< script src = "unit/util.js" > < / script >
2014-03-24 03:30:44 -04:00
< / head >
< body >
2014-06-18 15:32:18 -04:00
< div id = "qunit-container" >
2014-03-24 03:30:44 -04:00
< div id = "qunit" > < / div >
< div id = "qunit-fixture" > < / div >
< / div >
< / body >
2013-04-23 03:34:27 -04:00
< / html >