mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-11 10:41:04 +00:00
17 lines
373 B
HTML
17 lines
373 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<style>
|
||
|
|
#foo {
|
||
|
|
font-variant: normal;
|
||
|
|
font-variant-ligatures: none;
|
||
|
|
font-variant-caps: all-petite-caps;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<script src="../include.js"></script>
|
||
|
|
<script>
|
||
|
|
test(() => {
|
||
|
|
println(document.styleSheets[0].cssRules[0].cssText);
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
</html>
|