diff options
Diffstat (limited to 'Tests/LibWeb/Layout/input/table/in-auto-height-flex-item.html')
-rw-r--r-- | Tests/LibWeb/Layout/input/table/in-auto-height-flex-item.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Tests/LibWeb/Layout/input/table/in-auto-height-flex-item.html b/Tests/LibWeb/Layout/input/table/in-auto-height-flex-item.html new file mode 100644 index 0000000000..ebea3c8a39 --- /dev/null +++ b/Tests/LibWeb/Layout/input/table/in-auto-height-flex-item.html @@ -0,0 +1,15 @@ +<!DOCTYPE html><html><head><style> + * { + border: 1px solid black; + font-family: 'SerenitySans'; + } + body { + display: flex; + } + .cell { + display: table-cell; + } + .upper { + background: pink; + } +</style></head><body><div class="upper"><div class="cell">Hello</div>
\ No newline at end of file |