[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

jorlow at chromium.org jorlow at chromium.org
Wed Apr 7 23:09:08 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit b5e4d70c9059ed73ad5db089038473f904e2c93f
Author: jorlow at chromium.org <jorlow at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Oct 27 17:45:41 2009 +0000

    2009-10-27  Jeremy Orlow  <jorlow at chromium.org>
    
            Reviewed by Dimitri Glazkov.
    
            [V8] DOM Storage runtime flag should default to on
            https://bugs.webkit.org/show_bug.cgi?id=30828
    
            The DOM Storage runtime flag was supposed to default to on.  I accidentally
            changed the logic to default to false when I moved the flag.
    
            * bindings/v8/RuntimeEnabledFeatures.cpp:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@50158 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 73042d1..3db4707 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2009-10-27  Jeremy Orlow  <jorlow at chromium.org>
+
+        Reviewed by Dimitri Glazkov.
+
+        [V8] DOM Storage runtime flag should default to on
+        https://bugs.webkit.org/show_bug.cgi?id=30828
+
+        The DOM Storage runtime flag was supposed to default to on.  I accidentally
+        changed the logic to default to false when I moved the flag.
+
+        * bindings/v8/RuntimeEnabledFeatures.cpp:
+
 2009-10-27  Fumitoshi Ukai  <ukai at chromium.org>
 
         Reviewed by Dimitri Glazkov.
diff --git a/WebCore/bindings/v8/RuntimeEnabledFeatures.cpp b/WebCore/bindings/v8/RuntimeEnabledFeatures.cpp
index 43db6f0..21293a5 100644
--- a/WebCore/bindings/v8/RuntimeEnabledFeatures.cpp
+++ b/WebCore/bindings/v8/RuntimeEnabledFeatures.cpp
@@ -34,7 +34,7 @@
 namespace WebCore {
 
 bool RuntimeEnabledFeatures::isDatabaseEnabled = false;
-bool RuntimeEnabledFeatures::isLocalStorageEnabled = false;
-bool RuntimeEnabledFeatures::isSessionStorageEnabled = false;
+bool RuntimeEnabledFeatures::isLocalStorageEnabled = true;
+bool RuntimeEnabledFeatures::isSessionStorageEnabled = true;
 
 } // namespace WebCore

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list