PublicHeaderChangesFromTiger.txt 1.5 KB

123456789101112131415161718192021222324252627282930313233
  1. This file lists changes to WebKit public header files that have been made since WebKit-412, which shipped with Mac OS X 10.4. All of these changes will have to be approved by the Apple API approval process, or rolled out, before Apple ships a new version of WebKit.
  2. When you make changes to public header files, please update this file, in the same general style as the ChangeLog file (new entries at top).
  3. ===============================================
  4. 2005-08-01 John Sullivan <sullivan@apple.com>
  5. Removed -[DOMHTMLInputElement isTextField] from DOMExtensions.h. I changed it to _isTextField and put it in
  6. DOMPrivate.h instead, until we decide what we want to do about the public API.
  7. 2005-07-22 John Sullivan <sullivan@apple.com>
  8. Added -[DOMHTMLInputElement isTextField] to DOMExtensions.h (in WebCore, copied by build steps to WebKit).
  9. This is used by autocomplete code in Safari and could be moved there, but is a better fit in WebKit and
  10. is useful for developers.
  11. 2005-06-22 John Sullivan <sullivan@apple.com>
  12. Added the following values to the enum of WebMenuItem tags in WebUIDelegate.h:
  13. WebMenuItemTagOpenWithDefaultApplication,
  14. WebMenuItemPDFActualSize,
  15. WebMenuItemPDFZoomIn,
  16. WebMenuItemPDFZoomOut,
  17. WebMenuItemPDFAutoSize,
  18. WebMenuItemPDFSinglePage,
  19. WebMenuItemPDFFacingPages,
  20. WebMenuItemPDFContinuous,
  21. WebMenuItemPDFNextPage,
  22. WebMenuItemPDFPreviousPage,
  23. These are all used by the context menu for PDF documents.