LibWeb/CSS: Do not give internal stylesheets a location URL

This fixes Acid3 numbered test 72.
This commit is contained in:
Shannon Booth
2025-12-28 12:12:59 +01:00
committed by Sam Atkins
parent 65f6da8d92
commit d901e937b6
Notes: github-actions[bot] 2026-01-09 10:55:19 +00:00
12 changed files with 172 additions and 105 deletions

View File

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