Changes between Version 97 and Version 98 of WebKitIDL


Ignore:
Timestamp:
May 8, 2013 1:16:21 AM (11 years ago)
Author:
Christophe Dumez
Comment:

Remove mentions of toV8()

Legend:

Unmodified
Added
Removed
Modified
  • WebKitIDL

    v97 v98  
    549549
    550550 1. `Node::firstChild()` is called in WebCore.
    551  1. The result of `Node::firstChild()` is passed to `toJS()` or `toV8()`.
    552  1. `toJS()` or `toV8()` checks if a wrapped object of the result is already cached on the node.
     551 1. The result of `Node::firstChild()` is passed to `toJS()`.
     552 1. `toJS()` checks if a wrapped object of the result is already cached on the node.
    553553 1. If cached, the cached wrapped object is returned. That's it.
    554  1. Otherwise, `toJS()` or `toV8()` creates the wrapped object of the result.
     554 1. Otherwise, `toJS()` creates the wrapped object of the result.
    555555 1. The created wrapped object is cached on the node.
    556556 1. The wrapped object is returned.
     
    677677
    678678 1. `HTMLFoo::normalValue()` is called in WebCore.
    679  1. The result of `HTMLFoo::normalValue()` is passed to `toJS()` or `toV8()`, and is converted to a wrapped object.
     679 1. The result of `HTMLFoo::normalValue()` is passed to `toJS()`, and is converted to a wrapped object.
    680680 1. The wrapped object is returned.
    681681
     
    686686 1. If the wrapped object is cached, the cached wrapped object is returned. That's it.
    687687 1. Otherwise, `HTMLFoo::normalValue()` is called in WebCore.
    688  1. The result of `HTMLFoo::normalValue()` is passed to `toJS()` or `toV8()`, and is converted to a wrapped object.
     688 1. The result of `HTMLFoo::normalValue()` is passed to `toJS()`, and is converted to a wrapped object.
    689689 1. The wrapped object is cached.
    690690 1. The wrapped object is returned.
     
    695695 1. `HTMLFoo::serializedValue()` is called in WebCore.
    696696 1. The result of `HTMLFoo::serializedValue()` is deserialized.
    697  1. The deserialized result is passed to `toJS()` or `toV8()`, and is converted to a wrapped object.
     697 1. The deserialized result is passed to `toJS()`, and is converted to a wrapped object.
    698698 1. The wrapped object is returned.
    699699
     
    705705 1. Otherwise, `HTMLFoo::serializedValue()` is called in WebCore.
    706706 1. The result of `HTMLFoo::serializedValue()` is deserialized.
    707  1. The deserialized result is passed to `toJS()` or `toV8()`, and is converted to a wrapped object.
     707 1. The deserialized result is passed to `toJS()`, and is converted to a wrapped object.
    708708 1. The wrapped object is cached.
    709709 1. The wrapped object is returned.