| Summary: | Media Session: add test to ensure that switching media sessions pauses elements | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Matt Rajca <mrajca> | ||||
| Component: | Media | Assignee: | Nobody <webkit-unassigned> | ||||
| Status: | RESOLVED FIXED | ||||||
| Severity: | Normal | CC: | conrad_shultz, eric.carlson, mrajca, webkit-bug-importer | ||||
| Priority: | P2 | ||||||
| Version: | 528+ (Nightly build) | ||||||
| Hardware: | All | ||||||
| OS: | All | ||||||
| Bug Depends on: | |||||||
| Bug Blocks: | 145411 | ||||||
| Attachments: |
|
||||||
|
Description
Matt Rajca
2015-07-31 11:09:34 PDT
Created attachment 257933 [details]
Patch
Comment on attachment 257933 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=257933&action=review > LayoutTests/media/session/switching-sessions.html:37 > + run('video.session = new MediaSession("transient")'); > + > + testExpected('video.paused', true); > + > + endTest(); It might be good to register a 'pause' event handler and call endTest from there. (In reply to comment #2) > Comment on attachment 257933 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=257933&action=review > > > LayoutTests/media/session/switching-sessions.html:37 > > + run('video.session = new MediaSession("transient")'); > > + > > + testExpected('video.paused', true); > > + > > + endTest(); > > It might be good to register a 'pause' event handler and call endTest from > there. In the case where a media element is not paused, this will be faster than letting the test time out while waiting for an event to fire. I think I'll keep this. Committed r187710: <http://trac.webkit.org/changeset/187710> |