Auto merge of #19473 - servo:error-message, r=aethanyc

geckolib: Fix typo in CSS parser error message name.

<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/19473)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2017-12-05 00:54:12 -06:00 committed by GitHub
commit 005fd9cfa8

View file

@ -256,7 +256,7 @@ impl<'a> ErrorHelpers<'a> for ContextualParseError<'a> {
ContextualParseError::UnsupportedPropertyDeclaration(..) => ContextualParseError::UnsupportedPropertyDeclaration(..) =>
(b"PEUnknownProperty\0", Action::Drop), (b"PEUnknownProperty\0", Action::Drop),
ContextualParseError::UnsupportedFontFaceDescriptor(..) => ContextualParseError::UnsupportedFontFaceDescriptor(..) =>
(b"PEUnknwnFontDesc\0", Action::Skip), (b"PEUnknownFontDesc\0", Action::Skip),
ContextualParseError::InvalidKeyframeRule(..) => ContextualParseError::InvalidKeyframeRule(..) =>
(b"PEKeyframeBadName\0", Action::Nothing), (b"PEKeyframeBadName\0", Action::Nothing),
ContextualParseError::UnsupportedKeyframePropertyDeclaration(..) => ContextualParseError::UnsupportedKeyframePropertyDeclaration(..) =>