I'm wanting to use a browser in maybe a slightly non-standard way,
essentially as a delivery vehicle for an application. I don't have to
worry about page load times, or local storage, or "what the user
wants", or anything else. What I need is a way to create new browser
windows with only the specific decorations that I allow for.
I'm very new to this stuff, but everything I can find says that this
is what I want to do to get a "bare bones" window:
var paramString =
'left=300,top=300,height=300,width=300';
var newWindow = window.open('newWindow.html', 'newWindow',
paramString);
Then I set the onclick handler of something to a function that wraps
that, etc.
Everything I read says that because I have named some window features,
everything I *don't* name won't appear. And the resulting window from
this doesn't have the toolbar, etc. However, it does have a location
bar that can't be edited (although the text can be selected). If I
change my paramString to include location=0, location=no,
location=false, location=1, location=yes, or location=true, I get the
same behavior. It appears that it can't be controlled at all.
Am I missing something? Is there a document somewhere describing
things?
--
Chromium Discussion mailing list:
chromium...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-discuss