diff options
author | Delan Azabani <dazabani@igalia.com> | 2024-07-09 23:42:00 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-09 15:42:00 +0000 |
commit | 34d9be70f9bacc391f6ed69aa1ed5e364bc2c2d6 (patch) | |
tree | cc42f9f89345eea3c21f9f317741233181964646 /docs/COMMAND_LINE_ARGS.md | |
parent | 72e6a1f007fd78d450e3e2f5569bec5a0bb247ff (diff) | |
download | servo-34d9be70f9bacc391f6ed69aa1ed5e364bc2c2d6.tar.gz servo-34d9be70f9bacc391f6ed69aa1ed5e364bc2c2d6.zip |
Update in-tree docs to point to the new book (#32743)
* Update in-tree docs to point to the new book
* Revive build setup section in README as quickstart guide
* Apply feedback about titles
Diffstat (limited to 'docs/COMMAND_LINE_ARGS.md')
-rw-r--r-- | docs/COMMAND_LINE_ARGS.md | 35 |
1 files changed, 5 insertions, 30 deletions
diff --git a/docs/COMMAND_LINE_ARGS.md b/docs/COMMAND_LINE_ARGS.md index aee3d81fc8b..80626fdf5fa 100644 --- a/docs/COMMAND_LINE_ARGS.md +++ b/docs/COMMAND_LINE_ARGS.md @@ -1,32 +1,7 @@ -Command Line Arguments -======================== -# General +# Command line arguments -You can see available commands with: -``` -./mach -h -./mach <sub-command> -h -``` -Only arguments that need more explanation will be documented here. +Moved to the Servo book: -# Run -## Enable Experimental Features -Use `--pref` to enable experimental features like experimental DOM APIs, JavaScript APIs and CSS properties. - -e.g. To enable Web VR and Bluetooth features: -``` -./mach run -d -- --pref dom.webvr.enabled --pref dom.bluetooth.enabled ... -``` - -You can find all the available preferences at [resources/prefs.json](../resources/prefs.json). - -# Debugging -## Remote Debugging -Use `--devtools 6000` to start the devtools server on port 6000. - -e.g. -``` -./mach run -d --devtools=6000 https://servo.org -``` - -To connect to the server, follow [this guide](https://developer.mozilla.org/en-US/docs/Tools/Remote_Debugging/Debugging_Firefox_Desktop#Connect). +- [Running servoshell](https://book.servo.org/running-servoshell.html) +- Hacking on Servo + - [Running servoshell](https://book.servo.org/hacking/running-servoshell.html) |