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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/control-clip.html

Issue 2321183002: Move repaint tests (except for svg/) to paint/invalidation (Closed)
Patch Set: - Created 4 years, 3 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> 4 <script src="resources/text-based-repaint.js"></script>
5 <script> 5 <script>
6 function repaintTest() 6 function repaintTest()
7 { 7 {
8 document.getElementById("popup").selectedIndex = 1; 8 document.getElementById("popup").selectedIndex = 1;
9 document.getElementById("button").innerText = "SUCCESS"; 9 document.getElementById("button").innerText = "SUCCESS";
10 } 10 }
(...skipping 11 matching lines...) Expand all
22 <p> 22 <p>
23 The popup and the button should say &ldquo;SUCCESS&rdquo; with no sign o f &ldquo;FAILURE&rdquo;. 23 The popup and the button should say &ldquo;SUCCESS&rdquo; with no sign o f &ldquo;FAILURE&rdquo;.
24 </p> 24 </p>
25 <select id="popup"> 25 <select id="popup">
26 <option>FAILURE</option> 26 <option>FAILURE</option>
27 <option>SUCCESS</option> 27 <option>SUCCESS</option>
28 </select> 28 </select>
29 <button id="button">FAILURE</button> 29 <button id="button">FAILURE</button>
30 </body> 30 </body>
31 </html> 31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698