Closed
Bug 496742
Opened 15 years ago
Closed 15 years ago
Crash [@ nsHTMLReflowState::GetHypotheticalBoxContainer] with position: fixed, float right
Categories
(Core :: Layout, defect, P2)
Tracking
()
RESOLVED
FIXED
Tracking | Status | |
---|---|---|
status1.9.2 | --- | beta1-fixed |
People
(Reporter: martijn.martijn, Assigned: martijn.martijn)
References
Details
(Keywords: crash, regression, testcase)
Crash Data
Attachments
(1 file)
1.99 KB,
text/html
|
Details |
See testcase, which normally crashes current trunk build within 1 second.
It doesn't crash in a 2009-05-05 build, but it does crash in a 2009-05-07 build:
http://hg.mozilla.org/mozilla-central/pushloghtml?startdate=2009-05-05+05%3A00%3A00&enddate=2009-05-07+07%3A00%3A00
My guess is a regression from bug 67752.
http://crash-stats.mozilla.com/report/index/8076b748-441d-46fa-8a76-831112090606?p=1
0 xul.dll nsHTMLReflowState::GetHypotheticalBoxContainer layout/generic/nsHTMLReflowState.cpp:717
1 xul.dll nsHTMLReflowState::InitAbsoluteConstraints layout/generic/nsHTMLReflowState.cpp:1164
2 xul.dll nsHTMLReflowState::InitConstraints layout/generic/nsHTMLReflowState.cpp:1819
3 xul.dll nsHTMLReflowState::Init layout/generic/nsHTMLReflowState.cpp:279
4 xul.dll nsHTMLReflowState::nsHTMLReflowState layout/generic/nsHTMLReflowState.cpp:174
5 xul.dll nsAbsoluteContainingBlock::ReflowAbsoluteFrame layout/generic/nsAbsoluteContainingBlock.cpp:449
6 xul.dll nsAbsoluteContainingBlock::Reflow layout/generic/nsAbsoluteContainingBlock.cpp:157
7 xul.dll ViewportFrame::Reflow layout/generic/nsViewportFrame.cpp:317
8 xul.dll PresShell::DoReflow layout/base/nsPresShell.cpp:7097
9 xul.dll PresShell::ProcessReflowCommands layout/base/nsPresShell.cpp:7227
10 xul.dll PresShell::FlushPendingNotifications layout/base/nsPresShell.cpp:4898
11 nspr4.dll PR_Lock nsprpub/pr/src/threads/combined/prulock.c:233
12 xul.dll nsThread::ProcessNextEvent xpcom/threads/nsThread.cpp:510
13 xul.dll nsBaseAppShell::Run widget/src/xpwidgets/nsBaseAppShell.cpp:170
14 xul.dll nsAppStartup::Run toolkit/components/startup/src/nsAppStartup.cpp:193
15 nspr4.dll PR_GetEnv
16 firefox.exe wmain toolkit/xre/nsWindowsWMain.cpp:110
17 firefox.exe firefox.exe@0x21a7
18 kernel32.dll kernel32.dll@0x17076
The content of the iframe is this:
<span>
m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m
m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m
m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m
m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m m
<span style="position: fixed; float: right;"></span>
</span>
<script>
function toggleIframe(){
var x=window.frameElement;
x.style.display = x.style.display == 'none' ? x.style.display = '' : x.style.display = 'none';
setTimeout(toggleIframe,100);
}
setTimeout(toggleIframe,100);
</script>
Updated•15 years ago
|
Flags: blocking1.9.2?
Comment 2•15 years ago
|
||
Should be fixed by checkin for bug 505482. Not sure how to write a sane test for this. :(
Status: NEW → RESOLVED
Closed: 15 years ago
Flags: in-testsuite?
Resolution: --- → FIXED
Flags: blocking1.9.2? → blocking1.9.2+
Priority: -- → P2
Comment 3•15 years ago
|
||
Mass change: adding fixed1.9.2 keyword
(This bug was identified as a mozilla1.9.2 blocker which was fixed before the mozilla-1.9.2 repository was branched (August 13th, 2009) as per this query: http://is.gd/2ydcb - if this bug is not actually fixed on mozilla1.9.2, please remove the keyword. Apologies for the bugspam)
Keywords: fixed1.9.2
Updated•15 years ago
|
status1.9.2:
--- → beta1-fixed
Keywords: fixed1.9.2
Updated•13 years ago
|
Crash Signature: [@ nsHTMLReflowState::GetHypotheticalBoxContainer]
Comment 4•12 years ago
|
||
Flags: in-testsuite? → in-testsuite+
Comment 5•12 years ago
|
||
Assignee: nobody → martijn.martijn
You need to log in
before you can comment on or make changes to this bug.
Description
•