| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 // FIXME: style should have [PutForwards=cssText]. | 109 // FIXME: style should have [PutForwards=cssText]. |
| 110 [PerWorldBindings] readonly attribute CSSStyleDeclaration style; | 110 [PerWorldBindings] readonly attribute CSSStyleDeclaration style; |
| 111 | 111 |
| 112 // HTML | 112 // HTML |
| 113 // https://html.spec.whatwg.org/#htmlelement | 113 // https://html.spec.whatwg.org/#htmlelement |
| 114 // FIXME: dataset, focus() and blur() should be on HTMLElement. | 114 // FIXME: dataset, focus() and blur() should be on HTMLElement. |
| 115 [PerWorldBindings] readonly attribute DOMStringMap dataset; | 115 [PerWorldBindings] readonly attribute DOMStringMap dataset; |
| 116 void focus(); | 116 void focus(); |
| 117 void blur(); | 117 void blur(); |
| 118 | 118 |
| 119 [RuntimeEnabled = ScrollCustomization] void applyScroll(ScrollState scrollSt
ate); |
| 120 [RuntimeEnabled = ScrollCustomization] void distributeScroll(ScrollState scr
ollState); |
| 121 |
| 119 // Non-standard APIs | 122 // Non-standard APIs |
| 120 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=19962 | 123 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=19962 |
| 121 [RaisesException, CustomElementCallbacks, MeasureAs=InsertAdjacentElement] E
lement insertAdjacentElement(DOMString where, Element element); | 124 [RaisesException, CustomElementCallbacks, MeasureAs=InsertAdjacentElement] E
lement insertAdjacentElement(DOMString where, Element element); |
| 122 [RaisesException, MeasureAs=InsertAdjacentText] void insertAdjacentText(DOMS
tring where, DOMString text); | 125 [RaisesException, MeasureAs=InsertAdjacentText] void insertAdjacentText(DOMS
tring where, DOMString text); |
| 123 [MeasureAs=ElementScrollIntoViewIfNeeded] void scrollIntoViewIfNeeded(option
al boolean centerIfNeeded); | 126 [MeasureAs=ElementScrollIntoViewIfNeeded] void scrollIntoViewIfNeeded(option
al boolean centerIfNeeded); |
| 124 [RaisesException, ImplementedAs=matches, MeasureAs=ElementPrefixedMatchesSel
ector] boolean webkitMatchesSelector(DOMString selectors); | 127 [RaisesException, ImplementedAs=matches, MeasureAs=ElementPrefixedMatchesSel
ector] boolean webkitMatchesSelector(DOMString selectors); |
| 125 | 128 |
| 126 // Experimental isTapStop API | 129 // Experimental isTapStop API |
| 127 [RuntimeEnabled=IsTabStopAttribute] attribute boolean isTabStop; | 130 [RuntimeEnabled=IsTabStopAttribute] attribute boolean isTabStop; |
| 128 | 131 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 142 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; | 145 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; |
| 143 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; | 146 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; |
| 144 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; | 147 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; |
| 145 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; | 148 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; |
| 146 attribute EventHandler onwheel; | 149 attribute EventHandler onwheel; |
| 147 }; | 150 }; |
| 148 | 151 |
| 149 Element implements ParentNode; | 152 Element implements ParentNode; |
| 150 Element implements ChildNode; | 153 Element implements ChildNode; |
| 151 Element implements NonDocumentTypeChildNode; | 154 Element implements NonDocumentTypeChildNode; |
| OLD | NEW |