Closed
Bug 495446
Opened 16 years ago
Closed 10 years ago
Hang with endless memory eating with audio, domattributemodified and input
Categories
(Core :: Audio/Video: Playback, defect)
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: martijn.martijn, Unassigned)
References
Details
(Keywords: hang, testcase)
Attachments
(1 file)
|
536 bytes,
text/html
|
Details |
See testcase, when opening that testcase, Mozilla hangs and is eating a lot of memory very quickly, and it seems to eat memory indefinitely, potentially making your computer unusable.
The iframe content consists of this:
<code>
<input type="text">
<body id="a">
<audio style="display: block;"></audio>
<script>window.addEventListener('DOMAttrModified', function() {window.frameElement.parentNode.removeChild(window.frameElement);}, true);</script>
<div>
Comment 1•16 years ago
|
||
The strange DOMAttrModified event is dispatched when the binding
sets tabindex (Bug 486899). That is one bug, the other one is the loop the
event handler causes.
Blocks: 486899
Comment 2•16 years ago
|
||
(In reply to comment #1)
> the other one is the loop the event handler causes.
... this is something I haven't debugged yet.
Comment 3•16 years ago
|
||
(In reply to comment #1)
> The strange DOMAttrModified event is dispatched when the binding
> sets tabindex (Bug 486899).
Note that I think this this needs to be changed anyway, see point #1 in bug 494175 comment 23.
Updated•10 years ago
|
Component: Audio/Video → Audio/Video: Playback
Comment 4•10 years ago
|
||
Testcase doesn't cause a hang. Is this still an issue?
| Reporter | ||
Comment 5•10 years ago
|
||
Let's close it then.
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•