mirror of
https://github.com/servo/servo.git
synced 2025-08-07 14:35: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,
|
MozDefaultColor,
|
||||||
MozDefaultBackgroundColor,
|
MozDefaultBackgroundColor,
|
||||||
MozHyperlinktext,
|
MozHyperlinktext,
|
||||||
MozActiveHyperlinktext,
|
MozActivehyperlinktext,
|
||||||
MozVisitedHyperlinktext,
|
MozVisitedhyperlinktext,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -368,8 +368,8 @@ impl Color {
|
||||||
Keyword::MozDefaultColor => pres_context.mDefaultColor,
|
Keyword::MozDefaultColor => pres_context.mDefaultColor,
|
||||||
Keyword::MozDefaultBackgroundColor => pres_context.mBackgroundColor,
|
Keyword::MozDefaultBackgroundColor => pres_context.mBackgroundColor,
|
||||||
Keyword::MozHyperlinktext => pres_context.mLinkColor,
|
Keyword::MozHyperlinktext => pres_context.mLinkColor,
|
||||||
Keyword::MozActiveHyperlinktext => pres_context.mActiveLinkColor,
|
Keyword::MozActivehyperlinktext => pres_context.mActiveLinkColor,
|
||||||
Keyword::MozVisitedHyperlinktext => pres_context.mVisitedLinkColor,
|
Keyword::MozVisitedhyperlinktext => pres_context.mVisitedLinkColor,
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue