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

Side by Side Diff: third_party/WebKit/LayoutTests/transforms/transforms-with-opacity.html

Issue 2547723002: Merge LayoutTests fast/transforms in transforms (Closed)
Patch Set: Fix a bad path reference. Created 4 years 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 <html> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 div { 4 div {
5 width:100px; 5 width:100px;
6 height:100px; 6 height:100px;
7 border:10px solid black; 7 border:10px solid black;
8 background-color:skyblue; 8 background-color:skyblue;
9 } 9 }
10 10
11 .transparent { 11 .transparent {
12 opacity: 0.5; 12 opacity: 0.5;
13 } 13 }
14 14
15 .translated { 15 .translated {
16 transform:translate(120px, -10px) 16 transform:translate(120px, -10px)
17 } 17 }
18 </style> 18 </style>
19 </head> 19 </head>
20 <body> 20 <body>
21 In the example below you should see three blocks right next to one another, and they should all be partially transparent. 21 In the example below you should see three blocks right next to one another, and they should all be partially transparent.
22 22
23 <div class="transparent"> 23 <div class="transparent">
24 <div class="translated"><div class="translated"></div></div> 24 <div class="translated"><div class="translated"></div></div>
25 </div> 25 </div>
26 26
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698