diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/css/css-fonts/font-palette-remove-2.html | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-fonts/font-palette-remove-2.html')
-rw-r--r-- | testing/web-platform/tests/css/css-fonts/font-palette-remove-2.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-fonts/font-palette-remove-2.html b/testing/web-platform/tests/css/css-fonts/font-palette-remove-2.html new file mode 100644 index 0000000000..2cdb070a2c --- /dev/null +++ b/testing/web-platform/tests/css/css-fonts/font-palette-remove-2.html @@ -0,0 +1,37 @@ +<!DOCTYPE html> +<html class="reftest-wait"> +<head> +<meta charset="utf-8"> +<title>Tests that dynamically removing font-palette causes the necessary rendering update</title> +<link rel="help" href="https://drafts.csswg.org/css-fonts/#font-palette-prop"> +<link rel="author" title="Myles C. Maxfield" href="mailto:mmaxfield@apple.com"> +<link rel="match" href="font-palette-remove-2-ref.html"> +<style> +@font-face { + font-family: "COLR-test-font"; + src: url("resources/COLR-palettes-test-font.ttf") format("truetype"); +} + +@font-palette-values --MyPalette { + font-family: "COLR-test-font"; + base-palette: 1; +} +</style> +</head> +<body> +<div id="target" style="font: 48px 'COLR-test-font'; font-palette: --MyPalette;">A</div> +<script> +let count = 0; +function tick() { + if (count > 3) { + document.getElementById("target").style.removeProperty("font-palette"); + document.documentElement.classList.remove("reftest-wait"); + } else { + ++count; + requestAnimationFrame(tick); + } +} +[...document.fonts][0].load().then(tick); +</script> +</body> +</html> |