74 lines
2.7 KiB
HTML
74 lines
2.7 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
|
|
"http://www.w3.org/TR/html4/strict.dtd">
|
|
<html lang="de">
|
|
<head>
|
|
<title>Hyphenator.js – Test 82</title>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<style type="text/css">
|
|
body {
|
|
width:50%;
|
|
margin-left:25%;
|
|
margin-right:25%;
|
|
}
|
|
#test {
|
|
background-color: #ffd6d6;
|
|
}
|
|
#ref1, #ref2 {
|
|
background-color: #d6ffd6;
|
|
}
|
|
</style>
|
|
<script src="../Hyphenator.js" type="text/javascript"></script>
|
|
<script type="text/javascript">
|
|
if (parent != window) {
|
|
Hyphenator.config({
|
|
'onhyphenationdonecallback': function () {
|
|
var t1 = document.getElementById('test').innerHTML,
|
|
r1 = document.getElementById('ref1').innerHTML,
|
|
r2 = document.getElementById('ref2').innerHTML,
|
|
desc = document.getElementById('desc').firstChild.data,
|
|
msg = {
|
|
desc: desc,
|
|
index: 82
|
|
};
|
|
if (Hyphenator.doHyphenation) {
|
|
if (t1 == r1) {
|
|
msg.result = 'passed';
|
|
} else {
|
|
msg.result = 'failed';
|
|
}
|
|
} else {
|
|
if (t1 == r2) {
|
|
msg.result = 'passed';
|
|
} else {
|
|
msg.result = 'failed';
|
|
}
|
|
}
|
|
parent.postMessage(JSON.stringify(msg), window.location.href);
|
|
document.getElementById('HyphenatorToggleBox').onclick();
|
|
if (Hyphenator.doHyphenation) {
|
|
window.location.reload();
|
|
}
|
|
}
|
|
});
|
|
}
|
|
Hyphenator.config({
|
|
hyphenchar:'|',
|
|
safecopy:false,
|
|
storagetype: 'local',
|
|
persistentconfig: true,
|
|
displaytogglebox: true
|
|
});
|
|
Hyphenator.run();
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<p><a href="index.html"><<- index</a> | <a href="test81.html"><- Prev</a> | <a href="test83.html">Next -></a></p>
|
|
<h1>Test 82</h1>
|
|
<p id="desc">Use persistentConfig. Reload the page to see sticky confguration.</p>
|
|
|
|
<p id="test" class="hyphenate">«Wunderschönen guten Tag allerseits», rief Caspar fröhlich in den Raum hinein. Sein Vater aber grummelte: «Himmelherrgott, so viele Leute hatte ich nicht erwartet!»</p>
|
|
<p id="ref1">«Wun|der|schö|nen guten Tag al|ler|seits», rief Cas|par fröh|lich in den Raum hin|ein. Sein Vater aber grum|mel|te: «Him|mel|herr|gott, so viele Leute hatte ich nicht er|war|tet!»</p>
|
|
<p id="ref2">«Wunderschönen guten Tag allerseits», rief Caspar fröhlich in den Raum hinein. Sein Vater aber grummelte: «Himmelherrgott, so viele Leute hatte ich nicht erwartet!»</p>
|
|
|
|
</body>
|
|
</html> |