summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/quota/dom_error.idl
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-07-16 11:45:35 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-07-17 08:59:23 +0000
commit552906b0f222c5d5dd11b9fd73829d510980461a (patch)
tree3a11e6ed0538a81dd83b20cf3a4783e297f26d91 /chromium/third_party/blink/renderer/modules/quota/dom_error.idl
parent1b05827804eaf047779b597718c03e7d38344261 (diff)
downloadqtwebengine-chromium-552906b0f222c5d5dd11b9fd73829d510980461a.tar.gz
BASELINE: Update Chromium to 83.0.4103.122
Change-Id: Ie3a82f5bb0076eec2a7c6a6162326b4301ee291e Reviewed-by: Michael BrĂ¼ning <michael.bruning@qt.io>
Diffstat (limited to 'chromium/third_party/blink/renderer/modules/quota/dom_error.idl')
-rw-r--r--chromium/third_party/blink/renderer/modules/quota/dom_error.idl6
1 files changed, 2 insertions, 4 deletions
diff --git a/chromium/third_party/blink/renderer/modules/quota/dom_error.idl b/chromium/third_party/blink/renderer/modules/quota/dom_error.idl
index cd62ea75daf..768ac5dec07 100644
--- a/chromium/third_party/blink/renderer/modules/quota/dom_error.idl
+++ b/chromium/third_party/blink/renderer/modules/quota/dom_error.idl
@@ -29,10 +29,8 @@
// https://dom.spec.whatwg.org/#domerror
// FIXME: DOMError has been removed from the spec. crbug.com/460725
-[
- Constructor(DOMString name, optional DOMString message = null),
- Measure
-] interface DOMError {
+interface DOMError {
+ [Measure] constructor(DOMString name, optional DOMString message);
[Measure] readonly attribute DOMString name;
[Measure] readonly attribute DOMString message;
};