1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/border-radius/clipping-3.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,27 @@ 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 blue; 1.10 + position: fixed; 1.11 + background: blue; 1.12 + left: 50px; 1.13 + top: 50px; 1.14 +} 1.15 + 1.16 +.div2 { width: 50px; height: 50px; 1.17 + border: 10px solid red; 1.18 + position: fixed; 1.19 + background: red; 1.20 + left: 80px; 1.21 + top: 80px; 1.22 + border-radius: 10px; 1.23 +} 1.24 + 1.25 +</style> 1.26 +</head> 1.27 +<body> 1.28 + <div class="div1"/> 1.29 + <div class="div2"/> 1.30 +</body></html>