CrashReportContext: set() method
Note: This feature is available in Web Workers.
The set() method of the CrashReportContext interface stores a key-value pair in the memory initialized by initialize().
Syntax
js
set(key, value)
Parameters
Return value
None (undefined).
Exceptions
InvalidStateErrorDOMException-
Thrown if:
- The calling document is not fully active.
- The crash report key-value store is not yet initialized via an
initialize()call.
NotAllowedErrorDOMException-
The size of the serialized key-value pair is greater than the
lengthvalue set when the store was first initialized.
Examples
>Basic usage
js
window.crashReport.set(1024).then(() => {
// Set a possible crash-causing value, and try
// running an operation that may cause a crash
window.crashReport.set("crash-arg", "00031");
operationThatMightCrash(00031);
// Delete the key-value pair if it doesn't cause a crash
window.crashReport.delete("crash-arg");
});
Specifications
| Specification |
|---|
| Crash Reporting> # dom-crashreportcontext-set> |