| 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 "ScriptElement.h" |
| 26 | 26 |
| 27 #include "CachedResourceLoader.h" | |
| 28 #include "CachedResourceRequest.h" | |
| 29 #include "CachedScript.h" | |
| 30 #include "ContentSecurityPolicy.h" | 27 #include "ContentSecurityPolicy.h" |
| 31 #include "Document.h" | 28 #include "Document.h" |
| 32 #include "DocumentParser.h" | 29 #include "DocumentParser.h" |
| 33 #include "Event.h" | 30 #include "Event.h" |
| 34 #include "Frame.h" | 31 #include "Frame.h" |
| 35 #include "HTMLNames.h" | 32 #include "HTMLNames.h" |
| 36 #include "HTMLParserIdioms.h" | 33 #include "HTMLParserIdioms.h" |
| 37 #include "HTMLScriptElement.h" | 34 #include "HTMLScriptElement.h" |
| 38 #include "IgnoreDestructiveWriteCountIncrementer.h" | 35 #include "IgnoreDestructiveWriteCountIncrementer.h" |
| 39 #include "Page.h" | 36 #include "Page.h" |
| 40 #include "ScriptCallStack.h" | 37 #include "ScriptCallStack.h" |
| 41 #include "ScriptController.h" | 38 #include "ScriptController.h" |
| 42 #include "ScriptRunner.h" | 39 #include "ScriptRunner.h" |
| 43 #include "ScriptSourceCode.h" | 40 #include "ScriptSourceCode.h" |
| 44 #include "ScriptValue.h" | 41 #include "ScriptValue.h" |
| 45 #include "ScriptableDocumentParser.h" | 42 #include "ScriptableDocumentParser.h" |
| 46 #include "SecurityOrigin.h" | 43 #include "SecurityOrigin.h" |
| 47 #include "Settings.h" | 44 #include "Settings.h" |
| 48 #include "Text.h" | 45 #include "Text.h" |
| 49 #include "core/loader/CrossOriginAccessControl.h" | 46 #include "core/loader/CrossOriginAccessControl.h" |
| 50 #include "core/loader/FrameLoader.h" | 47 #include "core/loader/FrameLoader.h" |
| 48 #include "core/loader/cache/CachedResourceLoader.h" |
| 49 #include "core/loader/cache/CachedResourceRequest.h" |
| 50 #include "core/loader/cache/CachedScript.h" |
| 51 #include "core/platform/MIMETypeRegistry.h" | 51 #include "core/platform/MIMETypeRegistry.h" |
| 52 #include <wtf/StdLibExtras.h> | 52 #include <wtf/StdLibExtras.h> |
| 53 #include <wtf/text/StringBuilder.h> | 53 #include <wtf/text/StringBuilder.h> |
| 54 #include <wtf/text/StringHash.h> | 54 #include <wtf/text/StringHash.h> |
| 55 #include <wtf/text/TextPosition.h> | 55 #include <wtf/text/TextPosition.h> |
| 56 | 56 |
| 57 #if ENABLE(SVG) | 57 #if ENABLE(SVG) |
| 58 #include "SVGNames.h" | 58 #include "SVGNames.h" |
| 59 #include "SVGScriptElement.h" | 59 #include "SVGScriptElement.h" |
| 60 #endif | 60 #endif |
| (...skipping 361 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 |