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

Side by Side Diff: LayoutTests/fast/repaint/transform-inline-layered-child.html

Issue 448793002: Unified invalidation for repaint-only style change of layers (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update requestAnimation-translation-leave-traces-expected.txt Created 6 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 <script src="resources/text-based-repaint.js"></script>
3 <script>
4 function repaintTest() {
5 document.getElementById('box').style.transform = 'rotate(30deg)';
6 }
7 onload = runRepaintTest;
8 </script>
9 <style>
10 #box {
11 position: absolute;
12 top: 100px;
13 left: 100px;
14 width: 100px;
15 }
16 #child {
17 position: relative;
18 left: 200px;
19 top: 200px;
20 font-family: Ahem;
21 }
22 </style>
23 Tests if the inline layered child is correctly repainted when container's transf orm changes.
24 Succeeds if the text is completely rotated leaving no residue at the original lo cation.
25 <div id="box">
26 <span id="child">A B C D E F G H I J K L M N O P Q R S T U V W X Y Z</span>
27 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698