mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-10 10:11:04 +00:00
15 lines
280 B
HTML
15 lines
280 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<style>
|
||
|
|
#a {
|
||
|
|
transition: initial;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<script src="../include.js"></script>
|
||
|
|
<script>
|
||
|
|
test(() => {
|
||
|
|
println(document.styleSheets[0].cssRules[0].cssText);
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
</html>
|