diff --git a/source b/source index 9f2a547c10d..b099f0d6889 100644 --- a/source +++ b/source @@ -12071,8 +12071,7 @@ document.createElement("bad-1"); // (2)
  • If element is an already - constructed marker, then throw an "InvalidStateError" - DOMException.

    + constructed marker, then throw a TypeError.

    This can occur when the author code inside the custom element @@ -12090,7 +12089,7 @@ class DontDoThis extends HTMLElement { // Now the construction stack will contain an already constructed marker. } - // This will then fail with an "InvalidStateError" DOMException: + // This will then fail with a TypeError: super(); } }