Files
ladybird/Tests/LibWeb/Text/input/css/internal-stylesheet-does-not-have-href.html
Shannon Booth d901e937b6 LibWeb/CSS: Do not give internal stylesheets a location URL
This fixes Acid3 numbered test 72.
2026-01-09 10:54:11 +00:00

13 lines
210 B
HTML

<!DOCTYPE html>
<style>
body {
background: lightgray;
}
</style>
<script src="../include.js"></script>
<script>
test(() => {
println(document.styleSheets[0].href);
});
</script>