From 6af09e55b34593d8e6c940fd969abb0e1aad0b60 Mon Sep 17 00:00:00 2001 From: JW Wang Date: Thu, 24 Apr 2014 23:49:00 -0400 Subject: [PATCH] Bug 843265 - Remove the check for 'canplaythrough' since the purpose of this test is test the 3 ways to register an event handler. r=kinetik --- content/media/test/test_play_events_2.html | 1 - 1 file changed, 1 deletion(-) diff --git a/content/media/test/test_play_events_2.html b/content/media/test/test_play_events_2.html index 59876e7546e..6689851df8e 100644 --- a/content/media/test/test_play_events_2.html +++ b/content/media/test/test_play_events_2.html @@ -30,7 +30,6 @@ function gotPlayEvent(event) { function ended(event) { var v = event.target; v._finished = true; - is(v._state, "canplaythrough", "Last event should be canplaythrough for " + v.src); removeNodeAndSource(v); manager.finished(v.token); }