mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 18:17:22 +02:00
LibWeb: Use default fetch processing for any applicable rel keyword
Previously, the `preload`, `preconnect` and `dns-prefetch` keywords took precedence over the others. When these keywords were present the default fetch processing steps would not occur even when a relevant keyword such as `stylesheet` or `icon` was present.
This commit is contained in:
Notes:
github-actions[bot]
2025-12-13 15:53:30 +00:00
Author: https://github.com/tcl3 Commit: https://github.com/LadybirdBrowser/ladybird/commit/ac2334453b5 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/7115 Reviewed-by: https://github.com/trflynn89 ✅
@@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<link rel="match" href="../../expected/HTML/HTMLLLinkElement-multiple-rel-keywords-ref.html" />
|
||||
<style>
|
||||
div {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
background-color: red;
|
||||
}
|
||||
</style>
|
||||
<link rel="preload stylesheet" href="../../data/HTMLLLinkElement-multiple-rel-keywords.css" as="style">
|
||||
<div></div>
|
||||
Reference in New Issue
Block a user