Changes between Version 107 and Version 108 of WebKitIDL
- Timestamp:
- May 8, 2013, 1:43:25 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebKitIDL
v107 v108 21 21 - [#Deletable Deletable(a), NotEnumerable(a)][[br]] 22 22 - [#CachedAttribute CachedAttribute(a)][[br]] 23 - [#URL URL(a)][[br]]24 23 - [#JSWindowEventListener JSWindowEventListener(a)][[br]] 25 24 - [#Constructor Constructor(i), CallWith(i,m,a), ConstructorRaisesException(i)][[br]] … … 650 649 In addition, setters always need to invalidate the cache. 651 650 652 == `[URL]`(a) == #URL653 654 Summary: `[URL]` indicates that a given DOMString represents a URL.655 656 Usage: `[URL]` can be specified on DOMString attributes only:657 {{{658 attribute [Reflect, URL] DOMString url;659 }}}660 661 You need to specify `[URL]` if a given DOMString represents a URL,662 since getters of URL attributes need to be realized in a special routine in WebKit, i.e. `Element::getURLAttribute(...)`.663 If you forgot to specify `[URL]`, then the attribute getter might cause a bug.664 665 651 == `[JSWindowEventListener]`(a) FIXME == #JSWindowEventListener 666 652