haikuwebkit/LayoutTests/fast/css-generated-content/table-row-after-no-crash.html

24 lines
481 B
HTML

<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>