2025-03-18 15:28:35 -03:00
|
|
|
<!DOCTYPE html>
|
2023-06-08 19:38:11 -03:00
|
|
|
<script src="../include.js"></script>
|
|
|
|
|
<script>
|
|
|
|
|
test(() => {
|
|
|
|
|
let styleNode = document.createElement("style");
|
|
|
|
|
styleNode.innerText = `
|
|
|
|
|
test {
|
|
|
|
|
--color: red;
|
|
|
|
|
color: red;
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
document.head.appendChild(styleNode);
|
|
|
|
|
const sheet = styleNode.sheet;
|
|
|
|
|
println(sheet.cssRules[0].cssText);
|
|
|
|
|
});
|
|
|
|
|
</script>
|