Bug 1294015 - Identical code for different branches in nsCSSRenderingBorders.cpp r=arai

MozReview-Commit-ID: DNwiCkUhWt6

--HG--
extra : rebase_source : b5bd7dcc59e7b57fc90e4c8557f6bcfd6382e433
This commit is contained in:
Sylvestre Ledru 2016-08-10 14:46:25 +02:00
Родитель 7fb9314ebd
Коммит 9b809e028f
1 изменённых файлов: 2 добавлений и 7 удалений

Просмотреть файл

@ -767,13 +767,8 @@ nsCSSBorderRenderer::GetStraightBorderPoint(mozilla::css::Side aSide,
// +-------------------------+----
// | |
// | |
if (isHorizontal) {
P.x += signs[0] * borderWidth / 2.0f;
P.y += signs[1] * borderWidth / 2.0f;
} else {
P.x += signs[0] * borderWidth / 2.0f;
P.y += signs[1] * borderWidth / 2.0f;
}
P.x += signs[0] * borderWidth / 2.0f;
P.y += signs[1] * borderWidth / 2.0f;
} else {
// Two dots are drawn separately.
//