diff options
Diffstat (limited to 'tests/html/inline-block-split-2.html')
-rw-r--r-- | tests/html/inline-block-split-2.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/html/inline-block-split-2.html b/tests/html/inline-block-split-2.html new file mode 100644 index 00000000000..e17ad7d327b --- /dev/null +++ b/tests/html/inline-block-split-2.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html> +<head> +<title>Anonymous text interrupted by a block</title> +<style> +body { display: block } +p { display: inline } +span { display: block } +</style> +</head> +<body> +<p> +This is anonymous text before the SPAN. +<span>This is the content of SPAN.</span> +This is anonymous text after the SPAN. +</p> +</p> +</body> +</html> + |