Translucent parent highlighter overlays subgrid highlighter
Categories
(DevTools :: Inspector, defect, P2)
Tracking
(firefox70 fixed)
Tracking | Status | |
---|---|---|
firefox70 | --- | fixed |
People
(Reporter: mbalfanz, Assigned: daisuke)
References
(Blocks 1 open bug)
Details
(Whiteboard: [dt-q])
Attachments
(5 files)
With a combination of clicks users can end up in a situation where the translucent parent highlighter overlays the subgrid highlighter, resulting in blurry/unreadable line numbers.
STR:
- visit https://codepen.io/martinbalfanz/pen/qepygL
- toggle the parent highlighter
div.wrapper
on - toggle the subgrid highlighter
div.box.d
on - toggle the parent highlighter off
AR: the parent highlighter overlays the subgrid highlighter
ER: stacking order of highlighters should follow the nesting of the grids, with the deepest nested grid being the most visible / highest in stack / on top of the rest etc.
Updated•5 years ago
|
Assignee | ||
Updated•5 years ago
|
Assignee | ||
Comment 1•5 years ago
|
||
DevTools is using AnonymousContent to highlight the element inspecting.
And now, the z-order of highlighting became to be importance. In case of normal
element, we can change the z-order by z-index or order of DOM. However,
AnonymousContent does not have the such the way to change the z-order from
DevTools side. This patch introduces an API to change the style, and makes the
z-order changeable by the z-index.
Assignee | ||
Comment 2•5 years ago
|
||
In this patch, creates a test to confirm whether the AnonymousContent.setStyle()
works correctly.
Depends on D41927
Assignee | ||
Comment 3•5 years ago
|
||
Depends on D41928
Assignee | ||
Comment 4•5 years ago
|
||
Depends on D41929
Updated•5 years ago
|
Updated•5 years ago
|
Updated•5 years ago
|
Updated•5 years ago
|
Comment 6•5 years ago
|
||
Backed out 4 changesets (bug 1571650) for AddressSanitizer failures
push that caused the backout: https://treeherder.mozilla.org/#/jobs?repo=autoland&group_state=expanded&selectedJob=261609060&resultStatus=testfailed%2Cbusted%2Cexception%2Cretry%2Cusercancel%2Crunnable&revision=9c93a75bc692dd3efeec21f153e90237c50c4c16
Assignee | ||
Comment 8•5 years ago
|
||
try: https://treeherder.mozilla.org/#/jobs?repo=try&revision=cb63ca81f98acda6ec08b3e540ce9bf266bf3afc
Comment 10•5 years ago
|
||
bugherder |
https://hg.mozilla.org/mozilla-central/rev/b08200f6ba53
https://hg.mozilla.org/mozilla-central/rev/733f88623b48
https://hg.mozilla.org/mozilla-central/rev/471f4f25da30
https://hg.mozilla.org/mozilla-central/rev/71ef696dafdc
Description
•