mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
28 lines
544 B
HTML
28 lines
544 B
HTML
<!doctype html>
|
|
<style>
|
|
#a {
|
|
font-variant: jis78 small-caps full-width;
|
|
}
|
|
|
|
#b {
|
|
font-variant: common-ligatures small-caps no-contextual;
|
|
}
|
|
|
|
#c {
|
|
font-variant: ordinal small-caps slashed-zero;
|
|
}
|
|
|
|
#d {
|
|
font-variant: historical-forms small-caps stylistic(abc);
|
|
}
|
|
</style>
|
|
<script src="../include.js"></script>
|
|
<pre id="out"></pre>
|
|
<script>
|
|
test(() => {
|
|
for (const rule of document.styleSheets[0].cssRules) {
|
|
println(rule.cssText);
|
|
}
|
|
});
|
|
</script>
|