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

Unified Diff: webkit/glue/webpreferences.cc

Issue 9523002: Webkit now disables CSS3 regions at runtime by default. This change allows regions to be turned bac… (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 10 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
« no previous file with comments | « webkit/glue/webpreferences.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webpreferences.cc
===================================================================
--- webkit/glue/webpreferences.cc (revision 123852)
+++ webkit/glue/webpreferences.cc (working copy)
@@ -103,7 +103,8 @@
enable_scroll_animator(false),
hixie76_websocket_protocol_enabled(false),
visual_word_movement_enabled(false),
- per_tile_painting_enabled(false) {
+ per_tile_painting_enabled(false),
+ css_regions_enabled(false) {
}
WebPreferences::~WebPreferences() {
@@ -352,5 +353,7 @@
// Enable per-tile painting if requested on the command line.
settings->setPerTilePaintingEnabled(per_tile_painting_enabled);
+ settings->setExperimentalCSSRegionsEnabled(css_regions_enabled);
+
WebNetworkStateNotifier::setOnLine(is_online);
}
« no previous file with comments | « webkit/glue/webpreferences.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698