Bug 1474774 - Remove nscoord assertion that produce false positives. r=dholbert

Differential Revision: https://phabricator.services.mozilla.com/D114633
This commit is contained in:
Mats Palmgren 2021-05-23 01:04:18 +00:00
Родитель 4275e4bd2b
Коммит 0c2b4a6155
2 изменённых файлов: 14 добавлений и 1 удалений

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

@ -196,7 +196,6 @@ inline nscoord NSCoordSaturatingSubtract(nscoord a, nscoord b,
return infMinusInfResult; return infMinusInfResult;
} else { } else {
// case (b) // case (b)
MOZ_ASSERT_UNREACHABLE("Attempted to subtract [n - nscoord_MAX]");
return 0; return 0;
} }
} else { } else {

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

@ -0,0 +1,14 @@
<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-property">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1474774">
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
<style>
:last-of-type {
word-spacing:15946245.3ch;
border-right-style:solid;
}
</style>
<button formaction=''>
<small>
AAAAAAAA
</html>