[whatwg] meter: long vs. float

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  elharo at metalab.unc.edu
Java I/O 2nd Edition Just Published!
http://www.cafeaulait.org/books/javaio2/
http://www.amazon.com/exec/obidos/ISBN=0596527500/ref=nosim/cafeaulaitA/

Received on Monday, 23 April 2007 14:54:44 UTC