diff options
Diffstat (limited to 'Source/WebCore/html/HTMLBaseFontElement.idl')
-rw-r--r-- | Source/WebCore/html/HTMLBaseFontElement.idl | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/Source/WebCore/html/HTMLBaseFontElement.idl b/Source/WebCore/html/HTMLBaseFontElement.idl index 95bc92c37..99bb33096 100644 --- a/Source/WebCore/html/HTMLBaseFontElement.idl +++ b/Source/WebCore/html/HTMLBaseFontElement.idl @@ -17,15 +17,12 @@ * Boston, MA 02110-1301, USA. */ -module html { - - interface HTMLBaseFontElement : HTMLElement { - attribute [Reflect] DOMString color; - attribute [Reflect] DOMString face; +interface HTMLBaseFontElement : HTMLElement { + [Reflect] attribute DOMString color; + [Reflect] attribute DOMString face; #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C - attribute [Reflect] DOMString size; // this changed to a long, but our existing API is a string + [Reflect] attribute DOMString size; // this changed to a long, but our existing API is a string #else - attribute [Reflect] long size; + [Reflect] attribute long size; #endif - }; -} +}; |