summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/table/inline-form-assert.html
blob: 1bb241213d06bcd11e0c4fe5f1f21e5faef146fa (plain)
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
<html>
<head>
    <title></title>
    <style>
        form { display: inline; }
    </style>
</head>
<body>
<script>
if(window.testRunner)
    testRunner.dumpAsText();
</script>
<p>
    Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=12373">http://bugs.webkit.org/show_bug.cgi?id=12373</a>
    ASSERTION FAILURE: !child->needsLayout() on paypal.com</i>.
</p>
<p>
    No assert means test PASSED.
</p>
<table>
<form></form>
</table>

<table>
<tbody>
<form></form>
</tbody>
</table>

<table>
<thead>
<form></form>
</thead>
</table>

<table>
<tfoot>
<form></form>
</tfoot>
</table>

<table>
<tbody>
<tr>
<form></form>
</tr>
</tbody>
</table>

</body>
</html>