mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-01 13:24:25 +01:00
58082cd83e
Conflicts: .gitignore Gruntfile.js _config.yml dist/css/bootstrap-theme.css dist/css/bootstrap-theme.min.css dist/css/bootstrap.css dist/css/bootstrap.css.map dist/css/bootstrap.min.css dist/js/bootstrap.js dist/js/bootstrap.min.js docs/_includes/components/navbar.html docs/_includes/components/progress-bars.html docs/_includes/css/grid.html docs/_includes/css/overview.html docs/_includes/customizer-variables.html docs/_includes/getting-started/accessibility.html docs/_includes/getting-started/browser-device-support.html docs/_includes/getting-started/community.html docs/_includes/getting-started/disabling-responsiveness.html docs/_includes/getting-started/download.html docs/_includes/getting-started/examples.html docs/_includes/getting-started/license.html docs/_includes/getting-started/third-party-support.html docs/_includes/js/alerts.html docs/_includes/js/buttons.html docs/_includes/js/carousel.html docs/_includes/js/collapse.html docs/_includes/js/dropdowns.html docs/_includes/js/modal.html docs/_includes/js/popovers.html docs/_includes/js/scrollspy.html docs/_includes/js/tabs.html docs/_includes/js/tooltips.html docs/_includes/js/transitions.html docs/_includes/nav/javascript.html docs/_includes/nav/main.html docs/about.html docs/assets/css/docs.min.css docs/assets/css/src/docs.css docs/assets/js/customize.min.js docs/assets/js/raw-files.min.js docs/assets/js/src/customizer.js docs/dist/css/bootstrap-theme.css docs/dist/css/bootstrap-theme.min.css docs/dist/css/bootstrap.css docs/dist/css/bootstrap.css.map docs/dist/css/bootstrap.min.css docs/dist/js/bootstrap.js docs/dist/js/bootstrap.min.js docs/migration.html js/affix.js js/alert.js js/button.js js/carousel.js js/collapse.js js/dropdown.js js/modal.js js/popover.js js/scrollspy.js js/tab.js js/tests/unit/affix.js js/tests/unit/button.js js/tests/unit/carousel.js js/tests/unit/modal.js js/tests/unit/tooltip.js js/tests/visual/modal.html js/tooltip.js less/component-animations.less less/jumbotron.less less/mixins/background-variant.less less/mixins/buttons.less less/mixins/responsive-visibility.less less/mixins/text-emphasis.less less/navbar.less less/navs.less less/scaffolding.less less/tooltip.less less/utilities.less less/variables.less package.json scss/_buttons.scss scss/_forms.scss scss/_modal.scss
165 lines
4.5 KiB
HTML
165 lines
4.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Bootstrap Plugin Test Suite</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<!-- jQuery -->
|
|
<script src="vendor/jquery.min.js"></script>
|
|
<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++) {
|
|
$.fn[eventAliases[i]] = undefined
|
|
}
|
|
})()
|
|
</script>
|
|
|
|
<!-- 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 = []
|
|
// Require assert.expect in each test.
|
|
QUnit.config.requireExpects = true
|
|
QUnit.done(function (testResults) {
|
|
var tests = []
|
|
for (var i = 0, len = log.length; i < len; i++) {
|
|
var details = log[i]
|
|
tests.push({
|
|
name: details.name,
|
|
result: details.result,
|
|
expected: details.expected,
|
|
actual: details.actual,
|
|
source: details.source
|
|
})
|
|
}
|
|
testResults.tests = tests
|
|
|
|
window.global_test_results = testResults
|
|
})
|
|
|
|
QUnit.testStart(function (testDetails) {
|
|
$(window).scrollTop(0)
|
|
QUnit.log(function (details) {
|
|
if (!details.result) {
|
|
details.name = testDetails.name
|
|
log.push(details)
|
|
}
|
|
})
|
|
})
|
|
|
|
// Cleanup
|
|
QUnit.testDone(function () {
|
|
$('#qunit-fixture').empty()
|
|
$('#modal-test, .modal-backdrop').remove()
|
|
})
|
|
|
|
// 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: '' })
|
|
})
|
|
}
|
|
|
|
// 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;
|
|
}
|
|
})();
|
|
</script>
|
|
|
|
<!-- Plugin sources -->
|
|
<script src="../../js/util.js"></script>
|
|
<script src="../../js/alert.js"></script>
|
|
<script src="../../js/button.js"></script>
|
|
<script src="../../js/carousel.js"></script>
|
|
<script src="../../js/collapse.js"></script>
|
|
<script src="../../js/dropdown.js"></script>
|
|
<script src="../../js/modal.js"></script>
|
|
<script src="../../js/scrollspy.js"></script>
|
|
<script src="../../js/tab.js"></script>
|
|
<script src="../../js/tooltip.js"></script>
|
|
<script src="../../js/popover.js"></script>
|
|
|
|
<!-- Unit tests -->
|
|
<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>
|
|
<script src="unit/tab.js"></script>
|
|
<script src="unit/tooltip.js"></script>
|
|
<script src="unit/popover.js"></script>
|
|
|
|
</head>
|
|
<body>
|
|
<div id="qunit-container">
|
|
<div id="qunit"></div>
|
|
<div id="qunit-fixture"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|