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

Unified Diff: Source/core/testing/InternalSettings.idl

Issue 14858004: Clean up the way layout tests force elements to opt in/out of composited scrolling. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: . Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/testing/InternalSettings.idl
diff --git a/Source/core/testing/InternalSettings.idl b/Source/core/testing/InternalSettings.idl
index 30c0d911e5d9bbf41d0b038abf88963a65c23adb..9caa54df5c85b29e628531f51f381533bdc28bf0 100644
--- a/Source/core/testing/InternalSettings.idl
+++ b/Source/core/testing/InternalSettings.idl
@@ -53,6 +53,12 @@
[RaisesException] boolean cssVariablesEnabled();
[RaisesException] void setCSSVariablesEnabled(boolean enabled);
+ // Values must be kept in sync with AcceleratedCompositingForOverflowScrollEnabledMode.
+ const unsigned short AcceleratedCompositingForOverflowScrollDisabled = 0;
+ const unsigned short AcceleratedCompositingForOverflowScrollEnabled = 1;
+ const unsigned short AcceleratedCompositingForOverflowScrollAlwaysOn = 2;
+ [RaisesException] void setAcceleratedCompositingForOverflowScrollEnabledMode(unsigned short enabled);
+
// FIXME: The following are RuntimeEnabledFeatures and likely
// cannot be changed after process start. These setters should
// be removed or moved onto internals.runtimeFlags:

Powered by Google App Engine
This is Rietveld 408576698