Index: third_party/WebKit/Source/core/layout/LayoutProgressTest.cpp |
diff --git a/third_party/WebKit/Source/core/layout/LayoutProgressTest.cpp b/third_party/WebKit/Source/core/layout/LayoutProgressTest.cpp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5b14dbc5522b79bc7886a46f96e66961d9a944c1 |
--- /dev/null |
+++ b/third_party/WebKit/Source/core/layout/LayoutProgressTest.cpp |
@@ -0,0 +1,43 @@ |
+// 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/layout/LayoutProgress.h" |
+ |
+#include "core/HTMLNames.h" |
+#include "core/html/HTMLElement.h" |
+#include "core/layout/LayoutTestHelper.h" |
+#include "testing/gtest/include/gtest/gtest.h" |
+ |
+namespace blink { |
+ |
+class LayoutProgressTest : public RenderingTest { |
+public: |
+ static bool isAnimationTimerActive(const LayoutProgress* o) { return o->isAnimationTimerActive(); } |
+}; |
+ |
+TEST_F(LayoutProgressTest, AnimationScheduling) |
+{ |
+ document().documentElement()->setInnerHTML( |
+ String::fromUTF8("<progress id=\"progressElement\" value=0.3 max=1.0></progress>"), ASSERT_NO_EXCEPTION); |
+ document().view()->updateAllLifecyclePhases(); |
Xianzhu
2016/02/22 23:17:27
Nits:
- You can use RenderingTest::setBodyInnerHTM
Stephen Chennney
2016/02/23 19:24:01
Acknowledged.
|
+ Element* progressElement = document().getElementById(AtomicString("progressElement")); |
+ LayoutProgress* layoutProgress = toLayoutProgress(progressElement->layoutObject()); |
+ |
+ // Verify that we do not schedule a timer for a determinant progress element |
+ EXPECT_FALSE(LayoutProgressTest::isAnimationTimerActive(layoutProgress)); |
+ |
+ progressElement->removeAttribute("value"); |
+ document().view()->updateAllLifecyclePhases(); |
+ |
+ // Verify that we schedule a timer for an indeterminant progress element |
+ EXPECT_TRUE(LayoutProgressTest::isAnimationTimerActive(layoutProgress)); |
+ |
+ progressElement->setAttribute(HTMLNames::valueAttr, "0.7"); |
+ document().view()->updateAllLifecyclePhases(); |
+ |
+ // Verify that we cancel the timer for a determinant progress element |
+ EXPECT_FALSE(LayoutProgressTest::isAnimationTimerActive(layoutProgress)); |
+} |
+ |
+} // namespace blink |