| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 #include "core/editing/markup.h" | 44 #include "core/editing/markup.h" |
| 45 #include "core/html/HTMLBRElement.h" | 45 #include "core/html/HTMLBRElement.h" |
| 46 #include "core/html/HTMLFormElement.h" | 46 #include "core/html/HTMLFormElement.h" |
| 47 #include "core/html/HTMLTemplateElement.h" | 47 #include "core/html/HTMLTemplateElement.h" |
| 48 #include "core/html/HTMLTextFormControlElement.h" | 48 #include "core/html/HTMLTextFormControlElement.h" |
| 49 #include "core/html/parser/HTMLParserIdioms.h" | 49 #include "core/html/parser/HTMLParserIdioms.h" |
| 50 #include "core/loader/FrameLoader.h" | 50 #include "core/loader/FrameLoader.h" |
| 51 #include "core/page/Frame.h" | 51 #include "core/page/Frame.h" |
| 52 #include "core/page/Settings.h" | 52 #include "core/page/Settings.h" |
| 53 #include "core/rendering/RenderWordBreak.h" | 53 #include "core/rendering/RenderWordBreak.h" |
| 54 #include <wtf/StdLibExtras.h> | 54 #include "wtf/StdLibExtras.h" |
| 55 #include <wtf/text/CString.h> | 55 #include "wtf/text/CString.h" |
| 56 | 56 |
| 57 namespace WebCore { | 57 namespace WebCore { |
| 58 | 58 |
| 59 using namespace HTMLNames; | 59 using namespace HTMLNames; |
| 60 using namespace WTF; | 60 using namespace WTF; |
| 61 | 61 |
| 62 using std::min; | 62 using std::min; |
| 63 using std::max; | 63 using std::max; |
| 64 | 64 |
| 65 PassRefPtr<HTMLElement> HTMLElement::create(const QualifiedName& tagName, Docume
nt* document) | 65 PassRefPtr<HTMLElement> HTMLElement::create(const QualifiedName& tagName, Docume
nt* document) |
| (...skipping 1022 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1088 #ifndef NDEBUG | 1088 #ifndef NDEBUG |
| 1089 | 1089 |
| 1090 // For use in the debugger | 1090 // For use in the debugger |
| 1091 void dumpInnerHTML(WebCore::HTMLElement*); | 1091 void dumpInnerHTML(WebCore::HTMLElement*); |
| 1092 | 1092 |
| 1093 void dumpInnerHTML(WebCore::HTMLElement* element) | 1093 void dumpInnerHTML(WebCore::HTMLElement* element) |
| 1094 { | 1094 { |
| 1095 printf("%s\n", element->innerHTML().ascii().data()); | 1095 printf("%s\n", element->innerHTML().ascii().data()); |
| 1096 } | 1096 } |
| 1097 #endif | 1097 #endif |
| OLD | NEW |