1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/backgrounds/background-repeat-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,42 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 +<!-- 1.7 +spec: http://dev.w3.org/csswg/css3-background/#the-background-repeat 1.8 +--> 1.9 +<head> 1.10 +<title>background-repeat single value mapping reference</title> 1.11 +<style> 1.12 +div 1.13 +{ 1.14 + width: 128px; 1.15 + height: 128px; 1.16 + background-image: url(aqua-yellow-32x32.png); 1.17 + border: 1px solid black; 1.18 +} 1.19 +#no_repeat 1.20 +{ 1.21 + background-repeat: no-repeat; /* no-repeat no-repeat */ 1.22 +} 1.23 +#repeat 1.24 +{ 1.25 + background-repeat: repeat; /* repeat repeat */ 1.26 +} 1.27 +#repeat_x 1.28 +{ 1.29 + background-repeat: repeat-x; /* repeat no-repeat */ 1.30 +} 1.31 +#repeat_y 1.32 +{ 1.33 + background-repeat: repeat-y; /* no-repeat repeat */ 1.34 +} 1.35 +</style> 1.36 +</head> 1.37 +<body> 1.38 + <div id="no_repeat"></div> 1.39 + <div id="repeat"></div> 1.40 + <div id="repeat_x"></div> 1.41 + <div id="repeat_y"></div> 1.42 +</body> 1.43 +</html> 1.44 + 1.45 +