All link elements are parsed for stylesheets
At the moment all link elements are beeing parsed for stylesheets. Then fail when trying to parse a favicon
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>jpeg.html</title>
<style>
@page {
size: 200px 200px;
margin: 5px;
}
html {
font-size: 12px;
color: black;
}
</style>
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
<link rel="stylesheet" href="link_elements.css">
</head>
<body>
<p>RED</p>
</body>
</html>