TextBox setDisable sets the disabled *property* (i.e. elem.disabled=true). What you see here is a re-serialization of the DOM by your development tools.
As for the "markup is / markup should be": in SGML-based-HTML (something no single browser ever implemented), the markup could be either <input disabled> or <input disabled="disabled">. In HTML5, it can be either <input disabled>, <input disabled=""> or <input disabled="disabled">, but the value of the attribute actually doesn't matter (only those 3 forms don't generate a "parse error", or in other words are the only "conformant" forms). -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
