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

Side by Side Diff: LayoutTests/fast/sub-pixel/nested-transparency-layer-clipping-expected.html

Issue 1304503002: Fix sub-pixel handling of transparency boxes in DPL (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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 <style>
3 body {
4 position: relative;
5 left: 1px;
6 }
7 .parent {
8 display: inline-block;
9 transform: scale(5);
10 opacity: 0.8;
11 }
12 .child {
13 position: absolute;
14 width: 10px;
15 height: 10px;
16 background: red;
17 border: 1px solid black;
18 }
19 </style>
20 <div class="parent">
21 <div class="child"></div>
22 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698