Closed
Bug 738941
Opened 10 years ago
Closed 10 years ago
Very weird JS multiplying bug
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 716119
People
(Reporter: jachym.tousek, Unassigned)
Details
Attachments
(1 file)
113.06 KB,
application/octet-stream
|
Details |
User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:11.0) Gecko/20100101 Firefox/11.0 Build ID: 20120312181643 Steps to reproduce: Go to the page http://demo.m33.cz/ (It's the same as the attached zip archive contents). There is demo of my project. In firefox it generates an alert with "BUG!" message after few seconds. In any other browser it does not. On the page there is this code: //application.js, line 112 function signum(n) { return n > 0 ? 1 : n < 0 ? -1 : 0; } //... //application.js, line 149 var tmx = mx; var tmy = my; mx *= signum(dx) * signum(m); my *= signum(dy) * signum(m); if (signum(dy) === -1 && signum(m) === -1 && my != tmy ) { alert('BUG!'); } Actual results: If you look at the condition, when both signum(dy) and signum(m) are -1 then "tmy" should be identical to "my". Yet it is not. For some reason "my" is "- tmy". Expected results: Well x * (-1) * (-1) should be x, not -x.
![]() |
||
Comment 1•10 years ago
|
||
It seems to be fixed by Bug 716119
Assignee: nobody → general
Component: Untriaged → JavaScript Engine
Product: Firefox → Core
QA Contact: untriaged → general
Reporter | ||
Comment 2•10 years ago
|
||
Seems that way. Firefox 12 beta works fine.
Status: UNCONFIRMED → RESOLVED
Closed: 10 years ago
Resolution: --- → DUPLICATE
Duplicate of bug: 716119
Updated•10 years ago
|
Summary: Very wierd JS multiplying bug → Very weird JS multiplying bug
You need to log in
before you can comment on or make changes to this bug.
Description
•