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

Unified Diff: third_party/WebKit/LayoutTests/animations/transition-zoomed-length.html

Issue 2680923005: Refactor CSS Transitions to use CSSInterpolationTypes instead of AnimatableValues (Closed)
Patch Set: cleanups Created 3 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/LayoutTests/animations/transition-zoomed-length.html
diff --git a/third_party/WebKit/LayoutTests/animations/transition-zoomed-length.html b/third_party/WebKit/LayoutTests/animations/transition-zoomed-length.html
index 6a8e9f4f332fab740435043189d4bf2d498f759f..516d4d99b96a167481583d0ae20733ac74e9ce17 100644
--- a/third_party/WebKit/LayoutTests/animations/transition-zoomed-length.html
+++ b/third_party/WebKit/LayoutTests/animations/transition-zoomed-length.html
@@ -3,7 +3,6 @@
<script src="../resources/testharnessreport.js"></script>
<style>
#target {
- transition: 1s;
alancutter (OOO until 2018) 2017/02/16 04:58:18 This test was broken. We can't have transitions en
border-style: solid;
outline-style: solid;
column-rule-style: solid;
@@ -72,6 +71,7 @@ setup(() => {
target.style[property] = '10px';
expected[property] = getComputedStyle(target)[property];
}
+ target.style.transition = '1s';
internals.setZoomFactor(2);
});

Powered by Google App Engine
This is Rietveld 408576698