mediawiki-extensions-Visual.../modules/unicodejs/index.php
Ed Sanders 6d999d8504 Separate out UnicodeJS tests properly
Also fix some comment & whitespace inconsistencies.

Change-Id: I71717643678445590820e174e6ed2e5ac58103c2
2013-07-05 14:15:08 +02:00

37 lines
993 B
PHP

<!--
/**
* 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>
<!-- Load test framework -->
<link rel="stylesheet" href="../qunit/qunit.css">
<script src="../qunit/qunit.js"></script>
<!-- Dependencies -->
<script src="../jquery/jquery.js"></script>
<script src="unicodejs.js"></script>
<script src="unicodejs.textstring.js"></script>
<script src="unicodejs.graphemebreakproperties.js"></script>
<script src="unicodejs.graphemebreak.js"></script>
<script src="unicodejs.wordbreakproperties.js"></script>
<script src="unicodejs.wordbreak.js"></script>
<script src="test/unicodejs.test.js"></script>
<script src="test/unicodejs.graphemebreak.test.js"></script>
<script src="test/unicodejs.wordbreak.test.js"></script>
</head>
<body>
<div id="qunit"></div>
</body>
</html>