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

Side by Side Diff: LayoutTests/compositing/transitions/opacity-on-inline.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> 1 <!DOCTYPE>
2 2
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>Opacity on inline</title> 6 <title>Opacity on inline</title>
7 <style type="text/css" media="screen"> 7 <style type="text/css" media="screen">
8 #fader { 8 #fader {
9 -webkit-transition: opacity 1s; 9 -webkit-transition: opacity 1s;
10 border: 1px solid black; 10 border: 1px solid black;
(...skipping 11 matching lines...) Expand all
22 var testSpan = document.getElementById('fader'); 22 var testSpan = document.getElementById('fader');
23 testSpan.className = 'faded'; 23 testSpan.className = 'faded';
24 }, false); 24 }, false);
25 </script> 25 </script>
26 </head> 26 </head>
27 <body> 27 <body>
28 28
29 <p>This should not assert in debug builds</p> 29 <p>This should not assert in debug builds</p>
30 <span id="fader">Opacity fade on inline</span> 30 <span id="fader">Opacity fade on inline</span>
31 31
32 <div style="-webkit-transform: translateZ(0)"> <!-- throw the page into composit ing mode --> 32 <div style="transform: translateZ(0)"> <!-- throw the page into compositing mode -->
33 </div> 33 </div>
34 34
35 </body> 35 </body>
36 </html> 36 </html>
OLDNEW
« no previous file with comments | « LayoutTests/compositing/tiled-layers-hidpi.html ('k') | LayoutTests/compositing/transitions/scale-transition-no-start.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698