mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
4988efd35e
Initially just with a Wordbreak module to implement Unicode standard on 'Default Word Boundaries'. Due to it's standaloneability this has been written as a separate library. Non-BMP characters are currently not supported. Bug: 44085 Change-Id: Ieafa070076f4c36855684f6bc179667e28af2c25
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>
|