Closed
Bug 118931
Opened 23 years ago
Closed 23 years ago
locks up when trying to view web site
Categories
(Core :: Layout, defect, P1)
Tracking
()
VERIFIED
FIXED
mozilla1.1alpha
People
(Reporter: sammy, Assigned: attinasi)
References
()
Details
(4 keywords, Whiteboard: [Need Info])
Attachments
(2 files)
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.7) Gecko/20011221
BuildID: 2001122108
mozilla locks up. can be killed though
Reproducible: Always
Steps to Reproduce:
1.browse to www.novaxess.net
2.
3.
Actual Results: locks up
locks up
Comment 1•23 years ago
|
||
Build ID: 2002 01 07 03. Windows 2000.
This URL causes my Mozilla to hang too, sucking 100% CPU.
OS => All ?
Possibly related to javascript? If I turn off Javascript in the preferences the
page loads without stucking - but the java-script menu on the right side of the
page doesn't appear...
Reporter | ||
Comment 4•23 years ago
|
||
turning off javascript does not help. Managed to view website only once though.
mozilla displayed the site, then locked up. unable to reproduce...
OS: Linux → All
Comment 5•23 years ago
|
||
Also freezes with 0.9.7 in Linux.
Comment 6•23 years ago
|
||
Confirmed. (BuildID: 2002 01 08 03/Win98).
Reason of the bug is that the javascript is changing the style of a <DIV>.
Here's the testcase to have the prob:
<BODY>
<DIV id=container style="POSITION: absolute;"></DIV>
<SCRIPT language=Javascript>
document.getElementById('container').style.position='relative';
</SCRIPT>
Comment 7•23 years ago
|
||
Comment 8•23 years ago
|
||
-> Layout and confirming
Assignee: asa → attinasi
Status: UNCONFIRMED → NEW
Component: Browser-General → Layout
Ever confirmed: true
QA Contact: doronr → petersen
Comment 9•23 years ago
|
||
Mozilla looping here :
nsBlockFrame::DoRemoveFrame(nsIPresContext * 0x0400f4d8, nsIFrame * 0x041573a8)
line 4921
--------------------------------------------------------------------------
line
4921->4922->5035->5046->nsLineList_iterator::operator!=(nsLineList_iterator
{...}) line 617
Comment 10•23 years ago
|
||
I think changing style.position causes freeze or crash in Mozilla
0.9.7 and later.
The source below crashes Mozilla 2002011703/Win NT, 2002011614/Mac.
Talkback ID is TB1796037Y.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html lang="en">
<head>
<title>Crash</title>
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<script type="text/javascript">
<!--
function init() {
if (document.getElementById) {
document.getElementById("test").style.position = "absolute";
}
}
// -->
</script>
</head>
<body onLoad="init()">
<h1>Crash</h1>
<div>
<span id="test" style="position:relative">Test</span>
</div>
</body>
</html>
Updated•23 years ago
|
Target Milestone: --- → mozilla1.0
Comment 11•23 years ago
|
||
Crashes using 2002020512 build on WINXP.
Marking nsbeta1+
Comment 12•23 years ago
|
||
Related to Bug 56894 ?
Comment 14•23 years ago
|
||
Testcase works in N6.2.1. Crashes in the OS X Feb 11th build (2002-02-11-08).
Keywords: testcase
Comment 15•23 years ago
|
||
can we see if any top sites are using this tool?
removing "+" per ADT-Layout triage. pls let us know if this is a widely used tool
Comment 16•23 years ago
|
||
Bulk moving all nsbeta1 nominations to Moz1.1. If the nomination is approved it
will be marked nsbeta1+ and moved to the Mozilla1.0 milestone.
Target Milestone: mozilla1.0 → mozilla1.1
Assignee | ||
Comment 17•23 years ago
|
||
My patch for bug 118415 fixes this (changing position property on elements that
are abs pos was failing to remove the placeholder frame!)
Comment 18•23 years ago
|
||
Marking nsbeta1+. Marc has a fix
Assignee | ||
Comment 19•23 years ago
|
||
Fixed by patch for bug 118415
Status: NEW → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
Comment 20•23 years ago
|
||
Marking verified in the April 23rd OS X trunk build (2002-04-23-08) and Windows
ME (2002-04-23-06).
Status: RESOLVED → VERIFIED
Comment 21•16 years ago
|
||
Crashtest added as part of http://hg.mozilla.org/mozilla-central/rev/54417ebbaea2
Flags: in-testsuite+
You need to log in
before you can comment on or make changes to this bug.
Description
•