| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="resources/polyfill.js"></script> | |
| 5 <style> | 4 <style> |
| 6 progress { | 5 progress { |
| 7 -webkit-appearance: none; | 6 -webkit-appearance: none; |
| 8 } | 7 } |
| 9 </style> | 8 </style> |
| 10 </head> | 9 </head> |
| 11 | 10 |
| 12 <body> | 11 <body> |
| 13 | 12 |
| 14 <p>When progress became 'indeterminate' or not-'indeterminate', distribution sho
uld happen.</p> | 13 <p>When progress became 'indeterminate' or not-'indeterminate', distribution sho
uld happen.</p> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 29 setTimeout(function() { | 28 setTimeout(function() { |
| 30 progress1.removeAttribute('value'); | 29 progress1.removeAttribute('value'); |
| 31 progress2.value = '70'; | 30 progress2.value = '70'; |
| 32 testRunner.notifyDone(); | 31 testRunner.notifyDone(); |
| 33 }, 0); | 32 }, 0); |
| 34 | 33 |
| 35 </script> | 34 </script> |
| 36 </body> | 35 </body> |
| 37 </html> | 36 </html> |
| 38 | 37 |
| OLD | NEW |