Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(581)

Unified Diff: Source/core/editing/MarkupAccumulator.cpp

Issue 282823004: Remove internalSubset from DocumentType (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove corresponding use counter Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/dom/Node.cpp ('k') | Source/core/frame/UseCounter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/MarkupAccumulator.cpp
diff --git a/Source/core/editing/MarkupAccumulator.cpp b/Source/core/editing/MarkupAccumulator.cpp
index 6f6c9d73f8f132e7d121a7f8e79dae419a48f8d1..a7b7a5dfef428edb629256ee1d42217ec8a30104 100644
--- a/Source/core/editing/MarkupAccumulator.cpp
+++ b/Source/core/editing/MarkupAccumulator.cpp
@@ -367,11 +367,6 @@ void MarkupAccumulator::appendDocumentType(StringBuilder& result, const Document
result.append(n.systemId());
result.append('"');
}
- if (!n.internalSubset().isEmpty()) {
- result.appendLiteral(" [");
- result.append(n.internalSubset());
- result.append(']');
- }
result.append('>');
}
« no previous file with comments | « Source/core/dom/Node.cpp ('k') | Source/core/frame/UseCounter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698