зеркало из https://github.com/mozilla/gecko-dev.git
35 строки
626 B
HTML
35 строки
626 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset=utf-8>
|
|
<style>
|
|
@font-face {
|
|
font-family: test;
|
|
src: url(../fonts/TAMLThiruValluvar-Regular.ttf);
|
|
}
|
|
.test {
|
|
font-family: test;
|
|
width: -moz-fit-content;
|
|
}
|
|
.mask {
|
|
background: green;
|
|
position: relative;
|
|
top: -.7em;
|
|
height: .7em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="test">
|
|
<!--
|
|
The Grantha nukta characters U+1133C should NOT disrupt shaping of the base text.
|
|
-->
|
|
தெ𑌼ப𑌼ெ𑌼
|
|
<!--
|
|
We place a box over the bottom of the text to mask the nuktas from reftest comparison.
|
|
-->
|
|
<div class="mask"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|