1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/border-radius/corner-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,18 @@ 1.4 +<!doctype html> 1.5 +<html><head> 1.6 +<title>Corners different</title> 1.7 +<style> 1.8 +.div1 { width: 50px; height: 50px; 1.9 + border: 10px solid black; 1.10 + border-radius: 10px 10px 6px 6px; 1.11 + position: absolute; 1.12 + background: black; 1.13 + left: 50px; 1.14 + top: 50px; 1.15 +} 1.16 + 1.17 +</style> 1.18 +</head> 1.19 +<body> 1.20 + <div class="div1"></div> 1.21 +</body></html>