From 18de4dd75d75f0ba12e077a8b4b707f29f021e11 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Fri, 28 Nov 2014 17:43:14 +0000 Subject: [PATCH] =?UTF-8?q?style::properties::longhand=20shouldn=E2=80=99t?= =?UTF-8?q?=20be=20public.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/style/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/style/lib.rs b/components/style/lib.rs index aa9bc551dd3..e6e0e77f7a5 100644 --- a/components/style/lib.rs +++ b/components/style/lib.rs @@ -46,7 +46,7 @@ pub use properties::{cascade, cascade_anonymous, computed}; pub use properties::{PropertyDeclaration, ComputedValues, computed_values, style_structs}; pub use properties::{PropertyDeclarationBlock, parse_style_attribute}; // Style attributes pub use properties::{CSSFloat, DeclaredValue, PropertyDeclarationParseResult}; -pub use properties::{longhands, Angle, AngleOrCorner, AngleAoc, CornerAoc}; +pub use properties::{Angle, AngleOrCorner, AngleAoc, CornerAoc}; pub use properties::{Left, Right, Bottom, Top}; pub use node::{TElement, TElementAttributes, TNode}; pub use selectors::{PseudoElement, Before, After, SelectorList, parse_selector_list_from_str};