Expose interfaces only where they should be. #12415 - Partial

This commit is contained in:
montrivo 2017-01-29 01:23:28 +01:00
parent cd0a6b98f4
commit d5c6c24d2a
7 changed files with 8 additions and 10 deletions

View file

@ -8,7 +8,7 @@
* Copyright © 2013 W3C® (MIT, ERCIM, Keio, Beihang), All Rights Reserved.
*/
[Exposed=(Window, Worker)]
[Exposed=Window]
interface CSSStyleDeclaration {
[SetterThrows]
attribute DOMString cssText;

View file

@ -4,7 +4,7 @@
// https://w3c.github.io/ServiceWorker/#client
[Pref="dom.serviceworker.enabled", Exposed=(Window,Worker)]
[Pref="dom.serviceworker.enabled", Exposed=ServiceWorker]
interface Client {
readonly attribute USVString url;
readonly attribute FrameType frameType;

View file

@ -4,7 +4,7 @@
//http://dev.w3.org/csswg/cssom/#elementcssinlinestyle
[NoInterfaceObject, Exposed=(Window,Worker)]
[NoInterfaceObject, Exposed=Window]
interface ElementCSSInlineStyle {
[SameObject/*, PutForwards=cssText*/] readonly attribute CSSStyleDeclaration style;
};

View file

@ -3,7 +3,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// https://html.spec.whatwg.org/multipage/#elementcontenteditable
[NoInterfaceObject, Exposed=(Window,Worker)]
[NoInterfaceObject, Exposed=Window]
interface ElementContentEditable {
// attribute DOMString contentEditable;
// readonly attribute boolean isContentEditable;

View file

@ -25,7 +25,7 @@ callback OnBeforeUnloadEventHandlerNonNull = DOMString? (Event event);
typedef OnBeforeUnloadEventHandlerNonNull? OnBeforeUnloadEventHandler;
// https://html.spec.whatwg.org/multipage/#globaleventhandlers
[NoInterfaceObject, Exposed=(Window,Worker)]
[NoInterfaceObject, Exposed=Window]
interface GlobalEventHandlers {
attribute EventHandler onabort;
attribute EventHandler onblur;
@ -95,7 +95,7 @@ partial interface GlobalEventHandlers {
};
// https://html.spec.whatwg.org/multipage/#windoweventhandlers
[NoInterfaceObject, Exposed=(Window,Worker)]
[NoInterfaceObject, Exposed=Window]
interface WindowEventHandlers {
attribute EventHandler onafterprint;
attribute EventHandler onbeforeprint;
@ -115,7 +115,7 @@ interface WindowEventHandlers {
};
// https://html.spec.whatwg.org/multipage/#documentandelementeventhandlers
[NoInterfaceObject, Exposed=(Window,Worker)]
[NoInterfaceObject, Exposed=Window]
interface DocumentAndElementEventHandlers {
attribute EventHandler oncopy;
attribute EventHandler oncut;

View file

@ -3,7 +3,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// http://dev.w3.org/csswg/cssom-view/#the-screen-interface
[Exposed=(Window,Worker)]
[Exposed=Window]
interface Screen {
//readonly attribute double availWidth;
//readonly attribute double availHeight;

View file

@ -9,7 +9,6 @@ importScripts("interfaces.js");
test_interfaces([
"Blob",
"CloseEvent",
"CSSStyleDeclaration",
"DOMMatrix",
"DOMMatrixReadOnly",
"DOMPoint",
@ -38,7 +37,6 @@ test_interfaces([
"ProgressEvent",
"Request",
"Response",
"Screen",
"Storage",
"StorageEvent",
"TextDecoder",