diff options
author | Jonathan Watt <jwatt@jwatt.org> | 2018-04-25 14:54:26 +0100 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2018-05-05 16:22:52 +0200 |
commit | 12913d048f402c3516a299ac2fab3d66bddcdc6a (patch) | |
tree | 4c303453ff6e4a0200186e6427bff23486fed151 | |
parent | 6ecc7445fc5fc654cbbf4b818b4549699f07d71a (diff) | |
download | servo-12913d048f402c3516a299ac2fab3d66bddcdc6a.tar.gz servo-12913d048f402c3516a299ac2fab3d66bddcdc6a.zip |
style: Remove the 'property_name' macro.
Bug: 1458219
Reviewed-by: xidorn
-rw-r--r-- | components/style/properties/properties.mako.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/components/style/properties/properties.mako.rs b/components/style/properties/properties.mako.rs index a1d2ee9d085..5e3d8eaeaaf 100644 --- a/components/style/properties/properties.mako.rs +++ b/components/style/properties/properties.mako.rs @@ -56,12 +56,6 @@ use style_adjuster::StyleAdjuster; pub use self::declaration_block::*; -#[cfg(feature = "gecko")] -#[macro_export] -macro_rules! property_name { - ($s: tt) => { atom!($s) } -} - <%! from data import Method, Keyword, to_rust_ident, to_camel_case, SYSTEM_FONT_LONGHANDS import os.path |