diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /layout/reftests/css-break/box-decoration-break-bug-1235152-ref.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/css-break/box-decoration-break-bug-1235152-ref.html')
-rw-r--r-- | layout/reftests/css-break/box-decoration-break-bug-1235152-ref.html | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/layout/reftests/css-break/box-decoration-break-bug-1235152-ref.html b/layout/reftests/css-break/box-decoration-break-bug-1235152-ref.html new file mode 100644 index 0000000000..ec53798020 --- /dev/null +++ b/layout/reftests/css-break/box-decoration-break-bug-1235152-ref.html @@ -0,0 +1,57 @@ +<!DOCTYPE HTML> +<html><head> + <meta charset="utf-8"> + <title>Testcase for bug 1235152</title> + <style type="text/css"> +html,body { + color:black; background-color:white; font: 16px monospace; +} + +div { + float: left; + background: #ccc; + clear: both; + padding-left: 10px; +} + +.rtl { + direction: rtl; +} +.pr { + padding-left: 0; + padding-right: 13px; +} +.plr { + padding-right: 13px; +} + +</style> +</head> +<body> + +<div class="rtl"> + <span>לורם איפסום דולור סיט אמט, קונסקטורר אדיפיסינג אלית קונסקטורר</span> +</div> + +<div class="rtl pr"> + <span>לורם איפסום דולור סיט אמט, קונסקטורר אדיפיסינג אלית קונסקטורר</span> +</div> + +<div class="rtl plr"> + <span>לורם איפסום דולור סיט אמט, קונסקטורר אדיפיסינג אלית קונסקטורר</span> +</div> + +<div class="rtl" style="width:190px"> + <span>לורם איפסום דולור סיט אמט, קונסקטורר אדיפיסינג אלית קונסקטורר</span> +</div> + +<div class="rtl pr" style="width:187px"> + <span>לורם איפסום דולור סיט אמט, קונסקטורר אדיפיסינג אלית קונסקטורר</span> +</div> + +<div class="rtl plr" style="width:177px"> + <span>לורם איפסום דולור סיט אמט, קונסקטורר אדיפיסינג אלית קונסקטורר</span> +</div> + +</body> +</html> |