diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/bugs/413982.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/layout/reftests/bugs/413982.html b/layout/reftests/bugs/413982.html new file mode 100644 index 0000000000..e0502fd0df --- /dev/null +++ b/layout/reftests/bugs/413982.html @@ -0,0 +1,25 @@ +<!DOCTYPE HTML> +<html lang="en"> +<head> + <title>Bug 413982</title> + <style type="text/css"> + div.clearboth { + clear: both; + } + div.floatdiv { + float: left; + } + span.innerspan { + white-space: nowrap; + } + </style> +</head> +<body> + <div class="floatdiv"> + This is + <span class="innerspan"> the first line. + </span> + </div> + <div class="clearboth">This is the second line.</div> +</body> +</html> |