Closed
Bug 69182
Opened 24 years ago
Closed 24 years ago
"Curtain call" DHTML does not work in Mozilla 0.8 .
Categories
(Core :: DOM: CSS Object Model, defect)
Core
DOM: CSS Object Model
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: ronbu, Assigned: ronbu)
References
()
Details
(Keywords: dom1, Whiteboard: WORKSFORME?)
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; 0.8) Gecko/20010215
BuildID: 2001021508
When mousing over a link at this URL which reads "Curtain (some number)" a
colored box is supposed to appear with a message in Latin. But, it doesn't
appear in Mozilla 0.8 .
Reproducible: Always
Steps to Reproduce:
1. go to: http://www.projectseven.com/curtaincall.htm
2. mouse over a "Curtain" link.
Actual Results: The link turned white and the underline disappeared.
Expected Results: In addition to the link turning white and the disappearance
of the underline, a colored box should appear with a message in Latin.
This DHTML demonstration works in IE 5.5 and Opera 5 .
Comment 1•24 years ago
|
||
One problem:
onMouseOver event -> popup at mouse position -> onMouseOut event is fired ->
popup immediatly closed
Not sure if that is a bug.
Comment 2•24 years ago
|
||
I don't know either, this does work in IE tho, so over to the event guru.
Assignee: jst → joki
![]() |
||
Comment 3•24 years ago
|
||
The script in question is repeatedly resetting the clip style rule on a div to
create a "curtain" effect:
function curtainDown () {
<!-- Use wt to set speed of down animation higher numbers=faster animation -->
wt += 30;
dom.style.clip = 'rect(auto auto ' + wt + ' auto)';
if (wt < h)
ver = setTimeout('curtainDown()', 20);
}
It looks like we are not properly redrawing things when the value of clip
changes; if I change what the initial value of wt is (the default is 0), I get
different amounts of the div shown.
OS: Windows 98 → All
Comment 4•24 years ago
|
||
Confirmed
Platform: PC
OS: Windows 98
Mozilla Build: 2001022007
Marking NEW.
Status: UNCONFIRMED → NEW
Ever confirmed: true
Hardware: PC → All
Updated•24 years ago
|
Component: DOM Level 1 → DOM Style
Comment 5•24 years ago
|
||
Taking QA Contact on all open or unverified DOM Style bugs...
QA Contact: janc → ian
Ian, would you confirm that this is a code bug? Are you happy that the script
should work as intended?
Keywords: qawanted
Updated•24 years ago
|
Whiteboard: (py8ieh: need smaller test case)
Comment 8•24 years ago
|
||
The URI is now 404 compliant (doh).
However, the testcase I made based on the comments works fine:
http://hixie.ch/tests/adhoc/dom/css/animation/001.xml
Ronald, could you investigate further if you still have access to the page?
Assignee | ||
Comment 10•24 years ago
|
||
I still am unable to access the original curtain call page. The box in
http://hixie.ch/tests/adhoc/dom/css/animation/001.xml
would not expand or contract on Mozilla 0.9 for 32 bit Windows.
Comment 11•24 years ago
|
||
I guess this is indeed a magically fixed bug now then?
![]() |
||
Comment 12•24 years ago
|
||
Ian, that testcase is broken. It sets clip(a b c d) with b < d.
I'm resolving this worksforme; I've played with stuff similar to Ian's testcase
and it all works. Ronald, if you can get access to the original page and it
still has the problem, please reopen.
Status: NEW → RESOLVED
Closed: 24 years ago
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•