mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
No Issue - Fix a typo in DOMSVGPoint constructor.
Bug 1442972 DOMSVGPoint constructor checked mX is finite twice, leaving out mY finite. -- Stupidly rushed. Shambles.
This commit is contained in:
parent
9847e9f759
commit
a8f9e383fa
1 changed files with 1 additions and 1 deletions
|
|
@ -81,7 +81,7 @@ public:
|
|||
{
|
||||
mPt.mX = aPt.x;
|
||||
mPt.mY = aPt.y;
|
||||
NS_ASSERTION(IsFinite(mPt.mX) && IsFinite(mPt.mX),
|
||||
NS_ASSERTION(IsFinite(mPt.mX) && IsFinite(mPt.mY),
|
||||
"DOMSVGPoint coords are not finite");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue