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 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. |
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
9 * Copyright (C) 2011 Google Inc. All rights reserved. | 9 * Copyright (C) 2011 Google Inc. All rights reserved. |
10 * | 10 * |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 bool hasFocus() const; | 263 bool hasFocus() const; |
264 | 264 |
265 // DOM methods & attributes for Document | 265 // DOM methods & attributes for Document |
266 | 266 |
267 DEFINE_ATTRIBUTE_EVENT_LISTENER(beforecopy); | 267 DEFINE_ATTRIBUTE_EVENT_LISTENER(beforecopy); |
268 DEFINE_ATTRIBUTE_EVENT_LISTENER(beforecut); | 268 DEFINE_ATTRIBUTE_EVENT_LISTENER(beforecut); |
269 DEFINE_ATTRIBUTE_EVENT_LISTENER(beforepaste); | 269 DEFINE_ATTRIBUTE_EVENT_LISTENER(beforepaste); |
270 DEFINE_ATTRIBUTE_EVENT_LISTENER(copy); | 270 DEFINE_ATTRIBUTE_EVENT_LISTENER(copy); |
271 DEFINE_ATTRIBUTE_EVENT_LISTENER(cut); | 271 DEFINE_ATTRIBUTE_EVENT_LISTENER(cut); |
272 DEFINE_ATTRIBUTE_EVENT_LISTENER(paste); | 272 DEFINE_ATTRIBUTE_EVENT_LISTENER(paste); |
| 273 DEFINE_ATTRIBUTE_EVENT_LISTENER(pointerlockchange); |
| 274 DEFINE_ATTRIBUTE_EVENT_LISTENER(pointerlockerror); |
273 DEFINE_ATTRIBUTE_EVENT_LISTENER(readystatechange); | 275 DEFINE_ATTRIBUTE_EVENT_LISTENER(readystatechange); |
274 DEFINE_ATTRIBUTE_EVENT_LISTENER(search); | 276 DEFINE_ATTRIBUTE_EVENT_LISTENER(search); |
275 DEFINE_ATTRIBUTE_EVENT_LISTENER(securitypolicyviolation); | 277 DEFINE_ATTRIBUTE_EVENT_LISTENER(securitypolicyviolation); |
276 DEFINE_ATTRIBUTE_EVENT_LISTENER(selectionchange); | 278 DEFINE_ATTRIBUTE_EVENT_LISTENER(selectionchange); |
277 DEFINE_ATTRIBUTE_EVENT_LISTENER(selectstart); | 279 DEFINE_ATTRIBUTE_EVENT_LISTENER(selectstart); |
278 DEFINE_ATTRIBUTE_EVENT_LISTENER(touchcancel); | 280 DEFINE_ATTRIBUTE_EVENT_LISTENER(touchcancel); |
279 DEFINE_ATTRIBUTE_EVENT_LISTENER(touchend); | 281 DEFINE_ATTRIBUTE_EVENT_LISTENER(touchend); |
280 DEFINE_ATTRIBUTE_EVENT_LISTENER(touchmove); | 282 DEFINE_ATTRIBUTE_EVENT_LISTENER(touchmove); |
281 DEFINE_ATTRIBUTE_EVENT_LISTENER(touchstart); | 283 DEFINE_ATTRIBUTE_EVENT_LISTENER(touchstart); |
282 DEFINE_ATTRIBUTE_EVENT_LISTENER(webkitfullscreenchange); | 284 DEFINE_ATTRIBUTE_EVENT_LISTENER(webkitfullscreenchange); |
(...skipping 1158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1441 inline bool Node::isDocumentNode() const | 1443 inline bool Node::isDocumentNode() const |
1442 { | 1444 { |
1443 return this == document(); | 1445 return this == document(); |
1444 } | 1446 } |
1445 | 1447 |
1446 Node* eventTargetNodeForDocument(Document*); | 1448 Node* eventTargetNodeForDocument(Document*); |
1447 | 1449 |
1448 } // namespace WebCore | 1450 } // namespace WebCore |
1449 | 1451 |
1450 #endif // Document_h | 1452 #endif // Document_h |
OLD | NEW |