[Webkit-unassigned] [Bug 47407] New: html5 progress element is not scriptable or javascript not working

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Oct 8 03:52:41 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=47407

           Summary: html5 progress element is not scriptable or javascript
                    not working
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
               URL: http://JesusnJim.com/common/html5.html
        OS/Version: Windows XP
            Status: UNCONFIRMED
          Severity: Major
          Priority: P2
         Component: JavaScriptGlue
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: jmichae3 at yahoo.com


webkit 534.3 google chrome. tried the following in an html5 document.  it didn't do anything to the progress control.

<form>
<progress id="pg" value="30" max="100" style="width:300px;color:#0f0;">the progress control is not supported by this browser.</progress>
<select id="s" onChange="switch()">
<option value="0">0%</option>
<option value="10">10%</option>
<option value="20">20%</option>
<option value="30">30%</option>
<option value="40">40%</option>
<option value="50">50%</option>
<option value="60">60%</option>
<option value="70">70%</option>
<option value="80">80%</option>
<option value="90">90%</option>
<option value="100">100%</option>
</select>
<script type="text/javascript">
function switch() {
var pg=document.getElementById('pg');
var s=document.getElementById('s');
pg.value=parseInt(s.options[s.selectedIndex].text);
}
</script>
</form>


in fact, I can't seem to get javascript to work on chrome yet.  more testing.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list