2021-03-16 03:54:25 +03:00
- [Contributing Browser Patches ](#Contributing-browser-patches )
* [1. Setting up local browser checkout ](#1-setting-up-local-browser-checkout )
* [2. Developing a new change ](#2-developing-a-new-change )
* [3. Exporting your change to playwright repo ](#3-exporting-your-change-to-playwright-repo )
* [4. Rolling Playwright to the new browser build ](#4-rolling-playwright-to-the-new-browser-build )
- [Cheatsheet ](#cheatsheet )
* [Firefox ](#firefox )
- [stack trace ](#stack-trace )
- [logging ](#logging )
* [WebKit ](#webkit )
- [Debugging Windows ](#degugging-windows )
- [Enable core dumps on Linux ](#enable-core-dumps-on-linux )
2019-11-23 05:48:38 +03:00
# Contributing Browser Patches
Firefox and WebKit have additional patches atop to expose necessary capabilities.
Ideally, all these changes should be upstreamed.
For the time being, it is possible to setup a browser checkout
and develop from there.
2020-05-29 21:30:17 +03:00
[WebKit upstream status ](webkit/upstream_status.md )
2019-11-23 05:48:38 +03:00
## 1. Setting up local browser checkout
From the `playwright` repo, run the following command:
2021-06-02 19:23:06 +03:00
```bash
2021-10-18 22:21:02 +03:00
$ ./browser_patches/prepare_checkout.sh firefox
2019-11-23 05:48:38 +03:00
```
(you can optionally pass "webkit" for a webkit checkout)
2021-10-18 22:21:02 +03:00
This will create a firefox checkout at `$HOME/firefox`
2019-12-07 01:56:37 +03:00
2019-11-23 05:48:38 +03:00
> **NOTE:** this command downloads GBs of data.
2019-12-07 01:56:37 +03:00
2019-11-23 05:48:38 +03:00
This command will:
- create a `browser_upstream` remote in the checkout
- create a `playwright-build` branch and apply all playwright-required patches to it.
## 2. Developing a new change
2022-06-03 03:51:07 +03:00
### Creating new branch
2019-11-23 05:48:38 +03:00
You want to create a new branch off the `playwright-build` branch.
2021-10-18 22:21:02 +03:00
Assuming that you're under `$HOME/firefox` checkout:
2019-11-23 05:48:38 +03:00
2021-06-02 19:23:06 +03:00
```bash
2019-11-23 05:48:38 +03:00
$ git checkout -b my-new-feature playwright-build
$ # develop my feature on the my-new-feature branch ....
```
2022-06-03 03:51:07 +03:00
### Building
Each browser has corresponding build script. `--full` options normally takes care of also installing required build dependencies on Linux.
```bash
./browser_patches/firefox/build.sh --full
```
### Running tests with local browser build
Playwright test suite may run against local browser build without bundling it.
```bash
# Run webkit tests with local webkit build
WKPATH=./browser_patches/webkit/pw_run.sh npm run wtest
# Run firefox tests with local firefox build on macos
FFPATH=/tmp/repackaged-firefox/firefox/Nightly.app/Contents/MacOS/firefox npm run ftest
# Run chromium tests with local chromium build on linux
CRPATH=~/chromium/src/out/Release/chrome npm run ctest
```
### Flakiness dashboard
You can look at the [flakiness dashboard ](http://flaky.aslushnikov.com/ ) to see recent history of any playwright test.
2019-11-23 05:48:38 +03:00
## 3. Exporting your change to playwright repo
Once you're happy with the work you did in the browser-land, you want to export it to the `playwright` repo.
Assuming that you're in the root of the `playwright` repo and that your browser checkout has your feature branch checked out:
2021-06-02 19:23:06 +03:00
```bash
2021-10-18 22:21:02 +03:00
$ ./browser_patches/export.sh firefox
2019-11-23 05:48:38 +03:00
```
This script will:
- create a new patch and put it to the `./browser_patches/firefox/patches/`
- update the `./browser_patches/firefox/UPSTREAM_CONFIG.sh` if necessary
- bump the `./browser_patches/firefox/BUILD_NUMBER` number.
2021-10-18 22:21:02 +03:00
The script will assume Firefox checkout is located at `$HOME/firefox`
2019-12-07 01:56:37 +03:00
2020-05-07 22:33:35 +03:00
Send a PR to the Playwright repo to be reviewed.
2019-11-23 05:48:38 +03:00
2020-02-04 19:01:25 +03:00
## 4. Rolling Playwright to the new browser build
2019-11-23 05:48:38 +03:00
2020-07-02 01:22:29 +03:00
Once the patch has been committed, the build bots will kick in, compile and upload a new browser version to all the platforms. Then you can roll the browser:
2019-11-23 05:48:38 +03:00
2021-06-02 19:23:06 +03:00
```bash
2020-07-02 01:22:29 +03:00
$ node utils/roll_browser.js chromium 123456
2019-11-23 05:48:38 +03:00
```
2021-03-16 03:54:25 +03:00
# Cheatsheet
2021-05-28 19:23:52 +03:00
## See browser stdout/stderr
Set the `DEBUG=pw:browser` environment variable to see it.
## Firefox
2021-03-16 03:54:25 +03:00
2021-10-16 00:48:50 +03:00
### Debug build
When compiling set the `FF_DEBUG_BUILD=1` environment variable.
2021-03-16 03:54:25 +03:00
#### Stack trace
In `//mozglue/misc/StackWalk.cpp` add
```c++
#define MOZ_DEMANGLE_SYMBOLS 1
```
In native code use
```c++
2021-10-16 00:48:50 +03:00
#include "mozilla/StackWalk.h"
// ...
MozWalkTheStack(stderr);
2021-03-16 03:54:25 +03:00
```
If the stack trace is still mangled `cat` it to `tools/rb/fix_linux_stack.py`
#### Logging
Upstream documentation: https://developer.mozilla.org/en-US/docs/Mozilla/Developer_guide/Gecko_Logging
```bash
MOZ_LOG=nsHttp:5
```
Module name is a string passed to the `mozilla::LazyLogModule` of the corresponding component, e.g.:
```c++
LazyLogModule gHttpLog("nsHttp");
```
2021-05-28 19:23:52 +03:00
Inside Juggler, you can use `dump('foo\n')` .
2021-03-16 03:54:25 +03:00
## WebKit
2021-05-28 19:23:52 +03:00
#### Logging
Inside Objective-C you can use [NSLog ](https://developer.apple.com/documentation/foundation/1395275-nslog ).
```
NSLog(@"Foobar value: %@", value);
```
2021-03-16 03:54:25 +03:00
#### Debugging windows
In `Source\WTF\wtf\win\DbgHelperWin.cpp` replace
```#if !defined(NDEBUG)``` with ```#if 1```
Then regular `WTFReportBacktrace()` works.
2022-03-30 00:13:31 +03:00
#### Debugging linux
`WTFReportBacktrace()` has been broken since [r283707 ](https://github.com/WebKit/WebKit/commit/de4ba48c8f229bc45042b543a514f6d88b551a64 ), see [this comment ](https://bugs.webkit.org/show_bug.cgi?id=181916#c96 ). Revert that change locally to make backtraces work again. Otherwise addr2line -f can still be used to map addresses to function names.
2021-03-16 03:54:25 +03:00
#### Enable core dumps on Linux
```bash
mkdir -p /tmp/coredumps
sudo bash -c 'echo "/tmp/coredumps/core-pid_%p.dump" > /proc/sys/kernel/core_pattern'
ulimit -c unlimited
```
Then to read stack traces run the following command:
```bash
# To find out crashing process name
file core-pid_29652.dump
# Point gdb to the local binary of the crashed process and the core file
gdb $HOME/.cache/ms-playwright/webkit-1292/minibrowser-gtk/WebKitWebProcess core-pid_29652
# Inside gdb update .so library search path to the local one
set solib-search-path /home/yurys/.cache/ms-playwright/webkit-1292/minibrowser-gtk
# Finally print backtrace
bt
```