Closed
Bug 105956
Opened 24 years ago
Closed 23 years ago
Product demo window won't close / can't be closed
Categories
(SeaMonkey :: UI Design, defect)
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 132723
mozilla1.0.1
People
(Reporter: bugzilla, Assigned: danm.moz)
References
()
Details
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.5) Gecko/20011011
BuildID: 2001101117
When I go to the listed page, and "Click the icon for more detail and a 360°
view", I cannot close the "Casio Product Demo" window that opens. I have tried
both the close box in upper right corner, and close from the system menu in the
upper left corner. It seems like after I select to close, the window stops being
redrawn, but hangs around. In other words, if I drag it around or cover it up
and re-expose it, the contents are not redrawn, and become garbled.
Situations that seem more likely to trigger it:
It may be more likely to happen the first time it is tried after starting the
browser than otherwise. It may require playing around with the rotation and
detail views first to trigger.
Reproducible: Sometimes
Steps to Reproduce:
1. Open http://www.casio.com/watches/product.cfm?section=16&market=0&product=3682
2. Click the icon for more detail and a 360° view
3. Look at both the spin and detail view, maybe play around with it a bit.
4. Click the close box.
Actual Results: The window remained open. The window contents were no longer
being redrawn.
Expected Results: Closed the window.
Comment 1•24 years ago
|
||
Seeing it too on 2001101909/Win2k. Confirming
Note: The windows does go away once you close the window which spawned it.
Status: UNCONFIRMED → NEW
Ever confirmed: true
Comment 2•24 years ago
|
||
This boils down to the following two files:
-- page.html --
<html>
<body>
<form>
<input
type=button
value='click me'
onClick="
window.open('popup.html',
'newwindow',
'height=325,width=400,dependent=1,directories=0,' +
'location=0,menubar=0,resizable=0,scrollbars=0,toolbar=0');
"
>
</form>
</body>
</html>
-- popup.html --
<html>
<body onBlur="self.focus()">
hi there
</body>
</html>
--
Note that the window.open specs 'dependent=1' and the popup window does
'onblur="self.focus()"'. Fun and games ensue...
testcase at http://jrgm/bugs/105956/page.html
Updated•24 years ago
|
QA Contact: sairuh → jrgm
Danm (the manm) says that this looks like one of his bugs. Well, I'm certainly
not one to come between a man and his bugs. ;-)
->danm
Assignee: pchen → danm
*** This bug has been marked as a duplicate of 132723 ***
Status: NEW → RESOLVED
Closed: 23 years ago
Resolution: --- → DUPLICATE
Updated•21 years ago
|
Product: Core → Mozilla Application Suite
You need to log in
before you can comment on or make changes to this bug.
Description
•