Revert "style: Preserve font-family identifier sequence when serializing."

This reverts commit 4f525f6fa0.
This commit is contained in:
Cameron McCormack 2017-08-05 13:47:21 +08:00
parent ac37f81c1f
commit e163352714
4 changed files with 24 additions and 52 deletions

View file

@ -2181,7 +2181,7 @@ fn static_assert() {
} }
pub fn set_font_family(&mut self, v: longhands::font_family::computed_value::T) { pub fn set_font_family(&mut self, v: longhands::font_family::computed_value::T) {
use properties::longhands::font_family::computed_value::{FontFamily, FamilyNameSyntax}; use properties::longhands::font_family::computed_value::FontFamily;
let list = &mut self.gecko.mFont.fontlist; let list = &mut self.gecko.mFont.fontlist;
unsafe { Gecko_FontFamilyList_Clear(list); } unsafe { Gecko_FontFamilyList_Clear(list); }
@ -2191,8 +2191,7 @@ fn static_assert() {
for family in &v.0 { for family in &v.0 {
match *family { match *family {
FontFamily::FamilyName(ref f) => { FontFamily::FamilyName(ref f) => {
let quoted = matches!(f.syntax, FamilyNameSyntax::Quoted); unsafe { Gecko_FontFamilyList_AppendNamed(list, f.name.as_ptr(), f.quoted); }
unsafe { Gecko_FontFamilyList_AppendNamed(list, f.name.as_ptr(), quoted); }
} }
FontFamily::Generic(ref name) => { FontFamily::Generic(ref name) => {
let (family_type, generic) = FontFamily::generic(name); let (family_type, generic) = FontFamily::generic(name);
@ -2223,7 +2222,7 @@ fn static_assert() {
} }
pub fn clone_font_family(&self) -> longhands::font_family::computed_value::T { pub fn clone_font_family(&self) -> longhands::font_family::computed_value::T {
use properties::longhands::font_family::computed_value::{FontFamily, FamilyName, FamilyNameSyntax}; use properties::longhands::font_family::computed_value::{FontFamily, FamilyName};
use gecko_bindings::structs::FontFamilyType; use gecko_bindings::structs::FontFamilyType;
use gecko_string_cache::Atom; use gecko_string_cache::Atom;
@ -2236,16 +2235,13 @@ fn static_assert() {
FontFamilyType::eFamily_cursive => FontFamily::Generic(atom!("cursive")), FontFamilyType::eFamily_cursive => FontFamily::Generic(atom!("cursive")),
FontFamilyType::eFamily_fantasy => FontFamily::Generic(atom!("fantasy")), FontFamilyType::eFamily_fantasy => FontFamily::Generic(atom!("fantasy")),
FontFamilyType::eFamily_moz_fixed => FontFamily::Generic(Atom::from("-moz-fixed")), FontFamilyType::eFamily_moz_fixed => FontFamily::Generic(Atom::from("-moz-fixed")),
FontFamilyType::eFamily_named => { FontFamilyType::eFamily_named => FontFamily::FamilyName(FamilyName {
let name = Atom::from(&*gecko_font_family_name.mName); name: (&*gecko_font_family_name.mName).into(),
FontFamily::FamilyName(FamilyName { quoted: false
name: name.clone(), }),
syntax: FamilyNameSyntax::Identifiers(vec![name]),
})
},
FontFamilyType::eFamily_named_quoted => FontFamily::FamilyName(FamilyName { FontFamilyType::eFamily_named_quoted => FontFamily::FamilyName(FamilyName {
name: (&*gecko_font_family_name.mName).into(), name: (&*gecko_font_family_name.mName).into(),
syntax: FamilyNameSyntax::Quoted, quoted: true
}), }),
x => panic!("Found unexpected font FontFamilyType: {:?}", x), x => panic!("Found unexpected font FontFamilyType: {:?}", x),
} }

View file

@ -96,14 +96,7 @@ macro_rules! impl_gecko_keyword_conversions {
#[cfg_attr(feature = "servo", derive(HeapSizeOf, Deserialize, Serialize))] #[cfg_attr(feature = "servo", derive(HeapSizeOf, Deserialize, Serialize))]
pub struct FamilyName { pub struct FamilyName {
pub name: Atom, pub name: Atom,
pub syntax: FamilyNameSyntax, pub quoted: bool,
}
#[derive(Debug, PartialEq, Eq, Clone, Hash)]
#[cfg_attr(feature = "servo", derive(HeapSizeOf, Deserialize, Serialize))]
pub enum FamilyNameSyntax {
Quoted,
Identifiers(Vec<Atom>),
} }
impl FontFamily { impl FontFamily {
@ -146,7 +139,7 @@ macro_rules! impl_gecko_keyword_conversions {
// quoted by default. // quoted by default.
FontFamily::FamilyName(FamilyName { FontFamily::FamilyName(FamilyName {
name: input, name: input,
syntax: FamilyNameSyntax::Quoted, quoted: true,
}) })
} }
@ -155,14 +148,10 @@ macro_rules! impl_gecko_keyword_conversions {
if let Ok(value) = input.try(|i| i.expect_string_cloned()) { if let Ok(value) = input.try(|i| i.expect_string_cloned()) {
return Ok(FontFamily::FamilyName(FamilyName { return Ok(FontFamily::FamilyName(FamilyName {
name: Atom::from(&*value), name: Atom::from(&*value),
syntax: FamilyNameSyntax::Quoted, quoted: true,
})) }))
} }
let mut identifiers = vec![];
let first_ident = input.expect_ident()?.clone(); let first_ident = input.expect_ident()?.clone();
identifiers.push(Atom::from(&*first_ident));
// FIXME(bholley): The fast thing to do here would be to look up the // FIXME(bholley): The fast thing to do here would be to look up the
// string (as lowercase) in the static atoms table. We don't have an // string (as lowercase) in the static atoms table. We don't have an
@ -199,16 +188,14 @@ macro_rules! impl_gecko_keyword_conversions {
let ident = input.expect_ident()?; let ident = input.expect_ident()?;
value.push_str(" "); value.push_str(" ");
value.push_str(&ident); value.push_str(&ident);
identifiers.push(Atom::from(&*ident.clone()));
} }
while let Ok(ident) = input.try(|i| i.expect_ident_cloned()) { while let Ok(ident) = input.try(|i| i.expect_ident_cloned()) {
value.push_str(" "); value.push_str(" ");
value.push_str(&ident); value.push_str(&ident);
identifiers.push(Atom::from(&*ident));
} }
Ok(FontFamily::FamilyName(FamilyName { Ok(FontFamily::FamilyName(FamilyName {
name: Atom::from(value), name: Atom::from(value),
syntax: FamilyNameSyntax::Identifiers(identifiers), quoted: false,
})) }))
} }
@ -242,23 +229,12 @@ macro_rules! impl_gecko_keyword_conversions {
impl ToCss for FamilyName { impl ToCss for FamilyName {
fn to_css<W>(&self, dest: &mut W) -> fmt::Result where W: fmt::Write { fn to_css<W>(&self, dest: &mut W) -> fmt::Result where W: fmt::Write {
match self.syntax { if self.quoted {
FamilyNameSyntax::Quoted => { dest.write_char('"')?;
dest.write_char('"')?; write!(CssStringWriter::new(dest), "{}", self.name)?;
write!(CssStringWriter::new(dest), "{}", self.name)?; dest.write_char('"')
dest.write_char('"') } else {
} serialize_identifier(&*self.name.to_string(), dest)
FamilyNameSyntax::Identifiers(ref identifiers) => {
let mut first = true;
for identifier in identifiers {
if !first {
dest.write_char(' ')?;
}
serialize_identifier(&*identifier.to_string(), dest)?;
first = false;
}
Ok(())
}
} }
} }
} }
@ -2532,7 +2508,7 @@ ${helpers.single_keyword("-moz-math-variant",
use properties::longhands::font_family::computed_value::*; use properties::longhands::font_family::computed_value::*;
FontFamily::FamilyName(FamilyName { FontFamily::FamilyName(FamilyName {
name: (&*font.mName).into(), name: (&*font.mName).into(),
syntax: FamilyNameSyntax::Quoted, quoted: true
}) })
}).collect::<Vec<_>>(); }).collect::<Vec<_>>();
let weight = longhands::font_weight::computed_value::T::from_gecko_weight(system.weight); let weight = longhands::font_weight::computed_value::T::from_gecko_weight(system.weight);

View file

@ -5,7 +5,7 @@
use cssparser::SourceLocation; use cssparser::SourceLocation;
use gfx::font_cache_thread::FontCacheThread; use gfx::font_cache_thread::FontCacheThread;
use ipc_channel::ipc; use ipc_channel::ipc;
use style::computed_values::font_family::{FamilyName, FamilyNameSyntax}; use style::computed_values::font_family::FamilyName;
use style::font_face::{FontFaceRuleData, Source}; use style::font_face::{FontFaceRuleData, Source};
#[test] #[test]
@ -15,11 +15,11 @@ fn test_local_web_font() {
let font_cache_thread = FontCacheThread::new(inp_chan, None); let font_cache_thread = FontCacheThread::new(inp_chan, None);
let family_name = FamilyName { let family_name = FamilyName {
name: From::from("test family"), name: From::from("test family"),
syntax: FamilyNameSyntax::Quoted, quoted: true,
}; };
let variant_name = FamilyName { let variant_name = FamilyName {
name: From::from("test font face"), name: From::from("test font face"),
syntax: FamilyNameSyntax::Quoted, quoted: true,
}; };
let font_face_rule = FontFaceRuleData { let font_face_rule = FontFaceRuleData {
family: Some(family_name.clone()), family: Some(family_name.clone()),

View file

@ -14,7 +14,7 @@ use servo_url::ServoUrl;
use std::borrow::ToOwned; use std::borrow::ToOwned;
use std::sync::Mutex; use std::sync::Mutex;
use std::sync::atomic::AtomicBool; use std::sync::atomic::AtomicBool;
use style::computed_values::font_family::{FamilyName, FamilyNameSyntax}; use style::computed_values::font_family::FamilyName;
use style::context::QuirksMode; use style::context::QuirksMode;
use style::error_reporting::{ParseErrorReporter, ContextualParseError}; use style::error_reporting::{ParseErrorReporter, ContextualParseError};
use style::media_queries::MediaList; use style::media_queries::MediaList;
@ -254,7 +254,7 @@ fn test_parse_stylesheet() {
CssRule::FontFeatureValues(Arc::new(stylesheet.shared_lock.wrap(FontFeatureValuesRule { CssRule::FontFeatureValues(Arc::new(stylesheet.shared_lock.wrap(FontFeatureValuesRule {
family_names: vec![FamilyName { family_names: vec![FamilyName {
name: Atom::from("test"), name: Atom::from("test"),
syntax: FamilyNameSyntax::Identifiers(vec![Atom::from("test")]), quoted: false,
}], }],
swash: vec![ swash: vec![
FFVDeclaration { FFVDeclaration {