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

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

Issue 2751193004: Skip ruleset invalidations for SubtreeStyleChange roots. (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « third_party/WebKit/Source/core/dom/StyleEngine.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/StyleEngineTest.cpp
diff --git a/third_party/WebKit/Source/core/dom/StyleEngineTest.cpp b/third_party/WebKit/Source/core/dom/StyleEngineTest.cpp
index 097aeee00eaa482fad8be66b3495111d88ab4265..85f90fda0a885f6712118611acb58def375743d0 100644
--- a/third_party/WebKit/Source/core/dom/StyleEngineTest.cpp
+++ b/third_party/WebKit/Source/core/dom/StyleEngineTest.cpp
@@ -450,18 +450,19 @@ TEST_F(StyleEngineTest, ModifyStyleRuleMatchedPropertiesCache) {
t1->computedStyle()->visitedDependentColor(CSSPropertyColor));
}
-TEST_F(StyleEngineTest, ScheduleInvaldationAfterSubtreeRecalc) {
+TEST_F(StyleEngineTest, ScheduleInvalidationAfterSubtreeRecalc) {
document().body()->setInnerHTML(
- "<style>"
- " .t1 span { color: green }x"
+ "<style id='s1'>"
+ " .t1 span { color: green }"
" .t2 span { color: green }"
"</style>"
+ "<style id='s2'>div { background: lime }</style>"
"<div id='t1'></div>"
"<div id='t2'></div>");
document().view()->updateAllLifecyclePhases();
Element* t1 = document().getElementById("t1");
- Element* t2 = document().getElementById("t1");
+ Element* t2 = document().getElementById("t2");
ASSERT_TRUE(t1);
ASSERT_TRUE(t2);
@@ -469,6 +470,7 @@ TEST_F(StyleEngineTest, ScheduleInvaldationAfterSubtreeRecalc) {
t1->setAttribute(blink::HTMLNames::classAttr, "t1");
EXPECT_FALSE(document().needsStyleInvalidation());
EXPECT_TRUE(document().childNeedsStyleInvalidation());
+ EXPECT_TRUE(t1->needsStyleInvalidation());
document().view()->updateAllLifecyclePhases();
@@ -484,6 +486,65 @@ TEST_F(StyleEngineTest, ScheduleInvaldationAfterSubtreeRecalc) {
t2->setAttribute(blink::HTMLNames::classAttr, "t2");
EXPECT_FALSE(document().needsStyleInvalidation());
EXPECT_FALSE(document().childNeedsStyleInvalidation());
+
+ document().view()->updateAllLifecyclePhases();
+ HTMLStyleElement* s2 = toHTMLStyleElement(document().getElementById("s2"));
+ ASSERT_TRUE(s2);
+ s2->setDisabled(true);
+ styleEngine().updateActiveStyle();
+ EXPECT_FALSE(document().childNeedsStyleInvalidation());
+ EXPECT_TRUE(document().needsStyleInvalidation());
+
+ document().view()->updateAllLifecyclePhases();
+ styleEngine().platformColorsChanged();
+ s2->setDisabled(false);
+ styleEngine().updateActiveStyle();
+ EXPECT_FALSE(document().childNeedsStyleInvalidation());
+ EXPECT_FALSE(document().needsStyleInvalidation());
+
+ document().view()->updateAllLifecyclePhases();
+ HTMLStyleElement* s1 = toHTMLStyleElement(document().getElementById("s1"));
+ ASSERT_TRUE(s1);
+ s1->setDisabled(true);
+ styleEngine().updateActiveStyle();
+ EXPECT_TRUE(document().childNeedsStyleInvalidation());
+ EXPECT_FALSE(document().needsStyleInvalidation());
+ EXPECT_TRUE(t1->needsStyleInvalidation());
+ EXPECT_TRUE(t2->needsStyleInvalidation());
+
+ document().view()->updateAllLifecyclePhases();
+ styleEngine().platformColorsChanged();
+ s1->setDisabled(false);
+ styleEngine().updateActiveStyle();
+ EXPECT_FALSE(document().childNeedsStyleInvalidation());
+ EXPECT_FALSE(document().needsStyleInvalidation());
+ EXPECT_FALSE(t1->needsStyleInvalidation());
+ EXPECT_FALSE(t2->needsStyleInvalidation());
+}
+
+TEST_F(StyleEngineTest, NoScheduledRuleSetInvalidationsOnNewShadow) {
+ document().body()->setInnerHTML("<div id='host'></div>");
+ Element* host = document().getElementById("host");
+ ASSERT_TRUE(host);
+
+ document().view()->updateAllLifecyclePhases();
+ ShadowRootInit init;
+ init.setMode("open");
+ ShadowRoot* shadowRoot = host->attachShadow(
+ ScriptState::forMainWorld(document().frame()), init, ASSERT_NO_EXCEPTION);
+ ASSERT_TRUE(shadowRoot);
+
+ shadowRoot->setInnerHTML(
+ "<style>"
+ " span { color: green }"
+ " t1 { color: green }"
+ "</style>"
+ "<div id='t1'></div>"
+ "<span></span>");
+
+ styleEngine().updateActiveStyle();
+ EXPECT_FALSE(document().childNeedsStyleInvalidation());
+ EXPECT_FALSE(document().needsStyleInvalidation());
}
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/dom/StyleEngine.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698