gecko/layout/reftests/first-line/border-not-apply.html
L. David Baron 5859a14a99 Rename -moz-box-shadow to box-shadow: mechanical changes. (Bug 590039) r=bzbarsky a2.0=blocking2.0:beta6
Generated with:
find * -type f -exec sed -i -e 's/\<MozBoxShadow\>/boxShadow/g;s/-moz-box-shadow/box-shadow/gi' {} \;
2010-09-11 09:27:12 -07:00

22 lines
670 B
HTML

<!DOCTYPE HTML>
<title>border should not apply to :first-line (bug 469227)</title>
<style type="text/css">
p::first-line {
/* specify all the properties in nsStyleBorder */
-moz-border-start: medium solid red ! important;
-moz-border-end: medium solid red ! important;
border: medium solid red ! important;
-moz-border-image: none ! important;
-moz-float-edge: content-box ! important;
border-radius: 0 ! important;
-moz-border-top-colors: none ! important;
-moz-border-right-colors: none ! important;
-moz-border-bottom-colors: none ! important;
-moz-border-left-colors: none ! important;
box-shadow: none ! important;
}
</style>
<p>Hello</p>