fix 23723 rounding error (#33473)

This commit is contained in:
chunhtai 2019-05-30 11:59:07 -07:00 committed by GitHub
parent c7c0965cc5
commit 170309d6fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -879,7 +879,7 @@ class RenderTable extends RenderBox {
}
}
}
assert(tableWidth >= targetWidth);
assert(tableWidth + precisionErrorTolerance >= targetWidth);
}
} // step 2 and 3 are mutually exclusive