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

Unified Diff: Source/core/dom/Node.cpp

Issue 282823004: Remove internalSubset from DocumentType (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
Index: Source/core/dom/Node.cpp
diff --git a/Source/core/dom/Node.cpp b/Source/core/dom/Node.cpp
index 733c520ce69e728867b0972f945d802cbb6e8eca..ec1fbbdd4b7ec1166e7d28adec0653a39120f859 100644
--- a/Source/core/dom/Node.cpp
+++ b/Source/core/dom/Node.cpp
@@ -1308,9 +1308,6 @@ bool Node::isEqualNode(Node* other) const
if (documentTypeThis->systemId() != documentTypeOther->systemId())
return false;
-
- if (documentTypeThis->internalSubset() != documentTypeOther->internalSubset())
- return false;
}
return true;

Powered by Google App Engine
This is Rietveld 408576698