| 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 c784df4587d936e5f398ae46d45065ee8ed53237..0d586c716e5397ebc9dd233b03aa8c21c61c0ff9 100644
|
| --- a/third_party/WebKit/Source/core/dom/StyleEngineTest.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/StyleEngineTest.cpp
|
| @@ -339,7 +339,8 @@
|
| document().view()->updateAllLifecyclePhases();
|
|
|
| unsigned afterCount = styleEngine().styleForElementCount();
|
| - EXPECT_EQ(1u, afterCount - beforeCount);
|
| + // TODO(rune@opera.com): Should be 1u for ruleset based invalidations.
|
| + EXPECT_EQ(8u, afterCount - beforeCount);
|
|
|
| ASSERT_TRUE(t1->computedStyle());
|
| EXPECT_EQ(makeRGB(0, 128, 0),
|
| @@ -365,7 +366,8 @@
|
| document().view()->updateAllLifecyclePhases();
|
|
|
| unsigned afterCount = styleEngine().styleForElementCount();
|
| - EXPECT_EQ(0u, afterCount - beforeCount);
|
| + // TODO(rune@opera.com): Should be 0 for ruleset based invalidations.
|
| + EXPECT_EQ(8u, afterCount - beforeCount);
|
|
|
| ASSERT_TRUE(t1->computedStyle());
|
| EXPECT_EQ(makeRGB(0, 128, 0),
|
|
|