mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 06:11:37 +00:00
d2897f66aa
Summary: This method isn't specific to tabs. It can attach to any "target" actor that inherits from BrowsingContextActor. Depends On D6161 Reviewers: yulia! Tags: #secure-revision Bug #: 1485676 Differential Revision: https://phabricator.services.mozilla.com/D6162 MozReview-Commit-ID: Exz5fWyWyfN |
||
---|---|---|
.. | ||
backend | ||
contributing | ||
files | ||
frontend | ||
getting-started | ||
resources | ||
styles | ||
tests | ||
tools | ||
.gitignore | ||
bugs-issues.md | ||
contributing.md | ||
preferences.md | ||
README.md | ||
SUMMARY.md |
Firefox Developer Tools
Hello!
This documentation is for developers who want to work on the developer tools. Get started here.
If you are looking for end user documentation, check out this MDN page instead.
Happy developing!
About this documentation
This guide is built with MarkDown files and GitBook.
The source code for this documentation is distributed with the source code for the tools, in the docs/
folder.
If you want to contribute to the documentation, clone the repository, make your changes locally, and then regenerate the book to see how it looks like before submitting a patch:
# Install GitBook locally
npm install -g gitbook-cli
# Go into the docs directory
cd /path/to/mozilla-central/devtools/docs/
# Generate the docs and start a local server
gitbook serve
# You can now navigate to localhost:4000 to see the output
# Or build the book only (this places the output into `docs/_book`)
gitbook build