| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All rights
reserved. |
| 3 * Copyright (C) 2009, 2010 Google Inc. All rights reserved. | 3 * Copyright (C) 2009, 2010 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "MarkupAccumulator.h" | 28 #include "MarkupAccumulator.h" |
| 29 | 29 |
| 30 #include "CDATASection.h" | 30 #include "CDATASection.h" |
| 31 #include "Comment.h" | 31 #include "Comment.h" |
| 32 #include "DocumentFragment.h" | 32 #include "DocumentFragment.h" |
| 33 #include "DocumentType.h" | 33 #include "DocumentType.h" |
| 34 #include "Editor.h" | 34 #include "Editor.h" |
| 35 #include "HTMLElement.h" | 35 #include "HTMLElement.h" |
| 36 #include "HTMLNames.h" | 36 #include "HTMLNames.h" |
| 37 #include "HTMLTemplateElement.h" | 37 #include "HTMLTemplateElement.h" |
| 38 #include "KURL.h" | |
| 39 #include "ProcessingInstruction.h" | 38 #include "ProcessingInstruction.h" |
| 40 #include "XLinkNames.h" | 39 #include "XLinkNames.h" |
| 41 #include "XMLNSNames.h" | 40 #include "XMLNSNames.h" |
| 42 #include "XMLNames.h" | 41 #include "XMLNames.h" |
| 42 #include "core/platform/KURL.h" |
| 43 #include <wtf/unicode/CharacterNames.h> | 43 #include <wtf/unicode/CharacterNames.h> |
| 44 | 44 |
| 45 namespace WebCore { | 45 namespace WebCore { |
| 46 | 46 |
| 47 using namespace HTMLNames; | 47 using namespace HTMLNames; |
| 48 | 48 |
| 49 void MarkupAccumulator::appendCharactersReplacingEntities(StringBuilder& result,
const String& source, unsigned offset, unsigned length, EntityMask entityMask) | 49 void MarkupAccumulator::appendCharactersReplacingEntities(StringBuilder& result,
const String& source, unsigned offset, unsigned length, EntityMask entityMask) |
| 50 { | 50 { |
| 51 DEFINE_STATIC_LOCAL(const String, ampReference, (ASCIILiteral("&"))); | 51 DEFINE_STATIC_LOCAL(const String, ampReference, (ASCIILiteral("&"))); |
| 52 DEFINE_STATIC_LOCAL(const String, ltReference, (ASCIILiteral("<"))); | 52 DEFINE_STATIC_LOCAL(const String, ltReference, (ASCIILiteral("<"))); |
| (...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 553 if (!node->isElementNode() || shouldSelfClose(node) || (!node->hasChildNodes
() && elementCannotHaveEndTag(node))) | 553 if (!node->isElementNode() || shouldSelfClose(node) || (!node->hasChildNodes
() && elementCannotHaveEndTag(node))) |
| 554 return; | 554 return; |
| 555 | 555 |
| 556 result.append('<'); | 556 result.append('<'); |
| 557 result.append('/'); | 557 result.append('/'); |
| 558 result.append(toElement(node)->nodeNamePreservingCase()); | 558 result.append(toElement(node)->nodeNamePreservingCase()); |
| 559 result.append('>'); | 559 result.append('>'); |
| 560 } | 560 } |
| 561 | 561 |
| 562 } | 562 } |
| OLD | NEW |