mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 10:07:15 +02:00
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.
12 lines
337 B
HTML
12 lines
337 B
HTML
<!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>
|