Protocol-relative urls don't work when using the file from the
file system directly in a browser (they require the file being
served from a http web server).
This is why the Grunt run has been broken since 426ccf0131, as
can be seen on https://travis-ci.org/wikimedia/jquery.uls/builds.
37 lines
959 B
HTML
37 lines
959 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" dir="ltr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>jQuery ULS Test Suite</title>
|
|
|
|
<!-- External libs -->
|
|
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
|
|
|
|
<!-- Source of our libs -->
|
|
<script src="../src/jquery.uls.data.js"></script>
|
|
<script src="../src/jquery.uls.data.utils.js"></script>
|
|
<script src="../src/jquery.uls.lcd.js"></script>
|
|
<script src="../src/jquery.uls.languagefilter.js"></script>
|
|
<script src="../src/jquery.uls.regionfilter.js"></script>
|
|
<script src="../src/jquery.uls.core.js"></script>
|
|
|
|
<!-- Test framework -->
|
|
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-1.14.0.css">
|
|
<script src="https://code.jquery.com/qunit/qunit-1.14.0.js"></script>
|
|
|
|
<!-- Test config -->
|
|
<script>
|
|
QUnit.config.requireExpects = true;
|
|
</script>
|
|
|
|
<!-- Test Suite -->
|
|
<script src="jquery.uls.test.js"></script>
|
|
|
|
</head>
|
|
<body>
|
|
<div id="qunit"></div>
|
|
<div id="qunit-fixture"></div>
|
|
</body>
|
|
</html>
|
|
|