[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

krit at webkit.org krit at webkit.org
Wed Dec 22 13:31:48 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 286c00f1d488b1a5e08be892d1412d8893012cc0
Author: krit at webkit.org <krit at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Sep 18 17:44:48 2010 +0000

    2010-09-18  Mihai Parparita  <mihaip at chromium.org>
    
            Reviewed by Dirk Schulze.
    
            fast/css/preserve-user-specified-zoom-level-on-reload.html does not clean up after itself
            https://bugs.webkit.org/show_bug.cgi?id=46040
    
            Delete the sessionStorage property that this test adds once it's complete.
            Otherwise it fails when run with --iterations=2 and also causes a diff in
            in fast/dom/prototype-inheritance-2.html (which runs after it).
    
            * fast/css/preserve-user-specified-zoom-level-on-reload.html:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67782 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 9074aa9..e7cb4bb 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,16 @@
+2010-09-18  Mihai Parparita  <mihaip at chromium.org>
+
+        Reviewed by Dirk Schulze.
+
+        fast/css/preserve-user-specified-zoom-level-on-reload.html does not clean up after itself
+        https://bugs.webkit.org/show_bug.cgi?id=46040
+
+        Delete the sessionStorage property that this test adds once it's complete.
+        Otherwise it fails when run with --iterations=2 and also causes a diff in
+        in fast/dom/prototype-inheritance-2.html (which runs after it).
+
+        * fast/css/preserve-user-specified-zoom-level-on-reload.html:
+
 2010-09-17  David Hyatt  <hyatt at apple.com>
 
         Reviewed by Sam Weinig.
diff --git a/LayoutTests/fast/css/preserve-user-specified-zoom-level-on-reload.html b/LayoutTests/fast/css/preserve-user-specified-zoom-level-on-reload.html
index f4ac37a..3c88dde 100644
--- a/LayoutTests/fast/css/preserve-user-specified-zoom-level-on-reload.html
+++ b/LayoutTests/fast/css/preserve-user-specified-zoom-level-on-reload.html
@@ -13,9 +13,10 @@ function runTest()
         return
 
     layoutTestController.waitUntilDone();
-    if (sessionStorage.testCompleted)
+    if (sessionStorage.testCompleted) {
+        delete sessionStorage.testCompleted;
         layoutTestController.notifyDone();
-    else {
+    } else {
         // Note, it is sufficient to zoom-in only once, but so as to make it easier
         // for a human to compare the pixel test results we zoom-in up to Safari's
         // maximum zoom level, which at the time of writing (09/17) is 6.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list