partial-fix #12415: incorrect exposure of Window,Worker in webidl

* HTMLTemplateElement.webidl
* HTMLTextAreaElement.webidl
* HTMLTimeElement.webidl
* HTMLTitleElement.webidl
* HTMLTrackElement.webidl
* HTMLUnknownElement.webidl
* HTMLUListElement.webidl
* HTMLVideoElement.webidl
This commit is contained in:
Jean SIMARD 2016-07-20 18:54:55 -04:00
parent cdf225c26e
commit 2aed5b9781
No known key found for this signature in database
GPG key ID: 98BD56777D7767B4
9 changed files with 0 additions and 16 deletions

View file

@ -3,7 +3,6 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// https://html.spec.whatwg.org/multipage/#htmltemplateelement // https://html.spec.whatwg.org/multipage/#htmltemplateelement
[Exposed=(Window,Worker)]
interface HTMLTemplateElement : HTMLElement { interface HTMLTemplateElement : HTMLElement {
readonly attribute DocumentFragment content; readonly attribute DocumentFragment content;
}; };

View file

@ -3,7 +3,6 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// https://html.spec.whatwg.org/multipage/#htmltextareaelement // https://html.spec.whatwg.org/multipage/#htmltextareaelement
[Exposed=(Window,Worker)]
interface HTMLTextAreaElement : HTMLElement { interface HTMLTextAreaElement : HTMLElement {
// attribute DOMString autocomplete; // attribute DOMString autocomplete;
// attribute boolean autofocus; // attribute boolean autofocus;

View file

@ -3,7 +3,6 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// https://html.spec.whatwg.org/multipage/#htmltimeelement // https://html.spec.whatwg.org/multipage/#htmltimeelement
[Exposed=(Window,Worker)]
interface HTMLTimeElement : HTMLElement { interface HTMLTimeElement : HTMLElement {
// attribute DOMString dateTime; // attribute DOMString dateTime;
}; };

View file

@ -3,7 +3,6 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// https://html.spec.whatwg.org/multipage/#htmltitleelement // https://html.spec.whatwg.org/multipage/#htmltitleelement
[Exposed=(Window,Worker)]
interface HTMLTitleElement : HTMLElement { interface HTMLTitleElement : HTMLElement {
[Pure] [Pure]
attribute DOMString text; attribute DOMString text;

View file

@ -3,7 +3,6 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// https://html.spec.whatwg.org/multipage/#htmltrackelement // https://html.spec.whatwg.org/multipage/#htmltrackelement
[Exposed=(Window,Worker)]
interface HTMLTrackElement : HTMLElement { interface HTMLTrackElement : HTMLElement {
// attribute DOMString kind; // attribute DOMString kind;
// attribute DOMString src; // attribute DOMString src;

View file

@ -3,7 +3,6 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// https://html.spec.whatwg.org/multipage/#htmlulistelement // https://html.spec.whatwg.org/multipage/#htmlulistelement
[Exposed=(Window,Worker)]
interface HTMLUListElement : HTMLElement { interface HTMLUListElement : HTMLElement {
// also has obsolete members // also has obsolete members
}; };

View file

@ -11,6 +11,5 @@
* and create derivative works of this document. * and create derivative works of this document.
*/ */
[Exposed=(Window,Worker)]
interface HTMLUnknownElement : HTMLElement { interface HTMLUnknownElement : HTMLElement {
}; };

View file

@ -3,7 +3,6 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// https://html.spec.whatwg.org/multipage/#htmlvideoelement // https://html.spec.whatwg.org/multipage/#htmlvideoelement
[Exposed=(Window,Worker)]
interface HTMLVideoElement : HTMLMediaElement { interface HTMLVideoElement : HTMLMediaElement {
// attribute unsigned long width; // attribute unsigned long width;
// attribute unsigned long height; // attribute unsigned long height;

View file

@ -109,14 +109,6 @@ test_interfaces([
"HTMLTableHeaderCellElement", "HTMLTableHeaderCellElement",
"HTMLTableRowElement", "HTMLTableRowElement",
"HTMLTableSectionElement", "HTMLTableSectionElement",
"HTMLTemplateElement",
"HTMLTextAreaElement",
"HTMLTimeElement",
"HTMLTitleElement",
"HTMLTrackElement",
"HTMLUListElement",
"HTMLUnknownElement",
"HTMLVideoElement",
"ImageData", "ImageData",
"Image", "Image",
"KeyboardEvent", "KeyboardEvent",