1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/border-radius/clipping-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,28 @@ 1.4 +<!doctype html> 1.5 +<html><head> 1.6 +<title>Border clipping</title> 1.7 +<style> 1.8 +.div1 { width: 50px; height: 50px; 1.9 + border: 10px solid black; 1.10 + border-radius: 20px; 1.11 + position: fixed; 1.12 + left: 50px; 1.13 + top: 50px; 1.14 +} 1.15 + 1.16 +.div2 { 1.17 + width: 40px; height: 40px; 1.18 + border: 10px solid black; 1.19 + background: black; 1.20 + border-radius: 10px; 1.21 + position: fixed; 1.22 + left: 55px; 1.23 + top: 55px; 1.24 +} 1.25 + 1.26 +</style> 1.27 +</head> 1.28 +<body> 1.29 + <div class="div1"/> 1.30 + <div class="div2"/> 1.31 +</body></html>