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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/transform-absolute-child.html

Issue 2010243002: Remove paint/invalidation/spv2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 <!-- Based on fast/repaint/transform-absolute-child.html -->
2 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
3 "http://www.w3.org/TR/html4/loose.dtd">
4 <html lang="en">
5 <head>
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
7 <title>Transform with Abs. Pos child</title>
8 <style type="text/css" media="screen">
9 #box {
10 position: relative;
11 margin: 50px;
12 width: 200px;
13 height: 200px;
14 border: 2px solid black;
15 transform: rotate(0deg);
16 }
17 #box.rotated {
18 transform: rotate(40deg);
19 }
20 #child {
21 position: absolute;
22 width: 400px;
23 height: 50px;
24 top: 75px;
25 left: 75px;
26 background-color: gray;
27 }
28 </style>
29 <script src="resources/paint-invalidation-test.js" type="text/javascript" char set="utf-8"></script>
30 <script type="text/javascript" charset="utf-8">
31 function paintInvalidationTest()
32 {
33 document.getElementById('box').className = 'rotated';
34 }
35 </script>
36 </head>
37 <body onload="runPaintInvalidationTest()">
38 <div id="box">
39 <div id="child">
40 </div>
41 </div>
42 </body>
43 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698