FOSDEM-2025-keynote/lib/js/extra/headjs/test/unit/1.0.0/index.html

82 lines
No EOL
3.1 KiB
HTML

<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8"/>
<title>Head.JS Unit Tests (1.00)</title>
<link rel="stylesheet" type="text/css" href="../../../site/assets/libs/qunit/qunit.min.css" />
<script src="../../../dist/1.0.0/head.min.js"></script>
<style>
body {
width: 1000px;
margin: 20px auto;
}
</style>
</head>
<body>
<div id="qunit"></div>
<div id="qunit-userAgent"></div>
<a href="../../../site/unit.html">&laquo; Back</a>
<ul>
<li>
<h4>
<em id="browserscope">See how other browsers fared with these tests on <a href="http://www.browserscope.org/user/tests/table/agt1YS1wcm9maWxlcnINCxIEVGVzdBihusQUDA?v=3&layout=simple&highlight=1" target="_blank">BrowserScope</a></em>
</h4>
</li>
<li>
<em>
On certain browsers CSS loading will load the CSS file but not trigger the callback. Still evaluating which browsers that are.
</em>
</li>
<li>
<em>
If you have tests that fail, try clearing your cache, reloading, or running the tests individually. Some strange stuff with qUnit sometimes it seems.
</em>
</li>
<li>
<em>If after that a test still fails, be sure to let <a href="https://github.com/headjs/headjs/issues" target="_blank">us know</a> !</em>
</li>
</ul>
<script src="../../../site/assets/libs/qunit/qunit.min.js"></script>
<script src="../../../site/assets/libs/qunit/qunit-assert-step.min.js"></script>
<script>
QUnit.config.requireExpects = true;
QUnit.config.reorder = false;
</script>
<!-- Tests -->
<script src="test.responsive.js"></script>
<script src="test.feature.js"></script>
<script src="test.load.js"></script>
<script src="test.load-css.js"></script>
<script src="test.conf.js"></script>
<script>
// BrowserScope Results
var _bTestResults = {};
function sanitize(msg) {
msg = msg || "";
return msg
.replace(/[^A-Z]/gi, "")
.toLocaleLowerCase();
}
// Build browserscope results
QUnit.log(function (details) {
var key = sanitize(details.message);
var value = details.result ? 1 : 0;
if (!!key) {
_bTestResults[key] = value;
}
});
// Send browserscope results
QUnit.done(function (details) {
//head.load("http://www.browserscope.org/user/beacon/" + "agt1YS1wcm9maWxlcnINCxIEVGVzdBihusQUDA");
});
</script>
</body>
</html>