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

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

Issue 2088453002: Implement the inert attribute (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: esprehn comments and fix layout tests to use testharness.js Created 4 years, 6 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: third_party/WebKit/Source/core/dom/Node.cpp
diff --git a/third_party/WebKit/Source/core/dom/Node.cpp b/third_party/WebKit/Source/core/dom/Node.cpp
index cbc5281a0e8e4324bd92f5e5cdd5b1e76f40b19c..b768c2955dc261efd120a484dea6c8f532dfe58b 100644
--- a/third_party/WebKit/Source/core/dom/Node.cpp
+++ b/third_party/WebKit/Source/core/dom/Node.cpp
@@ -771,6 +771,16 @@ bool Node::isInert() const
const HTMLDialogElement* dialog = document().activeModalDialog();
if (dialog && this != document() && (!canParticipateInFlatTree() || !FlatTreeTraversal::containsIncludingPseudoElement(*dialog, *this)))
return true;
+
+ if (RuntimeEnabledFeatures::inertAttributeEnabled()) {
+ const Node* node = this;
+ do {
+ if (node->isElementNode() && toElement(node)->hasAttribute(HTMLNames::inertAttr))
+ return true;
+ node = node->parentOrShadowHostElement();
+ } while (node);
+ }
+
return document().localOwner() && document().localOwner()->isInert();
}

Powered by Google App Engine
This is Rietveld 408576698