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

Side by Side Diff: LayoutTests/fast/repaint/resize-with-border.html

Issue 312193004: Don't force full repaint on size change in style (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="resources/text-based-repaint.js"></script>
3 <script>
4 function repaintTest()
5 {
6 document.getElementById('div').style.width = '400px';
7 }
8 window.onload = runRepaintTest;
9 </script>
10 <style>
11 body {
12 margin: 0;
13 }
14 div {
15 width: 200px;
16 height: 200px;
17 border: green 10px solid;
18 }
19 </style>
20 <div id="div"></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698