diff options
Diffstat (limited to 'layout/reftests/text/pre-line-1.html')
-rw-r--r-- | layout/reftests/text/pre-line-1.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/layout/reftests/text/pre-line-1.html b/layout/reftests/text/pre-line-1.html new file mode 100644 index 0000000000..0dfbef12e7 --- /dev/null +++ b/layout/reftests/text/pre-line-1.html @@ -0,0 +1,48 @@ +<!DOCTYPE HTML> +<html> +<head> +<style> +.preline { white-space:pre-line; } +span { background:yellow; } +.float { float:left; background:orange; } +.outer { overflow:auto; margin:1em; } +</style> +</head> +<body> + + + +<!-- Note, in the following tests there are trailing spaces after "is" and on the second + blank line. --> + +<div class="outer"><div class="preline">My name is + + Fred.</div></div> +<div class="outer"><span class="preline">My name is + + Fred.</span></div> + + + + + +<div class="outer"><div class="preline float">My name is + + Fred.</div></div> +<div class="outer"><div class="float"><span class="preline">My name is + + Fred.</span></div></div> + + + + + +<div class="outer"><div style="width:0;"><div class="preline float">My name is + + Fred.</div></div></div> +<div class="outer"><div style="width:0;"><div class="float"><span class="preline">My name is + + Fred.</span></div></div></div> + +</body> +</html> |