Changeset 154003 in webkit


Ignore:
Timestamp:
Aug 13, 2013 9:14:42 AM (11 years ago)
Author:
Christophe Dumez
Message:

Simplify RadioNodeList's anonymous indexed getter
https://bugs.webkit.org/show_bug.cgi?id=119725

Reviewed by Darin Adler.

Simplify RadioNodeList's anonymous indexed getter by dropping [IsIndex]
IDL extended attribute from its parameter and making it mandatory.

This change has strictly no impact on the generated bindings code
but it simplifies the IDL.

No new test, no behavior change.

  • html/RadioNodeList.idl:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r154000 r154003  
     12013-08-13  Christophe Dumez  <ch.dumez@sisa.samsung.com>
     2
     3        Simplify RadioNodeList's anonymous indexed getter
     4        https://bugs.webkit.org/show_bug.cgi?id=119725
     5
     6        Reviewed by Darin Adler.
     7
     8        Simplify RadioNodeList's anonymous indexed getter by dropping [IsIndex]
     9        IDL extended attribute from its parameter and making it mandatory.
     10
     11        This change has strictly no impact on the generated bindings code
     12        but it simplifies the IDL.
     13
     14        No new test, no behavior change.
     15
     16        * html/RadioNodeList.idl:
     17
    1182013-08-13  Danilo Cesar Lemes de Paula  <danilo.cesar@collabora.co.uk>
    219
  • trunk/Source/WebCore/html/RadioNodeList.idl

    r151499 r154003  
    3030    attribute DOMString value;
    3131
    32     getter Node ([IsIndex,Default=Undefined] optional unsigned long index);
     32    getter Node (unsigned long index);
    3333};
Note: See TracChangeset for help on using the changeset viewer.