diff options
Diffstat (limited to 'layout/generic/crashtests/1416544.html')
-rw-r--r-- | layout/generic/crashtests/1416544.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/layout/generic/crashtests/1416544.html b/layout/generic/crashtests/1416544.html new file mode 100644 index 0000000000..713568d107 --- /dev/null +++ b/layout/generic/crashtests/1416544.html @@ -0,0 +1,32 @@ +<!DOCTYPE html> +<html> +<head> + <style> + + body { + columns: 2; + -webkit-columns: 2; + } + span { + float: right; + } + + </style> +</head> +<body> + + <div> + a + <span>1</span> + </div> + + <div> + <div> + b + <span>2</span> + <div></div> + </div> + </div> + +</body> +</html> |