Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css-generated-content / table-row-after-no-crash.html
blob4e0d80ab5c46c5237f008fb4acac4edcacc993ad
1 <html>
2 <head>
3 <script>
4 if (window.testRunner)
5 testRunner.dumpAsText();
6 </script>
7 <style>
8 body :after {
9 content: ".";
11 </style>
12 </head>
13 <body>
14 <p>This test should load without crashing. It checks that generated
15 content in tables is initialized properly.</p>
16 <table style="border-collapse: collapse;">
17 <tr>
18 <td><input type="text"></td>
19 <td><input type="submit"></td>
20 </tr>
21 </table>
22 </body>
23 </html>