Closed
Bug 864781
Opened 12 years ago
Closed 9 years ago
Firefox renders a jQuery Animation incorrectly.
Categories
(Core :: Layout, defect)
Tracking
()
RESOLVED
WORKSFORME
| Tracking | Status | |
|---|---|---|
| platform-rel | --- | - |
People
(Reporter: Pathogenix, Unassigned)
References
Details
(Keywords: regression, Whiteboard: [platform-rel-jQuery])
Attachments
(1 file, 2 obsolete files)
|
873 bytes,
text/html
|
Details |
User Agent: Mozilla/5.0 (Windows NT 6.2; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0
Build ID: 20130416200523
Steps to reproduce:
CSS:
div.Arrow{
color: rgb(20,20,20);
opacity: 0.35;
cursor: pointer;
width: 75px;
height: 200px;
position: fixed;
right: 275px;
bottom: 15px;
text-align:center;
background: url('/Pages/Images/Arrow.png') no-repeat bottom;
background-size: contain;
}
jQuery Code:
$(".Arrow").mouseenter(function () {
$(this).stop().animate({
bottom: 30 + 'px',
right: '275px',
}, 125, 'easeInOutQuart', function () {
$(this).stop().animate({
bottom: 15 + 'px',
right: '275px',
}, 125, 'easeInOutQuart');
});
})
Actual results:
The arrow moves very dis-functionally to the right.
Expected results:
The arrow should only move vertically.
| Reporter | ||
Comment 2•12 years ago
|
||
(In reply to mjh563 from comment #1)
> Could you attach (or link to) a complete test case?
http://www.nlpromotions.co/
This is my site that is currently in development that has the problem.
Mouse over the arrow on the bottom right hand corner of the screen.
This is a reduced testcase based on the reporter's page.
Move the mouse in and out of the red block. The block should only move up and down, not sideways.
Attachment #741263 -
Attachment mime type: text/plain → text/html
The regression range is
Last good nightly: 2012-06-06
First bad nightly: 2012-06-07
Pushlog:
http://hg.mozilla.org/mozilla-central/pushloghtml?fromchange=6338a8988917&tochange=7e4c2abb9fc9
Attachment #741263 -
Attachment is obsolete: true
Attachment #741273 -
Attachment mime type: text/plain → text/html
Comment 6•12 years ago
|
||
Status: UNCONFIRMED → NEW
Component: Untriaged → Layout
Ever confirmed: true
Keywords: regression
Product: Firefox → Core
Updated•9 years ago
|
Whiteboard: [platform-rel-jQuery]
Updated•9 years ago
|
platform-rel: --- → ?
Comment 7•9 years ago
|
||
(updated TC to point to https jQuery CDN)
Attachment #741273 -
Attachment is obsolete: true
Comment 8•9 years ago
|
||
This seems fixed now.
Status: NEW → RESOLVED
Closed: 9 years ago
platform-rel: ? → -
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•