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

Side by Side Diff: LayoutTests/compositing/reflections/empty-reflection-with-mask.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 2
3 <!-- this test should render a blank page --> 3 <!-- this test should render a blank page -->
4 4
5 <html> 5 <html>
6 <head> 6 <head>
7 <style> 7 <style>
8 div { 8 div {
9 width: 500px; 9 width: 500px;
10 height: 500px; 10 height: 500px;
11 » » » -webkit-transform:translateZ(0); 11 » » » transform:translateZ(0);
12 -webkit-box-reflect: below 0 -webkit-gradient(linear, le ft top, left bottom, from(transparent), to(rgba(255, 255, 255, 1.0))); 12 -webkit-box-reflect: below 0 -webkit-gradient(linear, le ft top, left bottom, from(transparent), to(rgba(255, 255, 255, 1.0)));
13 } 13 }
14 </style> 14 </style>
15 <script type="text/javascript" charset="utf-8"> 15 <script type="text/javascript" charset="utf-8">
16 if (window.testRunner) 16 if (window.testRunner)
17 testRunner.dumpAsText(); 17 testRunner.dumpAsText();
18 </script> 18 </script>
19 </head> 19 </head>
20 <body> 20 <body>
21 <div></div> 21 <div></div>
22 </body> 22 </body>
23 </html> 23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698