forked from mirrors/gecko-dev
Automatic update from web-platform-tests [css-font-loading] Add a few various tests (#30254) -- wpt-commits: d646f3db085e5911b7bc34252a35b4e3010f8d4e wpt-pr: 30254
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>
|