| 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-2008, 2013, 2014 Apple Inc. All rights reserved. | 4 * Copyright (C) 2004-2008, 2013, 2014 Apple Inc. All rights reserved. |
| 5 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. | 5 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. |
| 6 * (http://www.torchmobile.com/) | 6 * (http://www.torchmobile.com/) |
| 7 * Copyright (C) 2011 Motorola Mobility. All rights reserved. | 7 * Copyright (C) 2011 Motorola Mobility. All rights reserved. |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 #include "core/html/HTMLTemplateElement.h" | 60 #include "core/html/HTMLTemplateElement.h" |
| 61 #include "core/html/parser/HTMLParserIdioms.h" | 61 #include "core/html/parser/HTMLParserIdioms.h" |
| 62 #include "core/layout/LayoutBoxModelObject.h" | 62 #include "core/layout/LayoutBoxModelObject.h" |
| 63 #include "core/layout/LayoutObject.h" | 63 #include "core/layout/LayoutObject.h" |
| 64 #include "core/page/SpatialNavigation.h" | 64 #include "core/page/SpatialNavigation.h" |
| 65 #include "core/svg/SVGSVGElement.h" | 65 #include "core/svg/SVGSVGElement.h" |
| 66 #include "platform/Language.h" | 66 #include "platform/Language.h" |
| 67 #include "platform/text/BidiResolver.h" | 67 #include "platform/text/BidiResolver.h" |
| 68 #include "platform/text/BidiTextRun.h" | 68 #include "platform/text/BidiTextRun.h" |
| 69 #include "platform/text/TextRunIterator.h" | 69 #include "platform/text/TextRunIterator.h" |
| 70 #include "wtf/StdLibExtras.h" | 70 #include "platform/wtf/StdLibExtras.h" |
| 71 #include "wtf/text/CString.h" | 71 #include "platform/wtf/text/CString.h" |
| 72 | 72 |
| 73 namespace blink { | 73 namespace blink { |
| 74 | 74 |
| 75 using namespace cssvalue; | 75 using namespace cssvalue; |
| 76 using namespace HTMLNames; | 76 using namespace HTMLNames; |
| 77 using namespace WTF; | 77 using namespace WTF; |
| 78 | 78 |
| 79 using namespace std; | 79 using namespace std; |
| 80 | 80 |
| 81 namespace { | 81 namespace { |
| (...skipping 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1198 | 1198 |
| 1199 #ifndef NDEBUG | 1199 #ifndef NDEBUG |
| 1200 | 1200 |
| 1201 // For use in the debugger | 1201 // For use in the debugger |
| 1202 void dumpInnerHTML(blink::HTMLElement*); | 1202 void dumpInnerHTML(blink::HTMLElement*); |
| 1203 | 1203 |
| 1204 void dumpInnerHTML(blink::HTMLElement* element) { | 1204 void dumpInnerHTML(blink::HTMLElement* element) { |
| 1205 printf("%s\n", element->innerHTML().Ascii().Data()); | 1205 printf("%s\n", element->innerHTML().Ascii().Data()); |
| 1206 } | 1206 } |
| 1207 #endif | 1207 #endif |
| OLD | NEW |