mirror of
https://github.com/servo/servo.git
synced 2025-10-08 12:39:30 +01:00
add FIX comments
This commit is contained in:
parent
a7865495f6
commit
cf537469b1
5 changed files with 11 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue