diff options
Diffstat (limited to 'test/html/render/float-img-justify.ref.html')
-rw-r--r-- | test/html/render/float-img-justify.ref.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/html/render/float-img-justify.ref.html b/test/html/render/float-img-justify.ref.html new file mode 100644 index 00000000..26595b4c --- /dev/null +++ b/test/html/render/float-img-justify.ref.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<html> + <head> + <title>Test floating image in paragraph with br</title> + <style> + body {width: 400px} + img {width: 40%; float:right} + p {text-align: justify;} + </style> + </head> + <body> + <i>The text below should be readable:</i> + <p> + <img src="pic.png" /> + This is a rather long text to increase the width. + </p> + </body> +</html> |