diff options
Diffstat (limited to 'layout/reftests/backgrounds/background-size-contain-clip-padding.html')
-rw-r--r-- | layout/reftests/backgrounds/background-size-contain-clip-padding.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/layout/reftests/backgrounds/background-size-contain-clip-padding.html b/layout/reftests/backgrounds/background-size-contain-clip-padding.html new file mode 100644 index 000000000..d04f1642b --- /dev/null +++ b/layout/reftests/backgrounds/background-size-contain-clip-padding.html @@ -0,0 +1,27 @@ +<!DOCTYPE html> +<html> +<head> + <title>background-size: contain; background-clip: padding-box</title> + <style type="text/css"> +#outer +{ + border: 1px solid black; + width: 64px; + height: 128px; +} +#inner +{ + border: 20px solid transparent; + width: 24px; + height: 88px; + background-image: url(aqua-32x32.png); + background-repeat: no-repeat; + background-size: contain; + background-clip: padding-box; +} + </style> +</head> +<body> +<div id="outer"><div id="inner"></div></div> +</body> +</html> |