layout/reftests/abs-pos/button-1.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/abs-pos/button-1.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,30 @@
     1.4 +<!doctype html>
     1.5 +<html>
     1.6 +<head>
     1.7 +<style>
     1.8 +button {
     1.9 +position:relative;
    1.10 +left:0px;
    1.11 +top:0px;
    1.12 +width:
    1.13 +200px;
    1.14 +height:100px;
    1.15 +border:none;
    1.16 +background:#00ff00;
    1.17 +-moz-appearance: none;
    1.18 +border-radius: 0 !important;
    1.19 +}
    1.20 +div {
    1.21 +position:absolute;
    1.22 +left:0px;
    1.23 +top:0px;
    1.24 +width:50px;
    1.25 +height:50px;
    1.26 +background:#ff0000;
    1.27 +}
    1.28 +</style>
    1.29 +</head>
    1.30 +<body>
    1.31 +<button><div></div></button>
    1.32 +</body>
    1.33 +</html>

mercurial