diff options
Diffstat (limited to 'Source/WebCore/html/HTMLParamElement.idl')
-rw-r--r-- | Source/WebCore/html/HTMLParamElement.idl | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/Source/WebCore/html/HTMLParamElement.idl b/Source/WebCore/html/HTMLParamElement.idl index 1f0c0ded6..fea259445 100644 --- a/Source/WebCore/html/HTMLParamElement.idl +++ b/Source/WebCore/html/HTMLParamElement.idl @@ -17,13 +17,10 @@ * Boston, MA 02110-1301, USA. */ -module html { +interface HTMLParamElement : HTMLElement { + [Reflect] attribute DOMString name; + [Reflect] attribute DOMString type; + [Reflect] attribute DOMString value; + [Reflect] attribute DOMString valueType; +}; - interface HTMLParamElement : HTMLElement { - attribute [Reflect] DOMString name; - attribute [Reflect] DOMString type; - attribute [Reflect] DOMString value; - attribute [Reflect] DOMString valueType; - }; - -} |