| OLD | NEW |
| 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> |
| OLD | NEW |