commit | 68754cc6e2da7b12a9b5f8717b3a980013913f2e | [log] [tgz] |
---|---|---|
author | Hironori.Fujii@sony.com <Hironori.Fujii@sony.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc> | Thu Jun 07 07:32:00 2018 +0000 |
committer | Hironori.Fujii@sony.com <Hironori.Fujii@sony.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc> | Thu Jun 07 07:32:00 2018 +0000 |
tree | b34bf49f6124d6e2091b2faf120355b73eda3c4c | |
parent | e6010627dc4aea800445999c1429c288af4d499c [diff] |
[Win][MiniBrowser] Support multiple windows properly https://bugs.webkit.org/show_bug.cgi?id=186263 Reviewed by Ryosuke Niwa. The current implementation of PrintWebUIDelegate::createWebViewWithRequest is wrong. It is using CreateProcess to open a new window, and doesn't return the new instance of IWebView. As the result, for example, window.close doesn't work as expected. In this change, a new MainWindow is created and return the IWebView in PrintWebUIDelegate::createWebViewWithRequest. In addition to it, this change unifies the lifetime of MiniBrowser and its delegates AccessibilityDelegate, PrintWebUIDelegate, ResourceLoadDelegate and WebDownloadDelegate in order to keep MiniBrowser alive as long as the delegates live. Because the window of webview keeps references of such delegates and accesses those after MiniBrowser destruction. * MiniBrowser/win/MainWindow.h: Added s_numInstances class member to count the number of instance to close the application. Do not use unique_ptr for m_browserWindow because it has ref count now. * MiniBrowser/win/MainWindow.cpp: (MainWindow::MainWindow): Increment s_numInstances. (MainWindow::~MainWindow): Decrement s_numInstances. (MainWindow::create): (MainWindow::init): (MainWindow::WndProc): Rename thiz to thisWindow. Keep this instance alive during this function by using RefPtr<MainWindow>. Deref the MainWindow instance on WM_DESTROY. Quit the application when the last MainWindow is closed. (MainWindow::cachesDialogProc): Rename thiz to thisWindow. (MainWindow::customUserAgentDialogProc): Ditto. * MiniBrowser/win/MiniBrowser.h: Added declarations AddRef and Release. * MiniBrowser/win/MiniBrowser.cpp: (MiniBrowser::create): (MiniBrowser::AddRef): (MiniBrowser::Release): (MiniBrowser::init): Passes this to the constructors of delegates. * MiniBrowser/win/AccessibilityDelegate.cpp: (AccessibilityDelegate::AddRef): Delegate to MiniBrowser. (AccessibilityDelegate::Release): Ditto. * MiniBrowser/win/AccessibilityDelegate.h: Removed m_refCount. (AccessibilityDelegate::AccessibilityDelegate): * MiniBrowser/win/MiniBrowserWebHost.cpp: (MiniBrowserWebHost::AddRef): Delegate to MiniBrowser. (MiniBrowserWebHost::Release): Ditto. * MiniBrowser/win/MiniBrowserWebHost.h: Removed m_refCount. * MiniBrowser/win/PrintWebUIDelegate.cpp: (PrintWebUIDelegate::createWebViewWithRequest): Create a new MainWindow and return the IWebView. (PrintWebUIDelegate::AddRef): Delegate to MiniBrowser. (PrintWebUIDelegate::Release): Ditto. * MiniBrowser/win/PrintWebUIDelegate.h: Removed m_refCount. (PrintWebUIDelegate::PrintWebUIDelegate): * MiniBrowser/win/ResourceLoadDelegate.cpp: (ResourceLoadDelegate::AddRef): Delegate to MiniBrowser. (ResourceLoadDelegate::Release): Ditto. * MiniBrowser/win/ResourceLoadDelegate.h: Removed m_refCount. * MiniBrowser/win/WebDownloadDelegate.cpp: (WebDownloadDelegate::WebDownloadDelegate): (WebDownloadDelegate::AddRef): Delegate to MiniBrowser. (WebDownloadDelegate::Release): Ditto. * MiniBrowser/win/WebDownloadDelegate.h: Removed m_refCount. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@232577 268f45cc-cd09-0410-ab3c-d52691b4dbfc
WebKit is a cross-platform web browser engine. On iOS and macOS, it powers Safari, Mail, iBooks, and many other applications.
Visit WebKit Feature Status page to see which Web API has been implemented, in development, or under consideration.
On macOS, download Safari Technology Preview to test the latest version of WebKit. On Linux, download Epiphany Technology Preview. On Windows, you'll have to build it yourself.
Once your bug is filed, you will receive email when it is updated at each stage in the bug life cycle. After the bug is considered fixed, you may be asked to download the latest nightly and confirm that the fix works for you.
On Windows, follow the instructions on our website.
Run the following command to clone WebKit's Git SVN repository:
git clone git://git.webkit.org/WebKit.git WebKit
If you want to be able to commit changes to the repository, or just want to check out branches that aren’t contained in WebKit.git, you will need track WebKit's Subversion repository. You can run the following command to configure this and other options of the new Git clone for WebKit development.
Tools/Scripts/webkit-patch setup-git-clone
For information about this, and other aspects of using Git with WebKit, read the wiki page.
If you don‘t want to use Git, run the following command to check out WebKit’s Subversion repository:
svn checkout https://svn.webkit.org/repository/webkit/trunk WebKit
Install Xcode and its command line tools if you haven't done so already:
xcode-select --install
Run the following command to build a debug build with debugging symbols and assertions:
Tools/Scripts/build-webkit --debug
For performance testing, and other purposes, use --release
instead.
You can open WebKit.xcworkspace
to build and debug WebKit within WebKit.
If you don't use a custom build location in Xcode preferences, you have to update the workspace settings to use WebKitBuild
directory. In menu bar, choose File > Workspace Settings, then click the Advanced button, select “Custom”, “Relative to Workspace”, and enter WebKitBuild
for both Products and Intermediates.
The first time after you install a new Xcode, you will need to run the following command to enable Xcode to build command line tools for iOS Simulator:
sudo Tools/Scripts/configure-xcode-for-ios-development
Without this step, you will see the error message: “target specifies product type ‘com.apple.product-type.tool’, but there’s no such product type for the ‘iphonesimulator’ platform.
” when building target JSCLLIntOffsetsExtractor
of project JavaScriptCore
.
Run the following command to build a debug build with debugging symbols and assertions for iOS:
Tools/Scripts/build-webkit --debug --ios-simulator.
For production builds:
cmake -DPORT=GTK -DCMAKE_BUILD_TYPE=RelWithDebInfo -GNinja ninja sudo ninja install
For development builds:
Tools/gtk/install-dependencies Tools/Scripts/update-webkitgtk-libs Tools/Scripts/build-webkit --gtk --debug
For more information on building WebKitGTK+, see the wiki page.
For production builds:
cmake -DPORT=WPE -DCMAKE_BUILD_TYPE=RelWithDebInfo -GNinja ninja sudo ninja install
For development builds:
Tools/wpe/install-dependencies Tools/Scripts/update-webkitwpe-libs Tools/Scripts/build-webkit --wpe --debug
For building WebKit on Windows, see the wiki page.
Run the following command to launch Safari with your local build of WebKit:
Tools/Scripts/run-safari --debug
The run-safari
script sets the DYLD_FRAMEWORK_PATH
environment variable to point to your build products, and then launches /Applications/Safari.app
. DYLD_FRAMEWORK_PATH
tells the system loader to prefer your build products over the frameworks installed in /System/Library/Frameworks
.
To run other applications with your local build of WebKit, run the following command:
Tools/Scripts/run-webkit-app <application-path>
Run the following command to launch iOS simulator with your local build of WebKit:
run-safari --debug --ios-simulator
In both cases, if you have built release builds instead, use --release
instead of --debug
.
If you have a development build, you can use the run-minibrowser script, e.g.:
run-minibrowser --debug --wpe
Pass one of --gtk
, --jsc-only
, or --wpe
to indicate the port to use.
Congratulations! You’re up and running. Now you can begin coding in WebKit and contribute your fixes and new features to the project. For details on submitting your code to the project, read Contributing Code.