-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: devtools guide * One sentence per line * Style and orthography * Sometimes a window opens for accepting incoming connections * Expand overview of Inspector tab * Gerund heading for consistency with other heading * Clarify port parameter --------- Co-authored-by: Delan Azabani <[email protected]>
- Loading branch information
Showing
8 changed files
with
72 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# DevTools | ||
|
||
[Firefox DevTools](https://firefox-source-docs.mozilla.org/devtools-user) are a set of web developer tools that can be used to examine, edit, and debug a website's HTML, CSS, and JavaScript. | ||
Servo has support for a subset of DevTools functionality, allowing for simple debugging. | ||
|
||
## Connecting to Servo | ||
|
||
1. Run servoshell with the DevTools server enabled. | ||
The number after the `devtools` parameter is the port used by the server. | ||
|
||
```sh | ||
./mach run --devtools=6080 | ||
``` | ||
|
||
2. Open Firefox and go to `about:debugging`. | ||
If this is your first time using the DevTools integration, go to **Setup** and add `localhost:6080` as a [network location](https://firefox-source-docs.mozilla.org/devtools-user/about_colon_debugging/index.html#connecting-over-the-network). | ||
The port number must be the same as in the previous step. | ||
|
||
3. Click on **Connect** in the sidebar next to `localhost:6080`. | ||
|
||
![Setting up the port in Firefox](../images/devtools-firefox-setup.png) | ||
|
||
4. Accept the incoming connection. | ||
If no confirmation dialog appears, press `Y` in the terminal that servoshell is running in. | ||
|
||
![Accept the connection in the terminal](../images/devtools-accept-connection.png) | ||
|
||
5. Back in Firefox, choose a webview and click **Inspect**. | ||
A new window should open with the page's inspector. | ||
|
||
![Inspect a tab](../images/devtools-inspect-tab.png) | ||
|
||
## Using the inspector | ||
|
||
The inspector window is divided in various tabs with different workspaces. | ||
At the moment, **Inspector** and **Console** are working. | ||
|
||
In the **Inspector** tab there are three columns. | ||
From left to right: | ||
|
||
- The **HTML tree** shows the document nodes. | ||
This allows you to see, add, or modify attributes by double-clicking on the tag name or attribute. | ||
- The **style inspector** displays the CSS styles associated with the selected element. | ||
The entries here come from the element's style attribute, from matching stylesheet rules, or inherited from other elements. | ||
Styles can be added or modified by clicking on a selector or property, or clicking in the empty space below. | ||
- The **extra column** contains more helpful tools: | ||
- **Layout** contains information about the box model properties of the element. | ||
Note that flex and grid do not work yet. | ||
- **Computed**, which contains all of the CSS [computed values](https://drafts.csswg.org/css-cascade/#computed) after resolving things like relative units. | ||
|
||
![Inspector](../images/devtools-inspector.png) | ||
|
||
The **Console** tab contains a JavaScript console that interfaces with the website being displayed in Servo. | ||
Errors, warnings, and information that the website produces will be logged here. | ||
It can also be used to run JavaScript code directly on the website, for example, changing the document content or reloading the page: | ||
|
||
```js | ||
document.write("Hello, Servo!") | ||
location.reload() | ||
``` | ||
|
||
<div class="warning"> | ||
|
||
**Note:** support for DevTools features is still a work in progress, and it can break in future versions of Firefox if there are changes to the messaging protocol. | ||
</div> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters