vote up 0 vote down star

I'm developing a Cocoa/Obj-C application that involves a WebView (from the WebKit framework). I've noticed that this WebView presents a slightly scaled-down version of the rendered webpage. An example screenshot:

In a browser (Safari or Firefox):

alt text

In my WebView:

alt text

These happen to be local HTML/CSS files generated by the program, but if you tell the WebView to load http://www.google.com, it'll do the same thing. Both images and text seem slightly smaller. As you see, in this example, the 1px horizontal rule just disappears.

It's very important that this WebView presents an accurate picture of what the page will look like in a browser, so I would like to resolve this issue. I've looked at the WebView documentation and at all of the options in Interface Builder, but no luck.

flag

75% accept rate

3 Answers

vote up 0 vote down

Is it possible that one of the superviews that contains your webview is being rescaled? I don't remember seeing any automatic scaling in WebKit docs.

link|flag
Thanks for the suggestion, but it looks like that's not it. It's just a simple WebView in an NSPanel that pops up when you click a button. I also have another WebView elsewhere that has the same problem. – Ellie P. Nov 2 at 20:52
vote up 0 vote down

You may want to try this method: - (void)setTextSizeMultiplier:(float)multiplier.

link|flag
Shouldn't that default to 1? And, like I said, both text and images are getting scaled down. I'll give it a try, though... – Ellie P. Oct 31 at 16:28
Could be that the default text sizes are different for the WebView, not that they are scaled down. – Pierre LaFayette Nov 1 at 1:31
Nope, I checked the default text sizes. They're correct. And like I said, the images are scaling down too. – Ellie P. Nov 2 at 20:48
vote up 0 vote down

In Interface Builder, try changing the font size default option for the web view from 12 to 16. I believe most web browsers, including Safari, use a default font size of 16, but the default font size is set to 12 for a Cocoa web view, so everything is rendered a bit smaller.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.