Commit d599efee authored by mvujovic@adobe.com's avatar mvujovic@adobe.com

Remove CSS Custom Filters related code in TestRunner because the feature is gone in Blink.

Review URL: https://codereview.chromium.org/132473005

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244303 0039d316-1c4b-4281-b951-d872f2087c98
parent 5223aab7
......@@ -48,7 +48,6 @@ void WebPreferences::reset()
tabsToLinks = false;
hyperlinkAuditingEnabled = false;
cssCustomFilterEnabled = false;
shouldRespectImageOrientation = false;
asynchronousSpellCheckingEnabled = false;
}
......
......@@ -41,7 +41,6 @@ struct WebPreferences {
bool tabsToLinks;
bool hyperlinkAuditingEnabled;
bool caretBrowsingEnabled;
bool cssCustomFilterEnabled;
bool shouldRespectImageOrientation;
bool asynchronousSpellCheckingEnabled;
......
......@@ -1686,8 +1686,6 @@ void TestRunner::overridePreference(const CppArgumentList& arguments, CppVariant
prefs->allowDisplayOfInsecureContent = cppVariantToBool(value);
else if (key == "WebKitAllowRunningInsecureContent")
prefs->allowRunningOfInsecureContent = cppVariantToBool(value);
else if (key == "WebKitCSSCustomFilterEnabled")
prefs->cssCustomFilterEnabled = cppVariantToBool(value);
else if (key == "WebKitShouldRespectImageOrientation")
prefs->shouldRespectImageOrientation = cppVariantToBool(value);
else if (key == "WebKitWebAudioEnabled")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment