Bug 1707720 - Use saturating addition for math-depth. r=fredw

Differential Revision: https://phabricator.services.mozilla.com/D114070
This commit is contained in:
Emilio Cobos Álvarez 2021-05-03 11:40:26 +00:00
Родитель 0f8b07b880
Коммит 4751e27983
2 изменённых файлов: 12 добавлений и 2 удалений

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

@ -828,14 +828,14 @@ impl ToComputedValue for specified::MathDepth {
let parent = cx.builder.get_parent_font().clone_math_depth() as i32;
let style = cx.builder.get_parent_font().clone_math_style();
if style == MathStyleValue::Compact {
parent + 1
parent.saturating_add(1)
} else {
parent
}
},
specified::MathDepth::Add(rel) => {
let parent = cx.builder.get_parent_font().clone_math_depth();
parent as i32 + rel.to_computed_value(cx)
(parent as i32).saturating_add(rel.to_computed_value(cx))
},
specified::MathDepth::Absolute(abs) => abs.to_computed_value(cx),
};

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

@ -0,0 +1,10 @@
<script>
document.addEventListener('DOMContentLoaded', () => {
let a = document.createElementNS('http://www.w3.org/1998/Math/MathML', 'math')
a.setAttribute('scriptlevel', '127')
let b = document.createElementNS('http://www.w3.org/1998/Math/MathML', 'mstyle')
b.setAttribute('scriptlevel', '+2147483645')
a.appendChild(b)
document.documentElement.appendChild(a)
})
</script>