mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 02:05:07 +02:00
LibWeb: Resolve FontFaceSet::load promise with all loaded FontFaces
The resulting array is required on https://www.canva.com/
This commit is contained in:
Notes:
github-actions[bot]
2025-07-21 15:31:12 +00:00
Author: https://github.com/Lubrsi Commit: https://github.com/LadybirdBrowser/ladybird/commit/8210a7b3e33 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5544 Reviewed-by: https://github.com/AtkinsSJ ✅
@@ -0,0 +1,27 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head id="head">
|
||||
<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/#document-font-face-set">
|
||||
<meta name="assert" content="Ensure that calling FontFaceSet.load() operates on the up-to-date @font-face blocks." />
|
||||
<script src="../../resources/testharness.js"></script>
|
||||
<script src="../../resources/testharnessreport.js"></script>
|
||||
<style id="style">
|
||||
@font-face {
|
||||
font-family: "WebFont";
|
||||
src: url("resources/Rochester.otf") format("opentype");
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<script>
|
||||
promise_test(async function(t) {
|
||||
let fonts = document.fonts;
|
||||
document.getElementById("head").removeChild(document.getElementById("style"));
|
||||
let result = await fonts.load("12px 'WebFont'");
|
||||
assert_equals(result.length, 0);
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user