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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/fixed-tranformed-expected.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 <!DOCTYPE html>
2
3 <html>
4 <head>
5 <style type="text/css" media="screen">
6 body {
7 height: 1000px;
8 margin: 0;
9 }
10 #test {
11 width: 100px;
12 height: 100px;
13 background-color: green;
14 position: absolute;
15 top: 110px;
16 left: 60px;
17 }
18 </style>
19 <script type="text/javascript">
20 function setupTest() {
21 window.scrollBy(0, 50);
22 };
23 window.addEventListener('load', setupTest, false);
24 </script>
25 </head>
26 <body>
27
28 <!--
29 https://bugs.webkit.org/show_bug.cgi?id=36686
30 Test repainting of a fixed-position element with a transform.
31 The box should be entirely green.
32 -->
33 <div id="test"></div>
34
35 </body>
36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698