blob: 9602c0ed39fbfeaf82f9079403941746bdc43202 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<html>
<head>
<script>
function runTest()
{
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.dumpResourceLoadCallbacks();
testRunner.setIconDatabaseEnabled(true);
testRunner.overridePreference("WebKitDisplayImagesKey", 0);
testRunner.overridePreference("WebKitLoadSiteIconsKey", 1);
testRunner.queueReload();
}
}
</script>
<link rel="icon" href="resources/favicon.ico" type="image/x-icon">
</head>
<body onload="runTest()">
https://bugs.webkit.org/show_bug.cgi?id=58292 - Provide new setting to allow site icon loading despite disabling automatic image loading in general.<br>
Resource load callbacks will reveal if the favicon still gets loaded if automatic image loading is disabled, but site icon image loading override is enabled. <br>
</body>
</html>
|