1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/image-rect/background-with-other-properties-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,50 @@ 1.4 +<!DOCTYPE html> 1.5 +<!-- 1.6 + Any copyright is dedicated to the Public Domain. 1.7 + http://creativecommons.org/licenses/publicdomain/ 1.8 +--> 1.9 +<html> 1.10 + <head> 1.11 + <title>Testcases: -moz-image-rect() [bug 113577]</title> 1.12 + <style> 1.13 + div.wrapper { 1.14 + width: 32px; 1.15 + height: 32px; 1.16 + margin: 10px; 1.17 + background-color: red; 1.18 + } 1.19 + #test1 { 1.20 + width: 32px; 1.21 + height: 32px; 1.22 + background-color: #00ff00; 1.23 + } 1.24 + #test2 { 1.25 + width: 16px; 1.26 + height: 16px; 1.27 + background-color: #00ff00; 1.28 + } 1.29 + #test3 { 1.30 + width: 32px; 1.31 + height: 16px; 1.32 + background-image: url('green-16x16-in-blue-32x32.png'); 1.33 + } 1.34 + #test4 { 1.35 + width: 16px; 1.36 + height: 16px; 1.37 + background-color: #00ff00; 1.38 + } 1.39 + #test5 { 1.40 + width: 32px; 1.41 + height: 32px; 1.42 + background-color: #00ff00; 1.43 + } 1.44 + </style> 1.45 + </head> 1.46 + <body> 1.47 + <div class="wrapper"><div id="test1"></div></div> 1.48 + <div class="wrapper"><div id="test2"></div></div> 1.49 + <div class="wrapper"><div id="test3"></div></div> 1.50 + <div class="wrapper"><div id="test4"></div></div> 1.51 + <div class="wrapper"><div id="test5"></div></div> 1.52 + </body> 1.53 +</html>