Changeset 135160 in webkit


Ignore:
Timestamp:
Nov 19, 2012 7:53:52 AM (11 years ago)
Author:
arv@chromium.org
Message:

Update DOMException name: URLMismatchError
https://bugs.webkit.org/show_bug.cgi?id=102511

Reviewed by Kentaro Hara.

Source/WebCore:

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

Updated existing tests.

  • dom/DOMCoreException.cpp:

(WebCore):

LayoutTests:

Updated tests and expectations.

  • fast/workers/shared-worker-shared-expected.txt:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r135155 r135160  
     12012-11-19  Erik Arvidsson  <arv@chromium.org>
     2
     3        Update DOMException name: URLMismatchError
     4        https://bugs.webkit.org/show_bug.cgi?id=102511
     5
     6        Reviewed by Kentaro Hara.
     7
     8        Updated tests and expectations.
     9
     10        * fast/workers/shared-worker-shared-expected.txt:
     11
    1122012-11-19  Csaba Osztrogonác  <ossy@webkit.org>
    213
  • trunk/LayoutTests/fast/workers/shared-worker-shared-expected.txt

    r47078 r135160  
    11Test simple shared worker sharing cases. Should print several PASS lines followed by DONE.
    22
    3 PASS: Exception thrown when creating SharedWorker with different URLs but same name: Error: URL_MISMATCH_ERR: DOM Exception 21
     3PASS: Exception thrown when creating SharedWorker with different URLs but same name: Error: URLMismatchError: DOM Exception 21
    44PASS: Accessing new instance of shared worker: self.foo: undefined
    55PASS: Setting global variable in shared worker: self.foo = 1234: 1234
  • trunk/Source/WebCore/ChangeLog

    r135159 r135160  
     12012-11-19  Erik Arvidsson  <arv@chromium.org>
     2
     3        Update DOMException name: URLMismatchError
     4        https://bugs.webkit.org/show_bug.cgi?id=102511
     5
     6        Reviewed by Kentaro Hara.
     7
     8        Patch 21 of 25 to update DOMException name to match the spec and Firefox.
     9
     10        Updated existing tests.
     11
     12        * dom/DOMCoreException.cpp:
     13        (WebCore):
     14
    1152012-11-19  Kihong Kwon  <kihong.kwon@samsung.com>
    216
  • trunk/Source/WebCore/dom/DOMCoreException.cpp

    r135157 r135160  
    5757    { "NetworkError", "A network error occurred." },
    5858    { "AbortError", "The user aborted a request." },
    59     { "URL_MISMATCH_ERR", "A worker global scope represented an absolute URL that is not equal to the resulting absolute URL." },
     59    { "URLMismatchError", "A worker global scope represented an absolute URL that is not equal to the resulting absolute URL." },
    6060    { "QuotaExceededError", "An attempt was made to add something to storage that exceeded the quota." },
    6161    { "TIMEOUT_ERR", "A timeout occurred." },
Note: See TracChangeset for help on using the changeset viewer.