mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
11 lines
336 B
HTML
11 lines
336 B
HTML
|
|
<script src="../include.js"></script>
|
||
|
|
<script>
|
||
|
|
test(() => {
|
||
|
|
let style = document.createElement("style");
|
||
|
|
style.innerText = "@font-face { font-family: 'a1'; src: local('xyz'); }";
|
||
|
|
document.head.appendChild(style);
|
||
|
|
let sheet = style.sheet;
|
||
|
|
println(sheet.cssRules[0].cssText);
|
||
|
|
});
|
||
|
|
</script>
|