diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2014-11-26 10:46:45 +0530 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2014-12-05 18:34:51 -0800 |
commit | a2f7e0fbd6f13b8bd8a2e3925c7e1e76f6968879 (patch) | |
tree | 15f495cd74b9e154271acf7af1823722d2fb5497 /components/script/dom/htmlelement.rs | |
parent | 6482e313d646e25368548eb734a8ed49a4dfcee7 (diff) | |
download | servo-a2f7e0fbd6f13b8bd8a2e3925c7e1e76f6968879.tar.gz servo-a2f7e0fbd6f13b8bd8a2e3925c7e1e76f6968879.zip |
Address review comments
Diffstat (limited to 'components/script/dom/htmlelement.rs')
-rw-r--r-- | components/script/dom/htmlelement.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/dom/htmlelement.rs b/components/script/dom/htmlelement.rs index 728f0ee573d..7467ea56fdf 100644 --- a/components/script/dom/htmlelement.rs +++ b/components/script/dom/htmlelement.rs @@ -101,6 +101,7 @@ impl<'a> HTMLElementMethods for JSRef<'a, HTMLElement> { _ => () } let element: JSRef<Element> = ElementCast::from_ref(self); + // https://www.w3.org/Bugs/Public/show_bug.cgi?id=27430 ? element.as_maybe_activatable().map(|a| a.synthetic_click_activation(false, false, false, false)); } } |