mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
f4c51b73b2
Generated with: find * -type f -exec sed -i -e 's/\<MozBoxShadow\>/boxShadow/g;s/-moz-box-shadow/box-shadow/gi' {} \;
22 lines
670 B
HTML
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>
|