mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
style: Fix special color keywords.
They're -moz-activehyperlinktext and -moz-visitedhyperlinktext.
This commit is contained in:
parent
72d09202f4
commit
2192090ea5
1 changed files with 4 additions and 4 deletions
|
@ -52,8 +52,8 @@ mod gecko {
|
|||
MozDefaultColor,
|
||||
MozDefaultBackgroundColor,
|
||||
MozHyperlinktext,
|
||||
MozActiveHyperlinktext,
|
||||
MozVisitedHyperlinktext,
|
||||
MozActivehyperlinktext,
|
||||
MozVisitedhyperlinktext,
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -368,8 +368,8 @@ impl Color {
|
|||
Keyword::MozDefaultColor => pres_context.mDefaultColor,
|
||||
Keyword::MozDefaultBackgroundColor => pres_context.mBackgroundColor,
|
||||
Keyword::MozHyperlinktext => pres_context.mLinkColor,
|
||||
Keyword::MozActiveHyperlinktext => pres_context.mActiveLinkColor,
|
||||
Keyword::MozVisitedHyperlinktext => pres_context.mVisitedLinkColor,
|
||||
Keyword::MozActivehyperlinktext => pres_context.mActiveLinkColor,
|
||||
Keyword::MozVisitedhyperlinktext => pres_context.mVisitedLinkColor,
|
||||
})
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue