UserAgent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:49.0) Gecko/20100101 Firefox/49.0
Steps to reproduce the problem:
See current implementation of MediaKeySession::update in third_party/WebKit/Source/modules/encryptedmedia/MediaKeySession.cpp
What is the expected behavior?
What went wrong?
In current version of specification:https://w3c.github.io/encrypted-media/#update we have:
1. If this object is closed, return a promise rejected with an InvalidStateError.
In current implementation we have:
DCHECK(!m_isClosed);
It should be replaced with implementation what specification says in this case:
1. If this object is closed, return a promise rejected with an InvalidStateError.
Did this work before? No
Chrome version: <Copy from: 'about:version'> Channel: n/a
OS Version:
Flash Version: Shockwave Flash 11.2 r202
Comment 1 by pgorszko...@opera.com
, Oct 13 2016