mirror of
https://github.com/servo/servo.git
synced 2025-06-25 17:44:33 +01:00
13 lines
484 B
HTML
13 lines
484 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<link rel="author" title="Myles C. Maxfield" href="mmaxfield@apple.com">
|
|
<link rel="help" href="https://drafts.csswg.org/css-font-loading-3/#dom-fontfaceset-delete">
|
|
<meta name="assert" content="Ensure that calling delete() with a CSS-connected FontFace has no effect." />
|
|
<style>
|
|
@font-face {
|
|
font-family: "WebFont";
|
|
src: url("resources/Rochester.otf") format("opentype");
|
|
}
|
|
</style>
|
|
<div style="font: 48px 'WebFont';">Hi</div>
|
|
</html>
|