Timeline
Aug 2, 2009:
- 11:33 PM Changeset in webkit [46712] by
-
- 2 edits in trunk/JavaScriptCore
2009-08-02 Xan Lopez <xlopez@igalia.com>
Fix the GTK+ build.
- wtf/Platform.h:
- 9:12 PM Changeset in webkit [46711] by
-
- 2 edits in trunk/WebCore
2009-08-02 Adam Barth <abarth@webkit.org>
Reviewed by Darin Adler.
SVGElementInstance::scriptExecutionContext should call document() instead of scriptExecutionContext()
There's no reason to pay for a virtual function call in this case. We
can just call document() directly because we know that element is a
Node*.
- svg/SVGElementInstance.cpp:
(WebCore::SVGElementInstance::scriptExecutionContext):
- 8:49 PM Changeset in webkit [46710] by
-
- 4 edits in trunk/WebCore
2009-08-02 Adam Barth <abarth@webkit.org>
Reviewed by Darin Adler.
JSNodeCustom should call document() instead of scriptExecutionContext()
https://bugs.webkit.org/show_bug.cgi?id=27931
We want to call document() because it's in inline function, instead of
scriptExecutionContext() because it's a virtual function. If we have a
Node*, then we know that the virtual function will always return the
document anyway.
There are more instance of this bug, but I'd like to start with a small
patch and work up.
- bindings/js/JSDOMGlobalObject.cpp: (WebCore::toJSDOMGlobalObject):
- bindings/js/JSDOMGlobalObject.h:
- bindings/js/JSNodeCustom.cpp: (WebCore::JSNode::addEventListener): (WebCore::JSNode::removeEventListener):
- 4:10 PM Changeset in webkit [46709] by
-
- 2 edits in trunk/JavaScriptCore
2009-08-02 Geoffrey Garen <ggaren@apple.com>
Reviewed by Sam Weinig.
Disabled JSVALUE32_64 on Qt builds, since all layout tests mysteriously
crash with it enabled.
- wtf/Platform.h:
- 4:08 PM Changeset in webkit [46708] by
-
- 2 edits in trunk/LayoutTests
2009-08-02 Sam Weinig <sam@webkit.org>
Land updated expected result.
- fast/js/array-filter-expected.txt:
- 3:48 PM Changeset in webkit [46707] by
-
- 2 edits in trunk/LayoutTests
2009-08-02 Sam Weinig <sam@webkit.org>
Reviewed by Oliver Hunt.
Speed up fast/js/array-filter.html by 10x in debug builds by not using an
unnecessarily large sparse array.
- fast/js/resources/array-filter.js:
- 3:10 PM Changeset in webkit [46706] by
-
- 2 edits in trunk/JavaScriptCore
2009-08-02 Geoffrey Garen <ggaren@apple.com>
Qt build fix.
Added JSAPIValueWrapper.cpp to the build.
- JavaScriptCore.pri:
- 3:00 PM Changeset in webkit [46705] by
-
- 3 edits in trunk/JavaScriptCore
2009-08-02 Geoffrey Garen <ggaren@apple.com>
Windows build fix.
Exported symbols for JSAPIValueWrapper.
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore_debug.def:
- 2:56 PM Changeset in webkit [46704] by
-
- 2 edits in trunk/JavaScriptCore
2009-08-02 Geoffrey Garen <ggaren@apple.com>
GTK build fix.
- jit/JITStubs.cpp: #include <stdarg.h>, for a definition of va_start.
- 2:52 PM Changeset in webkit [46703] by
-
- 2 edits in trunk/JavaScriptCore
2009-08-02 Geoffrey Garen <ggaren@apple.com>
Qt build fix.
- runtime/Collector.cpp: #include <limits.h>, for a definition of ULONG_MAX.
- 2:45 PM Changeset in webkit [46702] by
-
- 5 edits in trunk/JavaScriptCore
2009-08-02 Geoffrey Garen <ggaren@apple.com>
Windows build fix: Nixed JSImmediate::prototype, JSImmediate::toObject,
and JSImmediate::toThisObject, and removed their exported symbols.
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore_debug.def:
- runtime/JSImmediate.cpp:
- runtime/JSImmediate.h:
- 2:33 PM Changeset in webkit [46701] by
-
- 2 edits in trunk/JavaScriptCore
2009-08-02 Geoffrey Garen <ggaren@apple.com>
Reviewed by Mark Rowe.
Enabled JSVALUE32_64 by default on all platforms other than x86_64 (which uses JSVALUE64).
- wtf/Platform.h:
- 7:26 AM Changeset in webkit [46700] by
-
- 2 edits in trunk/WebKitTools
2009-08-02 David D. Kilzer <ddkilzer@webkit.org>
<http://webkit.org/b/27930> bugzilla-tool hates Tor Arne Vestbø
Reviewed by Tor Arne Vestbø.
- Scripts/bugzilla-tool: (set_reviewer_in_changelog): Made sure reviewer is properly encoded when calling replace().
- 7:09 AM Changeset in webkit [46699] by
-
- 7 edits in trunk/WebCore
2009-07-27 Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
Reviewed by Anders Carlsson.
Share implementation of PluginView::userAgent() and userAgentStatic()
Differences to the original implementation are as follows:
- The Win port used to return 0 for userAgentStatic, but now returns the quirk mode MozillaUserAgent as the other ports.
- plugins/PluginView.cpp: (WebCore::PluginView::userAgent): (WebCore::PluginView::userAgentStatic):
- plugins/PluginViewNone.cpp:
- plugins/gtk/PluginViewGtk.cpp:
- plugins/mac/PluginViewMac.cpp:
- plugins/qt/PluginViewQt.cpp:
- plugins/win/PluginViewWin.cpp:
- 7:00 AM Changeset in webkit [46698] by
-
- 2 edits in trunk/WebCore
2009-07-27 Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
Reviewed by Anders Carlsson.
Unregister plugin from PluginMainThreadScheduler if NPP_New fails
Since the plugin has not been started yet (m_isStarted is not set),
calling stop() will not have any affect, so we manually unregister
in start() before returning.
- plugins/PluginView.cpp: (WebCore::PluginView::start):
- 6:47 AM Changeset in webkit [46697] by
-
- 7 edits in trunk/WebCore
2009-07-27 Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
Reviewed by Anders Calsson.
Join the various versions of PluginView::stop() into one shared implementation
The platform-dependent bits are now ifdef'ed in the shared implementation,
using the XP_ defines (XP_WIN, XP_MACOSX, XP_UNIX) from npapi.h
Differences to the original implementation are as follows:
- The Qt port unregistered the plugin before calling NP_SetWindow with a 0 window handle. Now it's done after (similar to Win)
- The GTK and Qt ports unregistered the plugin before clearing the m_npWindow.ws_info struct. Now it's done after.
- The Win port constructed the DropAllLocks after unsubclassing the window. Now it's done before.
- The Mac, Qt, and GTK ports did not pass a NPSavedData struct to NP_Destroy (like the Win port). Now all ports do.
- The Win port did not call PluginView::setCurrentPluginView() before calling to NP-functions. Now it does.
- plugins/PluginView.cpp: (WebCore::PluginView::start): (WebCore::PluginView::~PluginView): (WebCore::PluginView::stop):
- plugins/PluginViewNone.cpp:
- plugins/gtk/PluginViewGtk.cpp:
- plugins/mac/PluginViewMac.cpp: (WebCore::PluginView::getValueStatic):
- plugins/qt/PluginViewQt.cpp:
- plugins/win/PluginViewWin.cpp: (WebCore::PluginView::handlePostReadFile):
- 1:54 AM Changeset in webkit [46696] by
-
- 1 edit1 add in trunk/WebKitTools
2009-08-02 Kevin Ollivier <kevino@theolliviers.com>
Reviewed by David Levin.
Script for building the wxBrowser sample app for wx.
https://bugs.webkit.org/show_bug.cgi?id=27619
- wx/browser/wscript: Added.
- 1:54 AM Changeset in webkit [46695] by
-
- 1 edit1 add in trunk/WebKit/wx
2009-08-02 Kevin Ollivier <kevino@theolliviers.com>
Reviewed by Jan Alonzo.
Script for building the WebKit library for wx.
https://bugs.webkit.org/show_bug.cgi?id=27619
- wscript: Added.
- 1:54 AM Changeset in webkit [46694] by
-
- 1 edit1 add in trunk/JavaScriptCore
2009-08-02 Kevin Ollivier <kevino@theolliviers.com>
Reviewed by Jan Alonzo.
Script for building the JavaScriptCore library for wx.
https://bugs.webkit.org/show_bug.cgi?id=27619
- wscript: Added.
- 1:54 AM Changeset in webkit [46693] by
-
- 1 edit5 adds in trunk/WebKitTools
2009-08-02 Kevin Ollivier <kevino@theolliviers.com>
Reviewed by Jan Alonzo.
Scripts needed for the waf build.
https://bugs.webkit.org/show_bug.cgi?id=27619
- wx/build: Added.
- wx/build/build_utils.py: Added.
- wx/build/settings.py: Added.
- wx/build/waf_extensions.py: Added.
- wx/build/wxpresets.py: Added.
- 1:05 AM Changeset in webkit [46692] by
-
- 2 edits in trunk/JavaScriptCore
2009-08-02 Yong Li <yong.li@torchmobile.com>
Reviewed by George Staikos.
DateMath depends on strftime and localtime, which need to be imported manually on WinCE
https://bugs.webkit.org/show_bug.cgi?id=26558
- wtf/DateMath.cpp:
- 12:58 AM Changeset in webkit [46691] by
-
- 2 edits in trunk/WebKit/qt
2009-07-30 Laszlo Gombos <Laszlo Gombos>
Reviewed by Tor Arne Vestbø.
[Qt] Initialize HTML5 Application Cache for QtWebKit to a sensible default
https://bugs.webkit.org/show_bug.cgi?id=27866
- Api/qwebpage.cpp: (initializeApplicationCachePathIfNecessary): (QWebPagePrivate::QWebPagePrivate):
- 12:41 AM Changeset in webkit [46690] by
-
- 5 edits in trunk/WebCore
2009-07-30 Joseph Pecoraro <joepeck02@gmail.com>
Reviewed by Timothy Hatcher.
Inspector: let me *edit* css styles in the web inspector.
https://bugs.webkit.org/show_bug.cgi?id=27124
- English.lproj/localizedStrings.js:
- inspector/front-end/ElementsPanel.js: (WebInspector.ElementsPanel): added property stylesheet pointing to 1 stylesheet added to the page if needed
- inspector/front-end/StylesSidebarPane.js: (WebInspector.StylesSidebarPane.prototype.update): handle blank sections (WebInspector.StylesSidebarPane.prototype.addBlankSection): blank section in the correct position (WebInspector.StylesSidebarPane.prototype.appropriateSelectorForNode): helper to get a nice selector for the selectd node (WebInspector.StylePropertiesSection): (WebInspector.StylePropertiesSection.prototype.expand): (WebInspector.StylePropertiesSection.prototype.isPropertyInherited): (WebInspector.StylePropertiesSection.prototype.isPropertyOverloaded): (WebInspector.StylePropertiesSection.prototype.addNewBlankProperty): (WebInspector.StylePropertiesSection.prototype._dblclickEmptySpace): easily create new properties (WebInspector.StylePropertiesSection.prototype._dblclickSelector): (WebInspector.StylePropertiesSection.prototype.startEditingSelector): allow for editing selectors (WebInspector.StylePropertiesSection.prototype.editingSelectorCommitted): (WebInspector.StylePropertiesSection.prototype.editingSelectorCancelled): (WebInspector.StylePropertiesSection.prototype._doesSelectorAffectSelectedNode): helper to check if a selector applies to the selected node (WebInspector.BlankStylePropertiesSection.prototype._dblclick): (WebInspector.BlankStylePropertiesSection.prototype.startEditing): (WebInspector.BlankStylePropertiesSection.prototype.editingCancelled): (WebInspector.BlankStylePropertiesSection.prototype.editingCommitted): (WebInspector.BlankStylePropertiesSection.prototype.makeNormal): morph into a StylePropertiesSection (WebInspector.StylePropertyTreeElement.prototype): (WebInspector.StylePropertyTreeElement.prototype.):
- inspector/front-end/inspector.css:
- 12:33 AM Changeset in webkit [46689] by
-
- 2 edits in trunk/WebCore
2009-07-31 Anton Muhin <antonm@chromium.org>
Reviewed by Adam Barth.
[v8] check if proxy is present before invoking a handler
https://bugs.webkit.org/show_bug.cgi?id=27883
Do not invoke handler function if proxy is null pointer (that would lead to access violation
anyway)
- bindings/v8/custom/V8CustomEventListener.cpp: (WebCore::V8EventListener::callListenerFunction):
Aug 1, 2009:
- 11:05 PM Changeset in webkit [46688] by
-
- 3 edits in trunk/WebKitTools
Reviewed by Darin Adler.
Make pixel test results more consistent across Mac OS X versions
- DumpRenderTree/cg/ImageDiffCG.cpp: (createDifferenceImage): Avoid color correction when rendering the
images into graphics contexts, so that the actual color values are
compared, regardless of how the images are tagged.
- DumpRenderTree/mac/DumpRenderTree.mm: (createWebViewAndOffscreenWindow): Set the window’s color space to the
main screen’s color space, even though the window is off-screen.
- 10:18 PM Changeset in webkit [46687] by
-
- 18 edits4 adds in trunk/WebCore
2009-08-01 Pavel Feldman <pfeldman@chromium.org>
Reviewed by Timothy Hatcher.
Web Inspector: Reimplement Elements Panel so that its
interaction with DOM is serialized.
This is a first cut wuth read support for DOM elements
tree as well as some limited editing. No properties, no
styles, no search capabilities are implemented yet.
Set Preferences.useDOMAgent to true in order to try it
out, otherwise disabled by default.
- GNUmakefile.am:
- WebCore.gypi:
- WebCore.pro:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- WebCoreSources.bkl:
- inspector/InspectorBackend.cpp: (WebCore::InspectorBackend::getChildNodes): (WebCore::InspectorBackend::setAttribute): (WebCore::InspectorBackend::removeAttribute): (WebCore::InspectorBackend::setTextNodeValue):
- inspector/InspectorBackend.h:
- inspector/InspectorBackend.idl:
- inspector/InspectorController.cpp: (WebCore::InspectorController::windowScriptObjectAvailable): (WebCore::InspectorController::setFrontendProxyObject): (WebCore::InspectorController::close): (WebCore::InspectorController::populateScriptObjects): (WebCore::InspectorController::didCommitLoad):
- inspector/InspectorController.h: (WebCore::InspectorController::domAgent):
- inspector/InspectorDOMAgent.cpp: Added.
- inspector/InspectorDOMAgent.h: Added.
- inspector/InspectorFrontend.cpp:
- inspector/InspectorFrontend.h:
- inspector/front-end/Callback.js: Added.
- inspector/front-end/DOMAgent.js: Added.
- inspector/front-end/ElementsPanel.js:
- inspector/front-end/WebKit.qrc:
- inspector/front-end/inspector.html:
- inspector/front-end/inspector.js: (WebInspector.loaded):
- 7:31 PM Changeset in webkit [46686] by
-
- 2 edits in trunk/WebKitTools
Try again to make the Qt build bot happy.
- BuildSlaveSupport/test-result-archive: Create a placeholder file inside the newly-created
directory to prevent 'zip' from failing due to the directory containing no files.
- 7:18 PM Changeset in webkit [46685] by
-
- 2 edits in trunk/WebKitTools
Try and make the Qt build bot happy.
- BuildSlaveSupport/test-result-archive: Handle the case where run-webkit-tests generates
no output files at all and thus does not create the layout-test-results directory.
- 6:59 PM Changeset in webkit [46684] by
-
- 2 edits in trunk/WebKitTools
Move the include of DumpRenderTreeSupport to after DumpRenderTree has been built.
- Scripts/run-webkit-tests:
- 6:41 PM Changeset in webkit [46683] by
-
- 2 edits in trunk/JavaScriptCore
wtf/Threading.h: added include of Platform.h
Reviewed by Mark Rowe.
- wtf/Threading.h: Added #include "Platform.h" since this header uses PLATFORM() and other macros.
- 6:40 PM Changeset in webkit [46682] by
-
- 3 edits3 adds in trunk/WebKitTools
Bug 27923: run-webkit-tests should not invoke "ps" repeatedly on Mac OS X
Fix <https://bugs.webkit.org/show_bug.cgi?id=27923>.
Reviewed by Sam Weinig and David D. Kilzer.
run-webkit-tests invokes "ps" after each test on Mac OS X to determine whether DumpRenderTree is
in the process of crashing. We can do the same test more efficiently with a simple call to sysctl.
I couldn't find any built-in way of doing this directly from perl, so we do it from a simple C module
instead. This speeds up run-webkit-tests by around 8%.
- DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
- DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupport.c: Added.
(processIsCrashing):
- DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupportTiger.pm: Added. Tiger does not have the SWIG tool
that is used to generate the Perl binding to the C code, so we fall back to the old implementation on Tiger.
- DumpRenderTree/mac/PerlSupport/Makefile: Added.
- Scripts/run-webkit-tests:
- 6:04 PM Changeset in webkit [46681] by
-
- 6 edits in trunk/WebCore
2009-08-01 Ryosuke Niwa <rniwa@webkit.org>
Reviewed by Adele Peterson.
isContentEditable function in htmlediting.* must be removed
https://bugs.webkit.org/show_bug.cgi?id=27870
This patch removes isContentEditable function in htmlediting.cpp and
replaces all usage by calling Node::isContentEditable or its derivatives.
- editing/AppendNodeCommand.cpp: ditto (WebCore::AppendNodeCommand::AppendNodeCommand): ditto
- editing/IndentOutdentCommand.cpp: ditto (WebCore::IndentOutdentCommand::outdentParagraph): ditto
- editing/InsertNodeBeforeCommand.cpp: ditto (WebCore::InsertNodeBeforeCommand::InsertNodeBeforeCommand): ditto
- editing/htmlediting.cpp: ditto (WebCore::enclosingNodeWithTag): ditto (WebCore::enclosingNodeOfType): ditto (WebCore::canMergeLists): ditto
- editing/htmlediting.h: Updated prototype
- 5:24 PM Changeset in webkit [46680] by
-
- 2 edits in trunk/WebKitTools
Display the reminder once rather than once per ChangeLog.
Reviewed by David D. Kilzer.
- Scripts/prepare-ChangeLog:
- 4:00 PM Changeset in webkit [46679] by
-
- 2 edits in trunk/JavaScriptCore
Roll out r46668 as it was misinformed. ScopeChain is only used with placement new.
Rubber-stamped by Oliver Hunt.
- runtime/ScopeChain.h:
- 3:52 PM UpdatingBugzilla edited by
- (diff)
- 3:49 PM UpdatingBugzilla edited by
- (diff)
- 3:48 PM UpdatingBugzilla edited by
- (diff)
- 3:48 PM UpdatingBugzilla edited by
- (diff)
- 3:22 PM UpdatingBugzilla edited by
- (diff)
- 3:08 PM UpdatingBugzilla edited by
- (diff)
- 3:01 PM UpdatingBugzilla edited by
- (diff)
- 2:57 PM UpdatingBugzilla edited by
- (diff)
- 2:57 PM UpdatingBugzilla edited by
- (diff)
- 2:55 PM UpdatingBugzilla edited by
- (diff)
- 1:13 PM Changeset in webkit [46678] by
-
- 3 edits2 deletes in trunk/WebKitTools
Roll out r46676. Tiger is why we can't have nice things :-(
- 1:09 PM Changeset in webkit [46677] by
-
- 2 edits in trunk/LayoutTests
2009-08-01 Brian Weinstein <bweinstein@apple.com>
Rubber-stamped by Mark Rowe.
Remove a non-existent test from the Windows Skipped List.
- platform/win/Skipped:
- 1:05 PM Changeset in webkit [46676] by
-
- 3 edits3 adds in trunk/WebKitTools
Bug 27923: run-webkit-tests should not invoke "ps" repeatedly on Mac OS X
Fix <https://bugs.webkit.org/show_bug.cgi?id=27923>.
Reviewed by Sam Weinig.
run-webkit-tests invokes "ps" after each test on Mac OS X to determine whether DumpRenderTree is
in the process of crashing. We can do the same test more efficiently with a simple call to sysctl.
I couldn't find any built-in way of doing this directly from perl, so we do it from a simple C module
instead. This speeds up run-webkit-tests by around 8%.
- DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
- DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupport.c: Added.
(processIsCrashing):
- DumpRenderTree/mac/PerlSupport/Makefile: Added.
- Scripts/run-webkit-tests:
- 11:35 AM Changeset in webkit [46675] by
-
- 2 edits in trunk/JavaScriptCore
2009-08-01 Zoltan Horvath <hzoltan@inf.u-szeged.hu>
Allow custom memory allocation control for JavaScriptCore's HashMap class
http://bugs.webkit.org/show_bug.cgi?id=27871
Inherits HashMap class from FastAllocBase because it has been
instantiated by 'new' in JavaScriptCore/API/JSClassRef.cpp:148.
- wtf/RefPtrHashMap.h: (WTF::):
- 11:17 AM Changeset in webkit [46674] by
-
- 2 edits1 add in trunk/LayoutTests
2009-08-01 Brady Eidson <beidson@apple.com>
For my new test I landed last night, check in Tiger-specific results, and skip on Windows.
- platform/mac-tiger/http/tests/misc/favicon-loads-with-images-disabled-expected.txt: Added.
- platform/win/Skipped: Add to the skipped list because the failure needs exploration.
- 10:58 AM Changeset in webkit [46673] by
-
- 2 edits in trunk/LayoutTests
2009-08-01 John Abd-El-Malek <jam@chromium.org>
Reviewed by Eric Seidel.
Update test to work with multi-process message ports.
- fast/events/message-channel-gc.html:
- 7:29 AM Changeset in webkit [46672] by
-
- 2 edits in trunk/WebKitTools
resolve-ChangeLogs: add error checking to git ls-files command on close()
Reviewed by Eric Seidel.
Item 2 of <https://bugs.webkit.org/show_bug.cgi?id=18599#c0>.
- Scripts/resolve-ChangeLogs: Added error checking to close() after running git ls-files. Added error checking to all system() calls by checking for a non-zero WEXITSTATUS($?).
Changed " die;" expressions to "or die $!;". - 7:29 AM Changeset in webkit [46671] by
-
- 2 edits in trunk/WebKitTools
<http://webkit.org/b/18599> resolve-ChangeLogs doesn't work with relative paths
Reviewed by Eric Seidel.
- Scripts/resolve-ChangeLogs: Used chdirReturningRelativePath() and determineVCSRoot() to change directories to the root of the project before running the command and to provide a path for removeChangeLogArguments() to make sure any ChangeLog arguments on the command line are still found. (canonicalRelativePath): Added. Returns a canonical path (e.g., stripping 'dir/../' from the path) relative to the current directory. (removeChangeLogArguments): Added argument which contains a relative path that must be prepended to any ChangeLog arguments. Used canonicalRelativePath() and File::Spec->catfile() to construct a normalized, relative path to each file.
- 7:29 AM Changeset in webkit [46670] by
-
- 3 edits in trunk/WebKitTools
Implement VCSUtils::chdirReturningRelativePath()
Reviewed by Eric Seidel.
Step 2 to fix:
<http://webkit.org/b/18599> resolve-ChangeLogs doesn't work with relative paths
- Scripts/VCSUtils.pm: (VCSUtils::chdirReturningRelativePath): Moved here from chdirAndGetDifference() in svn-create-patch.
- Scripts/svn-create-patch: Switched to use chdirReturningRelativePath() instead of chdirAndGetDifference(). (chdirAndGetDifference): Removed.
- 7:23 AM Changeset in webkit [46669] by
-
- 3 edits in trunk/WebKitTools
Implement VCSUtils::determineVCSRoot()
Reviewed by Eric Seidel.
Step 1 to fix:
<http://webkit.org/b/18599> resolve-ChangeLogs doesn't work with relative paths
- Scripts/VCSUtils.pm: Removed reference to webkitdirs module. (VCSUtils::EXPORT): Added &determineVCSRoot. Realphabetized. (VCSUtils::determineGitRoot): Added. Based on code in commit-log-editor. (VCSUtils::determineVCSRoot): Implemented using determineGitRoot() and determineSVNRoot().
- Scripts/commit-log-editor: Replaced use of topLevelSourceDirectory() with determineVCSRoot(). Resorted use statements. (topLevelSourceDirectory): Removed.
- 1:19 AM Changeset in webkit [46668] by
-
- 2 edits in trunk/JavaScriptCore
2009-08-01 Zoltan Horvath <hzoltan@inf.u-szeged.hu>
Allow custom memory allocation control for JavaScriptCore's ScopeChain class
https://bugs.webkit.org/show_bug.cgi?id=27834
Inherits ScopeChain class from FastAllocBase because it has been
instantiated by 'new' in JavaScriptCore/runtime/JSFunction.h:109.
- runtime/ScopeChain.h:
- 12:51 AM Changeset in webkit [46667] by
-
- 2 edits in trunk/JavaScriptCore
2009-08-01 Zoltan Horvath <hzoltan@inf.u-szeged.hu>
Reviewed by Darin Adler.
Allow custom memory allocation control for JavaScriptCore's RegExpConstructorPrivate struct
https://bugs.webkit.org/show_bug.cgi?id=27833
Inherits RegExpConstructorPrivate class from FastAllocBase because it has been
instantiated by 'new' in JavaScriptCore/runtime/RegExpConstructor.cpp:152.
- runtime/RegExpConstructor.cpp:
- 12:37 AM Changeset in webkit [46666] by
-
- 2 edits in trunk/WebCore
2009-08-01 John Abd-El-Malek <jam@chromium.org>
Reviewed by Adam Barth.
Fix a message port handle always getting marked as reachable once it gets entangled.
No tests since this only arises with the Chromium multi-process message port implementation
which isn't in this repostiory.
- bindings/v8/V8GCController.cpp: (WebCore::GCEpilogueVisitor::visitDOMWrapper):
- 12:23 AM Changeset in webkit [46665] by
-
- 1 edit2 adds in trunk/LayoutTests
2009-08-01 Evan Martin <evan@chromium.org>
Reviewed by Adam Barth.
Add a regression test for a crash when a page has smart quotes in a
mime type.
- fast/parser/smart-quotes-in-tag-expected.txt: Added.
- fast/parser/smart-quotes-in-tag.html: Added.