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

Side by Side Diff: third_party/WebKit/Source/core/dom/Node.cpp

Issue 1530643003: Support slot element's fallback content feature (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: wip Created 5 years 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved.
6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 951 matching lines...) Expand 10 before | Expand all | Expand 10 after
962 bool Node::canParticipateInComposedTree() const 962 bool Node::canParticipateInComposedTree() const
963 { 963 {
964 return !isShadowRoot() && !isSlotOrActiveInsertionPoint(); 964 return !isShadowRoot() && !isSlotOrActiveInsertionPoint();
965 } 965 }
966 966
967 bool Node::isSlotOrActiveInsertionPoint() const 967 bool Node::isSlotOrActiveInsertionPoint() const
968 { 968 {
969 return isHTMLSlotElement(*this) || isActiveInsertionPoint(*this); 969 return isHTMLSlotElement(*this) || isActiveInsertionPoint(*this);
970 } 970 }
971 971
972 bool Node::isInV1ShadowTree() const
973 {
974 ShadowRoot* shadowRoot = containingShadowRoot();
975 return shadowRoot && shadowRoot->isV1();
976 }
977
978 bool Node::isInV0ShadowTree() const
979 {
980 ShadowRoot* shadowRoot = containingShadowRoot();
981 return shadowRoot && !shadowRoot->isV1();
982 }
983
984 static ElementShadow* parentElementShadow(const Node& node)
985 {
986 Element* parent = node.parentElement();
987 if (!parent)
988 return nullptr;
989 return parent->shadow();
990 }
991
992 bool Node::isChildOfV1ShadowHost() const
993 {
994 ElementShadow* parentShadow = parentElementShadow(*this);
995 return parentShadow && parentShadow->isV1();
996 }
997
998 bool Node::isChildOfV0ShadowHost() const
999 {
1000 ElementShadow* parentShadow = parentElementShadow(*this);
1001 return parentShadow && !parentShadow->isV1();
1002 }
1003
972 Element* Node::shadowHost() const 1004 Element* Node::shadowHost() const
973 { 1005 {
974 if (ShadowRoot* root = containingShadowRoot()) 1006 if (ShadowRoot* root = containingShadowRoot())
975 return root->host(); 1007 return root->host();
976 return nullptr; 1008 return nullptr;
977 } 1009 }
978 1010
979 ShadowRoot* Node::containingShadowRoot() const 1011 ShadowRoot* Node::containingShadowRoot() const
980 { 1012 {
981 Node& root = treeScope().rootNode(); 1013 Node& root = treeScope().rootNode();
(...skipping 1223 matching lines...) Expand 10 before | Expand all | Expand 10 after
2205 if (!insertionPoint->containingShadowRoot()->isOpen()) 2237 if (!insertionPoint->containingShadowRoot()->isOpen())
2206 break; 2238 break;
2207 filteredInsertionPoints.append(insertionPoint); 2239 filteredInsertionPoints.append(insertionPoint);
2208 } 2240 }
2209 return StaticNodeList::adopt(filteredInsertionPoints); 2241 return StaticNodeList::adopt(filteredInsertionPoints);
2210 } 2242 }
2211 2243
2212 HTMLSlotElement* Node::assignedSlot() const 2244 HTMLSlotElement* Node::assignedSlot() const
2213 { 2245 {
2214 ASSERT(!needsDistributionRecalc()); 2246 ASSERT(!needsDistributionRecalc());
2215 Element* parent = parentElement(); 2247 if (ElementShadow* shadow = parentElementShadow(*this))
2216 if (!parent) 2248 return shadow->assignedSlotFor(*this);
2217 return nullptr; 2249 return nullptr;
2218 if (ElementShadow* shadow = parent->shadow()) { 2250 }
2251
2252 HTMLSlotElement* Node::assignedSlotForBinding()
2253 {
2254 updateDistribution();
2255 if (ElementShadow* shadow = parentElementShadow(*this)) {
2219 if (shadow->isV1() && shadow->isOpen()) 2256 if (shadow->isV1() && shadow->isOpen())
2220 return shadow->assignedSlotFor(*this); 2257 return shadow->assignedSlotFor(*this);
2221 } 2258 }
2222 return nullptr; 2259 return nullptr;
2223 } 2260 }
2224 2261
2225 void Node::setFocus(bool flag) 2262 void Node::setFocus(bool flag)
2226 { 2263 {
2227 document().userActionElements().setFocused(this, flag); 2264 document().userActionElements().setFocused(this, flag);
2228 } 2265 }
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
2370 2407
2371 void showNodePath(const blink::Node* node) 2408 void showNodePath(const blink::Node* node)
2372 { 2409 {
2373 if (node) 2410 if (node)
2374 node->showNodePathForThis(); 2411 node->showNodePathForThis();
2375 else 2412 else
2376 fprintf(stderr, "Cannot showNodePath for (nil)\n"); 2413 fprintf(stderr, "Cannot showNodePath for (nil)\n");
2377 } 2414 }
2378 2415
2379 #endif 2416 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698