mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 00:25:27 +00:00
40 lines
948 B
HTML
40 lines
948 B
HTML
<html class="reftest-wait">
|
|
<!--
|
|
This test makes sure that the glyph extents are being extended to
|
|
the bounds of the SVG glyph by placing an SVG glyph in a div outside
|
|
the truetype extents but inside the SVG extents
|
|
-->
|
|
<head>
|
|
<style type="text/css">
|
|
@font-face {
|
|
font-family : svgttf;
|
|
src : url(resources/svg.woff);
|
|
}
|
|
|
|
body {
|
|
font-family : svgttf;
|
|
font-size : 200px;
|
|
color : palevioletred;
|
|
}
|
|
|
|
div {
|
|
width : 160px;
|
|
overflow : hidden;
|
|
}
|
|
</style>
|
|
<script type="text/javascript">
|
|
function expand() {
|
|
var div = document.getElementById("thediv");
|
|
div.style.width = "200px";
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
window.addEventListener("MozReftestInvalidate", expand, false);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="thediv">
|
|
O<br>
|
|
</div>
|
|
</body>
|
|
</html>
|