diff --git a/index.bs b/index.bs index 34ac5466..beb029f8 100644 --- a/index.bs +++ b/index.bs @@ -13392,7 +13392,8 @@ fragment:
 [
  Exposed=(Window,Worker),
- Constructor(optional DOMString message = "", optional DOMString name = "Error")
+ Constructor(optional DOMString message = "", optional DOMString name = "Error"),
+ Serializable
 ]
 interface DOMException { // but see below note about ECMAScript binding
   readonly attribute DOMString name;
@@ -13449,6 +13450,26 @@ The code attribute's getter
 legacy code indicated in the [=error names table=] for this {{DOMException}} object's
 [=DOMException/name=], or 0 if no such entry exists in the table.
 
+{{DOMException}} objects are [=serializable objects=].
+
+Their [=serialization steps=], given value and serialized, are:
+
+
    +
  1. Set serialized.\[[Name]] to value's [=DOMException/name=].
  2. +
  3. Set serialized.\[[Message]] to value's [=DOMException/message=].
  4. +
  5. User agents should attach a serialized representation of any interesting accompanying data + which are not yet specified, notably the stack property, to + serialized.
  6. +
+ +Their [=deserialization steps=], given value and serialized, are: + +
    +
  1. value's [=DOMException/name=] to serialized.\[[Name]].
  2. +
  3. value's [=DOMException/message=] to serialized.\[[Message]].
  4. +
  5. If any other data is attached to serialized, then deserialize and attach it to + value.
  6. +

DOMTimeStamp