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

Unified Diff: third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-color.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-color.html
diff --git a/third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-color.html b/third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-color.html
index 2c2e8b082622fcfb22ad34bc27a90213aa6ed213..5b64587c587c5da35de1e279db80298074689a0c 100644
--- a/third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-color.html
+++ b/third_party/WebKit/LayoutTests/transitions/cubic-bezier-overflow-color.html
@@ -10,7 +10,7 @@
width: 100px;
margin: 10px;
background-color: #404040;
- -webkit-transition: background-color 1s linear;
+ transition: background-color 1s linear;
}
.animating > .box {
background-color: #C0C0C0;
@@ -44,10 +44,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 colored" id="box3" style="-webkit-transition-timing-function: cubic-bezier(0.7, -2, 1, -1.5);"></div>
- <div class="box colored" 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 colored" id="box3" style="transition-timing-function: cubic-bezier(0.7, -2, 1, -1.5);"></div>
+ <div class="box colored" 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