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

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

Powered by Google App Engine
This is Rietveld 408576698