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/outline/outline-wrapped-span-1.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/outline/outline-wrapped-span-1.html')
-rw-r--r-- | layout/reftests/outline/outline-wrapped-span-1.html | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/layout/reftests/outline/outline-wrapped-span-1.html b/layout/reftests/outline/outline-wrapped-span-1.html new file mode 100644 index 0000000000..393a6352bf --- /dev/null +++ b/layout/reftests/outline/outline-wrapped-span-1.html @@ -0,0 +1,57 @@ +<!DOCTYPE html> +<html> +<meta charset="utf-8"> + +<style> +html { + font-family: monospace; + font-size: 16px; +} +div { + margin: 1em; +} +a { + outline: 1px solid red; + background: #dddddd; +} +a::after { + content: '\2060'; +} +.test1 { + width: 19ch; +} +.test2 { + width: 20ch; +} +.test3 { + width: 21ch; +} +.test4 { + width: 22ch; +} +.test5 { + width: 23ch; +} +.test6 { + width: 24ch; +} +</style> + +<div class="test1"> +Is the red outline correct on <a href=".">this link</a>...? +</div> +<div class="test2"> +Is the red outline correct on <a href=".">this link</a>...? +</div> +<div class="test3"> +Is the red outline correct on <a href=".">this link</a>...? +</div> +<div class="test4"> +Is the red outline correct on <a href=".">this link</a>...? +</div> +<div class="test5"> +Is the red outline correct on <a href=".">this link</a>...? +</div> +<div class="test6"> +Is the red outline correct on <a href=".">this link</a>...? +</div> |