diff --git a/components/script/dom/eventtarget.rs b/components/script/dom/eventtarget.rs index dc448b65501..ea259a6d2d7 100644 --- a/components/script/dom/eventtarget.rs +++ b/components/script/dom/eventtarget.rs @@ -231,7 +231,7 @@ impl CompiledEventListener { let should_cancel = value.is_boolean() && value.to_boolean() == false; if should_cancel { - // spec says to set the cancelled flag directly + // FIXME: spec says to set the cancelled flag directly // here, not just to prevent default; // can that ever make a difference? event.PreventDefault();