Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<script>
  console.clear();
  
  function XTag() {
    return Reflect.construct(HTMLElement, [], new.target);
  }
  
  XTag.prototype.__proto__ = HTMLElement.prototype;
  XTag.__proto__ = HTMLElement;
  
  XTag.prototype.foo = "original";
  
  customElements.define("x-tag", XTag);
  
  XTag.prototype = { foo: "new" };
</script>
<x-tag></x-tag>
<script>
  console.assert(document.querySelector("x-tag").foo === "new");
  console.assert(document.querySelector("x-tag").__proto__ === XTag.prototype);
  console.assert((new XTag()).__proto__ === XTag.prototype);
</script>
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers