| Index: Source/core/html/HTMLMediaElement.cpp
|
| diff --git a/Source/core/html/HTMLMediaElement.cpp b/Source/core/html/HTMLMediaElement.cpp
|
| index 9c798cd26ab5034904c8fd4aab2f770ad7a7fae5..1ec05752e7c4a890ae99b8c952484f91a02a8b54 100644
|
| --- a/Source/core/html/HTMLMediaElement.cpp
|
| +++ b/Source/core/html/HTMLMediaElement.cpp
|
| @@ -166,6 +166,9 @@ static void throwExceptionForMediaKeyException(MediaPlayer::MediaKeyException ex
|
| case MediaPlayer::KeySystemNotSupported:
|
| exceptionState.throwUninformativeAndGenericDOMException(NotSupportedError);
|
| return;
|
| + case MediaPlayer::InvalidAccess:
|
| + exceptionState.throwUninformativeAndGenericDOMException(InvalidAccessError);
|
| + return;
|
| }
|
|
|
| ASSERT_NOT_REACHED();
|
|
|