Index: LayoutTests/transitions/webkit-clip-path-equality.html |
diff --git a/LayoutTests/transitions/webkit-clip-path-equality.html b/LayoutTests/transitions/webkit-clip-path-equality.html |
index 20a5be6cb33317a7bdad4e2ea3db5bb4b9b30362..3206b14419029e833d1e9f94c16ace5dc9f08023 100644 |
--- a/LayoutTests/transitions/webkit-clip-path-equality.html |
+++ b/LayoutTests/transitions/webkit-clip-path-equality.html |
@@ -1,7 +1,7 @@ |
<!DOCTYPE html> |
<style> |
#target { |
- -webkit-clip-path: circle(0px, 0px, 0px); |
+ -webkit-clip-path: circle(0px at 0px 0px); |
transition: -webkit-clip-path 1s; |
} |
</style> |
@@ -25,7 +25,7 @@ function step1() { |
'PASS - No transition started.' : |
'FAIL - Unexpected transition started.'; |
} |
- target.style.webkitClipPath = 'circle(0px, 0px, 200px)'; |
+ target.style.webkitClipPath = 'circle(200px at 0px 0px)'; |
requestAnimationFrame(step2); |
} |
function step2() { |