Bug 1131751. Drop [NoInterfaceObject] from XMLHttpRequestEventTarget. r=smaug

This commit is contained in:
Boris Zbarsky 2015-02-12 18:39:25 -05:00
parent 40a829791b
commit dccefcef01
4 changed files with 6 additions and 4 deletions

View File

@ -1323,6 +1323,8 @@ var interfaceNamesInGlobalScope =
"XMLDocument",
// IMPORTANT: Do not change this list without review from a DOM peer!
"XMLHttpRequest",
// IMPORTANT: Do not change this list without review from a DOM peer!
"XMLHttpRequestEventTarget",
// IMPORTANT: Do not change this list without review from a DOM peer!
"XMLHttpRequestUpload",
// IMPORTANT: Do not change this list without review from a DOM peer!

View File

@ -10,8 +10,7 @@
* liability, trademark and document use rules apply.
*/
[NoInterfaceObject,
Exposed=(Window,Worker)]
[Exposed=(Window,Worker)]
interface XMLHttpRequestEventTarget : EventTarget {
// event handlers
[SetterThrows=Workers, GetterThrows=Workers]

View File

@ -147,6 +147,8 @@ var interfaceNamesInGlobalScope =
"TextEncoder",
// IMPORTANT: Do not change this list without review from a DOM peer!
"XMLHttpRequest",
// IMPORTANT: Do not change this list without review from a DOM peer!
"XMLHttpRequestEventTarget",
// IMPORTANT: Do not change this list without review from a DOM peer!
"XMLHttpRequestUpload",
// IMPORTANT: Do not change this list without review from a DOM peer!

View File

@ -55,8 +55,7 @@ callback EventHandlerNonNull = any (Event event);
typedef EventHandlerNonNull? EventHandler;
</script>
<script type=text/plain>
[NoInterfaceObject/*,
Exposed=(Window,Worker)*/]
/*[Exposed=(Window,Worker)]*/
interface XMLHttpRequestEventTarget : EventTarget {
// event handlers
attribute EventHandler onloadstart;