Closed
Bug 353334
Opened 19 years ago
Closed 18 years ago
[FIX]Permission denied error scripting SVG from data: URL after non-shift reload of local file
Categories
(Core :: SVG, defect)
Core
SVG
Tracking
()
RESOLVED
FIXED
mozilla1.9beta2
People
(Reporter: chris, Assigned: bzbarsky)
References
()
Details
Attachments
(2 files)
|
1.65 KB,
text/html
|
Details | |
|
9.71 KB,
patch
|
Biesinger
:
review+
jst
:
superreview+
damons
:
approval1.9+
|
Details | Diff | Splinter Review |
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.5) Gecko/20060731 Ubuntu/dapper-security Firefox/1.5.0.5
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.5) Gecko/20060731 Ubuntu/dapper-security Firefox/1.5.0.5
Using Javascript I create an object tag dynamically. The "data" attribute uses a data: URL scheme. The content is a bare-bones URL-encoded SVG document. I then add the object to the document, get a reference to the SVG root using the "documentElement" property, and create some SVG shapes via scripting.
If this is done from a locally-loaded file (file: URL), it will work the first time, and each time you shift-reload. If you reload normally, there is an error when you try to get the root element: "uncaught exception: Permission denied to get property SVGDocument.documentElement". I have yet to see the same error when the file is loaded via an HTTP URL.
Reproducible: Always
Steps to Reproduce:
1. Download attachment as *local file* and load it into firefox >= 1.5
2. Notice that it loads correctly when you shift-reload, but not when you regular reload
Actual Results:
uncaught exception: Permission denied to get property SVGDocument.documentElement
Expected Results:
Should work the same regardless of how the page is reloaded.
| Reporter | ||
Comment 1•19 years ago
|
||
Comment 2•18 years ago
|
||
I can reproduce this using the attachment without downloading and viewing it locally. I'm not familiar with the permissions issues here, but perhaps bz or roc are.
| Assignee | ||
Comment 3•18 years ago
|
||
On branch this is bug 387979 (fixed in 1.8.0.13 and 1.8.1.5; reporter is using 1.8.0.5).
But on trunk, this is a bug in <object> loading which we should fix... I'll post a patch later tonight.
| Assignee | ||
Comment 4•18 years ago
|
||
A few things going on here:
1) nsObjectLoadingContent needs to set the owner on channels that need it, like
docshell does. While I was here I also made javascript: URIs actually work
in <object data="">
2) Trying to test said javascript: URIs found a bug in the javascript:
channel: the code to move the channel to the new loadgroup in
nsURILoader::OpenChannel doesn't really work because of the nested
streamchannel. In particular, because that nested channel is the real
document channel, onload never fired.
3) Docshell should really handle script channels that don't inherit the
principal (not that we have any now). Not sure why I wrote the code the
other way to start with.
Assignee: general → bzbarsky
Status: UNCONFIRMED → ASSIGNED
Ever confirmed: true
Attachment #290331 -
Flags: superreview?
Attachment #290331 -
Flags: review?(cbiesinger)
| Assignee | ||
Updated•18 years ago
|
Attachment #290331 -
Flags: superreview? → superreview?(jst)
| Assignee | ||
Updated•18 years ago
|
OS: Linux → All
Hardware: PC → All
Summary: Permission denied error scripting SVG from data: URL after non-shift reload of local file → [FIX]Permission denied error scripting SVG from data: URL after non-shift reload of local file
Target Milestone: --- → mozilla1.9 M10
Comment 5•18 years ago
|
||
Is this related to bug 300263?
| Assignee | ||
Comment 6•18 years ago
|
||
This patch fixes that bug, yes, due to the "while I was here I also made javascript: URIs actually work" bit.
Blocks: 300263
Updated•18 years ago
|
Flags: wanted1.9+
Updated•18 years ago
|
Attachment #290331 -
Flags: superreview?(jst) → superreview+
Updated•18 years ago
|
Attachment #290331 -
Flags: review?(cbiesinger) → review+
| Assignee | ||
Comment 7•18 years ago
|
||
Comment on attachment 290331 [details] [diff] [review]
Somewhat like this
This makes <object> loading be more like <iframe> loading in terms of permissions stuff. Unregresses a regression from 1.8.
Attachment #290331 -
Flags: approval1.9?
Updated•18 years ago
|
Attachment #290331 -
Flags: approval1.9? → approval1.9+
| Assignee | ||
Comment 8•18 years ago
|
||
Checked in, with the test.
Status: ASSIGNED → RESOLVED
Closed: 18 years ago
Flags: in-testsuite+
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•