diff options
Diffstat (limited to 'test/html/render/min-width-body.html')
-rw-r--r-- | test/html/render/min-width-body.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/html/render/min-width-body.html b/test/html/render/min-width-body.html new file mode 100644 index 00000000..b7652912 --- /dev/null +++ b/test/html/render/min-width-body.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html> + <head> + <title>Test min-width CSS property in the body</title> + <style> + body {min-width: 2000px; margin: 50px} + .test {background: lightgrey} + </style> + </head> + <body> + <div class="test"> + <p>Hello</p> + </div> + </body> +</html> |