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

Unified Diff: third_party/WebKit/Source/core/dom/shadow/DistributedNodes.cpp

Issue 2460813002: Make slots in non-shadow trees participate in a flat tree (Closed)
Patch Set: update expectation Created 4 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
Index: third_party/WebKit/Source/core/dom/shadow/DistributedNodes.cpp
diff --git a/third_party/WebKit/Source/core/dom/shadow/DistributedNodes.cpp b/third_party/WebKit/Source/core/dom/shadow/DistributedNodes.cpp
index adf1a39d7a77a3669e24f14dc491014f99fc125d..3a8c6655b0f20f4bcb2b8e9f59ee67ff220cd109 100644
--- a/third_party/WebKit/Source/core/dom/shadow/DistributedNodes.cpp
+++ b/third_party/WebKit/Source/core/dom/shadow/DistributedNodes.cpp
@@ -37,7 +37,7 @@ void DistributedNodes::swap(DistributedNodes& other) {
void DistributedNodes::append(Node* node) {
DCHECK(node);
- DCHECK(!node->isSlotOrActiveInsertionPoint());
+ DCHECK(!node->isActiveSlotOrActiveInsertionPoint());
size_t size = m_nodes.size();
m_indices.set(node, size);
m_nodes.append(node);

Powered by Google App Engine
This is Rietveld 408576698