diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/flexbox_rowspan-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/css-flexbox/flexbox_rowspan-ref.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/flexbox_rowspan-ref.html b/testing/web-platform/tests/css/css-flexbox/flexbox_rowspan-ref.html new file mode 100644 index 0000000000..27598a6874 --- /dev/null +++ b/testing/web-platform/tests/css/css-flexbox/flexbox_rowspan-ref.html @@ -0,0 +1,34 @@ +<!DOCTYPE html> +<title>flexbox | flexcontainers in cells with rowspan</title> +<link rel="author" href="http://opera.com" title="Opera Software"> +<style> +table { + width: 600px; + table-layout: fixed; + border-spacing: 0; +} +td { + background: blue; + padding: 0; +} +div { + background: white; + height: 8em; +} +</style> + +<table> +<tr> +<td rowspan="2"> + <div></div> +</td> +<td> + <div></div> +</td> +</tr> +<tr> +<td> + <div></div> +</td> +</tr> +</table> |