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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/viewport-gradient-background-html-resize.html

Issue 2699463004: Fix gradient background invalidation when HTML size changes (Closed)
Patch Set: - Created 3 years, 10 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 <style>
3 body {
4 margin: 0;
5 background: linear-gradient(to bottom, blue, cyan);
6 }
7 </style>
8 <div id="div" style="height: 50px"></div>
9 </style>
10 <script src="resources/text-based-repaint.js"></script>
11 <script>
12 function repaintTest() {
13 div.style.height = '200px';
14 }
15 onload = runRepaintAndPixelTest;
16 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698