Changes between Version 50 and Version 51 of WebKitIDL
- Timestamp:
- Feb 20, 2012, 1:25:03 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebKitIDL
v50 v51 517 517 == [ReturnNewObject](m,a) == #ReturnNewObject 518 518 519 Summary: [ReturnNewObject] controls whether WebCore can return a cached wrappe r object or WebCore needs to return a newly created wrapperobject every time.519 Summary: [ReturnNewObject] controls whether WebCore can return a cached wrapped object or WebCore needs to return a newly created wrapped object every time. 520 520 521 521 Usage: [ReturnNewObject] can be specified on methods or attributes: … … 525 525 }}} 526 526 527 Without [ReturnNewObject], JavaScriptCore and V8 cache a wrappe robject for performance.527 Without [ReturnNewObject], JavaScriptCore and V8 cache a wrapped object for performance. 528 528 For example, consider the case where node.firstChild is accessed: 529 529 530 530 1. Node::firstChild() is called in WebCore. 531 531 1. The result of Node::firstChild() is passed to toJS() or toV8(). 532 1. toJS() or toV8() checks if a wrappe robject of the result is already cached on the node.533 1. If cached, the cached wrappe robject is returned. That's it.534 1. Otherwise, toJS() or toV8() creates the wrappe robject of the result.535 1. The created wrappe robject is cached on the node.536 1. The wrappe robject is returned.537 538 On the other hand, if you do not want to cache the wrappe r object and want to create the wrapperobject every time,532 1. toJS() or toV8() checks if a wrapped object of the result is already cached on the node. 533 1. If cached, the cached wrapped object is returned. That's it. 534 1. Otherwise, toJS() or toV8() creates the wrapped object of the result. 535 1. The created wrapped object is cached on the node. 536 1. The wrapped object is returned. 537 538 On the other hand, if you do not want to cache the wrapped object and want to create the wrapped object every time, 539 539 you can specify [ReturnNewObject]. 540 540 … … 565 565 ADD EXPLANATIONS 566 566 567 == 568 569 * [http://dev.w3.org/2006/webapi/WebIDL/#Replaceable The spec of replaceable]570 571 Summary: Itcontrols if a given attribute is "replaceable" or not.567 == [Replaceable](a) == #Replaceable 568 569 * [http://dev.w3.org/2006/webapi/WebIDL/#Replaceable The spec of Replaceable] 570 571 Summary: [Replaceable] controls if a given attribute is "replaceable" or not. 572 572 573 573 Usage: [Replaceable] can be specified on attributes: … … 578 578 }}} 579 579 580 Intuitively, "replaceable" means that you can set a new value to the attribute without overwriting the currentvalue.581 If you delete the new value, then the o ldvalue still remains.580 Intuitively, "replaceable" means that you can set a new value to the attribute without overwriting the original value. 581 If you delete the new value, then the original value still remains. 582 582 583 583 Specifically, without [Replaceable], the attribute behaves as follows: … … 587 587 window.screenX; // Evaluates to "foo" 588 588 delete window.screenX; 589 window.screenX; // Evaluates to undefined 589 window.screenX; // Evaluates to undefined. 0 is lost. 590 590 }}} 591 591 … … 596 596 window.screenX; // Evaluates to "foo" 597 597 delete window.screenX; 598 window.screenX; // Evaluates to 0 599 }}} 600 601 Whether you should specify [Replaceable] or not depends on the spec of each attribute. 602 598 window.screenX; // Evaluates to 0. 0 remains. 599 }}} 600 601 Whether [Replaceable] should be specified or not depends on the spec of each attribute. 603 602 604 603 == [Deletable](a), [NotEnumerable](a), [V8ReadOnly](a) == #Deletable 605 604 606 * [http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-262.pdf The spec of Writable, Enumerable and Configurable ( 8.6.1)]605 * [http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-262.pdf The spec of Writable, Enumerable and Configurable (Section 8.6.1)] 607 606 608 607 Summary: They control Writability, Enumerability and Configurability of attributes. … … 617 616 By default, non-"readonly" attributes are enumerable, writable and not deletable. "readonly" attributes are enumerable, not writable and not deletable. You can change the default behavior using [Deletable], [NotEnumerable] or [V8ReadOnly]. 618 617 619 [Deletable] indicates that the attribute is deletable. [NotEnumerable] indicates that the attribute is not enumerable. [V8ReadOnly] indicates that the attribute is readonly in V8 even if the attribute is not prefixed by "readonly". 620 621 == [CachedAttribute](a) == #CachedAttribute 622 623 Summary: For performance optimization, it indicates to cache a wrapped object in a DOM object. 618 * [Deletable] indicates that the attribute is deletable. 619 * [NotEnumerable] indicates that the attribute is not enumerable. 620 * [V8ReadOnly] indicates that the attribute is readonly in V8 even if the attribute is not prefixed by "readonly". 621 622 == [CachedAttribute](a) == #CachedAttribute 623 624 Summary: For performance optimization, [CachedAttribute] indicates that a wrapped object should be cached on a DOM object. 624 625 625 626 Usage: [CachedAttribute] can be specified on attributes: … … 633 634 Without [CachedAttribute], the normalValue getter works in the following way: 634 635 635 * HTMLFoo::normalValue() is called.636 * The result is passed to toJS() or toV8(), and is converted to a wrapperobject.637 * The wrapperobject is returned.638 639 In case where HTMLFoo::normalValue() and wrappingthe result is weight,640 you can cache the wrapped object in the DOM object by using [CachedAttribute].636 1. HTMLFoo::normalValue() is called in WebCore. 637 1. The result of HTMLFoo::normalValue() is passed to toJS() or toV8(), and is converted to a wrapped object. 638 1. The wrapped object is returned. 639 640 In case where HTMLFoo::normalValue() or the operation to wrap the result is weight, 641 you can cache the wrapped object onto the DOM object. 641 642 With [CachedAttribute], the normalValue getter works in the following way: 642 643 643 * If the wrapper object is cached, the cached wrapper object is returned.644 * Otherwise, HTMLFoo::normalValue() is called.645 * The resultis passed to toJS() or toV8(), and is converted to a wrapped object.646 *The wrapped object is cached.647 *The wrapped object is returned.648 649 In particular, [CachedAttribute] will be helpful for serialized values.644 1. If the wrapped object is cached, the cached wrapped object is returned. That's it. 645 1. Otherwise, HTMLFoo::normalValue() is called in WebCore. 646 1. The result of HTMLFoo::normalValue() is passed to toJS() or toV8(), and is converted to a wrapped object. 647 1. The wrapped object is cached. 648 1. The wrapped object is returned. 649 650 In particular, [CachedAttribute] will be useful for serialized values, since deserialization can be weight. 650 651 Without [CachedAttribute], the serializedValue getter works in the following way: 651 652 652 * HTMLFoo::serializedValue() is called.653 * The resultis deserialized.654 *The deserialized result is passed to toJS() or toV8(), and is converted to a wrapped object.655 *The wrapped object is returned.656 657 In case where HTMLFoo::serializedValue(), deserializing and wrappingthe result is weight,658 you can cache the wrapped object to the DOM object by specifying [CachedAttribute].653 1. HTMLFoo::serializedValue() is called in WebCore. 654 1. The result of HTMLFoo::serializedValue() is deserialized. 655 1. The deserialized result is passed to toJS() or toV8(), and is converted to a wrapped object. 656 1. The wrapped object is returned. 657 658 In case where HTMLFoo::serializedValue(), the deserialization or the operation to wrap the result is weight, 659 you can cache the wrapped object onto the DOM object. 659 660 With [CachedAttribute], the serializedValue getter works in the following way: 660 661 661 * If the wrapper object is cached, the cached wrapper object is returned.662 * Otherwise, HTMLFoo::serializedValue() is called.663 * The resultis deserialized.664 *The deserialized result is passed to toJS() or toV8(), and is converted to a wrapped object.665 *The wrapped object is cached.666 *The wrapped object is returned.662 1. If the wrapped object is cached, the cached wrapped object is returned. That's it. 663 1. Otherwise, HTMLFoo::serializedValue() is called in WebCore. 664 1. The result of HTMLFoo::serializedValue() is deserialized. 665 1. The deserialized result is passed to toJS() or toV8(), and is converted to a wrapped object. 666 1. The wrapped object is cached. 667 1. The wrapped object is returned. 667 668 668 669 Note that you should cache attributes if and only if it is really important for performance. 669 670 Not only does caching increase the DOM object size, 670 but also it increases the overhead of "cache-miss"ed getters and setters (Setters always need to invalidate the caches). 671 but also it increases the overhead of "cache-miss"ed getters. 672 In addition, setters always need to invalidate the cache. 671 673 672 674 == [V8Unforgeable](m,a), [V8OnProto](m,a) == #V8Unforgeable … … 674 676 * [http://dev.w3.org/2006/webapi/WebIDL/#Unforgeable The spec of Unforgeable] 675 677 676 Summary: They control where a g iven attribute getter/setteris defined.677 678 Usage: They can be specified on attributes:679 {{{ 680 attribute [V8Unforgeable] DOMString str1;681 attribute [V8OnProto] DOMString str 2;678 Summary: They control where a getter/setter of a given attribute is defined. 679 680 Usage: They can be specified on methods or attributes: 681 {{{ 682 [V8Unforgeable] void func(); 683 attribute [V8OnProto] DOMString str; 682 684 }}} 683 685 … … 687 689 If you want to explicitly control where an attribute getter/setter or a method is defined in V8, 688 690 you can use [V8Unforgeable] or [V8OnProto]. 689 [V8Unforgeable] indicates that the attribute getter/setter or the method should be defined on a DOM object. 690 On the other hand, [V8OnProto] indicates that the attribute getter/setter or the method should be defined on a chain. 691 692 * [V8Unforgeable] indicates that an attribute getter/setter or a method should be defined on a DOM object. 693 * [V8OnProto] indicates that an attribute getter/setter or a method should be defined on a prototype chain. 691 694 692 695 Note: As explained above, the current implementation of JSC and V8 is wrong with the Web IDL spec, … … 694 697 You should not use them unless you have a strong reason to use them. 695 698 696 == 697 698 Summary: It indicates that a given DOMString is a URL.699 700 Usage: [URL] can be specified on DOMString attributes :701 {{{ 702 attribute [Reflect, V8URL] DOMString url;703 }}} 704 705 You must specify [URL] if the DOMString representsURL,706 since URL attribute getters are realized in a special routine in WebKit, i.e. Element::getURLAttribute().699 == [URL](a) == #URL 700 701 Summary: [URL] indicates that a given DOMString represents a URL. 702 703 Usage: [URL] can be specified on DOMString attributes only: 704 {{{ 705 attribute [Reflect, URL] DOMString url; 706 }}} 707 708 You need to specify [URL] if a given DOMString represents a URL, 709 since getters of URL attributes need to be realized in a special routine in WebKit, i.e. Element::getURLAttribute(...). 707 710 If you forgot to specify [URL], then the attribute getter might cause a bug. 708 711 709 == 712 == [JSWindowEventListener](a) FIXME == #JSWindowEventListener 710 713 711 714 Summary: ADD SUMMARY 712 715 713 Usage: [JSWindowEventListener] can be specified on EventListener attributes .716 Usage: [JSWindowEventListener] can be specified on EventListener attributes only: 714 717 {{{ 715 718 attribute [JSWindowEventListener] EventListener onload;