summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authorjbroman@chromium.org <jbroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-27 21:52:51 +0000
committerjbroman@chromium.org <jbroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-27 21:52:51 +0000
commit968644f430b4d4eb94a313c3bbdcba5dab754d3b (patch)
treeff35011e1111ca515474d815945bd83aacc7a152 /webkit
parent4ba8eb3cbdaa1880cfb8def22ca9bf3c2757f2fc (diff)
downloadchromium_src-968644f430b4d4eb94a313c3bbdcba5dab754d3b.zip
chromium_src-968644f430b4d4eb94a313c3bbdcba5dab754d3b.tar.gz
chromium_src-968644f430b4d4eb94a313c3bbdcba5dab754d3b.tar.bz2
Remove Chromium plumbing for fixed-position-creates-stacking-context
This is a no-op since over a month ago: https://codereview.chromium.org/206463009/ So it's probably safe to remove the Chromium code which plumbs this preference around before Blink drops it on the floor. After this lands, WebSettings::setFixedPositionCreatesStackingContext can be removed entirely. BUG=354688 Review URL: https://codereview.chromium.org/289973008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273045 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r--webkit/common/webpreferences.cc1
-rw-r--r--webkit/common/webpreferences.h1
2 files changed, 0 insertions, 2 deletions
diff --git a/webkit/common/webpreferences.cc b/webkit/common/webpreferences.cc
index e18cd28..5cadc26 100644
--- a/webkit/common/webpreferences.cc
+++ b/webkit/common/webpreferences.cc
@@ -82,7 +82,6 @@ WebPreferences::WebPreferences()
device_supports_mouse(true),
touch_adjustment_enabled(true),
pointer_events_max_touch_points(0),
- fixed_position_creates_stacking_context(false),
sync_xhr_in_documents_enabled(true),
deferred_image_decoding_enabled(false),
should_respect_image_orientation(false),
diff --git a/webkit/common/webpreferences.h b/webkit/common/webpreferences.h
index f5dc458..2a01e96 100644
--- a/webkit/common/webpreferences.h
+++ b/webkit/common/webpreferences.h
@@ -131,7 +131,6 @@ struct WEBKIT_COMMON_EXPORT WebPreferences {
bool device_supports_mouse;
bool touch_adjustment_enabled;
int pointer_events_max_touch_points;
- bool fixed_position_creates_stacking_context;
bool sync_xhr_in_documents_enabled;
bool deferred_image_decoding_enabled;
bool should_respect_image_orientation;