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

Side by Side Diff: LayoutTests/compositing/perspective-origin-overflow-hidden-expected.html

Issue 1030323005: Simplify application of perspective origin. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add three more test expectation changes (added since earlier) Created 5 years, 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2
3 <style>
4 .container {
5 background-color: green;
6 border: 10px solid black;
7 overflow: visible;
8 position: relative;
9 width: 100px;
10 height: 100px;
11 margin: 10px 0;
12 perspective: 500px;
13 }
14 .transformed {
15 background-color: blue;
16 width: 50px;
17 height: 50px;
18 transform: translateZ(-1000px);
19 }
20 </style>
21
22 <div class="container">
23 <div class="transformed"></div>
24 </div>
25
26 <div class="container" style="perspective-origin: 60% 40px">
27 <div class="transformed"></div>
28 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698