blob: 5543ab07294c5f0da73a2473cb093c0907bed3a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Text level 3 Test ref</title>
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/">
<style>
@font-face {
font-family: 'csstest_noto';
src: url('/fonts/noto/NotoNaskhArabic-regular.woff2') format('woff2');
}
div {
font-family: 'csstest_noto';
font-size: 4em;
margin: 1rem;
}
section {
float: left; /* to sizing to the intrinsic min of the ref box*/
}
#ref { border: solid orange; }
#test { border: solid blue; }
</style>
<p>Test passes if the blue and organge boxes are identical. Pay attention to characters at the left of the first line, and on the second line.
<section>
<div dir=rtl lang=ar id=ref>ﻋﺎﺋﻠ<br>ﺔ</div>
<div dir=rtl lang=ar id=test>ﻋﺎﺋﻠ<br>ﺔ</div>
</section>
|