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

Unified Diff: third_party/WebKit/LayoutTests/animations/transform-responsive-neutral-keyframe.html

Issue 2587873002: CSS Animations: transform-responsive-neutral-keyframe.html is slow test (Closed)
Patch Set: Created 4 years 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/LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/animations/transform-responsive-neutral-keyframe.html
diff --git a/third_party/WebKit/LayoutTests/animations/transform-responsive-neutral-keyframe.html b/third_party/WebKit/LayoutTests/animations/transform-responsive-neutral-keyframe.html
index eeed42e44ea4d7d5374144e4a9bf23dc8a40f20a..d67cead40b1905e0761907f822aa02632bab7502 100644
--- a/third_party/WebKit/LayoutTests/animations/transform-responsive-neutral-keyframe.html
+++ b/third_party/WebKit/LayoutTests/animations/transform-responsive-neutral-keyframe.html
@@ -1,4 +1,5 @@
<!DOCTYPE html>
+<meta charset="utf-8">
<style>
div {
position: absolute;
@@ -21,6 +22,7 @@ div {
<div id="target"></div>
<div id="expected"></div>
<script>
+'use strict';
if (window.testRunner)
testRunner.waitUntilDone();
@@ -30,7 +32,7 @@ function waitForCompositor() {
waitForCompositor().then(() => {
target.style.transform = 'translateX(50px)';
-}).then(() => waitForCompositor()).then(() => {
+}).then(waitForCompositor).then(() => {
if (window.testRunner)
testRunner.notifyDone();
});
« no previous file with comments | « third_party/WebKit/LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698