Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / HTMLProgressElement / indeterminate-progress-001.html
blobcb7353e822fd4a0fc6fba1f8af33e2218eb6ef4d
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 progress { -webkit-appearance: none; border: 2px solid red; }
6 progress:indeterminate { border: 2px solid blue; }
7 </style>
8 <script>
9 window.onload = function() {
10 document.getElementById("dymanicindeterminate").removeAttribute("value");
11 document.getElementById("dymanicdeterminate").setAttribute("value", 0.5);
13 </script>
14 </head>
15 <body>
16 <progress id="indeterminate"></progress>
17 <br>
18 <progress id="dymanicindeterminate" value=0.5></progress>
19 <br>
20 <progress id="dymanicdeterminate"></progress>
21 </body>
22 </html>