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