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

Unified Diff: sky/engine/core/dom/DocumentFragment.cpp

Issue 732203004: Clean up child checks in ContainerNode. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Add back secondary hierarchy checks. Created 6 years, 1 month 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 | « sky/engine/core/dom/DocumentFragment.h ('k') | sky/engine/core/dom/Element.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/dom/DocumentFragment.cpp
diff --git a/sky/engine/core/dom/DocumentFragment.cpp b/sky/engine/core/dom/DocumentFragment.cpp
index 9745f659f8f688892e49d12e843b3c1e6d0cb681..9356f6d3893e7e6ce56dc5212b3cc12bb616e6ac 100644
--- a/sky/engine/core/dom/DocumentFragment.cpp
+++ b/sky/engine/core/dom/DocumentFragment.cpp
@@ -48,17 +48,6 @@ Node::NodeType DocumentFragment::nodeType() const
return DOCUMENT_FRAGMENT_NODE;
}
-bool DocumentFragment::childTypeAllowed(NodeType type) const
-{
- switch (type) {
- case ELEMENT_NODE:
- case TEXT_NODE:
- return true;
- default:
- return false;
- }
-}
-
PassRefPtr<Node> DocumentFragment::cloneNode(bool deep)
{
RefPtr<DocumentFragment> clone = create(document());
« no previous file with comments | « sky/engine/core/dom/DocumentFragment.h ('k') | sky/engine/core/dom/Element.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698