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

jer.noble at apple.com jer.noble at apple.com
Wed Dec 22 12:43:49 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit fd8988e7f4421306ce4dcd80887ebb37b15d2822
Author: jer.noble at apple.com <jer.noble at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Aug 27 22:38:54 2010 +0000

    Build fix only, not reviewed.
    
    In review for https://bugs.webkit.org/show_bug.cgi?id=43099, a few
    necessary testing functions were removed.
    
    * fullscreen/full-screen-test.js:
    (waitForEventAndTest._eventCallback):
    (waitForEventAndTest):
    (waitForEventTestAndEnd):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66267 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 0baaf52..5b7e04f 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,15 @@
+2010-08-27  Jer Noble  <jer.noble at apple.com>
+
+        Build fix only, not reviewed.
+
+        In review for https://bugs.webkit.org/show_bug.cgi?id=43099, a few
+        necessary testing functions were removed.
+
+        * fullscreen/full-screen-test.js:
+        (waitForEventAndTest._eventCallback):
+        (waitForEventAndTest):
+        (waitForEventTestAndEnd):
+
 2010-08-27  Tony Chang  <tony at chromium.org>
 
         Not reviewed, updating chromium test expectations after r66251.
diff --git a/LayoutTests/fullscreen/full-screen-test.js b/LayoutTests/fullscreen/full-screen-test.js
index d37a80b..2fff4ba 100644
--- a/LayoutTests/fullscreen/full-screen-test.js
+++ b/LayoutTests/fullscreen/full-screen-test.js
@@ -93,6 +93,23 @@ function waitForEvent(element, eventName, func, endit)
     element.addEventListener(eventName, _eventCallback);
 }
 
+function waitForEventAndTest(element, eventName, testFuncString, endit)
+{
+    function _eventCallback(event)
+    {
+        logResult(eval(testFuncString), "EVENT(" + eventName + ") TEST(" + testFuncString + ")");
+        if (endit)
+            endTest();    
+    }
+
+    element.addEventListener(eventName, _eventCallback);
+}
+
+function waitForEventTestAndEnd(element, eventName, testFuncString)
+{
+    waitForEventAndTest(element, eventName, testFuncString, true);
+}
+  
 var testEnded = false;
 
 function endTest()

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list