blob: 4e0d80ab5c46c5237f008fb4acac4edcacc993ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<html>
<head>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
<style>
body :after {
content: ".";
}
</style>
</head>
<body>
<p>This test should load without crashing. It checks that generated
content in tables is initialized properly.</p>
<table style="border-collapse: collapse;">
<tr>
<td><input type="text"></td>
<td><input type="submit"></td>
</tr>
</table>
</body>
</html>
|