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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/transform-relative-position-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 PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/st rict.dtd"> 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/st rict.dtd">
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Relative Position Transform Redraw</title> 4 <title>Relative Position Transform Redraw</title>
5 <meta http-equiv="content-type" content="text/html; charset=utf-8"> 5 <meta http-equiv="content-type" content="text/html; charset=utf-8">
6 <style type="text/css"> 6 <style type="text/css">
7 #box { 7 #box {
8 position:relative; 8 position:relative;
9 top: 100px; 9 top: 100px;
10 left: 100px; 10 left: 100px;
11 height: 200px; 11 height: 200px;
12 width: 200px; 12 width: 200px;
13 background-color: #CCC; 13 background-color: #CCC;
14 border: 1px solid black; 14 border: 1px solid black;
15 transform: rotate(45deg); 15 transform: rotate(45deg);
16 } 16 }
17 </style> 17 </style>
18 </head> 18 </head>
19 <body> 19 <body>
20 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=17840">https://bu gs.webkit.org/show_bug.cgi?id=17840</a>. The rotated box should be correctly red rawn.</p> 20 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=17840">https://bu gs.webkit.org/show_bug.cgi?id=17840</a>. The rotated box should be correctly red rawn.</p>
21 <div id="box"> 21 <div id="box">
22 </div> 22 </div>
23 </body> 23 </body>
24 </html> 24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698