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

Unified Diff: LayoutTests/transitions/webkit-clip-path-equality.html

Issue 200633005: [CSS Shapes] Remove deprecated shapes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix test expectations Created 6 years, 9 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: 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() {

Powered by Google App Engine
This is Rietveld 408576698