diff options
Diffstat (limited to 'test/html/render')
-rw-r--r-- | test/html/render/span-padding.html | 13 | ||||
-rw-r--r-- | test/html/render/span-padding.ref.html | 13 |
2 files changed, 26 insertions, 0 deletions
diff --git a/test/html/render/span-padding.html b/test/html/render/span-padding.html new file mode 100644 index 00000000..15a9ec24 --- /dev/null +++ b/test/html/render/span-padding.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html> + <head> + <title>Test span with padding CSS property</title> + <style> + span {padding-right: 40px; background: lightgreen} + body {margin: 40px} + </style> + </head> + <body> + <span>hi</span> + </body> +</html> diff --git a/test/html/render/span-padding.ref.html b/test/html/render/span-padding.ref.html new file mode 100644 index 00000000..1fc775b7 --- /dev/null +++ b/test/html/render/span-padding.ref.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html> + <head> + <title>Test span with padding CSS property</title> + <style> + div {padding-right: 40px; float:left; background: lightgreen} + body {margin: 40px} + </style> + </head> + <body> + <div>hi</div> + </body> +</html> |