Open
Bug 1096240
Opened 10 years ago
Updated 2 years ago
Developer Tools: Chaining of SASS Source Maps
Categories
(DevTools :: Style Editor, defect, P3)
Tracking
(Not tracked)
NEW
People
(Reporter: lists, Unassigned)
References
(Blocks 1 open bug)
Details
Chained source maps aren't resolved, e.g.:
default.css.map
{
"file": "default.css",
"sources": ["header.scss", "footer.scss", "nav.scss"],
"names": [],
"version": 3,
"mappings": "…",
}
page.css.map
{
"file": "page.css",
"sources": ["default.css", "content.scss"],
"names": [],
"version": 3,
"mappings": "…",
}
If I inspect a header element, I would expect the debugger to show me the CSS and line number of header.scss (like the developer tool in Chrome does), instead I get a line number of default.css.
Reporter | ||
Updated•10 years ago
|
Version: unspecified → 33 Branch
Reporter | ||
Comment 1•10 years ago
|
||
Oh, never mind the colon after "mappings", of course it isn't there in the original code.
Reporter | ||
Comment 2•10 years ago
|
||
comma, not colon. Sorry.
Updated•10 years ago
|
Status: UNCONFIRMED → NEW
Component: Developer Tools: Debugger → Developer Tools: Style Editor
Ever confirmed: true
Updated•8 years ago
|
Blocks: source-maps
Updated•7 years ago
|
Product: Firefox → DevTools
Updated•2 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•