Backed out changeset 142031795f33 (bug 992685) for failing w3 and w4 tests

This commit is contained in:
Carsten "Tomcat" Book 2015-01-20 11:21:51 +01:00
parent 7cb1a027a7
commit 4d2773b297
2 changed files with 6 additions and 5 deletions

View File

@ -458,10 +458,6 @@ FORWARDED_EVENT(load,
NS_LOAD,
EventNameType_All,
eBasicEventClass)
FORWARDED_EVENT(resize,
NS_RESIZE_EVENT,
EventNameType_All,
eBasicEventClass)
FORWARDED_EVENT(scroll,
NS_SCROLL_EVENT,
(EventNameType_HTMLXUL | EventNameType_SVGSVG),
@ -516,6 +512,11 @@ WINDOW_EVENT(popstate,
eBasicEventClass)
// Not supported yet
// WINDOW_EVENT(redo)
WINDOW_EVENT(resize,
NS_RESIZE_EVENT,
(EventNameType_XUL | EventNameType_SVGSVG |
EventNameType_HTMLBodyOrFramesetOnly),
eBasicEventClass)
// Not supported yet
// WINDOW_EVENT(storage)
// Not supported yet

View File

@ -75,7 +75,6 @@ interface GlobalEventHandlers {
attribute EventHandler onprogress;
attribute EventHandler onratechange;
attribute EventHandler onreset;
attribute EventHandler onresize;
attribute EventHandler onscroll;
attribute EventHandler onseeked;
attribute EventHandler onseeking;
@ -131,6 +130,7 @@ interface WindowEventHandlers {
attribute EventHandler onpagehide;
attribute EventHandler onpageshow;
attribute EventHandler onpopstate;
attribute EventHandler onresize;
//(Not implemented)attribute EventHandler onstorage;
attribute EventHandler onunload;
};