- From: Aryeh Gregor <Simetrical+w3c@gmail.com>
- Date: Tue, 17 Aug 2010 15:20:25 -0400
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.
Received on Tuesday, 17 August 2010 12:20:25 UTC