5 <script src=
"../../resources/js-test.js"></script>
12 font-family: arial, serif;
21 The following lines should
<b>not
</b> be rendered with the same
24 <span id=
"test">اختبار النص مائل
</span><br>
25 <span id=
"reference">اختبار النص مائل
</span><br>
27 var testRect
= document
.getElementById('test').
28 getBoundingClientRect();
29 var referenceRect
= document
.getElementById('reference').
30 getBoundingClientRect();
31 var matches
= testRect
.left
== referenceRect
.left
&&
32 testRect
.right
== referenceRect
.right
&&
33 testRect
.height
== referenceRect
.height
;
36 testFailed('The two lines should not match.');
38 testPassed('The two lines does not match, as expected.');