2.1.38 [W3C-HTML52] Section 4.10.5. The input element

V0144: The value sanitization algorithm is not invoked when the input type attribute changes state

The specification states:

 4.10.5 The input element
     ...
     When an input element's type attribute changes state, the user agent must run the 
     following steps:
         ...
         ... Invoke the value sanitization algorithm, if one is defined for the type 
         attribute's new state.

EdgeHTML Mode

The value sanitization algorithm is not invoked when the input type attribute changes state (e.g. from hidden to text).

V0145: The selection interface objects are defined, but selection does not occur on any input controls when called from script

The specification states:

 4.10.5 The input element
     ...
     DOM interface:
  
         interface HTMLInputElement : HTMLElement {
             ...
             void select();
             attribute unsigned long selectionStart;
             attribute unsigned long selectionEnd;
             attribute DOMString selectionDirection;
             void setRangeText(DOMString replacement);
             void setRangeText(DOMString replacement, unsigned long start, unsigned long 
             end, ...
             void setSelectionRange(unsigned long start, unsigned long end, optional 
             DOMString direction);
         };

EdgeHTML Mode

The selection interface objects are defined, but selection does not occur on any input controls when called from script.

V0149: The setRangeText functions are not supported

The specification states:

 4.10.5 The input element
     ...
     DOM interface:
  
         interface HTMLInputElement : HTMLElement {
             ...
             void setRangeText(DOMString replacement);
             void setRangeText(DOMString replacement, unsigned long start, unsigned long 
             end, ...
             ...
         };

EdgeHTML Mode

The setRangeText functions are not supported.

V0146: The dirName attribute is not supported

The specification states:

 4.10.5 The input element
     ...
     DOM interface:
  
         interface HTMLInputElement : HTMLElement {
             ...
             attribute DOMString dirName;
             ...
         };

EdgeHTML Mode

The dirName attribute is not supported.