blob: 23919115f58c9ad562e7a235f143f4fbe1e8df6c [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="../../resources/js-test-pre.js"></script>
<script>
function runTest() {
description('Tests that menclose with notation value as circle is sqrt(2) times the inner width/height.');
clientRect = document.getElementById('mathmenclose1').getBoundingClientRect();
shouldBeTrue("clientRect.width >= 141");
shouldBeTrue("clientRect.height >= 70");
isSuccessfullyParsed();
}
</script>
</head>
<body onload="runTest()">
<p>
<math>
<menclose notation="circle" id="mathmenclose1"><mspace width="100px" height="50px" mathbackground="red"/></menclose>
</math>
</p>
</body>
</html>