diff options
Diffstat (limited to 'test/html/render/max-width-div-clamp.html')
-rw-r--r-- | test/html/render/max-width-div-clamp.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/html/render/max-width-div-clamp.html b/test/html/render/max-width-div-clamp.html new file mode 100644 index 00000000..b4f4bfe1 --- /dev/null +++ b/test/html/render/max-width-div-clamp.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> + <head> + <title>Test max-width CSS properties</title> + <style> + body {margin: 20px} + .test {max-width: 1000px; height: 100px; background: lightgreen} + </style> + </head> + <body> + <div class="test"> + </div> + </body> +</html> |