mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
Initialize 'cancelable' to false in Event::new_inherited. Fixes #3855.
This commit is contained in:
parent
035ff19e4a
commit
536201e2b5
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ impl Event {
|
|||
phase: Cell::new(PhaseNone),
|
||||
type_: DOMRefCell::new("".to_string()),
|
||||
canceled: Cell::new(false),
|
||||
cancelable: Cell::new(true),
|
||||
cancelable: Cell::new(false),
|
||||
bubbles: Cell::new(false),
|
||||
trusted: Cell::new(false),
|
||||
dispatching: Cell::new(false),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue