diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-tables/min-height-table-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/css-tables/min-height-table-ref.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-tables/min-height-table-ref.html b/testing/web-platform/tests/css/css-tables/min-height-table-ref.html new file mode 100644 index 0000000000..05533216d2 --- /dev/null +++ b/testing/web-platform/tests/css/css-tables/min-height-table-ref.html @@ -0,0 +1,23 @@ +<!doctype html> +<title>CSS test reference</title> +<style> +td { + padding: 0; +} + +table { + border-spacing: 0; + border: 1px solid black; + background: green; + padding: 5px; +} +div { + width: 300px; + height: 300px; +} +</style> +<table> + <tr> + <td><div></div></td> + </tr> +</table> |