Timeline
Jun 8, 2005:
- 11:14 PM Changeset in webkit [9345] by
-
- 6 edits in trunk/WebKitTools
- quick fix to try to get build scripts working again
- Scripts/build-dumprendertree: Add FindBin.
- Scripts/build-webkit: Ditto.
- Scripts/run-safari: Ditto.
- Scripts/run-webkit-tests: Ditto.
- Scripts/update-webkit: Ditto.
- 10:43 PM Changeset in webkit [9344] by
-
- 6 edits1 add in trunk/WebKitTools
Reviewed by Maciej.
- some build script enhancements
- Scripts/build-dumprendertree: Changed to use webkitdirs.
- Scripts/build-webkit: Changed to use webkitdirs, also only copy files from WebKitLibraries if they are newer.
- Scripts/run-safari: Reduce number of log messages, change to respect "-d" flag and get Development before Deplyment in that case.
- Scripts/run-webkit-tests: Changed to use webkitdirs.
- Scripts/update-webkit: Changed to use webkitdirs.
- Scripts/webkitdirs.pm: Added.
- 2:55 AM Changeset in webkit [9343] by
-
- 1 edit in trunk/WebCore/WebCore.pbproj/project.pbxproj
Oops, i missed the project file changes too.
- 2:16 AM Changeset in webkit [9342]
-
- 7 copies in tags/Safari-1-3-anchor
This commit was manufactured by cvs2svn to create tag
'Safari-1-3-anchor'.
- 2:16 AM Changeset in webkit [9341] by
-
- 2 adds in trunk/WebCore/khtml/ecma
Add new files that I forgot to check in with the last change.
- 2:00 AM Changeset in webkit [9340] by
-
- 2 edits in trunk/WebKitTools
Code change by Toby Peterson <toby@opendarwin.org>
Reviewed by me.
- Scripts/run-safari: Fix to work with Xcode 2.0 again. The script would get confused because build-webkit now makes even 2.0 build directories look like 2.1.
- 1:39 AM Changeset in webkit [9339] by
-
- 3 edits4 adds in trunk
Reviewed and committed by Maciej.
- fixed http://bugzilla.opendarwin.org/show_bug.cgi?id=3337 (Support the Mozilla DOMParser and XMLSerializer objects)
<rdar://problem/3533735> implement Mozilla "DOMParser" extension for use with XMLHTTPRequest
Test cases added:
- layout-tests/fast/dom/dom-parse-serialize-display-expected.txt: Added.
- layout-tests/fast/dom/dom-parse-serialize-display.html: Added.
- layout-tests/fast/dom/dom-parse-serialize-expected.txt: Added.
- layout-tests/fast/dom/dom-parse-serialize.html: Added.
- khtml/ecma/domparser.h:
- khtml/ecma/domparser.cpp: Add files implementing the DOMParser object.
- khtml/ecma/kjs_window.h:
- khtml/ecma/kjs_window.cpp: Expose DOMParser object.
- 12:09 AM Changeset in webkit [9338] by
-
- 2 edits in trunk/JavaScriptCore
Change by Mark Rowe <opendarwin.org@bdash.net.nz>
Reviewed by me.
- fixed http://bugzilla.opendarwin.org/show_bug.cgi?id=3327 (Exception When Setting Style to Invalid Value Lacks Line/File Information)
- kjs/nodes.cpp: Include source file and line number when making exception in KJS_CHECKEXCEPTIONVALUE.
Jun 7, 2005:
- 5:41 PM Changeset in webkit [9337] by
-
- 2 edits in trunk/WebCore
Patch from Brian Campbell. Make sure the min and max values of slider properly update.
Fixes bugilla bug 3323, internal Radar # is 4098892.
Reviewed by hyatt
Test cases added: (Not testable with a layout test)
- kwq/KWQSlider.mm: (QSlider::setMinValue): (QSlider::setMaxValue):
- 5:27 PM Changeset in webkit [9336] by
-
- 3 edits in trunk/WebKitTools
Reviewed by Adele Peterson.
- DumpRenderTree/DumpRenderTree.xcode/project.pbxproj: Added Deployment build style.
- Scripts/build-dumprendertree: For now, always use Deployment build style. This may fix things so we can run tests with Xcode 2.1.
- 3:51 PM Changeset in webkit [9335]
-
- 53 copies2 deletes in tags/WebCore-415~10
This commit was manufactured by cvs2svn to create tag
'WebCore-415~10'.
- 3:51 PM Changeset in webkit [9334] by
-
- 2 edits in branches/Safari-2-0-branch/WebCore
Versioning for Safari-2-0-branch - WebCore-415.10
- 3:46 PM Changeset in webkit [9333] by
-
- 1 edit in trunk/WebKitTools/ChangeLog
Oops, forgot to use Adele's married name.
- 3:45 PM Changeset in webkit [9332] by
-
- 2 edits in trunk/WebKitTools
Reviewed by Adele Amchan.
- Scripts/run-webkit-tests: Pass -L to find command to follow symlinks. This allows symlinks in the layout-tests directory to include additional sets of tests.
- 3:42 PM Changeset in webkit [9331] by
-
- 2 edits in branches/Safari-2-0-branch/WebCore
Merged fix for <rdar://problem/4139800> from TOT to Safari-2-0-branch
2005-06-07 Adele Peterson <adele@apple.com>
Change by Darin, reviewed by Maciej and me.
- fixed <rdar://problem/4139800> REGRESSION: Safari crashes at bebe.com
There were cases where the DOMNode mark function would end up not even
marking the node that it was called on. The old code tried to skip any
subtrees that were already marked, but that code was wrong.
- khtml/ecma/kjs_dom.cpp: (KJS::DOMNode::mark): Changed three things: 1) Instead of a boolean, keep a set of trees that we are marking, that
prevents problems if we mark things that have references between
separate trees of DOM nodes.
2) Don't do the "outermost node with a wrapper" check, just start marking
at the root of the entire tree, because there's no way to have an
unreachable node pointing to a reachable node.
3) Handle the unusual case where the document's wrapper dictionary is
gone by marking just this node explicitly.
This passes the layout tests, still fixes the Dashboard memory leak from
bug 4125222, and makes bebe.com work again.
- 3:12 PM Changeset in webkit [9330] by
-
- 2 edits in trunk/WebCore
Change by Darin, reviewed by Maciej and me.
- fixed <rdar://problem/4139800> REGRESSION: Safari crashes at bebe.com
There were cases where the DOMNode mark function would end up not even
marking the node that it was called on. The old code tried to skip any
subtrees that were already marked, but that code was wrong.
- khtml/ecma/kjs_dom.cpp: (KJS::DOMNode::mark): Changed three things: 1) Instead of a boolean, keep a set of trees that we are marking, that
prevents problems if we mark things that have references between
separate trees of DOM nodes.
2) Don't do the "outermost node with a wrapper" check, just start marking
at the root of the entire tree, because there's no way to have an
unreachable node pointing to a reachable node.
3) Handle the unusual case where the document's wrapper dictionary is
gone by marking just this node explicitly.
This passes the layout tests, still fixes the Dashboard memory leak from
bug 4125222, and makes bebe.com work again.
- 3:02 PM Changeset in webkit [9329] by
-
- 5 edits in trunk/WebKitTools
- checkout: Added license.
- Scripts/build-dumprendertree: Ditto.
- Scripts/run-webkit-tests: Ditto.
- Scripts/update-webkit: Ditto.
- 2:58 PM Changeset in webkit [9328] by
-
- 3 edits in trunk/WebKitTools
Change by Toby Peterson <toby@opendarwin.org>.
Reviewed by me.
- Scripts/build-webkit: Changes so you can build with Xcode 2.1. (I also added a license to this file.)
- Scripts/run-safari: Ditto.
- 2:48 PM Changeset in webkit [9327] by
-
- 2 edits in trunk/WebCore
Change by Toby Peterson <toby@opendarwin.org>.
Reviewed by me.
- WebCore.pbproj/project.pbxproj: Allow bison 2.0, which generates the file with a different name.
- 11:34 AM Changeset in webkit [9326] by
-
- 2 edits in trunk/JavaScriptCore
Change by Toby Peterson <toby@opendarwin.org>.
Reviewed by me.
- JavaScriptCore.pbproj/project.pbxproj: Allow bison 2.0, which generates the file with a different name.
- 9:07 AM Changeset in webkit [9325] by
-
- 2 edits in trunk/WebKit
Change by Mark Rowe <opendarwin.org@bdash.net.nz>.
Reviewed by me.
- fixed the WebKit half of build failure with spaces in the path http://bugzilla.opendarwin.org/show_bug.cgi?id=3291
- WebKit.pbproj/project.pbxproj: Quote DERIVED_FILE_DIR when it is substituted into FRAMEWORK_SEARCH_PATHS, and SYMROOT when into HEADER_SEARCH_PATHS.
- 9:05 AM Changeset in webkit [9324] by
-
- 1 edit in trunk/WebCore/ChangeLog-2005-08-23
Fixed name in ChangeLog.
- 9:00 AM Changeset in webkit [9323] by
-
- 2 edits in trunk/WebCore
Change by Toby Peterson <toby@opendarwin.org>.
Reviewed by me.
- fixed the WebCore half of build failure with spaces in the path http://bugzilla.opendarwin.org/show_bug.cgi?id=3291
- WebCore.pbproj/project.pbxproj: Add quotes to make LIBRARY_SEARCH_PATHS work even when the path has a space in it.
- 8:55 AM Changeset in webkit [9322] by
-
- 2 edits in trunk/JavaScriptCore
Change by Toby Peterson <toby@opendarwin.org>.
Reviewed by me.
- kjs/grammar.y: Remove bogus extra line from grammar.y. Toby got this change from KDE KJS.
- 8:34 AM Changeset in webkit [9321] by
-
- 2 edits in trunk/WebCore
Patch from Mark Rowe to fix a minor memory leak in WebCoreSettings.
Reviewed by hyatt
- kwq/WebCoreSettings.mm: (-[WebCoreSettings dealloc]):