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

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

Issue 1757503002: Re-collect rule features for watched selectors. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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/CSSSelectorWatchTest.cpp
diff --git a/third_party/WebKit/Source/core/dom/CSSSelectorWatchTest.cpp b/third_party/WebKit/Source/core/dom/CSSSelectorWatchTest.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..fe7fcd4b144a528b3e2cbc23662b7903bf97c7a4
--- /dev/null
+++ b/third_party/WebKit/Source/core/dom/CSSSelectorWatchTest.cpp
@@ -0,0 +1,93 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "core/dom/CSSSelectorWatch.h"
+
+#include "core/dom/Document.h"
+#include "core/dom/StyleEngine.h"
+#include "core/frame/FrameView.h"
+#include "core/html/HTMLElement.h"
+#include "core/testing/DummyPageHolder.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace blink {
+
+class CSSSelectorWatchTest : public ::testing::Test {
+protected:
+ void SetUp() override;
+
+ Document& document() { return m_dummyPageHolder->document(); }
+ StyleEngine& styleEngine() { return document().styleEngine(); }
+
+ static const HashSet<String> addedSelectors(const CSSSelectorWatch& watch) { return watch.m_addedSelectors; }
+ static const HashSet<String> removedSelectors(const CSSSelectorWatch& watch) { return watch.m_removedSelectors; }
+ static void clearAddedRemoved(CSSSelectorWatch&);
+
+private:
+ OwnPtr<DummyPageHolder> m_dummyPageHolder;
+};
+
+void CSSSelectorWatchTest::SetUp()
+{
+ m_dummyPageHolder = DummyPageHolder::create(IntSize(800, 600));
+}
+
+void CSSSelectorWatchTest::clearAddedRemoved(CSSSelectorWatch& watch)
+{
+ watch.m_addedSelectors.clear();
+ watch.m_removedSelectors.clear();
+}
+
+TEST_F(CSSSelectorWatchTest, RecalcOnDocumentChange)
+{
+ document().body()->setInnerHTML(
+ "<div>"
+ " <span id='x' class='a'></span>"
+ " <span id='y' class='b'><span></span></span>"
+ " <span id='z'><span></span></span>"
+ "</div>", ASSERT_NO_EXCEPTION);
+
+ CSSSelectorWatch& watch = CSSSelectorWatch::from(document());
+
+ Vector<String> selectors;
+ selectors.append(".a");
+ watch.watchCSSSelectors(selectors);
+
+ document().view()->updateAllLifecyclePhases();
+
+ selectors.clear();
+ selectors.append(".b");
+ selectors.append(".c");
+ selectors.append("#nomatch");
+ watch.watchCSSSelectors(selectors);
+
+ document().view()->updateAllLifecyclePhases();
+
+ Element* x = document().getElementById("x");
+ Element* y = document().getElementById("y");
+ Element* z = document().getElementById("z");
+ ASSERT_TRUE(x);
+ ASSERT_TRUE(y);
+ ASSERT_TRUE(z);
+
+ x->removeAttribute(HTMLNames::classAttr);
+ y->removeAttribute(HTMLNames::classAttr);
+ z->setAttribute(HTMLNames::classAttr, "c");
+
+ clearAddedRemoved(watch);
+
+ unsigned beforeCount = styleEngine().styleForElementCount();
+ document().view()->updateAllLifecyclePhases();
+ unsigned afterCount = styleEngine().styleForElementCount();
+
+ EXPECT_EQ(2u, afterCount - beforeCount);
+
+ EXPECT_EQ(1u, addedSelectors(watch).size());
+ EXPECT_TRUE(addedSelectors(watch).contains(".c"));
+
+ EXPECT_EQ(1u, removedSelectors(watch).size());
+ EXPECT_TRUE(removedSelectors(watch).contains(".b"));
+}
+
+} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/dom/CSSSelectorWatch.cpp ('k') | third_party/WebKit/Source/core/dom/Document.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698