# This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # webkit-gtk2 # webkit-gtk2/Makefile # webkit-gtk2/distinfo # webkit-gtk2/pkg-descr # webkit-gtk2/pkg-plist # webkit-gtk2/files/ # webkit-gtk2/files/patch-GNUmakefile.in # webkit-gtk2/files/patch-Source_ThirdParty_gtext_include_gtest_internal_gtest-port.h # webkit-gtk2/files/patch-Source_WebCore_editing_Editor.h # webkit-gtk2/files/patch-Source_WebCore_plugins_PluginDatabase.cpp # webkit-gtk2/files/patch-Source_WebKit2_PluginProcess_unix_PluginProcessMainUnix.cpp # webkit-gtk2/files/patch-Source_WebKit2_UIProcess_Launcher_gtk_ProcessLauncherGtk.cpp # webkit-gtk2/files/patch-Source_WebKit2_UIProcess_Plugins_unix_PluginProcessProxyUnix.cpp # webkit-gtk2/files/patch-Source_WebKit_gtk_webkit_webkitwebview.cpp # webkit-gtk2/files/patch-Tools_ImageDiff_gtk_ImageDiff.cpp # webkit-gtk2/files/patch-configure # webkit-gtk3 # webkit-gtk3/Makefile # webkit-gtk3/distinfo # webkit-gtk3/pkg-descr # webkit-gtk3/pkg-plist # webkit-gtk3/files/ # webkit-gtk3/files/patch-GNUmakefile.in # webkit-gtk3/files/patch-Source_ThirdParty_gtext_include_gtest_internal_gtest-port.h # webkit-gtk3/files/patch-Source_WebCore_editing_Editor.h # webkit-gtk3/files/patch-Source_WebCore_plugins_PluginDatabase.cpp # webkit-gtk3/files/patch-Source_WebKit2_PluginProcess_unix_PluginProcessMainUnix.cpp # webkit-gtk3/files/patch-Source_WebKit2_UIProcess_Launcher_gtk_ProcessLauncherGtk.cpp # webkit-gtk3/files/patch-Source_WebKit2_UIProcess_Plugins_unix_PluginProcessProxyUnix.cpp # webkit-gtk3/files/patch-Source_WebKit_gtk_webkit_webkitwebview.cpp # webkit-gtk3/files/patch-Tools_ImageDiff_gtk_ImageDiff.cpp # webkit-gtk3/files/patch-configure # echo c - webkit-gtk2 mkdir -p webkit-gtk2 > /dev/null 2>&1 echo x - webkit-gtk2/Makefile sed 's/^X//' >webkit-gtk2/Makefile << '3e45b1445074c64b838051c17d5f027d' X# Created by: Michael Johnson X# $FreeBSD$ X# $MCom$ X XPORTNAME= webkit XPORTVERSION= 2.0.3 XCATEGORIES= www XMASTER_SITES= http://webkitgtk.org/releases/ XPKGNAMESUFFIX= -gtk2 XDISTNAME= ${PORTNAME}gtk-${PORTVERSION} X XMAINTAINER= gnome@FreeBSD.org XCOMMENT= Opensource browser engine using the GTK+ 2 toolkit X XBUILD_DEPENDS= ${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex \ X ${LOCALBASE}/bin/gperf:${PORTSDIR}/devel/gperf \ X gtkdoc-rebase:${PORTSDIR}/textproc/gtk-doc XLIB_DEPENDS= enchant:${PORTSDIR}/textproc/enchant \ X secret-1:${PORTSDIR}/security/libsecret \ X icutu:${PORTSDIR}/devel/icu \ X webp:${PORTSDIR}/graphics/webp \ X curl:${PORTSDIR}/ftp/curl \ X soup-2.4:${PORTSDIR}/devel/libsoup X XLATEST_LINK= ${PORTNAME}${PKGNAMESUFFIX} X XUSE_XZ= yes XUSE_GSTREAMER1= yes XMAKE_JOBS_SAFE= yes XUSE_XORG= xt xdamage xcomposite XUSES= bison gettext pkgconfig shebangfix XUSE_RUBY= yes XRUBY_NO_RUN_DEPENDS=yes XUSE_GMAKE= yes X#USE_AUTOTOOLS= libtool XUSE_GNOME= cairo gnomehier gtk20 introspection:build \ X libxslt:build X#ltverhack lthack XUSE_SQLITE= 3 XUSE_PERL5_BUILD=yes XUSE_LDCONFIG= yes XGNU_CONFIGURE= yes XCONFIGURE_ENV= ac_cv_path_FLEX="${LOCALBASE}/bin/flex" \ X ZLIB_CFLAGS="-I/usr/include" \ X ZLIB_LIBS="-L/usr/lib -lz" \ X ac_cv_path_DOLT_BASH="" XCPPFLAGS+= -I${LOCALBASE}/include XLDFLAGS+= -L${LOCALBASE}/lib XCONFIGURE_ARGS= --with-gtk=2.0 \ X --disable-webkit2 \ X --enable-svg-fonts \ X --disable-geolocation \ X --enable-introspection X X#--program-suffix=SUFFIX append SUFFIX to installed program names X# --program-transform-name=PROGRAM XMAKEFILE= GNUmakefile X XCONFIGURE_ARGS+=--disable-silent-rules XCONFIGURE_ARGS+=--disable-egl \ X --disable-gles2 X# --with-acceleration-backend=opengl # clutter broken? X# opengl, clutter, none (clutter unsupported) X XSHEBANG_FILES= \ X Source/JavaScriptCore/create_hash_table \ X Source/WebCore/css/*.pl \ X Source/WebCore/dom/*.pl \ X Source/WebCore/inspector/xxd.pl \ X Source/WebCore/make-hash-tools.pl \ X Source/WebCore/page/make_settings.pl \ X Source/WebCore/platform/text/mac/make-charset-table.pl \ X Source/WebKit2/Scripts/generate-forwarding-headers.pl \ X Source/WebCore/bindings/scripts/*.p[lm] \ X Source/JavaScriptCore/create_hash_table \ X Tools/Scripts/webkit-build-directory X XBROWSER_PLUGINS_DIR?= ${LOCALBASE}/lib/browser_plugins/symlinks/webkit-gtk3 X#_BROWSER_PLUGINS_DIR= ${BROWSER_PLUGINS_DIR:S|^/|"|:S|/|", "|g}", X XOPTIONS_DEFINE= WEBGL WEBAUDIO DEBUG FULLDEBUG XOPTIONS_DEFAULT=WEBGL WEBAUDIO XWEBAUDIO_DESC= Web audio support XWEBGL_DESC= Enable Web GL support XDEBUG_DESC= Just enable debug symbols XFULLDEBUG_DESC= Enable fullblown debug support X X.include X X.if ${PORT_OPTIONS:MWEBGL} XUSE_GL= gl XCONFIGURE_ARGS+=--enable-webgl X.else XCONFIGURE_ARGS+=--disable-webgl X.endif X X.if ${PORT_OPTIONS:MWEBAUDIO} XCONFIGURE_ARGS+=--enable-web-audio X.else XCONFIGURE_ARGS+=--disable-web-audio X.endif X X.if ${PORT_OPTIONS:MFULLDEBUG} XCONFIGURE_ARGS+=--enable-debug X.else XCONFIGURE_ARGS+=--disable-debug X.endif X X.if ${PORT_OPTIONS:MDEBUG} || ${PORT_OPTIONS:MFULLDEBUG} XCONFIGURE_ARGS+=--enable-debug-symbols=yes X.endif X X# we need clang + libc++ or gcc 4.7+ X# clang has libc++ issues with tuple header, needs gtest patches X.if (${OSVERSION}>=1000024 && (${ARCH}==i386 || ${ARCH}==amd64)) XCPPFLAGS+= -DGTEST_USE_OWN_TR1_TUPLE XCXXFLAGS+= -Wno-c++11-extensions -Qunused-arguments -stdlib=libc++ XLDFLAGS+= -stdlib=libc++ X.else XWITH_GCC_COMPILER=1 XUSE_GCC= 4.7+ X.endif X X.if ${ARCH} == powerpc64 XCFLAGS+= -mminimal-toc X.endif X X.include X X.if ${PERL_LEVEL} >= 501400 XBUILD_DEPENDS+= p5-Switch>0:${PORTSDIR}/lang/p5-Switch X.endif X Xpost-patch: X @${REINPLACE_CMD} -e 's|%%BROWSER_PLUGINS_DIR%%|${BROWSER_PLUGINS_DIR}|' \ X ${WRKSRC}/Source/WebCore/plugins/PluginDatabase.cpp X @${FIND} ${WRKSRC} -name GNUmakefile.* | ${XARGS} ${REINPLACE_CMD} -e \ X 's|[(]libdir[)]/pkgconfig|(prefix)/libdata/pkgconfig|g' X @${REINPLACE_CMD} -e 's|/usr/bin/gcc|${CC}|' \ X ${WRKSRC}/Source/WebCore/dom/make_names.pl \ X ${WRKSRC}/Source/WebCore/css/make-css-file-arrays.pl \ X ${WRKSRC}/Source/WebCore/bindings/scripts/IDLParser.pm X @${REINPLACE_CMD} -e 's|"gperf|"${LOCALBASE}/bin/gperf|g' \ X ${WRKSRC}/Source/WebCore/css/makevalues.pl \ X ${WRKSRC}/Source/WebCore/css/makeprop.pl \ X ${WRKSRC}/Source/WebCore/make-hash-tools.pl X Xpost-install: X ${INSTALL_PROGRAM} ${WRKSRC}/Programs/GtkLauncher \ X ${PREFIX}/bin/GtkLauncher-1 X X.include 3e45b1445074c64b838051c17d5f027d echo x - webkit-gtk2/distinfo sed 's/^X//' >webkit-gtk2/distinfo << '28591f66268cedb3a1a693b7d7cb4770' XSHA256 (webkitgtk-2.0.3.tar.xz) = 9bf8a32afbf087c4fc2c652b193a52c44b180735ba9c7c8db88137904d458e1b XSIZE (webkitgtk-2.0.3.tar.xz) = 9845948 28591f66268cedb3a1a693b7d7cb4770 echo x - webkit-gtk2/pkg-descr sed 's/^X//' >webkit-gtk2/pkg-descr << '7addc25d9b441145fdbde28fd3695926' XWebKit is an open source web browser engine. It is able to display content Xsuch as HTML, SVG, XML, and others. It also supports DOM, XMLHttpRequest, XXSLT, CSS, Javascript/ECMAscript and more. X XWWW: http://webkit.org/ 7addc25d9b441145fdbde28fd3695926 echo x - webkit-gtk2/pkg-plist sed 's/^X//' >webkit-gtk2/pkg-plist << '8e416349dff1eb990c738f29db71a41f' Xbin/GtkLauncher-1 Xbin/jsc-1 Xinclude/webkitgtk-1.0/JavaScriptCore/JSBase.h Xinclude/webkitgtk-1.0/JavaScriptCore/JSContextRef.h Xinclude/webkitgtk-1.0/JavaScriptCore/JSObjectRef.h Xinclude/webkitgtk-1.0/JavaScriptCore/JSStringRef.h Xinclude/webkitgtk-1.0/JavaScriptCore/JSValueRef.h Xinclude/webkitgtk-1.0/JavaScriptCore/JavaScript.h Xinclude/webkitgtk-1.0/JavaScriptCore/WebKitAvailability.h Xinclude/webkitgtk-1.0/webkit/webkit.h Xinclude/webkitgtk-1.0/webkit/webkitapplicationcache.h Xinclude/webkitgtk-1.0/webkit/webkitdefines.h Xinclude/webkitgtk-1.0/webkit/webkitdom.h Xinclude/webkitgtk-1.0/webkit/webkitdownload.h Xinclude/webkitgtk-1.0/webkit/webkitenumtypes.h Xinclude/webkitgtk-1.0/webkit/webkiterror.h Xinclude/webkitgtk-1.0/webkit/webkitfavicondatabase.h Xinclude/webkitgtk-1.0/webkit/webkitfilechooserrequest.h Xinclude/webkitgtk-1.0/webkit/webkitgeolocationpolicydecision.h Xinclude/webkitgtk-1.0/webkit/webkitglobals.h Xinclude/webkitgtk-1.0/webkit/webkithittestresult.h Xinclude/webkitgtk-1.0/webkit/webkiticondatabase.h Xinclude/webkitgtk-1.0/webkit/webkitnetworkrequest.h Xinclude/webkitgtk-1.0/webkit/webkitnetworkresponse.h Xinclude/webkitgtk-1.0/webkit/webkitsecurityorigin.h Xinclude/webkitgtk-1.0/webkit/webkitsoupauthdialog.h Xinclude/webkitgtk-1.0/webkit/webkitspellchecker.h Xinclude/webkitgtk-1.0/webkit/webkitversion.h Xinclude/webkitgtk-1.0/webkit/webkitviewportattributes.h Xinclude/webkitgtk-1.0/webkit/webkitwebbackforwardlist.h Xinclude/webkitgtk-1.0/webkit/webkitwebdatabase.h Xinclude/webkitgtk-1.0/webkit/webkitwebdatasource.h Xinclude/webkitgtk-1.0/webkit/webkitwebframe.h Xinclude/webkitgtk-1.0/webkit/webkitwebhistoryitem.h Xinclude/webkitgtk-1.0/webkit/webkitwebinspector.h Xinclude/webkitgtk-1.0/webkit/webkitwebnavigationaction.h Xinclude/webkitgtk-1.0/webkit/webkitwebplugin.h Xinclude/webkitgtk-1.0/webkit/webkitwebplugindatabase.h Xinclude/webkitgtk-1.0/webkit/webkitwebpolicydecision.h Xinclude/webkitgtk-1.0/webkit/webkitwebresource.h Xinclude/webkitgtk-1.0/webkit/webkitwebsettings.h Xinclude/webkitgtk-1.0/webkit/webkitwebview.h Xinclude/webkitgtk-1.0/webkit/webkitwebwindowfeatures.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKAPICast.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKAPICastGtk.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKAPICastSoup.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKApplicationCacheManager.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKArray.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKAuthenticationChallenge.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKAuthenticationDecisionListener.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKBackForwardList.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKBackForwardListItem.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKBase.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKBaseGtk.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKBaseSoup.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKBatteryManager.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKBatteryStatus.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKCertificateInfo.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKColorPickerResultListener.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKConnectionRef.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKContext.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKContextMenuItem.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKContextMenuItemTypes.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKContextPrivate.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKContextSoup.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKCookieManager.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKCredential.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKCredentialTypes.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKData.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKDatabaseManager.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKDictionary.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKDownload.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKError.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKEvent.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKFindOptions.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKFormSubmissionListener.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKFrame.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKFramePolicyListener.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKFullScreenClientGtk.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKGeolocationManager.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKGeolocationPermissionRequest.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKGeolocationPosition.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKGeometry.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKGrammarDetail.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKGraphicsContext.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKGraphicsContextGtk.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKHitTestResult.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKImage.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKInspector.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKInspectorClientGtk.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKKeyValueStorageManager.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKMediaCacheManager.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKMutableArray.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKMutableDictionary.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKNativeEvent.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKNavigationData.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKNetworkInfo.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKNetworkInfoManager.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKNotification.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKNotificationManager.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKNotificationPermissionRequest.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKNotificationProvider.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKNumber.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKOpenPanelParameters.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKOpenPanelResultListener.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKPage.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKPageGroup.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKPageLoadTypes.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKPagePrivate.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKPageVisibilityTypes.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKPluginSiteDataManager.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKPreferences.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKPreferencesPrivate.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKProtectionSpace.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKProtectionSpaceTypes.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKRenderLayer.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKRenderObject.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKResourceCacheManager.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKRetainPtr.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKSecurityOrigin.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKSerializedScriptValue.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKSerializedScriptValuePrivate.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKSharedAPICast.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKSoupRequestManager.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKString.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKStringPrivate.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKTextChecker.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKType.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKURL.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKURLRequest.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKURLResponse.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKUserContentURLPattern.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKVibration.cpp Xinclude/webkitgtk-1.0/webkit2/WebKit2/WKView.h Xinclude/webkitgtk-1.0/webkit2/WebKit2/WebKit2_C.h Xinclude/webkitgtk-1.0/webkit2/WebKitBackForwardList.h Xinclude/webkitgtk-1.0/webkit2/WebKitBackForwardListItem.h Xinclude/webkitgtk-1.0/webkit2/WebKitContextMenu.h Xinclude/webkitgtk-1.0/webkit2/WebKitContextMenuActions.h Xinclude/webkitgtk-1.0/webkit2/WebKitContextMenuItem.h Xinclude/webkitgtk-1.0/webkit2/WebKitCookieManager.h Xinclude/webkitgtk-1.0/webkit2/WebKitDefines.h Xinclude/webkitgtk-1.0/webkit2/WebKitDownload.h Xinclude/webkitgtk-1.0/webkit2/WebKitEditingCommands.h Xinclude/webkitgtk-1.0/webkit2/WebKitEnumTypes.h Xinclude/webkitgtk-1.0/webkit2/WebKitError.h Xinclude/webkitgtk-1.0/webkit2/WebKitFaviconDatabase.h Xinclude/webkitgtk-1.0/webkit2/WebKitFileChooserRequest.h Xinclude/webkitgtk-1.0/webkit2/WebKitFindController.h Xinclude/webkitgtk-1.0/webkit2/WebKitFormSubmissionRequest.h Xinclude/webkitgtk-1.0/webkit2/WebKitForwardDeclarations.h Xinclude/webkitgtk-1.0/webkit2/WebKitGeolocationPermissionRequest.h Xinclude/webkitgtk-1.0/webkit2/WebKitHitTestResult.h Xinclude/webkitgtk-1.0/webkit2/WebKitJavascriptResult.h Xinclude/webkitgtk-1.0/webkit2/WebKitMimeInfo.h Xinclude/webkitgtk-1.0/webkit2/WebKitNavigationPolicyDecision.h Xinclude/webkitgtk-1.0/webkit2/WebKitPermissionRequest.h Xinclude/webkitgtk-1.0/webkit2/WebKitPlugin.h Xinclude/webkitgtk-1.0/webkit2/WebKitPolicyDecision.h Xinclude/webkitgtk-1.0/webkit2/WebKitPrintOperation.h Xinclude/webkitgtk-1.0/webkit2/WebKitResponsePolicyDecision.h Xinclude/webkitgtk-1.0/webkit2/WebKitScriptDialog.h Xinclude/webkitgtk-1.0/webkit2/WebKitSecurityManager.h Xinclude/webkitgtk-1.0/webkit2/WebKitSettings.h Xinclude/webkitgtk-1.0/webkit2/WebKitURIRequest.h Xinclude/webkitgtk-1.0/webkit2/WebKitURIResponse.h Xinclude/webkitgtk-1.0/webkit2/WebKitURISchemeRequest.h Xinclude/webkitgtk-1.0/webkit2/WebKitVersion.h Xinclude/webkitgtk-1.0/webkit2/WebKitWebContext.h Xinclude/webkitgtk-1.0/webkit2/WebKitWebExtension.h Xinclude/webkitgtk-1.0/webkit2/WebKitWebInspector.h Xinclude/webkitgtk-1.0/webkit2/WebKitWebPage.h Xinclude/webkitgtk-1.0/webkit2/WebKitWebResource.h Xinclude/webkitgtk-1.0/webkit2/WebKitWebView.h Xinclude/webkitgtk-1.0/webkit2/WebKitWebViewBase.h Xinclude/webkitgtk-1.0/webkit2/WebKitWebViewGroup.h Xinclude/webkitgtk-1.0/webkit2/WebKitWindowProperties.h Xinclude/webkitgtk-1.0/webkit2/webkit-web-extension.h Xinclude/webkitgtk-1.0/webkit2/webkit2.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMAttr.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMBarInfo.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMBlob.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMCDATASection.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMCSSRule.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMCSSRuleList.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMCSSStyleDeclaration.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMCSSStyleSheet.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMCSSValue.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMCharacterData.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMComment.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMConsole.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMCustom.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMDOMApplicationCache.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMDOMImplementation.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMDOMMimeType.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMDOMMimeTypeArray.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMDOMNamedFlowCollection.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMDOMPlugin.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMDOMPluginArray.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMDOMSecurityPolicy.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMDOMSelection.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMDOMSettableTokenList.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMDOMStringList.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMDOMStringMap.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMDOMTokenList.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMDOMWindow.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMDOMWindowCSS.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMDatabase.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMDocument.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMDocumentFragment.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMDocumentType.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMEntityReference.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMEvent.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMEventTarget.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMFile.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMFileList.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMGamepad.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMGamepadList.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMGeolocation.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLAnchorElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLAppletElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLAreaElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLAudioElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLBRElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLBaseElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLBaseFontElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLBodyElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLButtonElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLCanvasElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLCollection.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLDListElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLDetailsElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLDirectoryElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLDivElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLDocument.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLEmbedElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLFieldSetElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLFontElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLFormElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLFrameElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLFrameSetElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLHRElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLHeadElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLHeadingElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLHtmlElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLIFrameElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLImageElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLInputElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLKeygenElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLLIElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLLabelElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLLegendElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLLinkElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLMapElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLMarqueeElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLMediaElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLMenuElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLMetaElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLModElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLOListElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLObjectElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLOptGroupElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLOptionElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLOptionsCollection.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLParagraphElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLParamElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLPreElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLPropertiesCollection.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLQuoteElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLScriptElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLSelectElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLStyleElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLTableCaptionElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLTableCellElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLTableColElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLTableElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLTableRowElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLTableSectionElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLTextAreaElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLTitleElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLUListElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHTMLVideoElement.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMHistory.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMLocation.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMMediaError.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMMediaList.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMMediaQueryList.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMMemoryInfo.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMMessagePort.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMMicroDataItemValue.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMMouseEvent.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMNamedNodeMap.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMNavigator.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMNode.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMNodeFilter.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMNodeIterator.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMNodeList.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMObject.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMPerformance.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMPerformanceEntry.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMPerformanceEntryList.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMPerformanceNavigation.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMPerformanceTiming.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMProcessingInstruction.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMPropertyNodeList.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMRange.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMScreen.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMShadowRoot.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMStorage.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMStorageInfo.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMStyleMedia.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMStyleSheet.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMStyleSheetList.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMText.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMTextTrack.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMTextTrackCue.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMTextTrackCueList.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMTextTrackList.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMTimeRanges.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMTrackEvent.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMTreeWalker.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMUIEvent.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMValidityState.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMWebKitNamedFlow.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMWebKitPoint.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMXPathExpression.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMXPathNSResolver.h Xinclude/webkitgtk-1.0/webkitdom/WebKitDOMXPathResult.h Xinclude/webkitgtk-1.0/webkitdom/webkitdom.h Xinclude/webkitgtk-1.0/webkitdom/webkitdomdefines.h Xlib/girepository-1.0/JSCore-1.0.typelib Xlib/girepository-1.0/WebKit-1.0.typelib Xlib/libjavascriptcoregtk-1.0.la Xlib/libjavascriptcoregtk-1.0.so Xlib/libjavascriptcoregtk-1.0.so.13 Xlib/libwebkitgtk-1.0.la Xlib/libwebkitgtk-1.0.so Xlib/libwebkitgtk-1.0.so.18 Xlibdata/pkgconfig/javascriptcoregtk-1.0.pc Xlibdata/pkgconfig/webkit-1.0.pc Xshare/gir-1.0/JSCore-1.0.gir Xshare/gir-1.0/WebKit-1.0.gir Xshare/gtk-doc/html/webkitgtk/WebKitFaviconDatabase.html Xshare/gtk-doc/html/webkitgtk/WebKitFileChooserRequest.html Xshare/gtk-doc/html/webkitgtk/WebKitGeolocationPolicyDecision.html Xshare/gtk-doc/html/webkitgtk/WebKitHitTestResult.html Xshare/gtk-doc/html/webkitgtk/WebKitIconDatabase.html Xshare/gtk-doc/html/webkitgtk/WebKitNetworkRequest.html Xshare/gtk-doc/html/webkitgtk/WebKitNetworkResponse.html Xshare/gtk-doc/html/webkitgtk/WebKitSecurityOrigin.html Xshare/gtk-doc/html/webkitgtk/WebKitSoupAuthDialog.html Xshare/gtk-doc/html/webkitgtk/WebKitSpellChecker.html Xshare/gtk-doc/html/webkitgtk/WebKitViewportAttributes.html Xshare/gtk-doc/html/webkitgtk/WebKitWebBackForwardList.html Xshare/gtk-doc/html/webkitgtk/WebKitWebDataSource.html Xshare/gtk-doc/html/webkitgtk/WebKitWebDatabase.html Xshare/gtk-doc/html/webkitgtk/WebKitWebFrame.html Xshare/gtk-doc/html/webkitgtk/WebKitWebHistoryItem.html Xshare/gtk-doc/html/webkitgtk/WebKitWebInspector.html Xshare/gtk-doc/html/webkitgtk/WebKitWebNavigationAction.html Xshare/gtk-doc/html/webkitgtk/WebKitWebPlugin.html Xshare/gtk-doc/html/webkitgtk/WebKitWebPluginDatabase.html Xshare/gtk-doc/html/webkitgtk/WebKitWebPolicyDecision.html Xshare/gtk-doc/html/webkitgtk/WebKitWebResource.html Xshare/gtk-doc/html/webkitgtk/WebKitWebSettings.html Xshare/gtk-doc/html/webkitgtk/WebKitWebWindowFeatures.html Xshare/gtk-doc/html/webkitgtk/annotation-glossary.html Xshare/gtk-doc/html/webkitgtk/ch01.html Xshare/gtk-doc/html/webkitgtk/ch02.html Xshare/gtk-doc/html/webkitgtk/ch03.html Xshare/gtk-doc/html/webkitgtk/home.png Xshare/gtk-doc/html/webkitgtk/index-1.0.1.html Xshare/gtk-doc/html/webkitgtk/index-1.0.2.html Xshare/gtk-doc/html/webkitgtk/index-1.0.3.html Xshare/gtk-doc/html/webkitgtk/index-1.1.1.html Xshare/gtk-doc/html/webkitgtk/index-1.1.10.html Xshare/gtk-doc/html/webkitgtk/index-1.1.11.html Xshare/gtk-doc/html/webkitgtk/index-1.1.13.html Xshare/gtk-doc/html/webkitgtk/index-1.1.14.html Xshare/gtk-doc/html/webkitgtk/index-1.1.15.html Xshare/gtk-doc/html/webkitgtk/index-1.1.16.html Xshare/gtk-doc/html/webkitgtk/index-1.1.17.html Xshare/gtk-doc/html/webkitgtk/index-1.1.18.html Xshare/gtk-doc/html/webkitgtk/index-1.1.2.html Xshare/gtk-doc/html/webkitgtk/index-1.1.20.html Xshare/gtk-doc/html/webkitgtk/index-1.1.23.html Xshare/gtk-doc/html/webkitgtk/index-1.1.3.html Xshare/gtk-doc/html/webkitgtk/index-1.1.4.html Xshare/gtk-doc/html/webkitgtk/index-1.1.5.html Xshare/gtk-doc/html/webkitgtk/index-1.1.6.html Xshare/gtk-doc/html/webkitgtk/index-1.1.7.html Xshare/gtk-doc/html/webkitgtk/index-1.1.8.html Xshare/gtk-doc/html/webkitgtk/index-1.3.1.html Xshare/gtk-doc/html/webkitgtk/index-1.3.2.html Xshare/gtk-doc/html/webkitgtk/index-1.3.3.html Xshare/gtk-doc/html/webkitgtk/index-1.3.4.html Xshare/gtk-doc/html/webkitgtk/index-1.3.8.html Xshare/gtk-doc/html/webkitgtk/index-all.html Xshare/gtk-doc/html/webkitgtk/index-deprecated.html Xshare/gtk-doc/html/webkitgtk/index.html Xshare/gtk-doc/html/webkitgtk/index.sgml Xshare/gtk-doc/html/webkitgtk/left.png Xshare/gtk-doc/html/webkitgtk/right.png Xshare/gtk-doc/html/webkitgtk/style.css Xshare/gtk-doc/html/webkitgtk/up.png Xshare/gtk-doc/html/webkitgtk/webkit-environment.html Xshare/gtk-doc/html/webkitgtk/webkitgtk-Global-functions.html Xshare/gtk-doc/html/webkitgtk/webkitgtk-webkitdownload.html Xshare/gtk-doc/html/webkitgtk/webkitgtk-webkitwebview.html Xshare/gtk-doc/html/webkitgtk/webkitgtk.devhelp2 Xshare/locale/ar/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/as/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/bg/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/cs/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/de/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/el/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/en_CA/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/en_GB/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/eo/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/es/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/et/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/eu/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/fr/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/gl/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/gu/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/he/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/hi/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/hu/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/id/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/it/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/kn/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/ko/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/lt/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/lv/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/ml/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/mr/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/nb/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/nl/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/or/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/pa/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/pl/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/pt/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/pt_BR/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/ro/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/ru/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/sl/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/sr/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/sr@latin/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/sv/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/ta/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/te/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/uk/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/vi/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/locale/zh_CN/LC_MESSAGES/WebKitGTK-2.0.mo Xshare/webkitgtk-1.0/images/deleteButton.png Xshare/webkitgtk-1.0/images/inputSpeech.png Xshare/webkitgtk-1.0/images/missingImage.png Xshare/webkitgtk-1.0/images/nullPlugin.png Xshare/webkitgtk-1.0/images/panIcon.png Xshare/webkitgtk-1.0/images/textAreaResizeCorner.png Xshare/webkitgtk-1.0/images/urlIcon.png Xshare/webkitgtk-1.0/resources/audio/Composite.wav Xshare/webkitgtk-1.0/resources/error.html Xshare/webkitgtk-1.0/webinspector/AdvancedSearchController.js Xshare/webkitgtk-1.0/webinspector/ApplicationCacheItemsView.js Xshare/webkitgtk-1.0/webinspector/ApplicationCacheModel.js Xshare/webkitgtk-1.0/webinspector/AuditCategories.js Xshare/webkitgtk-1.0/webinspector/AuditFormatters.js Xshare/webkitgtk-1.0/webinspector/AuditLauncherView.js Xshare/webkitgtk-1.0/webinspector/AuditResultView.js Xshare/webkitgtk-1.0/webinspector/AuditRules.js Xshare/webkitgtk-1.0/webinspector/AuditsPanel.js Xshare/webkitgtk-1.0/webinspector/BottomUpProfileDataGridTree.js Xshare/webkitgtk-1.0/webinspector/BreakpointManager.js Xshare/webkitgtk-1.0/webinspector/BreakpointsSidebarPane.js Xshare/webkitgtk-1.0/webinspector/CPUProfileView.js Xshare/webkitgtk-1.0/webinspector/CSSMetadata.js Xshare/webkitgtk-1.0/webinspector/CSSNamedFlowCollectionsView.js Xshare/webkitgtk-1.0/webinspector/CSSNamedFlowView.js Xshare/webkitgtk-1.0/webinspector/CSSSelectorProfileView.js Xshare/webkitgtk-1.0/webinspector/CSSStyleModel.js Xshare/webkitgtk-1.0/webinspector/CallStackSidebarPane.js Xshare/webkitgtk-1.0/webinspector/CanvasProfileView.js Xshare/webkitgtk-1.0/webinspector/Checkbox.js Xshare/webkitgtk-1.0/webinspector/CodeMirrorTextEditor.js Xshare/webkitgtk-1.0/webinspector/Color.js Xshare/webkitgtk-1.0/webinspector/CompilerScriptMapping.js Xshare/webkitgtk-1.0/webinspector/ConsoleMessage.js Xshare/webkitgtk-1.0/webinspector/ConsoleModel.js Xshare/webkitgtk-1.0/webinspector/ConsolePanel.js Xshare/webkitgtk-1.0/webinspector/ConsoleView.js Xshare/webkitgtk-1.0/webinspector/ContentProvider.js Xshare/webkitgtk-1.0/webinspector/ContentProviders.js Xshare/webkitgtk-1.0/webinspector/ContextMenu.js Xshare/webkitgtk-1.0/webinspector/CookieItemsView.js Xshare/webkitgtk-1.0/webinspector/CookieParser.js Xshare/webkitgtk-1.0/webinspector/CookiesTable.js Xshare/webkitgtk-1.0/webinspector/DOMAgent.js Xshare/webkitgtk-1.0/webinspector/DOMBreakpointsSidebarPane.js Xshare/webkitgtk-1.0/webinspector/DOMCountersGraph.js Xshare/webkitgtk-1.0/webinspector/DOMExtension.js Xshare/webkitgtk-1.0/webinspector/DOMPresentationUtils.js Xshare/webkitgtk-1.0/webinspector/DOMStorage.js Xshare/webkitgtk-1.0/webinspector/DOMStorageItemsView.js Xshare/webkitgtk-1.0/webinspector/DOMSyntaxHighlighter.js Xshare/webkitgtk-1.0/webinspector/DataGrid.js Xshare/webkitgtk-1.0/webinspector/Database.js Xshare/webkitgtk-1.0/webinspector/DatabaseQueryView.js Xshare/webkitgtk-1.0/webinspector/DatabaseTableView.js Xshare/webkitgtk-1.0/webinspector/DebuggerModel.js Xshare/webkitgtk-1.0/webinspector/DebuggerScriptMapping.js Xshare/webkitgtk-1.0/webinspector/DefaultScriptMapping.js Xshare/webkitgtk-1.0/webinspector/DefaultTextEditor.js Xshare/webkitgtk-1.0/webinspector/Dialog.js Xshare/webkitgtk-1.0/webinspector/DirectoryContentView.js Xshare/webkitgtk-1.0/webinspector/DockController.js Xshare/webkitgtk-1.0/webinspector/Drawer.js Xshare/webkitgtk-1.0/webinspector/ElementsPanel.js Xshare/webkitgtk-1.0/webinspector/ElementsPanelDescriptor.js Xshare/webkitgtk-1.0/webinspector/ElementsTreeOutline.js Xshare/webkitgtk-1.0/webinspector/EmptyView.js Xshare/webkitgtk-1.0/webinspector/EventListenersSidebarPane.js Xshare/webkitgtk-1.0/webinspector/ExtensionAPI.js Xshare/webkitgtk-1.0/webinspector/ExtensionAuditCategory.js Xshare/webkitgtk-1.0/webinspector/ExtensionPanel.js Xshare/webkitgtk-1.0/webinspector/ExtensionRegistryStub.js Xshare/webkitgtk-1.0/webinspector/ExtensionServer.js Xshare/webkitgtk-1.0/webinspector/ExtensionView.js Xshare/webkitgtk-1.0/webinspector/FileContentView.js Xshare/webkitgtk-1.0/webinspector/FileManager.js Xshare/webkitgtk-1.0/webinspector/FileMapping.js Xshare/webkitgtk-1.0/webinspector/FileSystemMapping.js Xshare/webkitgtk-1.0/webinspector/FileSystemModel.js Xshare/webkitgtk-1.0/webinspector/FileSystemProjectDelegate.js Xshare/webkitgtk-1.0/webinspector/FileSystemView.js Xshare/webkitgtk-1.0/webinspector/FileUtils.js Xshare/webkitgtk-1.0/webinspector/FilteredItemSelectionDialog.js Xshare/webkitgtk-1.0/webinspector/FontView.js Xshare/webkitgtk-1.0/webinspector/GoToLineDialog.js Xshare/webkitgtk-1.0/webinspector/HAREntry.js Xshare/webkitgtk-1.0/webinspector/HandlerRegistry.js Xshare/webkitgtk-1.0/webinspector/HeapSnapshot.js Xshare/webkitgtk-1.0/webinspector/HeapSnapshotDataGrids.js Xshare/webkitgtk-1.0/webinspector/HeapSnapshotGridNodes.js Xshare/webkitgtk-1.0/webinspector/HeapSnapshotLoader.js Xshare/webkitgtk-1.0/webinspector/HeapSnapshotProxy.js Xshare/webkitgtk-1.0/webinspector/HeapSnapshotView.js Xshare/webkitgtk-1.0/webinspector/HeapSnapshotWorker.js Xshare/webkitgtk-1.0/webinspector/HeapSnapshotWorkerDispatcher.js Xshare/webkitgtk-1.0/webinspector/HelpScreen.js Xshare/webkitgtk-1.0/webinspector/ImageView.js Xshare/webkitgtk-1.0/webinspector/Images/addIcon.png Xshare/webkitgtk-1.0/webinspector/Images/applicationCache.png Xshare/webkitgtk-1.0/webinspector/Images/back.png Xshare/webkitgtk-1.0/webinspector/Images/breakpointBorder.png Xshare/webkitgtk-1.0/webinspector/Images/breakpointConditionalBorder.png Xshare/webkitgtk-1.0/webinspector/Images/breakpointConditionalCounterBorder.png Xshare/webkitgtk-1.0/webinspector/Images/breakpointCounterBorder.png Xshare/webkitgtk-1.0/webinspector/Images/checker.png Xshare/webkitgtk-1.0/webinspector/Images/closeButtons.png Xshare/webkitgtk-1.0/webinspector/Images/cookie.png Xshare/webkitgtk-1.0/webinspector/Images/database.png Xshare/webkitgtk-1.0/webinspector/Images/databaseTable.png Xshare/webkitgtk-1.0/webinspector/Images/debuggerContinue.png Xshare/webkitgtk-1.0/webinspector/Images/debuggerPause.png Xshare/webkitgtk-1.0/webinspector/Images/debuggerStepInto.png Xshare/webkitgtk-1.0/webinspector/Images/debuggerStepOut.png Xshare/webkitgtk-1.0/webinspector/Images/debuggerStepOver.png Xshare/webkitgtk-1.0/webinspector/Images/deleteIcon.png Xshare/webkitgtk-1.0/webinspector/Images/disclosureTriangleSmallDown.png Xshare/webkitgtk-1.0/webinspector/Images/disclosureTriangleSmallDownBlack.png Xshare/webkitgtk-1.0/webinspector/Images/disclosureTriangleSmallDownWhite.png Xshare/webkitgtk-1.0/webinspector/Images/disclosureTriangleSmallRight.png Xshare/webkitgtk-1.0/webinspector/Images/disclosureTriangleSmallRightBlack.png Xshare/webkitgtk-1.0/webinspector/Images/disclosureTriangleSmallRightDown.png Xshare/webkitgtk-1.0/webinspector/Images/disclosureTriangleSmallRightDownBlack.png Xshare/webkitgtk-1.0/webinspector/Images/disclosureTriangleSmallRightDownWhite.png Xshare/webkitgtk-1.0/webinspector/Images/disclosureTriangleSmallRightWhite.png Xshare/webkitgtk-1.0/webinspector/Images/domain.png Xshare/webkitgtk-1.0/webinspector/Images/errorIcon.png Xshare/webkitgtk-1.0/webinspector/Images/errorMediumIcon.png Xshare/webkitgtk-1.0/webinspector/Images/errorRedDot.png Xshare/webkitgtk-1.0/webinspector/Images/fileSystem.png Xshare/webkitgtk-1.0/webinspector/Images/forward.png Xshare/webkitgtk-1.0/webinspector/Images/frame.png Xshare/webkitgtk-1.0/webinspector/Images/glossyHeader.png Xshare/webkitgtk-1.0/webinspector/Images/glossyHeaderPressed.png Xshare/webkitgtk-1.0/webinspector/Images/glossyHeaderSelected.png Xshare/webkitgtk-1.0/webinspector/Images/glossyHeaderSelectedPressed.png Xshare/webkitgtk-1.0/webinspector/Images/goArrow.png Xshare/webkitgtk-1.0/webinspector/Images/graphLabelCalloutLeft.png Xshare/webkitgtk-1.0/webinspector/Images/graphLabelCalloutRight.png Xshare/webkitgtk-1.0/webinspector/Images/indexedDB.png Xshare/webkitgtk-1.0/webinspector/Images/indexedDBIndex.png Xshare/webkitgtk-1.0/webinspector/Images/indexedDBObjectStore.png Xshare/webkitgtk-1.0/webinspector/Images/localStorage.png Xshare/webkitgtk-1.0/webinspector/Images/namedFlowOverflow.png Xshare/webkitgtk-1.0/webinspector/Images/navigatorShowHideButton.png Xshare/webkitgtk-1.0/webinspector/Images/paneAddButtons.png Xshare/webkitgtk-1.0/webinspector/Images/paneBottomGrow.png Xshare/webkitgtk-1.0/webinspector/Images/paneBottomGrowActive.png Xshare/webkitgtk-1.0/webinspector/Images/paneElementStateButtons.png Xshare/webkitgtk-1.0/webinspector/Images/paneFilterButtons.png Xshare/webkitgtk-1.0/webinspector/Images/paneGrowHandleLine.png Xshare/webkitgtk-1.0/webinspector/Images/paneRefreshButtons.png Xshare/webkitgtk-1.0/webinspector/Images/paneSettingsButtons.png Xshare/webkitgtk-1.0/webinspector/Images/popoverArrows.png Xshare/webkitgtk-1.0/webinspector/Images/popoverBackground.png Xshare/webkitgtk-1.0/webinspector/Images/profileGroupIcon.png Xshare/webkitgtk-1.0/webinspector/Images/profileIcon.png Xshare/webkitgtk-1.0/webinspector/Images/profileSmallIcon.png Xshare/webkitgtk-1.0/webinspector/Images/profilesSilhouette.png Xshare/webkitgtk-1.0/webinspector/Images/programCounterBorder.png Xshare/webkitgtk-1.0/webinspector/Images/radioDot.png Xshare/webkitgtk-1.0/webinspector/Images/regionEmpty.png Xshare/webkitgtk-1.0/webinspector/Images/regionFit.png Xshare/webkitgtk-1.0/webinspector/Images/regionOverset.png Xshare/webkitgtk-1.0/webinspector/Images/resourceCSSIcon.png Xshare/webkitgtk-1.0/webinspector/Images/resourceDocumentIcon.png Xshare/webkitgtk-1.0/webinspector/Images/resourceDocumentIconSmall.png Xshare/webkitgtk-1.0/webinspector/Images/resourceJSIcon.png Xshare/webkitgtk-1.0/webinspector/Images/resourcePlainIcon.png Xshare/webkitgtk-1.0/webinspector/Images/resourcePlainIconSmall.png Xshare/webkitgtk-1.0/webinspector/Images/resourcesSizeGraphIcon.png Xshare/webkitgtk-1.0/webinspector/Images/resourcesTimeGraphIcon.png Xshare/webkitgtk-1.0/webinspector/Images/scriptsSilhouette.png Xshare/webkitgtk-1.0/webinspector/Images/searchNext.png Xshare/webkitgtk-1.0/webinspector/Images/searchPrev.png Xshare/webkitgtk-1.0/webinspector/Images/searchSmallBlue.png Xshare/webkitgtk-1.0/webinspector/Images/searchSmallBrightBlue.png Xshare/webkitgtk-1.0/webinspector/Images/searchSmallGray.png Xshare/webkitgtk-1.0/webinspector/Images/searchSmallWhite.png Xshare/webkitgtk-1.0/webinspector/Images/segment.png Xshare/webkitgtk-1.0/webinspector/Images/segmentEnd.png Xshare/webkitgtk-1.0/webinspector/Images/segmentHover.png Xshare/webkitgtk-1.0/webinspector/Images/segmentHoverEnd.png Xshare/webkitgtk-1.0/webinspector/Images/segmentSelected.png Xshare/webkitgtk-1.0/webinspector/Images/segmentSelectedEnd.png Xshare/webkitgtk-1.0/webinspector/Images/sessionStorage.png Xshare/webkitgtk-1.0/webinspector/Images/spinner.gif Xshare/webkitgtk-1.0/webinspector/Images/spinnerActive.gif Xshare/webkitgtk-1.0/webinspector/Images/spinnerActiveSelected.gif Xshare/webkitgtk-1.0/webinspector/Images/spinnerInactive.gif Xshare/webkitgtk-1.0/webinspector/Images/spinnerInactiveSelected.gif Xshare/webkitgtk-1.0/webinspector/Images/splitviewDimple.png Xshare/webkitgtk-1.0/webinspector/Images/splitviewDividerBackground.png Xshare/webkitgtk-1.0/webinspector/Images/statusbarButtonGlyphs.png Xshare/webkitgtk-1.0/webinspector/Images/statusbarButtonGlyphs2x.png Xshare/webkitgtk-1.0/webinspector/Images/statusbarResizerHorizontal.png Xshare/webkitgtk-1.0/webinspector/Images/statusbarResizerVertical.png Xshare/webkitgtk-1.0/webinspector/Images/successGreenDot.png Xshare/webkitgtk-1.0/webinspector/Images/thumbActiveHoriz.png Xshare/webkitgtk-1.0/webinspector/Images/thumbActiveVert.png Xshare/webkitgtk-1.0/webinspector/Images/thumbHoriz.png Xshare/webkitgtk-1.0/webinspector/Images/thumbHoverHoriz.png Xshare/webkitgtk-1.0/webinspector/Images/thumbHoverVert.png Xshare/webkitgtk-1.0/webinspector/Images/thumbVert.png Xshare/webkitgtk-1.0/webinspector/Images/tickMark.png Xshare/webkitgtk-1.0/webinspector/Images/timelineHollowPillBlue.png Xshare/webkitgtk-1.0/webinspector/Images/timelineHollowPillGray.png Xshare/webkitgtk-1.0/webinspector/Images/timelineHollowPillGreen.png Xshare/webkitgtk-1.0/webinspector/Images/timelineHollowPillOrange.png Xshare/webkitgtk-1.0/webinspector/Images/timelineHollowPillPurple.png Xshare/webkitgtk-1.0/webinspector/Images/timelineHollowPillRed.png Xshare/webkitgtk-1.0/webinspector/Images/timelineHollowPillYellow.png Xshare/webkitgtk-1.0/webinspector/Images/timelinePillBlue.png Xshare/webkitgtk-1.0/webinspector/Images/timelinePillGray.png Xshare/webkitgtk-1.0/webinspector/Images/timelinePillGreen.png Xshare/webkitgtk-1.0/webinspector/Images/timelinePillOrange.png Xshare/webkitgtk-1.0/webinspector/Images/timelinePillPurple.png Xshare/webkitgtk-1.0/webinspector/Images/timelinePillRed.png Xshare/webkitgtk-1.0/webinspector/Images/timelinePillYellow.png Xshare/webkitgtk-1.0/webinspector/Images/toolbarIcons.png Xshare/webkitgtk-1.0/webinspector/Images/toolbarIconsSmall.png Xshare/webkitgtk-1.0/webinspector/Images/toolbarItemSelected.png Xshare/webkitgtk-1.0/webinspector/Images/trackHoriz.png Xshare/webkitgtk-1.0/webinspector/Images/trackVert.png Xshare/webkitgtk-1.0/webinspector/Images/treeDownTriangleBlack.png Xshare/webkitgtk-1.0/webinspector/Images/treeDownTriangleWhite.png Xshare/webkitgtk-1.0/webinspector/Images/treeRightTriangleBlack.png Xshare/webkitgtk-1.0/webinspector/Images/treeRightTriangleWhite.png Xshare/webkitgtk-1.0/webinspector/Images/treeUpTriangleBlack.png Xshare/webkitgtk-1.0/webinspector/Images/treeUpTriangleWhite.png Xshare/webkitgtk-1.0/webinspector/Images/userInputIcon.png Xshare/webkitgtk-1.0/webinspector/Images/userInputPreviousIcon.png Xshare/webkitgtk-1.0/webinspector/Images/userInputResultIcon.png Xshare/webkitgtk-1.0/webinspector/Images/warningIcon.png Xshare/webkitgtk-1.0/webinspector/Images/warningMediumIcon.png Xshare/webkitgtk-1.0/webinspector/Images/warningOrangeDot.png Xshare/webkitgtk-1.0/webinspector/Images/warningsErrors.png Xshare/webkitgtk-1.0/webinspector/IndexedDBModel.js Xshare/webkitgtk-1.0/webinspector/IndexedDBViews.js Xshare/webkitgtk-1.0/webinspector/InspectorBackend.js Xshare/webkitgtk-1.0/webinspector/InspectorBackendCommands.js Xshare/webkitgtk-1.0/webinspector/InspectorFrontendAPI.js Xshare/webkitgtk-1.0/webinspector/InspectorFrontendHostStub.js Xshare/webkitgtk-1.0/webinspector/InspectorView.js Xshare/webkitgtk-1.0/webinspector/IsolatedFileSystem.js Xshare/webkitgtk-1.0/webinspector/IsolatedFileSystemManager.js Xshare/webkitgtk-1.0/webinspector/JSHeapSnapshot.js Xshare/webkitgtk-1.0/webinspector/JavaScriptFormatter.js Xshare/webkitgtk-1.0/webinspector/JavaScriptSourceFrame.js Xshare/webkitgtk-1.0/webinspector/KeyboardShortcut.js Xshare/webkitgtk-1.0/webinspector/Linkifier.js Xshare/webkitgtk-1.0/webinspector/LiveEditSupport.js Xshare/webkitgtk-1.0/webinspector/MemoryStatistics.js Xshare/webkitgtk-1.0/webinspector/MetricsSidebarPane.js Xshare/webkitgtk-1.0/webinspector/NativeBreakpointsSidebarPane.js Xshare/webkitgtk-1.0/webinspector/NativeHeapSnapshot.js Xshare/webkitgtk-1.0/webinspector/NativeMemoryGraph.js Xshare/webkitgtk-1.0/webinspector/NativeMemorySnapshotView.js Xshare/webkitgtk-1.0/webinspector/NavigatorOverlayController.js Xshare/webkitgtk-1.0/webinspector/NavigatorView.js Xshare/webkitgtk-1.0/webinspector/NetworkItemView.js Xshare/webkitgtk-1.0/webinspector/NetworkLog.js Xshare/webkitgtk-1.0/webinspector/NetworkManager.js Xshare/webkitgtk-1.0/webinspector/NetworkPanel.js Xshare/webkitgtk-1.0/webinspector/NetworkPanelDescriptor.js Xshare/webkitgtk-1.0/webinspector/NetworkRequest.js Xshare/webkitgtk-1.0/webinspector/NetworkUISourceCodeProvider.js Xshare/webkitgtk-1.0/webinspector/Object.js Xshare/webkitgtk-1.0/webinspector/ObjectPopoverHelper.js Xshare/webkitgtk-1.0/webinspector/ObjectPropertiesSection.js Xshare/webkitgtk-1.0/webinspector/OverridesView.js Xshare/webkitgtk-1.0/webinspector/Panel.js Xshare/webkitgtk-1.0/webinspector/PanelEnablerView.js Xshare/webkitgtk-1.0/webinspector/ParsedURL.js Xshare/webkitgtk-1.0/webinspector/Placard.js Xshare/webkitgtk-1.0/webinspector/Popover.js Xshare/webkitgtk-1.0/webinspector/PresentationConsoleMessageHelper.js Xshare/webkitgtk-1.0/webinspector/ProfileDataGridTree.js Xshare/webkitgtk-1.0/webinspector/ProfileLauncherView.js Xshare/webkitgtk-1.0/webinspector/ProfilesPanel.js Xshare/webkitgtk-1.0/webinspector/ProfilesPanelDescriptor.js Xshare/webkitgtk-1.0/webinspector/Progress.js Xshare/webkitgtk-1.0/webinspector/ProgressIndicator.js Xshare/webkitgtk-1.0/webinspector/PropertiesSection.js Xshare/webkitgtk-1.0/webinspector/PropertiesSidebarPane.js Xshare/webkitgtk-1.0/webinspector/RawSourceCode.js Xshare/webkitgtk-1.0/webinspector/RemoteObject.js Xshare/webkitgtk-1.0/webinspector/RequestCookiesView.js Xshare/webkitgtk-1.0/webinspector/RequestHTMLView.js Xshare/webkitgtk-1.0/webinspector/RequestHeadersView.js Xshare/webkitgtk-1.0/webinspector/RequestJSONView.js Xshare/webkitgtk-1.0/webinspector/RequestPreviewView.js Xshare/webkitgtk-1.0/webinspector/RequestResponseView.js Xshare/webkitgtk-1.0/webinspector/RequestTimingView.js Xshare/webkitgtk-1.0/webinspector/RequestView.js Xshare/webkitgtk-1.0/webinspector/Resource.js Xshare/webkitgtk-1.0/webinspector/ResourceScriptMapping.js Xshare/webkitgtk-1.0/webinspector/ResourceTreeModel.js Xshare/webkitgtk-1.0/webinspector/ResourceType.js Xshare/webkitgtk-1.0/webinspector/ResourceUtils.js Xshare/webkitgtk-1.0/webinspector/ResourceView.js Xshare/webkitgtk-1.0/webinspector/ResourceWebSocketFrameView.js Xshare/webkitgtk-1.0/webinspector/ResourcesPanel.js Xshare/webkitgtk-1.0/webinspector/RevisionHistoryView.js Xshare/webkitgtk-1.0/webinspector/RuntimeModel.js Xshare/webkitgtk-1.0/webinspector/SASSSourceMapping.js Xshare/webkitgtk-1.0/webinspector/ScopeChainSidebarPane.js Xshare/webkitgtk-1.0/webinspector/Script.js Xshare/webkitgtk-1.0/webinspector/ScriptFormatter.js Xshare/webkitgtk-1.0/webinspector/ScriptFormatterWorker.js Xshare/webkitgtk-1.0/webinspector/ScriptSnippetModel.js Xshare/webkitgtk-1.0/webinspector/ScriptsNavigator.js Xshare/webkitgtk-1.0/webinspector/ScriptsPanel.js Xshare/webkitgtk-1.0/webinspector/ScriptsPanelDescriptor.js Xshare/webkitgtk-1.0/webinspector/ScriptsSearchScope.js Xshare/webkitgtk-1.0/webinspector/SearchController.js Xshare/webkitgtk-1.0/webinspector/Section.js Xshare/webkitgtk-1.0/webinspector/Settings.js Xshare/webkitgtk-1.0/webinspector/SettingsScreen.js Xshare/webkitgtk-1.0/webinspector/ShortcutsScreen.js Xshare/webkitgtk-1.0/webinspector/ShowMoreDataGridNode.js Xshare/webkitgtk-1.0/webinspector/SidebarOverlay.js Xshare/webkitgtk-1.0/webinspector/SidebarPane.js Xshare/webkitgtk-1.0/webinspector/SidebarTreeElement.js Xshare/webkitgtk-1.0/webinspector/SidebarView.js Xshare/webkitgtk-1.0/webinspector/SimpleWorkspaceProvider.js Xshare/webkitgtk-1.0/webinspector/SnippetJavaScriptSourceFrame.js Xshare/webkitgtk-1.0/webinspector/SnippetStorage.js Xshare/webkitgtk-1.0/webinspector/SoftContextMenu.js Xshare/webkitgtk-1.0/webinspector/SourceCSSTokenizer.js Xshare/webkitgtk-1.0/webinspector/SourceFrame.js Xshare/webkitgtk-1.0/webinspector/SourceHTMLTokenizer.js Xshare/webkitgtk-1.0/webinspector/SourceJavaScriptTokenizer.js Xshare/webkitgtk-1.0/webinspector/SourceMap.js Xshare/webkitgtk-1.0/webinspector/SourceMapping.js Xshare/webkitgtk-1.0/webinspector/SourceTokenizer.js Xshare/webkitgtk-1.0/webinspector/Spectrum.js Xshare/webkitgtk-1.0/webinspector/SplitView.js Xshare/webkitgtk-1.0/webinspector/StatusBarButton.js Xshare/webkitgtk-1.0/webinspector/StyleSheetOutlineDialog.js Xshare/webkitgtk-1.0/webinspector/StylesSidebarPane.js Xshare/webkitgtk-1.0/webinspector/StylesSourceMapping.js Xshare/webkitgtk-1.0/webinspector/SuggestBox.js Xshare/webkitgtk-1.0/webinspector/TabbedEditorContainer.js Xshare/webkitgtk-1.0/webinspector/TabbedPane.js Xshare/webkitgtk-1.0/webinspector/TestController.js Xshare/webkitgtk-1.0/webinspector/TextEditor.js Xshare/webkitgtk-1.0/webinspector/TextEditorHighlighter.js Xshare/webkitgtk-1.0/webinspector/TextEditorModel.js Xshare/webkitgtk-1.0/webinspector/TextPrompt.js Xshare/webkitgtk-1.0/webinspector/TextUtils.js Xshare/webkitgtk-1.0/webinspector/TimelineFrameController.js Xshare/webkitgtk-1.0/webinspector/TimelineGrid.js Xshare/webkitgtk-1.0/webinspector/TimelineManager.js Xshare/webkitgtk-1.0/webinspector/TimelineModel.js Xshare/webkitgtk-1.0/webinspector/TimelineOverviewPane.js Xshare/webkitgtk-1.0/webinspector/TimelinePanel.js Xshare/webkitgtk-1.0/webinspector/TimelinePanelDescriptor.js Xshare/webkitgtk-1.0/webinspector/TimelinePresentationModel.js Xshare/webkitgtk-1.0/webinspector/Toolbar.js Xshare/webkitgtk-1.0/webinspector/TopDownProfileDataGridTree.js Xshare/webkitgtk-1.0/webinspector/UISourceCode.js Xshare/webkitgtk-1.0/webinspector/UISourceCodeFrame.js Xshare/webkitgtk-1.0/webinspector/UIString.js Xshare/webkitgtk-1.0/webinspector/UIUtils.js Xshare/webkitgtk-1.0/webinspector/UglifyJS/parse-js.js Xshare/webkitgtk-1.0/webinspector/UserAgentSupport.js Xshare/webkitgtk-1.0/webinspector/UserMetrics.js Xshare/webkitgtk-1.0/webinspector/View.js Xshare/webkitgtk-1.0/webinspector/ViewportControl.js Xshare/webkitgtk-1.0/webinspector/WatchExpressionsSidebarPane.js Xshare/webkitgtk-1.0/webinspector/WorkerManager.js Xshare/webkitgtk-1.0/webinspector/WorkersSidebarPane.js Xshare/webkitgtk-1.0/webinspector/Workspace.js Xshare/webkitgtk-1.0/webinspector/auditsPanel.css Xshare/webkitgtk-1.0/webinspector/breadcrumbList.css Xshare/webkitgtk-1.0/webinspector/canvasProfiler.css Xshare/webkitgtk-1.0/webinspector/cssNamedFlows.css Xshare/webkitgtk-1.0/webinspector/dataGrid.css Xshare/webkitgtk-1.0/webinspector/dialog.css Xshare/webkitgtk-1.0/webinspector/elementsPanel.css Xshare/webkitgtk-1.0/webinspector/externs.js Xshare/webkitgtk-1.0/webinspector/filteredItemSelectionDialog.css Xshare/webkitgtk-1.0/webinspector/heapProfiler.css Xshare/webkitgtk-1.0/webinspector/helpScreen.css Xshare/webkitgtk-1.0/webinspector/indexedDBViews.css Xshare/webkitgtk-1.0/webinspector/inspector.css Xshare/webkitgtk-1.0/webinspector/inspector.html Xshare/webkitgtk-1.0/webinspector/inspector.js Xshare/webkitgtk-1.0/webinspector/inspectorCommon.css Xshare/webkitgtk-1.0/webinspector/inspectorPageIndex.html Xshare/webkitgtk-1.0/webinspector/inspectorSyntaxHighlight.css Xshare/webkitgtk-1.0/webinspector/jsdifflib.js Xshare/webkitgtk-1.0/webinspector/localizedStrings.js Xshare/webkitgtk-1.0/webinspector/nativeMemoryProfiler.css Xshare/webkitgtk-1.0/webinspector/navigatorView.css Xshare/webkitgtk-1.0/webinspector/networkLogView.css Xshare/webkitgtk-1.0/webinspector/networkPanel.css Xshare/webkitgtk-1.0/webinspector/panelEnablerView.css Xshare/webkitgtk-1.0/webinspector/popover.css Xshare/webkitgtk-1.0/webinspector/profilesPanel.css Xshare/webkitgtk-1.0/webinspector/resourceView.css Xshare/webkitgtk-1.0/webinspector/resourcesPanel.css Xshare/webkitgtk-1.0/webinspector/revisionHistory.css Xshare/webkitgtk-1.0/webinspector/scriptsPanel.css Xshare/webkitgtk-1.0/webinspector/spectrum.css Xshare/webkitgtk-1.0/webinspector/splitView.css Xshare/webkitgtk-1.0/webinspector/tabbedPane.css Xshare/webkitgtk-1.0/webinspector/test-runner.html Xshare/webkitgtk-1.0/webinspector/textEditor.css Xshare/webkitgtk-1.0/webinspector/textPrompt.css Xshare/webkitgtk-1.0/webinspector/timelinePanel.css Xshare/webkitgtk-1.0/webinspector/treeoutline.js Xshare/webkitgtk-1.0/webinspector/utilities.js X@dirrmtry share/locale/sr@latin/LC_MESSAGES X@dirrmtry share/locale/sr@latin X@dirrmtry share/locale/mr/LC_MESSAGES X@dirrmtry share/locale/mr X@dirrm share/webkitgtk-1.0/webinspector/UglifyJS X@dirrm share/webkitgtk-1.0/webinspector/Images X@dirrm share/webkitgtk-1.0/webinspector X@dirrm share/webkitgtk-1.0/resources/audio X@dirrm share/webkitgtk-1.0/resources X@dirrm share/webkitgtk-1.0/images X@dirrm share/webkitgtk-1.0 X@dirrm share/gtk-doc/html/webkitgtk X@dirrmtry share/gtk-doc/html X@dirrmtry share/gtk-doc X@dirrm include/webkitgtk-1.0/webkitdom X@dirrm include/webkitgtk-1.0/webkit2/WebKit2 X@dirrm include/webkitgtk-1.0/webkit2 X@dirrm include/webkitgtk-1.0/webkit X@dirrm include/webkitgtk-1.0/JavaScriptCore X@dirrm include/webkitgtk-1.0 8e416349dff1eb990c738f29db71a41f echo c - webkit-gtk2/files/ mkdir -p webkit-gtk2/files/ > /dev/null 2>&1 echo x - webkit-gtk2/files/patch-GNUmakefile.in sed 's/^X//' >webkit-gtk2/files/patch-GNUmakefile.in << 'ec842fbc24057f2de0cc226d59aa5ca9' X--- GNUmakefile.in.orig 2013-06-13 23:04:47.000000000 +0000 X+++ GNUmakefile.in 2013-06-13 23:04:57.000000000 +0000 X@@ -20548,7 +20548,7 @@ X -fno-exceptions -DBUILDING_CAIRO__ -DBUILDING_GTK__ \ X $(am__append_1) $(am__append_2) X global_cflags := X-global_cxxflags := -fno-rtti X+global_cxxflags := X JSCORE_GIRSOURCES := $(am__append_39) X WEBKIT_GIRSOURCES := $(am__append_40) X typelibsdir := $(am__append_41) ec842fbc24057f2de0cc226d59aa5ca9 echo x - webkit-gtk2/files/patch-Source_ThirdParty_gtext_include_gtest_internal_gtest-port.h sed 's/^X//' >webkit-gtk2/files/patch-Source_ThirdParty_gtext_include_gtest_internal_gtest-port.h << '92201cc4dcdb3c994009025b570c5c44' X--- Source/ThirdParty/gtest/include/gtest/internal/gtest-port.h.orig 2013-06-10 07:06:02.000000000 +0000 X+++ Source/ThirdParty/gtest/include/gtest/internal/gtest-port.h 2013-06-10 07:51:20.000000000 +0000 X@@ -172,6 +172,7 @@ X #include // For ptrdiff_t X #include X #include X+#include X #include X #ifndef _WIN32_WCE X #include 92201cc4dcdb3c994009025b570c5c44 echo x - webkit-gtk2/files/patch-Source_WebCore_editing_Editor.h sed 's/^X//' >webkit-gtk2/files/patch-Source_WebCore_editing_Editor.h << '0ad8e8c1b8f3a53bf1d651197121877a' X--- ./Source/WebCore/editing/Editor.h.orig 2012-08-04 16:33:45.000000000 +0200 X+++ ./Source/WebCore/editing/Editor.h 2012-08-04 16:34:06.000000000 +0200 X@@ -385,7 +385,7 @@ X void deviceScaleFactorChanged(); X X private: X- virtual void willDetachPage() OVERRIDE; X+ virtual void willDetachPage(); X X OwnPtr m_deleteButtonController; X RefPtr m_lastEditCommand; 0ad8e8c1b8f3a53bf1d651197121877a echo x - webkit-gtk2/files/patch-Source_WebCore_plugins_PluginDatabase.cpp sed 's/^X//' >webkit-gtk2/files/patch-Source_WebCore_plugins_PluginDatabase.cpp << '85ca5b40712a57402815b2c610151ecc' X--- Source/WebCore/plugins/PluginDatabase.cpp.orig 2011-01-11 16:24:29.000000000 +0000 X+++ Source/WebCore/plugins/PluginDatabase.cpp 2011-01-11 16:24:54.000000000 +0000 X@@ -375,6 +375,7 @@ Vector PluginDatabase::defaultPl X userPluginPath.append(String("/.netscape/plugins")); X paths.append(userPluginPath); X X+ paths.append("%%BROWSER_PLUGINS_DIR%%"); X paths.append("/usr/lib/browser/plugins"); X paths.append("/usr/local/lib/mozilla/plugins"); X paths.append("/usr/lib/firefox/plugins"); 85ca5b40712a57402815b2c610151ecc echo x - webkit-gtk2/files/patch-Source_WebKit2_PluginProcess_unix_PluginProcessMainUnix.cpp sed 's/^X//' >webkit-gtk2/files/patch-Source_WebKit2_PluginProcess_unix_PluginProcessMainUnix.cpp << '564a340a08c4b626f280fd5a69d5bd8d' Xman 3 basename X X--- Source/WebKit2/PluginProcess/unix/PluginProcessMainUnix.cpp.orig 2013-06-11 20:02:23.000000000 +0000 X+++ Source/WebKit2/PluginProcess/unix/PluginProcessMainUnix.cpp 2013-06-11 20:04:31.000000000 +0000 X@@ -48,6 +48,8 @@ X X #ifdef XP_UNIX X X+#include X+ X #if !LOG_DISABLED X static const char xErrorString[] = "The program '%s' received an X Window System error.\n" X "This probably reflects a bug in a browser plugin.\n" 564a340a08c4b626f280fd5a69d5bd8d echo x - webkit-gtk2/files/patch-Source_WebKit2_UIProcess_Launcher_gtk_ProcessLauncherGtk.cpp sed 's/^X//' >webkit-gtk2/files/patch-Source_WebKit2_UIProcess_Launcher_gtk_ProcessLauncherGtk.cpp << '92e59a85c828affb1b130f6f3a23726d' X--- Source/WebKit2/UIProcess/Launcher/gtk/ProcessLauncherGtk.cpp.orig 2012-09-24 16:48:12.000000000 +0000 X+++ Source/WebKit2/UIProcess/Launcher/gtk/ProcessLauncherGtk.cpp 2012-09-24 16:48:41.000000000 +0000 X@@ -27,6 +27,7 @@ X #include "config.h" X #include "ProcessLauncher.h" X X+#include X #include "Connection.h" X #include "ProcessExecutablePath.h" X #include 92e59a85c828affb1b130f6f3a23726d echo x - webkit-gtk2/files/patch-Source_WebKit2_UIProcess_Plugins_unix_PluginProcessProxyUnix.cpp sed 's/^X//' >webkit-gtk2/files/patch-Source_WebKit2_UIProcess_Plugins_unix_PluginProcessProxyUnix.cpp << '6cd74d293950b15037da121a9a5f8161' X--- Source/WebKit2/UIProcess/Plugins/unix/PluginProcessProxyUnix.cpp.orig 2013-06-10 07:21:09.000000000 +0000 X+++ Source/WebKit2/UIProcess/Plugins/unix/PluginProcessProxyUnix.cpp 2013-06-10 07:29:32.000000000 +0000 X@@ -78,19 +78,23 @@ bool PluginProcessProxy::scanPlugin(cons X // As a consequence, we make sure that the disposition is set to X // SIG_DFL before calling g_spawn_sync(). X struct sigaction action; X+#if defined(SIGCLD) X sigaction(SIGCLD, 0, &action); X if (action.sa_handler == SIG_IGN) { X action.sa_handler = SIG_DFL; X sigaction(SIGCLD, &action, 0); X } X+#endif X X if (!g_spawn_sync(0, argv, 0, G_SPAWN_STDERR_TO_DEV_NULL, 0, 0, &stdOut, 0, &status, 0)) X return false; X X+#if defined(WEXITSTATUS) X if (!WIFEXITED(status) || WEXITSTATUS(status) != EXIT_SUCCESS || !stdOut) { X free(stdOut); X return false; X } X+#endif X X String stdOutString(reinterpret_cast(stdOut)); X free(stdOut); 6cd74d293950b15037da121a9a5f8161 echo x - webkit-gtk2/files/patch-Source_WebKit_gtk_webkit_webkitwebview.cpp sed 's/^X//' >webkit-gtk2/files/patch-Source_WebKit_gtk_webkit_webkitwebview.cpp << 'ba3eb444d1e0799968861ff1bb3698d2' X--- Source/WebKit/gtk/webkit/webkitwebview.cpp.orig 2013-03-26 18:25:31.000000000 +0000 X+++ Source/WebKit/gtk/webkit/webkitwebview.cpp 2013-03-31 11:49:59.000000000 +0000 X@@ -5061,6 +5061,8 @@ void webkit_web_view_add_main_resource(W X X priv->mainResource = adoptGRef(webResource); X priv->mainResourceIdentifier = identifier; X+ X+ g_object_ref(webView); X } X X void webkit_web_view_add_resource(WebKitWebView* webView, const char* identifier, WebKitWebResource* webResource) X@@ -5078,6 +5080,8 @@ void webkitWebViewRemoveSubresource(WebK X if (!mainResource.isNull() && g_str_equal(identifier, mainResource.data())) X return; X g_hash_table_remove(webView->priv->subResources.get(), identifier); X+ X+ g_object_unref(webView); X } X X WebKitWebResource* webkit_web_view_get_resource(WebKitWebView* webView, char* identifier) ba3eb444d1e0799968861ff1bb3698d2 echo x - webkit-gtk2/files/patch-Tools_ImageDiff_gtk_ImageDiff.cpp sed 's/^X//' >webkit-gtk2/files/patch-Tools_ImageDiff_gtk_ImageDiff.cpp << '9cdc775d99b80870f35bae8c18bc7c8b' X--- Tools/ImageDiff/gtk/ImageDiff.cpp.orig 2013-06-14 11:11:41.000000000 +0000 X+++ Tools/ImageDiff/gtk/ImageDiff.cpp 2013-06-14 11:27:33.000000000 +0000 X@@ -31,6 +31,7 @@ X #include X #include X #include X+#include X #include X X using namespace std; 9cdc775d99b80870f35bae8c18bc7c8b echo x - webkit-gtk2/files/patch-configure sed 's/^X//' >webkit-gtk2/files/patch-configure << 'e666eb6a8b7f51604a28169c527cb54f' X--- configure.orig 2013-06-10 11:51:36.000000000 +0000 X+++ configure 2013-06-10 11:52:32.000000000 +0000 X@@ -17500,8 +17500,8 @@ X .SECONDARY: $(gsettings_SCHEMAS) X X gsettings__base_list = \ X- sed "$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g" | \ X- sed "$$!N;$$!N;$$!N;$$!N;s/\n/ /g" X+ sed '\''$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g'\'' | \ X+ sed '\''$$!N;$$!N;$$!N;$$!N;s/\n/ /g'\'' X X install-gsettings-schemas: $(gsettings_SCHEMAS:.xml=.valid) $(gsettings__enum_file) X @$(NORMAL_INSTALL) X@@ -17510,7 +17510,7 @@ X for p in $$list; do \ X if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ X echo "$$d$$p"; \ X- done | $(gsettings__base_list) | \ X+ done | \ X while read files; do \ X echo " $(INSTALL_DATA) $$files '\''$(DESTDIR)$(gsettingsschemadir)'\''"; \ X $(INSTALL_DATA) $$files "$(DESTDIR)$(gsettingsschemadir)" || exit $$?; \ X@@ -20039,7 +20039,7 @@ X X fi X X-acceleration_backend_description=$with_acceleration_backend X+acceleration_backend_description=${with_acceleration_backend} X if test "$with_acceleration_backend" = "clutter"; then X X pkg_failed=no X@@ -20236,18 +20236,18 @@ X X if test "$with_acceleration_backend" = "opengl"; then X if test "$enable_gles2" = "yes"; then X- acceleration_backend_description+= "(gles2" X+ acceleration_backend_description="${acceleration_backend_description} (gles2" X OPENGL_LIBS="-lGLESv2" X else X- acceleration_backend_description+="(gl" X+ acceleration_backend_description="${acceleration_backend_description} (gl" X OPENGL_LIBS="-lGL" X fi X if test "$enable_egl" = "yes"; then X- acceleration_backend_description+=", egl" X+ acceleration_backend_description="${acceleration_backend_description}, egl" X OPENGL_LIBS+=" -lEGL" X fi X if test "$enable_glx" = "yes"; then X- acceleration_backend_description+=", glx" X+ acceleration_backend_description="${acceleration_backend_description}, glx" X fi X X # Check whether dlopen() is in the core libc like on FreeBSD, or in a separate X@@ -20300,8 +20300,8 @@ X X X X- OPENGL_LIBS+=" $DLOPEN_LIBS" X- acceleration_backend_description+=")" X+ OPENGL_LIBS="${OPENGL_LIBS} $DLOPEN_LIBS" X+ acceleration_backend_description="${acceleration_backend_description})" X fi X X e666eb6a8b7f51604a28169c527cb54f echo c - webkit-gtk3 mkdir -p webkit-gtk3 > /dev/null 2>&1 echo x - webkit-gtk3/Makefile sed 's/^X//' >webkit-gtk3/Makefile << '756fd03ac9dcc5a8a25e5f23ee499457' X# Created by: Michael Johnson X# $FreeBSD$ X# $MCom: ports/www/webkit-gtk3/Makefile,v 1.32 2013/03/09 09:12:39 kwm Exp $ X XPORTNAME= webkit XPORTVERSION= 2.0.3 XCATEGORIES= www XMASTER_SITES= http://webkitgtk.org/releases/ XPKGNAMESUFFIX= -gtk3 XDISTNAME= ${PORTNAME}gtk-${PORTVERSION} X XMAINTAINER= gnome@FreeBSD.org XCOMMENT= Opensource browser engine using the GTK+ 3 toolkit X XBUILD_DEPENDS= ${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex \ X ${LOCALBASE}/bin/gperf:${PORTSDIR}/devel/gperf \ X gtkdoc-rebase:${PORTSDIR}/textproc/gtk-doc XLIB_DEPENDS= enchant:${PORTSDIR}/textproc/enchant \ X secret-1:${PORTSDIR}/security/libsecret \ X icutu:${PORTSDIR}/devel/icu \ X webp:${PORTSDIR}/graphics/webp \ X curl:${PORTSDIR}/ftp/curl \ X soup-2.4:${PORTSDIR}/devel/libsoup X XLATEST_LINK= ${PORTNAME}${PKGNAMESUFFIX} X XUSE_XZ= yes XUSE_GSTREAMER1= yes XMAKE_JOBS_SAFE= yes XUSE_XORG= xt xdamage xcomposite XUSES= bison gettext pkgconfig shebangfix XUSE_RUBY= yes XRUBY_NO_RUN_DEPENDS=yes XUSE_GMAKE= yes X#USE_AUTOTOOLS= libtool XUSE_GNOME= cairo gnomehier gtk20 gtk30 introspection:build \ X libxslt:build X#ltverhack lthack XUSE_SQLITE= 3 XUSE_PERL5_BUILD=yes XUSE_LDCONFIG= yes XGNU_CONFIGURE= yes XCONFIGURE_ENV= ac_cv_path_FLEX="${LOCALBASE}/bin/flex" \ X ZLIB_CFLAGS="-I/usr/include" \ X ZLIB_LIBS="-L/usr/lib -lz" \ X ac_cv_path_DOLT_BASH="" XCPPFLAGS+= -I${LOCALBASE}/include XLDFLAGS+= -L${LOCALBASE}/lib XCONFIGURE_ARGS= --with-gtk=3.0 \ X --enable-svg-fonts \ X --disable-geolocation \ X --enable-introspection XMAKEFILE= GNUmakefile X XCONFIGURE_ARGS+=--disable-silent-rules XCONFIGURE_ARGS+=--disable-egl \ X --disable-gles2 X# --with-acceleration-backend=opengl # clutter broken? X# opengl, clutter, none (clutter unsupported) X XSHEBANG_FILES= \ X Source/JavaScriptCore/create_hash_table \ X Source/WebCore/css/*.pl \ X Source/WebCore/dom/*.pl \ X Source/WebCore/inspector/xxd.pl \ X Source/WebCore/make-hash-tools.pl \ X Source/WebCore/page/make_settings.pl \ X Source/WebCore/platform/text/mac/make-charset-table.pl \ X Source/WebKit2/Scripts/generate-forwarding-headers.pl \ X Source/WebCore/bindings/scripts/*.p[lm] \ X Source/JavaScriptCore/create_hash_table \ X Tools/Scripts/webkit-build-directory X XBROWSER_PLUGINS_DIR?= ${LOCALBASE}/lib/browser_plugins/symlinks/webkit-gtk3 X#_BROWSER_PLUGINS_DIR= ${BROWSER_PLUGINS_DIR:S|^/|"|:S|/|", "|g}", X XOPTIONS_DEFINE= WEBGL WEBAUDIO DEBUG FULLDEBUG XOPTIONS_DEFAULT=WEBGL WEBAUDIO XWEBAUDIO_DESC= Web audio support XWEBGL_DESC= Enable Web GL support XDEBUG_DESC= Just enable debug symbols XFULLDEBUG_DESC= Enable fullblown debug support X X.include X X.if ${PORT_OPTIONS:MWEBGL} XUSE_GL= gl XCONFIGURE_ARGS+=--enable-webgl X.else XCONFIGURE_ARGS+=--disable-webgl X.endif X X.if ${PORT_OPTIONS:MWEBAUDIO} XCONFIGURE_ARGS+=--enable-web-audio X.else XCONFIGURE_ARGS+=--disable-web-audio X.endif X X.if ${PORT_OPTIONS:MFULLDEBUG} XCONFIGURE_ARGS+=--enable-debug X.else XCONFIGURE_ARGS+=--disable-debug X.endif X X.if ${PORT_OPTIONS:MDEBUG} || ${PORT_OPTIONS:MFULLDEBUG} XCONFIGURE_ARGS+=--enable-debug-symbols=yes X.endif X X# we need clang + libc++ or gcc 4.7+ X# clang has libc++ issues with tuple header, needs gtest patches X#.if (${OSVERSION}>=1000024 && (${ARCH}==i386 || ${ARCH}==amd64)) X#CPPFLAGS+= -DGTEST_USE_OWN_TR1_TUPLE X#CXXFLAGS+= -Wno-c++11-extensions -Qunused-arguments -stdlib=libc++ X#LDFLAGS+= -stdlib=libc++ X#.else XWITH_GCC_COMPILER=1 XUSE_GCC= 4.7+ X#.endif X X.if ${ARCH} == powerpc64 XCFLAGS+= -mminimal-toc X.endif X X.include X X.if ${PERL_LEVEL} >= 501400 XBUILD_DEPENDS+= p5-Switch>0:${PORTSDIR}/lang/p5-Switch X.endif X Xpost-patch: X @${REINPLACE_CMD} -e 's|%%BROWSER_PLUGINS_DIR%%|${BROWSER_PLUGINS_DIR}|' \ X ${WRKSRC}/Source/WebCore/plugins/PluginDatabase.cpp X @${FIND} ${WRKSRC} -name GNUmakefile.* | ${XARGS} ${REINPLACE_CMD} -e \ X 's|[(]libdir[)]/pkgconfig|(prefix)/libdata/pkgconfig|g' X# disable static library. X# @${REINPLACE_CMD} -e 's|^build_old_libs=yes|build_old_libs=no|' \ X# ${WRKDIR}/gnome-libtool X @${REINPLACE_CMD} -e 's|/usr/bin/gcc|${CC}|' \ X ${WRKSRC}/Source/WebCore/dom/make_names.pl \ X ${WRKSRC}/Source/WebCore/css/make-css-file-arrays.pl \ X ${WRKSRC}/Source/WebCore/bindings/scripts/IDLParser.pm X @${REINPLACE_CMD} -e 's|"gperf|"${LOCALBASE}/bin/gperf|g' \ X ${WRKSRC}/Source/WebCore/css/makevalues.pl \ X ${WRKSRC}/Source/WebCore/css/makeprop.pl \ X ${WRKSRC}/Source/WebCore/make-hash-tools.pl X#.if !defined(WITH_GCC_COMPILER) X# @${REINPLACE_CMD} -e 's|-lstdc++|-lc++|g' \ X# @${REINPLACE_CMD} -e 's|-lstdc++||g' \ X# ${WRKSRC}/GNUmakefile.in X#.endif X Xpost-install: X ${INSTALL_PROGRAM} ${WRKSRC}/Programs/GtkLauncher \ X ${PREFIX}/bin/GtkLauncher-3 X X.include 756fd03ac9dcc5a8a25e5f23ee499457 echo x - webkit-gtk3/distinfo sed 's/^X//' >webkit-gtk3/distinfo << '660433ee1105281e6051be946c917d96' XSHA256 (webkitgtk-2.0.3.tar.xz) = 9bf8a32afbf087c4fc2c652b193a52c44b180735ba9c7c8db88137904d458e1b XSIZE (webkitgtk-2.0.3.tar.xz) = 9845948 660433ee1105281e6051be946c917d96 echo x - webkit-gtk3/pkg-descr sed 's/^X//' >webkit-gtk3/pkg-descr << '746c37d3bb65e132b59876658904ec36' XWebKit is an open source web browser engine. It is able to display content Xsuch as HTML, SVG, XML, and others. It also supports DOM, XMLHttpRequest, XXSLT, CSS, Javascript/ECMAscript and more. X XWWW: http://webkit.org/ 746c37d3bb65e132b59876658904ec36 echo x - webkit-gtk3/pkg-plist sed 's/^X//' >webkit-gtk3/pkg-plist << 'b2543f05fc03b22f50ed7baa780779fe' Xbin/GtkLauncher-3 Xbin/jsc-3 Xinclude/webkitgtk-3.0/JavaScriptCore/JSBase.h Xinclude/webkitgtk-3.0/JavaScriptCore/JSContextRef.h Xinclude/webkitgtk-3.0/JavaScriptCore/JSObjectRef.h Xinclude/webkitgtk-3.0/JavaScriptCore/JSStringRef.h Xinclude/webkitgtk-3.0/JavaScriptCore/JSValueRef.h Xinclude/webkitgtk-3.0/JavaScriptCore/JavaScript.h Xinclude/webkitgtk-3.0/JavaScriptCore/WebKitAvailability.h Xinclude/webkitgtk-3.0/webkit/webkit.h Xinclude/webkitgtk-3.0/webkit/webkitapplicationcache.h Xinclude/webkitgtk-3.0/webkit/webkitdefines.h Xinclude/webkitgtk-3.0/webkit/webkitdom.h Xinclude/webkitgtk-3.0/webkit/webkitdownload.h Xinclude/webkitgtk-3.0/webkit/webkitenumtypes.h Xinclude/webkitgtk-3.0/webkit/webkiterror.h Xinclude/webkitgtk-3.0/webkit/webkitfavicondatabase.h Xinclude/webkitgtk-3.0/webkit/webkitfilechooserrequest.h Xinclude/webkitgtk-3.0/webkit/webkitgeolocationpolicydecision.h Xinclude/webkitgtk-3.0/webkit/webkitglobals.h Xinclude/webkitgtk-3.0/webkit/webkithittestresult.h Xinclude/webkitgtk-3.0/webkit/webkiticondatabase.h Xinclude/webkitgtk-3.0/webkit/webkitnetworkrequest.h Xinclude/webkitgtk-3.0/webkit/webkitnetworkresponse.h Xinclude/webkitgtk-3.0/webkit/webkitsecurityorigin.h Xinclude/webkitgtk-3.0/webkit/webkitsoupauthdialog.h Xinclude/webkitgtk-3.0/webkit/webkitspellchecker.h Xinclude/webkitgtk-3.0/webkit/webkitversion.h Xinclude/webkitgtk-3.0/webkit/webkitviewportattributes.h Xinclude/webkitgtk-3.0/webkit/webkitwebbackforwardlist.h Xinclude/webkitgtk-3.0/webkit/webkitwebdatabase.h Xinclude/webkitgtk-3.0/webkit/webkitwebdatasource.h Xinclude/webkitgtk-3.0/webkit/webkitwebframe.h Xinclude/webkitgtk-3.0/webkit/webkitwebhistoryitem.h Xinclude/webkitgtk-3.0/webkit/webkitwebinspector.h Xinclude/webkitgtk-3.0/webkit/webkitwebnavigationaction.h Xinclude/webkitgtk-3.0/webkit/webkitwebplugin.h Xinclude/webkitgtk-3.0/webkit/webkitwebplugindatabase.h Xinclude/webkitgtk-3.0/webkit/webkitwebpolicydecision.h Xinclude/webkitgtk-3.0/webkit/webkitwebresource.h Xinclude/webkitgtk-3.0/webkit/webkitwebsettings.h Xinclude/webkitgtk-3.0/webkit/webkitwebview.h Xinclude/webkitgtk-3.0/webkit/webkitwebwindowfeatures.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKAPICast.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKAPICastGtk.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKAPICastSoup.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKApplicationCacheManager.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKArray.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKAuthenticationChallenge.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKAuthenticationDecisionListener.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKBackForwardList.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKBackForwardListItem.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKBase.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKBaseGtk.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKBaseSoup.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKBatteryManager.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKBatteryStatus.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKCertificateInfo.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKColorPickerResultListener.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKConnectionRef.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKContext.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKContextMenuItem.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKContextMenuItemTypes.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKContextPrivate.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKContextSoup.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKCookieManager.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKCredential.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKCredentialTypes.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKData.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKDatabaseManager.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKDictionary.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKDownload.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKError.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKEvent.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKFindOptions.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKFormSubmissionListener.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKFrame.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKFramePolicyListener.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKFullScreenClientGtk.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKGeolocationManager.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKGeolocationPermissionRequest.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKGeolocationPosition.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKGeometry.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKGrammarDetail.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKGraphicsContext.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKGraphicsContextGtk.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKHitTestResult.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKImage.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKInspector.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKInspectorClientGtk.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKKeyValueStorageManager.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKMediaCacheManager.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKMutableArray.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKMutableDictionary.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKNativeEvent.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKNavigationData.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKNetworkInfo.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKNetworkInfoManager.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKNotification.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKNotificationManager.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKNotificationPermissionRequest.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKNotificationProvider.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKNumber.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKOpenPanelParameters.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKOpenPanelResultListener.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKPage.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKPageGroup.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKPageLoadTypes.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKPagePrivate.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKPageVisibilityTypes.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKPluginSiteDataManager.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKPreferences.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKPreferencesPrivate.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKProtectionSpace.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKProtectionSpaceTypes.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKRenderLayer.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKRenderObject.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKResourceCacheManager.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKRetainPtr.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKSecurityOrigin.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKSerializedScriptValue.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKSerializedScriptValuePrivate.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKSharedAPICast.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKSoupRequestManager.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKString.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKStringPrivate.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKTextChecker.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKType.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKURL.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKURLRequest.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKURLResponse.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKUserContentURLPattern.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKVibration.cpp Xinclude/webkitgtk-3.0/webkit2/WebKit2/WKView.h Xinclude/webkitgtk-3.0/webkit2/WebKit2/WebKit2_C.h Xinclude/webkitgtk-3.0/webkit2/WebKitBackForwardList.h Xinclude/webkitgtk-3.0/webkit2/WebKitBackForwardListItem.h Xinclude/webkitgtk-3.0/webkit2/WebKitContextMenu.h Xinclude/webkitgtk-3.0/webkit2/WebKitContextMenuActions.h Xinclude/webkitgtk-3.0/webkit2/WebKitContextMenuItem.h Xinclude/webkitgtk-3.0/webkit2/WebKitCookieManager.h Xinclude/webkitgtk-3.0/webkit2/WebKitDefines.h Xinclude/webkitgtk-3.0/webkit2/WebKitDownload.h Xinclude/webkitgtk-3.0/webkit2/WebKitEditingCommands.h Xinclude/webkitgtk-3.0/webkit2/WebKitEnumTypes.h Xinclude/webkitgtk-3.0/webkit2/WebKitError.h Xinclude/webkitgtk-3.0/webkit2/WebKitFaviconDatabase.h Xinclude/webkitgtk-3.0/webkit2/WebKitFileChooserRequest.h Xinclude/webkitgtk-3.0/webkit2/WebKitFindController.h Xinclude/webkitgtk-3.0/webkit2/WebKitFormSubmissionRequest.h Xinclude/webkitgtk-3.0/webkit2/WebKitForwardDeclarations.h Xinclude/webkitgtk-3.0/webkit2/WebKitGeolocationPermissionRequest.h Xinclude/webkitgtk-3.0/webkit2/WebKitHitTestResult.h Xinclude/webkitgtk-3.0/webkit2/WebKitJavascriptResult.h Xinclude/webkitgtk-3.0/webkit2/WebKitMimeInfo.h Xinclude/webkitgtk-3.0/webkit2/WebKitNavigationPolicyDecision.h Xinclude/webkitgtk-3.0/webkit2/WebKitPermissionRequest.h Xinclude/webkitgtk-3.0/webkit2/WebKitPlugin.h Xinclude/webkitgtk-3.0/webkit2/WebKitPolicyDecision.h Xinclude/webkitgtk-3.0/webkit2/WebKitPrintOperation.h Xinclude/webkitgtk-3.0/webkit2/WebKitResponsePolicyDecision.h Xinclude/webkitgtk-3.0/webkit2/WebKitScriptDialog.h Xinclude/webkitgtk-3.0/webkit2/WebKitSecurityManager.h Xinclude/webkitgtk-3.0/webkit2/WebKitSettings.h Xinclude/webkitgtk-3.0/webkit2/WebKitURIRequest.h Xinclude/webkitgtk-3.0/webkit2/WebKitURIResponse.h Xinclude/webkitgtk-3.0/webkit2/WebKitURISchemeRequest.h Xinclude/webkitgtk-3.0/webkit2/WebKitVersion.h Xinclude/webkitgtk-3.0/webkit2/WebKitWebContext.h Xinclude/webkitgtk-3.0/webkit2/WebKitWebExtension.h Xinclude/webkitgtk-3.0/webkit2/WebKitWebInspector.h Xinclude/webkitgtk-3.0/webkit2/WebKitWebPage.h Xinclude/webkitgtk-3.0/webkit2/WebKitWebResource.h Xinclude/webkitgtk-3.0/webkit2/WebKitWebView.h Xinclude/webkitgtk-3.0/webkit2/WebKitWebViewBase.h Xinclude/webkitgtk-3.0/webkit2/WebKitWebViewGroup.h Xinclude/webkitgtk-3.0/webkit2/WebKitWindowProperties.h Xinclude/webkitgtk-3.0/webkit2/webkit-web-extension.h Xinclude/webkitgtk-3.0/webkit2/webkit2.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMAttr.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMBarInfo.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMBlob.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMCDATASection.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMCSSRule.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMCSSRuleList.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMCSSStyleDeclaration.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMCSSStyleSheet.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMCSSValue.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMCharacterData.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMComment.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMConsole.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMCustom.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMDOMApplicationCache.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMDOMImplementation.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMDOMMimeType.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMDOMMimeTypeArray.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMDOMNamedFlowCollection.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMDOMPlugin.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMDOMPluginArray.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMDOMSecurityPolicy.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMDOMSelection.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMDOMSettableTokenList.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMDOMStringList.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMDOMStringMap.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMDOMTokenList.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMDOMWindow.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMDOMWindowCSS.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMDatabase.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMDocument.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMDocumentFragment.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMDocumentType.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMEntityReference.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMEvent.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMEventTarget.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMFile.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMFileList.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMGamepad.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMGamepadList.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMGeolocation.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLAnchorElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLAppletElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLAreaElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLAudioElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLBRElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLBaseElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLBaseFontElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLBodyElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLButtonElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLCanvasElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLCollection.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLDListElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLDetailsElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLDirectoryElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLDivElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLDocument.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLEmbedElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLFieldSetElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLFontElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLFormElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLFrameElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLFrameSetElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLHRElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLHeadElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLHeadingElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLHtmlElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLIFrameElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLImageElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLInputElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLKeygenElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLLIElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLLabelElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLLegendElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLLinkElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLMapElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLMarqueeElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLMediaElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLMenuElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLMetaElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLModElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLOListElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLObjectElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLOptGroupElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLOptionElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLOptionsCollection.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLParagraphElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLParamElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLPreElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLPropertiesCollection.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLQuoteElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLScriptElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLSelectElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLStyleElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLTableCaptionElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLTableCellElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLTableColElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLTableElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLTableRowElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLTableSectionElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLTextAreaElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLTitleElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLUListElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHTMLVideoElement.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMHistory.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMLocation.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMMediaError.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMMediaList.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMMediaQueryList.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMMemoryInfo.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMMessagePort.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMMicroDataItemValue.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMMouseEvent.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMNamedNodeMap.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMNavigator.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMNode.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMNodeFilter.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMNodeIterator.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMNodeList.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMObject.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMPerformance.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMPerformanceEntry.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMPerformanceEntryList.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMPerformanceNavigation.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMPerformanceTiming.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMProcessingInstruction.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMPropertyNodeList.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMRange.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMScreen.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMShadowRoot.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMStorage.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMStorageInfo.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMStyleMedia.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMStyleSheet.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMStyleSheetList.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMText.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMTextTrack.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMTextTrackCue.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMTextTrackCueList.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMTextTrackList.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMTimeRanges.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMTrackEvent.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMTreeWalker.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMUIEvent.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMValidityState.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMWebKitNamedFlow.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMWebKitPoint.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMXPathExpression.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMXPathNSResolver.h Xinclude/webkitgtk-3.0/webkitdom/WebKitDOMXPathResult.h Xinclude/webkitgtk-3.0/webkitdom/webkitdom.h Xinclude/webkitgtk-3.0/webkitdom/webkitdomdefines.h Xlib/girepository-1.0/JSCore-3.0.typelib Xlib/girepository-1.0/WebKit-3.0.typelib Xlib/girepository-1.0/WebKit2-3.0.typelib Xlib/libjavascriptcoregtk-3.0.la Xlib/libjavascriptcoregtk-3.0.so Xlib/libjavascriptcoregtk-3.0.so.13 Xlib/libwebkit2gtk-3.0.la Xlib/libwebkit2gtk-3.0.so Xlib/libwebkit2gtk-3.0.so.25 Xlib/libwebkitgtk-3.0.la Xlib/libwebkitgtk-3.0.so Xlib/libwebkitgtk-3.0.so.18 Xlib/webkit2gtk-3.0/injected-bundle/libwebkit2gtkinjectedbundle.la Xlib/webkit2gtk-3.0/injected-bundle/libwebkit2gtkinjectedbundle.so Xlibdata/pkgconfig/javascriptcoregtk-3.0.pc Xlibdata/pkgconfig/webkit2gtk-3.0.pc Xlibdata/pkgconfig/webkitgtk-3.0.pc Xlibexec/WebKitPluginProcess Xlibexec/WebKitWebProcess Xshare/gir-1.0/JSCore-3.0.gir Xshare/gir-1.0/WebKit-3.0.gir Xshare/gir-1.0/WebKit2-3.0.gir Xshare/gtk-doc/html/webkit2gtk/WebKitBackForwardList.html Xshare/gtk-doc/html/webkit2gtk/WebKitBackForwardListItem.html Xshare/gtk-doc/html/webkit2gtk/WebKitContextMenu.html Xshare/gtk-doc/html/webkit2gtk/WebKitContextMenuItem.html Xshare/gtk-doc/html/webkit2gtk/WebKitCookieManager.html Xshare/gtk-doc/html/webkit2gtk/WebKitDownload.html Xshare/gtk-doc/html/webkit2gtk/WebKitFaviconDatabase.html Xshare/gtk-doc/html/webkit2gtk/WebKitFileChooserRequest.html Xshare/gtk-doc/html/webkit2gtk/WebKitFindController.html Xshare/gtk-doc/html/webkit2gtk/WebKitFormSubmissionRequest.html Xshare/gtk-doc/html/webkit2gtk/WebKitGeolocationPermissionRequest.html Xshare/gtk-doc/html/webkit2gtk/WebKitHitTestResult.html Xshare/gtk-doc/html/webkit2gtk/WebKitNavigationPolicyDecision.html Xshare/gtk-doc/html/webkit2gtk/WebKitPermissionRequest.html Xshare/gtk-doc/html/webkit2gtk/WebKitPlugin.html Xshare/gtk-doc/html/webkit2gtk/WebKitPolicyDecision.html Xshare/gtk-doc/html/webkit2gtk/WebKitPrintOperation.html Xshare/gtk-doc/html/webkit2gtk/WebKitResponsePolicyDecision.html Xshare/gtk-doc/html/webkit2gtk/WebKitSecurityManager.html Xshare/gtk-doc/html/webkit2gtk/WebKitSettings.html Xshare/gtk-doc/html/webkit2gtk/WebKitURIRequest.html Xshare/gtk-doc/html/webkit2gtk/WebKitURIResponse.html Xshare/gtk-doc/html/webkit2gtk/WebKitURISchemeRequest.html Xshare/gtk-doc/html/webkit2gtk/WebKitWebContext.html Xshare/gtk-doc/html/webkit2gtk/WebKitWebExtension.html Xshare/gtk-doc/html/webkit2gtk/WebKitWebInspector.html Xshare/gtk-doc/html/webkit2gtk/WebKitWebPage.html Xshare/gtk-doc/html/webkit2gtk/WebKitWebResource.html Xshare/gtk-doc/html/webkit2gtk/WebKitWebView.html Xshare/gtk-doc/html/webkit2gtk/WebKitWebViewGroup.html Xshare/gtk-doc/html/webkit2gtk/WebKitWindowProperties.html Xshare/gtk-doc/html/webkit2gtk/annotation-glossary.html Xshare/gtk-doc/html/webkit2gtk/ch01.html Xshare/gtk-doc/html/webkit2gtk/ch02.html Xshare/gtk-doc/html/webkit2gtk/home.png Xshare/gtk-doc/html/webkit2gtk/index-all.html Xshare/gtk-doc/html/webkit2gtk/index.html Xshare/gtk-doc/html/webkit2gtk/index.sgml Xshare/gtk-doc/html/webkit2gtk/left.png Xshare/gtk-doc/html/webkit2gtk/right.png Xshare/gtk-doc/html/webkit2gtk/style.css Xshare/gtk-doc/html/webkit2gtk/up.png Xshare/gtk-doc/html/webkit2gtk/webkit2gtk-WebKitError.html Xshare/gtk-doc/html/webkit2gtk/webkit2gtk-WebKitVersion.html Xshare/gtk-doc/html/webkit2gtk/webkit2gtk.devhelp2 Xshare/gtk-doc/html/webkitgtk/WebKitFaviconDatabase.html Xshare/gtk-doc/html/webkitgtk/WebKitFileChooserRequest.html Xshare/gtk-doc/html/webkitgtk/WebKitGeolocationPolicyDecision.html Xshare/gtk-doc/html/webkitgtk/WebKitHitTestResult.html Xshare/gtk-doc/html/webkitgtk/WebKitIconDatabase.html Xshare/gtk-doc/html/webkitgtk/WebKitNetworkRequest.html Xshare/gtk-doc/html/webkitgtk/WebKitNetworkResponse.html Xshare/gtk-doc/html/webkitgtk/WebKitSecurityOrigin.html Xshare/gtk-doc/html/webkitgtk/WebKitSoupAuthDialog.html Xshare/gtk-doc/html/webkitgtk/WebKitSpellChecker.html Xshare/gtk-doc/html/webkitgtk/WebKitViewportAttributes.html Xshare/gtk-doc/html/webkitgtk/WebKitWebBackForwardList.html Xshare/gtk-doc/html/webkitgtk/WebKitWebDataSource.html Xshare/gtk-doc/html/webkitgtk/WebKitWebDatabase.html Xshare/gtk-doc/html/webkitgtk/WebKitWebFrame.html Xshare/gtk-doc/html/webkitgtk/WebKitWebHistoryItem.html Xshare/gtk-doc/html/webkitgtk/WebKitWebInspector.html Xshare/gtk-doc/html/webkitgtk/WebKitWebNavigationAction.html Xshare/gtk-doc/html/webkitgtk/WebKitWebPlugin.html Xshare/gtk-doc/html/webkitgtk/WebKitWebPluginDatabase.html Xshare/gtk-doc/html/webkitgtk/WebKitWebPolicyDecision.html Xshare/gtk-doc/html/webkitgtk/WebKitWebResource.html Xshare/gtk-doc/html/webkitgtk/WebKitWebSettings.html Xshare/gtk-doc/html/webkitgtk/WebKitWebWindowFeatures.html Xshare/gtk-doc/html/webkitgtk/annotation-glossary.html Xshare/gtk-doc/html/webkitgtk/ch01.html Xshare/gtk-doc/html/webkitgtk/ch02.html Xshare/gtk-doc/html/webkitgtk/ch03.html Xshare/gtk-doc/html/webkitgtk/home.png Xshare/gtk-doc/html/webkitgtk/index-1.0.1.html Xshare/gtk-doc/html/webkitgtk/index-1.0.2.html Xshare/gtk-doc/html/webkitgtk/index-1.0.3.html Xshare/gtk-doc/html/webkitgtk/index-1.1.1.html Xshare/gtk-doc/html/webkitgtk/index-1.1.10.html Xshare/gtk-doc/html/webkitgtk/index-1.1.11.html Xshare/gtk-doc/html/webkitgtk/index-1.1.13.html Xshare/gtk-doc/html/webkitgtk/index-1.1.14.html Xshare/gtk-doc/html/webkitgtk/index-1.1.15.html Xshare/gtk-doc/html/webkitgtk/index-1.1.16.html Xshare/gtk-doc/html/webkitgtk/index-1.1.17.html Xshare/gtk-doc/html/webkitgtk/index-1.1.18.html Xshare/gtk-doc/html/webkitgtk/index-1.1.2.html Xshare/gtk-doc/html/webkitgtk/index-1.1.20.html Xshare/gtk-doc/html/webkitgtk/index-1.1.23.html Xshare/gtk-doc/html/webkitgtk/index-1.1.3.html Xshare/gtk-doc/html/webkitgtk/index-1.1.4.html Xshare/gtk-doc/html/webkitgtk/index-1.1.5.html Xshare/gtk-doc/html/webkitgtk/index-1.1.6.html Xshare/gtk-doc/html/webkitgtk/index-1.1.7.html Xshare/gtk-doc/html/webkitgtk/index-1.1.8.html Xshare/gtk-doc/html/webkitgtk/index-1.3.1.html Xshare/gtk-doc/html/webkitgtk/index-1.3.2.html Xshare/gtk-doc/html/webkitgtk/index-1.3.3.html Xshare/gtk-doc/html/webkitgtk/index-1.3.4.html Xshare/gtk-doc/html/webkitgtk/index-1.3.8.html Xshare/gtk-doc/html/webkitgtk/index-all.html Xshare/gtk-doc/html/webkitgtk/index-deprecated.html Xshare/gtk-doc/html/webkitgtk/index.html Xshare/gtk-doc/html/webkitgtk/index.sgml Xshare/gtk-doc/html/webkitgtk/left.png Xshare/gtk-doc/html/webkitgtk/right.png Xshare/gtk-doc/html/webkitgtk/style.css Xshare/gtk-doc/html/webkitgtk/up.png Xshare/gtk-doc/html/webkitgtk/webkit-environment.html Xshare/gtk-doc/html/webkitgtk/webkitgtk-Global-functions.html Xshare/gtk-doc/html/webkitgtk/webkitgtk-webkitdownload.html Xshare/gtk-doc/html/webkitgtk/webkitgtk-webkitwebview.html Xshare/gtk-doc/html/webkitgtk/webkitgtk.devhelp2 Xshare/locale/ar/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/as/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/bg/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/cs/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/de/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/el/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/en_CA/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/en_GB/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/eo/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/es/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/et/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/eu/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/fr/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/gl/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/gu/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/he/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/hi/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/hu/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/id/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/it/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/kn/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/ko/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/lt/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/lv/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/ml/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/mr/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/nb/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/nl/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/or/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/pa/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/pl/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/pt/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/pt_BR/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/ro/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/ru/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/sl/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/sr/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/sr@latin/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/sv/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/ta/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/te/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/uk/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/vi/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/locale/zh_CN/LC_MESSAGES/WebKitGTK-3.0.mo Xshare/webkitgtk-3.0/images/deleteButton.png Xshare/webkitgtk-3.0/images/inputSpeech.png Xshare/webkitgtk-3.0/images/missingImage.png Xshare/webkitgtk-3.0/images/nullPlugin.png Xshare/webkitgtk-3.0/images/panIcon.png Xshare/webkitgtk-3.0/images/textAreaResizeCorner.png Xshare/webkitgtk-3.0/images/urlIcon.png Xshare/webkitgtk-3.0/resources/audio/Composite.wav Xshare/webkitgtk-3.0/resources/error.html Xshare/webkitgtk-3.0/webinspector/AdvancedSearchController.js Xshare/webkitgtk-3.0/webinspector/ApplicationCacheItemsView.js Xshare/webkitgtk-3.0/webinspector/ApplicationCacheModel.js Xshare/webkitgtk-3.0/webinspector/AuditCategories.js Xshare/webkitgtk-3.0/webinspector/AuditFormatters.js Xshare/webkitgtk-3.0/webinspector/AuditLauncherView.js Xshare/webkitgtk-3.0/webinspector/AuditResultView.js Xshare/webkitgtk-3.0/webinspector/AuditRules.js Xshare/webkitgtk-3.0/webinspector/AuditsPanel.js Xshare/webkitgtk-3.0/webinspector/BottomUpProfileDataGridTree.js Xshare/webkitgtk-3.0/webinspector/BreakpointManager.js Xshare/webkitgtk-3.0/webinspector/BreakpointsSidebarPane.js Xshare/webkitgtk-3.0/webinspector/CPUProfileView.js Xshare/webkitgtk-3.0/webinspector/CSSMetadata.js Xshare/webkitgtk-3.0/webinspector/CSSNamedFlowCollectionsView.js Xshare/webkitgtk-3.0/webinspector/CSSNamedFlowView.js Xshare/webkitgtk-3.0/webinspector/CSSSelectorProfileView.js Xshare/webkitgtk-3.0/webinspector/CSSStyleModel.js Xshare/webkitgtk-3.0/webinspector/CallStackSidebarPane.js Xshare/webkitgtk-3.0/webinspector/CanvasProfileView.js Xshare/webkitgtk-3.0/webinspector/Checkbox.js Xshare/webkitgtk-3.0/webinspector/CodeMirrorTextEditor.js Xshare/webkitgtk-3.0/webinspector/Color.js Xshare/webkitgtk-3.0/webinspector/CompilerScriptMapping.js Xshare/webkitgtk-3.0/webinspector/ConsoleMessage.js Xshare/webkitgtk-3.0/webinspector/ConsoleModel.js Xshare/webkitgtk-3.0/webinspector/ConsolePanel.js Xshare/webkitgtk-3.0/webinspector/ConsoleView.js Xshare/webkitgtk-3.0/webinspector/ContentProvider.js Xshare/webkitgtk-3.0/webinspector/ContentProviders.js Xshare/webkitgtk-3.0/webinspector/ContextMenu.js Xshare/webkitgtk-3.0/webinspector/CookieItemsView.js Xshare/webkitgtk-3.0/webinspector/CookieParser.js Xshare/webkitgtk-3.0/webinspector/CookiesTable.js Xshare/webkitgtk-3.0/webinspector/DOMAgent.js Xshare/webkitgtk-3.0/webinspector/DOMBreakpointsSidebarPane.js Xshare/webkitgtk-3.0/webinspector/DOMCountersGraph.js Xshare/webkitgtk-3.0/webinspector/DOMExtension.js Xshare/webkitgtk-3.0/webinspector/DOMPresentationUtils.js Xshare/webkitgtk-3.0/webinspector/DOMStorage.js Xshare/webkitgtk-3.0/webinspector/DOMStorageItemsView.js Xshare/webkitgtk-3.0/webinspector/DOMSyntaxHighlighter.js Xshare/webkitgtk-3.0/webinspector/DataGrid.js Xshare/webkitgtk-3.0/webinspector/Database.js Xshare/webkitgtk-3.0/webinspector/DatabaseQueryView.js Xshare/webkitgtk-3.0/webinspector/DatabaseTableView.js Xshare/webkitgtk-3.0/webinspector/DebuggerModel.js Xshare/webkitgtk-3.0/webinspector/DebuggerScriptMapping.js Xshare/webkitgtk-3.0/webinspector/DefaultScriptMapping.js Xshare/webkitgtk-3.0/webinspector/DefaultTextEditor.js Xshare/webkitgtk-3.0/webinspector/Dialog.js Xshare/webkitgtk-3.0/webinspector/DirectoryContentView.js Xshare/webkitgtk-3.0/webinspector/DockController.js Xshare/webkitgtk-3.0/webinspector/Drawer.js Xshare/webkitgtk-3.0/webinspector/ElementsPanel.js Xshare/webkitgtk-3.0/webinspector/ElementsPanelDescriptor.js Xshare/webkitgtk-3.0/webinspector/ElementsTreeOutline.js Xshare/webkitgtk-3.0/webinspector/EmptyView.js Xshare/webkitgtk-3.0/webinspector/EventListenersSidebarPane.js Xshare/webkitgtk-3.0/webinspector/ExtensionAPI.js Xshare/webkitgtk-3.0/webinspector/ExtensionAuditCategory.js Xshare/webkitgtk-3.0/webinspector/ExtensionPanel.js Xshare/webkitgtk-3.0/webinspector/ExtensionRegistryStub.js Xshare/webkitgtk-3.0/webinspector/ExtensionServer.js Xshare/webkitgtk-3.0/webinspector/ExtensionView.js Xshare/webkitgtk-3.0/webinspector/FileContentView.js Xshare/webkitgtk-3.0/webinspector/FileManager.js Xshare/webkitgtk-3.0/webinspector/FileMapping.js Xshare/webkitgtk-3.0/webinspector/FileSystemMapping.js Xshare/webkitgtk-3.0/webinspector/FileSystemModel.js Xshare/webkitgtk-3.0/webinspector/FileSystemProjectDelegate.js Xshare/webkitgtk-3.0/webinspector/FileSystemView.js Xshare/webkitgtk-3.0/webinspector/FileUtils.js Xshare/webkitgtk-3.0/webinspector/FilteredItemSelectionDialog.js Xshare/webkitgtk-3.0/webinspector/FontView.js Xshare/webkitgtk-3.0/webinspector/GoToLineDialog.js Xshare/webkitgtk-3.0/webinspector/HAREntry.js Xshare/webkitgtk-3.0/webinspector/HandlerRegistry.js Xshare/webkitgtk-3.0/webinspector/HeapSnapshot.js Xshare/webkitgtk-3.0/webinspector/HeapSnapshotDataGrids.js Xshare/webkitgtk-3.0/webinspector/HeapSnapshotGridNodes.js Xshare/webkitgtk-3.0/webinspector/HeapSnapshotLoader.js Xshare/webkitgtk-3.0/webinspector/HeapSnapshotProxy.js Xshare/webkitgtk-3.0/webinspector/HeapSnapshotView.js Xshare/webkitgtk-3.0/webinspector/HeapSnapshotWorker.js Xshare/webkitgtk-3.0/webinspector/HeapSnapshotWorkerDispatcher.js Xshare/webkitgtk-3.0/webinspector/HelpScreen.js Xshare/webkitgtk-3.0/webinspector/ImageView.js Xshare/webkitgtk-3.0/webinspector/Images/addIcon.png Xshare/webkitgtk-3.0/webinspector/Images/applicationCache.png Xshare/webkitgtk-3.0/webinspector/Images/back.png Xshare/webkitgtk-3.0/webinspector/Images/breakpointBorder.png Xshare/webkitgtk-3.0/webinspector/Images/breakpointConditionalBorder.png Xshare/webkitgtk-3.0/webinspector/Images/breakpointConditionalCounterBorder.png Xshare/webkitgtk-3.0/webinspector/Images/breakpointCounterBorder.png Xshare/webkitgtk-3.0/webinspector/Images/checker.png Xshare/webkitgtk-3.0/webinspector/Images/closeButtons.png Xshare/webkitgtk-3.0/webinspector/Images/cookie.png Xshare/webkitgtk-3.0/webinspector/Images/database.png Xshare/webkitgtk-3.0/webinspector/Images/databaseTable.png Xshare/webkitgtk-3.0/webinspector/Images/debuggerContinue.png Xshare/webkitgtk-3.0/webinspector/Images/debuggerPause.png Xshare/webkitgtk-3.0/webinspector/Images/debuggerStepInto.png Xshare/webkitgtk-3.0/webinspector/Images/debuggerStepOut.png Xshare/webkitgtk-3.0/webinspector/Images/debuggerStepOver.png Xshare/webkitgtk-3.0/webinspector/Images/deleteIcon.png Xshare/webkitgtk-3.0/webinspector/Images/disclosureTriangleSmallDown.png Xshare/webkitgtk-3.0/webinspector/Images/disclosureTriangleSmallDownBlack.png Xshare/webkitgtk-3.0/webinspector/Images/disclosureTriangleSmallDownWhite.png Xshare/webkitgtk-3.0/webinspector/Images/disclosureTriangleSmallRight.png Xshare/webkitgtk-3.0/webinspector/Images/disclosureTriangleSmallRightBlack.png Xshare/webkitgtk-3.0/webinspector/Images/disclosureTriangleSmallRightDown.png Xshare/webkitgtk-3.0/webinspector/Images/disclosureTriangleSmallRightDownBlack.png Xshare/webkitgtk-3.0/webinspector/Images/disclosureTriangleSmallRightDownWhite.png Xshare/webkitgtk-3.0/webinspector/Images/disclosureTriangleSmallRightWhite.png Xshare/webkitgtk-3.0/webinspector/Images/domain.png Xshare/webkitgtk-3.0/webinspector/Images/errorIcon.png Xshare/webkitgtk-3.0/webinspector/Images/errorMediumIcon.png Xshare/webkitgtk-3.0/webinspector/Images/errorRedDot.png Xshare/webkitgtk-3.0/webinspector/Images/fileSystem.png Xshare/webkitgtk-3.0/webinspector/Images/forward.png Xshare/webkitgtk-3.0/webinspector/Images/frame.png Xshare/webkitgtk-3.0/webinspector/Images/glossyHeader.png Xshare/webkitgtk-3.0/webinspector/Images/glossyHeaderPressed.png Xshare/webkitgtk-3.0/webinspector/Images/glossyHeaderSelected.png Xshare/webkitgtk-3.0/webinspector/Images/glossyHeaderSelectedPressed.png Xshare/webkitgtk-3.0/webinspector/Images/goArrow.png Xshare/webkitgtk-3.0/webinspector/Images/graphLabelCalloutLeft.png Xshare/webkitgtk-3.0/webinspector/Images/graphLabelCalloutRight.png Xshare/webkitgtk-3.0/webinspector/Images/indexedDB.png Xshare/webkitgtk-3.0/webinspector/Images/indexedDBIndex.png Xshare/webkitgtk-3.0/webinspector/Images/indexedDBObjectStore.png Xshare/webkitgtk-3.0/webinspector/Images/localStorage.png Xshare/webkitgtk-3.0/webinspector/Images/namedFlowOverflow.png Xshare/webkitgtk-3.0/webinspector/Images/navigatorShowHideButton.png Xshare/webkitgtk-3.0/webinspector/Images/paneAddButtons.png Xshare/webkitgtk-3.0/webinspector/Images/paneBottomGrow.png Xshare/webkitgtk-3.0/webinspector/Images/paneBottomGrowActive.png Xshare/webkitgtk-3.0/webinspector/Images/paneElementStateButtons.png Xshare/webkitgtk-3.0/webinspector/Images/paneFilterButtons.png Xshare/webkitgtk-3.0/webinspector/Images/paneGrowHandleLine.png Xshare/webkitgtk-3.0/webinspector/Images/paneRefreshButtons.png Xshare/webkitgtk-3.0/webinspector/Images/paneSettingsButtons.png Xshare/webkitgtk-3.0/webinspector/Images/popoverArrows.png Xshare/webkitgtk-3.0/webinspector/Images/popoverBackground.png Xshare/webkitgtk-3.0/webinspector/Images/profileGroupIcon.png Xshare/webkitgtk-3.0/webinspector/Images/profileIcon.png Xshare/webkitgtk-3.0/webinspector/Images/profileSmallIcon.png Xshare/webkitgtk-3.0/webinspector/Images/profilesSilhouette.png Xshare/webkitgtk-3.0/webinspector/Images/programCounterBorder.png Xshare/webkitgtk-3.0/webinspector/Images/radioDot.png Xshare/webkitgtk-3.0/webinspector/Images/regionEmpty.png Xshare/webkitgtk-3.0/webinspector/Images/regionFit.png Xshare/webkitgtk-3.0/webinspector/Images/regionOverset.png Xshare/webkitgtk-3.0/webinspector/Images/resourceCSSIcon.png Xshare/webkitgtk-3.0/webinspector/Images/resourceDocumentIcon.png Xshare/webkitgtk-3.0/webinspector/Images/resourceDocumentIconSmall.png Xshare/webkitgtk-3.0/webinspector/Images/resourceJSIcon.png Xshare/webkitgtk-3.0/webinspector/Images/resourcePlainIcon.png Xshare/webkitgtk-3.0/webinspector/Images/resourcePlainIconSmall.png Xshare/webkitgtk-3.0/webinspector/Images/resourcesSizeGraphIcon.png Xshare/webkitgtk-3.0/webinspector/Images/resourcesTimeGraphIcon.png Xshare/webkitgtk-3.0/webinspector/Images/scriptsSilhouette.png Xshare/webkitgtk-3.0/webinspector/Images/searchNext.png Xshare/webkitgtk-3.0/webinspector/Images/searchPrev.png Xshare/webkitgtk-3.0/webinspector/Images/searchSmallBlue.png Xshare/webkitgtk-3.0/webinspector/Images/searchSmallBrightBlue.png Xshare/webkitgtk-3.0/webinspector/Images/searchSmallGray.png Xshare/webkitgtk-3.0/webinspector/Images/searchSmallWhite.png Xshare/webkitgtk-3.0/webinspector/Images/segment.png Xshare/webkitgtk-3.0/webinspector/Images/segmentEnd.png Xshare/webkitgtk-3.0/webinspector/Images/segmentHover.png Xshare/webkitgtk-3.0/webinspector/Images/segmentHoverEnd.png Xshare/webkitgtk-3.0/webinspector/Images/segmentSelected.png Xshare/webkitgtk-3.0/webinspector/Images/segmentSelectedEnd.png Xshare/webkitgtk-3.0/webinspector/Images/sessionStorage.png Xshare/webkitgtk-3.0/webinspector/Images/spinner.gif Xshare/webkitgtk-3.0/webinspector/Images/spinnerActive.gif Xshare/webkitgtk-3.0/webinspector/Images/spinnerActiveSelected.gif Xshare/webkitgtk-3.0/webinspector/Images/spinnerInactive.gif Xshare/webkitgtk-3.0/webinspector/Images/spinnerInactiveSelected.gif Xshare/webkitgtk-3.0/webinspector/Images/splitviewDimple.png Xshare/webkitgtk-3.0/webinspector/Images/splitviewDividerBackground.png Xshare/webkitgtk-3.0/webinspector/Images/statusbarButtonGlyphs.png Xshare/webkitgtk-3.0/webinspector/Images/statusbarButtonGlyphs2x.png Xshare/webkitgtk-3.0/webinspector/Images/statusbarResizerHorizontal.png Xshare/webkitgtk-3.0/webinspector/Images/statusbarResizerVertical.png Xshare/webkitgtk-3.0/webinspector/Images/successGreenDot.png Xshare/webkitgtk-3.0/webinspector/Images/thumbActiveHoriz.png Xshare/webkitgtk-3.0/webinspector/Images/thumbActiveVert.png Xshare/webkitgtk-3.0/webinspector/Images/thumbHoriz.png Xshare/webkitgtk-3.0/webinspector/Images/thumbHoverHoriz.png Xshare/webkitgtk-3.0/webinspector/Images/thumbHoverVert.png Xshare/webkitgtk-3.0/webinspector/Images/thumbVert.png Xshare/webkitgtk-3.0/webinspector/Images/tickMark.png Xshare/webkitgtk-3.0/webinspector/Images/timelineHollowPillBlue.png Xshare/webkitgtk-3.0/webinspector/Images/timelineHollowPillGray.png Xshare/webkitgtk-3.0/webinspector/Images/timelineHollowPillGreen.png Xshare/webkitgtk-3.0/webinspector/Images/timelineHollowPillOrange.png Xshare/webkitgtk-3.0/webinspector/Images/timelineHollowPillPurple.png Xshare/webkitgtk-3.0/webinspector/Images/timelineHollowPillRed.png Xshare/webkitgtk-3.0/webinspector/Images/timelineHollowPillYellow.png Xshare/webkitgtk-3.0/webinspector/Images/timelinePillBlue.png Xshare/webkitgtk-3.0/webinspector/Images/timelinePillGray.png Xshare/webkitgtk-3.0/webinspector/Images/timelinePillGreen.png Xshare/webkitgtk-3.0/webinspector/Images/timelinePillOrange.png Xshare/webkitgtk-3.0/webinspector/Images/timelinePillPurple.png Xshare/webkitgtk-3.0/webinspector/Images/timelinePillRed.png Xshare/webkitgtk-3.0/webinspector/Images/timelinePillYellow.png Xshare/webkitgtk-3.0/webinspector/Images/toolbarIcons.png Xshare/webkitgtk-3.0/webinspector/Images/toolbarIconsSmall.png Xshare/webkitgtk-3.0/webinspector/Images/toolbarItemSelected.png Xshare/webkitgtk-3.0/webinspector/Images/trackHoriz.png Xshare/webkitgtk-3.0/webinspector/Images/trackVert.png Xshare/webkitgtk-3.0/webinspector/Images/treeDownTriangleBlack.png Xshare/webkitgtk-3.0/webinspector/Images/treeDownTriangleWhite.png Xshare/webkitgtk-3.0/webinspector/Images/treeRightTriangleBlack.png Xshare/webkitgtk-3.0/webinspector/Images/treeRightTriangleWhite.png Xshare/webkitgtk-3.0/webinspector/Images/treeUpTriangleBlack.png Xshare/webkitgtk-3.0/webinspector/Images/treeUpTriangleWhite.png Xshare/webkitgtk-3.0/webinspector/Images/userInputIcon.png Xshare/webkitgtk-3.0/webinspector/Images/userInputPreviousIcon.png Xshare/webkitgtk-3.0/webinspector/Images/userInputResultIcon.png Xshare/webkitgtk-3.0/webinspector/Images/warningIcon.png Xshare/webkitgtk-3.0/webinspector/Images/warningMediumIcon.png Xshare/webkitgtk-3.0/webinspector/Images/warningOrangeDot.png Xshare/webkitgtk-3.0/webinspector/Images/warningsErrors.png Xshare/webkitgtk-3.0/webinspector/IndexedDBModel.js Xshare/webkitgtk-3.0/webinspector/IndexedDBViews.js Xshare/webkitgtk-3.0/webinspector/InspectorBackend.js Xshare/webkitgtk-3.0/webinspector/InspectorBackendCommands.js Xshare/webkitgtk-3.0/webinspector/InspectorFrontendAPI.js Xshare/webkitgtk-3.0/webinspector/InspectorFrontendHostStub.js Xshare/webkitgtk-3.0/webinspector/InspectorView.js Xshare/webkitgtk-3.0/webinspector/IsolatedFileSystem.js Xshare/webkitgtk-3.0/webinspector/IsolatedFileSystemManager.js Xshare/webkitgtk-3.0/webinspector/JSHeapSnapshot.js Xshare/webkitgtk-3.0/webinspector/JavaScriptFormatter.js Xshare/webkitgtk-3.0/webinspector/JavaScriptSourceFrame.js Xshare/webkitgtk-3.0/webinspector/KeyboardShortcut.js Xshare/webkitgtk-3.0/webinspector/Linkifier.js Xshare/webkitgtk-3.0/webinspector/LiveEditSupport.js Xshare/webkitgtk-3.0/webinspector/MemoryStatistics.js Xshare/webkitgtk-3.0/webinspector/MetricsSidebarPane.js Xshare/webkitgtk-3.0/webinspector/NativeBreakpointsSidebarPane.js Xshare/webkitgtk-3.0/webinspector/NativeHeapSnapshot.js Xshare/webkitgtk-3.0/webinspector/NativeMemoryGraph.js Xshare/webkitgtk-3.0/webinspector/NativeMemorySnapshotView.js Xshare/webkitgtk-3.0/webinspector/NavigatorOverlayController.js Xshare/webkitgtk-3.0/webinspector/NavigatorView.js Xshare/webkitgtk-3.0/webinspector/NetworkItemView.js Xshare/webkitgtk-3.0/webinspector/NetworkLog.js Xshare/webkitgtk-3.0/webinspector/NetworkManager.js Xshare/webkitgtk-3.0/webinspector/NetworkPanel.js Xshare/webkitgtk-3.0/webinspector/NetworkPanelDescriptor.js Xshare/webkitgtk-3.0/webinspector/NetworkRequest.js Xshare/webkitgtk-3.0/webinspector/NetworkUISourceCodeProvider.js Xshare/webkitgtk-3.0/webinspector/Object.js Xshare/webkitgtk-3.0/webinspector/ObjectPopoverHelper.js Xshare/webkitgtk-3.0/webinspector/ObjectPropertiesSection.js Xshare/webkitgtk-3.0/webinspector/OverridesView.js Xshare/webkitgtk-3.0/webinspector/Panel.js Xshare/webkitgtk-3.0/webinspector/PanelEnablerView.js Xshare/webkitgtk-3.0/webinspector/ParsedURL.js Xshare/webkitgtk-3.0/webinspector/Placard.js Xshare/webkitgtk-3.0/webinspector/Popover.js Xshare/webkitgtk-3.0/webinspector/PresentationConsoleMessageHelper.js Xshare/webkitgtk-3.0/webinspector/ProfileDataGridTree.js Xshare/webkitgtk-3.0/webinspector/ProfileLauncherView.js Xshare/webkitgtk-3.0/webinspector/ProfilesPanel.js Xshare/webkitgtk-3.0/webinspector/ProfilesPanelDescriptor.js Xshare/webkitgtk-3.0/webinspector/Progress.js Xshare/webkitgtk-3.0/webinspector/ProgressIndicator.js Xshare/webkitgtk-3.0/webinspector/PropertiesSection.js Xshare/webkitgtk-3.0/webinspector/PropertiesSidebarPane.js Xshare/webkitgtk-3.0/webinspector/RawSourceCode.js Xshare/webkitgtk-3.0/webinspector/RemoteObject.js Xshare/webkitgtk-3.0/webinspector/RequestCookiesView.js Xshare/webkitgtk-3.0/webinspector/RequestHTMLView.js Xshare/webkitgtk-3.0/webinspector/RequestHeadersView.js Xshare/webkitgtk-3.0/webinspector/RequestJSONView.js Xshare/webkitgtk-3.0/webinspector/RequestPreviewView.js Xshare/webkitgtk-3.0/webinspector/RequestResponseView.js Xshare/webkitgtk-3.0/webinspector/RequestTimingView.js Xshare/webkitgtk-3.0/webinspector/RequestView.js Xshare/webkitgtk-3.0/webinspector/Resource.js Xshare/webkitgtk-3.0/webinspector/ResourceScriptMapping.js Xshare/webkitgtk-3.0/webinspector/ResourceTreeModel.js Xshare/webkitgtk-3.0/webinspector/ResourceType.js Xshare/webkitgtk-3.0/webinspector/ResourceUtils.js Xshare/webkitgtk-3.0/webinspector/ResourceView.js Xshare/webkitgtk-3.0/webinspector/ResourceWebSocketFrameView.js Xshare/webkitgtk-3.0/webinspector/ResourcesPanel.js Xshare/webkitgtk-3.0/webinspector/RevisionHistoryView.js Xshare/webkitgtk-3.0/webinspector/RuntimeModel.js Xshare/webkitgtk-3.0/webinspector/SASSSourceMapping.js Xshare/webkitgtk-3.0/webinspector/ScopeChainSidebarPane.js Xshare/webkitgtk-3.0/webinspector/Script.js Xshare/webkitgtk-3.0/webinspector/ScriptFormatter.js Xshare/webkitgtk-3.0/webinspector/ScriptFormatterWorker.js Xshare/webkitgtk-3.0/webinspector/ScriptSnippetModel.js Xshare/webkitgtk-3.0/webinspector/ScriptsNavigator.js Xshare/webkitgtk-3.0/webinspector/ScriptsPanel.js Xshare/webkitgtk-3.0/webinspector/ScriptsPanelDescriptor.js Xshare/webkitgtk-3.0/webinspector/ScriptsSearchScope.js Xshare/webkitgtk-3.0/webinspector/SearchController.js Xshare/webkitgtk-3.0/webinspector/Section.js Xshare/webkitgtk-3.0/webinspector/Settings.js Xshare/webkitgtk-3.0/webinspector/SettingsScreen.js Xshare/webkitgtk-3.0/webinspector/ShortcutsScreen.js Xshare/webkitgtk-3.0/webinspector/ShowMoreDataGridNode.js Xshare/webkitgtk-3.0/webinspector/SidebarOverlay.js Xshare/webkitgtk-3.0/webinspector/SidebarPane.js Xshare/webkitgtk-3.0/webinspector/SidebarTreeElement.js Xshare/webkitgtk-3.0/webinspector/SidebarView.js Xshare/webkitgtk-3.0/webinspector/SimpleWorkspaceProvider.js Xshare/webkitgtk-3.0/webinspector/SnippetJavaScriptSourceFrame.js Xshare/webkitgtk-3.0/webinspector/SnippetStorage.js Xshare/webkitgtk-3.0/webinspector/SoftContextMenu.js Xshare/webkitgtk-3.0/webinspector/SourceCSSTokenizer.js Xshare/webkitgtk-3.0/webinspector/SourceFrame.js Xshare/webkitgtk-3.0/webinspector/SourceHTMLTokenizer.js Xshare/webkitgtk-3.0/webinspector/SourceJavaScriptTokenizer.js Xshare/webkitgtk-3.0/webinspector/SourceMap.js Xshare/webkitgtk-3.0/webinspector/SourceMapping.js Xshare/webkitgtk-3.0/webinspector/SourceTokenizer.js Xshare/webkitgtk-3.0/webinspector/Spectrum.js Xshare/webkitgtk-3.0/webinspector/SplitView.js Xshare/webkitgtk-3.0/webinspector/StatusBarButton.js Xshare/webkitgtk-3.0/webinspector/StyleSheetOutlineDialog.js Xshare/webkitgtk-3.0/webinspector/StylesSidebarPane.js Xshare/webkitgtk-3.0/webinspector/StylesSourceMapping.js Xshare/webkitgtk-3.0/webinspector/SuggestBox.js Xshare/webkitgtk-3.0/webinspector/TabbedEditorContainer.js Xshare/webkitgtk-3.0/webinspector/TabbedPane.js Xshare/webkitgtk-3.0/webinspector/TestController.js Xshare/webkitgtk-3.0/webinspector/TextEditor.js Xshare/webkitgtk-3.0/webinspector/TextEditorHighlighter.js Xshare/webkitgtk-3.0/webinspector/TextEditorModel.js Xshare/webkitgtk-3.0/webinspector/TextPrompt.js Xshare/webkitgtk-3.0/webinspector/TextUtils.js Xshare/webkitgtk-3.0/webinspector/TimelineFrameController.js Xshare/webkitgtk-3.0/webinspector/TimelineGrid.js Xshare/webkitgtk-3.0/webinspector/TimelineManager.js Xshare/webkitgtk-3.0/webinspector/TimelineModel.js Xshare/webkitgtk-3.0/webinspector/TimelineOverviewPane.js Xshare/webkitgtk-3.0/webinspector/TimelinePanel.js Xshare/webkitgtk-3.0/webinspector/TimelinePanelDescriptor.js Xshare/webkitgtk-3.0/webinspector/TimelinePresentationModel.js Xshare/webkitgtk-3.0/webinspector/Toolbar.js Xshare/webkitgtk-3.0/webinspector/TopDownProfileDataGridTree.js Xshare/webkitgtk-3.0/webinspector/UISourceCode.js Xshare/webkitgtk-3.0/webinspector/UISourceCodeFrame.js Xshare/webkitgtk-3.0/webinspector/UIString.js Xshare/webkitgtk-3.0/webinspector/UIUtils.js Xshare/webkitgtk-3.0/webinspector/UglifyJS/parse-js.js Xshare/webkitgtk-3.0/webinspector/UserAgentSupport.js Xshare/webkitgtk-3.0/webinspector/UserMetrics.js Xshare/webkitgtk-3.0/webinspector/View.js Xshare/webkitgtk-3.0/webinspector/ViewportControl.js Xshare/webkitgtk-3.0/webinspector/WatchExpressionsSidebarPane.js Xshare/webkitgtk-3.0/webinspector/WorkerManager.js Xshare/webkitgtk-3.0/webinspector/WorkersSidebarPane.js Xshare/webkitgtk-3.0/webinspector/Workspace.js Xshare/webkitgtk-3.0/webinspector/auditsPanel.css Xshare/webkitgtk-3.0/webinspector/breadcrumbList.css Xshare/webkitgtk-3.0/webinspector/canvasProfiler.css Xshare/webkitgtk-3.0/webinspector/cssNamedFlows.css Xshare/webkitgtk-3.0/webinspector/dataGrid.css Xshare/webkitgtk-3.0/webinspector/dialog.css Xshare/webkitgtk-3.0/webinspector/elementsPanel.css Xshare/webkitgtk-3.0/webinspector/externs.js Xshare/webkitgtk-3.0/webinspector/filteredItemSelectionDialog.css Xshare/webkitgtk-3.0/webinspector/heapProfiler.css Xshare/webkitgtk-3.0/webinspector/helpScreen.css Xshare/webkitgtk-3.0/webinspector/indexedDBViews.css Xshare/webkitgtk-3.0/webinspector/inspector.css Xshare/webkitgtk-3.0/webinspector/inspector.html Xshare/webkitgtk-3.0/webinspector/inspector.js Xshare/webkitgtk-3.0/webinspector/inspectorCommon.css Xshare/webkitgtk-3.0/webinspector/inspectorPageIndex.html Xshare/webkitgtk-3.0/webinspector/inspectorSyntaxHighlight.css Xshare/webkitgtk-3.0/webinspector/jsdifflib.js Xshare/webkitgtk-3.0/webinspector/localizedStrings.js Xshare/webkitgtk-3.0/webinspector/nativeMemoryProfiler.css Xshare/webkitgtk-3.0/webinspector/navigatorView.css Xshare/webkitgtk-3.0/webinspector/networkLogView.css Xshare/webkitgtk-3.0/webinspector/networkPanel.css Xshare/webkitgtk-3.0/webinspector/panelEnablerView.css Xshare/webkitgtk-3.0/webinspector/popover.css Xshare/webkitgtk-3.0/webinspector/profilesPanel.css Xshare/webkitgtk-3.0/webinspector/resourceView.css Xshare/webkitgtk-3.0/webinspector/resourcesPanel.css Xshare/webkitgtk-3.0/webinspector/revisionHistory.css Xshare/webkitgtk-3.0/webinspector/scriptsPanel.css Xshare/webkitgtk-3.0/webinspector/spectrum.css Xshare/webkitgtk-3.0/webinspector/splitView.css Xshare/webkitgtk-3.0/webinspector/tabbedPane.css Xshare/webkitgtk-3.0/webinspector/test-runner.html Xshare/webkitgtk-3.0/webinspector/textEditor.css Xshare/webkitgtk-3.0/webinspector/textPrompt.css Xshare/webkitgtk-3.0/webinspector/timelinePanel.css Xshare/webkitgtk-3.0/webinspector/treeoutline.js Xshare/webkitgtk-3.0/webinspector/utilities.js X@dirrmtry share/locale/sr@latin/LC_MESSAGES X@dirrmtry share/locale/sr@latin X@dirrmtry share/locale/mr/LC_MESSAGES X@dirrmtry share/locale/mr X@dirrm share/webkitgtk-3.0/webinspector/UglifyJS X@dirrm share/webkitgtk-3.0/webinspector/Images X@dirrm share/webkitgtk-3.0/webinspector X@dirrm share/webkitgtk-3.0/resources/audio X@dirrm share/webkitgtk-3.0/resources X@dirrm share/webkitgtk-3.0/images X@dirrm share/webkitgtk-3.0 X@dirrm share/gtk-doc/html/webkitgtk X@dirrm share/gtk-doc/html/webkit2gtk X@dirrmtry share/gtk-doc/html X@dirrmtry share/gtk-doc X@dirrm lib/webkit2gtk-3.0/injected-bundle X@dirrm lib/webkit2gtk-3.0 X@dirrm include/webkitgtk-3.0/webkitdom X@dirrm include/webkitgtk-3.0/webkit2/WebKit2 X@dirrm include/webkitgtk-3.0/webkit2 X@dirrm include/webkitgtk-3.0/webkit X@dirrm include/webkitgtk-3.0/JavaScriptCore X@dirrm include/webkitgtk-3.0 b2543f05fc03b22f50ed7baa780779fe echo c - webkit-gtk3/files/ mkdir -p webkit-gtk3/files/ > /dev/null 2>&1 echo x - webkit-gtk3/files/patch-GNUmakefile.in sed 's/^X//' >webkit-gtk3/files/patch-GNUmakefile.in << '83e9a4bc001d59d0ccafe24e59bb624a' X--- GNUmakefile.in.orig 2013-06-13 23:04:47.000000000 +0000 X+++ GNUmakefile.in 2013-06-13 23:04:57.000000000 +0000 X@@ -20548,7 +20548,7 @@ X -fno-exceptions -DBUILDING_CAIRO__ -DBUILDING_GTK__ \ X $(am__append_1) $(am__append_2) X global_cflags := X-global_cxxflags := -fno-rtti X+global_cxxflags := X JSCORE_GIRSOURCES := $(am__append_39) X WEBKIT_GIRSOURCES := $(am__append_40) X typelibsdir := $(am__append_41) 83e9a4bc001d59d0ccafe24e59bb624a echo x - webkit-gtk3/files/patch-Source_ThirdParty_gtext_include_gtest_internal_gtest-port.h sed 's/^X//' >webkit-gtk3/files/patch-Source_ThirdParty_gtext_include_gtest_internal_gtest-port.h << '1860fe7c37d7abfb437f74093c159f59' X--- Source/ThirdParty/gtest/include/gtest/internal/gtest-port.h.orig 2013-06-10 07:06:02.000000000 +0000 X+++ Source/ThirdParty/gtest/include/gtest/internal/gtest-port.h 2013-06-10 07:51:20.000000000 +0000 X@@ -172,6 +172,7 @@ X #include // For ptrdiff_t X #include X #include X+#include X #include X #ifndef _WIN32_WCE X #include 1860fe7c37d7abfb437f74093c159f59 echo x - webkit-gtk3/files/patch-Source_WebCore_editing_Editor.h sed 's/^X//' >webkit-gtk3/files/patch-Source_WebCore_editing_Editor.h << 'a2f80b96e70d99593a3f675d41c9fef4' X--- ./Source/WebCore/editing/Editor.h.orig 2012-08-04 16:33:45.000000000 +0200 X+++ ./Source/WebCore/editing/Editor.h 2012-08-04 16:34:06.000000000 +0200 X@@ -385,7 +385,7 @@ X void deviceScaleFactorChanged(); X X private: X- virtual void willDetachPage() OVERRIDE; X+ virtual void willDetachPage(); X X OwnPtr m_deleteButtonController; X RefPtr m_lastEditCommand; a2f80b96e70d99593a3f675d41c9fef4 echo x - webkit-gtk3/files/patch-Source_WebCore_plugins_PluginDatabase.cpp sed 's/^X//' >webkit-gtk3/files/patch-Source_WebCore_plugins_PluginDatabase.cpp << 'cfbc4bbf50d6895de0199a9ca70a30cb' X--- Source/WebCore/plugins/PluginDatabase.cpp.orig 2011-01-11 16:24:29.000000000 +0000 X+++ Source/WebCore/plugins/PluginDatabase.cpp 2011-01-11 16:24:54.000000000 +0000 X@@ -375,6 +375,7 @@ Vector PluginDatabase::defaultPl X userPluginPath.append(String("/.netscape/plugins")); X paths.append(userPluginPath); X X+ paths.append("%%BROWSER_PLUGINS_DIR%%"); X paths.append("/usr/lib/browser/plugins"); X paths.append("/usr/local/lib/mozilla/plugins"); X paths.append("/usr/lib/firefox/plugins"); cfbc4bbf50d6895de0199a9ca70a30cb echo x - webkit-gtk3/files/patch-Source_WebKit2_PluginProcess_unix_PluginProcessMainUnix.cpp sed 's/^X//' >webkit-gtk3/files/patch-Source_WebKit2_PluginProcess_unix_PluginProcessMainUnix.cpp << '94598361f7a0c5c830b99cd5f3e66e79' Xman 3 basename X X--- Source/WebKit2/PluginProcess/unix/PluginProcessMainUnix.cpp.orig 2013-06-11 20:02:23.000000000 +0000 X+++ Source/WebKit2/PluginProcess/unix/PluginProcessMainUnix.cpp 2013-06-11 20:04:31.000000000 +0000 X@@ -48,6 +48,8 @@ X X #ifdef XP_UNIX X X+#include X+ X #if !LOG_DISABLED X static const char xErrorString[] = "The program '%s' received an X Window System error.\n" X "This probably reflects a bug in a browser plugin.\n" 94598361f7a0c5c830b99cd5f3e66e79 echo x - webkit-gtk3/files/patch-Source_WebKit2_UIProcess_Launcher_gtk_ProcessLauncherGtk.cpp sed 's/^X//' >webkit-gtk3/files/patch-Source_WebKit2_UIProcess_Launcher_gtk_ProcessLauncherGtk.cpp << '383d4e6f9e24ce33e9eb8bec9ecaca08' X--- Source/WebKit2/UIProcess/Launcher/gtk/ProcessLauncherGtk.cpp.orig 2012-09-24 16:48:12.000000000 +0000 X+++ Source/WebKit2/UIProcess/Launcher/gtk/ProcessLauncherGtk.cpp 2012-09-24 16:48:41.000000000 +0000 X@@ -27,6 +27,7 @@ X #include "config.h" X #include "ProcessLauncher.h" X X+#include X #include "Connection.h" X #include "ProcessExecutablePath.h" X #include 383d4e6f9e24ce33e9eb8bec9ecaca08 echo x - webkit-gtk3/files/patch-Source_WebKit2_UIProcess_Plugins_unix_PluginProcessProxyUnix.cpp sed 's/^X//' >webkit-gtk3/files/patch-Source_WebKit2_UIProcess_Plugins_unix_PluginProcessProxyUnix.cpp << 'c60bc15a9998a03989a9bfeb0b69e40e' X--- Source/WebKit2/UIProcess/Plugins/unix/PluginProcessProxyUnix.cpp.orig 2013-06-10 07:21:09.000000000 +0000 X+++ Source/WebKit2/UIProcess/Plugins/unix/PluginProcessProxyUnix.cpp 2013-06-10 07:29:32.000000000 +0000 X@@ -78,19 +78,23 @@ bool PluginProcessProxy::scanPlugin(cons X // As a consequence, we make sure that the disposition is set to X // SIG_DFL before calling g_spawn_sync(). X struct sigaction action; X+#if defined(SIGCLD) X sigaction(SIGCLD, 0, &action); X if (action.sa_handler == SIG_IGN) { X action.sa_handler = SIG_DFL; X sigaction(SIGCLD, &action, 0); X } X+#endif X X if (!g_spawn_sync(0, argv, 0, G_SPAWN_STDERR_TO_DEV_NULL, 0, 0, &stdOut, 0, &status, 0)) X return false; X X+#if defined(WEXITSTATUS) X if (!WIFEXITED(status) || WEXITSTATUS(status) != EXIT_SUCCESS || !stdOut) { X free(stdOut); X return false; X } X+#endif X X String stdOutString(reinterpret_cast(stdOut)); X free(stdOut); c60bc15a9998a03989a9bfeb0b69e40e echo x - webkit-gtk3/files/patch-Source_WebKit_gtk_webkit_webkitwebview.cpp sed 's/^X//' >webkit-gtk3/files/patch-Source_WebKit_gtk_webkit_webkitwebview.cpp << '978cbc8222804eba9d8ec28a816e2332' X--- Source/WebKit/gtk/webkit/webkitwebview.cpp.orig 2013-03-26 18:25:31.000000000 +0000 X+++ Source/WebKit/gtk/webkit/webkitwebview.cpp 2013-03-31 11:49:59.000000000 +0000 X@@ -5061,6 +5061,8 @@ void webkit_web_view_add_main_resource(W X X priv->mainResource = adoptGRef(webResource); X priv->mainResourceIdentifier = identifier; X+ X+ g_object_ref(webView); X } X X void webkit_web_view_add_resource(WebKitWebView* webView, const char* identifier, WebKitWebResource* webResource) X@@ -5078,6 +5080,8 @@ void webkitWebViewRemoveSubresource(WebK X if (!mainResource.isNull() && g_str_equal(identifier, mainResource.data())) X return; X g_hash_table_remove(webView->priv->subResources.get(), identifier); X+ X+ g_object_unref(webView); X } X X WebKitWebResource* webkit_web_view_get_resource(WebKitWebView* webView, char* identifier) 978cbc8222804eba9d8ec28a816e2332 echo x - webkit-gtk3/files/patch-Tools_ImageDiff_gtk_ImageDiff.cpp sed 's/^X//' >webkit-gtk3/files/patch-Tools_ImageDiff_gtk_ImageDiff.cpp << '9750f985742d2ef3ae69fe1721a38097' X--- Tools/ImageDiff/gtk/ImageDiff.cpp.orig 2013-06-14 11:11:41.000000000 +0000 X+++ Tools/ImageDiff/gtk/ImageDiff.cpp 2013-06-14 11:27:33.000000000 +0000 X@@ -31,6 +31,7 @@ X #include X #include X #include X+#include X #include X X using namespace std; 9750f985742d2ef3ae69fe1721a38097 echo x - webkit-gtk3/files/patch-configure sed 's/^X//' >webkit-gtk3/files/patch-configure << 'ccdfe88812ea1333cc6a958ae7d93346' X--- configure.orig 2013-06-10 11:51:36.000000000 +0000 X+++ configure 2013-06-10 11:52:32.000000000 +0000 X@@ -17500,8 +17500,8 @@ X .SECONDARY: $(gsettings_SCHEMAS) X X gsettings__base_list = \ X- sed "$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g" | \ X- sed "$$!N;$$!N;$$!N;$$!N;s/\n/ /g" X+ sed '\''$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g'\'' | \ X+ sed '\''$$!N;$$!N;$$!N;$$!N;s/\n/ /g'\'' X X install-gsettings-schemas: $(gsettings_SCHEMAS:.xml=.valid) $(gsettings__enum_file) X @$(NORMAL_INSTALL) X@@ -17510,7 +17510,7 @@ X for p in $$list; do \ X if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ X echo "$$d$$p"; \ X- done | $(gsettings__base_list) | \ X+ done | \ X while read files; do \ X echo " $(INSTALL_DATA) $$files '\''$(DESTDIR)$(gsettingsschemadir)'\''"; \ X $(INSTALL_DATA) $$files "$(DESTDIR)$(gsettingsschemadir)" || exit $$?; \ X@@ -20039,7 +20039,7 @@ X X fi X X-acceleration_backend_description=$with_acceleration_backend X+acceleration_backend_description=${with_acceleration_backend} X if test "$with_acceleration_backend" = "clutter"; then X X pkg_failed=no X@@ -20236,18 +20236,18 @@ X X if test "$with_acceleration_backend" = "opengl"; then X if test "$enable_gles2" = "yes"; then X- acceleration_backend_description+= "(gles2" X+ acceleration_backend_description="${acceleration_backend_description} (gles2" X OPENGL_LIBS="-lGLESv2" X else X- acceleration_backend_description+="(gl" X+ acceleration_backend_description="${acceleration_backend_description} (gl" X OPENGL_LIBS="-lGL" X fi X if test "$enable_egl" = "yes"; then X- acceleration_backend_description+=", egl" X+ acceleration_backend_description="${acceleration_backend_description}, egl" X OPENGL_LIBS+=" -lEGL" X fi X if test "$enable_glx" = "yes"; then X- acceleration_backend_description+=", glx" X+ acceleration_backend_description="${acceleration_backend_description}, glx" X fi X X # Check whether dlopen() is in the core libc like on FreeBSD, or in a separate X@@ -20300,8 +20300,8 @@ X X X X- OPENGL_LIBS+=" $DLOPEN_LIBS" X- acceleration_backend_description+=")" X+ OPENGL_LIBS="${OPENGL_LIBS} $DLOPEN_LIBS" X+ acceleration_backend_description="${acceleration_backend_description})" X fi X X ccdfe88812ea1333cc6a958ae7d93346 exit