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

mihaip at chromium.org mihaip at chromium.org
Wed Dec 22 15:42:20 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit b2954fd29431be2d4dbba2e73f165e6bf0c3024c
Author: mihaip at chromium.org <mihaip at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Nov 10 18:51:39 2010 +0000

    2010-11-10  Mihai Parparita  <mihaip at chromium.org>
    
            Unreviewed Chromium DRT expectations update.
    
            - fast/images/gif-loop-count.html fails on Linux and Mac when under the
              DRT.
            - Add more flaky media tests
            - Tweak video-referrer.html error output to be more useful
    
            * http/tests/media/video-referer.html:
            * platform/chromium/drt_expectations.txt:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@71755 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 8ec10de..19e90d2 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,15 @@
+2010-11-10  Mihai Parparita  <mihaip at chromium.org>
+
+        Unreviewed Chromium DRT expectations update.
+        
+        - fast/images/gif-loop-count.html fails on Linux and Mac when under the
+          DRT.
+        - Add more flaky media tests
+        - Tweak video-referrer.html error output to be more useful
+
+        * http/tests/media/video-referer.html:
+        * platform/chromium/drt_expectations.txt:
+
 2010-11-10  Adrienne Walker  <enne at google.com>
 
         Reviewed by Kenneth Russell.
diff --git a/LayoutTests/http/tests/media/video-referer.html b/LayoutTests/http/tests/media/video-referer.html
index a4de911..5876e77 100644
--- a/LayoutTests/http/tests/media/video-referer.html
+++ b/LayoutTests/http/tests/media/video-referer.html
@@ -7,28 +7,30 @@
 <script src=../../../media/media-file.js></script>
 <script>
     if (window.layoutTestController) {
-        layoutTestController.dumpAsText();
         layoutTestController.setAlwaysAcceptCookies(true);
-        layoutTestController.waitUntilDone();
     }
 
     function loadCookieAndReferer () {
-        var movie = findMediaFile("video", "resources/test");
-        var frame = document.createElement("iframe");
-        document.body.appendChild(frame);
+        var movie = findMediaFile('video', 'resources/test');
+        var frame = document.createElement('iframe');
+        frame.width = 0;
+        frame.height = 0;
+        frame.src = 'http://127.0.0.1:8000/media/resources/setCookieAndReferer.cgi?name=' + movie + '&referer=http://127.0.0.1:8000/media/resources';
 
         frame.addEventListener('load', function () {
                 video = document.getElementById('video');
-                video.src="http://127.0.0.1:8000/media/resources/video-referer-check-referer.php";
+                video.src='http://127.0.0.1:8000/media/resources/video-referer-check-referer.php';
                 video.play();
         });
 
-        frame.width = 0;
-        frame.height = 0;
-        frame.src = "http://127.0.0.1:8000/media/resources/setCookieAndReferer.cgi?name=" + movie + "&referer=http://127.0.0.1:8000/media/resources";
+        document.body.appendChild(frame);
     }
+    
+    waitForEventAndEnd('error', function () {
+        consoleWrite('FAIL, got error when loading media error: ' + video.error.code);
+    });    
 
-    waitForEvent("canplaythrough", function () {
+    waitForEvent('canplaythrough', function () {
         if (window.layoutTestController)
             window.layoutTestController.notifyDone();
     } );
diff --git a/LayoutTests/platform/chromium/drt_expectations.txt b/LayoutTests/platform/chromium/drt_expectations.txt
index 738953c..9ea72b0 100644
--- a/LayoutTests/platform/chromium/drt_expectations.txt
+++ b/LayoutTests/platform/chromium/drt_expectations.txt
@@ -10,6 +10,7 @@
 
 // DRT needs to schedule paints on invalidations like Chrome does.
 BUG62433 MAC LINUX : fast/backgrounds/animated-gif-as-background.html = IMAGE
+BUG62433 MAC LINUX : fast/images/gif-loop-count.html = IMAGE
 
 // input-speech related failures
 BUG_DRT WIN MAC : fast/speech/input-appearance-numberandspeech.html = IMAGE
@@ -50,10 +51,16 @@ BUG_DRT LINUX : svg/batik/text/verticalText.svg = IMAGE+TEXT
 BUGWK43960 WIN MAC LINUX : scrollbars/custom-scrollbar-with-incomplete-style.html = IMAGE
 
 // media/video-* flakyness
-BUG59665 MAC : media/video-aspect-ratio.html = TIMEOUT
+BUG59665 MAC : media/video-aspect-ratio.html = CRASH TIMEOUT PASS
 BUG59665 MAC : media/video-play-empty-events.html = CRASH TIMEOUT PASS
 BUG59665 MAC : media/video-src-change.html = CRASH TEXT PASS
 BUG59665 MAC : media/video-src.html = CRASH TIMEOUT PASS
+BUG59665 MAC : media/video-controls-rendering.html = CRASH TIMEOUT PASS
+BUG59665 MAC : media/video-delay-load-event.html = CRASH TIMEOUT PASS
+BUG59665 MAC : media/video-loop.html = CRASH TIMEOUT PASS
+
+// Also fails on the mac port; see http://webkit.org/b/34331
+BUG_DRT : http/tests/media/video-referer.html = TEXT
 
 // Occasionally times out with, only under the DRT for Linux
 BUG58212 LINUX : http/tests/appcache/main-resource-redirect.html = PASS TIMEOUT

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list