diff options
author | Patrick Ngai <clpngai@gmail.com> | 2019-02-24 23:58:51 +0800 |
---|---|---|
committer | Patrick Ngai <clpngai@gmail.com> | 2019-02-28 21:03:03 +0800 |
commit | fcadff7bad42c3562a761e2ec6300a33c0fa7666 (patch) | |
tree | 7ab4e57ca5f35a828814129f41b954557a1f4ef3 /components/script/dom/webidls | |
parent | 427003210b3e16a82f958e35ff4212f26ffa35ab (diff) | |
download | servo-fcadff7bad42c3562a761e2ec6300a33c0fa7666.tar.gz servo-fcadff7bad42c3562a761e2ec6300a33c0fa7666.zip |
Implement historical returnValue attribute for Event interface
Diffstat (limited to 'components/script/dom/webidls')
-rw-r--r-- | components/script/dom/webidls/Event.webidl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/dom/webidls/Event.webidl b/components/script/dom/webidls/Event.webidl index 9aea7e38e75..e579bab8d89 100644 --- a/components/script/dom/webidls/Event.webidl +++ b/components/script/dom/webidls/Event.webidl @@ -26,6 +26,7 @@ interface Event { readonly attribute boolean bubbles; [Pure] readonly attribute boolean cancelable; + attribute boolean returnValue; // historical void preventDefault(); [Pure] readonly attribute boolean defaultPrevented; |