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

Side by Side Diff: LayoutTests/fast/repaint/button-checkbox-click-method-repaint.html

Issue 291563009: Don't repaint button when its click() method is called (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 document.getElementById('button').click();
7 document.getElementById('checkbox').click();
8 }
9 window.onload = runRepaintTest;
10 </script>
11 <style>
12 #button {
13 width: 100px;
14 height: 50px;
15 }
16 #checkbox {
17 width: 30px;
18 height: 30px;
19 }
20 </style>
21 <button id="button">Button</button><br>
22 <input id="checkbox" type="checkbox">
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698