diff options
Diffstat (limited to 'src/components/script/dom')
-rw-r--r-- | src/components/script/dom/htmliframeelement.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/script/dom/htmliframeelement.rs b/src/components/script/dom/htmliframeelement.rs index aecd41f9119..d0bad030a86 100644 --- a/src/components/script/dom/htmliframeelement.rs +++ b/src/components/script/dom/htmliframeelement.rs @@ -116,6 +116,7 @@ impl HTMLIFrameElement { if "sandbox" == name { let mut modes = AllowNothing as u8; for word in value.split_iter(' ') { + // FIXME: Workaround for https://github.com/mozilla/rust/issues/10683 let word_lower = word.to_ascii_lower(); modes |= match word_lower.as_slice() { "allow-same-origin" => AllowSameOrigin, |