[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
cblu
cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:24:32 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit e95a7c9e5d40500cd1f99d0a9ed1cb5245e70dd0
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Thu Feb 13 18:54:24 2003 +0000
WebCore:
Fixed WebKit typos found by Peter Wilson.
Reviewed by darin.
* kwq/KWQKHTMLPart.mm:
(KWQKHTMLPart::bridgeForFrameName): call findOrCreateFrameNamed
* kwq/WebCoreBridge.h: fixed method name for findOrCreateFrameNamed
WebKit:
Fixed WebKit typos found by Peter Wilson.
Reviewed by darin.
* Misc.subproj/WebKitErrors.h:
* Misc.subproj/WebKitErrors.m:
(categoryInitialize): Error should be WebErrorDescriptionCannotFindApplicationForURL not WebErrorDescriptionCannotNotFindApplicationForURL
* Plugins.subproj/WebBaseNetscapePluginView.m:
(-[WebBaseNetscapePluginView loadRequest:inTarget:withNotifyData:]): call findOrCreateFrameNamed
* Plugins.subproj/WebPluginController.m:
(-[WebPluginController showURL:inFrame:]): call findOrCreateFrameNamed
* WebCoreSupport.subproj/WebBridge.m:
(-[WebBridge findOrCreateFrameNamed:]): call findOrCreateFrameNamed
* WebView.subproj/WebFrame.h:
* WebView.subproj/WebFrame.m:
(-[WebFrame findOrCreateFrameNamed:]): fixed name
* WebView.subproj/WebFramePrivate.m:
(-[WebFrame _continueAfterNavigationPolicy:]): use WebErrorDescriptionCannotFindApplicationForURL
* WebView.subproj/WebMainResourceClient.m:
(-[WebMainResourceClient continueAfterContentPolicy:response:]): use WebErrorDescriptionCannotFindApplicationForURL
* WebView.subproj/WebView.h:
* WebView.subproj/WebView.m:
(-[WebView setAllowsScrolling:]): cast to WebDynamicScrollBarsView
(-[WebView allowsScrolling]): cast to WebDynamicScrollBarsView
(-[WebView frameScrollView]): return NSScrollView
* WebView.subproj/WebViewPrivate.m:
(-[WebView _setDocumentView:]): cast to WebDynamicScrollBarsView
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3644 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 6b2d847..847fcb5 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,13 @@
+2003-02-13 Chris Blumenberg <cblu at apple.com>
+
+ Fixed WebKit typos found by Peter Wilson.
+
+ Reviewed by darin.
+
+ * kwq/KWQKHTMLPart.mm:
+ (KWQKHTMLPart::bridgeForFrameName): call findOrCreateFrameNamed
+ * kwq/WebCoreBridge.h: fixed method name for findOrCreateFrameNamed
+
2003-02-12 Darin Adler <darin at apple.com>
Reviewed by Ken.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 6b2d847..847fcb5 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,13 @@
+2003-02-13 Chris Blumenberg <cblu at apple.com>
+
+ Fixed WebKit typos found by Peter Wilson.
+
+ Reviewed by darin.
+
+ * kwq/KWQKHTMLPart.mm:
+ (KWQKHTMLPart::bridgeForFrameName): call findOrCreateFrameNamed
+ * kwq/WebCoreBridge.h: fixed method name for findOrCreateFrameNamed
+
2003-02-12 Darin Adler <darin at apple.com>
Reviewed by Ken.
diff --git a/WebCore/kwq/KWQKHTMLPart.mm b/WebCore/kwq/KWQKHTMLPart.mm
index b633acd..7291b14 100644
--- a/WebCore/kwq/KWQKHTMLPart.mm
+++ b/WebCore/kwq/KWQKHTMLPart.mm
@@ -163,7 +163,7 @@ WebCoreBridge *KWQKHTMLPart::bridgeForFrameName(const QString &frameName)
frame = _bridge;
}
} else {
- frame = [_bridge findOrCreateFramedNamed:frameName.getNSString()];
+ frame = [_bridge findOrCreateFrameNamed:frameName.getNSString()];
}
return frame;
diff --git a/WebCore/kwq/WebCoreBridge.h b/WebCore/kwq/WebCoreBridge.h
index b23a88a..b95fc7e 100644
--- a/WebCore/kwq/WebCoreBridge.h
+++ b/WebCore/kwq/WebCoreBridge.h
@@ -202,7 +202,7 @@ enum FrameBorderStyle {
- (NSArray *)childFrames; // WebCoreBridge objects
- (WebCoreBridge *)mainFrame;
- (WebCoreBridge *)findFramedNamed:(NSString *)name;
-- (WebCoreBridge *)findOrCreateFramedNamed:(NSString *)name;
+- (WebCoreBridge *)findOrCreateFrameNamed:(NSString *)name;
/* Creates a name for an frame unnamed in the HTML. It should produce repeatable results for loads of the same frameset. */
- (NSString *)generateFrameName;
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 734ea94..9f38c04 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,33 @@
+2003-02-13 Chris Blumenberg <cblu at apple.com>
+
+ Fixed WebKit typos found by Peter Wilson.
+
+ Reviewed by darin.
+
+ * Misc.subproj/WebKitErrors.h:
+ * Misc.subproj/WebKitErrors.m:
+ (categoryInitialize): Error should be WebErrorDescriptionCannotFindApplicationForURL not WebErrorDescriptionCannotNotFindApplicationForURL
+ * Plugins.subproj/WebBaseNetscapePluginView.m:
+ (-[WebBaseNetscapePluginView loadRequest:inTarget:withNotifyData:]): call findOrCreateFrameNamed
+ * Plugins.subproj/WebPluginController.m:
+ (-[WebPluginController showURL:inFrame:]): call findOrCreateFrameNamed
+ * WebCoreSupport.subproj/WebBridge.m:
+ (-[WebBridge findOrCreateFrameNamed:]): call findOrCreateFrameNamed
+ * WebView.subproj/WebFrame.h:
+ * WebView.subproj/WebFrame.m:
+ (-[WebFrame findOrCreateFrameNamed:]): fixed name
+ * WebView.subproj/WebFramePrivate.m:
+ (-[WebFrame _continueAfterNavigationPolicy:]): use WebErrorDescriptionCannotFindApplicationForURL
+ * WebView.subproj/WebMainResourceClient.m:
+ (-[WebMainResourceClient continueAfterContentPolicy:response:]): use WebErrorDescriptionCannotFindApplicationForURL
+ * WebView.subproj/WebView.h:
+ * WebView.subproj/WebView.m:
+ (-[WebView setAllowsScrolling:]): cast to WebDynamicScrollBarsView
+ (-[WebView allowsScrolling]): cast to WebDynamicScrollBarsView
+ (-[WebView frameScrollView]): return NSScrollView
+ * WebView.subproj/WebViewPrivate.m:
+ (-[WebView _setDocumentView:]): cast to WebDynamicScrollBarsView
+
2003-02-12 Chris Blumenberg <cblu at apple.com>
- Moved the WebKit error registration out of WebView because apps that use WebKit but not WebView might need to use WebKit errors (like my test app for WebDownload).
diff --git a/WebKit/Misc.subproj/WebKitErrors.h b/WebKit/Misc.subproj/WebKitErrors.h
index 04a99df..589792b 100644
--- a/WebKit/Misc.subproj/WebKitErrors.h
+++ b/WebKit/Misc.subproj/WebKitErrors.h
@@ -16,11 +16,11 @@ extern NSString *WebErrorDomainWebKit;
@constant WebKitErrorCannotRemoveFile
@constant WebKitErrorCannotMoveFile
@constant WebKitErrorCannotFindApplicationForFile
+ @constant WebKitErrorCannotFindApplicationForURL
@constant WebKitErrorFinderCannotOpenDirectory
@constant WebKitErrorCannotShowDirectory
@constant WebKitErrorCannotShowMIMEType
@constant WebKitErrorCannotShowURL
- @constant WebKitErrorCannotNotFindApplicationForURL
@constant WebKitErrorLocationChangeInterruptedByPolicyChange
@constant WebKitErrorDownloadDecodingFailedMidStream
@constant WebKitErrorDownloadDecodingFailedToComplete
@@ -33,11 +33,11 @@ enum {
WebKitErrorCannotRemoveFile,
WebKitErrorCannotMoveFile,
WebKitErrorCannotFindApplicationForFile,
+ WebKitErrorCannotFindApplicationForURL,
WebKitErrorFinderCannotOpenDirectory,
WebKitErrorCannotShowDirectory,
WebKitErrorCannotShowMIMEType,
WebKitErrorCannotShowURL,
- WebKitErrorCannotNotFindApplicationForURL,
WebKitErrorLocationChangeInterruptedByPolicyChange,
WebKitErrorResourceLoadInterruptedByPolicyChange,
WebKitErrorCannotFindPlugin,
diff --git a/WebKit/Misc.subproj/WebKitErrors.m b/WebKit/Misc.subproj/WebKitErrors.m
index 367238a..c20b99e 100644
--- a/WebKit/Misc.subproj/WebKitErrors.m
+++ b/WebKit/Misc.subproj/WebKitErrors.m
@@ -16,23 +16,23 @@
NSString *WebErrorDomainWebKit = @"WebErrorDomainWebKit";
-#define WebErrorDescriptionCannotCreateFile UI_STRING("Cannot create file", "WebErrorCannotCreateFile description")
-#define WebErrorDescriptionCannotOpenFile UI_STRING("Cannot open file", "WebErrorCannotOpenFile description")
+#define WebErrorDescriptionCannotCreateFile UI_STRING("Cannot create file", "WebKitErrorCannotCreateFile description")
+#define WebErrorDescriptionCannotOpenFile UI_STRING("Cannot open file", "WebKitErrorCannotOpenFile description")
#define WebErrorDescriptionCannotCloseFile UI_STRING("Failure occurred while closing file", "WebKitErrorCannotCloseFile description")
-#define WebErrorDescriptionCannotWriteToFile UI_STRING("Cannot write file", "WebErrorCannotWriteToFile description")
-#define WebErrorDescriptionCannotRemoveFile UI_STRING("Cannot remove file", "WebErrorCannotRemoveFile description")
+#define WebErrorDescriptionCannotWriteToFile UI_STRING("Cannot write file", "WebKitErrorCannotWriteToFile description")
+#define WebErrorDescriptionCannotRemoveFile UI_STRING("Cannot remove file", "WebKitErrorCannotRemoveFile description")
#define WebErrorDescriptionCannotMoveFile UI_STRING("Cannot move file", "WebKitErrorCannotMoveFile description")
-#define WebErrorDescriptionCannotFindApplicationForFile UI_STRING("Cannot find application for file", "WebErrorCannotFindApplicationForFile description")
-#define WebErrorDescriptionFinderCannotOpenDirectory UI_STRING("Finder cannot open directory", "WebErrorFinderCannotOpenDirectory description")
-#define WebErrorDescriptionCannotShowDirectory UI_STRING("Cannot show a file directory", "WebErrorCannotShowDirectory description")
-#define WebErrorDescriptionCannotShowMIMEType UI_STRING("Cannot show content with specified mime type", "WebErrorCannotShowMIMEType description")
-#define WebErrorDescriptionCannotShowURL UI_STRING("Cannot show URL", "WebErrorCannotShowURL description")
-#define WebErrorDescriptionCannotFindApplicationForURL UI_STRING("Cannot find application for URL", "WebErrorCannotNotFindApplicationForURL description")
-#define WebErrorDescriptionWebErrorCannotFindPlugin UI_STRING("Cannot find plug-in", "WebErrorCannotFindPlugin description")
-#define WebErrorDescriptionWebErrorCannotLoadPlugin UI_STRING("Cannot load plug-in", "WebErrorCannotLoadPlugin description")
-#define WebErrorDescriptionWebErrorJavaUnavailable UI_STRING("Java is unavailable", "WebErrorJavaUnavailable description")
-#define WebErrorDescriptionDownloadDecodingFailedToComplete UI_STRING_KEY("Download decoding failed", "Download decoding failed (at end)", "WebErrorDownloadDecodingFailedToComplete description")
-#define WebErrorDescriptionDownloadDecodingFailedMidStream UI_STRING_KEY("Download decoding failed", "Download decoding failed (midstream)", "WebErrorDownloadDecodingFailedMidStream description")
+#define WebErrorDescriptionCannotFindApplicationForFile UI_STRING("Cannot find application for file", "WebKitErrorCannotFindApplicationForFile description")
+#define WebErrorDescriptionCannotFindApplicationForURL UI_STRING("Cannot find application for URL", "WebKitErrorCannotFindApplicationForURL description")
+#define WebErrorDescriptionFinderCannotOpenDirectory UI_STRING("Finder cannot open directory", "WebKitErrorFinderCannotOpenDirectory description")
+#define WebErrorDescriptionCannotShowDirectory UI_STRING("Cannot show a file directory", "WebKitErrorCannotShowDirectory description")
+#define WebErrorDescriptionCannotShowMIMEType UI_STRING("Cannot show content with specified mime type", "WebKitErrorCannotShowMIMEType description")
+#define WebErrorDescriptionCannotShowURL UI_STRING("Cannot show URL", "WebKitErrorCannotShowURL description")
+#define WebErrorDescriptionWebErrorCannotFindPlugin UI_STRING("Cannot find plug-in", "WebKitErrorCannotFindPlugin description")
+#define WebErrorDescriptionWebErrorCannotLoadPlugin UI_STRING("Cannot load plug-in", "WebKitErrorCannotLoadPlugin description")
+#define WebErrorDescriptionWebErrorJavaUnavailable UI_STRING("Java is unavailable", "WebKitErrorJavaUnavailable description")
+#define WebErrorDescriptionDownloadDecodingFailedToComplete UI_STRING_KEY("Download decoding failed", "Download decoding failed (at end)", "WebKitErrorDownloadDecodingFailedToComplete description")
+#define WebErrorDescriptionDownloadDecodingFailedMidStream UI_STRING_KEY("Download decoding failed", "Download decoding failed (midstream)", "WebKitErrorDownloadDecodingFailedMidStream description")
static pthread_once_t categoryInitializeControl = PTHREAD_ONCE_INIT;
static void categoryInitialize(void);
@@ -63,11 +63,11 @@ static void categoryInitialize()
WebErrorDescriptionCannotRemoveFile, [NSNumber numberWithInt: WebKitErrorCannotRemoveFile],
WebErrorDescriptionCannotMoveFile, [NSNumber numberWithInt: WebKitErrorCannotMoveFile],
WebErrorDescriptionCannotFindApplicationForFile, [NSNumber numberWithInt: WebKitErrorCannotFindApplicationForFile],
+ WebErrorDescriptionCannotFindApplicationForURL, [NSNumber numberWithInt: WebKitErrorCannotFindApplicationForURL],
WebErrorDescriptionFinderCannotOpenDirectory, [NSNumber numberWithInt: WebKitErrorFinderCannotOpenDirectory],
WebErrorDescriptionCannotShowDirectory, [NSNumber numberWithInt: WebKitErrorCannotShowDirectory],
WebErrorDescriptionCannotShowMIMEType, [NSNumber numberWithInt: WebKitErrorCannotShowMIMEType],
WebErrorDescriptionCannotShowURL, [NSNumber numberWithInt: WebKitErrorCannotShowURL],
- WebErrorDescriptionCannotFindApplicationForURL, [NSNumber numberWithInt: WebKitErrorCannotNotFindApplicationForURL],
WebErrorDescriptionWebErrorCannotFindPlugin, [NSNumber numberWithInt: WebKitErrorCannotFindPlugin],
WebErrorDescriptionWebErrorCannotLoadPlugin, [NSNumber numberWithInt: WebKitErrorCannotLoadPlugin],
WebErrorDescriptionWebErrorJavaUnavailable, [NSNumber numberWithInt: WebKitErrorJavaUnavailable],
diff --git a/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m b/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m
index 2feeec9..02c3f68 100644
--- a/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m
+++ b/WebKit/Plugins.subproj/WebBaseNetscapePluginView.m
@@ -1064,7 +1064,7 @@ typedef struct {
} else {
// Find the frame given the target string.
NSString *target = (NSString *)CFStringCreateWithCString(kCFAllocatorDefault, cTarget, kCFStringEncodingWindowsLatin1);
- WebFrame *frame = [[self webFrame] findOrCreateFramedNamed:target];
+ WebFrame *frame = [[self webFrame] findOrCreateFrameNamed:target];
[target release];
// Make a request, but don't do it right away because it could make the plugin view go away.
diff --git a/WebKit/Plugins.subproj/WebPluginController.m b/WebKit/Plugins.subproj/WebPluginController.m
index 8ff03b2..c9fcff2 100644
--- a/WebKit/Plugins.subproj/WebPluginController.m
+++ b/WebKit/Plugins.subproj/WebPluginController.m
@@ -107,7 +107,7 @@
ERROR("could not load URL %@", URL);
return;
}
- [[frame findOrCreateFramedNamed:target] loadRequest:request];
+ [[frame findOrCreateFrameNamed:target] loadRequest:request];
}
- (void)showStatus:(NSString *)message
diff --git a/WebKit/WebCoreSupport.subproj/WebBridge.m b/WebKit/WebCoreSupport.subproj/WebBridge.m
index 5cf2fcd..03dc46c 100644
--- a/WebKit/WebCoreSupport.subproj/WebBridge.m
+++ b/WebKit/WebCoreSupport.subproj/WebBridge.m
@@ -94,10 +94,10 @@
return [[frame findFrameNamed:name] _bridge];
}
-- (WebCoreBridge *)findOrCreateFramedNamed:(NSString *)name
+- (WebCoreBridge *)findOrCreateFrameNamed:(NSString *)name
{
ASSERT(frame != nil);
- return [[frame findOrCreateFramedNamed:name] _bridge];
+ return [[frame findOrCreateFrameNamed:name] _bridge];
}
- (WebCoreBridge *)createWindowWithURL:(NSString *)URL frameName:(NSString *)name
diff --git a/WebKit/WebView.subproj/WebFrame.h b/WebKit/WebView.subproj/WebFrame.h
index 45d99fa..3263743 100644
--- a/WebKit/WebView.subproj/WebFrame.h
+++ b/WebKit/WebView.subproj/WebFrame.h
@@ -114,13 +114,13 @@
- (WebFrame *)findFrameNamed:(NSString *)name;
/*!
- @method findOrCreateFramedNamed:
+ @method findOrCreateFrameNamed:
@discussion This method calls findFrameNamed but if no frame is found, a new window is opened
and the main frame of the new window is named with the given name.
@param name The name of the frame to find.
@result The frame matching the provided name. Won't be nil.
*/
-- (WebFrame *)findOrCreateFramedNamed:(NSString *)name;
+- (WebFrame *)findOrCreateFrameNamed:(NSString *)name;
/*!
@method parent
diff --git a/WebKit/WebView.subproj/WebFrame.m b/WebKit/WebView.subproj/WebFrame.m
index c72c816..0059a68 100644
--- a/WebKit/WebView.subproj/WebFrame.m
+++ b/WebKit/WebView.subproj/WebFrame.m
@@ -196,7 +196,7 @@
return frame;
}
-- (WebFrame *)findOrCreateFramedNamed:(NSString *)name
+- (WebFrame *)findOrCreateFrameNamed:(NSString *)name
{
WebFrame *frame = [self findFrameNamed:name];
diff --git a/WebKit/WebView.subproj/WebFramePrivate.m b/WebKit/WebView.subproj/WebFramePrivate.m
index 419aa07..237965e 100644
--- a/WebKit/WebView.subproj/WebFramePrivate.m
+++ b/WebKit/WebView.subproj/WebFramePrivate.m
@@ -1303,7 +1303,7 @@ static CFAbsoluteTime _timeOfLastCompletedLoad;
}
} else {
if (![[NSWorkspace sharedWorkspace] openURL:[request URL]]) {
- [self _handleUnimplementablePolicy:policy errorCode:WebKitErrorCannotNotFindApplicationForURL forURL:[request URL]];
+ [self _handleUnimplementablePolicy:policy errorCode:WebKitErrorCannotFindApplicationForURL forURL:[request URL]];
}
}
break;
diff --git a/WebKit/WebView.subproj/WebFrameView.h b/WebKit/WebView.subproj/WebFrameView.h
index f6f38b2..9c6bf7a 100644
--- a/WebKit/WebView.subproj/WebFrameView.h
+++ b/WebKit/WebView.subproj/WebFrameView.h
@@ -37,7 +37,7 @@
/*!
@method frameScrollView
*/
-- frameScrollView;
+- (NSScrollView *)frameScrollView;
/*!
@method documentView
diff --git a/WebKit/WebView.subproj/WebFrameView.m b/WebKit/WebView.subproj/WebFrameView.m
index 91f19ae..007a2c8 100644
--- a/WebKit/WebView.subproj/WebFrameView.m
+++ b/WebKit/WebView.subproj/WebFrameView.m
@@ -74,15 +74,15 @@ enum {
- (void)setAllowsScrolling: (BOOL)flag
{
- [[self frameScrollView] setAllowsScrolling: flag];
+ [(WebDynamicScrollBarsView *)[self frameScrollView] setAllowsScrolling: flag];
}
- (BOOL)allowsScrolling
{
- return [[self frameScrollView] allowsScrolling];
+ return [(WebDynamicScrollBarsView *)[self frameScrollView] allowsScrolling];
}
-- frameScrollView
+- (NSScrollView *)frameScrollView
{
return _private->frameScrollView;
}
diff --git a/WebKit/WebView.subproj/WebFrameViewPrivate.m b/WebKit/WebView.subproj/WebFrameViewPrivate.m
index 2c626f9..8fca05a 100644
--- a/WebKit/WebView.subproj/WebFrameViewPrivate.m
+++ b/WebKit/WebView.subproj/WebFrameViewPrivate.m
@@ -66,7 +66,7 @@
- (void)_setDocumentView:(NSView *)view
{
- WebDynamicScrollBarsView *sv = [self frameScrollView];
+ WebDynamicScrollBarsView *sv = (WebDynamicScrollBarsView *)[self frameScrollView];
[sv setSuppressLayout: YES];
diff --git a/WebKit/WebView.subproj/WebMainResourceClient.m b/WebKit/WebView.subproj/WebMainResourceClient.m
index 779b72f..a59fc00 100644
--- a/WebKit/WebView.subproj/WebMainResourceClient.m
+++ b/WebKit/WebView.subproj/WebMainResourceClient.m
@@ -214,7 +214,7 @@
}
} else {
if(![[NSWorkspace sharedWorkspace] openURL:[req URL]]){
- [[dataSource webFrame] _handleUnimplementablePolicy:contentPolicy errorCode:WebKitErrorCannotNotFindApplicationForURL forURL:[req URL]];
+ [[dataSource webFrame] _handleUnimplementablePolicy:contentPolicy errorCode:WebKitErrorCannotFindApplicationForURL forURL:[req URL]];
}
}
diff --git a/WebKit/WebView.subproj/WebMainResourceLoader.m b/WebKit/WebView.subproj/WebMainResourceLoader.m
index 779b72f..a59fc00 100644
--- a/WebKit/WebView.subproj/WebMainResourceLoader.m
+++ b/WebKit/WebView.subproj/WebMainResourceLoader.m
@@ -214,7 +214,7 @@
}
} else {
if(![[NSWorkspace sharedWorkspace] openURL:[req URL]]){
- [[dataSource webFrame] _handleUnimplementablePolicy:contentPolicy errorCode:WebKitErrorCannotNotFindApplicationForURL forURL:[req URL]];
+ [[dataSource webFrame] _handleUnimplementablePolicy:contentPolicy errorCode:WebKitErrorCannotFindApplicationForURL forURL:[req URL]];
}
}
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list