41 lines
1.0 KiB
HTML
41 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>jQuery Migrate Test Suite</title>
|
|
<!-- // Support: IE <= 10 only -->
|
|
<!-- Ensure IE doesn't fall back into oldIE modes -->
|
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
|
|
|
|
<!-- QUnit -->
|
|
<link rel="stylesheet" href="../external/qunit/qunit.css" media="screen">
|
|
<script src="../external/qunit/qunit.js"></script>
|
|
|
|
<!-- A promise polyfill -->
|
|
<script src="../external/npo/npo.js"></script>
|
|
|
|
<!-- Load a jQuery and jquery-migrate plugin file based on URL -->
|
|
<script src="data/testinit.js"></script>
|
|
<script>
|
|
TestManager.loadProject( "jquery", "3.x-git.min" );
|
|
// Close this script tag so file will load
|
|
</script>
|
|
<script>
|
|
jQuery.noConflict();
|
|
TestManager.loadProject( "jquery-migrate", "min", true );
|
|
</script>
|
|
|
|
<!-- Version comparisons -->
|
|
<script src="data/compareVersions.js"></script>
|
|
|
|
<!-- Unit test files -->
|
|
<script>
|
|
TestManager.loadTests();
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="qunit"></div>
|
|
<div id="qunit-fixture"></div>
|
|
</body>
|
|
</html>
|