diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /layout/reftests/css-calc/line-height-1.html | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/css-calc/line-height-1.html | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/layout/reftests/css-calc/line-height-1.html b/layout/reftests/css-calc/line-height-1.html new file mode 100644 index 0000000000..f586d0dbfb --- /dev/null +++ b/layout/reftests/css-calc/line-height-1.html @@ -0,0 +1,62 @@ +<!DOCTYPE html> +<style> +div { + width:100px; + height:600px; + margin:5px 0 0 5px; + font-size: 30px; + float:left; +} +div#one { + line-height: calc(300%); +} +div#two { + line-height: calc(100px); +} +div#three { + line-height: calc(20px + 300%); +} +div#four { + line-height: calc(10px * 2); +} +div#five { + line-height: calc(50% - 3px); +} +div#six { + line-height: calc(25% - 3px + 25%); +} +div#seven { + line-height: calc(25% - 3px + 12.5% * 2); +} +div#eight { + line-height: calc(25% - 3px + 12.5%*2); +} +div#nine { + line-height: calc(25% - 3px + 2 * 12.5%); +} +div#nine { + line-height: calc(25% - 3px + 2*12.5%); +} +div#ten { + line-height: calc(25% - 3px + 2 * 12.5%); +} +div#div-11 { + line-height: calc(30% + 20%); +} +div#div-12 { + line-height: calc(3 * 2 + 3 / 6); +} +</style> +<div id="one">line height is 300%</div> +<div id="two">line height is 100px</div> +<div id="three">line height is 50px</div> +<div id="four">line height is 10px * 2</div> +<div id="five">line height is 50% - 3px</div> +<div id="six">line height is 25% - 3px + 25%</div> +<div id="seven">line height is 25% - 3px + 12.5% * 2</div> +<div id="eight">line height is 25% - 3px + 12.5%*2</div> +<div id="nine">line height is 25% - 3px + 2*12.5%</div> +<div id="ten">line height is 25% - 3px + 2 * 12.5%</div> +<div id="div-11">line height is 30% + 20%</div> +<div id="div-12">line height is 3 * 2 + 3 / 6</div> +</html> |