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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/document-flipped-blocks-writing-mode-scroll.html

Issue 2318033003: Don't un-flip if we're only mapping for one object. (Closed)
Patch Set: Update comment. 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>
2 <script src="../../fast/repaint/resources/text-based-repaint.js"></script>
3 <!-- Tests that the background for a document in flipped blocks writing mode
4 is painted and invalidated properly when scrolled. Test passes if the document
5 background is painted green throughout the margin surrounding the explicitly
6 sized light blue div. -->
7 <style>
8 html {
9 background-color: green;
10 writing-mode: vertical-rl;
11 }
12 </style>
13 <div style="width: 1500px; background: lightBlue;"></div>
14 <script>
15 function repaintTest() {
16 window.scrollTo(-2000, 0);
17 }
18 onload = runRepaintAndPixelTest;
19 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698