diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
commit | 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch) | |
tree | a31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /layout/reftests/css-break/box-decoration-break-1.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip |
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/css-break/box-decoration-break-1.html')
-rw-r--r-- | layout/reftests/css-break/box-decoration-break-1.html | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/layout/reftests/css-break/box-decoration-break-1.html b/layout/reftests/css-break/box-decoration-break-1.html new file mode 100644 index 0000000000..e0326ccc1f --- /dev/null +++ b/layout/reftests/css-break/box-decoration-break-1.html @@ -0,0 +1,71 @@ +<!DOCTYPE HTML> +<!-- + Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ +--> +<html> +<head> + <title>CSS Test: Testing box-decoration-break:clone</title> + <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=613659"> + <link rel="help" href="http://dev.w3.org/csswg/css-break/#break-decoration"> + <link rel="match" href="box-decoration-break-1-ref.html"> + <meta charset="utf-8"> +<style> + +span { + box-decoration-break:clone; + + line-height:4em; + font-family:monospace; + padding: 3px 5px 7px 11px; + background-color: #0F0; + margin: 13px 17px 19px 23px; + border-left:13px dashed pink; + border-top:7px dashed blue; + border-right:3px dashed black; + border-bottom:1px dashed blue; +} +.o0 { + border-radius: 17px; +} +.o10 { + border-radius: 17px; + margin-left:0; +} +.o10x { + border-radius: 17px; + padding-right:0; +} +.so0 { + border-radius: 0px; +} +.so10 { + border-radius: 0px; + margin-right:0; +} +.so10x { + border-radius: 0px; + padding-left:0; +} +</style> +</head> +<body style="margin:10px"> + +<table border=1 cellpadding=10><tr> +<td><span class="o0"><b> a <br> b <br> c </b></span></td> +<td><span class="o10"><b> a <br> b <br> c </b></span></td> +<td><span class="o10x"><b> a <br> b <br> c </b></span></td> +</tr> +</table> + +<br> + +<table border=1 cellpadding=10><tr> +<td><span class="so0"><b> a <br> b <br> c </b></span><br></td> +<td><span class="so10"><b> a <br> b <br> c </b></span><br></td> +<td><span class="so10x"><b> a <br> b <br> c </b></span><br></td> +</tr> +</table> + +</body> +</html> |