I'm probably missing something obvious because I'm not a DOM expert. However when reviewing the meter element I note the following:

interface HTMLMeterElement : HTMLElement {
           attribute long value;
           attribute long min;
           attribute long max;
           attribute long low;
           attribute long high;
           attribute long optimum;
};


However, "User agents must parse the min, max, value, low, high, and optimum attributes using the rules for parsing floating point number values."

Is long in fact the appropriate type for something that's parsed as a floating point number? Should it be double or float or real or some such?

--
Elliotte Rusty Harold  [EMAIL PROTECTED]
Java I/O 2nd Edition Just Published!
http://www.cafeaulait.org/books/javaio2/
http://www.amazon.com/exec/obidos/ISBN=0596527500/ref=nosim/cafeaulaitA/

Reply via email to