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 |
(...skipping 23 matching lines...) Expand all Loading... |
34 #include "Event.h" | 34 #include "Event.h" |
35 #include "Frame.h" | 35 #include "Frame.h" |
36 #include "FrameLoader.h" | 36 #include "FrameLoader.h" |
37 #include "HTMLNames.h" | 37 #include "HTMLNames.h" |
38 #include "HTMLParserIdioms.h" | 38 #include "HTMLParserIdioms.h" |
39 #include "HTMLScriptElement.h" | 39 #include "HTMLScriptElement.h" |
40 #include "IgnoreDestructiveWriteCountIncrementer.h" | 40 #include "IgnoreDestructiveWriteCountIncrementer.h" |
41 #include "MIMETypeRegistry.h" | 41 #include "MIMETypeRegistry.h" |
42 #include "Page.h" | 42 #include "Page.h" |
43 #include "ScriptCallStack.h" | 43 #include "ScriptCallStack.h" |
| 44 #include "ScriptController.h" |
44 #include "ScriptRunner.h" | 45 #include "ScriptRunner.h" |
45 #include "ScriptSourceCode.h" | 46 #include "ScriptSourceCode.h" |
46 #include "ScriptValue.h" | 47 #include "ScriptValue.h" |
47 #include "ScriptableDocumentParser.h" | 48 #include "ScriptableDocumentParser.h" |
48 #include "SecurityOrigin.h" | 49 #include "SecurityOrigin.h" |
49 #include "Settings.h" | 50 #include "Settings.h" |
50 #include "Text.h" | 51 #include "Text.h" |
51 #include <wtf/StdLibExtras.h> | 52 #include <wtf/StdLibExtras.h> |
52 #include <wtf/text/StringBuilder.h> | 53 #include <wtf/text/StringBuilder.h> |
53 #include <wtf/text/StringHash.h> | 54 #include <wtf/text/StringHash.h> |
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
419 | 420 |
420 #if ENABLE(SVG) | 421 #if ENABLE(SVG) |
421 if (element->isSVGElement() && element->hasTagName(SVGNames::scriptTag)) | 422 if (element->isSVGElement() && element->hasTagName(SVGNames::scriptTag)) |
422 return static_cast<SVGScriptElement*>(element); | 423 return static_cast<SVGScriptElement*>(element); |
423 #endif | 424 #endif |
424 | 425 |
425 return 0; | 426 return 0; |
426 } | 427 } |
427 | 428 |
428 } | 429 } |
OLD | NEW |