From d951dee6401f7ff201ccadf0d322aba45275ff42 Mon Sep 17 00:00:00 2001 From: Connor Brewster Date: Wed, 7 Jun 2017 22:53:50 -0600 Subject: Add HTMLConstructor attributes where needed --- components/script/dom/webidls/HTMLMapElement.webidl | 1 + 1 file changed, 1 insertion(+) (limited to 'components/script/dom/webidls/HTMLMapElement.webidl') diff --git a/components/script/dom/webidls/HTMLMapElement.webidl b/components/script/dom/webidls/HTMLMapElement.webidl index 5e21b52916e..60fa8928f18 100644 --- a/components/script/dom/webidls/HTMLMapElement.webidl +++ b/components/script/dom/webidls/HTMLMapElement.webidl @@ -3,6 +3,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ // https://html.spec.whatwg.org/multipage/#htmlmapelement +[HTMLConstructor] interface HTMLMapElement : HTMLElement { // attribute DOMString name; //readonly attribute HTMLCollection areas; -- cgit v1.2.3 From 2460997ee18917bda1cdb68e46b7fd5520c3ade7 Mon Sep 17 00:00:00 2001 From: Connor Brewster Date: Mon, 10 Jul 2017 14:47:03 -0600 Subject: Add CEReactions where needed --- components/script/dom/webidls/HTMLMapElement.webidl | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'components/script/dom/webidls/HTMLMapElement.webidl') diff --git a/components/script/dom/webidls/HTMLMapElement.webidl b/components/script/dom/webidls/HTMLMapElement.webidl index 60fa8928f18..ec5b0dd554a 100644 --- a/components/script/dom/webidls/HTMLMapElement.webidl +++ b/components/script/dom/webidls/HTMLMapElement.webidl @@ -5,7 +5,8 @@ // https://html.spec.whatwg.org/multipage/#htmlmapelement [HTMLConstructor] interface HTMLMapElement : HTMLElement { - // attribute DOMString name; - //readonly attribute HTMLCollection areas; - //readonly attribute HTMLCollection images; + // [CEReactions] + // attribute DOMString name; + // readonly attribute HTMLCollection areas; + // readonly attribute HTMLCollection images; }; -- cgit v1.2.3 From 6b0c111126f94174274b5fd8c9a1c6d3b378f738 Mon Sep 17 00:00:00 2001 From: Jan Andre Ikenmeyer Date: Mon, 19 Nov 2018 14:46:57 +0100 Subject: Update MPL license to https (part 2) --- components/script/dom/webidls/HTMLMapElement.webidl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'components/script/dom/webidls/HTMLMapElement.webidl') diff --git a/components/script/dom/webidls/HTMLMapElement.webidl b/components/script/dom/webidls/HTMLMapElement.webidl index ec5b0dd554a..f138f88c7f9 100644 --- a/components/script/dom/webidls/HTMLMapElement.webidl +++ b/components/script/dom/webidls/HTMLMapElement.webidl @@ -1,6 +1,6 @@ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ // https://html.spec.whatwg.org/multipage/#htmlmapelement [HTMLConstructor] -- cgit v1.2.3 From 2660f359254e7543b7c91d14728b44ac01e438e5 Mon Sep 17 00:00:00 2001 From: Kagami Sascha Rosylight Date: Wed, 2 Oct 2019 18:21:34 +0900 Subject: Remove [PrimaryGlobal] --- components/script/dom/webidls/HTMLMapElement.webidl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'components/script/dom/webidls/HTMLMapElement.webidl') diff --git a/components/script/dom/webidls/HTMLMapElement.webidl b/components/script/dom/webidls/HTMLMapElement.webidl index f138f88c7f9..c3616368551 100644 --- a/components/script/dom/webidls/HTMLMapElement.webidl +++ b/components/script/dom/webidls/HTMLMapElement.webidl @@ -3,7 +3,7 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ // https://html.spec.whatwg.org/multipage/#htmlmapelement -[HTMLConstructor] +[Exposed=Window, HTMLConstructor] interface HTMLMapElement : HTMLElement { // [CEReactions] // attribute DOMString name; -- cgit v1.2.3 From e271edad927c6cfb304e9df8719d7ed5fe0309f9 Mon Sep 17 00:00:00 2001 From: Kagami Sascha Rosylight Date: Sat, 19 Oct 2019 20:26:20 +0900 Subject: Convert [HTMLConstructor] as constructor extension --- components/script/dom/webidls/HTMLMapElement.webidl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'components/script/dom/webidls/HTMLMapElement.webidl') diff --git a/components/script/dom/webidls/HTMLMapElement.webidl b/components/script/dom/webidls/HTMLMapElement.webidl index c3616368551..44c397948fd 100644 --- a/components/script/dom/webidls/HTMLMapElement.webidl +++ b/components/script/dom/webidls/HTMLMapElement.webidl @@ -3,8 +3,10 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ // https://html.spec.whatwg.org/multipage/#htmlmapelement -[Exposed=Window, HTMLConstructor] +[Exposed=Window] interface HTMLMapElement : HTMLElement { + [HTMLConstructor] constructor(); + // [CEReactions] // attribute DOMString name; // readonly attribute HTMLCollection areas; -- cgit v1.2.3