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 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserv
ed. | 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserv
ed. |
6 * Copyright (C) 2008 Nikolas Zimmermann <zimmermann@kde.org> | 6 * Copyright (C) 2008 Nikolas Zimmermann <zimmermann@kde.org> |
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 |
11 * version 2 of the License, or (at your option) any later version. | 11 * version 2 of the License, or (at your option) any later version. |
12 * | 12 * |
13 * This library is distributed in the hope that it will be useful, | 13 * This library is distributed in the hope that it will be useful, |
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
16 * Library General Public License for more details. | 16 * Library General Public License for more details. |
17 * | 17 * |
18 * You should have received a copy of the GNU Library General Public License | 18 * You should have received a copy of the GNU Library General Public License |
19 * along with this library; see the file COPYING.LIB. If not, write to | 19 * along with this library; see the file COPYING.LIB. If not, write to |
20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
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 "ScriptElement.h" | 25 #include "core/dom/ScriptElement.h" |
26 | 26 |
27 #include "Document.h" | |
28 #include "DocumentParser.h" | |
29 #include "Event.h" | |
30 #include "HTMLNames.h" | 27 #include "HTMLNames.h" |
31 #include "HTMLParserIdioms.h" | 28 #include "HTMLParserIdioms.h" |
32 #include "HTMLScriptElement.h" | 29 #include "HTMLScriptElement.h" |
33 #include "IgnoreDestructiveWriteCountIncrementer.h" | |
34 #include "ScriptCallStack.h" | 30 #include "ScriptCallStack.h" |
35 #include "ScriptController.h" | 31 #include "ScriptController.h" |
36 #include "ScriptRunner.h" | |
37 #include "ScriptSourceCode.h" | 32 #include "ScriptSourceCode.h" |
38 #include "ScriptValue.h" | 33 #include "ScriptValue.h" |
39 #include "ScriptableDocumentParser.h" | 34 #include "core/dom/Document.h" |
40 #include "Text.h" | 35 #include "core/dom/DocumentParser.h" |
| 36 #include "core/dom/Event.h" |
| 37 #include "core/dom/IgnoreDestructiveWriteCountIncrementer.h" |
| 38 #include "core/dom/ScriptRunner.h" |
| 39 #include "core/dom/ScriptableDocumentParser.h" |
| 40 #include "core/dom/Text.h" |
41 #include "core/loader/CrossOriginAccessControl.h" | 41 #include "core/loader/CrossOriginAccessControl.h" |
42 #include "core/loader/FrameLoader.h" | 42 #include "core/loader/FrameLoader.h" |
43 #include "core/loader/cache/CachedResourceLoader.h" | 43 #include "core/loader/cache/CachedResourceLoader.h" |
44 #include "core/loader/cache/CachedResourceRequest.h" | 44 #include "core/loader/cache/CachedResourceRequest.h" |
45 #include "core/loader/cache/CachedScript.h" | 45 #include "core/loader/cache/CachedScript.h" |
46 #include "core/page/ContentSecurityPolicy.h" | 46 #include "core/page/ContentSecurityPolicy.h" |
47 #include "core/page/Frame.h" | 47 #include "core/page/Frame.h" |
48 #include "core/page/Page.h" | 48 #include "core/page/Page.h" |
49 #include "core/page/SecurityOrigin.h" | 49 #include "core/page/SecurityOrigin.h" |
50 #include "core/page/Settings.h" | 50 #include "core/page/Settings.h" |
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
422 | 422 |
423 #if ENABLE(SVG) | 423 #if ENABLE(SVG) |
424 if (element->isSVGElement() && element->hasTagName(SVGNames::scriptTag)) | 424 if (element->isSVGElement() && element->hasTagName(SVGNames::scriptTag)) |
425 return static_cast<SVGScriptElement*>(element); | 425 return static_cast<SVGScriptElement*>(element); |
426 #endif | 426 #endif |
427 | 427 |
428 return 0; | 428 return 0; |
429 } | 429 } |
430 | 430 |
431 } | 431 } |
OLD | NEW |