Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(164)

Side by Side Diff: LayoutTests/http/tests/misc/favicon-loads-with-icon-loading-override.html

Issue 457893003: Remove unknown preferences errors in layout tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Re-add testRunner.waitUntilDone() calls that were wrongly removed. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script>
4 function runTest()
5 {
6 if (window.testRunner) {
7 testRunner.dumpAsText();
8 testRunner.dumpResourceLoadCallbacks();
9 testRunner.setIconDatabaseEnabled(true);
10 testRunner.overridePreference("WebKitDisplayImagesKey", 0);
11 testRunner.overridePreference("WebKitLoadSiteIconsKey", 1);
12 testRunner.queueReload();
13 }
14 }
15 </script>
16 <link rel="icon" href="resources/favicon.ico" type="image/x-icon">
17 </head>
18 <body onload="runTest()">
19 https://bugs.webkit.org/show_bug.cgi?id=58292 - Provide new setting to allow sit e icon loading despite disabling automatic image loading in general.<br>
20 Resource load callbacks will reveal if the favicon still gets loaded if automati c image loading is disabled, but site icon image loading override is enabled. <b r>
21 </body>
22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698