Closed
Bug 728132
Opened 14 years ago
Closed 14 years ago
test_bug583533.html uses wrong const values
Categories
(Core :: XUL, defect)
Core
XUL
Tracking
()
RESOLVED
FIXED
mozilla13
People
(Reporter: masayuki, Assigned: masayuki)
References
Details
Attachments
(1 file)
|
1.73 KB,
patch
|
smaug
:
review+
|
Details | Diff | Splinter Review |
test_bug583533.html uses nsIDOMNSEvent::META_MASK, nsIDOMNSEvent::CONTROL_MASK, nsIDOMNSEvent::ALT_MASK and nsIDOMNSEvent::SHIFT_MASK.
However, the pref's value isn't same as them. The values for Alt and Shift are different.
http://mxr.mozilla.org/mozilla-central/source/content/events/src/nsEventStateManager.cpp#292
293 #define NS_MODIFIER_SHIFT 1
294 #define NS_MODIFIER_CONTROL 2
295 #define NS_MODIFIER_ALT 4
296 #define NS_MODIFIER_META 8
http://mxr.mozilla.org/mozilla-central/source/dom/interfaces/events/nsIDOMNSEvent.idl#82
82 const long ALT_MASK = 0x00000001;
83 const long CONTROL_MASK = 0x00000002;
84 const long SHIFT_MASK = 0x00000004;
85 const long META_MASK = 0x00000008;
| Assignee | ||
Comment 1•14 years ago
|
||
Attachment #598157 -
Flags: review?(dzbarsky)
| Assignee | ||
Comment 2•14 years ago
|
||
dzbarsky: ping
| Assignee | ||
Comment 3•14 years ago
|
||
Comment on attachment 598157 [details] [diff] [review]
Patch
Smaug;
Would your review this? I cannot contact dzbarsky yet...
Attachment #598157 -
Flags: review?(bugs)
Comment 4•14 years ago
|
||
Comment on attachment 598157 [details] [diff] [review]
Patch
Well, if the test does still pass...
We should probably change ESM consts at some point.
Attachment #598157 -
Flags: review?(bugs) → review+
| Assignee | ||
Comment 5•14 years ago
|
||
https://hg.mozilla.org/integration/mozilla-inbound/rev/72cb7e2287ba
> We should probably change ESM consts at some point.
The ESM's value is documented in all.js and mozillazine introduced the information.
http://kb.mozillazine.org/Ui.key.contentAccess
We shouldn't change the value.
Whiteboard: [inbound]
Target Milestone: --- → mozilla13
| Assignee | ||
Updated•14 years ago
|
Attachment #598157 -
Flags: review?(dzbarsky)
Comment 6•14 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
Whiteboard: [inbound]
Comment 7•8 years ago
|
||
Moving to Core:XUL per https://bugzilla.mozilla.org/show_bug.cgi?id=1455336
Component: XP Toolkit/Widgets: XUL → XUL
You need to log in
before you can comment on or make changes to this bug.
Description
•