зеркало из https://github.com/mozilla/gecko-dev.git
231e09d925
- Added test to `devtools/client/inspector/test/browser_inspector_sidebarstate.js`. - Added the OS and build number to the `devtools.main::sidepanel_changed` event. - Created an `osNameAndVersion` getter inside `telemetry.js` because this can be useful whenever an OS supports new features. - Log the `devtools.main::tool_timer` event from `telemetry.toolOpened` and `telemetry.toolClosed` for the animation inspector, computed view, font inspector, layout view and rule view. - Updated the `telemetry.md` document because there is little point in breaking that change out to another bug. - Added the devtools.main::tool_timer event to Events.yaml. Differential Revision: https://phabricator.services.mozilla.com/D3982 --HG-- extra : moz-landing-system : lando |
||
---|---|---|
.. | ||
backend | ||
contributing | ||
files | ||
frontend | ||
getting-started | ||
resources | ||
styles | ||
tests | ||
tools | ||
.gitignore | ||
README.md | ||
SUMMARY.md | ||
bugs-issues.md | ||
contributing.md | ||
preferences.md |
README.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