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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/transform-inline-layered-child-expected.html

Issue 2321183002: Move repaint tests (except for svg/) to paint/invalidation (Closed)
Patch Set: - Created 4 years, 3 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script src="../../resources/ahem.js"></script> 2 <script src="../../resources/ahem.js"></script>
3 <style> 3 <style>
4 #box { 4 #box {
5 position: absolute; 5 position: absolute;
6 top: 100px; 6 top: 100px;
7 left: 100px; 7 left: 100px;
8 width: 100px; 8 width: 100px;
9 transform: rotate(30deg); 9 transform: rotate(30deg);
10 } 10 }
11 #child { 11 #child {
12 position: relative; 12 position: relative;
13 left: 200px; 13 left: 200px;
14 top: 200px; 14 top: 200px;
15 font-family: Ahem; 15 font-family: Ahem;
16 } 16 }
17 </style> 17 </style>
18 Tests if the inline layered child is correctly repainted when container's transf orm changes. 18 Tests if the inline layered child is correctly repainted when container's transf orm changes.
19 Succeeds if the text is completely rotated leaving no residue at the original lo cation. 19 Succeeds if the text is completely rotated leaving no residue at the original lo cation.
20 <div id="box"> 20 <div id="box">
21 <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> 21 <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>
22 </div> 22 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698