Timeline
Oct 1, 2008:
- 11:44 PM Changeset in webkit [37184] by
-
- 54 edits1 copy in trunk
2008-10-01 Geoffrey Garen <ggaren@apple.com>
Reviewed by Darin Adler and Cameron Zwarich.
Preliminary step toward dynamic recompilation: Standardized and
simplified the parsing interface.
The main goal in this patch is to make it easy to ask for a duplicate
compilation, and get back a duplicate result -- same source URL, same
debugger / profiler ID, same toString behavior, etc.
The basic unit of compilation and evaluation is now SourceCode, which
encompasses a SourceProvider, a range in that provider, and a starting
line number.
A SourceProvider now encompasses a source URL, and *is* a source ID,
since a pointer is a unique identifier.
- API/JSBase.cpp: (JSEvaluateScript): (JSCheckScriptSyntax): Provide a SourceCode to the Interpreter, since other APIs are no longer supported.
- VM/CodeBlock.h: (JSC::EvalCodeCache::get): Provide a SourceCode to the Interpreter, since other APIs are no longer supported. (JSC::CodeBlock::CodeBlock): ASSERT something that used to be ASSERTed by our caller -- this is a better bottleneck.
- VM/CodeGenerator.cpp: (JSC::CodeGenerator::CodeGenerator): Updated for the fact that FunctionBodyNode's parameters are no longer a WTF::Vector.
- kjs/Arguments.cpp: (JSC::Arguments::Arguments): ditto
- kjs/DebuggerCallFrame.cpp: (JSC::DebuggerCallFrame::evaluate): Provide a SourceCode to the Parser, since other APIs are no longer supported.
- kjs/FunctionConstructor.cpp: (JSC::constructFunction): Provide a SourceCode to the Parser, since other APIs are no longer supported. Adopt FunctionBodyNode's new "finishParsing" API.
- kjs/JSFunction.cpp: (JSC::JSFunction::lengthGetter): (JSC::JSFunction::getParameterName): Updated for the fact that FunctionBodyNode's parameters are no longer a wtf::Vector.
- kjs/JSFunction.h: Nixed some cruft.
- kjs/JSGlobalObjectFunctions.cpp: (JSC::globalFuncEval): Provide a SourceCode to the Parser, since other APIs are no longer supported.
- kjs/Parser.cpp: (JSC::Parser::parse): Require a SourceCode argument, instead of a bunch of broken out parameters. Stop tracking sourceId as an integer, since we use the SourceProvider pointer for this now. Don't clamp the startingLineNumber, since SourceCode does that now.
- kjs/Parser.h: (JSC::Parser::parse): Standardized the parsing interface to require a SourceCode.
- kjs/Shell.cpp: (functionRun): (functionLoad): (prettyPrintScript): (runWithScripts): (runInteractive): Provide a SourceCode to the Interpreter, since other APIs are no longer supported.
- kjs/SourceProvider.h: (JSC::SourceProvider::SourceProvider): (JSC::SourceProvider::url): (JSC::SourceProvider::asId): (JSC::UStringSourceProvider::create): (JSC::UStringSourceProvider::UStringSourceProvider): Added new responsibilities described above.
- kjs/SourceRange.h: (JSC::SourceCode::SourceCode): (JSC::SourceCode::toString): (JSC::SourceCode::provider): (JSC::SourceCode::firstLine): (JSC::SourceCode::data): (JSC::SourceCode::length): Added new responsibilities described above. Renamed SourceRange to SourceCode, based on review feedback. Added a makeSource function for convenience.
- kjs/debugger.h: Provide a SourceCode to the client, since other APIs are no longer supported.
- kjs/grammar.y: Provide startingLineNumber when creating a SourceCode.
- kjs/debugger.h: Treat sourceId as intptr_t to avoid loss of precision on 64bit platforms.
- kjs/interpreter.cpp: (JSC::Interpreter::checkSyntax): (JSC::Interpreter::evaluate):
- kjs/interpreter.h: Require a SourceCode instead of broken out arguments.
- kjs/lexer.cpp: (JSC::Lexer::setCode):
- kjs/lexer.h: (JSC::Lexer::sourceRange): Fold together the SourceProvider and line number into a SourceCode. Fixed a bug where the Lexer would accidentally keep alive the last SourceProvider forever.
- kjs/nodes.cpp: (JSC::ScopeNode::ScopeNode): (JSC::ProgramNode::ProgramNode): (JSC::ProgramNode::create): (JSC::EvalNode::EvalNode): (JSC::EvalNode::generateCode): (JSC::EvalNode::create): (JSC::FunctionBodyNode::FunctionBodyNode): (JSC::FunctionBodyNode::finishParsing): (JSC::FunctionBodyNode::create): (JSC::FunctionBodyNode::generateCode): (JSC::ProgramNode::generateCode): (JSC::FunctionBodyNode::paramString):
- kjs/nodes.h: (JSC::ScopeNode::): (JSC::ScopeNode::sourceId): (JSC::FunctionBodyNode::): (JSC::FunctionBodyNode::parameterCount): (JSC::FuncExprNode::): (JSC::FuncDeclNode::): Store a SourceCode in all ScopeNodes, since SourceCode is now responsible for tracking URL, ID, etc. Streamlined some ad hoc FunctionBodyNode fixups into a "finishParsing" function, to help make clear what you need to do in order to finish parsing a FunctionBodyNode.
- wtf/Vector.h: (WTF::::releaseBuffer): Don't ASSERT that releaseBuffer() is only called when buffer is not 0, since FunctionBodyNode is more than happy to get back a 0 buffer, and other functions like RefPtr::release() allow for 0, too.
JavaScriptGlue:
2008-10-01 Geoffrey Garen <ggaren@apple.com>
Reviewed by Darin Adler and Cameron Zwarich.
- JSRun.cpp: (JSRun::Evaluate): (JSRun::CheckSyntax): Provide a SourceCode to the Interpreter, since other APIs are no longer supported.
WebCore:
2008-10-01 Geoffrey Garen <ggaren@apple.com>
Reviewed by Darin Adler and Cameron Zwarich.
Updated for JavaScriptCore API changes: use a SourceCode instead of
broken out parameters; treat sourceId as intptr_t.
- ForwardingHeaders/kjs/SourceRange.h: Copied from ForwardingHeaders/kjs/SourceProvider.h.
- bindings/js/JSXMLHttpRequestCustom.cpp: (WebCore::JSXMLHttpRequest::send):
- bindings/js/ScriptController.cpp: (WebCore::ScriptController::evaluate):
- bindings/js/StringSourceProvider.h: (WebCore::StringSourceProvider::create): (WebCore::StringSourceProvider::StringSourceProvider):
(WebCore::makeSource): Added a makeSource function for convenience.
- bindings/objc/WebScriptObject.mm: (-[WebScriptObject evaluateWebScript:]):
- bridge/NP_jsobject.cpp: (_NPN_Evaluate):
- bridge/jni/jni_jsobject.mm: (JavaJSObject::call): (JavaJSObject::eval): (JavaJSObject::getMember): (JavaJSObject::setMember): (JavaJSObject::removeMember):
- bridge/jni/jni_runtime.h: (JSC::Bindings::JavaString::operator UString): Replaced the explicit ustring() function with an implicit operator because this class already holds a UString::rep.
- page/Console.cpp: (WebCore::retrieveLastCaller): (WebCore::Console::trace):
- page/InspectorController.cpp: (WebCore::jsStringRef): (WebCore::InspectorController::addBreakpoint): (WebCore::InspectorController::removeBreakpoint): (WebCore::InspectorController::didParseSource): (WebCore::InspectorController::failedToParseSource):
- page/InspectorController.h:
- page/JavaScriptCallFrame.cpp: (WebCore::JavaScriptCallFrame::JavaScriptCallFrame):
- page/JavaScriptCallFrame.h: (WebCore::JavaScriptCallFrame::create): (WebCore::JavaScriptCallFrame::sourceIdentifier): (WebCore::JavaScriptCallFrame::update):
- page/JavaScriptDebugListener.h:
- page/JavaScriptDebugServer.cpp: (WebCore::JavaScriptDebugServer::addBreakpoint): (WebCore::JavaScriptDebugServer::removeBreakpoint): (WebCore::JavaScriptDebugServer::hasBreakpoint): (WebCore::dispatchDidParseSource): (WebCore::dispatchFailedToParseSource): (WebCore::JavaScriptDebugServer::sourceParsed): (WebCore::JavaScriptDebugServer::callEvent): (WebCore::JavaScriptDebugServer::atStatement): (WebCore::JavaScriptDebugServer::returnEvent): (WebCore::JavaScriptDebugServer::exception): (WebCore::JavaScriptDebugServer::willExecuteProgram): (WebCore::JavaScriptDebugServer::didExecuteProgram): (WebCore::JavaScriptDebugServer::didReachBreakpoint):
- page/JavaScriptDebugServer.h:
- page/inspector/ScriptsPanel.js: Renamed internal uses of sourceId and sourceIdentifier to sourceID.
WebKit/mac:
2008-10-01 Geoffrey Garen <ggaren@apple.com>
Reviewed by Darin Adler and Cameron Zwarich.
Updated for JavaScriptCore API changes: use a SourceCode instead of
broken out parameters; treat sourceId as intptr_t.
We still treat sourceId as int in some cases because of DashCode. See
<rdar://problem/6263293> WebScriptDebugDelegate should use intptr_t for
sourceId, not int.
- WebView/WebScriptDebugger.h:
- WebView/WebScriptDebugger.mm: (toNSString): (WebScriptDebugger::sourceParsed): (WebScriptDebugger::callEvent): (WebScriptDebugger::atStatement): (WebScriptDebugger::returnEvent): (WebScriptDebugger::exception): (WebScriptDebugger::willExecuteProgram): (WebScriptDebugger::didExecuteProgram): (WebScriptDebugger::didReachBreakpoint):
- 11:08 PM Changeset in webkit [37183] by
-
- 6 edits in trunk/WebCore
Reviewed by Geoffrey Garen.
- fix SVGFontFaceElement leak seen on svg/custom/acid3-test-77.html
Broke a ref cycle by changing the m_svgFontFaceElement members of
CSSFontFaceSource and CSSFontFaceSrcValue from RefPtrs to plain
pointers. Also made sure that the @font-face rule added by
SVGFontFaceElement to the document's mapped element sheet is removed
when the font-face element is deleted or moved to another document.
- css/CSSFontFaceSource.cpp: (WebCore::CSSFontFaceSource::CSSFontFaceSource): (WebCore::CSSFontFaceSource::getFontData):
- css/CSSFontFaceSource.h: (WebCore::CSSFontFaceSource::svgFontFaceElement):
- css/CSSFontFaceSrcValue.h: (WebCore::CSSFontFaceSrcValue::svgFontFaceElement): (WebCore::CSSFontFaceSrcValue::CSSFontFaceSrcValue):
- svg/SVGFontFaceElement.cpp: (WebCore::SVGFontFaceElement::~SVGFontFaceElement): (WebCore::SVGFontFaceElement::willMoveToNewOwnerDocument): (WebCore::SVGFontFaceElement::didMoveToNewOwnerDocument): (WebCore::SVGFontFaceElement::removeFromMappedElementSheet):
- svg/SVGFontFaceElement.h:
- 10:06 PM Changeset in webkit [37182] by
-
- 3 edits in trunk/JavaScriptCore
2008-10-01 Cameron Zwarich <zwarich@apple.com>
Reviewed by Maciej Stachowiak.
Bug 21289: REGRESSION (r37160): Inspector crashes on load
<https://bugs.webkit.org/show_bug.cgi?id=21289>
The code in Arguments::mark() in r37160 was wrong. It marks indices in
d->registers, but that makes no sense (they are local variables, not
arguments). It should mark those indices in d->registerArray instead.
This patch also changes Arguments::copyRegisters() to use d->numParameters
instead of recomputing it.
- kjs/Arguments.cpp: (JSC::Arguments::mark):
- kjs/Arguments.h: (JSC::Arguments::copyRegisters):
- 10:02 PM Changeset in webkit [37181] by
-
- 5 edits1 add1 delete in trunk/WebCore
Bug 20315: Memory leak with Canvas getImageData
<https://bugs.webkit.org/show_bug.cgi?id=20315>
Reviewed by Maciej Stachowiak
This wasn't a leak, the issue was that we were reporting the cost
of the CanvasPixelArray when creating the JSCanvasPixelArray wrapper
and we should have been reporting the cost when we create the
JSImageData wrapper.
- 9:54 PM Changeset in webkit [37180] by
-
- 3 edits in trunk/WebCore
Reviewed by Mark Rowe.
- https://bugs.webkit.org/show_bug.cgi?id=21293 REGRESSION: Crash beneath RenderSVGViewportContainer::viewportTransform() during SVGSVGElement destruction
- svg/SVGMarkerElement.cpp: (WebCore::SVGMarkerElement::~SVGMarkerElement): Call detach() here so that renderer destruction happens before the SVGMarkerElement is destroyed.
- svg/SVGSVGElement.cpp: (WebCore::SVGSVGElement::~SVGSVGElement): Ditto for SVGSVGElement.
- 7:48 PM Changeset in webkit [37179] by
-
- 1 edit in trunk/WebCore/platform/win/ScrollViewWin.cpp
Fix Win32 bustage.
- 6:47 PM Changeset in webkit [37178] by
-
- 2 edits in trunk/WebCore
2008-10-01 Evan Martin <evan@chromium.org>
Reviewed by Eric Seidel.
- css/makeprop.pl: Die if gperf fails.
- 6:43 PM Changeset in webkit [37177] by
-
- 2 edits in trunk/WebCore
2008-10-01 Evan Martin <evan@chromium.org>
Reviewed by Eric Seidel.
- loader/icon/IconDatabase.h: IconDatabase uses HashMap, so it needs to #include the header.
- 6:35 PM Changeset in webkit [37176] by
-
- 2 edits in trunk/WebCore
Reviewed by Mark Rowe.
- fix an assertion failure in http/tests/security/canvas-remote-read-svg-image.html due to re-entry into Cache::pruneDeadResources()
- loader/Cache.cpp: (WebCore::Cache::remove): Disable pruning temporarily during CachedResource deletion.
- 6:30 PM Changeset in webkit [37175] by
-
- 8 edits in trunk/JavaScriptCore
2008-09-30 Darin Adler <Darin Adler>
Reviewed by Eric Seidel.
- https://bugs.webkit.org/show_bug.cgi?id=21214 work on getting rid of ExecState
Eliminate some unneeded uses of dynamicGlobalObject.
- API/JSClassRef.cpp: (OpaqueJSClass::contextData): Changed to use a map in the global data instead of on the global object. Also fixed to use only a single hash table lookup.
- API/JSObjectRef.cpp: (JSObjectMakeConstructor): Use lexicalGlobalObject rather than dynamicGlobalObject to get the object prototype.
- kjs/ArrayPrototype.cpp: (JSC::arrayProtoFuncToString): Use arrayVisitedElements set in global data rather than in the global object. (JSC::arrayProtoFuncToLocaleString): Ditto. (JSC::arrayProtoFuncJoin): Ditto.
- kjs/JSGlobalData.cpp: (JSC::JSGlobalData::JSGlobalData): Don't initialize opaqueJSClassData, since it's no longer a pointer. (JSC::JSGlobalData::~JSGlobalData): We still need to delete all the values, but we don't need to delete the map since it's no longer a pointer.
- kjs/JSGlobalData.h: Made opaqueJSClassData a map instead of a pointer to a map. Also added arrayVisitedElements.
- kjs/JSGlobalObject.h: Removed arrayVisitedElements.
- kjs/Shell.cpp: (functionRun): Use lexicalGlobalObject instead of dynamicGlobalObject. (functionLoad): Ditto.
- 6:05 PM Changeset in webkit [37174] by
-
- 1 edit in trunk/WebKit/gtk/WebCoreSupport/ChromeClientGtk.cpp
Fix Gtk repaint method finally. Should fix build bustage.
- 5:56 PM Changeset in webkit [37173] by
-
- 1 edit in trunk/WebCore/platform/gtk/ScrollViewGtk.cpp
Fix Gtk bustage from removal of update(). Make sure to include HostWindow.h
- 5:56 PM Changeset in webkit [37172] by
-
- 1 edit in trunk/WebCore/platform/gtk/ScrollViewGtk.cpp
Fix Gtk bustage from removal of update().
- 5:48 PM Changeset in webkit [37171] by
-
- 3 edits in trunk/WebCore
Reviewed by Mark Rowe.
- fix SVGFontElement leaks seen on buildbot by breaking a ref cycle
- svg/SVGFontFaceElement.cpp: (WebCore::SVGFontFaceElement::rebuildFontFace):
- svg/SVGFontFaceElement.h: (WebCore::SVGFontFaceElement::associatedFontElement):
- 5:40 PM Changeset in webkit [37170] by
-
- 1 edit in trunk/WebKit/win/WebView.cpp
Fix Win bustage.
- 5:22 PM Changeset in webkit [37169] by
-
- 1 edit in trunk/WebKit/gtk/WebCoreSupport/ChromeClientGtk.h
Fix Gtk bustage.
- 5:21 PM Changeset in webkit [37168] by
-
- 1 edit in trunk/WebCore/platform/qt/ScrollbarThemeQt.cpp
Fix Qt bustage.
- 5:20 PM Changeset in webkit [37167] by
-
- 1 edit in trunk/WebKit/win/WebCoreSupport/WebChromeClient.cpp
Fix Win bustage.
- 4:38 PM Changeset in webkit [37166] by
-
- 2 edits in trunk/JavaScriptCore
2008-10-01 Cameron Zwarich <zwarich@apple.com>
Not reviewed.
Speculative Windows build fix.
- kjs/grammar.y:
- 3:43 PM Changeset in webkit [37165] by
-
- 1 edit in trunk/WebCore/page/PrintContext.cpp
Fix Qt bustage.
- 3:43 PM Changeset in webkit [37164] by
-
- 1 edit in trunk/WebCore/page/PrintContext.cpp
Fix Qt bustage.
- 3:34 PM Changeset in webkit [37163] by
-
- 2 edits in trunk/WebCore
Reviewed by Maciej Stachowiak.
Document the rounding behavior of the mapRect(IntRect) function in
AffineTransform.h.
- platform/graphics/AffineTransform.h:
- 3:30 PM Changeset in webkit [37162] by
-
- 13 edits in trunk
WebCore:
2008-10-01 David Hyatt <hyatt@apple.com>
Move prohibitsScrolling from the Frame to the ScrollView.
Reviewed by Sam Weinig
- WebCore.base.exp:
- page/Frame.cpp: (WebCore::FramePrivate::FramePrivate):
- page/Frame.h:
- page/FramePrivate.h:
- page/FrameView.cpp: (WebCore::FrameView::scrollRectIntoViewRecursively): (WebCore::FrameView::setScrollPosition):
- platform/ScrollView.cpp: (WebCore::ScrollView::init): (WebCore::ScrollView::scrollRectIntoViewRecursively): (WebCore::ScrollView::setScrollPosition):
- platform/ScrollView.h: (WebCore::ScrollView::setProhibitsScrolling): (WebCore::ScrollView::prohibitsScrolling):
- platform/gtk/ScrollViewGtk.cpp: (WebCore::ScrollView::updateScrollbars):
- platform/qt/ScrollViewQt.cpp: (WebCore::ScrollView::updateScrollbars):
- platform/win/ScrollViewWin.cpp: (WebCore::ScrollView::updateScrollbars):
WebKit/mac:
2008-10-01 David Hyatt <hyatt@apple.com>
Move prohibitsScrolling from the Frame to the ScrollView.
Reviewed by Sam Weinig
- WebView/WebView.mm: (-[WebView setProhibitsMainFrameScrolling:]):
- 3:24 PM Changeset in webkit [37161] by
-
- 2 edits in trunk/WebCore
Fix leaks seen during http/tests/xmlhttprequest/access-control-basic-non-simple-allow.html.
Reviewed by Geoff Garen.
- xml/XMLHttpRequest.cpp:
(WebCore::XMLHttpRequest::didFinishLoadingPreflight): Balance the ref and GC protect
that we do during the loadRequestAsynchronously of the preflight request with a deref and
GC unprotect.
- 3:18 PM Changeset in webkit [37160] by
-
- 19 edits in trunk
2008-10-01 Cameron Zwarich <zwarich@apple.com>
Reviewed by Darin Adler.
Bug 21123: using "arguments" in a function should not force creation of an activation object
<https://bugs.webkit.org/show_bug.cgi?id=21123>
Make the 'arguments' object not require a JSActivation. We store the
'arguments' object in the OptionalCalleeArguments call frame slot. We
need to be able to get the original 'arguments' object to tear it off
when returning from a function, but 'arguments' may be assigned to in a
number of ways.
Therefore, we use the OptionalCalleeArguments slot when we want to get
the original activation or we know that 'arguments' was not assigned a
different value. When 'arguments' may have been assigned a new value,
we use a new local variable that is initialized with 'arguments'. Since
a function parameter named 'arguments' may overwrite the value of
'arguments', we also need to be careful to look up 'arguments' in the
symbol table, so we get the parameter named 'arguments' instead of the
local variable that we have added for holding the 'arguments' object.
This is a 19.1% win on the V8 Raytrace benchmark using the SunSpider
harness, and a 20.7% win using the V8 harness. This amounts to a 6.5%
total speedup on the V8 benchmark suite using the V8 harness.
- VM/CTI.cpp: (JSC::CTI::privateCompileMainPass):
- VM/CodeBlock.h:
- VM/CodeGenerator.cpp: (JSC::CodeGenerator::CodeGenerator):
- VM/Machine.cpp: (JSC::Machine::unwindCallFrame): (JSC::Machine::privateExecute): (JSC::Machine::retrieveArguments): (JSC::Machine::cti_op_init_arguments): (JSC::Machine::cti_op_ret_activation_arguments):
- VM/Machine.h:
- VM/RegisterFile.h: (JSC::RegisterFile::):
- kjs/Arguments.cpp: (JSC::Arguments::mark): (JSC::Arguments::fillArgList): (JSC::Arguments::getOwnPropertySlot): (JSC::Arguments::put):
- kjs/Arguments.h: (JSC::Arguments::setRegisters): (JSC::Arguments::init): (JSC::Arguments::Arguments): (JSC::Arguments::copyRegisters): (JSC::JSActivation::copyRegisters):
- kjs/JSActivation.cpp: (JSC::JSActivation::argumentsGetter):
- kjs/JSActivation.h: (JSC::JSActivation::JSActivationData::JSActivationData):
- kjs/grammar.y:
- kjs/nodes.h: (JSC::ScopeNode::setUsesArguments):
- masm/X86Assembler.h: (JSC::X86Assembler::): (JSC::X86Assembler::orl_mr):
LayoutTests:
- fast/js/arguments-expected.txt:
- fast/js/function-dot-arguments-expected.txt:
- fast/js/resources/arguments.js:
- fast/js/resources/function-dot-arguments.js:
- 3:12 PM Changeset in webkit [37159] by
-
- 12 edits in trunk
2008-10-01 David Hyatt <hyatt@apple.com>
Rename allowsScrolling/setAllowsScrolling to canHaveScrollbars/setCanHaveScrollbars to make it more
clear that the boolean doesn't actually stop all scrolling. It just gets rid of scrollbars.
Reviewed by Tim Hatcher
- WebCore.base.exp:
- page/FrameView.cpp: (WebCore::FrameView::setCanHaveScrollbars):
- page/FrameView.h:
- platform/ScrollView.cpp: (WebCore::ScrollView::setCanHaveScrollbars): (WebCore::ScrollView::wheelEvent):
- platform/ScrollView.h: (WebCore::ScrollView::canHaveScrollbars):
- 2:48 PM Changeset in webkit [37158] by
-
- 1 edit in trunk/WebKit/win/WebCoreSupport/WebChromeClient.h
Fix Win bustage.
- 2:19 PM Changeset in webkit [37157] by
-
- 3 edits in trunk/WebCore
Reviewed by Mark Rowe.
- fix some CachedResource leaks seen on buildbot
The issue here was that emptying the cache was a no-op when it only
contained resources with no data. Changed to go after those
resources when the desired cache capacity is zero.
- loader/Cache.cpp: (WebCore::Cache::pruneLiveResources): (WebCore::Cache::pruneDeadResources):
- loader/Cache.h: (WebCore::Cache::prune):
- 2:11 PM Changeset in webkit [37156] by
-
- 7 edits in trunk/WebCore
2008-10-01 David Hyatt <hyatt@apple.com>
Make isOffscreen cross-platform. Only Mac implements this method, so hold off on adding API to the
HostWindow object until other platforms decide they want this method. (We need it for Win though at some point.)
Reviewed by Adam Roben
- platform/ScrollView.cpp: (WebCore::ScrollView::isOffscreen): (WebCore::ScrollView::platformIsOffscreen):
- platform/ScrollView.h:
- platform/gtk/ScrollViewGtk.cpp:
- platform/mac/ScrollViewMac.mm: (WebCore::ScrollView::platformIsOffscreen):
- platform/qt/ScrollViewQt.cpp:
- platform/wx/ScrollViewWx.cpp:
- 1:58 PM Changeset in webkit [37155] by
-
- 5 edits in trunk/WebCore
2008-10-01 David Hyatt <hyatt@apple.com>
Make show/hide/setParentVisible cross-platform on ScrollView.
Reviewed by Adam Roben
- platform/ScrollView.cpp: (WebCore::ScrollView::setParentVisible): (WebCore::ScrollView::show): (WebCore::ScrollView::hide):
- platform/ScrollView.h:
- platform/win/ScrollViewWin.cpp:
- 1:41 PM Changeset in webkit [37154] by
-
- 3 edits2 adds in trunk
WebCore:
2008-10-01 Kevin McCullough <kmccullough@apple.com>
Reviewed by Dan Bernstein.
https://bugs.webkit.org/show_bug.cgi?id=21284
Bug 21284: Max height affects max width
- Looks like a cut and paste bug
- Added layout test fast/css/max-height-and-max-width.html
- css/CSSComputedStyleDeclaration.cpp: (WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue):
LayoutTests:
2008-10-01 Kevin McCullough <kmccullough@apple.com>
Reviewed by Dan Bernstein.
https://bugs.webkit.org/show_bug.cgi?id=21284
Bug 21284: Max height affects max width
- Looks like a cut and paste bug
- fast/css/max-height-and-max-width-expected.txt: Added.
- fast/css/max-height-and-max-width.html: Added.
- 1:34 PM Changeset in webkit [37153] by
-
- 25 edits in trunk
WebCore:
2008-10-01 David Hyatt <hyatt@apple.com>
Make contentsToScreen/screenToContents cross-platform. Only implemented by Mac/Win right now.
Reviewed by Adam Roben
- loader/EmptyClients.h: (WebCore::EmptyChromeClient::screenToWindow): (WebCore::EmptyChromeClient::windowToScreen):
- page/Chrome.cpp: (WebCore::Chrome::screenToWindow): (WebCore::Chrome::windowToScreen):
- page/Chrome.h:
- page/ChromeClient.h:
- platform/HostWindow.h:
- platform/ScrollView.cpp: (WebCore::ScrollView::contentsToScreen): (WebCore::ScrollView::screenToContents): (WebCore::ScrollView::platformContentsToScreen): (WebCore::ScrollView::platformScreenToContents):
- platform/ScrollView.h:
- platform/mac/ScrollViewMac.mm: (WebCore::ScrollView::platformContentsToScreen): (WebCore::ScrollView::platformScreenToContents):
- platform/win/ScrollViewWin.cpp:
WebKit/gtk:
2008-10-01 David Hyatt <hyatt@apple.com>
Make contentsToScreen/screenToContents cross-platform. Only implemented by Mac/Win right now.
Reviewed by Adam Roben
- WebCoreSupport/ChromeClientGtk.cpp: (WebKit::ChromeClient::windowToScreen): (WebKit::ChromeClient::screenToWindow):
- WebCoreSupport/ChromeClientGtk.h:
WebKit/mac:
2008-10-01 David Hyatt <hyatt@apple.com>
Make contentsToScreen/screenToContents cross-platform. Only implemented by Mac/Win right now.
Reviewed by Adam Roben
- WebCoreSupport/WebChromeClient.h:
- WebCoreSupport/WebChromeClient.mm: (WebChromeClient::repaint): (WebChromeClient::screenToWindow): (WebChromeClient::windowToScreen):
WebKit/qt:
2008-10-01 David Hyatt <hyatt@apple.com>
Make contentsToScreen/screenToContents cross-platform. Only implemented by Mac/Win right now.
Reviewed by Adam Roben
- WebCoreSupport/ChromeClientQt.cpp: (WebCore::ChromeClientQt::windowToScreen): (WebCore::ChromeClientQt::screenToWindow):
- WebCoreSupport/ChromeClientQt.h:
WebKit/win:
2008-10-01 David Hyatt <hyatt@apple.com>
Make contentsToScreen/screenToContents cross-platform. Only implemented by Mac/Win right now.
Reviewed by Adam Roben
- WebCoreSupport/WebChromeClient.cpp: (WebChromeClient::windowToScreen): (WebChromeClient::screenToWindow):
- WebCoreSupport/WebChromeClient.h:
WebKit/wx:
2008-10-01 David Hyatt <hyatt@apple.com>
Make contentsToScreen/screenToContents cross-platform. Only implemented by Mac/Win right now.
Reviewed by Adam Roben
- WebKitSupport/ChromeClientWx.cpp: (WebCore::ChromeClientWx::windowToScreen): (WebCore::ChromeClientWx::screenToWindow):
- WebKitSupport/ChromeClientWx.h:
- 1:31 PM Changeset in webkit [37152] by
-
- 3 edits2 adds in trunk
WebCore:
Reviewed by Darin Adler.
- fix <rdar://problem/6255862> domfuzz: null deref in WebCore::HTMLParser::handleResidualStyleCloseTagAcrossBlocks(WebCore::HTMLStackElem*)
Test: fast/parser/residual-style-close-across-removed-block.html
- html/HTMLParser.cpp: (WebCore::HTMLParser::handleResidualStyleCloseTagAcrossBlocks): Removed an assertion that turned out to be wrong in this case, and changed to terminate the algorithm at the first empty block.
LayoutTests:
Reviewed by Darin Adler.
- test for <rdar://problem/6255862> domfuzz: null deref in WebCore::HTMLParser::handleResidualStyleCloseTagAcrossBlocks(WebCore::HTMLStackElem*)
- fast/parser/residual-style-close-across-removed-block-expected.txt: Added.
- fast/parser/residual-style-close-across-removed-block.html: Added.
- 12:24 PM Changeset in webkit [37151] by
-
- 1 edit in trunk/WebCore/platform/ScrollView.h
Fix Mac bustage. Make sure the setFrameRect method is moved outside the ifdef in the header.
- 12:23 PM Changeset in webkit [37150] by
-
- 7 edits in trunk/WebCore
2008-10-01 David Hyatt <hyatt@apple.com>
Make setFrameRect on ScrollView cross-platform.
Reviewed by Sam Weinig
- page/FrameView.h: (WebCore::FrameView::contentsResized):
- platform/ScrollView.cpp: (WebCore::ScrollView::setFrameRect):
- platform/ScrollView.h:
- platform/gtk/ScrollViewGtk.cpp:
- platform/qt/ScrollViewQt.cpp:
- platform/win/ScrollViewWin.cpp:
- 12:17 PM Changeset in webkit [37149] by
-
- 6 edits in trunk/WebCore
2008-10-01 Sam Weinig <sam@webkit.org>
Reviewed by Adele Peterson.
Move setTimeout, clearTimeout, setInterval, clearInterval, atob and btoa
to JSDOMWindow from JSDOMWindowBase.
- WebCore.xcodeproj/project.pbxproj:
- bindings/js/JSDOMWindowBase.cpp: (WebCore::JSDOMWindowBase::removeTimeout):
- bindings/js/JSDOMWindowBase.h:
- bindings/js/JSDOMWindowCustom.cpp: (WebCore::setTimeoutOrInterval): (WebCore::JSDOMWindow::setTimeout): (WebCore::JSDOMWindow::clearTimeout): (WebCore::JSDOMWindow::setInterval): (WebCore::JSDOMWindow::clearInterval): (WebCore::JSDOMWindow::atob): (WebCore::JSDOMWindow::btoa):
- page/DOMWindow.idl:
- 11:40 AM Changeset in webkit [37148] by
-
- 3 edits in trunk/JavaScriptCore
2008-10-01 Kevin McCullough <kmccullough@apple.com>
Rubberstamped by Geoff .
Remove BreakpointCheckStatement because it's not used anymore.
No effect on sunspider or the jsc tests.
- kjs/nodes.cpp:
- kjs/nodes.h:
- 11:12 AM Changeset in webkit [37147] by
-
- 2 edits in trunk/WebCore
- Mac build fix
- WebCore.base.exp:
- 10:51 AM Changeset in webkit [37146] by
-
- 25 edits in trunk
Make ScrollView::paint cross-platform.
- 10:33 AM Changeset in webkit [37145] by
-
- 2 edits in trunk/WebCore
Prevent stealing focus from the search field when focusing a DOM node.
Reviewed by Kevin McCullough.
- page/inspector/ElementsPanel.js: (WebInspector.ElementsPanel.treeOutline.focusedNodeChanged): Don't steal focus if the current focus element is the search field.
- 6:32 AM QtWebKitJournal edited by
- (diff)
- 12:59 AM Changeset in webkit [37144] by
-
- 1 edit in trunk/WebKit/gtk/WebCoreSupport/ChromeClientGtk.cpp
Speculative fix for Gtk bustage.
- 12:55 AM Changeset in webkit [37143] by
-
- 1 edit in trunk/WebKit/qt/WebCoreSupport/ChromeClientQt.cpp
Fix Qt bustage.
- 12:27 AM Changeset in webkit [37142] by
-
- 16 edits in trunk/WebCore
2008-09-30 Sam Weinig <sam@webkit.org>
Reviewed by Nikolas Zimmermann and Alexey Proskuryakov.
Final patch for https://bugs.webkit.org/show_bug.cgi?id=21122
Autogenerate JS event listeners
- Generate getting/setting of EventListeners.
- Adding a new named EventListener now has the same process as adding any other DOM attribute. (Add a method with the same name in the c++ file).
(The EventListeners for MessagePort have been intentionally left custom so that we
can continue to experiment with making those EventListeners work in a frame-less world.)
- bindings/js/JSDOMApplicationCacheCustom.cpp: Remove custom methods.
- bindings/js/JSDOMWindowCustom.cpp: ditto.
- bindings/js/JSEventTargetNodeCustom.cpp: ditto.
- bindings/js/JSXMLHttpRequestCustom.cpp: ditto.
- bindings/js/JSXMLHttpRequestUploadCustom.cpp: ditto.
- bindings/scripts/CodeGeneratorJS.pm: Add code to generate EventListener getter/setters
- dom/EventTargetNode.cpp: Add getter/setters for named EventListener.
- dom/EventTargetNode.h: ditto.
- dom/EventTargetNode.idl: Mark EventListeners as Protected so that the codegenerator will use JSEventListerner instead of JSUnprotectedEventListener.
- loader/appcache/DOMApplicationCache.idl: Remove custom attributes..
- page/DOMWindow.cpp: Add getter/setters for named EventListener
- page/DOMWindow.h: ditto.
- page/DOMWindow.idl: Mark EventListeners as Protected so that the codegenerator will use JSEventListerner instead of JSUnprotectedEventListener.
- xml/XMLHttpRequest.idl: Remove custom attributes.
- xml/XMLHttpRequestUpload.idl: ditto.
Sep 30, 2008:
- 11:57 PM Changeset in webkit [37141] by
-
- 1 edit in trunk/WebCore/loader/CachedResource.cpp
A-Z.
- 11:53 PM Changeset in webkit [37140] by
-
- 4 edits in trunk
Add a leak counter for CachedResources since we've had two recent leaks involving them.
Reviewed by Dan Bernstein.
- 11:25 PM Changeset in webkit [37139] by
-
- 4 edits2 moves in trunk/WebCore
Reviewed by Dave Hyatt.
- fix https://bugs.webkit.org/show_bug.cgi?id=21127 <rdar://problem/6259134> REGRESSION: CFF format fonts fail to load
If TTLoadEmbeddedFont fails, use AddFontMemResourceEx after changing
the font name in memory.
- WebCore.vcproj/WebCore.vcproj: Renamed GetEOTHeader.* to OpenTypeUtilities.*.
- platform/graphics/win/FontCustomPlatformData.cpp: (WebCore::FontCustomPlatformData::~FontCustomPlatformData): Added a call to RemoveFontMemResourceEx to match AddFontMemResourceEx when it is used. (WebCore::FontCustomPlatformData::fontPlatformData): Added a code path for fonts loaded using AddFontMemResourceEx. (WebCore::createFontCustomPlatformData): Added a call to renameAndActivateFont() if TTLoadEmbeddedFont fails. If TTLoadEmbeddedFont succeeds, set the font name to the null string, as fontPlatformData() will retrieve the name from the font reference.
- platform/graphics/win/FontCustomPlatformData.h: (WebCore::FontCustomPlatformData::FontCustomPlatformData): Added a font name member.
- platform/graphics/win/GetEOTHeader.cpp: Renamed.
- platform/graphics/win/GetEOTHeader.h: Renamed.
- platform/graphics/win/OpenTypeUtilities.cpp: Copied from platform/graphics/win/GetEOTHeader.cpp. (WebCore::BigEndianUShort::BigEndianUShort): Added a constructor. (WebCore::BigEndianULong::BigEndianULong): Ditto. (WebCore::renameAndActivateFont): Added. Creates an in-memory copy of the font data and modifies it to have the given name, then activates it using AddFontMemResourceEx.
- platform/graphics/win/OpenTypeUtilities.h: Copied from platform/graphics/win/GetEOTHeader.h.
- 11:16 PM Changeset in webkit [37138] by
-
- 5 edits in trunk/JavaScriptCore
Improve performance of CTI on windows.
Reviewed by Geoff Garen
Currently on platforms where the compiler doesn't allow us to safely
index relative to the address of a parameter we need to actually
provide a pointer to CTI runtime call arguments. This patch improves
performance in this case by making the CTI logic for restoring this
parameter much less conservative by only resetting it before we actually
make a call, rather than between each and every SF bytecode we generate
code for.
This results in a 3.6% on the v8 benchmark when compiled with MSVC.
- 11:09 PM Changeset in webkit [37137] by
-
- 2 edits in trunk/WebCore
Fix many leaks seen on fast/backgrounds/svg-as-mask.html.
Reviewed by Dan Bernstein.
- rendering/RenderObject.cpp:
(WebCore::RenderObject::arenaDelete): Balance the calls to addClient on maskLayer's images
with calls to removeClient when we're being destroyed.
- 10:45 PM Changeset in webkit [37136] by
-
- 4 edits4 adds in trunk
2008-09-30 Eric Carlson <eric.carlson@apple.com>
Reviewed by Antti
Fix loopstart and loopend default values.
Tests: media/loopend-limits.html
media/loopstart-limits.html
- html/HTMLMediaElement.cpp: (WebCore::HTMLMediaElement::loopStart): the spec says start() is the default value (WebCore::HTMLMediaElement::loopEnd): the spec says end() is the default value
2008-09-30 Eric Carlson <eric.carlson@apple.com>
Reviewed by Antti
Test default loopstart and loopend values.
- media/loopend-limits-expected.txt: Added.
- media/loopend-limits.html: Added.
- media/loopstart-limits-expected.txt: Added.
- media/loopstart-limits.html: Added.
- media/video-test.js:
- 10:29 PM Changeset in webkit [37135] by
-
- 2 edits in trunk/WebKitTools
Fix many leaks seen on fast/backgrounds/svg-as-background-1.html.
JavaScript wrappers were keeping DOM objects alive, which was leading to the SVG background image
being kept alive in the memory cache past our last attempt to empty the cache prior to quitting.
We need to empty the memory cache after forcing a JavaScript garbage collection to ensure that
any live JavaScript wrappers are collected and their corresponding DOM objects have a chance to be
torn down before we exit.
Rubber-stamped by Dan Bernstein.
- DumpRenderTree/mac/DumpRenderTree.mm:
(dumpRenderTree):
(main):
- 10:04 PM Changeset in webkit [37134] by
-
- 3 edits in trunk/WebCore
wx build fixes. Add file to build and remove call to (now gone) ScrollView::update.
- 9:43 PM Changeset in webkit [37133] by
-
- 3 edits in trunk/WebCore
Reviewed by Sam Weinig.
- fix HTMLViewSourceDocument leaks by breaking a ref cycle which was fixed in r17249 and re-introduced in r31435.
- html/HTMLViewSourceDocument.cpp: (WebCore::HTMLViewSourceDocument::HTMLViewSourceDocument): (WebCore::HTMLViewSourceDocument::addSpanWithClassName): (WebCore::HTMLViewSourceDocument::addLine): (WebCore::HTMLViewSourceDocument::addLink):
- html/HTMLViewSourceDocument.h:
- 7:57 PM Changeset in webkit [37132] by
-
- 3 edits in trunk/JavaScriptCore
2008-09-30 Maciej Stachowiak <mjs@apple.com>
Reviewed by Oliver Hunt.
- track uses of "this", "with" and "catch" in the parser
Knowing this up front will be useful for future optimizations.
Perf and correctness remain the same.
- kjs/NodeInfo.h:
- kjs/grammar.y:
- 6:05 PM Changeset in webkit [37131] by
-
- 3 edits in trunk/WebKit/mac
Reviewed by Anders Carlsson.
Remove the NPDrawingModelOpenGL entirely. To my knowledge no shipping plug-in ever used it, and no other browser engine
ever supported it.
- Plugins/WebBaseNetscapePluginView.h: Removed AGL.h import and OpenGL related ivars.
- Plugins/WebBaseNetscapePluginView.mm: Removed soft linking for OpenGL and AGL frameworks. Also removed many methods AGL/CGL support methods that are no longer necessary. (-[WebBaseNetscapePluginView saveAndSetNewPortStateForUpdate:]): Removed NPDrawingModelOpenGL related code. (-[WebBaseNetscapePluginView restorePortState:]): Ditto. (-[WebBaseNetscapePluginView sendEvent:isDrawRect:]): Ditto. (-[WebBaseNetscapePluginView isNewWindowEqualToOldWindow]): Ditto. (-[WebBaseNetscapePluginView setWindowIfNecessary]): Ditto. (-[WebBaseNetscapePluginView stop]): Ditto. (-[WebBaseNetscapePluginView dealloc]): Ditto. (-[WebBaseNetscapePluginView drawRect:]): (-[WebBaseNetscapePluginView viewWillMoveToWindow:]): Ditto. (-[WebBaseNetscapePluginView invalidateRegion:]): Ditto. (-[WebBaseNetscapePluginView getVariable:value:]): Tell plug-ins WebKit does not support NPDrawingModelOpenGL. (-[WebBaseNetscapePluginView setVariable:value:]): Removed NPDrawingModelOpenGL related code. (-[WebBaseNetscapePluginView _viewHasMoved]): Ditto.
- 6:00 PM Changeset in webkit [37130] by
-
- 3 edits in trunk/LayoutTests
2008-09-30 Dean Jackson <dino@apple.com>
Reviewed by Simon Fraser.
Remove console output that can cause test to fail on slow
machines.
- animations/transition-and-animation-2-expected.txt:
- animations/transition-and-animation-2.html:
- 5:43 PM Changeset in webkit [37129] by
-
- 3 edits in trunk/WebKitTools
2008-09-30 Simon Fraser <Simon Fraser>
Reviewed by Dan Bernstein
Don't run pixel comparison for text-only tests.
https://bugs.webkit.org/show_bug.cgi?id=21124
- DumpRenderTree/mac/DumpRenderTree.mm: (dump):
- Scripts/run-webkit-tests:
- 5:39 PM Changeset in webkit [37128] by
-
- 24 edits in trunk/WebCore
2008-09-30 Sam Weinig <sam@webkit.org>
Reviewed by Eric Seidel.
More for https://bugs.webkit.org/show_bug.cgi?id=21122
Autogenerate JS event listeners
- Make EventListener getter/setters names in c++ files match those in JS (ie. onLoadListener -> onload).
- Add standard way to access the frame associated with the EventTarget for EventListener lookup.
- Autogenerate dispatchEvent, it wasn't doing anything custom.
- bindings/js/JSDOMApplicationCacheCustom.cpp: (WebCore::JSDOMApplicationCache::mark): (WebCore::JSDOMApplicationCache::addEventListener): (WebCore::JSDOMApplicationCache::removeEventListener): (WebCore::JSDOMApplicationCache::setOnchecking): (WebCore::JSDOMApplicationCache::onchecking): (WebCore::JSDOMApplicationCache::setOnerror): (WebCore::JSDOMApplicationCache::onerror): (WebCore::JSDOMApplicationCache::setOnnoupdate): (WebCore::JSDOMApplicationCache::onnoupdate): (WebCore::JSDOMApplicationCache::setOndownloading): (WebCore::JSDOMApplicationCache::ondownloading): (WebCore::JSDOMApplicationCache::setOnprogress): (WebCore::JSDOMApplicationCache::onprogress): (WebCore::JSDOMApplicationCache::setOnupdateready): (WebCore::JSDOMApplicationCache::onupdateready): (WebCore::JSDOMApplicationCache::setOncached): (WebCore::JSDOMApplicationCache::oncached):
- bindings/js/JSEventTargetNodeCustom.cpp: (WebCore::JSEventTargetNode::addEventListener): (WebCore::JSEventTargetNode::removeEventListener): (WebCore::JSEventTargetNode::getListener): (WebCore::JSEventTargetNode::setListener):
- bindings/js/JSMessagePortCustom.cpp: (WebCore::JSMessagePort::mark): (WebCore::JSMessagePort::addEventListener): (WebCore::JSMessagePort::removeEventListener): (WebCore::JSMessagePort::setOnmessage): (WebCore::JSMessagePort::onmessage): (WebCore::JSMessagePort::setOnclose): (WebCore::JSMessagePort::onclose):
- bindings/js/JSXMLHttpRequestCustom.cpp: (WebCore::JSXMLHttpRequest::mark): (WebCore::JSXMLHttpRequest::onreadystatechange): (WebCore::JSXMLHttpRequest::setOnreadystatechange): (WebCore::JSXMLHttpRequest::onabort): (WebCore::JSXMLHttpRequest::setOnabort): (WebCore::JSXMLHttpRequest::onerror): (WebCore::JSXMLHttpRequest::setOnerror): (WebCore::JSXMLHttpRequest::onload): (WebCore::JSXMLHttpRequest::setOnload): (WebCore::JSXMLHttpRequest::onloadstart): (WebCore::JSXMLHttpRequest::setOnloadstart): (WebCore::JSXMLHttpRequest::onprogress): (WebCore::JSXMLHttpRequest::setOnprogress): (WebCore::JSXMLHttpRequest::addEventListener): (WebCore::JSXMLHttpRequest::removeEventListener):
- bindings/js/JSXMLHttpRequestUploadCustom.cpp: (WebCore::JSXMLHttpRequestUpload::mark): (WebCore::JSXMLHttpRequestUpload::onabort): (WebCore::JSXMLHttpRequestUpload::setOnabort): (WebCore::JSXMLHttpRequestUpload::onerror): (WebCore::JSXMLHttpRequestUpload::setOnerror): (WebCore::JSXMLHttpRequestUpload::onload): (WebCore::JSXMLHttpRequestUpload::setOnload): (WebCore::JSXMLHttpRequestUpload::onloadstart): (WebCore::JSXMLHttpRequestUpload::setOnloadstart): (WebCore::JSXMLHttpRequestUpload::onprogress): (WebCore::JSXMLHttpRequestUpload::setOnprogress): (WebCore::JSXMLHttpRequestUpload::addEventListener): (WebCore::JSXMLHttpRequestUpload::removeEventListener):
- bindings/scripts/CodeGeneratorJS.pm:
- dom/EventTarget.h:
- dom/EventTargetNode.cpp: (WebCore::EventTargetNode::associatedFrame):
- dom/EventTargetNode.h:
- dom/EventTargetNode.idl:
- dom/MessagePort.cpp: (WebCore::MessagePort::associatedFrame):
- dom/MessagePort.h: (WebCore::MessagePort::setOnmessage): (WebCore::MessagePort::onmessage): (WebCore::MessagePort::setOnclose): (WebCore::MessagePort::onclose):
- dom/MessagePort.idl:
- loader/appcache/DOMApplicationCache.h: (WebCore::DOMApplicationCache::setOnchecking): (WebCore::DOMApplicationCache::onchecking): (WebCore::DOMApplicationCache::setOnerror): (WebCore::DOMApplicationCache::onerror): (WebCore::DOMApplicationCache::setOnnoupdate): (WebCore::DOMApplicationCache::onnoupdate): (WebCore::DOMApplicationCache::setOndownloading): (WebCore::DOMApplicationCache::ondownloading): (WebCore::DOMApplicationCache::setOnprogress): (WebCore::DOMApplicationCache::onprogress): (WebCore::DOMApplicationCache::setOnupdateready): (WebCore::DOMApplicationCache::onupdateready): (WebCore::DOMApplicationCache::setOncached): (WebCore::DOMApplicationCache::oncached): (WebCore::DOMApplicationCache::associatedFrame):
- loader/appcache/DOMApplicationCache.idl:
- svg/EventTargetSVGElementInstance.cpp: (WebCore::EventTargetSVGElementInstance::associatedFrame): (WebCore::EventTargetSVGElementInstance::addEventListener): (WebCore::EventTargetSVGElementInstance::removeEventListener): (WebCore::EventTargetSVGElementInstance::dispatchEvent):
- svg/EventTargetSVGElementInstance.h:
- xml/XMLHttpRequest.cpp: (WebCore::XMLHttpRequest::associatedFrame):
- xml/XMLHttpRequest.h: (WebCore::XMLHttpRequest::setOnreadystatechange): (WebCore::XMLHttpRequest::onreadystatechange): (WebCore::XMLHttpRequest::setOnabort): (WebCore::XMLHttpRequest::onabort): (WebCore::XMLHttpRequest::setOnerror): (WebCore::XMLHttpRequest::onerror): (WebCore::XMLHttpRequest::setOnload): (WebCore::XMLHttpRequest::onload): (WebCore::XMLHttpRequest::setOnloadstart): (WebCore::XMLHttpRequest::onloadstart): (WebCore::XMLHttpRequest::setOnprogress): (WebCore::XMLHttpRequest::onprogress):
- xml/XMLHttpRequest.idl:
- xml/XMLHttpRequestUpload.cpp: (WebCore::XMLHttpRequestUpload::associatedFrame):
- xml/XMLHttpRequestUpload.h: (WebCore::XMLHttpRequestUpload::setOnabort): (WebCore::XMLHttpRequestUpload::onabort): (WebCore::XMLHttpRequestUpload::setOnerror): (WebCore::XMLHttpRequestUpload::onerror): (WebCore::XMLHttpRequestUpload::setOnload): (WebCore::XMLHttpRequestUpload::onload): (WebCore::XMLHttpRequestUpload::setOnloadstart): (WebCore::XMLHttpRequestUpload::onloadstart): (WebCore::XMLHttpRequestUpload::setOnprogress): (WebCore::XMLHttpRequestUpload::onprogress):
- xml/XMLHttpRequestUpload.idl:
- 5:38 PM Changeset in webkit [37127] by
-
- 2 edits in trunk/WebCore
2008-09-30 Darin Adler <Darin Adler>
- roll out assertion breaking regression tests
- platform/ScrollView.cpp: (WebCore::ScrollView::repaintContentRectangle): Temporarily remove assertion that fires in regression tests. Hyatt can add it back later. The assertion fires in the regression test because of layout that triggers repaint occuring during the process of removing a frame.
- 4:58 PM Changeset in webkit [37126] by
-
- 2 edits in trunk/JavaScriptCore
2008-09-30 Sam Weinig <sam@webkit.org>
Reviewed by Mark Rowe.
Add WebKitAvailability macros for JSObjectMakeArray, JSObjectMakeDate, JSObjectMakeError,
and JSObjectMakeRegExp
- API/JSObjectRef.h:
- 4:46 PM Changeset in webkit [37125] by
-
- 4 edits in trunk/JavaScriptCore
2008-09-30 Darin Adler <Darin Adler>
Reviewed by Geoff Garen.
- https://bugs.webkit.org/show_bug.cgi?id=21214 work on getting rid of ExecState
Replaced the m_prev field of ExecState with a bit in the
call frame pointer to indicate "host" call frames.
- VM/Machine.cpp: (JSC::makeHostCallFramePointer): Added. Sets low bit. (JSC::isHostCallFrame): Added. Checks low bit. (JSC::stripHostCallFrameBit): Added. Clears low bit. (JSC::Machine::unwindCallFrame): Replaced null check that was formerly used to detect host call frames with an isHostCallFrame check. (JSC::Machine::execute): Pass in a host call frame pointer rather than always passing 0 when starting execution from the host. This allows us to follow the entire call frame pointer chain when desired, or to stop at the host calls when that's desired. (JSC::Machine::privateExecute): Replaced null check that was formerly used to detect host call frames with an isHostCallFrame check. (JSC::Machine::retrieveCaller): Ditto. (JSC::Machine::retrieveLastCaller): Ditto. (JSC::Machine::callFrame): Removed the code to walk up m_prev pointers and replaced it with code that uses the caller pointer and uses the stripHostCallFrameBit function.
- kjs/ExecState.cpp: Removed m_prev.
- kjs/ExecState.h: Ditto.
- 4:24 PM Changeset in webkit [37124] by
-
- 1 edit in trunk/WebKit/qt/WebCoreSupport/ChromeClientQt.cpp
Fix Qt bustage.
- 4:21 PM Changeset in webkit [37123] by
-
- 19 edits8 adds in trunk
WebCore:
2008-09-30 Adele Peterson <adele@apple.com>
Reviewed by Darin Adler.
Fix for https://bugs.webkit.org/show_bug.cgi?id=21227
<rdar://problem/6222134> add a way to set color for input placeholder text
Test: fast/forms/placeholder-pseudo-style.html
This change adds "-webkit-input-placeholder-mode" as a pseudo class that can be used to style
input elements when they are displaying the placeholder text.
- css/CSSSelector.cpp: (WebCore::CSSSelector::extractPseudoType): Add case for inputPlaceholderMode.
- css/CSSSelector.h: (WebCore::CSSSelector::): Add PseudoInputPlaceholderMode.
- css/CSSStyleSelector.cpp: (WebCore::CSSStyleSelector::SelectorChecker::checkOneSelector): Add check for PseudoInputPlaceholderMode that asks the node if placeholderShouldBeVisible is true.
- css/html4.css: Add rule to make placeholder text default to darkGray.
- html/HTMLInputElement.cpp: (WebCore::HTMLInputElement::init): Initialize m_placeholderShouldBeVisible. (WebCore::HTMLInputElement::dispatchFocusEvent): Call updatePlaceholderVisibility. (WebCore::HTMLInputElement::dispatchBlurEvent): ditto. (WebCore::HTMLInputElement::parseMappedAttribute): ditto. (WebCore::HTMLInputElement::setValue): ditto. (WebCore::HTMLInputElement::setValueFromRenderer): ditto. (WebCore::HTMLInputElement::updatePlaceholderVisibility): Sets m_placeholderShouldBeVisible based on the current value and the focus state. This calculation used to be done in the renderer, but since the node knows everything about the state, it can make that decision, and the renderer will just ask the node if it should draw the placeholder.
- html/HTMLInputElement.h: (WebCore::HTMLInputElement::placeholderShouldBeVisible):
- rendering/RenderTextControl.cpp: (WebCore::disabledTextColor): Moved to the top of the file. If there's not very much contrast between the disabled color and the background color, just leave the text color alone. We don't want to change a good contrast color scheme so that it has really bad contrast. If the the contrast was already poor, then it doesn't do any good to change it to a different poor contrast color scheme. (WebCore::RenderTextControl::createInnerTextStyle): If the node says the placeholder should be visible, prepare by overriding the text security to be "none". This can only happen as a result of either a setStyle call (which will be followed by a call to updateFromElement) or from createSubtreeIfNeeded, which is called directly from updateFromElement. updateFromElement will immediately update the text displayed. (WebCore::RenderTextControl::updateFromElement): If the placeholder visibility has changed, update the text that is displayed. (WebCore::RenderTextControl::forwardEvent): Remove calls to update the placeholder state. This is now done in HTMLInputElement.
- rendering/RenderTextControl.h:
LayoutTests:
2008-09-30 Adele Peterson <adele@apple.com>
Reviewed by Darin Adler.
Tests for https://bugs.webkit.org/show_bug.cgi?id=21227
<rdar://problem/6222134> add a way to set color for input placeholder text
- fast/forms/password-placeholder-text-security.html: Added.
- fast/forms/placeholder-pseudo-style.html: Added.
- platform/mac/fast/forms/password-placeholder-text-security-expected.checksum: Added.
- platform/mac/fast/forms/password-placeholder-text-security-expected.png: Added.
- platform/mac/fast/forms/password-placeholder-text-security-expected.txt: Added.
- platform/mac/fast/forms/placeholder-pseudo-style-expected.checksum: Added.
- platform/mac/fast/forms/placeholder-pseudo-style-expected.png: Added.
- platform/mac/fast/forms/placeholder-pseudo-style-expected.txt: Added.
Updated results. The placeholder color is now reflected on the RenderTextControl, not just on an inner element.
- platform/mac/fast/forms/input-disabled-color-expected.checksum:
- platform/mac/fast/forms/input-disabled-color-expected.png:
- platform/mac/fast/forms/input-disabled-color-expected.txt:
- platform/mac/fast/forms/password-placeholder-expected.checksum:
- platform/mac/fast/forms/password-placeholder-expected.png:
- platform/mac/fast/forms/password-placeholder-expected.txt:
- platform/mac/fast/forms/placeholder-set-attribute-expected.checksum:
- platform/mac/fast/forms/placeholder-set-attribute-expected.png:
- platform/mac/fast/forms/placeholder-set-attribute-expected.txt:
- 4:19 PM Changeset in webkit [37122] by
-
- 3 edits2 adds in trunk
WebCore:
2008-09-30 Beth Dakin <Beth Dakin>
Reviewed by Darin Adler.
Fix for https://bugs.webkit.org/show_bug.cgi?id=20396 Abort caused
by failed allocation due to invalid counter/attr
and corresponding: <rdar://problem/6152371>
- css/CSSParser.cpp: (WebCore::CSSParser::parseCounterContent): The spec indicates that only identifiers should be accepted here.
LayoutTests:
2008-09-30 Beth Dakin <Beth Dakin>
Reviewed by Darin Adler.
Test for https://bugs.webkit.org/show_bug.cgi?id=20396 Abort caused
by failed allocation due to invalid counter/attr
and corresponding: <rdar://problem/6152371>
- fast/css/counters/counter-number-input-expected.txt: Added.
- fast/css/counters/counter-number-input.html: Added.
- 3:33 PM Changeset in webkit [37121] by
-
- 2 edits in trunk/WebCore
2008-09-30 Kevin McCullough <kmccullough@apple.com>
Reviewed by Oliver Hunt.
Bug 21255: console.profileEnd() without a console.profile() crashes the
web inspector
- page/Console.cpp: (WebCore::Console::profileEnd):
- 3:31 PM Changeset in webkit [37120] by
-
- 2 edits in trunk/WebCore
2008-09-30 Kevin McCullough <kmccullough@apple.com>
Reviewed by Tim Hatcher.
Bug 21252: calling console.profile() with a title that is 2 chars or
shorter does not linkify it
- Previously we tried to not linkify very short URLs but since profile titles can be any length this is not always true.
- page/inspector/inspector.js:
- 3:30 PM Changeset in webkit [37119] by
-
- 20 edits in tags/Safari-6528.4.1/WebCore/platform
Remove bogus executable bit from some source files.
- 3:28 PM Changeset in webkit [37118] by
-
- 20 edits in trunk/WebCore/platform
Remove bogus executable bit from some source files.
- 3:17 PM Changeset in webkit [37117] by
-
- 7 edits3 adds in trunk
2008-09-30 Cameron Zwarich <zwarich@apple.com>
Reviewed by Geoff Garen.
Move all detection of 'arguments' in a lexical scope to the parser, in
preparation for fixing
Bug 21123: using "arguments" in a function should not force creation of an activation object
<https://bugs.webkit.org/show_bug.cgi?id=21123>
- VM/CodeGenerator.cpp: (JSC::CodeGenerator::CodeGenerator):
- kjs/NodeInfo.h:
- kjs/grammar.y:
LayoutTests:
- fast/js/arguments-expected.txt:
- fast/js/function-dot-arguments-expected.txt: Added.
- fast/js/function-dot-arguments.html: Added.
- fast/js/resources/arguments.js:
- fast/js/resources/function-dot-arguments.js: Added.
- 2:46 PM Changeset in webkit [37116] by
-
- 2 edits in trunk/JavaScriptCore
2008-09-30 Geoffrey Garen <ggaren@apple.com>
Not reviewed.
- kjs/Shell.cpp: (runWithScripts): Fixed indentation.
- 2:34 PM Changeset in webkit [37115] by
-
- 67 edits in trunk/WebCore/page/inspector/Images
Add the image/png mime-type to the Web Inspector images to make Mark and Dan happy.
- 2:31 PM Changeset in webkit [37114] by
-
- 2 edits in trunk/WebKit
Tweak the Gtk/Qt ChromeClient methods structurally to make sure immediate displays/flushes can happen even if the content doesn't change.
- 2:30 PM Changeset in webkit [37113] by
-
- 9 edits in trunk/WebCore
Eliminate the ScrollView update() method.
- 2:04 PM Changeset in webkit [37112] by
-
- 11 edits2 deletes in trunk
Roll out r37060 as it introduced many, many leaks.
- 1:57 PM Changeset in webkit [37111] by
-
- 3 edits in trunk/WebCore
Focus the DOM tree in the Web Inspector when a node is inspected.
So when the search field has focus, the focus moves to the tree,
allowing the arrow keys work. This can happen when using the new
find in page feature.
Reviewed by Geoff Garen.
- page/inspector/ElementsPanel.js: (WebInspector.ElementsPanel): Set currentFocusElement to the main-panels element if the panel is visible. (WebInspector.ElementsPanel.prototype.updateBreadcrumb): Remove a set of currentFocusElement since this moved.
- page/inspector/inspector.js: (WebInspector.set currentFocusElement): Always focus the element. This ensures that when focus changes in the page and we don't catch it, we will still focus the elements even if we think it was already focused.
- 1:57 PM Changeset in webkit [37110] by
-
- 8 edits in trunk/WebCore
Make the Web Inspector's toolbar icons darker when the mouse is
pressed on them. This matches the standard NSToolbar look.
https://bugs.webkit.org/show_bug.cgi?id=21249
rdar://problem/6033752
Reviewed by Adam Roben.
- page/inspector/Images/databasesIcon.png:
- page/inspector/Images/elementsIcon.png:
- page/inspector/Images/profilesIcon.png:
- page/inspector/Images/resourcesIcon.png:
- page/inspector/Images/scriptsIcon.png:
- page/inspector/Panel.js:
- page/inspector/inspector.css:
- 1:56 PM Changeset in webkit [37109] by
-
- 1 edit in trunk/WebCore/platform/qt/ScrollViewQt.cpp
Fix qt bustage.
- 1:27 PM Changeset in webkit [37108] by
-
- 1 edit in tags/Safari-6528.4.1/JavaScriptCore/JavaScriptCore.exp
Build fix.
- 1:27 PM Changeset in webkit [37107] by
-
- 1 edit in trunk/JavaScriptCore/JavaScriptCore.exp
Build fix.
- 1:26 PM Changeset in webkit [37106] by
-
- 5 edits in trunk/WebCore
2008-09-30 Kevin McCullough <kmccullough@apple.com>
Reviewed by Tim Hatcher.
Bug 21139: Profiler log message is wrong
- Correctly fix =( Don't call _format twice.
- page/Page.h:
- page/inspector/Console.js:
- page/inspector/ProfilesPanel.js:
- page/inspector/inspector.js:
- 1:09 PM Changeset in webkit [37105] by
-
- 32 edits in trunk
Make ScrollView's updateContents method cross-platform.
- 12:42 PM Changeset in webkit [37104] by
-
- 3 edits in tags/Safari-6528.4.1/JavaScriptCore
Merge r37103.
- 12:38 PM Changeset in webkit [37103] by
-
- 3 edits in trunk/JavaScriptCore
Build fix.
Move InternalFunction::classInfo implementation into the .cpp file to
prevent the vtable for InternalFunction being generated as a weak symbol.
Has no effect on SunSpider.
Rubber-stamped by Sam Weinig.
- kjs/InternalFunction.cpp:
(JSC::InternalFunction::classInfo):
- kjs/InternalFunction.h:
- 12:29 PM Changeset in webkit [37102] by
-
- 3 edits in trunk/WebKit/mac
2008-09-30 Anders Carlsson <andersca@apple.com>
Reviewed by Mark Rowe and Adam Roben.
No need to use pointers to store C++ objects as pointers in WebViewPrivate, we can just
store them directly.
- Configurations/Base.xcconfig: Set GCC_OBJC_CALL_CXX_CDTORS to YES.
- WebView/WebView.mm: (-[WebViewPrivate init]): (-[WebViewPrivate dealloc]): (-[WebViewPrivate finalize]): (-[WebView _preferencesChangedNotification:]): (-[WebView setApplicationNameForUserAgent:]): (-[WebView setCustomUserAgent:]): (-[WebView customUserAgent]): (-[WebView WebCore::_userAgentForURL:WebCore::]): (-[WebView _addObject:forIdentifier:]): (-[WebView _objectForIdentifier:]): (-[WebView _removeObjectForIdentifier:]):
- 11:05 AM Changeset in webkit [37101] by
-
- 4 edits in tags/Safari-6528.4.1
Versioning.
- 11:02 AM Changeset in webkit [37100] by
-
- 6 edits2 deletes in tags/Safari-6528.4.1
Merge r36902.
- 11:00 AM Changeset in webkit [37099] by
-
- 1 copy in tags/Safari-6528.4.1
New tag.
- 10:58 AM Changeset in webkit [37098] by
-
- 6 edits in trunk/WebCore
Non-Mac build fixes.
- GNUmakefile.am:
- WebCore.pro:
- WebCore.vcproj/WebCore.vcproj:
- WebCoreSources.bkl:
- webcore-base.bkl: Added DOMProtect.{cpp,h}.
- 10:40 AM Changeset in webkit [37097] by
-
- 2 edits in trunk/WebCore
Reviewed by John Sullivan.
- bridge/npapi.h: Added skeleton for a new plug-in drawing model, the NPCoreAnimationDrawingModel. This model will eventually pave the way for hardware accelerated drawing in plug-ins and out of process plug-in rendering.
- 10:05 AM Changeset in webkit [37096] by
-
- 11 edits in trunk/WebCore
2008-09-29 Julien Chaffraix <jchaffraix@webkit.org>
Reviewed by Maciej Stachowiak.
Bug 21106: .in format discussed changes
https://bugs.webkit.org/show_bug.cgi?id=21106
- Removed "cppNamespace" global parameter and hard-coded "WebCore" as it is the only namespace used.
- Removed "generateFactory" and "generateWrapperFactory" parameters and re-introduced the command line options.
- Cleaned up the output of make_names.pl (removed unneeded new line).
- DerivedSources.make: Added factories command line options.
- GNUmakefile.am: Ditto.
- WebCore.pro: Ditto and removed some arguments that were migrated to the .in files.
- dom/make_names.pl: Clean up (see above).
- html/HTMLAttributeNames.in: Removed "cppNamespace", "generateFactory" and "generateWrapperFactory" occurences.
- html/HTMLTagNames.in: Ditto.
- svg/svgattrs.in: Ditto.
- svg/svgtags.in: Ditto.
- svg/xlinkattrs.in: Ditto.
- xml/xmlattrs.in: Ditto.
- 9:19 AM Changeset in webkit [37095] by
-
- 5 edits2 adds in trunk
<rdar://problem/6255456> AX: <file> input button shouldn't have children exposed
- 8:52 AM Changeset in webkit [37094] by
-
- 7 edits6 adds in trunk
Reviewed by Sam Weinig.
https://bugs.webkit.org/show_bug.cgi?id=21213
MessagePort crash when GC collects an object with a pending close event
Test: fast/events/message-channel-gc-2.html
fast/events/message-channel-listener-circular-ownership.html
- bindings/DOMProtect.cpp: Added. (WebCore::gcProtectDOMObject): (WebCore::gcUnprotectDOMObject):
- bindings/DOMProtect.h: Added. Added an abstraction for GC protection to avoid the need to call JS bindings code from DOM objects directly.
- dom/MessagePort.cpp: (WebCore::CloseMessagePortTimer::fired): (WebCore::MessagePort::queueCloseEvent): GC protect MessagePort wrapper while there is a pending close event. This may be necessary for message events, too, but that case is not a crasher, and actually behaves to the letter of the current HTML5 text, so I'll consider it later.
- xml/XMLHttpRequest.cpp: (WebCore::XMLHttpRequest::loadRequestAsynchronously): (WebCore::XMLHttpRequest::dropProtection): Use gcProtectDOMObject here, too. Unfortunately, XMLHttpRequest has more dependencies on JSC.
- bindings/js/JSMessagePortCustom.cpp: (WebCore::JSMessagePort::addEventListener): (WebCore::JSMessagePort::removeEventListener): (WebCore::JSMessagePort::setOnmessage): (WebCore::JSMessagePort::setOnclose): Don't tell DOMWindowBase that MessagePort is a NodeEventTarget, this is not true. I do not know if this was causing any real issues, but we shouldn't lie to DOMWindowBase.
- bindings/js/JSXMLHttpRequestUploadCustom.cpp: (WebCore::JSXMLHttpRequestUpload::mark): While at it, changed to use a typedef for event listeners from XMLHttpRequestUpload, not from XMLHttpRequest.
- 7:17 AM Changeset in webkit [37093] by
-
- 2 edits in trunk/WebCore
Windows build fix
- DerivedSources.cpp: Add JSEventTargetNode.cpp.
- 12:42 AM Changeset in webkit [37092] by
-
- 2 edits in trunk/WebCore/platform
Fix gtk qt bustage.
- 12:10 AM Changeset in webkit [37091] by
-
- 1 edit in trunk/JavaScriptCore/ChangeLog
2008-09-30 Cameron Zwarich <zwarich@apple.com>
Not reviewed.
Add the performance improvement to the ChangeLog entry for r37050.
- ChangeLog
- 12:01 AM Changeset in webkit [37090] by
-
- 12 edits4 adds3 deletes in trunk/WebCore
2008-09-29 Sam Weinig <sam@webkit.org>
Reviewed by Tim Hatcher.
Patch for https://bugs.webkit.org/show_bug.cgi?id=21122
Autogenerate JS event listeners
- Generate EventTargetNode.
- DerivedSources.make:
- GNUmakefile.am:
- WebCore.pro:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- WebCoreSources.bkl:
- bindings/js/JSEventListener.cpp:
- bindings/js/JSEventTarget.cpp: Added. (WebCore::toJS):
- bindings/js/JSEventTarget.h: Added.
- bindings/js/JSEventTargetBase.cpp: Removed.
- bindings/js/JSEventTargetBase.h:
- bindings/js/JSEventTargetNode.cpp: Removed.
- bindings/js/JSEventTargetNode.h: Removed.
- bindings/js/JSEventTargetNodeCustom.cpp: Added. (WebCore::JSEventTargetNode::addEventListener): (WebCore::JSEventTargetNode::removeEventListener): (WebCore::JSEventTargetNode::dispatchEvent): (WebCore::JSEventTargetNode::getListener): (WebCore::JSEventTargetNode::setListener): (WebCore::JSEventTargetNode::pushEventHandlerScope):
- bindings/js/JSEventTargetSVGElementInstance.cpp: (WebCore::): (WebCore::JSEventTargetSVGElementInstancePrototype::self): (WebCore::JSEventTargetSVGElementInstancePrototype::getOwnPropertySlot): (jsEventTargetAddEventListener): (jsEventTargetRemoveEventListener): (jsEventTargetDispatchEvent):
- bindings/js/JSEventTargetSVGElementInstance.h: (WebCore::JSEventTargetSVGElementInstancePrototype::JSEventTargetSVGElementInstancePrototype): (WebCore::JSEventTargetSVGElementInstancePrototype::classInfo):
- bindings/scripts/CodeGeneratorJS.pm:
- dom/EventTargetNode.idl: Added.