Title: [121432] trunk/Source/WebCore
Revision
121432
Author
[email protected]
Date
2012-06-28 08:33:11 -0700 (Thu, 28 Jun 2012)

Log Message

m_cssVariablesEnabled member is not initialized in Page Settings
https://bugs.webkit.org/show_bug.cgi?id=90147

Patch by Christophe Dumez <[email protected]> on 2012-06-28
Reviewed by Simon Hausmann.

Properly initialize the m_cssVariablesEnabled member in Page
Settings.

No new tests, no behavior change.

* page/Settings.cpp:
(WebCore::Settings::Settings):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (121431 => 121432)


--- trunk/Source/WebCore/ChangeLog	2012-06-28 14:43:16 UTC (rev 121431)
+++ trunk/Source/WebCore/ChangeLog	2012-06-28 15:33:11 UTC (rev 121432)
@@ -1,3 +1,18 @@
+2012-06-28  Christophe Dumez  <[email protected]>
+
+        m_cssVariablesEnabled member is not initialized in Page Settings
+        https://bugs.webkit.org/show_bug.cgi?id=90147
+
+        Reviewed by Simon Hausmann.
+
+        Properly initialize the m_cssVariablesEnabled member in Page
+        Settings.
+
+        No new tests, no behavior change.
+
+        * page/Settings.cpp:
+        (WebCore::Settings::Settings):
+
 2012-06-28  Balazs Kelemen  <[email protected]>
 
         [Qt] plugin is loaded to the web process via MainResourceLoader::substituteMIMETypeFromPluginDatabase

Modified: trunk/Source/WebCore/page/Settings.cpp (121431 => 121432)


--- trunk/Source/WebCore/page/Settings.cpp	2012-06-28 14:43:16 UTC (rev 121431)
+++ trunk/Source/WebCore/page/Settings.cpp	2012-06-28 15:33:11 UTC (rev 121432)
@@ -192,6 +192,9 @@
 #if ENABLE(CSS_REGIONS)
     , m_cssRegionsEnabled(false)
 #endif
+#if ENABLE(CSS_VARIABLES)
+    , m_cssVariablesEnabled(false)
+#endif
     , m_regionBasedColumnsEnabled(false)
     , m_cssGridLayoutEnabled(false)
     // FIXME: This should really be disabled by default as it makes platforms that don't support the feature download files
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to