Bug 1180643 - Fix the SetY() method on LogicalPoint to update the correct field. r=smontagu

This commit is contained in:
Jonathan Kew 2015-07-07 14:20:09 +01:00
parent 0d43f2a7cc
commit 1316bd356f

View File

@ -720,9 +720,9 @@ public:
{
CHECK_WRITING_MODE(aWritingMode);
if (aWritingMode.IsVertical()) {
B() = aY;
} else {
I() = aY;
} else {
B() = aY;
}
}