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

Side by Side Diff: LayoutTests/css3/blending/background-blend-mode-single-accelerated-element-expected.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> 4 <style>
5 div { 5 div {
6 width: 200px; 6 width: 200px;
7 height: 200px; 7 height: 200px;
8 -webkit-transform: rotateY(30deg) rotateX(-30deg); 8 transform: rotateY(30deg) rotateX(-30deg);
9 background: rgba(200, 200, 156, 1); 9 background: rgba(200, 200, 156, 1);
10 } 10 }
11 11
12 body { 12 body {
13 background: green; 13 background: green;
14 } 14 }
15 15
16 </style> 16 </style>
17 <!-- Test to validate that background blending is working properly for hardware accelerated elements. 17 <!-- Test to validate that background blending is working properly for hardware accelerated elements.
18 This also validates that background layers don't blend with any of the conte nt below the accelerated element. --> 18 This also validates that background layers don't blend with any of the conte nt below the accelerated element. -->
19 </head> 19 </head>
20 <body> 20 <body>
21 <div></div> 21 <div></div>
22 </body> 22 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698