[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / fast / table / row-height-recalc.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2         "http://www.w3.org/TR/html4/strict.dtd">
3 <html>
4 <head>
5 </head>
6 <body>
7 <p>
8     Test for <i><a href="https://bugs.webkit.org/show_bug.cgi?id=9012">http://bugzilla.opendarwin.org/show_bug.cgi?id=9012</a>
9     Row height not updated when cell heights change</i>.
10 </p>
11 <hr>
12 <table cellspacing="0" cellpadding="0">
13     <tr style="background: red;">
14         <td style="width: 50px;"></td>
15         <td style="width: 50px; height: 50px; background: green;" id="t"></td>
16     </tr>
17     <tr style="background: green;">
18         <td style="height: 100px;" colspan="2"></td>
19     </tr>
20 </table>
21 <script type="text/javascript">
22     document.getElementById("t").style.height='0';
23 </script>
24 </body>
25 </html>