OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2001 Peter Kelly (pmk@post.com) | 4 * (C) 2001 Peter Kelly (pmk@post.com) |
5 * (C) 2001 Dirk Mueller (mueller@kde.org) | 5 * (C) 2001 Dirk Mueller (mueller@kde.org) |
6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2013 Appl
e Inc. All rights reserved. | 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2013 Appl
e Inc. All rights reserved. |
7 * | 7 * |
8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 Element* offsetParentForBindings(); | 179 Element* offsetParentForBindings(); |
180 | 180 |
181 Element* offsetParent(); | 181 Element* offsetParent(); |
182 int clientLeft(); | 182 int clientLeft(); |
183 int clientTop(); | 183 int clientTop(); |
184 int clientWidth(); | 184 int clientWidth(); |
185 int clientHeight(); | 185 int clientHeight(); |
186 virtual int scrollLeft(); | 186 virtual int scrollLeft(); |
187 virtual int scrollTop(); | 187 virtual int scrollTop(); |
188 virtual void setScrollLeft(int); | 188 virtual void setScrollLeft(int); |
| 189 virtual void setScrollLeft(const Dictionary& scrollOptionsHorizontal, Except
ionState&); |
189 virtual void setScrollTop(int); | 190 virtual void setScrollTop(int); |
| 191 virtual void setScrollTop(const Dictionary& scrollOptionsVertical, Exception
State&); |
190 virtual int scrollWidth(); | 192 virtual int scrollWidth(); |
191 virtual int scrollHeight(); | 193 virtual int scrollHeight(); |
192 | 194 |
193 IntRect boundsInRootViewSpace(); | 195 IntRect boundsInRootViewSpace(); |
194 | 196 |
195 PassRefPtr<ClientRectList> getClientRects(); | 197 PassRefPtr<ClientRectList> getClientRects(); |
196 PassRefPtr<ClientRect> getBoundingClientRect(); | 198 PassRefPtr<ClientRect> getBoundingClientRect(); |
197 | 199 |
198 // Returns the absolute bounding box translated into screen coordinates: | 200 // Returns the absolute bounding box translated into screen coordinates: |
199 IntRect screenRect() const; | 201 IntRect screenRect() const; |
(...skipping 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
895 } | 897 } |
896 | 898 |
897 inline bool isShadowHost(const Element* element) | 899 inline bool isShadowHost(const Element* element) |
898 { | 900 { |
899 return element && element->shadow(); | 901 return element && element->shadow(); |
900 } | 902 } |
901 | 903 |
902 } // namespace | 904 } // namespace |
903 | 905 |
904 #endif | 906 #endif |
OLD | NEW |