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

Unified Diff: third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-svg-length.html

Issue 2521493002: CSS Transitions: Reduce usage of -webkit prefix in layout tests (Closed)
Patch Set: Created 4 years, 1 month 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/transitions/cubic-bezier-overflow-svg-length.html
diff --git a/third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-svg-length.html b/third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-svg-length.html
index 96c045ae569d6be3f5c3ceb5326f591622963a9f..ede9b6b273dabbcf4084286199ba9bd0ccc4ee55 100644
--- a/third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-svg-length.html
+++ b/third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-svg-length.html
@@ -4,7 +4,7 @@
<title>cubic-bezier value overflow: SVG Lengths</title>
<style>
.box {
- -webkit-transition: stroke-dashoffset 1s linear;
+ transition: stroke-dashoffset 1s linear;
stroke-dashoffset: 1;
stroke-dasharray: 15, 15;
stroke-width: 10;
@@ -12,16 +12,16 @@
fill: blue;
}
#box1 {
- -webkit-transition-timing-function: cubic-bezier(0.3, 1.5, 0.8, 1.5);
+ transition-timing-function: cubic-bezier(0.3, 1.5, 0.8, 1.5);
}
#box2 {
- -webkit-transition-timing-function: cubic-bezier(0.4, -0.8, 0.7, 1.7);
+ transition-timing-function: cubic-bezier(0.4, -0.8, 0.7, 1.7);
}
#box3 {
- -webkit-transition-timing-function: cubic-bezier(0.7, -2, 1, -1.5);
+ transition-timing-function: cubic-bezier(0.7, -2, 1, -1.5);
}
#box4 {
- -webkit-transition-timing-function: cubic-bezier(0, 4, 1, -3);
+ transition-timing-function: cubic-bezier(0, 4, 1, -3);
}
.animating > .box {
stroke-dashoffset: 50;

Powered by Google App Engine
This is Rietveld 408576698