diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-02-04 16:03:15 +0100 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-02-04 16:03:15 +0100 |
commit | ccd3935de37ff6e9b04c582f8e83159e5ccec54f (patch) | |
tree | 2d2b206a400e696c8b770722a91ae6d4baa3d296 /test/html/render/span-padding.ref.html | |
parent | 9803318b28b5a3ef29987a093c38c5132ada1138 (diff) |
Add span padding HTML render test
Diffstat (limited to 'test/html/render/span-padding.ref.html')
-rw-r--r-- | test/html/render/span-padding.ref.html | 13 |
1 files changed, 13 insertions, 0 deletions
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> |