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 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
5 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 5 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
6 * Copyright (C) 2011 Motorola Mobility. All rights reserved. | 6 * Copyright (C) 2011 Motorola Mobility. All rights reserved. |
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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 #include "HTMLCollection.h" | 42 #include "HTMLCollection.h" |
43 #include "HTMLDocument.h" | 43 #include "HTMLDocument.h" |
44 #include "HTMLElementFactory.h" | 44 #include "HTMLElementFactory.h" |
45 #include "HTMLFormElement.h" | 45 #include "HTMLFormElement.h" |
46 #include "HTMLNames.h" | 46 #include "HTMLNames.h" |
47 #include "HTMLParserIdioms.h" | 47 #include "HTMLParserIdioms.h" |
48 #include "HTMLTemplateElement.h" | 48 #include "HTMLTemplateElement.h" |
49 #include "HTMLTextFormControlElement.h" | 49 #include "HTMLTextFormControlElement.h" |
50 #include "NodeTraversal.h" | 50 #include "NodeTraversal.h" |
51 #include "RenderWordBreak.h" | 51 #include "RenderWordBreak.h" |
| 52 #include "ScriptController.h" |
52 #include "ScriptEventListener.h" | 53 #include "ScriptEventListener.h" |
53 #include "Settings.h" | 54 #include "Settings.h" |
54 #include "StylePropertySet.h" | 55 #include "StylePropertySet.h" |
55 #include "Text.h" | 56 #include "Text.h" |
56 #include "TextIterator.h" | 57 #include "TextIterator.h" |
57 #include "XMLNames.h" | 58 #include "XMLNames.h" |
58 #include "markup.h" | 59 #include "markup.h" |
59 #include <wtf/StdLibExtras.h> | 60 #include <wtf/StdLibExtras.h> |
60 #include <wtf/text/CString.h> | 61 #include <wtf/text/CString.h> |
61 | 62 |
(...skipping 978 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1040 #ifndef NDEBUG | 1041 #ifndef NDEBUG |
1041 | 1042 |
1042 // For use in the debugger | 1043 // For use in the debugger |
1043 void dumpInnerHTML(WebCore::HTMLElement*); | 1044 void dumpInnerHTML(WebCore::HTMLElement*); |
1044 | 1045 |
1045 void dumpInnerHTML(WebCore::HTMLElement* element) | 1046 void dumpInnerHTML(WebCore::HTMLElement* element) |
1046 { | 1047 { |
1047 printf("%s\n", element->innerHTML().ascii().data()); | 1048 printf("%s\n", element->innerHTML().ascii().data()); |
1048 } | 1049 } |
1049 #endif | 1050 #endif |
OLD | NEW |