OSX specific chrome question
Kenneth Feldt <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.macosx |
|---|---|
| Organization | Another Netscape Collabra Server User |
| Message-ID | <[email protected]> |
I have an XUL interface that references a file on the local drive (an SVG document to be displayed). The pathname is a fully qualified pathname (no relative pathname). The XUL source line looks like.... <iframe src="///Macintosh HD/EBC/Demos/ELearn2004/ebc03/ebc03/content/graph.xml" flex="6"/> As long as I use the file reference for the chrome application, everything works fine.... ./mozilla-bin -chrome file:////MozDev/SVGBuildQtz/mozilla/dist/MozillaDebug.app/Contents/MacOS/chrome/workbook/content/workbook/workbook.xul However, after I register the chrome application, and launch it of the form... ./mozilla-bin -chrome chrome://workbook/content/ the chrome application tells me that the file '/MacintoshHD....graph.xml' cannot be found. My installed-chrome.txt line looks like: content,install,url,resource:/chrome/workbook/content/workbook/ And from what I can tell by the chrome.rdf file, everything registered fine. (The XUL file does get found and is being launched). Is there something about referencing filesystem files from registered chrome applications that is different from non-registered chrome apps?