| 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 18 matching lines...) Expand all Loading... |
| 29 #include "CSSValueKeywords.h" | 29 #include "CSSValueKeywords.h" |
| 30 #include "DOMSettableTokenList.h" | 30 #include "DOMSettableTokenList.h" |
| 31 #include "HTMLBRElement.h" | 31 #include "HTMLBRElement.h" |
| 32 #include "HTMLCollection.h" | 32 #include "HTMLCollection.h" |
| 33 #include "HTMLDocument.h" | 33 #include "HTMLDocument.h" |
| 34 #include "HTMLElementFactory.h" | 34 #include "HTMLElementFactory.h" |
| 35 #include "HTMLFormElement.h" | 35 #include "HTMLFormElement.h" |
| 36 #include "HTMLNames.h" | 36 #include "HTMLNames.h" |
| 37 #include "HTMLTemplateElement.h" | 37 #include "HTMLTemplateElement.h" |
| 38 #include "HTMLTextFormControlElement.h" | 38 #include "HTMLTextFormControlElement.h" |
| 39 #include "ScriptController.h" | |
| 40 #include "ScriptEventListener.h" | |
| 41 #include "XMLNames.h" | 39 #include "XMLNames.h" |
| 40 #include "bindings/v8/ScriptController.h" |
| 41 #include "bindings/v8/ScriptEventListener.h" |
| 42 #include "core/css/CSSParser.h" | 42 #include "core/css/CSSParser.h" |
| 43 #include "core/css/CSSValuePool.h" | 43 #include "core/css/CSSValuePool.h" |
| 44 #include "core/css/StylePropertySet.h" | 44 #include "core/css/StylePropertySet.h" |
| 45 #include "core/dom/Attribute.h" | 45 #include "core/dom/Attribute.h" |
| 46 #include "core/dom/DocumentFragment.h" | 46 #include "core/dom/DocumentFragment.h" |
| 47 #include "core/dom/Event.h" | 47 #include "core/dom/Event.h" |
| 48 #include "core/dom/EventListener.h" | 48 #include "core/dom/EventListener.h" |
| 49 #include "core/dom/EventNames.h" | 49 #include "core/dom/EventNames.h" |
| 50 #include "core/dom/ExceptionCode.h" | 50 #include "core/dom/ExceptionCode.h" |
| 51 #include "core/dom/NodeTraversal.h" | 51 #include "core/dom/NodeTraversal.h" |
| (...skipping 989 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1041 #ifndef NDEBUG | 1041 #ifndef NDEBUG |
| 1042 | 1042 |
| 1043 // For use in the debugger | 1043 // For use in the debugger |
| 1044 void dumpInnerHTML(WebCore::HTMLElement*); | 1044 void dumpInnerHTML(WebCore::HTMLElement*); |
| 1045 | 1045 |
| 1046 void dumpInnerHTML(WebCore::HTMLElement* element) | 1046 void dumpInnerHTML(WebCore::HTMLElement* element) |
| 1047 { | 1047 { |
| 1048 printf("%s\n", element->innerHTML().ascii().data()); | 1048 printf("%s\n", element->innerHTML().ascii().data()); |
| 1049 } | 1049 } |
| 1050 #endif | 1050 #endif |
| OLD | NEW |