diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-tables/table-cell-overflow-explicit-height-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/css-tables/table-cell-overflow-explicit-height-ref.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-tables/table-cell-overflow-explicit-height-ref.html b/testing/web-platform/tests/css/css-tables/table-cell-overflow-explicit-height-ref.html new file mode 100644 index 0000000000..cb64b1f6ce --- /dev/null +++ b/testing/web-platform/tests/css/css-tables/table-cell-overflow-explicit-height-ref.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<style> +td { + border: 2px solid cyan; +} +.tall { + height: 300px; + background: blue; + border: 2px solid black; +} +</style> +<table border> + <td> + <div class="tall"></div> + Can you see this text? + </td> +</table> |