Closed
Bug 628353
Opened 15 years ago
Closed 14 years ago
DATA_CLONE_ERR should be exposed on DOMException
Categories
(Core :: DOM: Core & HTML, defect)
Core
DOM: Core & HTML
Tracking
()
RESOLVED
FIXED
mozilla5
People
(Reporter: Ms2ger, Assigned: Ms2ger)
References
Details
Attachments
(1 file, 1 obsolete file)
2.72 KB,
patch
|
Details | Diff | Splinter Review |
So it turns out DOMException.DATA_CLONE_ERR isn't defined...
Attachment #506484 -
Flags: review?(jst)
Comment 1•15 years ago
|
||
Comment on attachment 506484 [details] [diff] [review]
Patch v1
>diff --git a/dom/interfaces/core/nsIDOMDOMException.idl b/dom/interfaces/core/nsIDOMDOMException.idl
>--- a/dom/interfaces/core/nsIDOMDOMException.idl
>+++ b/dom/interfaces/core/nsIDOMDOMException.idl
>@@ -73,12 +73,13 @@ interface nsIDOMDOMException : nsISuppor
> // Introduced in DOM Level 2:
> const unsigned short NAMESPACE_ERR = 14;
> // Introduced in DOM Level 2:
> const unsigned short INVALID_ACCESS_ERR = 15;
> // Introduced in DOM Level 3:
> const unsigned short VALIDATION_ERR = 16;
> // Introduced in DOM Level 3:
> const unsigned short TYPE_MISMATCH_ERR = 17;
>+ const unsigned short DATA_CLONE_ERR = 25;
>
> readonly attribute unsigned long code;
> };
Shouldn't you update the UUID?
Comment 2•15 years ago
|
||
Comment on attachment 506484 [details] [diff] [review]
Patch v1
I don't think we need to change the UUID here, this is a binary compatible change, but users of this will need to recompile if they actually use this removed constant. Either way, this is material for post 2.0...
Attachment #506484 -
Flags: review?(jst) → review+
Updated•15 years ago
|
Whiteboard: [needs landing] → [needs landing][post-2.0]
Target Milestone: mozilla2.0 → Future
Assignee | ||
Comment 3•14 years ago
|
||
Attachment #506484 -
Attachment is obsolete: true
Assignee | ||
Comment 4•14 years ago
|
||
The future is now.
Keywords: checkin-needed
Whiteboard: [needs landing][post-2.0]
![]() |
||
Comment 5•14 years ago
|
||
Flags: in-testsuite+
Whiteboard: fixed-in-cedar
Target Milestone: Future → mozilla2.2
Updated•14 years ago
|
Keywords: checkin-needed
Comment 6•14 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
Whiteboard: fixed-in-cedar
You need to log in
before you can comment on or make changes to this bug.
Description
•