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

Side by Side Diff: LayoutTests/compositing/images/content-image.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> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style type="text/css" media="screen"> 4 <style type="text/css" media="screen">
5 .box { 5 .box {
6 content: url('../resources/alpha-gradient-small.png'); 6 content: url('../resources/alpha-gradient-small.png');
7 -webkit-transform: translateZ(0); 7 transform: translateZ(0);
8 } 8 }
9 </style> 9 </style>
10 <script type="text/javascript" charset="utf-8"> 10 <script type="text/javascript" charset="utf-8">
11 if (window.testRunner) 11 if (window.testRunner)
12 testRunner.dumpAsText(); 12 testRunner.dumpAsText();
13 </script> 13 </script>
14 </head> 14 </head>
15 <body> 15 <body>
16 <p>This test should not crash.</p> 16 <p>This test should not crash.</p>
17 <div class="box"></div> 17 <div class="box"></div>
18 </body> 18 </body>
19 </html> 19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698