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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 void blur(); | 117 void blur(); |
118 | 118 |
119 // Non-standard APIs | 119 // Non-standard APIs |
120 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=19962 | 120 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=19962 |
121 [RaisesException, CustomElementCallbacks, MeasureAs=InsertAdjacentElement] E
lement insertAdjacentElement(DOMString where, Element element); | 121 [RaisesException, CustomElementCallbacks, MeasureAs=InsertAdjacentElement] E
lement insertAdjacentElement(DOMString where, Element element); |
122 [RaisesException, MeasureAs=InsertAdjacentText] void insertAdjacentText(DOMS
tring where, DOMString text); | 122 [RaisesException, MeasureAs=InsertAdjacentText] void insertAdjacentText(DOMS
tring where, DOMString text); |
123 [MeasureAs=ElementScrollIntoViewIfNeeded] void scrollIntoViewIfNeeded(option
al boolean centerIfNeeded); | 123 [MeasureAs=ElementScrollIntoViewIfNeeded] void scrollIntoViewIfNeeded(option
al boolean centerIfNeeded); |
124 [RaisesException, ImplementedAs=matches, MeasureAs=ElementPrefixedMatchesSel
ector] boolean webkitMatchesSelector(DOMString selectors); | 124 [RaisesException, ImplementedAs=matches, MeasureAs=ElementPrefixedMatchesSel
ector] boolean webkitMatchesSelector(DOMString selectors); |
125 | 125 |
126 // Experimental isTapStop API | 126 // Experimental isTapStop API |
127 [RuntimeEnabled=TabStopAttribute] attribute boolean tabStop; | 127 [RuntimeEnabled=TabStopAttribute, MeasureAs=TabStopProperty] attribute boole
an tabStop; |
128 | 128 |
129 // Experimental accessibility API | 129 // Experimental accessibility API |
130 [RuntimeEnabled=ComputedAccessibilityInfo] readonly attribute DOMString? com
putedRole; | 130 [RuntimeEnabled=ComputedAccessibilityInfo] readonly attribute DOMString? com
putedRole; |
131 [RuntimeEnabled=ComputedAccessibilityInfo] readonly attribute DOMString? com
putedName; | 131 [RuntimeEnabled=ComputedAccessibilityInfo] readonly attribute DOMString? com
putedName; |
132 | 132 |
133 // Event handler attributes | 133 // Event handler attributes |
134 attribute EventHandler onbeforecopy; | 134 attribute EventHandler onbeforecopy; |
135 attribute EventHandler onbeforecut; | 135 attribute EventHandler onbeforecut; |
136 attribute EventHandler onbeforepaste; | 136 attribute EventHandler onbeforepaste; |
137 attribute EventHandler oncopy; | 137 attribute EventHandler oncopy; |
138 attribute EventHandler oncut; | 138 attribute EventHandler oncut; |
139 attribute EventHandler onpaste; | 139 attribute EventHandler onpaste; |
140 attribute EventHandler onsearch; | 140 attribute EventHandler onsearch; |
141 attribute EventHandler onselectstart; | 141 attribute EventHandler onselectstart; |
142 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; | 142 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; |
143 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; | 143 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; |
144 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; | 144 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; |
145 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; | 145 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; |
146 attribute EventHandler onwheel; | 146 attribute EventHandler onwheel; |
147 }; | 147 }; |
148 | 148 |
149 Element implements ParentNode; | 149 Element implements ParentNode; |
150 Element implements ChildNode; | 150 Element implements ChildNode; |
151 Element implements NonDocumentTypeChildNode; | 151 Element implements NonDocumentTypeChildNode; |
OLD | NEW |