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

Side by Side Diff: LayoutTests/compositing/repaint/layer-repaint-rects.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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//EN" 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd"> 2 "http://www.w3.org/TR/html4/strict.dtd">
3 <html> 3 <html>
4 <head> 4 <head>
5 <meta http-equiv="Content-type" content="text/html; charset=utf-8"> 5 <meta http-equiv="Content-type" content="text/html; charset=utf-8">
6 <title>Layer repaint</title> 6 <title>Layer repaint</title>
7 <style type="text/css" media="screen"> 7 <style type="text/css" media="screen">
8 body { 8 body {
9 margin: 0; 9 margin: 0;
10 } 10 }
(...skipping 10 matching lines...) Expand all
21 position: absolute; 21 position: absolute;
22 background-color: #8888FF; 22 background-color: #8888FF;
23 width: 200px; 23 width: 200px;
24 height: 100px; 24 height: 100px;
25 } 25 }
26 26
27 #translate { 27 #translate {
28 top: 10px; 28 top: 10px;
29 } 29 }
30 #container.over #translate { 30 #container.over #translate {
31 -webkit-transform: translate(200px, 0px); 31 transform: translate(200px, 0px);
32 -webkit-transition-property: -webkit-transform; 32 -webkit-transition-property: -webkit-transform;
33 -webkit-transition-duration: 0.1s; 33 -webkit-transition-duration: 0.1s;
34 } 34 }
35 #widen { 35 #widen {
36 top: 120px; 36 top: 120px;
37 background-color: red !important; 37 background-color: red !important;
38 } 38 }
39 #container.over #widen { 39 #container.over #widen {
40 width: 400px; 40 width: 400px;
41 -webkit-transition-property: width; 41 -webkit-transition-property: width;
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 73
74 <p>Tests repaint after a layer stops compositing. You should see no red belo w after the end of the transition.</p> 74 <p>Tests repaint after a layer stops compositing. You should see no red belo w after the end of the transition.</p>
75 <div id="container"> 75 <div id="container">
76 <div id="translate"></div> 76 <div id="translate"></div>
77 <div id="widen"></div> 77 <div id="widen"></div>
78 </div> 78 </div>
79 79
80 <div id="tester"></div> 80 <div id="tester"></div>
81 </body> 81 </body>
82 </html> 82 </html>
OLDNEW
« no previous file with comments | « LayoutTests/compositing/repaint/layer-repaint.html ('k') | LayoutTests/compositing/repaint/newly-composited-on-scroll.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698