[whatwg] Case canonicalization for reflected enumerated attributes limited to known values
Aryeh Gregor
Simetrical+w3c at gmail.com
Tue Aug 17 12:20:25 PDT 2010
Actually, it goes further than that. Everyone but IE seems to just
return the value of the content attribute when you do a get on the IDL
attribute:
<!doctype html>
<script>
var el = document.createElement("form");
el.setAttribute("method", "invalid value");
alert(el.method);
</script>
IE alerts "get", everyone else alerts "invalid value". Are non-IE
implementers interested in changing to match IE here? IE's behavior
seems more useful.
More information about the whatwg
mailing list