From 9909816c7689fc59b3b1e13d09504681ec58a875 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Tue, 29 Jan 2019 03:17:24 +0100 Subject: [PATCH] style: sort extern crates and fix servo build. --- components/script/dom/webidls/CSSStyleDeclaration.webidl | 2 ++ components/style/lib.rs | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/components/script/dom/webidls/CSSStyleDeclaration.webidl b/components/script/dom/webidls/CSSStyleDeclaration.webidl index ef75f29501a..1908b908203 100644 --- a/components/script/dom/webidls/CSSStyleDeclaration.webidl +++ b/components/script/dom/webidls/CSSStyleDeclaration.webidl @@ -209,6 +209,8 @@ partial interface CSSStyleDeclaration { [CEReactions, SetterThrows, TreatNullAs=EmptyString] attribute DOMString filter; + [CEReactions, SetterThrows, TreatNullAs=EmptyString] attribute DOMString inset; + [CEReactions, SetterThrows, TreatNullAs=EmptyString] attribute DOMString lineHeight; [CEReactions, SetterThrows, TreatNullAs=EmptyString] attribute DOMString line-height; diff --git a/components/style/lib.rs b/components/style/lib.rs index 4976c787a68..2ea20088ed0 100644 --- a/components/style/lib.rs +++ b/components/style/lib.rs @@ -37,9 +37,9 @@ extern crate crossbeam_channel; #[macro_use] extern crate cssparser; #[macro_use] -extern crate derive_more; -#[macro_use] extern crate debug_unreachable; +#[macro_use] +extern crate derive_more; extern crate euclid; extern crate fallible; extern crate fxhash;