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) 2000 Simon Hausmann <hausmann@kde.org> | 4 * (C) 2000 Simon Hausmann <hausmann@kde.org> |
5 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserv
ed. | 5 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserv
ed. |
6 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 6 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
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 10 matching lines...) Expand all Loading... |
21 * Boston, MA 02110-1301, USA. | 21 * Boston, MA 02110-1301, USA. |
22 */ | 22 */ |
23 | 23 |
24 #include "config.h" | 24 #include "config.h" |
25 #include "core/html/HTMLAnchorElement.h" | 25 #include "core/html/HTMLAnchorElement.h" |
26 | 26 |
27 #include "core/dom/Attribute.h" | 27 #include "core/dom/Attribute.h" |
28 #include "core/editing/FrameSelection.h" | 28 #include "core/editing/FrameSelection.h" |
29 #include "core/events/KeyboardEvent.h" | 29 #include "core/events/KeyboardEvent.h" |
30 #include "core/events/MouseEvent.h" | 30 #include "core/events/MouseEvent.h" |
31 #include "core/events/ThreadLocalEventNames.h" | |
32 #include "core/frame/FrameHost.h" | 31 #include "core/frame/FrameHost.h" |
33 #include "core/frame/LocalFrame.h" | 32 #include "core/frame/LocalFrame.h" |
34 #include "core/frame/Settings.h" | 33 #include "core/frame/Settings.h" |
35 #include "core/frame/UseCounter.h" | 34 #include "core/frame/UseCounter.h" |
36 #include "core/html/HTMLFormElement.h" | 35 #include "core/html/HTMLFormElement.h" |
37 #include "core/html/HTMLImageElement.h" | 36 #include "core/html/HTMLImageElement.h" |
38 #include "core/html/parser/HTMLParserIdioms.h" | 37 #include "core/html/parser/HTMLParserIdioms.h" |
39 #include "core/loader/FrameLoadRequest.h" | 38 #include "core/loader/FrameLoadRequest.h" |
40 #include "core/loader/FrameLoader.h" | 39 #include "core/loader/FrameLoader.h" |
41 #include "core/loader/FrameLoaderClient.h" | 40 #include "core/loader/FrameLoaderClient.h" |
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
698 preconnectToURL(url, motivation); | 697 preconnectToURL(url, motivation); |
699 m_hasIssuedPreconnect = true; | 698 m_hasIssuedPreconnect = true; |
700 } | 699 } |
701 | 700 |
702 bool HTMLAnchorElement::isInteractiveContent() const | 701 bool HTMLAnchorElement::isInteractiveContent() const |
703 { | 702 { |
704 return isLink(); | 703 return isLink(); |
705 } | 704 } |
706 | 705 |
707 } | 706 } |
OLD | NEW |