1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/image-element/element-paint-paintserversize-rounding-01-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,31 @@ 1.4 +<!-- 1.5 + Any copyright is dedicated to the Public Domain. 1.6 + http://creativecommons.org/licenses/publicdomain/ 1.7 + 1.8 + The green square should always be rendered at 100px. 1.9 +--> 1.10 +<!DOCTYPE html> 1.11 +<html> 1.12 +<head> 1.13 +<style> 1.14 +body > div { 1.15 + width: 200px; 1.16 + height: 200px; 1.17 + float: left; 1.18 +} 1.19 + 1.20 +body > div > div { 1.21 + width: 100px; 1.22 + height: 100px; 1.23 + background: lime; 1.24 +} 1.25 +</style> 1.26 +</head> 1.27 +<body style="margin:0"> 1.28 +<div><div></div></div> 1.29 +<div><div></div></div> 1.30 +<div><div></div></div> 1.31 +<div><div></div></div> 1.32 +<div><div></div></div> 1.33 +</body> 1.34 +</html>