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

Unified Diff: third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-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-length.html
diff --git a/third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-length.html b/third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-length.html
index 0f8b0ce58359913c8d3021d48e7a305785a0bc60..b1c4c04395ec52884af5574509de2de0fb8443bb 100644
--- a/third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-length.html
+++ b/third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-length.html
@@ -10,7 +10,7 @@
width: 100px;
margin: 10px;
background-color: blue;
- -webkit-transition: left 1s linear;
+ transition: left 1s linear;
}
.animating > .box {
left: 400px;
@@ -41,10 +41,10 @@
</head>
<body>
<div id="container">
- <div class="box" id="box1" style="-webkit-transition-timing-function: cubic-bezier(0.3, 1.5, 0.8, 1.5);"></div>
- <div class="box" id="box2" style="-webkit-transition-timing-function: cubic-bezier(0.4, -0.8, 0.7, 1.7);"></div>
- <div class="box" id="box3" style="-webkit-transition-timing-function: cubic-bezier(0.7, -2, 1, -1.5);"></div>
- <div class="box" id="box4" style="-webkit-transition-timing-function: cubic-bezier(0, 4, 1, -3);"></div>
+ <div class="box" id="box1" style="transition-timing-function: cubic-bezier(0.3, 1.5, 0.8, 1.5);"></div>
+ <div class="box" id="box2" style="transition-timing-function: cubic-bezier(0.4, -0.8, 0.7, 1.7);"></div>
+ <div class="box" id="box3" style="transition-timing-function: cubic-bezier(0.7, -2, 1, -1.5);"></div>
+ <div class="box" id="box4" style="transition-timing-function: cubic-bezier(0, 4, 1, -3);"></div>
</div>
<div id="result"></div>
</body>

Powered by Google App Engine
This is Rietveld 408576698