| Index: Source/core/dom/Node.cpp
|
| diff --git a/Source/core/dom/Node.cpp b/Source/core/dom/Node.cpp
|
| index 6814c96b974c7e534a18b5ae7e3611e8e49e6477..e84d252b1b40fcfbe75f55c588dfb102354faa37 100644
|
| --- a/Source/core/dom/Node.cpp
|
| +++ b/Source/core/dom/Node.cpp
|
| @@ -2720,6 +2720,13 @@ void Node::setIsCustomElement()
|
| setFlag(IsCustomElement);
|
| }
|
|
|
| +void Node::setIsUpgradedCustomElement()
|
| +{
|
| + ASSERT(isCustomElement());
|
| + setFlag(IsUpgradedCustomElement);
|
| + setNeedsStyleRecalc(); // :unresolved has changed
|
| +}
|
| +
|
| } // namespace WebCore
|
|
|
| #ifndef NDEBUG
|
|
|