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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/vertical-overflow-same-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 <html><head>
3 <style>
4 .container {
5 margin: 20px;
6 width: 300px;
7 height: 200px;
8 border: 1px solid black;
9 overflow: scroll;
10 }
11 .vertical-rl {
12 -webkit-writing-mode: vertical-rl;
13 }
14 .offset {
15 width: 2000px;
16 height: 100px;
17 }
18 .target {
19 width: 100px;
20 height: 100px;
21 background-color: orange;
22 }
23 </style>
24 </head>
25 <body>
26 <div class="vertical-rl container">
27 <div class="offset"></div>
28 <div class="target"></div>
29 </div>
30 An orange rect should be painted.<br/>
31 In DumpRenderTree, there should be repaint logs of 100x100 rect. We don't ca re how many times is the log dumpped.
32 <script>
33 var container = document.getElementsByClassName("container")[0];
34 onload = function() {
35 container.scrollLeft = 0;
36 };
37 </script>
38 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698