diff options
Diffstat (limited to 'layout/reftests/backgrounds/background-size-percent-percent-stretch.html')
-rw-r--r-- | layout/reftests/backgrounds/background-size-percent-percent-stretch.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/layout/reftests/backgrounds/background-size-percent-percent-stretch.html b/layout/reftests/backgrounds/background-size-percent-percent-stretch.html new file mode 100644 index 000000000..912413d69 --- /dev/null +++ b/layout/reftests/backgrounds/background-size-percent-percent-stretch.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html> +<head> + <title>background-size: 100% 100%; stretch</title> + <style type="text/css"> +#outer +{ + border: 10px solid black; + width: 60px; + height: 120px; +} +#inner +{ + width: 60px; + height: 120px; + background-image: url(blue-8x20-green-16x20.png); + background-repeat: no-repeat; + background-size: 100% 100%; +} +#innermost +{ + width: 15px; + height: 120px; + + /* obscure sampling artifacts at the color boundary */ + border-right: 10px solid black; +} + </style> +</head> +<body> +<div id="outer"><div id="inner"><div id="innermost"></div></div></div> +</body> +</html> |