Changes between Version 85 and Version 87 of WebKitIDL


Ignore:
Timestamp:
(multiple changes)
Author:
(multiple changes)
Comment:
(multiple changes)

Legend:

Unmodified
Added
Removed
Modified
  • WebKitIDL

    v85 v87  
    366366Hence calling context.setColor(-1, 255, 257) is equivalent to calling setColorClamped(0, 255, 255).
    367367
    368 == [Callback](i,p) FIXME == #Callback
     368== [Callback](p) FIXME == #Callback
    369369
    370370Summary: ADD SUMMARY
    371371
    372 Usage: [Callback] can be specified on interfaces and parameters:
    373 {{{
    374     interface [
    375         Callback
    376     ] HTMLFoo {
    377         void func(in int a, in [Callback] int b);
     372Usage: [Callback] should be specified on parameters of callback type:
     373{{{
     374    interface HTMLFoo {
     375        void func(int a, [Callback] VoidCallback b);
    378376    };
    379377}}}