| Index: Source/core/html/TimeRanges.cpp
|
| diff --git a/Source/core/html/TimeRanges.cpp b/Source/core/html/TimeRanges.cpp
|
| index 7d42425555170f989617997efb1e08439324f78a..71fd4fde32ec606d5c613a3eaee6ec5d8d5dd508 100644
|
| --- a/Source/core/html/TimeRanges.cpp
|
| +++ b/Source/core/html/TimeRanges.cpp
|
| @@ -105,7 +105,7 @@ void TimeRanges::unionWith(const TimeRanges* other)
|
| double TimeRanges::start(unsigned index, ExceptionState& es) const
|
| {
|
| if (index >= length()) {
|
| - es.throwDOMException(IndexSizeError);
|
| + es.throwUninformativeAndGenericDOMException(IndexSizeError);
|
| return 0;
|
| }
|
| return m_ranges[index].m_start;
|
| @@ -114,7 +114,7 @@ double TimeRanges::start(unsigned index, ExceptionState& es) const
|
| double TimeRanges::end(unsigned index, ExceptionState& es) const
|
| {
|
| if (index >= length()) {
|
| - es.throwDOMException(IndexSizeError);
|
| + es.throwUninformativeAndGenericDOMException(IndexSizeError);
|
| return 0;
|
| }
|
| return m_ranges[index].m_end;
|
|
|