diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-08-16 18:12:16 +0200 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-10-17 20:38:16 +0200 |
commit | ae0a63454d6d56789b1a0f7d78a2611040337f72 (patch) | |
tree | b2d3bcffe96351024c30086dc195bf901abea90f /test/html | |
parent | e4fbfd6b62523fabb612aa55e20b568f44910bda (diff) |
Fix img-aspect-ratio-absolute test
Diffstat (limited to 'test/html')
-rw-r--r-- | test/html/render/img-aspect-ratio-absolute.html | 2 | ||||
-rw-r--r-- | test/html/render/img-aspect-ratio-absolute.ref.html | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/test/html/render/img-aspect-ratio-absolute.html b/test/html/render/img-aspect-ratio-absolute.html index 49d07d4b..69f667fe 100644 --- a/test/html/render/img-aspect-ratio-absolute.html +++ b/test/html/render/img-aspect-ratio-absolute.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <html> <head> - <title>Test image aspect ratio</title> + <title>Test image aspect ratio with height larger than viewport</title> <style> body { min-width: 16px; diff --git a/test/html/render/img-aspect-ratio-absolute.ref.html b/test/html/render/img-aspect-ratio-absolute.ref.html index 42f9945d..84ad695e 100644 --- a/test/html/render/img-aspect-ratio-absolute.ref.html +++ b/test/html/render/img-aspect-ratio-absolute.ref.html @@ -1,14 +1,14 @@ <!DOCTYPE html> <html> <head> - <title>Test image aspect ratio</title> + <title>Test image aspect ratio with height larger than viewport</title> <style> body { min-width: 16px; } img { - width:569px; - height:569px; + width:755px; + height:755px; } </style> </head> |