This function needs to be implemented.
<rdar://problem/8759907>
Created attachment 76332 [details] [PATCH] Fix
Comment on attachment 76332 [details] [PATCH] Fix View in context: https://bugs.webkit.org/attachment.cgi?id=76332&action=review > WebKit2/WebProcess/WebPage/win/WebInspectorWin.cpp:38 > + RetainPtr<CFURLRef> htmlURLRef(AdoptCF, CFBundleCopyResourceURL(CFBundleGetBundleWithIdentifier(CFSTR("com.apple.WebKit")), CFSTR("localizedStrings"), CFSTR("js"), 0)); > + if (!htmlURLRef) The variable should be localizedStringsURLRef not htmlURLRef. > WebKit2/WebProcess/WebPage/win/WebInspectorWin.cpp:41 > + return String(CFURLGetString(htmlURLRef.get())); Ditto.
Comment on attachment 76332 [details] [PATCH] Fix View in context: https://bugs.webkit.org/attachment.cgi?id=76332&action=review >> WebKit2/WebProcess/WebPage/win/WebInspectorWin.cpp:38 >> + if (!htmlURLRef) > > The variable should be localizedStringsURLRef not htmlURLRef. Fixed.
Landed in r73884.