| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <title>Table rules attr</title> | 3 <title>Table rules attr</title> |
| 4 <script type="text/javascript"> | 4 <script type="text/javascript"> |
| 5 function runTest() | 5 function runTest() |
| 6 { | 6 { |
| 7 document.getElementById('myTable').rules="cols" | 7 document.getElementById('myTable').rules="cols" |
| 8 document.getElementById('myTable').rules="rows" | 8 document.getElementById('myTable').rules="rows" |
| 9 } | 9 } |
| 10 </script> | 10 </script> |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 <td>Row3 cell1</td> | 24 <td>Row3 cell1</td> |
| 25 <td>Row3 cell2</td> | 25 <td>Row3 cell2</td> |
| 26 </tr> | 26 </tr> |
| 27 </table> | 27 </table> |
| 28 | 28 |
| 29 <p> The rules attribute is first set dynamically to cols, then to rows, so the t
able should show only row borders. Bug 14848. | 29 <p> The rules attribute is first set dynamically to cols, then to rows, so the t
able should show only row borders. Bug 14848. |
| 30 </p> | 30 </p> |
| 31 | 31 |
| 32 </body> | 32 </body> |
| 33 </html> | 33 </html> |
| OLD | NEW |