| Index: Source/core/html/MediaController.cpp
|
| diff --git a/Source/core/html/MediaController.cpp b/Source/core/html/MediaController.cpp
|
| index 0fc98f447068b6db52c0c5f145154c1080127f69..82f565c56dd8f2ad1b3d83d97feb392e75be59c3 100644
|
| --- a/Source/core/html/MediaController.cpp
|
| +++ b/Source/core/html/MediaController.cpp
|
| @@ -260,7 +260,7 @@ void MediaController::setVolume(double level, ExceptionState& es)
|
| // If the new value is outside the range 0.0 to 1.0 inclusive, then, on setting, an
|
| // IndexSizeError exception must be raised instead.
|
| if (level < 0 || level > 1) {
|
| - es.throwDOMException(IndexSizeError);
|
| + es.throwUninformativeAndGenericDOMException(IndexSizeError);
|
| return;
|
| }
|
|
|
|
|