Re: [webkit-dev] Regarding QtWebkit Builds on Win32

2007-08-31 Thread Mark Rowe
Chris, Please consider checking the mailing list archives before posting (). This issue has come up several times this week. See , for instance. Kind regards, Mark

[webkit-dev] Regarding QtWebkit Builds on Win32

2007-08-31 Thread Fuenty, Chris
When building Qtwebkit (with Perl and MinGW paths in the PATH envirment var, and through the Qt command prompt), I exit with the following errors, which I can not really make out what they are. cd WebCore\ && mingw32-make -f Makefile mingw32-make[1]: Entering directory `C:/QtWebkit/WebKitBuild/Rel

Re: [webkit-dev] Window::isSafeScript: which URLs to use in the error message

2007-08-31 Thread Anyang Ren
Maciej, Thank you for your reply. I just checked the current trunk. The error message has been changed to use thisURL and actURL in r24900. -- Anyang Ren Open source developer ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit

Re: [webkit-dev] Window::isSafeScript: which URLs to use in the error message

2007-08-31 Thread Maciej Stachowiak
On Aug 31, 2007, at 2:24 PM, Anyang Ren wrote: In kjs_window.cpp, Window::isSafeScript(ExecState *exec), we have: KURL actURL = activeFrame->loader()->url(); WebCore::String actDomain = actURL.host(); ... KURL thisURL = frame->loader()->url(); ... WebCore::String thisDomain = thisURL.hos

[webkit-dev] Window::isSafeScript: which URLs to use in the error message

2007-08-31 Thread Anyang Ren
In kjs_window.cpp, Window::isSafeScript(ExecState *exec), we have: KURL actURL = activeFrame->loader()->url(); WebCore::String actDomain = actURL.host(); ... KURL thisURL = frame->loader()->url(); ... WebCore::String thisDomain = thisURL.host(); if (actDomain == thisDomain && actURL

Re: [webkit-dev] disable scroll bars in webView....

2007-08-31 Thread Mitz Pettel
I think something like WebView* myWebView; ... [[[myWebView mainFrame] frameView] setAllowsScrolling:NO]; will do the trick. See

Re: [webkit-dev] disable scroll bars in webView....

2007-08-31 Thread David D. Kilzer
If you're going to build your own custom version of WebKit, you could modify WebCore/css/html4.css and WebCore/css/quirks.css to include the "overflow: hidden;" style on the body tag. This would have essentially the same effect. I'm not aware of any "switch" to disable scroll bars completely (alt

Re: [webkit-dev] build QTwebkit errors on windows

2007-08-31 Thread Silex
> hi,all > Is there anybody knows this error : > ./tmp\HTMLFormElement.o:HTMLFormElement.cpp:(.text+0x41d7): undefined > reference > to [EMAIL PROTECTED]' Sounds like "you" just forgot to link to shlwapi.lib. See http://msdn2.microsoft.com/en-us/library/ms628559.aspx for more details. __

Re: [webkit-dev] disable scroll bars in webView....

2007-08-31 Thread David D. Kilzer
Hi Kathryn, Are you wanting to do this using HTML? If so: http://webkit.org/images/icon-gold.png"; style="top: 200px; left: 200px; position: absolute;"> To make a containing element not scroll, use the "overflow: hidden" style (e.g. to disable scroll bars for the entire page): http://webkit.o

[webkit-dev] disable scroll bars in webView....

2007-08-31 Thread Kathryn Tate
Guys, Is there a way to disable the scroll bars in WebView so that the image is fixed? Thanks ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo/webkit-dev