layout/reftests/bugs/718521-ref.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/bugs/718521-ref.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,47 @@
     1.4 +<!DOCTYPE html>
     1.5 +<html>
     1.6 +<head>
     1.7 +<title>Rounded rectangle clipping test</title>
     1.8 +<style>
     1.9 +.clipround {
    1.10 +  left:100px;
    1.11 +  top:100px;
    1.12 +  position:absolute;
    1.13 +  width:700px;
    1.14 +  height:380px;
    1.15 +  overflow:hidden;
    1.16 +  border-radius:45px;
    1.17 +}
    1.18 +.greendiv {
    1.19 +  width:300px;
    1.20 +  height:230px;
    1.21 +  background-color:#00ff00;
    1.22 +  position:absolute;
    1.23 +}
    1.24 +#nrcDiv0 {
    1.25 +  left:0px;
    1.26 +  top:0px;
    1.27 +}
    1.28 +#nrcDiv1 {
    1.29 +  left:320px;
    1.30 +  top:0px;
    1.31 +}
    1.32 +#nrcDiv2 {
    1.33 +  left:0px;
    1.34 +  top:240px;
    1.35 +}
    1.36 +</style>
    1.37 +</head>
    1.38 +
    1.39 +<body>
    1.40 +<div class="clipround">
    1.41 +<div id="nrcDiv0" class="greendiv"></div>
    1.42 +</div>
    1.43 +<div class="clipround">
    1.44 +<div id="nrcDiv1" class="greendiv"></div>
    1.45 +</div>
    1.46 +<div class="clipround">
    1.47 +<div id="nrcDiv2" class="greendiv"></div>
    1.48 +</div>
    1.49 +</body>
    1.50 +</html>

mercurial