diff options
-rw-r--r-- | webkit/tools/test_shell/layout_test_controller.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/webkit/tools/test_shell/layout_test_controller.cc b/webkit/tools/test_shell/layout_test_controller.cc index fbfda9f..6244cd1 100644 --- a/webkit/tools/test_shell/layout_test_controller.cc +++ b/webkit/tools/test_shell/layout_test_controller.cc @@ -922,6 +922,8 @@ void LayoutTestController::overridePreference( preferences->xss_auditor_enabled = CppVariantToBool(value); else if (key == "WebKitLocalStorageEnabledPreferenceKey") preferences->local_storage_enabled = CppVariantToBool(value); + else if (key == "WebKitOfflineWebApplicationCacheEnabled") + preferences->application_cache_enabled = CppVariantToBool(value); else { std::wstring message(L"Invalid name for preference: "); message.append(ASCIIToWide(key)); |