diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /layout/reftests/outline/outline-wrapped-span-1-ref.html | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/outline/outline-wrapped-span-1-ref.html | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/layout/reftests/outline/outline-wrapped-span-1-ref.html b/layout/reftests/outline/outline-wrapped-span-1-ref.html new file mode 100644 index 0000000000..564f136e3b --- /dev/null +++ b/layout/reftests/outline/outline-wrapped-span-1-ref.html @@ -0,0 +1,54 @@ +<!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; +} +.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<br>link</a>⁠...? +</div> +<div class="test2"> +Is the red outline correct on <a href=".">this<br>link</a>⁠...? +</div> +<div class="test3"> +Is the red outline correct on <a href=".">this<br>link</a>⁠...? +</div> +<div class="test4"> +Is the red outline correct on <a href=".">this<br>link</a>⁠...? +</div> +<div class="test5"> +Is the red outline correct on <a href=".">this<br>link</a>⁠...? +</div> +<div class="test6"> +Is the red outline correct on <a href=".">this link</a>⁠...? +</div> |