Timeline
Mar 17, 2004:
- 2:19 PM Changeset in webkit [6237] by
-
- 3 edits in trunk/WebKit
Expose ageLimitDate so that the autocomplete code can access it.
Reviewed by john
- History.subproj/WebHistory.m: (-[WebHistory ageLimitDate]):
- History.subproj/WebHistoryPrivate.h:
- 1:33 PM Changeset in webkit [6236] by
-
- 3 edits in trunk/JavaScriptCore
Added a context parameter (supplied by client) to result callbacks use by JavaScriptObject functions. This was a change requested by Eric Carlson on the QT plugin team.
Reviewed by Ken.
- bindings/NP_jsobject.cpp: (NP_Call): (NP_Evaluate): (NP_GetProperty): (NP_ToString): (NP_GetPropertyAtIndex):
- bindings/NP_runtime.h:
- 1:06 PM Changeset in webkit [6235] by
-
- 2 edits in trunk/WebKit
Fixed 3591667. Plugin view is added to view hierarchy before calling init.
Reviewed by Ken.
- WebView.subproj/WebHTMLView.m: (-[WebHTMLView addSubview:]):
- 12:01 PM Changeset in webkit [6234] by
-
- 1 edit in trunk/WebCore/ChangeLog-2005-08-23
Reviewed by John.
- fixed rdar://problem/3312803>: extra space in copied text (3g.co.uk)
- khtml/khtml_part.cpp: (KHTMLPart::text): Explicitly set neededSpace to false after processing a line break. Doesn't really have an effect here, but matches the change to the styled text version.
- kwq/KWQKHTMLPart.mm: (KWQKHTMLPart::attributedString): Same change in the styled text version.
- 11:47 AM Changeset in webkit [6233] by
-
- 3 edits in trunk/WebCore
Reviewed by NOBODY (OOPS!).
- fixed rdar://problem/3312803>: extra space in copied text (3g.co.uk)
- khtml/khtml_part.cpp: (KHTMLPart::text): Explicitly set neededSpace to false after processing a line break. Doesn't really have an effect here, but matches the change to the styled text version.
- kwq/KWQKHTMLPart.mm: (KWQKHTMLPart::attributedString): Same change in the styled text version.
Mar 16, 2004:
- 11:55 AM Changeset in webkit [6232] by
-
- 11 edits in trunk
WebCore:
Reviewed by Ken.
- a little more DOM cleanup
- kwq/DOM-CSS.mm: Added DOMCSSUnknownRule.
- kwq/DOM.mm: Split category implementations out to match category interfaces.
- kwq/DOMHTML.h: Removed lowSrc, not in DOM Level 2. Added a category for some extensions we'll want on DOMElement.
- kwq/DOMInternal.h: Moved _documentImpl method here so it can be used from separate categories.
- kwq/DOMRange.h: Changed DOMDocumentRange to a category from a protocol.
- kwq/HTMLDOM.mm: Removed unneeded methods.
- WebCore.pbproj/project.pbxproj: Sort DOM header files alphabetically.
WebKit:
- DOM.subproj/DOMHTML.h: Updated from WebCore.
- DOM.subproj/DOMRange.h: Ditto.
- 11:40 AM Changeset in webkit [6231] by
-
- 2 edits in trunk/JavaScriptCore
Fixed 3590169. Regression (crash) caused by the switch to MethodLists. Crash when attempting to invoke a method from JavaScript to Java that is not implemented.
Reviewed by John.
- bindings/jni/jni_class.cpp: (JavaClass::methodsNamed):
- 10:35 AM Changeset in webkit [6230] by
-
- 13 edits16 adds2 deletes in trunk
WebCore:
Reviewed by Ken.
- update for new DOM namespacing and header organization
- WebCore.pbproj/project.pbxproj:
- kwq/DOM-CSS.h: Removed.
- kwq/DOM-CSS.mm: Update for name changes.
- kwq/DOM.h: Changed to include the other DOM headers.
- kwq/DOM.mm: Update for name changes.
- kwq/DOMCSS.h: Added.
- kwq/DOMCore.h: Added.
- kwq/DOMEvents.h: Added.
- kwq/DOMHTML.h: Added.
- kwq/DOMInternal.h: Update for name changes.
- kwq/DOMRange.h: Added.
- kwq/DOMStylesheets.h: Added.
- kwq/DOMTraversal.h: Added.
- kwq/DOMViews.h: Added.
- kwq/HTMLDOM.h: Removed.
- kwq/HTMLDOM.mm: Update for name changes; add some missing setters.
WebKit:
Reviewed by Ken.
- update for new DOM namespacing and header organization
- DOM.subproj/DOM.h: Changed to include the other DOM headers.
- DOM.subproj/DOMCSS.h: Added.
- DOM.subproj/DOMCore.h: Added.
- DOM.subproj/DOMEvents.h: Added.
- DOM.subproj/DOMHTML.h: Added.
- DOM.subproj/DOMRange.h: Added.
- DOM.subproj/DOMStylesheets.h: Added.
- DOM.subproj/DOMTraversal.h: Added.
- DOM.subproj/DOMViews.h: Added.
- WebKit.pbproj/project.pbxproj: Added new files.
- WebView.subproj/WebDefaultEditingDelegate.m: (-[WebDefaultEditingDelegate webView:shouldApplyStyle:toElementsInDOMRange:]): (-[WebDefaultEditingDelegate webView:shouldChangeTypingStyle:toStyle:]): Change class names from CSS to DOMCSS.
- WebView.subproj/WebViewPrivate.h: Ditto.
- copy-webcore-files-to-webkit: Add new files.
Mar 15, 2004:
- 9:08 PM Changeset in webkit [6229] by
-
- 2 edits in trunk/WebCore
Reviewed by Darin.
- max out our iBench cheat. Don't even paint or lay out a quarter of the pages.
- khtml/xml/dom_docimpl.cpp: (DocumentImpl::close):
- 2:10 PM Changeset in webkit [6228] by
-
- 2 edits in trunk/JavaScriptCore
Fixed 3570854. Don't attempt to convert Null to strings. We
were incorrectly converting to "Null".
Actually fixed by Scott Kovatch.
Reviewed by Richard.
- bindings/jni/jni_utility.cpp: (KJS::Bindings::convertValueToJValue):
- 2:09 PM Changeset in webkit [6227] by
-
- 7 edits in trunk
WebCore:
Reviewed by John
Fix for this bug:
<rdar://problem/3588717>: REGRESSION (125-131u): Tabbing to links and tabbing in bookmarks view no longer works
Change some support methods which feed editing key events to
WebKit. The real fix is on the WebKit side.
- kwq/KWQKHTMLPart.mm: (KWQKHTMLPart::editingKeyEvent): Call new -editingKeyDown: on WebCoreBridge, as described below.
- kwq/WebCoreBridge.h: Changed -keyDown: to -editingKeyDown: since we want to tell WebView about editing key events in a way that does not interfere with other key down events the WebView processes. This is not necessary in the strictest sense, but it seems reasonable to keep the terminology clear.
WebKit:
Reviewed by John
Fix for this bug:
<rdar://problem/3588717>: REGRESSION (125-131u): Tabbing to links and tabbing in bookmarks view no longer works
WebView can't lay claim to -keyDown: just for editing events, as
this gets in the way of tab processing. The solution is to give
WebView a private method for processing editing key events fed to
it from over the bridge, and leave -keyDown: unimplemented.
- WebCoreSupport.subproj/WebBridge.m: (-[WebBridge editingKeyDown:]): Changed from -keyDown: to keep terminology consistent with renamed WebView -editingKeyDown: method.
- WebView.subproj/WebView.m: (-[WebView editingKeyDown:]): Give WebView a method to handle editing key events in a way that does not interfere with other key down events it processes.
- WebView.subproj/WebViewPrivate.h: Declare -editingKeyDown: method.
- 2:04 PM Changeset in webkit [6226] by
-
- 3 edits in trunk
change version number from '132' to '133u'. the tree is open for business.
- 2:00 PM Changeset in webkit [6225]
-
- 3 copies in tags/Safari-132
This commit was manufactured by cvs2svn to create tag 'Safari-132'.
- 2:00 PM Changeset in webkit [6224] by
-
- 6 edits in trunk
Safari-132 stamp
- 10:37 AM Changeset in webkit [6223] by
-
- 2 edits in trunk/WebKit
- English.lproj/StringsNotToBeLocalized.txt: Updated for recent changes.