diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-backgrounds/reference/background-image-large-with-auto-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/css-backgrounds/reference/background-image-large-with-auto-ref.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-backgrounds/reference/background-image-large-with-auto-ref.html b/testing/web-platform/tests/css/css-backgrounds/reference/background-image-large-with-auto-ref.html new file mode 100644 index 0000000000..7bad169e3a --- /dev/null +++ b/testing/web-platform/tests/css/css-backgrounds/reference/background-image-large-with-auto-ref.html @@ -0,0 +1,31 @@ +<!DOCTYPE html> +<html> +<head> + <title>CSS Background Test Reference</title> + <link rel="author" title="schenney" href="mailto:schenney@chromium.org"> + <style> + .wide-div { + background-image: url(../support/green-1000x10.png); + background-repeat: no-repeat; + background-size: 10000px 100px; + width: 1000px; + height: 100px; + border: 1px solid black; + } + + .high-div { + background-image: url(../support/green-10x1000.png); + background-repeat: no-repeat; + background-size: 100px 10000px; + width: 100px; + height: 1000px; + border: 1px solid black; + } + </style> +</head> + +<body> + <div class='wide-div'></div> + <div class='high-div'></div> +</body> +</html> |