mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
33 lines
757 B
PHP
33 lines
757 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.wordbreak.groups.js"></script>
|
||
|
<script src="unicodejs.wordbreak.js"></script>
|
||
|
|
||
|
<script src="unicodejs.wordbreak.test.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="qunit"></div>
|
||
|
</body>
|
||
|
</html>
|