Changeset 117102 in webkit


Ignore:
Timestamp:
May 15, 2012 11:15:42 AM (12 years ago)
Author:
tommyw@google.com
Message:

MediaStream API: Setting onended on a LocalMediaStream triggers an assertion in V8
https://bugs.webkit.org/show_bug.cgi?id=86459

Reviewed by Adam Barth.

Source/WebCore:

LocalMediaStream inherits from MediaStream, but only MediaStream have the
EventTarget idl attribute. Adding the attribute to LocalMediaStream as well fixes the issue.

Test: fast/mediastream/LocalMediaStream-onended.html

  • Modules/mediastream/LocalMediaStream.idl:

LayoutTests:

  • fast/mediastream/LocalMediaStream-onended-expected.txt: Added.
  • fast/mediastream/LocalMediaStream-onended.html: Added.
Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r117090 r117102  
     12012-05-15  Tommy Widenflycht  <tommyw@google.com>
     2
     3        MediaStream API: Setting onended on a LocalMediaStream triggers an assertion in V8
     4        https://bugs.webkit.org/show_bug.cgi?id=86459
     5
     6        Reviewed by Adam Barth.
     7
     8        * fast/mediastream/LocalMediaStream-onended-expected.txt: Added.
     9        * fast/mediastream/LocalMediaStream-onended.html: Added.
     10
    1112012-05-15  Brady Eidson  <beidson@apple.com>
    212
  • trunk/Source/WebCore/ChangeLog

    r117098 r117102  
     12012-05-15  Tommy Widenflycht  <tommyw@google.com>
     2
     3        MediaStream API: Setting onended on a LocalMediaStream triggers an assertion in V8
     4        https://bugs.webkit.org/show_bug.cgi?id=86459
     5
     6        Reviewed by Adam Barth.
     7
     8        LocalMediaStream inherits from MediaStream, but only MediaStream have the
     9        EventTarget idl attribute. Adding the attribute to LocalMediaStream as well fixes the issue.
     10
     11        Test: fast/mediastream/LocalMediaStream-onended.html
     12
     13        * Modules/mediastream/LocalMediaStream.idl:
     14
    1152012-05-15  Terry Anderson  <tdanderson@chromium.org>
    216
  • trunk/Source/WebCore/Modules/mediastream/LocalMediaStream.idl

    r116311 r117102  
    2727    interface [
    2828        Conditional=MEDIA_STREAM,
     29        EventTarget,
    2930        JSGenerateToNativeObject,
    3031        JSGenerateToJSObject
Note: See TracChangeset for help on using the changeset viewer.