diff options
Diffstat (limited to 'components/script/dom/webidls/HTMLFontElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLFontElement.webidl | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/components/script/dom/webidls/HTMLFontElement.webidl b/components/script/dom/webidls/HTMLFontElement.webidl index 74db3f45057..c85a3cdd3f2 100644 --- a/components/script/dom/webidls/HTMLFontElement.webidl +++ b/components/script/dom/webidls/HTMLFontElement.webidl @@ -1,10 +1,16 @@ /* 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/#htmlfontelement +[Exposed=Window] interface HTMLFontElement : HTMLElement { - [TreatNullAs=EmptyString] attribute DOMString color; + [HTMLConstructor] constructor(); + + [CEReactions] + attribute [TreatNullAs=EmptyString] DOMString color; + [CEReactions] attribute DOMString face; + [CEReactions] attribute DOMString size; }; |