Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /mathml/presentation-markup/operators/stretchy-largeop-with-default-font-1.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<title>Stretchy/Largeop with default fonts</title>
<meta charset="utf-8"/>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script type="text/javascript">
function heightOf(aElement) {
return document.getElementById(aElement).getBoundingClientRect().height;
}
promise_test(() => {
return new Promise(resolve => {
window.addEventListener("load", resolve);
}).then(() => {
assert_greater_than(heightOf("mo0"), heightOf("mo0a"));
assert_greater_than(heightOf("mo1"), heightOf("mo1a"));
assert_greater_than(heightOf("mo2"), heightOf("mo2a"));
assert_greater_than(heightOf("mo3"), heightOf("mo3a"));
});
}, "The size of displaystyle largeops is taken into account when stretching fences.");
</script>
</head>
<body>
<p>
<math displaystyle="true">
<mrow>
<mo id="mo0">(</mo>
<mo>∫</mo>
<mo id="mo1">)</mo>
<mrow>
</math>
</p>
<p>
<math>
<mrow>
<mo id="mo0a">(</mo>
<mo>∫</mo>
<mo id="mo1a">)</mo>
<mrow>
</math>
</p>
<p>
<math displaystyle="true">
<mrow>
<mo id="mo2">(</mo>
<mo>∏</mo>
<mo id="mo3">)</mo>
<mrow>
</math>
</p>
<p>
<math>
<mrow>
<mo id="mo2a">(</mo>
<mo>∏</mo>
<mo id="mo3a">)</mo>
<mrow>
</math>
</p>
</body>
</html>