mirror of
https://github.com/servo/servo.git
synced 2025-09-27 23:30:08 +01:00
script: Tell devtools whether a node is displayed or not (#38575)
Doing so makes the devtools inspector display the nodes in gray, as it is the case in firefox. The relevant node parameter already exists but is hardcoded. Before: <img width="1108" height="408" alt="image" src="https://github.com/user-attachments/assets/4a442fc9-92db-4a97-9e70-3b02f994a9d1" /> After: <img width="1169" height="404" alt="image" src="https://github.com/user-attachments/assets/ec1674a4-c025-4ceb-93c8-0cc3f695ddc7" /> Testing: We don't have tests for the devtools inspector. Signed-off-by: Simon Wülker <simon.wuelker@arcor.de>
This commit is contained in:
parent
c4044e17bb
commit
4d7a0d3863
5 changed files with 16 additions and 15 deletions
|
@ -149,6 +149,10 @@ pub struct NodeInfo {
|
|||
pub shadow_root_mode: Option<ShadowRootMode>,
|
||||
pub is_shadow_host: bool,
|
||||
pub display: Option<String>,
|
||||
/// Whether this node is currently displayed.
|
||||
///
|
||||
/// For example, the node might have `display: none`.
|
||||
pub is_displayed: bool,
|
||||
|
||||
/// The `DOCTYPE` name if this is a `DocumentType` node, `None` otherwise
|
||||
pub doctype_name: Option<String>,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue