diff options
Diffstat (limited to 'layout/reftests/backgrounds/background-size-body-contain-no-repeat.html')
-rw-r--r-- | layout/reftests/backgrounds/background-size-body-contain-no-repeat.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/layout/reftests/backgrounds/background-size-body-contain-no-repeat.html b/layout/reftests/backgrounds/background-size-body-contain-no-repeat.html new file mode 100644 index 000000000..0b2ff1fd2 --- /dev/null +++ b/layout/reftests/backgrounds/background-size-body-contain-no-repeat.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html> +<head> + <title>background-size: contain; on body, no-repeat, fixed</title> + <style type="text/css"> +body +{ + background-image: url(aqua-32x32.png); + background-attachment: fixed; + background-repeat: no-repeat; + background-size: contain; +} + </style> +</head> +<body> +</body> +</html> |