2014-03-24 08:30:44 +01:00
<!DOCTYPE html>
2011-09-10 07:47:49 +02:00
< html >
2014-03-24 08:30:44 +01:00
< head >
< meta charset = "utf-8" >
< title > Bootstrap Plugin Test Suite< / title >
2014-10-30 05:19:48 +01:00
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
2011-09-10 07:47:49 +02:00
2014-03-24 08:30:44 +01:00
<!-- jQuery -->
2016-12-31 07:29:58 +01:00
< script src = "../../docs/assets/js/vendor/jquery-slim.min.js" > < / script >
< script src = "../../docs/assets/js/vendor/tether.min.js" > < / script >
2015-03-06 13:34:28 +01:00
< script >
// Disable jQuery event aliases to ensure we don't accidentally use any of them
(function () {
var eventAliases = [
'blur',
'focus',
'focusin',
'focusout',
'load',
'resize',
'scroll',
'unload',
'click',
'dblclick',
'mousedown',
'mouseup',
'mousemove',
'mouseover',
'mouseout',
'mouseenter',
'mouseleave',
'change',
'select',
'submit',
'keydown',
'keypress',
'keyup',
'error',
'contextmenu',
'hover',
'bind',
'unbind',
'delegate',
'undelegate'
]
for (var i = 0; i < eventAliases.length ; i + + ) {
2016-02-16 13:05:41 +01:00
var eventAlias = eventAliases[i]
$.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-03-06 13:34:28 +01:00
}
})()
< / script >
2011-09-10 07:47:49 +02:00
2014-03-24 08:30:44 +01:00
<!-- QUnit -->
< link rel = "stylesheet" href = "vendor/qunit.css" media = "screen" >
< script src = "vendor/qunit.js" > < / script >
< script >
// See https://github.com/axemclion/grunt-saucelabs#test-result-details-with-qunit
var log = []
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
2014-06-18 21:32:03 +02:00
QUnit.done(function (testResults) {
var tests = []
for (var i = 0, len = log.length; i < len ; i + + ) {
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
2014-03-24 08:30:44 +01:00
QUnit.testStart(function (testDetails) {
2014-10-30 05:19:48 +01:00
$(window).scrollTop(0)
2015-02-26 08:26:26 +01:00
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
// Cleanup
QUnit.testDone(function () {
$('#qunit-fixture').empty()
$('#modal-test, .modal-backdrop').remove()
})
2015-03-01 09:46:49 +01:00
// Display fixture on-screen on iOS to avoid false positives
if (/iPhone|iPad|iPod/.test(navigator.userAgent)) {
QUnit.begin(function() {
$('#qunit-fixture').css({ top: 0, left: 0 })
})
QUnit.done(function () {
$('#qunit-fixture').css({ top: '', left: '' })
})
}
2015-03-02 04:48:06 +01:00
// Disable deprecated global QUnit method aliases in preparation for QUnit v2
(function () {
var methodNames = [
'async',
'asyncTest',
'deepEqual',
'equal',
'expect',
'module',
'notDeepEqual',
'notEqual',
'notPropEqual',
'notStrictEqual',
'ok',
'propEqual',
'push',
'start',
'stop',
'strictEqual',
'test',
'throws'
];
for (var i = 0; i < methodNames.length ; i + + ) {
var methodName = methodNames[i];
window[methodName] = undefined;
}
})();
2014-03-24 08:30:44 +01:00
< / script >
2011-09-10 07:47:49 +02:00
2015-05-07 21:48:22 +02:00
<!-- es6 Plugin sources -->
< script src = "../../js/dist/util.js" > < / script >
< script src = "../../js/dist/alert.js" > < / script >
2015-05-08 02:07:38 +02:00
< script src = "../../js/dist/button.js" > < / script >
2015-05-08 07:26:40 +02:00
< script src = "../../js/dist/carousel.js" > < / script >
2015-05-10 08:00:59 +02:00
< script src = "../../js/dist/collapse.js" > < / script >
2015-05-10 22:47:11 +02:00
< script src = "../../js/dist/dropdown.js" > < / script >
2015-05-11 04:45:38 +02:00
< script src = "../../js/dist/modal.js" > < / script >
2015-05-11 21:05:35 +02:00
< script src = "../../js/dist/scrollspy.js" > < / script >
2015-05-11 21:29:06 +02:00
< script src = "../../js/dist/tab.js" > < / script >
2015-05-12 08:32:37 +02:00
< script src = "../../js/dist/tooltip.js" > < / script >
2015-05-12 23:28:11 +02:00
< script src = "../../js/dist/popover.js" > < / script >
2015-05-07 21:48:22 +02:00
2015-05-12 23:28:11 +02: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 >
2013-05-17 05:19:51 +02:00
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 >