mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 485149 - Add a reftest with inset box-shadow on fieldset.
This commit is contained in:
parent
f6708ce405
commit
e8b10e05c2
95
layout/reftests/box-shadow/fieldset-inset-ref.html
Normal file
95
layout/reftests/box-shadow/fieldset-inset-ref.html
Normal file
@ -0,0 +1,95 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html><head>
|
||||
<meta charset="utf-8">
|
||||
<title>Testcase #2 for bug 485149</title>
|
||||
<style type="text/css">
|
||||
|
||||
html,body {
|
||||
color:black; background-color:white; font-size:16px; padding:0; margin:0;
|
||||
}
|
||||
|
||||
|
||||
body {padding:20px;}
|
||||
|
||||
field {
|
||||
display:block;
|
||||
overflow:hidden;
|
||||
background:yellow;
|
||||
|
||||
box-shadow: inset 0 0 5px 5px #cccccc;
|
||||
border:1px solid #000000;
|
||||
border-radius:7px;
|
||||
width:200px;
|
||||
height:50px;
|
||||
margin-left:5px;
|
||||
margin-right:2px;
|
||||
padding:10px;
|
||||
border-box;
|
||||
}
|
||||
|
||||
.with-legend {
|
||||
margin-top:8px;
|
||||
height:42px;
|
||||
}
|
||||
|
||||
p { height:40px; margin:0; }
|
||||
|
||||
#mask1 {
|
||||
position:absolute;
|
||||
left:0;
|
||||
top:0;
|
||||
background:black;
|
||||
z-index:1;
|
||||
width:150px;
|
||||
height:700px;
|
||||
}
|
||||
|
||||
#mask2 {
|
||||
position:absolute;
|
||||
left:170px;
|
||||
top:330px;
|
||||
background:black;
|
||||
z-index:1;
|
||||
width:150px;
|
||||
height:300px;
|
||||
}
|
||||
|
||||
#mask3 {
|
||||
position:absolute;
|
||||
left:0;
|
||||
top:380px;
|
||||
background:black;
|
||||
z-index:1;
|
||||
width:300px;
|
||||
height:300px;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<field class="with-legend">
|
||||
1
|
||||
</field>
|
||||
|
||||
<p></p>
|
||||
<field class="with-legend" style="position:relative">
|
||||
2
|
||||
</field>
|
||||
|
||||
<p></p>
|
||||
<field>
|
||||
3
|
||||
</field>
|
||||
|
||||
<p></p>
|
||||
<field class="with-legend" style="border-color:transparent">
|
||||
4
|
||||
</field>
|
||||
|
||||
<div id="mask1"></div>
|
||||
<div id="mask2"></div>
|
||||
<div id="mask3"></div>
|
||||
|
||||
</body>
|
||||
</html>
|
90
layout/reftests/box-shadow/fieldset-inset.html
Normal file
90
layout/reftests/box-shadow/fieldset-inset.html
Normal file
@ -0,0 +1,90 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html><head>
|
||||
<meta charset="utf-8">
|
||||
<title>Testcase #2 for bug 485149</title>
|
||||
<style type="text/css">
|
||||
|
||||
html,body {
|
||||
color:black; background-color:white; font-size:16px; padding:0; margin:0;
|
||||
}
|
||||
|
||||
|
||||
body {padding:20px;}
|
||||
|
||||
fieldset {
|
||||
overflow:hidden;
|
||||
background:yellow;
|
||||
|
||||
box-shadow: inset 0 0 5px 5px #cccccc;
|
||||
border:1px solid #000000;
|
||||
border-radius:7px;
|
||||
width:200px;
|
||||
height:50px;
|
||||
margin-left:5px;
|
||||
margin-right:2px;
|
||||
padding:10px;
|
||||
}
|
||||
|
||||
legend { height:16px; }
|
||||
|
||||
p { height:40px; margin:0; }
|
||||
|
||||
#mask1 {
|
||||
position:absolute;
|
||||
left:0;
|
||||
top:0;
|
||||
background:black;
|
||||
z-index:1;
|
||||
width:150px;
|
||||
height:700px;
|
||||
}
|
||||
|
||||
#mask2 {
|
||||
position:absolute;
|
||||
left:170px;
|
||||
top:330px;
|
||||
background:black;
|
||||
z-index:1;
|
||||
width:150px;
|
||||
height:300px;
|
||||
}
|
||||
|
||||
#mask3 {
|
||||
position:absolute;
|
||||
left:0;
|
||||
top:380px;
|
||||
background:black;
|
||||
z-index:1;
|
||||
width:300px;
|
||||
height:300px;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<fieldset><legend>Legend</legend>
|
||||
1
|
||||
</fieldset>
|
||||
|
||||
<p></p>
|
||||
<fieldset style="position:relative;"><legend>Legend</legend>
|
||||
2
|
||||
</fieldset>
|
||||
|
||||
<p></p>
|
||||
<fieldset>
|
||||
3
|
||||
</fieldset>
|
||||
|
||||
<p></p>
|
||||
<fieldset><legend style="width:150px;"></legend>
|
||||
4
|
||||
</fieldset>
|
||||
|
||||
<div id="mask1"></div>
|
||||
<div id="mask2"></div>
|
||||
<div id="mask3"></div>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -28,3 +28,4 @@ random-if(d2d) == boxshadow-threecorners.html boxshadow-threecorners-ref.html
|
||||
fails-if(Android||B2G) == 611574-1.html 611574-1-ref.html
|
||||
fails-if(Android||B2G) == 611574-2.html 611574-2-ref.html
|
||||
fuzzy-if(winWidget,5,30) == fieldset.html fieldset-ref.html # minor anti-aliasing problem on Windows
|
||||
fuzzy-if(winWidget,5,30) == fieldset-inset.html fieldset-inset-ref.html # minor anti-aliasing problem on Windows
|
||||
|
Loading…
Reference in New Issue
Block a user