Closed
Bug 952338
Opened 11 years ago
Closed 10 years ago
crash in nsIDocument::InnerWindowID()
Categories
(Core :: CSS Parsing and Computation, defect)
Core
CSS Parsing and Computation
Tracking
()
RESOLVED
FIXED
People
(Reporter: alex_mayorga, Assigned: heycam)
References
()
Details
(Keywords: crash, reproducible)
Crash Data
Attachments
(1 file)
1.09 KB,
patch
|
Details | Diff | Splinter Review |
This bug was filed from the Socorro interface and is
report bp-c0ba85b6-856e-4c89-a1b4-a95062131220.
=============================================================
Instant crash loading http://www.aubert.com/AUBERT-VELIZY.html as reported on http://forums.mozillazine.org/viewtopic.php?p=13261889#p13261889
Comment 1•11 years ago
|
||
Crashes on Windows 8.1 x64.
Mozilla/5.0 (Windows NT 6.3; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0
Comment 3•11 years ago
|
||
STR
1. Open http://www.aubert.com/AUBERT-VELIZY.html
2. Click Reload button and repeat Step2 if necessary
bp-96a699d6-f0bb-4ead-aee2-29ae42131220
bp-e731d750-52e4-4758-8b97-627a32131220
bp-f6b1bee9-9c9a-4677-b334-3c41c2131220
bp-11488959-fd41-4809-a438-662e52131220
bp-db04da20-b7bb-4aaf-aad3-06b7a2131220
bp-db04da20-b7bb-4aaf-aad3-06b7a2131220
bp-3950b506-c955-447f-84ca-f3bfd2131220
Regression window(m-c)
Good:
http://hg.mozilla.org/mozilla-central/rev/1ad9af3a2ab8
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0 ID:20131211190246
Bad:
http://hg.mozilla.org/mozilla-central/rev/d15ed5648a5f
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0 ID:20131212035347
Pushlog:
http://hg.mozilla.org/mozilla-central/pushloghtml?fromchange=1ad9af3a2ab8&tochange=d15ed5648a5f
Regression window(m-i)
Good:
http://hg.mozilla.org/integration/mozilla-inbound/rev/8344fa6ecea6
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0 ID:20131211180953
Bad:
http://hg.mozilla.org/integration/mozilla-inbound/rev/1390f263b8ce
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0 ID:20131211181145
Pushlog:
http://hg.mozilla.org/integration/mozilla-inbound/pushloghtml?fromchange=8344fa6ecea6&tochange=1390f263b8ce
Regressed by: Bug 773296
FYI,
layout.css.variables.enabled = does not help...
Blocks: 773296
Crash Signature: [@ nsIDocument::InnerWindowID()] → [@ nsIDocument::InnerWindowID()]
[@ mozilla::css::Rule::GetStyleSheet()]
[@ nsINode::OwnerDoc()]
tracking-firefox29:
--- → ?
Component: Untriaged → DOM
Keywords: reproducible
Product: Firefox → Core
Assignee | ||
Comment 4•11 years ago
|
||
I'm surprised turning off the pref doesn't work, since we're crashing while resolving a property with a variable reference.
The mSheet that the nsCSSValueTokenStream has a raw pointer to has bad data in it. I wonder if we should be keeping a strong reference to the sheet in the nsCSSValueTokenStream, in case it goes away. (Although I'm not really sure when the sheet would go away while we still have the nsCSSValueTokenStream around to use.)
Assignee | ||
Updated•11 years ago
|
Assignee: nobody → cam
Status: NEW → ASSIGNED
Component: DOM → CSS Parsing and Computation
OS: Windows NT → All
Hardware: x86 → All
Assignee | ||
Comment 5•11 years ago
|
||
Just making nsCSSValueTokenStream::mSheet an nsRefPtr avoids the crash but causes a leak. The sheet references rules, and style rules have a Declaration, and the Declaration is where the nsCSSValue that has an nsCSSValueTokenStream in it is stored. I guess the straightforward thing to do would be, inside nsCSSStyleSheet::UnlinkInner, to go through all the Declarations and clear out any references to the sheet that are still in the nsCSSValueTokenStreams. But this seems to be a lot of work. Do you have any better suggestions David?
Flags: needinfo?(dbaron)
Comment 6•11 years ago
|
||
How frequently would our users run into this? Just trying to gauge how big of an impact this will have on our users.
Flags: needinfo?(cam)
Comment 7•11 years ago
|
||
The error occurred for me (twice) when I maximized the window on the site.
bp-97f306bd-126a-4eee-be28-e9a392131220 12/20/2013 04:29 AM
bp-dc282313-240b-42d5-bb62-59c5a2131220 12/20/2013 04:24 AM
Assignee | ||
Comment 8•11 years ago
|
||
Flags: needinfo?(cam)
Assignee | ||
Comment 9•11 years ago
|
||
Until I get some time to look into this properly, let's not pass the sheet in to the CSS parser when we resolve a property's variable-containing value. That will result in any error messages not going to the Web Console, but will avoid the crash.
Assignee | ||
Comment 10•11 years ago
|
||
Whiteboard: [leave open]
Comment 11•11 years ago
|
||
Assignee | ||
Comment 12•11 years ago
|
||
With the crash fix landed, I think we don't need to track for Firefox 29. (The absence of a full solution just means that CSS parsing errors when resolving variables might not be shown in the error console.)
Comment 13•11 years ago
|
||
Based on Comment 12 were not going to track this at this time.
Thanks,
status-firefox29:
--- → fixed
Assignee | ||
Comment 15•10 years ago
|
||
OK, let's close this as the crash is resolved, and work on the solution to restoring mSheet in a followup, bug 1170078.
Status: ASSIGNED → RESOLVED
Closed: 10 years ago
Flags: needinfo?(dbaron)
Flags: needinfo?(cam)
Resolution: --- → FIXED
Whiteboard: [leave open]
You need to log in
before you can comment on or make changes to this bug.
Description
•