mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-05 17:05:38 +00:00
22 lines
558 B
HTML
22 lines
558 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<title>mfrac linethickness</title>
|
|
<script type="text/javascript">
|
|
function doTest() {
|
|
document.getElementById("testMfrac").setAttribute("linethickness","thick");
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
window.addEventListener("MozReftestInvalidate",doTest, false);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<math>
|
|
<mfrac id="testMfrac" style="font-size: 300%">
|
|
<mi> a </mi>
|
|
<mi> b </mi>
|
|
</mfrac>
|
|
</math>
|
|
</body>
|
|
</html>
|