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

Side by Side Diff: LayoutTests/fast/repaint/change-text-content-and-background-color.html

Issue 298973011: Fix under-repaint in non-RAL mode (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: NeedsRebaseline on mac 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 var input = document.getElementById('input');
7 input.style.backgroundColor = 'green';
8 input.value = 'NEW';
9 }
10 window.onload = runRepaintTest;
11 </script>
12 <style>
13 input {
14 background-color: red;
15 position: absolute;
16 font-size: 20px;
17 padding: 20px;
18 width: 200px;
19 }
20 </style>
21 <input id="input" type="text" value="OLD">
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/repaint/change-text-content-and-background-color-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698