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