Stop exposing XMLHttpRequestEventTarget on the window object.

This commit is contained in:
Ms2ger 2014-07-12 21:37:53 +02:00
parent 6374fba0f3
commit c5bb7219e2
2 changed files with 2 additions and 3 deletions

View file

@ -13,7 +13,7 @@
* http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0. * http://www.openwebfoundation.org/legal/the-owf-1-0-agreements/owfa-1-0.
*/ */
/* https://github.com/mozilla/servo/issues/1223: [NoInterfaceObject] */ [NoInterfaceObject]
interface XMLHttpRequestEventTarget : EventTarget { interface XMLHttpRequestEventTarget : EventTarget {
// event handlers // event handlers
attribute EventHandler onloadstart; attribute EventHandler onloadstart;
@ -23,4 +23,4 @@ interface XMLHttpRequestEventTarget : EventTarget {
attribute EventHandler onload; attribute EventHandler onload;
attribute EventHandler ontimeout; attribute EventHandler ontimeout;
attribute EventHandler onloadend; attribute EventHandler onloadend;
}; };

View file

@ -156,7 +156,6 @@ var interfaceNamesInGlobalScope = [
"ValidityState", "ValidityState",
"Window", "Window",
"XMLHttpRequest", "XMLHttpRequest",
"XMLHttpRequestEventTarget", // XXX
"XMLHttpRequestUpload", "XMLHttpRequestUpload",
]; ];