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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/subpixel-offset-scaled-transform.html

Issue 2859483004: Revert of Don't pass subpixel offsets through non-translation transforms (Closed)
Patch Set: Created 3 years, 7 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
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .container { position: relative; width: 0; height: 0; }
4 .scale { transform-origin: 0 0; transform: scale(40); }
5 .child { width: 1px; height: 1px; background: blue; position: relative; left: 0. 4px }
6 </style>
7 <div class="container scale">
8 <div class="child"></div>
9 </div>
10 <div class="container" style="top: 50px">
11 <div class="child scale"></div>
12 </div>
13 <script src="resources/text-based-repaint.js"></script>
14 <script>
15 function repaintTest() {
16 for (var container of document.getElementsByClassName('container'))
17 container.style.left = '0.3px';
18 }
19 onload = runRepaintAndPixelTest;
20 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698