Open
Bug 1932312
Opened 15 days ago
Updated 2 days ago
overridden declaration in :scope is not marked as overridden in the rules view
Categories
(DevTools :: Inspector: Rules, defect, P2)
DevTools
Inspector: Rules
Tracking
(Not tracked)
NEW
People
(Reporter: nchevobbe, Unassigned)
References
(Depends on 1 open bug, Blocks 1 open bug)
Details
- Navigate to
data:text/html, <div><style>@scope {:scope {color: red;color: green}}</style>Hello</div>
- Inspect the "Hello" element
Expected result: color: red
declaration is marked as overridden
Actual result: color: red
declaration is not marked as overridden
Reporter | ||
Comment 1•15 days ago
|
||
What's funny is that, with STR from comment 0, if you then resize the page, the declaration get marked as overridden
This does not happen with separate rules, where we do face the same issue:
@scope {
:scope {
color: red;
}
:scope {
color: green
}
}
Updated•8 days ago
|
Severity: -- → S3
Priority: -- → P2
You need to log in
before you can comment on or make changes to this bug.
Description
•