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 29 matching lines...) Expand all Loading... |
40 readonly attribute long offsetLeft; | 40 readonly attribute long offsetLeft; |
41 readonly attribute long offsetTop; | 41 readonly attribute long offsetTop; |
42 readonly attribute long offsetWidth; | 42 readonly attribute long offsetWidth; |
43 readonly attribute long offsetHeight; | 43 readonly attribute long offsetHeight; |
44 readonly attribute Element offsetParent; | 44 readonly attribute Element offsetParent; |
45 readonly attribute long clientLeft; | 45 readonly attribute long clientLeft; |
46 readonly attribute long clientTop; | 46 readonly attribute long clientTop; |
47 readonly attribute long clientWidth; | 47 readonly attribute long clientWidth; |
48 readonly attribute long clientHeight; | 48 readonly attribute long clientHeight; |
49 | 49 |
50 // FIXME: should be: | |
51 // attribute (Dictionary or double) scrollLeft; | |
52 // attribute (Dictionary or double) scrollTop; | |
53 // http://crbug.com/240176 | |
54 [Custom=Setter] attribute long scrollLeft; | |
55 [Custom=Setter] attribute long scrollTop; | |
56 readonly attribute long scrollWidth; | |
57 readonly attribute long scrollHeight; | |
58 | |
59 void focus(); | 50 void focus(); |
60 void blur(); | 51 void blur(); |
61 | 52 |
62 [PerWorldBindings] readonly attribute DOMTokenList classList; | 53 [PerWorldBindings] readonly attribute DOMTokenList classList; |
63 | 54 |
64 [RaisesException] ShadowRoot ensureShadowRoot(); | 55 [RaisesException] ShadowRoot ensureShadowRoot(); |
65 [PerWorldBindings] readonly attribute ShadowRoot shadowRoot; | 56 [PerWorldBindings] readonly attribute ShadowRoot shadowRoot; |
66 NodeList getDestinationInsertionPoints(); | 57 NodeList getDestinationInsertionPoints(); |
67 | 58 |
68 // CSSOM View Module API | 59 // CSSOM View Module API |
69 ClientRectList getClientRects(); | 60 ClientRectList getClientRects(); |
70 ClientRect getBoundingClientRect(); | 61 ClientRect getBoundingClientRect(); |
71 | 62 |
72 [Reflect] attribute DOMString lang; | 63 [Reflect] attribute DOMString lang; |
73 attribute DOMString dir; | 64 attribute DOMString dir; |
74 | 65 |
75 [CustomElementCallbacks] attribute long tabIndex; | 66 [CustomElementCallbacks] attribute long tabIndex; |
76 | 67 |
77 [CustomElementCallbacks, RaisesException=Setter] attribute DOMString content
Editable; | 68 [CustomElementCallbacks, RaisesException=Setter] attribute DOMString content
Editable; |
78 readonly attribute boolean isContentEditable; | 69 readonly attribute boolean isContentEditable; |
79 | 70 |
80 attribute boolean spellcheck; | 71 attribute boolean spellcheck; |
81 }; | 72 }; |
82 | 73 |
83 Element implements ParentNode; | 74 Element implements ParentNode; |
84 Element implements ChildNode; | 75 Element implements ChildNode; |
OLD | NEW |