diff options
Diffstat (limited to 'Source/WebCore/html/HTMLIntentElement.idl')
-rw-r--r-- | Source/WebCore/html/HTMLIntentElement.idl | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/Source/WebCore/html/HTMLIntentElement.idl b/Source/WebCore/html/HTMLIntentElement.idl index 608c5acdd..f1df9be90 100644 --- a/Source/WebCore/html/HTMLIntentElement.idl +++ b/Source/WebCore/html/HTMLIntentElement.idl @@ -23,16 +23,13 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -module html { +[ + Conditional=WEB_INTENTS_TAG +] interface HTMLIntentElement : HTMLElement { + [Reflect] attribute DOMString action; + [Reflect] attribute DOMString type; + [Reflect, URL] attribute DOMString href; + [Reflect] attribute DOMString title; + [Reflect] attribute DOMString disposition; +}; - interface [ - Conditional=WEB_INTENTS_TAG - ] HTMLIntentElement : HTMLElement { - attribute [Reflect] DOMString action; - attribute [Reflect] DOMString type; - attribute [Reflect, URL] DOMString href; - attribute [Reflect] DOMString title; - attribute [Reflect] DOMString disposition; - }; - -} |