| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 [CEReactions, Reflect] attribute DOMString title; | 25 [CEReactions, Reflect] attribute DOMString title; |
| 26 [CEReactions, Reflect] attribute DOMString lang; | 26 [CEReactions, Reflect] attribute DOMString lang; |
| 27 [CEReactions] attribute boolean translate; | 27 [CEReactions] attribute boolean translate; |
| 28 [CEReactions] attribute DOMString dir; | 28 [CEReactions] attribute DOMString dir; |
| 29 [SameObject, PerWorldBindings] readonly attribute DOMStringMap dataset; | 29 [SameObject, PerWorldBindings] readonly attribute DOMStringMap dataset; |
| 30 | 30 |
| 31 // user interaction | 31 // user interaction |
| 32 [CEReactions, Reflect] attribute boolean hidden; | 32 [CEReactions, Reflect] attribute boolean hidden; |
| 33 [ImplementedAs=clickForBindings] void click(); | 33 [ImplementedAs=clickForBindings] void click(); |
| 34 [CEReactions, CustomElementCallbacks] attribute long tabIndex; | 34 [CEReactions, CustomElementCallbacks] attribute long tabIndex; |
| 35 [RuntimeEnabled=InertAttribute, Reflect] attribute boolean inert; |
| 35 void focus(); | 36 void focus(); |
| 36 void blur(); | 37 void blur(); |
| 37 [CEReactions, Reflect] attribute DOMString accessKey; | 38 [CEReactions, Reflect] attribute DOMString accessKey; |
| 38 [CEReactions, CustomElementCallbacks] attribute boolean draggable; | 39 [CEReactions, CustomElementCallbacks] attribute boolean draggable; |
| 39 [CEReactions, RuntimeEnabled=ContextMenu] attribute HTMLMenuElement? context
Menu; | 40 [CEReactions, RuntimeEnabled=ContextMenu] attribute HTMLMenuElement? context
Menu; |
| 40 [CEReactions] attribute boolean spellcheck; | 41 [CEReactions] attribute boolean spellcheck; |
| 41 | 42 |
| 42 // HTMLElement implements ElementContentEditable | 43 // HTMLElement implements ElementContentEditable |
| 43 // https://html.spec.whatwg.org/#contenteditable | 44 // https://html.spec.whatwg.org/#contenteditable |
| 44 [CEReactions, CustomElementCallbacks, RaisesException=Setter] attribute DOMS
tring contentEditable; | 45 [CEReactions, CustomElementCallbacks, RaisesException=Setter] attribute DOMS
tring contentEditable; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 59 // https://drafts.css-houdini.org/css-typed-om/#inline-stylepropertymap-obje
cts | 60 // https://drafts.css-houdini.org/css-typed-om/#inline-stylepropertymap-obje
cts |
| 60 [RuntimeEnabled=CSSTypedOM] readonly attribute StylePropertyMap styleMap; | 61 [RuntimeEnabled=CSSTypedOM] readonly attribute StylePropertyMap styleMap; |
| 61 | 62 |
| 62 // Non-standard APIs | 63 // Non-standard APIs |
| 63 [TreatNullAs=NullString, CustomElementCallbacks, RaisesException=Setter, Mea
sureAs=HTMLElementInnerText] attribute DOMString innerText; | 64 [TreatNullAs=NullString, CustomElementCallbacks, RaisesException=Setter, Mea
sureAs=HTMLElementInnerText] attribute DOMString innerText; |
| 64 [TreatNullAs=NullString, CustomElementCallbacks, RaisesException=Setter, Mea
sureAs=HTMLElementOuterText] attribute DOMString outerText; | 65 [TreatNullAs=NullString, CustomElementCallbacks, RaisesException=Setter, Mea
sureAs=HTMLElementOuterText] attribute DOMString outerText; |
| 65 [CEReactions, Reflect, TreatNullAs=NullString, MeasureAs=PrefixedHTMLElement
Dropzone] attribute DOMString webkitdropzone; | 66 [CEReactions, Reflect, TreatNullAs=NullString, MeasureAs=PrefixedHTMLElement
Dropzone] attribute DOMString webkitdropzone; |
| 66 }; | 67 }; |
| 67 | 68 |
| 68 HTMLElement implements GlobalEventHandlers; | 69 HTMLElement implements GlobalEventHandlers; |
| OLD | NEW |