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 pathtest20.html
60 lines (59 loc) · 1.75 KB
/
test20.html
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
58
59
60
<!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 20</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;
}
#ref {
background-color: #d6ffd6;
}
table {
width:100%;
border: 1px solid #555555;
border-collapse:collapse
}
th {
text-align:left;
}
tr {
text-align:left;
border: 1px solid #555555;
}
td {border: 1px solid #555555;}
</style>
<script type="text/javascript">
window.onload = function () {
if (parent != window) {
var desc = document.getElementById('desc').innerHTML,
msg = {
desc: desc,
index: 20,
result: 'visual'
};
parent.postMessage(JSON.stringify(msg), window.location.href);
}
};
</script>
</head>
<body>
<p><a href="index.html"><<- index</a> | <a href="test19.html"><- Prev</a> | <a href="test21.html">Next -></a></p>
<h1>Test 20</h1>
<p id="desc">Checks if a <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=418975">Bug in Firefox 3</a> is still here.</p>
<table>
<tr>
<td>Do­nau­dampf­schiff­fahrts­ka­pi­tän ist ein langes Wort.</td>
<td>Das Wort Do­nau­dampf­schiff­fahrt ist ziem­lich lang.</td>
<td>Das Wort Do­nau­dampf­schiff­fahrt ist ziem­lich lang.</td>
</tr>
</table>
</body>
</html>