2013-03-18 11:31:14 +00:00
|
|
|
<!--
|
|
|
|
/**
|
|
|
|
* UnicodeJS tests
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @copyright 2013 UnicodeJS team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
-->
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>UnicodeJS Tests</title>
|
|
|
|
|
2013-07-16 22:45:11 +00:00
|
|
|
<!-- Test framework -->
|
2013-03-18 11:31:14 +00:00
|
|
|
<link rel="stylesheet" href="../qunit/qunit.css">
|
|
|
|
<script src="../qunit/qunit.js"></script>
|
|
|
|
|
2013-07-16 22:45:11 +00:00
|
|
|
<!-- Code Dependencies -->
|
2013-03-18 11:31:14 +00:00
|
|
|
<script src="../jquery/jquery.js"></script>
|
2013-07-16 22:45:11 +00:00
|
|
|
|
|
|
|
<!-- Code -->
|
2013-03-18 11:31:14 +00:00
|
|
|
<script src="unicodejs.js"></script>
|
|
|
|
<script src="unicodejs.textstring.js"></script>
|
2013-06-15 12:52:08 +00:00
|
|
|
<script src="unicodejs.graphemebreakproperties.js"></script>
|
|
|
|
<script src="unicodejs.graphemebreak.js"></script>
|
2013-06-07 01:30:44 +00:00
|
|
|
<script src="unicodejs.wordbreakproperties.js"></script>
|
2013-03-18 11:31:14 +00:00
|
|
|
<script src="unicodejs.wordbreak.js"></script>
|
|
|
|
|
2013-07-16 22:45:11 +00:00
|
|
|
<!-- Code Tests (also update VisualEditorHooks::onResourceLoaderTestModules) -->
|
2013-07-05 12:15:08 +00:00
|
|
|
<script src="test/unicodejs.test.js"></script>
|
|
|
|
<script src="test/unicodejs.graphemebreak.test.js"></script>
|
|
|
|
<script src="test/unicodejs.wordbreak.test.js"></script>
|
2013-03-18 11:31:14 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="qunit"></div>
|
|
|
|
</body>
|
|
|
|
</html>
|