diff options
Diffstat (limited to 'sc/qa/uitest/data/tdf74577.html')
-rw-r--r-- | sc/qa/uitest/data/tdf74577.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/sc/qa/uitest/data/tdf74577.html b/sc/qa/uitest/data/tdf74577.html new file mode 100644 index 000000000..26ee54108 --- /dev/null +++ b/sc/qa/uitest/data/tdf74577.html @@ -0,0 +1,35 @@ +<!DOCTYPE html> +<html> +<head> + <title>Table</title> +</head> +<body> + + <table border=1 width="90%"> + <tr> + <td>Cell1</td> + <td colspan="2">Cell2 + 3</td> + </tr> + <tr> + <td>Cell1</td> + <td>Cell2</td> + <td>Cell3</td> + </tr> + <tr> + <td colspan="2"> Cell1 + Cell2</td> + <td>Cell3</td> + </tr> + <tr> + <td colspan="3"> Cell1 + Cell2 + Cell3</td> + </tr> + <tr> + <td rowspan="2">Cell1 + Cell2</td> + <td colspan="2"> Cell2 + Cell3</td> + </tr> + <tr> + <td>Cell2</td> + <td>Cell3</td> + </tr> + </table> +</body> +</html> |