Changeset 56462 in webkit


Ignore:
Timestamp:
Mar 24, 2010 3:22:41 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-24 Eric Uhrhane <ericu@chromium.org>

DOMCoreException needs NoStaticTables modifier
https://bugs.webkit.org/show_bug.cgi?id=36458

No new tests, but this shows up in tests of Database accesses from the
Worker thread that I'll be checking in soon. The symptom is that
DOMCoreException.toString() returns [object DOMException] instead of
something more helpful.

  • fast/workers/worker-context-multi-port-expected.txt: Adjusted expectation that was depending on the broken behavior.

2010-03-24 Eric Uhrhane <ericu@chromium.org>

Reviewed by Alexey Proskuryakov.

DOMCoreException needs NoStaticTables modifier
https://bugs.webkit.org/show_bug.cgi?id=36458

No new tests, but this shows up in tests of Database accesses from the
Worker thread that I'll be checking in soon. The symptom is that
DOMCoreException.toString() returns [object DOMException] instead of
something more helpful.

  • dom/DOMCoreException.idl: Added NoStaticTables.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r56460 r56462  
     12010-03-24  Eric Uhrhane <ericu@chromium.org>
     2
     3        DOMCoreException needs NoStaticTables modifier
     4        https://bugs.webkit.org/show_bug.cgi?id=36458
     5
     6        No new tests, but this shows up in tests of Database accesses from the
     7        Worker thread that I'll be checking in soon.  The symptom is that
     8        DOMCoreException.toString() returns [object DOMException] instead of
     9        something more helpful.
     10
     11        * fast/workers/worker-context-multi-port-expected.txt:  Adjusted expectation that was depending on the broken behavior.
     12
    1132010-03-23  Evan Martin  <evan@chromium.org>
    214
  • trunk/LayoutTests/fast/workers/worker-context-multi-port-expected.txt

    r48025 r56462  
    77PASS event.ports is null when empty array sent
    88PASS event.ports contains two ports when two ports sent
    9 PASS posting a null port did throw: [object DOMException]
     9PASS posting a null port did throw: Error: INVALID_STATE_ERR: DOM Exception 11
    1010PASS posting a non-port did throw: TypeError: Type error
    1111PASS event.ports contains two ports when two ports re-sent after error
  • trunk/WebCore/ChangeLog

    r56461 r56462  
     12010-03-24  Eric Uhrhane  <ericu@chromium.org>
     2
     3        Reviewed by Alexey Proskuryakov.
     4
     5        DOMCoreException needs NoStaticTables modifier
     6        https://bugs.webkit.org/show_bug.cgi?id=36458
     7
     8        No new tests, but this shows up in tests of Database accesses from the
     9        Worker thread that I'll be checking in soon.  The symptom is that
     10        DOMCoreException.toString() returns [object DOMException] instead of
     11        something more helpful.
     12
     13        * dom/DOMCoreException.idl:  Added NoStaticTables.
     14
    1152010-03-24  Drew Wilson  <atwilson@chromium.org>
    216
  • trunk/WebCore/dom/DOMCoreException.idl

    r52537 r56462  
    2929module core {
    3030
    31     interface DOMCoreException {
     31    interface [
     32        NoStaticTables
     33    ] DOMCoreException {
    3234
    3335        readonly attribute unsigned short   code;
Note: See TracChangeset for help on using the changeset viewer.