blob: cb3b6b9d81e43da8a04ee1a8ffc532f04383a007 [file] [log] [blame]
Only Content Media Sessions should have media remote controls after creation.
RUN(session = new MediaSession('content'))
EXPECTED (session.controls != 'null') OK
RUN(session = new MediaSession('transient'))
EXPECTED (session.controls == 'null') OK
RUN(session = new MediaSession('transient-solo'))
EXPECTED (session.controls == 'null') OK
RUN(session = new MediaSession('ambient'))
EXPECTED (session.controls == 'null') OK
END OF TEST