Title: [104479] trunk
Revision
104479
Author
[email protected]
Date
2012-01-09 12:53:52 -0800 (Mon, 09 Jan 2012)

Log Message

Source/WebCore: REGRESSION(r104327?): media/track/track-cues-cuechange.html and track-cues-enter-exit.html 
intermittently time out, media/track/track-cues-seeking and  fails
https://bugs.webkit.org/show_bug.cgi?id=75817

Unreviewed, fix a problem introduced in r104327.

No new tests, covered by existing tests.

* html/HTMLMediaElement.cpp:
(WebCore::HTMLMediaElement::HTMLMediaElement): Initialize m_ignoreTrackDisplayUpdate.

LayoutTests: REGRESSION(r104327?): media/track/track-cues-cuechange.html and track-cues-enter-exit.html intermittently time out, media/track/track-cues-seeking and  fails
https://bugs.webkit.org/show_bug.cgi?id=75817

Unreviewed, fix a problem introduced in r104327.
        
Re-enable <track> tests disabled after r104327.

* platform/chromium/test_expectations.txt:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (104478 => 104479)


--- trunk/LayoutTests/ChangeLog	2012-01-09 20:47:44 UTC (rev 104478)
+++ trunk/LayoutTests/ChangeLog	2012-01-09 20:53:52 UTC (rev 104479)
@@ -1,3 +1,14 @@
+2012-01-09  Eric Carlson  <[email protected]>
+
+        REGRESSION(r104327?): media/track/track-cues-cuechange.html and track-cues-enter-exit.html intermittently time out, media/track/track-cues-seeking and  fails
+        https://bugs.webkit.org/show_bug.cgi?id=75817
+
+        Unreviewed, fix a problem introduced in r104327.
+        
+        Re-enable <track> tests disabled after r104327.
+
+        * platform/chromium/test_expectations.txt:
+
 2012-01-09  Alexis Menard  <[email protected]>
 
         getComputedStyle for border-radius is not implemented.

Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (104478 => 104479)


--- trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-01-09 20:47:44 UTC (rev 104478)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt	2012-01-09 20:53:52 UTC (rev 104479)
@@ -3844,8 +3844,3 @@
 
 BUGWK75787 MAC LINUX : fast/text/international/spaces-combined-in-vertical-text.html = TIMEOUT TEXT
 
-BUGWK75817 : media/track/track-cues-cuechange.html = PASS TIMEOUT
-BUGWK75817 : media/track/track-cues-enter-exit.html = PASS TIMEOUT
-BUGWK75817 : media/track/track-cues-seeking.html = TEXT
-BUGWK75817 MAC DEBUG : media/track/track-webvtt-tc026-voice.html = PASS CRASH
-

Modified: trunk/Source/WebCore/ChangeLog (104478 => 104479)


--- trunk/Source/WebCore/ChangeLog	2012-01-09 20:47:44 UTC (rev 104478)
+++ trunk/Source/WebCore/ChangeLog	2012-01-09 20:53:52 UTC (rev 104479)
@@ -1,3 +1,16 @@
+2012-01-09  Eric Carlson  <[email protected]>
+
+        REGRESSION(r104327?): media/track/track-cues-cuechange.html and track-cues-enter-exit.html 
+        intermittently time out, media/track/track-cues-seeking and  fails
+        https://bugs.webkit.org/show_bug.cgi?id=75817
+
+        Unreviewed, fix a problem introduced in r104327.
+
+        No new tests, covered by existing tests.
+
+        * html/HTMLMediaElement.cpp:
+        (WebCore::HTMLMediaElement::HTMLMediaElement): Initialize m_ignoreTrackDisplayUpdate.
+
 2012-01-09  Raymond Toy  <[email protected]>
 
         Add normalize attribute to ConvolverNode to disable normalization.

Modified: trunk/Source/WebCore/html/HTMLMediaElement.cpp (104478 => 104479)


--- trunk/Source/WebCore/html/HTMLMediaElement.cpp	2012-01-09 20:47:44 UTC (rev 104478)
+++ trunk/Source/WebCore/html/HTMLMediaElement.cpp	2012-01-09 20:53:52 UTC (rev 104479)
@@ -236,6 +236,7 @@
     , m_tracksAreReady(true)
     , m_haveVisibleTextTrack(false)
     , m_textTracks(0)
+    , m_ignoreTrackDisplayUpdate(0)
 #endif
 #if ENABLE(WEB_AUDIO)
     , m_audioSourceNode(0)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to