diff options
Diffstat (limited to 'test/html/render/img-aspect-ratio-absolute.html')
-rw-r--r-- | test/html/render/img-aspect-ratio-absolute.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/html/render/img-aspect-ratio-absolute.html b/test/html/render/img-aspect-ratio-absolute.html new file mode 100644 index 00000000..49d07d4b --- /dev/null +++ b/test/html/render/img-aspect-ratio-absolute.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<html> + <head> + <title>Test image aspect ratio</title> + <style> + body { + min-width: 16px; + } + img { + width:100%; + height:100%; + } + </style> + </head> + <body> + <img src="pic.png"> + </body> +</html> |