Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<script>
  class XControl extends HTMLElement {
    static formAssociated = true;
  
    constructor() {
      super();
      this.internals = this.attachInternals();
      this.internals.setValidity({valueMissing: true, customError: false}, 'Value missing');
      // Expecting "customError: false"
      alert(`customError: ${this.internals.validity.customError}`);
    }
  }
  
  customElements.define('x-control', XControl);
</script>
<x-control></x-control>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers