This repository has been archived by the owner on Aug 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathtest63.xhtml
57 lines (56 loc) · 1.81 KB
/
test63.xhtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Hyphenator.js – Test 63</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<style type="text/css">
<![CDATA[
body {
width:50%;
margin-left:25%;
margin-right:25%;
}
#test {
background-color: #ffd6d6;
}
#ref {
background-color: #d6ffd6;
} ]]>
</style>
<script src="../Hyphenator.js" type="text/javascript"></script>
<script type="text/javascript">
<![CDATA[
if (parent != window) {
Hyphenator.config({
'onhyphenationdonecallback': function () {
var t1 = document.getElementById('test').innerHTML,
t2 = document.getElementById('ref').innerHTML,
desc = document.getElementById('desc').firstChild.data,
msg = {
desc: desc,
index: 63
};
if (t1 == t2) {
msg.result = 'passed';
} else {
msg.result = 'failed';
}
parent.postMessage(JSON.stringify(msg), window.location.href);
}
});
}
Hyphenator.config({hyphenchar: '|'});
Hyphenator.run();
]]>
</script>
</head>
<body>
<p><a href="index.html"><<- index</a> | <a href="test62.html"><- Prev</a> | <a href="test64.html">Next -></a></p>
<h1>Test 63</h1>
<p id="desc">Check if hyphenator works in xhtml-files served as application/xhtml+xml</p>
<p id="test" class="hyphenate" lang="en">Hyphenation</p>
<p id="ref">Hy|phen|ation</p>
</body>
</html>