Closed
Bug 1437654
Opened 8 years ago
Closed 8 years ago
Drop the nsINativeTreeView pretense
Categories
(Core :: XUL, enhancement)
Core
XUL
Tracking
()
RESOLVED
FIXED
mozilla60
| Tracking | Status | |
|---|---|---|
| firefox60 | --- | fixed |
People
(Reporter: bzbarsky, Assigned: bzbarsky)
References
Details
Attachments
(2 files, 3 obsolete files)
|
400 bytes,
application/vnd.mozilla.xul+xml
|
Details | |
|
7.81 KB,
patch
|
Gijs
:
review+
|
Details | Diff | Splinter Review |
In bug 334085 we added an nsINativeTreeView thing that was supposed to be implemented by views that we'd allow untrusted code to set on a tree.
But we never made anything QI to it, so all that stuff is a no-op. The attached testcase throws a security exception when run as non-system, even though it never does anything interesting with views.
Credit to Adrian Wielgosik for finding this.
| Assignee | ||
Comment 1•8 years ago
|
||
MozReview-Commit-ID: FBEGEFRM9Us
Attachment #8950353 -
Flags: review?(gijskruitbosch+bugs)
| Assignee | ||
Updated•8 years ago
|
Assignee: nobody → bzbarsky
Status: NEW → ASSIGNED
| Assignee | ||
Comment 2•8 years ago
|
||
MozReview-Commit-ID: FBEGEFRM9Us
Attachment #8950381 -
Flags: review?(gijskruitbosch+bugs)
| Assignee | ||
Updated•8 years ago
|
Attachment #8950353 -
Attachment is obsolete: true
Attachment #8950353 -
Flags: review?(gijskruitbosch+bugs)
| Assignee | ||
Comment 3•8 years ago
|
||
MozReview-Commit-ID: FBEGEFRM9Us
Attachment #8950382 -
Flags: review?(gijskruitbosch+bugs)
| Assignee | ||
Updated•8 years ago
|
Attachment #8950381 -
Attachment is obsolete: true
Attachment #8950381 -
Flags: review?(gijskruitbosch+bugs)
Comment 4•8 years ago
|
||
Comment on attachment 8950382 [details] [diff] [review]
Drop the nsINativeTreeView stuff, since it's all not working anyway
Review of attachment 8950382 [details] [diff] [review]:
-----------------------------------------------------------------
Clearing review because of the below, but also because when I looked at DXR I spotted nsINativeTreeSelection which looks just as dead. Perhaps we can remove this too?
(That's beside the point that I'm not technically a peer, but I assume your decision to ask me for review was deliberate... :-) )
::: layout/xul/tree/nsITreeBoxObject.idl
@@ +24,5 @@
> * The view that backs the tree and that supplies it with its data.
> * It is dynamically settable, either using a view attribute on the
> * tree tag or by setting this attribute to a new value.
> */
> + readonly attribute nsITreeView view;
I'm a bit confused. Why is this readonly now, while the webidl isn't? The comment here ("It is dynamically settable ... by setting this attribute") doesn't help. There's definitely still a setter in the implementation. Perhaps updating the comment here would help?
Attachment #8950382 -
Flags: review?(gijskruitbosch+bugs)
| Assignee | ||
Comment 5•8 years ago
|
||
> but also because when I looked at DXR I spotted nsINativeTreeSelection which looks just as dead.
It's not as dead because things actually QI to it. Nothing QIs to nsINativeTreeView.
> I'm not technically a peer, but I assume your decision to ask me for review was deliberate
Technically the only peers for "XUL" are me an Jan Varga or something like that. I figured you'd maybe at least know something about trees. ;)
> Why is this readonly now, while the webidl isn't?
Ah. I'll adjust the comments to make this clearer.
| Assignee | ||
Comment 6•8 years ago
|
||
There are no consumers of nsITreeBoxObject::SetView, so this fix removes that
setter. There are consumers of GetView, though.
MozReview-Commit-ID: FBEGEFRM9Us
Attachment #8950454 -
Flags: review?(gijskruitbosch+bugs)
| Assignee | ||
Updated•8 years ago
|
Attachment #8950382 -
Attachment is obsolete: true
Updated•8 years ago
|
Attachment #8950454 -
Flags: review?(gijskruitbosch+bugs) → review+
Pushed by bzbarsky@mozilla.com:
https://hg.mozilla.org/integration/mozilla-inbound/rev/ce006d43344b
Drop the nsINativeTreeView stuff, since it's all not working anyway. r=gijs
Comment 8•8 years ago
|
||
| bugherder | ||
Status: ASSIGNED → RESOLVED
Closed: 8 years ago
status-firefox60:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla60
You need to log in
before you can comment on or make changes to this bug.
Description
•