Changeset 148236 in webkit


Ignore:
Timestamp:
Apr 11, 2013 2:41:28 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

MutationRecord is not exposed
https://bugs.webkit.org/show_bug.cgi?id=114288

Patch by Sukolsak Sakshuwong <Sukolsak Sakshuwong> on 2013-04-11
Reviewed by Darin Adler.

Source/WebCore:

Expose MutationRecord on DOMWindow. This patch is copied from a patch
by Adam Klein. https://codereview.chromium.org/13861028

Test: fast/dom/MutationObserver/mutation-record-constructor.html

  • page/DOMWindow.idl:

LayoutTests:

This test is copied from a patch by Adam Klein.
https://codereview.chromium.org/13861028
The test expectation of "typeof MutationRecord" is changed from
"function" to "object". (See bug 114457)

  • fast/dom/MutationObserver/mutation-record-constructor-expected.txt: Added.
  • fast/dom/MutationObserver/mutation-record-constructor.html: Added.
Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r148227 r148236  
     12013-04-11  Sukolsak Sakshuwong  <sukolsak@gmail.com>
     2
     3        MutationRecord is not exposed
     4        https://bugs.webkit.org/show_bug.cgi?id=114288
     5
     6        Reviewed by Darin Adler.
     7
     8        This test is copied from a patch by Adam Klein.
     9        https://codereview.chromium.org/13861028
     10        The test expectation of "typeof MutationRecord" is changed from
     11        "function" to "object". (See bug 114457)
     12
     13        * fast/dom/MutationObserver/mutation-record-constructor-expected.txt: Added.
     14        * fast/dom/MutationObserver/mutation-record-constructor.html: Added.
     15
    1162013-04-11  Dirk Schulze  <krit@webkit.org>
    217
  • trunk/Source/WebCore/ChangeLog

    r148234 r148236  
     12013-04-11  Sukolsak Sakshuwong  <sukolsak@gmail.com>
     2
     3        MutationRecord is not exposed
     4        https://bugs.webkit.org/show_bug.cgi?id=114288
     5
     6        Reviewed by Darin Adler.
     7
     8        Expose MutationRecord on DOMWindow. This patch is copied from a patch
     9        by Adam Klein. https://codereview.chromium.org/13861028
     10
     11        Test: fast/dom/MutationObserver/mutation-record-constructor.html
     12
     13        * page/DOMWindow.idl:
     14
    1152013-04-11  Beth Dakin  <bdakin@apple.com>
    216
  • trunk/Source/WebCore/page/DOMWindow.idl

    r148100 r148236  
    792792    attribute MutationObserverConstructor WebKitMutationObserver; // FIXME: Add metrics to determine when we can remove this.
    793793    attribute MutationObserverConstructor MutationObserver;
     794    attribute MutationRecordConstructor MutationRecord;
    794795
    795796    [Conditional=MEDIA_SOURCE] attribute MediaSourceConstructor WebKitMediaSource;
Note: See TracChangeset for help on using the changeset viewer.