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

Unified Diff: third_party/WebKit/LayoutTests/css3/calc/transitions-dependent.html

Issue 2518943002: 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/css3/calc/transitions-dependent.html
diff --git a/third_party/WebKit/LayoutTests/css3/calc/transitions-dependent.html b/third_party/WebKit/LayoutTests/css3/calc/transitions-dependent.html
index 02d0c2f5478704e2f88f4246adff6a9401249e31..3d7b2bd5a38363708e7d4b43738c847018efa16a 100644
--- a/third_party/WebKit/LayoutTests/css3/calc/transitions-dependent.html
+++ b/third_party/WebKit/LayoutTests/css3/calc/transitions-dependent.html
@@ -2,14 +2,14 @@
<style>
.outerBlock {
border: 1px solid black;
- -webkit-transition: all 1s linear;
+ transition: all 1s linear;
-moz-transition: all 1s linear;
}
.innerBlock {
background-color: green;
height: 100px;
- -webkit-transition: all 1s linear;
+ transition: all 1s linear;
-moz-transition: all 1s linear;
}

Powered by Google App Engine
This is Rietveld 408576698