1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/border-radius/corner-joins-2-ref.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,36 @@ 1.4 +<?xml version="1.0"?> 1.5 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.6 +<head> 1.7 +<title>border</title> 1.8 +<style type="text/css"> 1.9 + 1.10 +body { 1.11 + filter: url('../filters.svg#NonWhiteToBlack'); 1.12 +} 1.13 + 1.14 +body > div { 1.15 + /* filter doesn't change alpha */ 1.16 + background: white; 1.17 +} 1.18 + 1.19 +div.test { 1.20 + width: 154px; 1.21 + height: 142px; 1.22 + border-radius: 72px; 1.23 + background: black; 1.24 +} 1.25 + 1.26 +</style> 1.27 +</head> 1.28 +<body> 1.29 +<div> 1.30 +<div class="test"></div> 1.31 +</div> 1.32 +<svg xmlns="http://www.w3.org/2000/svg" 1.33 + xmlns:xlink="http://www.w3.org/1999/xlink" 1.34 + version="1.1"> 1.35 + <!-- use an empty g to force filters.svg to load before onload --> 1.36 + <use xlink:href="../filters.svg#empty" /> 1.37 +</svg> 1.38 +</body> 1.39 +</html>