Timeline
Jun 12, 2005:
- 8:28 PM Changeset in webkit [9374] by
-
- 13 edits in trunk/WebKit
Changes by Nick Zitzmann.
Reviewed by me.
- fixed init methods that don't handle return values from the init methods they call
- WebView.subproj/WebArchive.m: (-[WebArchive init]): Use value returned by init, check it for nil too. (-[WebArchive initWithMainResource:subresources:subframeArchives:]): Ditto. (-[WebArchive _initWithPropertyList:]): Ditto. (-[WebArchive initWithCoder:]): Ditto.
- WebView.subproj/WebClipView.m: (-[WebClipView initWithFrame:]): Ditto.
- WebView.subproj/WebDebugDOMNode.m: (-[WebDebugDOMNode initWithName:value:source:children:]): Ditto.
- WebView.subproj/WebFrame.m: (-[WebFormState initWithForm:values:sourceFrame:]): Ditto. (-[WebFrame initWithName:webFrameView:webView:]): Ditto.
- WebView.subproj/WebFrameView.m: (-[WebFrameView initWithFrame:]): Ditto.
- WebView.subproj/WebHTMLRepresentation.m: (-[WebHTMLRepresentation init]): Ditto.
- WebView.subproj/WebHTMLView.m: (-[WebHTMLView initWithFrame:]): Ditto. (-[WebTextCompleteController initWithHTMLView:]): Ditto.
- WebView.subproj/WebImageView.m: (-[WebImageView initWithFrame:]): Ditto.
- WebView.subproj/WebPreferences.m: (-[WebPreferences initWithIdentifier:]): Ditto.
- WebView.subproj/WebRenderNode.m: (-[WebRenderNode initWithName:position:rect:view:children:]): Ditto.
- WebView.subproj/WebResource.m: (-[WebResource init]): Ditto. (-[WebResource initWithCoder:]): Ditto.
- WebView.subproj/WebView.m: (-[WebViewPrivate init]): Call super init. (-[_WebSafeForwarder initWithTarget:defaultTarget:templateClass:]): Use value returned by init, check it for nil too. (-[WebView initWithFrame:]): Ditto.
- 8:26 PM Changeset in webkit [9373] by
-
- 7 edits in trunk/WebKitTools
Changes by Stuart Morgan.
Reviewed by me.
- Scripts/cvs-abandon: Use cwd instead of
pwd. - Scripts/cvs-apply: Ditto.
- Scripts/cvs-create-patch: Ditto.
- Scripts/cvs-unapply: Ditto.
- Scripts/run-webkit-tests: Ditto.
- Scripts/webkitdirs.pm: Ditto. Also improve handling when there's no "Configuration" file.
- 8:12 PM Changeset in webkit [9372] by
-
- 3 edits in trunk/WebKitTools
- Scripts/cvs-apply: Handle case of an empty patch better.
- Scripts/cvs-unapply: Ditto.
- 7:45 PM Changeset in webkit [9371] by
-
- 2 edits in trunk/WebKitTools
Changes by Michael Gaiman.
Reviewed by me.
- fixed <http://bugzilla.opendarwin.org/show_bug.cgi?id=3487> WebKit no longer builds after configuration supporting build changes
- Scripts/webkitdirs.pm: Chomp off the result of
pwd, and don't die when no Configuration file.
- 5:55 PM Changeset in webkit [9370] by
-
- 1 edit3 adds in trunk
- added expected test results for new tests
- layout-tests/fast/selectors/159-expected.txt: Added.
- layout-tests/fast/selectors/177a-expected.txt: Added.
- layout-tests/fast/selectors/177b-expected.txt: Added.
- 5:40 PM Changeset in webkit [9369]
-
- 13 copies3 deletes in tags/WebKit-412~5
This commit was manufactured by cvs2svn to create tag 'WebKit-412~5'.
- 5:40 PM Changeset in webkit [9368] by
-
- 2 edits in branches/Safari-2-0-branch/WebKit
Versioning for Safari-2-0-branch - WebKit-412.5
- 5:10 PM Changeset in webkit [9367] by
-
- 2 edits in trunk/WebKitTools
- Scripts/update-webkit: Make this script work when called from any directory.
- 3:48 PM Changeset in webkit [9366] by
-
- 7 edits1 add in trunk/WebKitTools
Reviewed by Maciej.
Includes changes by Stuart Morgan as well as my own.
- Scripts/build-dumprendertree: Call the new setConfiguration function, and use XcodeOptions instead of symrootXcodeOptions to set the -buildstyle option.
- Scripts/build-webkit: Ditto. Also remove the old way of supporting Xcode 2.1 and the old --debug option. The new --development option does the same thing.
- Scripts/run-safari: Ditto.
- Scripts/run-webkit-tests: Ditto.
- Scripts/update-webkit: Ditto.
- Scripts/set-webkit-configuration: Added. Sets the default configuration to Development or Deployment.
- Scripts/webkitdirs.pm: use FindBin to find the WebKit directory; works no matter what the current directory is when invoking a script. Add code to determine the Xcode version so we can do the right thing for 2.0 and 2.1. Change the productDir function to return the appropriate per-configuration product directory. Read the default configuration from a file, overridable by a passed-in command-line option.
- 2:06 PM Changeset in webkit [9365] by
-
- 2 edits in branches/Safari-2-0-branch/WebKit
Merged fix for <rdar://problem/4142247> from TOT to Safari-2-0-branch.
2005-06-12 Maciej Stachowiak <mjs@apple.com>
Reviewed by Chris Blumenberg.
- fixed <rdar://problem/4142247> REGRESSION: List to browse widgets at Apple website failed. Closing tab afterwards caused Safari crash http://bugzilla.opendarwin.org/show_bug.cgi?id=3445
- WebView.subproj/WebFrame.m: (-[WebFrame _transitionToCommitted:]): Stop loading the non-provisional data source before swapping in the provisional. (-[WebFrame _continueLoadRequestAfterNavigationPolicy:formState:]): Stop only the provisional load here, we would not want to stop loading if this navigation later turns into a download or is cancelled before being committed. (-[WebFrame stopLoading]): Factored a bit. (-[WebFrame _cancelProvisionalLoad]): New method to stop only provisional load, and cancel any pending policy deicions. (-[WebFrame _stopNonProvisionalLoadOnly]): New mthod that stops only the main load.
- 1:27 PM Changeset in webkit [9364] by
-
- 2 edits in trunk/WebKit
Reviewed by Chris Blumenberg.
- fixed <rdar://problem/4142247> REGRESSION: List to browse widgets at Apple website failed. Closing tab afterwards caused Safari crash http://bugzilla.opendarwin.org/show_bug.cgi?id=3445
- WebView.subproj/WebFrame.m: (-[WebFrame _transitionToCommitted:]): Stop loading the non-provisional data source before swapping in the provisional. (-[WebFrame _continueLoadRequestAfterNavigationPolicy:formState:]): Stop only the provisional load here, we would not want to stop loading if this navigation later turns into a download or is cancelled before being committed. (-[WebFrame stopLoading]): Factored a bit. (-[WebFrame _cancelProvisionalLoad]): New method to stop only provisional load, and cancel any pending policy deicions. (-[WebFrame _stopNonProvisionalLoadOnly]): New mthod that stops only the main load.
Jun 11, 2005:
- 10:56 PM Changeset in webkit [9363] by
-
- 2 edits in trunk/WebKitTools
- Scripts/cvs-create-patch: Improve handling of directories with mixed CVS roots by going into each directory to execute the cvs diff commands.
- 10:41 PM Changeset in webkit [9362] by
-
- 1 edit4 adds in trunk/WebKitTools
- added first cuts at some cvs scripts
cvs-abandon is for throwing away changes; discards any local changes, reverting to the state in CVS
cvs-create-patch is for making patches; runs cvs diff with all the right options and handles added/deleted files
cvs-apply is for applying patches; runs patch and cvs add and cvs rm
cvs-unapply is for unapplying patches; does the opposite of cvs-apply
An argument against these is "waste of time if we switch to Subversion", but they should be good for a while.
- Scripts/cvs-abandon: Added.
- Scripts/cvs-apply: Added.
- Scripts/cvs-create-patch: Added.
- Scripts/cvs-unapply: Added.
- 9:07 PM Changeset in webkit [9361] by
-
- 5 edits3 adds in trunk
Patch from Nicholas Shanks <contact@nickshanks.com>, by me.
- Distinguish between pseudo-elements and pseudo-classes in CSS parsing. http://bugzilla.opendarwin.org/show_bug.cgi?id=3375
Merge of svn log -v -r 399829 svn://anonsvn.kde.org/home/kde
Test cases added: Added the following from CSS selector test suite,
unfortunately 159 and 117a do not show any difference with and without the
patch since layout tests do not dump selection style (yet).
- layout-tests/fast/selectors/159.html: Added.
- layout-tests/fast/selectors/177a.html: Added.
- layout-tests/fast/selectors/177b.html: Added.
- khtml/css/css_base.cpp: (CSSSelector::specificity): (CSSSelector::extractPseudoType): (CSSSelector::selectorText):
- khtml/css/css_base.h: (DOM::CSSSelector::): (DOM::CSSSelector::pseudoType):
- khtml/css/cssstyleselector.cpp: (khtml::CSSStyleSelector::checkSelector): (khtml::CSSStyleSelector::checkOneSelector):
- khtml/css/parser.y:
- 2:51 AM Changeset in webkit [9360] by
-
- 2 edits2 adds in trunk
Patch from Timothy Hatcher <timothy@colloquy.info>, reviewed by me.
Test cases added:
- layout-tests/fast/dom/children-nodes-expected.txt: Added.
- layout-tests/fast/dom/children-nodes.html: Added.
- khtml/html/html_miscimpl.cpp: (DOM::HTMLCollectionImpl::traverseNextItem): For "children" collection, use nextSibling() instead of traverseNextNext() to avoid doing deep traversal.
- 2:41 AM Changeset in webkit [9359] by
-
- 1 edit1 add in trunk
Added missing expected results from the background image patch.
- layout-tests/fast/backgrounds/001-expected.txt: Added.