• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1This 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
3When you make changes to public header files, please update this file, in the same general style as the ChangeLog file (new entries at top).
4===============================================
5
62005-08-01  John Sullivan  <sullivan@apple.com>
7
8Removed -[DOMHTMLInputElement isTextField] from DOMExtensions.h. I changed it to _isTextField and put it in
9DOMPrivate.h instead, until we decide what we want to do about the public API.
10
112005-07-22  John Sullivan  <sullivan@apple.com>
12
13Added -[DOMHTMLInputElement isTextField] to DOMExtensions.h (in WebCore, copied by build steps to WebKit).
14This is used by autocomplete code in Safari and could be moved there, but is a better fit in WebKit and
15is useful for developers.
16
172005-06-22  John Sullivan  <sullivan@apple.com>
18
19Added the following values to the enum of WebMenuItem tags in WebUIDelegate.h:
20
21    WebMenuItemTagOpenWithDefaultApplication,
22    WebMenuItemPDFActualSize,
23    WebMenuItemPDFZoomIn,
24    WebMenuItemPDFZoomOut,
25    WebMenuItemPDFAutoSize,
26    WebMenuItemPDFSinglePage,
27    WebMenuItemPDFFacingPages,
28    WebMenuItemPDFContinuous,
29    WebMenuItemPDFNextPage,
30    WebMenuItemPDFPreviousPage,
31
32These are all used by the context menu for PDF documents.
33