https://github.com/mozilla/gecko-dev
Raw File
Tip revision: b92fb6393e220b49e6b19aee53f904122d6d5fe7 authored by seabld on 21 November 2011, 10:07:26 UTC
Added tag SEAMONKEY_2_5_RELEASE for changeset FIREFOX_8_0_1_BUILD2. CLOSED TREE a=release
Tip revision: b92fb63
border-not-apply.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>
back to top