mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
6dacf615c0
unicodejs.js: * charRangeArrayRegexp to write surrogate-aware regexps * private helper functions unicodejs.wordbreak.test.js: * test charRangeArrayRegexp * corrected tests for non-BMP wordbreaks unicodejs.wordbreak.js: * use new surrogate-aware regexps unicodejs.wordbreakproperties.js: * generated from Unicode data unicodejs.graphemebreakproperties.js: * generated from Unicode data unicodejs.wordbreak.groups.js: * delete as no longer used unicodejs-properties.py: * generate unicodejs.wordbreakproperties.js from Unicode data * generate unicodejs.graphemebreakproperties.js from Unicode data index.php: * update script tag links /VisualEditor.php: * update script tag links /demos/ve/index.php: * update script tag links /maintenance/makeStaticLoader.php: * update script tag links Change-Id: I39c0386a85b0cf21d68d3385b84018a5d7648de5
33 lines
760 B
PHP
33 lines
760 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.wordbreakproperties.js"></script>
|
|
<script src="unicodejs.wordbreak.js"></script>
|
|
|
|
<script src="unicodejs.wordbreak.test.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="qunit"></div>
|
|
</body>
|
|
</html>
|