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

Side by Side Diff: ManualTests/transition-delay.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove duplicate transform Created 6 years, 2 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd"> 2 "http://www.w3.org/TR/html4/loose.dtd">
3 3
4 <html lang="en"> 4 <html lang="en">
5 <head> 5 <head>
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
7 <title>Transition Delay</title> 7 <title>Transition Delay</title>
8 <style> 8 <style>
9 #container { 9 #container {
10 position: absolute; 10 position: absolute;
11 width: 500px; 11 width: 500px;
12 height: 340px; 12 height: 340px;
13 border: 1px solid black; 13 border: 1px solid black;
14 } 14 }
15 15
16 .box { 16 .box {
17 position: relative; 17 position: relative;
18 width: 100px; 18 width: 100px;
19 height: 100px; 19 height: 100px;
20 margin: 10px; 20 margin: 10px;
21 background-color: #66F; 21 background-color: #66F;
22 z-index: 0; 22 z-index: 0;
23 } 23 }
24 24
25 #container.slide > .box { 25 #container.slide > .box {
26 -webkit-transform: translateX(380px); 26 transform: translateX(380px);
27 -webkit-transition-property: -webkit-transform; 27 -webkit-transition-property: -webkit-transform;
alancutter (OOO until 2018) 2014/10/14 05:13:49 Need to change the transition property target as w
28 -webkit-transition-duration: 2s; 28 -webkit-transition-duration: 2s;
29 } 29 }
30 30
31 #box1 { 31 #box1 {
32 -webkit-transition-delay: 200ms; 32 -webkit-transition-delay: 200ms;
33 } 33 }
34 34
35 #box2 { 35 #box2 {
36 -webkit-transition-delay: 2s; 36 -webkit-transition-delay: 2s;
37 } 37 }
(...skipping 12 matching lines...) Expand all
50 </div> 50 </div>
51 <div class="box" id="box2"> 51 <div class="box" id="box2">
52 Delay: 2s 52 Delay: 2s
53 </div> 53 </div>
54 <div class="box" id="box3"> 54 <div class="box" id="box3">
55 Delay: 4s 55 Delay: 4s
56 </div> 56 </div>
57 </div> 57 </div>
58 </body> 58 </body>
59 </html> 59 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698