Closed
Bug 43442
Opened 24 years ago
Closed 24 years ago
Alert not blocking
Categories
(Core :: JavaScript Engine, defect, P3)
Tracking
()
People
(Reporter: hand, Assigned: rogerl)
Details
For the HTML code below, 10 alerts appear simultaneously rather than in
succession. Move the top alert box to see those underneath. The same can be
said for confirm boxes as well. Applies to build 2000062108.
<HTML>
<BODY>
<script>
var i;
for (i = 0; i < 10; i++) {
alert(i);
}
</script>
</BODY>
</HTML>
Comment 1•24 years ago
|
||
->JS
Assignee: clayton → rogerl
Component: Layout → Javascript Engine
QA Contact: petersen → pschwartau
Comment 2•24 years ago
|
||
This is bug 43390 (a regression from yesterday).
[By the way, Blake, Javascript Engine is for bugs in the implementation of
the language itself; this bug would more appropriately go into Dom Level 0
(just thought I'd let you know for future reference). Thanks].
*** This bug has been marked as a duplicate of 43390 ***
Status: UNCONFIRMED → RESOLVED
Closed: 24 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•