Changeset 135148 in webkit


Ignore:
Timestamp:
Nov 19, 2012 6:25:05 AM (11 years ago)
Author:
arv@chromium.org
Message:

Update DOMException name: AbortError
https://bugs.webkit.org/show_bug.cgi?id=102508

Reviewed by Kentaro Hara.

Patch 20 of 25 to update DOMException name to match the spec and Firefox.

No code uses DOMException AbortError. We do use ABORT_ERR for XMLHttpRequestException. See bug 102506.

  • dom/DOMCoreException.cpp:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r135145 r135148  
     12012-11-19  Erik Arvidsson  <arv@chromium.org>
     2
     3        Update DOMException name: AbortError
     4        https://bugs.webkit.org/show_bug.cgi?id=102508
     5
     6        Reviewed by Kentaro Hara.
     7
     8        Patch 20 of 25 to update DOMException name to match the spec and Firefox.
     9
     10        No code uses DOMException AbortError. We do use ABORT_ERR for XMLHttpRequestException. See bug 102506.
     11
     12        * dom/DOMCoreException.cpp:
     13
    1142012-11-19  Kentaro Hara  <haraken@chromium.org>
    215
  • trunk/Source/WebCore/dom/DOMCoreException.cpp

    r134954 r135148  
    5656    // FIXME: Couldn't find a description in the HTML/DOM specifications for NETWORK_ERR, ABORT_ERR, URL_MISMATCH_ERR, and QUOTA_EXCEEDED_ERR
    5757    { "NETWORK_ERR", "A network error occurred." },
    58     { "ABORT_ERR", "The user aborted a request." },
     58    { "AbortError", "The user aborted a request." },
    5959    { "URL_MISMATCH_ERR", "A worker global scope represented an absolute URL that is not equal to the resulting absolute URL." },
    6060    { "QUOTA_EXCEEDED_ERR", "An attempt was made to add something to storage that exceeded the quota." },
Note: See TracChangeset for help on using the changeset viewer.