diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /layout/reftests/writing-mode/tables/fixed-table-layout-009-vrl.html | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/writing-mode/tables/fixed-table-layout-009-vrl.html | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/layout/reftests/writing-mode/tables/fixed-table-layout-009-vrl.html b/layout/reftests/writing-mode/tables/fixed-table-layout-009-vrl.html new file mode 100644 index 0000000000..639103d158 --- /dev/null +++ b/layout/reftests/writing-mode/tables/fixed-table-layout-009-vrl.html @@ -0,0 +1,46 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<html> + <head> + <title>CSS Test: Cell that overflows a fixed-height table</title> + <link rel="author" title="Microsoft" href="http://www.microsoft.com/"> + <link rel="author" title="Adapted for vertical layout by Simon Montagu" href="http:/mozilla.org/"> + <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#fixed-table-layout"> + <meta name="flags" content=""> + <meta name="assert" content="A cell that overflows the fixed table height uses its 'overflow' property to determine whether to clip the overflow content."> + <style type="text/css"> + div.test { + writing-mode: vertical-rl; + } + div.prose { + writing-mode: horizontal-tb; + width: 180px; + margin: 1em; + } + table + { + table-layout: fixed; + height: 100px; + } + td + { + border: 1px solid blue; + height: 100px; + padding: 0px; + } + #hidden + { + overflow: hidden; + } + </style> + </head> + <body> + <div class="test"> + <table><tr><td id="hidden">FillerTextFillerTextFillerTextFiller</td></tr></table> + <div class="prose">Test passes if the text in the blue rectangle to the left + of this line spills outside of its bottom border and the text + in the blue rectangle to the right of this line is contained + within the rectangle's border (and appears to be cut off on + its bottom edge).</div> + <table><tr><td>FillerTextFillerTextFillerTextFiller</td></tr></table> + </body> +</html> |