Skip to content

Commit

Permalink
[EFL][GTK] media/track/track-cue-rendering-inner-timestamps.html is f…
Browse files Browse the repository at this point in the history
…ailing

https://bugs.webkit.org/show_bug.cgi?id=88725

Patch by Christophe Dumez <christophe.dumez@intel.com> on 2012-06-10
Reviewed by Eric Carlson.

* media/track/track-cue-rendering-inner-timestamps.html: Round the timestamp values
so that the test passes for EFL and GTK ports.
* platform/efl/TestExpectations: Unskip test.
* platform/gtk/TestExpectations: Unskip test.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@119942 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
webkit-commit-queue committed Jun 10, 2012
1 parent a87d3f7 commit d1978d6
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
12 changes: 12 additions & 0 deletions LayoutTests/ChangeLog
@@ -1,3 +1,15 @@
2012-06-10 Christophe Dumez <christophe.dumez@intel.com>

[EFL][GTK] media/track/track-cue-rendering-inner-timestamps.html is failing
https://bugs.webkit.org/show_bug.cgi?id=88725

Reviewed by Eric Carlson.

* media/track/track-cue-rendering-inner-timestamps.html: Round the timestamp values
so that the test passes for EFL and GTK ports.
* platform/efl/TestExpectations: Unskip test.
* platform/gtk/TestExpectations: Unskip test.

2012-06-10 Christophe Dumez <christophe.dumez@intel.com>

[EFL] Skip fast/dom/frame-loading-via-document-write.html
Expand Down
Expand Up @@ -48,7 +48,7 @@
consoleWrite("");
consoleWrite("* Cue " + i + " *");

consoleWrite("Current time: " + video.currentTime);
consoleWrite("Current time: " + Math.round(video.currentTime * 100) / 100);
consoleWrite("Past: " + cueDisplayElement.childNodes[0].innerHTML);
consoleWrite("Future: " + cueDisplayElement.childNodes[1].innerHTML);

Expand Down
3 changes: 0 additions & 3 deletions LayoutTests/platform/efl/TestExpectations
Expand Up @@ -705,9 +705,6 @@ BUGWK88661 SKIP : http/tests/security/local-video-src-from-remote.html = FAIL
// Failing after r119268 on GTK and EFL
BUGWK88138 : http/tests/media/video-buffered.html = TEXT

// Test introduced in r119907 fails on GTK and EFL
BUGWK88725 : media/track/track-cue-rendering-inner-timestamps.html = TEXT

// EFL's LayoutTestController does not implement setAsynchronousSpellCheckingEnabled
BUGWK86637 : editing/spelling/spellcheck-async.html = TEXT
BUGWK86637 : editing/spelling/spellcheck-async-mutation.html = TEXT
Expand Down
3 changes: 0 additions & 3 deletions LayoutTests/platform/gtk/TestExpectations
Expand Up @@ -1283,9 +1283,6 @@ BUGWK86445 : fast/multicol/split-in-top-margin.html = IMAGE
// Requires rebaseline after https://bugs.webkit.org/show_bug.cgi?id=85405
BUGWK85405 : tables/mozilla/bugs/bug10296-1.html = TEXT

// Test introduced in r119907 fails on GTK and EFL
BUGWK88725 : media/track/track-cue-rendering-inner-timestamps.html = TEXT

// Paletted PNG with ICC color profiles not working.
BUGWK86722 SKIP : fast/images/paletted-png-with-color-profile.html = FAIL MISSING

Expand Down

0 comments on commit d1978d6

Please sign in to comment.