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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/control-clip-expected.html

Issue 1994373002: Convert some repaint tests into ref tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
1 <html> 1 <html>
2 <head> 2 <head>
3 <title></title> 3 <title></title>
4 <script src="resources/text-based-repaint.js"></script>
5 <script>
6 function repaintTest()
7 {
8 document.getElementById("popup").selectedIndex = 1;
9 document.getElementById("button").innerText = "SUCCESS";
10 }
11 </script>
12 <style> 4 <style>
13 select, button { display: block; height: 30px; width: 200px; } 5 select, button { display: block; height: 30px; width: 200px; }
14 select { -webkit-appearance: none; } 6 select { -webkit-appearance: none; }
15 </style> 7 </style>
16 </head> 8 </head>
17 <body onload="runRepaintTest()"> 9 <body>
18 <p> 10 <p>
19 Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=13391">http: //bugs.webkit.org/show_bug.cgi?id=13391</a> 11 Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=13391">http: //bugs.webkit.org/show_bug.cgi?id=13391</a>
20 REGRESSION (r18819): Incomplete repaint of button text</i>. 12 REGRESSION (r18819): Incomplete repaint of button text</i>.
21 </p> 13 </p>
22 <p> 14 <p>
23 The popup and the button should say &ldquo;SUCCESS&rdquo; with no sign o f &ldquo;FAILURE&rdquo;. 15 The popup and the button should say &ldquo;SUCCESS&rdquo; with no sign o f &ldquo;FAILURE&rdquo;.
24 </p> 16 </p>
25 <select id="popup"> 17 <select id="popup">
26 <option>FAILURE</option> 18 <option selected>SUCCESS</option>
27 <option>SUCCESS</option>
28 </select> 19 </select>
29 <button id="button">FAILURE</button> 20 <button id="button">SUCCESS</button>
30 </body> 21 </body>
31 </html> 22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698