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/text-overflow/theme-overflow-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.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/text-overflow/theme-overflow-ref.html')
-rw-r--r-- | layout/reftests/text-overflow/theme-overflow-ref.html | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/layout/reftests/text-overflow/theme-overflow-ref.html b/layout/reftests/text-overflow/theme-overflow-ref.html new file mode 100644 index 0000000000..be271aa263 --- /dev/null +++ b/layout/reftests/text-overflow/theme-overflow-ref.html @@ -0,0 +1,61 @@ +<!DOCTYPE html> +<html> +<head> + <meta http-equiv="content-type" content="text/html; charset=UTF-8"> + <title>Testcase for bug 669284</title> + + <style type="text/css"> + p { + overflow: hidden; + width: 200px; + } + .r { + direction:rtl; + } + +.x0 { margin:0px;} +.x1 { margin:1px;} +.x2 { margin:2px;} +.x3 { margin:3px;} +.x4 { margin-left:-1px; } +.r .x4 { margin-right:-1px;} + +f { float:left; width:1px; height:1px; margin-left:-100px; } +.r f { float:right; width:1px; height:1px; margin-right:-100px; } + </style> +</head> +<body> +<p> + <input type="checkbox" class="x0"> 0<f></f><br> + <input type="checkbox" class="x1"> 1<f></f><br> + <input type="checkbox" class="x2"> 2<f></f><br> + <input type="checkbox" class="x3"> 3<f></f><br> + <input type="checkbox" class="x4"><f></f><br> +</p> + +<p> + <input type="radio" class="x0"> 0<f></f><br> + <input type="radio" class="x1"> 1<f></f><br> + <input type="radio" class="x2"> 2<f></f><br> + <input type="radio" class="x3"> 3<f></f><br> + <input type="radio" class="x4"><f></f><br> +</p> + +<p class="r"> + <input type="checkbox" class="x0"> 0<f></f><br> + <input type="checkbox" class="x1"> 1<f></f><br> + <input type="checkbox" class="x2"> 2<f></f><br> + <input type="checkbox" class="x3"> 3<f></f><br> + <input type="checkbox" class="x4"><f></f><br> +</p> + +<p class="r"> + <input type="radio" class="x0"> 0<f></f><br> + <input type="radio" class="x1"> 1<f></f><br> + <input type="radio" class="x2"> 2<f></f><br> + <input type="radio" class="x3"> 3<f></f><br> + <input type="radio" class="x4"><f></f><br> +</p> + +</body> +</html> |