diff options
author | Daan Sprenkels <dsprenkels@gmail.com> | 2016-10-30 21:50:57 +0100 |
---|---|---|
committer | Daan Sprenkels <dsprenkels@gmail.com> | 2016-10-31 18:11:37 +0100 |
commit | 66059904b74a4dacbec8393d639d69cfd9011ea7 (patch) | |
tree | fbdff7eaefbe1a5918851b24b37c8cdf50a61874 /components/script/dom/htmliframeelement.rs | |
parent | 179e11ad8d834dbbc4fc14209ce0c9b169085df4 (diff) | |
download | servo-66059904b74a4dacbec8393d639d69cfd9011ea7.tar.gz servo-66059904b74a4dacbec8393d639d69cfd9011ea7.zip |
Remove extra spaces in function calls and declarations
Diffstat (limited to 'components/script/dom/htmliframeelement.rs')
-rw-r--r-- | components/script/dom/htmliframeelement.rs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/components/script/dom/htmliframeelement.rs b/components/script/dom/htmliframeelement.rs index 963f7f83165..5215359df8a 100644 --- a/components/script/dom/htmliframeelement.rs +++ b/components/script/dom/htmliframeelement.rs @@ -416,8 +416,8 @@ pub fn Navigate(iframe: &HTMLIFrameElement, direction: TraversalDirection) -> Er Ok(()) } else { - debug!("this frame is not mozbrowser: mozbrowser attribute missing, or not a top - level window, or mozbrowser preference not set (use --pref dom.mozbrowser.enabled)"); + debug!(concat!("this frame is not mozbrowser: mozbrowser attribute missing, or not a top", + "level window, or mozbrowser preference not set (use --pref dom.mozbrowser.enabled)")); Err(Error::NotSupported) } } @@ -499,8 +499,8 @@ impl HTMLIFrameElementMethods for HTMLIFrameElement { } Ok(()) } else { - debug!("this frame is not mozbrowser: mozbrowser attribute missing, or not a top - level window, or mozbrowser preference not set (use --pref dom.mozbrowser.enabled)"); + debug!(concat!("this frame is not mozbrowser: mozbrowser attribute missing, or not a top", + "level window, or mozbrowser preference not set (use --pref dom.mozbrowser.enabled)")); Err(Error::NotSupported) } } @@ -511,8 +511,8 @@ impl HTMLIFrameElementMethods for HTMLIFrameElement { self.set_visible(visible); Ok(()) } else { - debug!("this frame is not mozbrowser: mozbrowser attribute missing, or not a top - level window, or mozbrowser preference not set (use --pref dom.mozbrowser.enabled)"); + debug!(concat!("this frame is not mozbrowser: mozbrowser attribute missing, or not a top", + "level window, or mozbrowser preference not set (use --pref dom.mozbrowser.enabled)")); Err(Error::NotSupported) } } @@ -522,8 +522,8 @@ impl HTMLIFrameElementMethods for HTMLIFrameElement { if self.Mozbrowser() { Ok(self.visibility.get()) } else { - debug!("this frame is not mozbrowser: mozbrowser attribute missing, or not a top - level window, or mozbrowser preference not set (use --pref dom.mozbrowser.enabled)"); + debug!(concat!("this frame is not mozbrowser: mozbrowser attribute missing, or not a top", + "level window, or mozbrowser preference not set (use --pref dom.mozbrowser.enabled)")); Err(Error::NotSupported) } } |