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(); |
}); |