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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/HTMLMeterElement/meter-element-repaint-on-update-value.html

Issue 1877763002: METER with -webkit-appearance:none should be rendered with the normal CSS way. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Drop LayoutTheme change, add TODO comments 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 <body> 3 <body>
4 <meter id="native" value="0" min="0" max="100"></meter> 4 <meter id="shadow" value="0" min="0" max="100"></meter>
5 <meter id="shadow" value="0" min="0" max="100" style="-webkit-appearance: none;" ></meter>
6 <script> 5 <script>
7 if (window.testRunner) 6 if (window.testRunner)
8 testRunner.waitUntilDone(); 7 testRunner.waitUntilDone();
9 document.body.onload = function() { 8 document.body.onload = function() {
10 window.setTimeout(function() { 9 window.setTimeout(function() {
11 document.getElementById("native").value = 50;
12 document.getElementById("shadow").value = 50; 10 document.getElementById("shadow").value = 50;
13 window.setTimeout(function() { 11 window.setTimeout(function() {
14 if (window.testRunner) 12 if (window.testRunner)
15 testRunner.notifyDone(); 13 testRunner.notifyDone();
16 }, 0); 14 }, 0);
17 }, 50); 15 }, 50);
18 } 16 }
19 </script> 17 </script>
20 </body> 18 </body>
21 </html> 19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698