Timeline
Dec 15, 2006:
- 6:50 PM Changeset in webkit [18244] by
-
- 3 edits in trunk/WebCore
2006-12-15 MorganL <morganl.webkit@yahoo.com>
Reviewed by Oliver.
Allow images to load into frames again. Tidy up code a bit and
add some much needed documentation.
- platform/MimeTypeRegistry.cpp: (WebCore::initialiseSupportedImageMIMETypes): (WebCore::initialiseSupportedNonImageMimeTypes):
- platform/MimeTypeRegistry.h:
- 5:50 PM Changeset in webkit [22675] by
-
- 2 edits in branches/WindowsMerge/WebCore
- platform/win/TemporaryLinkStubs.cpp: Remove DocumentLoader::isStopped because it's now in DocumentLoader.cpp.
- 4:41 PM Changeset in webkit [18243] by
-
- 3 edits in trunk/WebCore
Fix build.
- loader/DocumentLoader.cpp: (WebCore::DocumentLoader::response): (WebCore::DocumentLoader::setResponse): (WebCore::DocumentLoader::isStopping): (WebCore::DocumentLoader::mainDocumentError):
- loader/DocumentLoader.h:
- 4:05 PM Changeset in webkit [18242] by
-
- 11 edits in trunk
WebCore:
Reviewed by Geoff.
More loader cleanup.
- loader/DocumentLoader.h: (WebCore::DocumentLoader::isStopping): (WebCore::DocumentLoader::response): (WebCore::DocumentLoader::mainDocumentError): (WebCore::DocumentLoader::setResponse):
- loader/FrameLoader.h:
- loader/FrameLoaderClient.h:
- loader/mac/DocumentLoaderMac.mm: (WebCore::DocumentLoader::DocumentLoader): (WebCore::DocumentLoader::stopLoading): (WebCore::DocumentLoader::receivedData): (WebCore::DocumentLoader::setupForReplaceByMIMEType): (WebCore::DocumentLoader::prepareForLoadStart):
- loader/mac/FrameLoaderMac.mm: (WebCore::FrameLoader::commitProvisionalLoad): (WebCore::FrameLoader::setResponse):
- loader/mac/ImageDocumentMac.mm: (WebCore::finishImageLoad):
WebKit:
Reviewed by Geoff.
Update for WebCore changes.
- WebCoreSupport/WebFrameLoaderClient.h:
- WebCoreSupport/WebFrameLoaderClient.mm: (WebFrameLoaderClient::dispatchIdentifierForInitialRequest):
- WebView/WebDataSource.mm: (-[WebDataSource response]):
- 2:58 PM Changeset in webkit [18241] by
-
- 2 edits in trunk/WebCore
- loader/DocumentLoader.h: Whoops, didn't mean to commit this.
- 2:57 PM Changeset in webkit [18240] by
-
- 6 edits in trunk/WebCore
Reviewed by Darin and Brady (in no particular order).
More loader cleanup.
- loader/FrameLoader.h:
- loader/mac/FrameLoaderMac.mm: (WebCore::FrameLoader::cancelledError): (WebCore::FrameLoader::fileDoesNotExistError): (WebCore::FrameLoader::cannotShowMIMEType): (WebCore::FrameLoader::interruptionForPolicyChangeError):
- loader/mac/MainResourceLoaderMac.mm:
- loader/mac/NetscapePlugInStreamLoaderMac.mm:
- 2:24 PM Changeset in webkit [22674] by
-
- 3 edits in branches/WindowsMerge/WebCore
I'm in ur prjct, fxng ur build.
- WebCore.vcproj/WebCore.vcproj:
- platform/win/TemporaryLinkStubs.cpp: (ResourceHandle::loadResourceSynchronously):
- 2:02 PM Changeset in webkit [18239] by
-
- 2 edits in trunk/WebCore
Try to fix Windows build: add EventTarget.{h,cpp}.
- 1:49 PM Changeset in webkit [18238] by
-
- 22 edits2 adds in trunk
Reviewed by Darin.
http://bugs.webkit.org/show_bug.cgi?id=11610
XMLHttpRequest.onreadystatechange doesn't provide access to the request object
Created a separate EventTarget class, now that EventTargetNode isn't the only kind.
WebCore:
- WebCore.xcodeproj/project.pbxproj: Added EventTarget.{h,cpp}
- bindings/js/kjs_dom.cpp: (KJS::toJS): Added an EventTarget variant.
- bindings/js/kjs_dom.h: Added toJS() for EventTarget; some minor style fixes.
- bindings/objc/DOM.mm: (+[DOMNode _eventTargetWith:WebCore::]):
- bindings/scripts/CodeGeneratorObjC.pm: Added an EventTarget->DOMEventTarget converter in DOMNode (WebCoreInternal). It only works for nodes, since we don't have an ObjC binding for XMLHttpRequest. Corrected spelling of internalHeaderContent.
- dom/Event.cpp: (WebCore::Event::setTarget):
- dom/Event.h: (WebCore::Event::target): (WebCore::Event::currentTarget): (WebCore::Event::setCurrentTarget): These methods now work with EventTargets instead of Nodes.
- dom/EventTarget.cpp: Added. (WebCore::EventTarget::~EventTarget): (WebCore::EventTarget::toNode): (WebCore::EventTarget::toXMLHttpRequest):
- dom/EventTarget.h: Added. (WebCore::EventTarget::ref): (WebCore::EventTarget::deref): Originally, my intention was to share much of the implementation between EventTargetNode and XHR, but now I don't see anything substantial worth sharing.
- dom/EventTargetNode.cpp: (WebCore::EventTargetNode::dispatchGenericEvent): Cast Node to EventTargetNode.
- dom/EventTargetNode.h: Made EventTarget methods virtual. (WebCore::EventTargetNode::toNode): Added poor man's RTTI to upcast from EventTarget. (WebCore::EventTargetNode::refEventTarget): (WebCore::EventTargetNode::derefEventTarget):
- dom/MouseEvent.cpp: (WebCore::MouseEvent::toElement): (WebCore::MouseEvent::fromElement):
- dom/MouseRelatedEvent.cpp: (WebCore::MouseRelatedEvent::receivedTarget):
- html/HTMLAnchorElement.cpp: (WebCore::HTMLAnchorElement::defaultEventHandler):
- html/HTMLLabelElement.cpp: (WebCore::HTMLLabelElement::defaultEventHandler):
- page/ContextMenuController.cpp: (WebCore::ContextMenuController::handleContextMenuEvent):
- rendering/RenderSlider.cpp: (WebCore::RenderSlider::mouseEventIsInThumb): Cast from EventTarget to Node as appropriate.
- xml/xmlhttprequest.cpp: (WebCore::XMLHttpRequest::dispatchEvent): (WebCore::XMLHttpRequest::callReadyStateChangeListener): Set target and currentTarget before dispatching.
- xml/xmlhttprequest.h: Made EventTarget methods virtual, added a bool tempEvent parameter to match EventTargetNode. (WebCore::XMLHttpRequest::toXMLHttpRequest): Added poor man's RTTI to upcast from EventTarget. (WebCore::XMLHttpRequest::refEventTarget): (WebCore::XMLHttpRequest::derefEventTarget):
LayoutTests:
- fast/dom/xmlhttprequest-get-expected.txt:
- http/tests/xmlhttprequest/event-target-expected.txt:
- http/tests/xmlhttprequest/event-target.html:
- 1:08 PM Changeset in webkit [18237] by
-
- 12 edits in trunk
WebCore:
Reviewed by Darin.
More loader cleanup, use KURL instead of NSURL in a couple of places.
- loader/DocumentLoader.h:
- loader/FrameLoader.h:
- loader/FrameLoaderClient.h:
- loader/ResourceLoader.h:
- loader/mac/DocumentLoaderMac.mm: (WebCore::DocumentLoader::DocumentLoader): (WebCore::DocumentLoader::prepareForLoadStart):
- loader/mac/FrameLoaderMac.mm: (WebCore::FrameLoader::willUseArchive):
- loader/mac/ResourceLoaderMac.mm: (WebCore::ResourceLoader::load):
WebKit:
Reviewed by Darin.
Update for WebCore changes.
- WebCoreSupport/WebFrameLoaderClient.h:
- WebCoreSupport/WebFrameLoaderClient.mm: (WebFrameLoaderClient::willUseArchive):
- WebView/WebDataSource.mm: (-[WebDataSource _URLForHistory]):
- 12:40 PM Changeset in webkit [18236] by
-
- 13 edits3 moves5 adds2 deletes in trunk
2006-12-15 Marvin Decker <marv.decker@gmail.com>
Reviewed by Darin and Alexey.
Fix the Windows build, move various Client implementations out of
WebCore and into WebKit.
WebCore:
- WebCore.vcproj/WebCore/WebCore.vcproj:
- bridge/win/ChromeClientWin.h: Removed.
- bridge/win/ContextMenuClientWin.h: Removed.
- bridge/win/EditorClientWin.h: Removed.
- bridge/win/FrameWin.cpp: (WebCore::FrameWin::FrameWin):
- bridge/win/FrameWin.h:
- loader/win/FrameLoaderClientWin.cpp: Removed.
- loader/win/FrameLoaderClientWin.h: Removed.
- platform/network/win/ResourceHandleWin.cpp: (WebCore::ResourceHandle::start):
- platform/win/TemporaryLinkStubs.cpp: (WebCore::DocumentLoader::URL): (WebCore::FrameLoader::load): (WebCore::FrameLoader::createFrame): (WebCore::FrameLoader::loadResourceSynchronously): (WebCore::Pasteboard::writeSelection): (WebCore::Pasteboard::writeURL): (WebCore::Pasteboard::clear): (WebCore::Pasteboard::~Pasteboard): (WebCore::PolicyCheck::call): (WebCore::PopupMenu::PopupMenu): (WebCore::ResourceHandle::loadsBlocked): (WebCore::ResourceLoader::cancel):
WebKit:
- COM/ChromeClientWin.cpp: Added. (ChromeClientWin::~ChromeClientWin): (ChromeClientWin::chromeDestroyed): (ChromeClientWin::setWindowRect): (ChromeClientWin::windowRect): (ChromeClientWin::pageRect): (ChromeClientWin::scaleFactor): (ChromeClientWin::focus): (ChromeClientWin::unfocus): (ChromeClientWin::createWindow): (ChromeClientWin::createModalDialog): (ChromeClientWin::show): (ChromeClientWin::canRunModal): (ChromeClientWin::runModal): (ChromeClientWin::setToolbarsVisible): (ChromeClientWin::toolbarsVisible): (ChromeClientWin::setStatusbarVisible): (ChromeClientWin::statusbarVisible): (ChromeClientWin::setScrollbarsVisible): (ChromeClientWin::scrollbarsVisible): (ChromeClientWin::setMenubarVisible): (ChromeClientWin::menubarVisible): (ChromeClientWin::setResizable): (ChromeClientWin::addMessageToConsole):
- COM/ChromeClientWin.h: Added.
- COM/ContextMenuClientWin.cpp: Added. (ContextMenuClientWin::~ContextMenuClientWin): (ContextMenuClientWin::contextMenuDestroyed): (ContextMenuClientWin::addCustomContextMenuItems): (ContextMenuClientWin::contextMenuItemSelected): (ContextMenuClientWin::copyLinkToClipboard): (ContextMenuClientWin::downloadURL): (ContextMenuClientWin::copyImageToClipboard): (ContextMenuClientWin::lookUpInDictionary): (ContextMenuClientWin::speak): (ContextMenuClientWin::stopSpeaking):
- COM/ContextMenuClientWin.h: Added.
- COM/EditorClientWin.cpp: Added. (EditorClientWin::~EditorClientWin): (EditorClientWin::pageDestroyed): (EditorClientWin::shouldDeleteRange): (EditorClientWin::shouldShowDeleteInterface): (EditorClientWin::smartInsertDeleteEnabled): (EditorClientWin::isContinuousSpellCheckingEnabled): (EditorClientWin::toggleContinuousSpellChecking): (EditorClientWin::isGrammarCheckingEnabled): (EditorClientWin::toggleGrammarChecking): (EditorClientWin::spellCheckerDocumentTag): (EditorClientWin::selectWordBeforeMenuEvent): (EditorClientWin::isEditable): (EditorClientWin::shouldBeginEditing): (EditorClientWin::shouldEndEditing): (EditorClientWin::shouldInsertNode): (EditorClientWin::shouldInsertText): (EditorClientWin::shouldApplyStyle): (EditorClientWin::didBeginEditing): (EditorClientWin::respondToChangedContents): (EditorClientWin::didEndEditing): (EditorClientWin::registerCommandForUndo): (EditorClientWin::registerCommandForRedo): (EditorClientWin::clearUndoRedoOperations): (EditorClientWin::canUndo): (EditorClientWin::canRedo): (EditorClientWin::undo): (EditorClientWin::redo):
- COM/EditorClientWin.h: Added.
- COM/WebFrame.cpp: (WebFrame::WebFrame): (WebFrame::initWithName):
- COM/WebFrame.h:
- COM/WebFrameLoaderClient.cpp: Added. (WebFrameLoaderClient::WebFrameLoaderClient): (WebFrameLoaderClient::~WebFrameLoaderClient): (WebFrameLoaderClient::frameLoaderDestroyed): (WebFrameLoaderClient::hasWebView): (WebFrameLoaderClient::hasFrameView): (WebFrameLoaderClient::hasBackForwardList): (WebFrameLoaderClient::resetBackForwardList): (WebFrameLoaderClient::provisionalItemIsTarget): (WebFrameLoaderClient::loadProvisionalItemFromPageCache): (WebFrameLoaderClient::invalidateCurrentItemPageCache): (WebFrameLoaderClient::privateBrowsingEnabled): (WebFrameLoaderClient::makeDocumentView): (WebFrameLoaderClient::makeRepresentation): (WebFrameLoaderClient::forceLayout): (WebFrameLoaderClient::forceLayoutForNonHTML): (WebFrameLoaderClient::updateHistoryForCommit): (WebFrameLoaderClient::updateHistoryForBackForwardNavigation): (WebFrameLoaderClient::updateHistoryForReload): (WebFrameLoaderClient::updateHistoryForStandardLoad): (WebFrameLoaderClient::updateHistoryForInternalLoad): (WebFrameLoaderClient::updateHistoryAfterClientRedirect): (WebFrameLoaderClient::setCopiesOnScroll): (WebFrameLoaderClient::tokenForLoadErrorReset): (WebFrameLoaderClient::resetAfterLoadError): (WebFrameLoaderClient::doNotResetAfterLoadError): (WebFrameLoaderClient::willCloseDocument): (WebFrameLoaderClient::detachedFromParent1): (WebFrameLoaderClient::detachedFromParent2): (WebFrameLoaderClient::detachedFromParent3): (WebFrameLoaderClient::detachedFromParent4): (WebFrameLoaderClient::loadedFromPageCache): (WebFrameLoaderClient::dispatchDidHandleOnloadEvents): (WebFrameLoaderClient::dispatchDidReceiveServerRedirectForProvisionalLoad): (WebFrameLoaderClient::dispatchDidCancelClientRedirect): (WebFrameLoaderClient::dispatchWillPerformClientRedirect): (WebFrameLoaderClient::dispatchDidChangeLocationWithinPage): (WebFrameLoaderClient::dispatchWillClose): (WebFrameLoaderClient::dispatchDidReceiveIcon): (WebFrameLoaderClient::dispatchDidStartProvisionalLoad): (WebFrameLoaderClient::dispatchDidReceiveTitle): (WebFrameLoaderClient::dispatchDidCommitLoad): (WebFrameLoaderClient::dispatchDidFinishLoad): (WebFrameLoaderClient::dispatchDidFirstLayout): (WebFrameLoaderClient::dispatchShow): (WebFrameLoaderClient::cancelPolicyCheck): (WebFrameLoaderClient::dispatchWillSubmitForm): (WebFrameLoaderClient::dispatchDidLoadMainResource): (WebFrameLoaderClient::clearLoadingFromPageCache): (WebFrameLoaderClient::isLoadingFromPageCache): (WebFrameLoaderClient::revertToProvisionalState): (WebFrameLoaderClient::clearUnarchivingState): (WebFrameLoaderClient::progressStarted): (WebFrameLoaderClient::progressCompleted): (WebFrameLoaderClient::setMainFrameDocumentReady): (WebFrameLoaderClient::willChangeTitle): (WebFrameLoaderClient::didChangeTitle): (WebFrameLoaderClient::finishedLoading): (WebFrameLoaderClient::finalSetupForReplace): (WebFrameLoaderClient::setDefersLoading): (WebFrameLoaderClient::isArchiveLoadPending): (WebFrameLoaderClient::cancelPendingArchiveLoad): (WebFrameLoaderClient::clearArchivedResources): (WebFrameLoaderClient::canHandleRequest): (WebFrameLoaderClient::canShowMIMEType): (WebFrameLoaderClient::representationExistsForURLScheme): (WebFrameLoaderClient::generatedMIMETypeForURLScheme): (WebFrameLoaderClient::frameLoadCompleted): (WebFrameLoaderClient::restoreScrollPositionAndViewState): (WebFrameLoaderClient::provisionalLoadStarted): (WebFrameLoaderClient::shouldTreatURLAsSameAsCurrent): (WebFrameLoaderClient::addHistoryItemForFragmentScroll): (WebFrameLoaderClient::didFinishLoad): (WebFrameLoaderClient::prepareForDataSourceReplacement): (WebFrameLoaderClient::setTitle): (WebFrameLoaderClient::userAgent):
- COM/WebFrameLoaderClient.h: Added.
- COM/WebKitDLL.h:
- WebKit.vcproj/WebKit.vcproj:
WebKitTools:
- Spinneret/Spinneret.sln:
- 12:11 PM Changeset in webkit [18235] by
-
- 2 edits in trunk/WebCore
Reviewed by Maciej.
http://bugs.webkit.org/show_bug.cgi?id=11842
REGRESSION: Using Safari's snippet editor leaves applewebdata: URLs in history
- loader/mac/DocumentLoaderMac.mm: (WebCore::DocumentLoader::URLForHistory): Don't return appleweburls without an unreachable url.
- 11:48 AM Changeset in webkit [18234] by
-
- 12 edits in trunk
WebCore:
Reviewed by Darin.
Replace more instances of NSError with ResourceError.
Also remove a check for a selector that was added pre-Tiger.
- WebCore.exp:
- loader/DocumentLoader.h:
- loader/FrameLoader.h:
- loader/ResourceLoader.h:
- loader/mac/DocumentLoaderMac.mm: (WebCore::DocumentLoader::setMainDocumentError): (WebCore::DocumentLoader::mainDocumentError): (WebCore::DocumentLoader::clearErrors): (WebCore::DocumentLoader::mainReceivedError):
- loader/mac/FrameLoaderMac.mm: (WebCore::FrameLoader::cancelMainResourceLoad): (WebCore::FrameLoader::opened): (WebCore::FrameLoader::mainReceivedError): (WebCore::FrameLoader::cancelledError): (WebCore::FrameLoader::fileDoesNotExistError): (WebCore::FrameLoader::handleUnimplementablePolicy): (WebCore::FrameLoader::setMainDocumentError): (WebCore::FrameLoader::mainReceivedCompleteError): (WebCore::FrameLoader::sendRemainingDelegateMessages): (WebCore::FrameLoader::requestFromDelegate): (WebCore::FrameLoader::loadedResourceFromMemoryCache): (WebCore::FrameLoader::loadResourceSynchronously):
- loader/mac/ResourceLoaderMac.mm: (WebCore::ResourceLoader::willSendRequest): (WebCore::ResourceLoader::didCancel): (WebCore::ResourceLoader::cancel): (WebCore::ResourceLoader::cancelledError):
- loader/mac/SubresourceLoaderMac.mm: (WebCore::SubresourceLoader::didCancel):
WebKit:
Reviewed by Darin.
Include ResourceError.h.
- Plugins/WebNetscapePluginStream.mm:
- WebKit.xcodeproj/project.pbxproj:
- 11:31 AM Changeset in webkit [18233] by
-
- 13 edits5 adds in trunk
Reviewed by Darin.
http://bugs.webkit.org/show_bug.cgi?id=11824
CSSStyleSheet.title property is always null
Set title on the stylesheet just after creating it, for the HTML
elements <link> and <style>.
- 4:26 AM Changeset in webkit [18232] by
-
- 3 edits in trunk/WebCore
Fix compilation (from lars)
Dec 14, 2006:
- 11:50 PM Changeset in webkit [22673] by
-
- 1 edit in branches/WindowsMerge/WebCore/ChangeLog
ChangeLog fixup
- 11:46 PM Changeset in webkit [22672] by
-
- 2 edits in branches/WindowsMerge/WebCore
Reviewed by NOBODY (OOPS!).
WARNING: NO TEST CASES ADDED OR CHANGED
- page/win/EventHandlerWin.cpp: (WebCore::EventHandler::passMousePressEventToSubframe): (WebCore::EventHandler::passMouseMoveEventToSubframe): (WebCore::EventHandler::passMouseReleaseEventToSubframe): (WebCore::EventHandler::passWheelEventToSubframe):
- 8:10 PM Changeset in webkit [22671] by
-
- 2 edits in branches/WindowsMerge/WebCore
Reviewed by Adam.
Update PopupMenu code to use new PopupMenuClient instead of RenderMenuList.
- platform/win/PopupMenuWin.cpp: (WebCore::PopupMenu::PopupMenu): (WebCore::PopupMenu::show): (WebCore::PopupMenu::calculatePositionAndSize): (WebCore::PopupMenu::setFocusedIndex): (WebCore::PopupMenu::focusedIndex): (WebCore::PopupMenu::focusFirst): (WebCore::PopupMenu::focusLast): (WebCore::PopupMenu::down): (WebCore::PopupMenu::up): (WebCore::PopupMenu::paint): (WebCore::PopupWndProc):
- 8:04 PM Changeset in webkit [18231] by
-
- 21 edits in trunk
WebCore:
Reviewed by Maciej.
Use char* pointer + length instead of NSData in a bunch of places.
- loader/DocumentLoader.h:
- loader/FrameLoader.h:
- loader/FrameLoaderClient.h:
- loader/MainResourceLoader.h:
- loader/NetscapePlugInStreamLoader.h:
- loader/ResourceLoader.h: (WebCore::ResourceLoader::willStopBufferingData):
- loader/SubresourceLoader.h:
- loader/mac/DocumentLoaderMac.mm: (WebCore::DocumentLoader::commitLoad): (WebCore::DocumentLoader::receivedData): (WebCore::DocumentLoader::setupForReplaceByMIMEType):
- loader/mac/FrameLoaderMac.mm: (WebCore::FrameLoader::didReceiveData): (WebCore::FrameLoader::receivedData): (WebCore::FrameLoader::committedLoad):
- loader/mac/MainResourceLoaderMac.mm: (WebCore::MainResourceLoader::addData): (WebCore::MainResourceLoader::didReceiveData):
- loader/mac/NetscapePlugInStreamLoaderMac.mm: (WebCore::NetscapePlugInStreamLoader::didReceiveData):
- loader/mac/ResourceLoaderMac.mm: (WebCore::ResourceLoader::addData): (WebCore::ResourceLoader::didReceiveData): (WebCore::ResourceLoader::willStopBufferingData):
- loader/mac/SubresourceLoaderMac.mm: (WebCore::SubresourceLoader::didReceiveData):
- platform/network/ResourceHandleClient.h: (WebCore::ResourceHandleClient::willStopBufferingData):
- platform/network/mac/ResourceHandleMac.mm: (-[WebCoreResourceHandleAsDelegate connection:willStopBufferingData:]):
WebKit:
Reviewed by Maciej.
Update for WebCore changes.
- WebCoreSupport/WebFrameLoaderClient.h:
- WebCoreSupport/WebFrameLoaderClient.mm: (WebFrameLoaderClient::incrementProgress): (WebFrameLoaderClient::committedLoad): (WebFrameLoaderClient::deliverArchivedResources):
- WebView/WebView.mm: (-[WebView _incrementProgressForIdentifier:length:]):
- WebView/WebViewInternal.h:
- 8:02 PM Changeset in webkit [18230] by
-
- 5 edits in trunk/WebCore
Reviewed by Adam.
Added PopupMenuClient class so the PopupMenu class no longer needs to know
about the RenderMenuList or the DOM.
- platform/PopupMenu.h: (WebCore::PopupMenuClient::~PopupMenuClient): (WebCore::PopupMenu::create): Made this protected so PopupMenu can be subclassed. (WebCore::PopupMenu::disconnectClient): Renamed from disconnectMenuList. (WebCore::PopupMenu::client): Added.
- platform/mac/PopupMenuMac.mm: (WebCore::PopupMenu::PopupMenu): Created using PopupMenuClient instead of RenderMenuList. (WebCore::PopupMenu::populate): Asks the client for info about the list items instead of looking at the DOM or the renderer. (WebCore::PopupMenu::show): ditto. (WebCore::PopupMenu::hide): ditto.
- rendering/RenderMenuList.h: Now also inherits from PopupMenuClient. (WebCore::RenderMenuList::shouldPopOver): Added. Tells the popup whether the menu should pop over the client, or under.
- rendering/RenderMenuList.cpp: (WebCore::RenderMenuList::~RenderMenuList): Calls disconnectClient(). (WebCore::RenderMenuList::calcMinMaxWidth): Removed unnecessary (and harmful) call to updateFromElement. updateFromElmeent can add children, and you don't want to do that in the middle of calculating width. (WebCore::RenderMenuList::itemText): Added PopupClient method to provide information about the items in the menu list. (WebCore::RenderMenuList::itemIsEnabled): ditto. (WebCore::RenderMenuList::itemStyle): ditto. (WebCore::RenderMenuList::clientStyle): ditto. (WebCore::RenderMenuList::clientDocument): ditto. (WebCore::RenderMenuList::clientPaddingLeft): ditto. (WebCore::RenderMenuList::clientPaddingRight): ditto. (WebCore::RenderMenuList::listSize): ditto. (WebCore::RenderMenuList::selectedIndex): ditto. (WebCore::RenderMenuList::itemIsSeparator): ditto. (WebCore::RenderMenuList::itemIsLabel): ditto. (WebCore::RenderMenuList::itemIsSelected): ditto. (WebCore::RenderMenuList::setTextFromItem): ditto.
- 7:43 PM Changeset in webkit [18229] by
-
- 8 edits2 adds in trunk
LayoutTests:
Updated these results now that I've rolled out my change to move focus
to the page level:
- editing/undo/undo-iframe-location-change-expected.txt:
- fast/forms/focus2-expected.txt:
Added this test for one of the regressions that moving focus to the page
level caused:
- editing/selection/inactive-selection-expected.txt: Added.
- editing/selection/inactive-selection.html: Added.
WebCore:
Fixed <rdar://problem/4882713> GMAIL (REGRESSION): Can't apply font style,
foreground or background to selected text
Also <rdar://problem/4883751> REGRESSION: Caret fails to insert itself
automatically in a new note window
I'm rolling out my change to move focus to the page level because it caused
too many unexpected and bizarre regressions. Our code relies on focus
being per-document so that it can make focus changes that are effectively
no-ops, and so that it can conflate focus and selection in some cases (a bad
idea, since they're not the same).
Hopefully we can revisit this, along with hover and active, in the future.
- dom/Document.cpp: (WebCore::widgetForNode): (WebCore::relinquishesEditingFocus): (WebCore::acceptsEditingFocus): (WebCore::clearSelectionIfNeeded): (WebCore::Document::removedLastRef): (WebCore::Document::detach): (WebCore::Document::focusedNodeDetached): (WebCore::Document::setFocusedNode):
- dom/Document.h: (WebCore::Document::focusedNode):
- page/FocusController.cpp:
- page/FocusController.h:
- 7:34 PM Changeset in webkit [22670] by
-
- 1 edit in branches/WindowsMerge/WebKitWin/WebKit.vcproj/VERSION
Bump version for submit
- 7:27 PM Changeset in webkit [18228] by
-
- 1 copy in tags/Safari-521.32.3b
New tag.
- 7:14 PM Changeset in webkit [18227] by
-
- 2 edits in trunk/WebCore
Reviewed by Geoff.
- fix failing drag & drop layout tests
- platform/mac/KURLMac.mm: (WebCore::KURL::getNSURL): Turn empty KURL into empty NSURL, but null KURL into nil.
- 6:25 PM Changeset in webkit [18226] by
-
- 4 edits in trunk/WebKit
Reviewed by Darin.
<rdar://problem/4827549> need NSRange-based selection support exposed.
- WebView/WebFrame.mm: (-[WebFrame _selectedNSRange]): (-[WebFrame _selectNSRange:]):
- WebView/WebFramePrivate.h:
- 6:18 PM Changeset in webkit [22669] by
-
- 2 edits in branches/WindowsMerge/WebCore
2006-12-14 Steve Falkenburg <sfalken@apple.com>
Build fix.
- platform/win/TemporaryLinkStubs.cpp: (SubresourceLoader::didCancel):
- 5:30 PM Changeset in webkit [18225] by
-
- 2 edits in trunk/WebCore
2006-12-14 Steve Falkenburg <sfalken@apple.com>
Build fix.
- loader/MainResourceLoader.h:
- 5:24 PM Changeset in webkit [18224] by
-
- 3 edits in branches/Safari-2-0-branch/WebKit
2006-12-14 Mark Rowe <mrowe@apple.com>
Merged fix from TOT to Safari-2-0-branch.
2006-11-14 Alexey Proskuryakov <ap@webkit.org>
Reviewed by Tim H.
http://bugs.webkit.org/show_bug.cgi?id=3387
Redundant keydown, keypress, keyup events sent for arrow keys
Added another layer of ugly hacks around AppKit event dispatching.
- For arrow keys, keyDown: is invoked after performKeyEquivalent:, so had to store _private->keyDownEvent in both methods, and make it persist after leaving them.
- For Esc, AppKit calls performKeyEquivalent: with a fake event of some kind, use [NSApp currentEvent] to check for this to prevent it from being passed to WebCore.
Test: manual-tests/arrow-key-events.html
- WebView/WebHTMLView.m: (-[NSMutableDictionary dealloc]): (-[NSArray keyDown:]): (-[NSArray keyUp:]): (-[NSArray performKeyEquivalent:]):
- WebView/WebHTMLViewInternal.h:
- 4:58 PM Changeset in webkit [22668] by
-
- 2 edits in branches/WindowsMerge/WebCore
2006-12-14 Steve Falkenburg <sfalken@apple.com>
B&I build fix. Added JSSVGPODTypeWrapper.h to the vcproj.
- WebCore.vcproj/WebCore.vcproj:
- 4:41 PM Changeset in webkit [18223] by
-
- 18 edits in trunk
WebCore:
Reviewed by John.
Convert a bunch of NSErrors to ResourceError.
Make the ResourceError accessor functions const.
- WebCore.exp:
- WebCore.xcodeproj/project.pbxproj:
- loader/FrameLoader.h:
- loader/FrameLoaderClient.h:
- loader/MainResourceLoader.h:
- loader/NetscapePlugInStreamLoader.h:
- loader/ResourceLoader.h:
- loader/SubresourceLoader.h:
- loader/mac/FrameLoaderMac.mm: (WebCore::FrameLoader::didFailToLoad): (WebCore::FrameLoader::receivedMainResourceError): (WebCore::FrameLoader::interruptionForPolicyChangeError):
- loader/mac/MainResourceLoaderMac.mm: (WebCore::MainResourceLoader::receivedError): (WebCore::MainResourceLoader::didCancel): (WebCore::MainResourceLoader::interruptionForPolicyChangeError): (WebCore::MainResourceLoader::didFail):
- loader/mac/NetscapePlugInStreamLoaderMac.mm: (WebCore::NetscapePlugInStreamLoader::didFail): (WebCore::NetscapePlugInStreamLoader::didCancel):
- loader/mac/ResourceLoaderMac.mm: (WebCore::ResourceLoader::didFail): (WebCore::ResourceLoader::didCancel):
- loader/mac/SubresourceLoaderMac.mm: (WebCore::SubresourceLoader::didFail): (WebCore::SubresourceLoader::didCancel):
- platform/network/ResourceError.h: (WebCore::ResourceError::domain): (WebCore::ResourceError::errorCode): (WebCore::ResourceError::failingURL): (WebCore::ResourceError::localizedDescription): (WebCore::ResourceError::unpackPlatformErrorIfNeeded):
WebKit:
Reviewed by John.
Update for WebKit changes.
- WebCoreSupport/WebFrameLoaderClient.h:
- WebCoreSupport/WebFrameLoaderClient.mm: (WebFrameLoaderClient::dispatchDidFailLoading): (WebFrameLoaderClient::dispatchDidFailProvisionalLoad): (WebFrameLoaderClient::dispatchDidFailLoad): (WebFrameLoaderClient::dispatchUnableToImplementPolicy): (WebFrameLoaderClient::setMainDocumentError): (WebFrameLoaderClient::cancelledError): (WebFrameLoaderClient::cannotShowURLError): (WebFrameLoaderClient::interruptForPolicyChangeError): (WebFrameLoaderClient::cannotShowMIMETypeError): (WebFrameLoaderClient::fileDoesNotExistError): (WebFrameLoaderClient::shouldFallBack):
- 4:10 PM Changeset in webkit [18222] by
-
- 3 edits in trunk
Link, after the last loader changes. Please update this directory with stubs when modifying the loader. (also fixes some Changelog typos)
- 3:48 PM Changeset in webkit [22667] by
-
- 2 edits in branches/WindowsMerge/WebKitWin
Reviewed by Adam.
Build Fix.
- WebContextMenuClient.h:
- 3:40 PM Changeset in webkit [22666] by
-
- 2 edits in branches/WindowsMerge/WebCore
Reviewed by Adele.
Build fix.
- platform/win/TemporaryLinkStubs.cpp: (DocumentLoader::URL): (ResourceHandle::loadResourceSynchronously):
- 3:30 PM Changeset in webkit [18221] by
-
- 11 edits8 adds in trunk
LayoutTests:
Reviewed by harrison
<rdar://problem/4866671>
CrashTracer: 1 crashes in Mail after deleting a list item at WebCore::DeleteSelectionCommand::doApply()
- editing/deleting/4866671-expected.checksum: Added.
- editing/deleting/4866671-expected.png: Added.
- editing/deleting/4866671-expected.txt: Added.
- editing/deleting/4866671.html: Added.
- editing/pasteboard/4866671-expected.checksum: Added.
- editing/pasteboard/4866671-expected.png: Added.
- editing/pasteboard/4866671-expected.txt: Added.
- editing/pasteboard/4866671.html: Added.
WebCore:
Reviewed by harrison
<rdar://problem/4866671>
CrashTracer: 1 crashes in Mail after deleting a list item at WebCore::DeleteSelectionCommand::doApply()
Don't allow VisiblePositions inside -webkit-user-select:none regions.
Renamed inRenderedContent to isCandidate.
- dom/Document.cpp: (WebCore::Document::updateSelection):
- dom/Position.cpp: (WebCore::Position::previousCharacterPosition): (WebCore::Position::nextCharacterPosition): (WebCore::nodeIsUserSelectNone): (WebCore::Position::isCandidate): (WebCore::Position::rendersInDifferentPosition):
- dom/Position.h:
- editing/InsertParagraphSeparatorCommand.cpp: (WebCore::InsertParagraphSeparatorCommand::doApply):
- editing/InsertTextCommand.cpp: (WebCore::InsertTextCommand::input):
- editing/VisiblePosition.cpp: (WebCore::VisiblePosition::canonicalPosition):
- editing/htmlediting.cpp: (WebCore::nextCandidate): (WebCore::nextVisuallyDistinctCandidate): (WebCore::previousCandidate): (WebCore::previousVisuallyDistinctCandidate):
- editing/visible_units.cpp: (WebCore::previousLinePosition): (WebCore::nextLinePosition): (WebCore::startOfParagraph):
- page/Frame.cpp: (WebCore::Frame::styleForSelectionStart):
- 3:16 PM Changeset in webkit [18220] by
-
- 2 edits in trunk/WebCore
Get rid of the containsStart check and just rely on the selectionState
bits. This allows selection gap filling to behave properly in the presence
of inline blocks and inline tables on lines when the selection originates
inside the inline block.
Reviewed by ggaren
- rendering/RenderBlock.cpp: (WebCore::RenderBlock::fillInlineSelectionGaps):
- 2:13 PM Changeset in webkit [18219] by
-
- 6 edits in trunk/WebCore
Reviewed by John.
General loader cleanup, convert NSURLResponse to ResourceResponse in some places.
- loader/DocumentLoader.h:
- loader/SubresourceLoader.h:
- loader/mac/DocumentLoaderMac.mm: (WebCore::DocumentLoader::addResponse):
- loader/mac/FrameLoaderMac.mm: (WebCore::FrameLoader::opened):
- loader/mac/SubresourceLoaderMac.mm: (WebCore::SubresourceLoader::create):
- 1:04 PM Changeset in webkit [22665] by
-
- 2 edits in branches/WindowsMerge/WebCore
Fix the build.
- platform/win/TemporaryLinkStubs.cpp: (FrameLoader::loadResourceSynchronously): (ResourceHandle::loadResourceSynchronously):
- 12:56 PM Changeset in webkit [22664] by
-
- 6 edits in branches/WindowsMerge/WebKitWin
2006-12-14 Ada Chan <adachan@apple.com>
Reviewed by Steve.
Implemented WebChromeClient::pageRect() to return the bounds of the WebView.
Implemented WebFrame::parentFrame().
Added a temporary implementation of WebDataSource::isLoading().
- 12:50 PM Changeset in webkit [18218] by
-
- 15 edits in trunk/WebCore
Reviewed by Darin.
Add loadResourceSynchronously to ResourceHandle and have FrameLoader use it instead of
calling NSURLConnection directly.
Add an isNull flag to ResourceError so we can convert correctly between nil NSErrors and ResourceErrors.
Get rid of ServeSynchronousRequest and use the loader instead.
- WebCore.exp:
- dom/XMLTokenizer.cpp: (WebCore::openFunc):
- loader/FrameLoader.h:
- loader/LoaderFunctions.h:
- loader/mac/FrameLoaderMac.mm: (WebCore::FrameLoader::canLoad): (WebCore::FrameLoader::loadResourceSynchronously):
- loader/mac/LoaderFunctionsMac.mm:
- platform/network/ResourceError.h: (WebCore::ResourceError::ResourceError): (WebCore::ResourceError::isNull):
- platform/network/ResourceHandle.h:
- platform/network/ResourceRequest.cpp: (WebCore::ResourceRequest::isConditional):
- platform/network/ResourceRequest.h:
- platform/network/mac/ResourceErrorMac.mm: (-[NSError WebCore]):
- platform/network/mac/ResourceHandleMac.mm: (WebCore::ResourceHandle::loadResourceSynchronously):
- xml/XSLTProcessor.cpp: (WebCore::docLoaderFunc):
- xml/xmlhttprequest.cpp: (WebCore::XMLHttpRequest::send):
- 12:42 PM Changeset in webkit [18217] by
-
- 6 edits1 add in trunk/WebCore
Reviewed by Darin.
Fixes: http://bugs.webkit.org/show_bug.cgi?id=11830
Fix fundamental problems with JS SVG POD types.
(currently: FloatPoint/FloatRect/AffineTransform)
- 11:30 AM Changeset in webkit [18216] by
-
- 4 edits in trunk
top level:
Reviewed by Brady.
- Makefile.shared: use $PIPESTATUS[0] and a sub-shell to exit with xcodebuild's exit status
WebKitTools:
Reviewed by Brady.
- Makefile.shared: use $PIPESTATUS[0] and a sub-shell to exit with xcodebuild's exit status
- 10:05 AM Changeset in webkit [18215] by
-
- 2 edits in trunk/WebCore
Reviewed by Darin.
http://bugs.webkit.org/show_bug.cgi?id=11828
Fix a leak of NSURLRequest on each update - RetainPtr retains the object itself.
- platform/network/mac/ResourceRequestMac.mm: (WebCore::ResourceRequest::doUpdatePlatformRequest):
- 9:32 AM Changeset in webkit [18214] by
-
- 2 edits in trunk/WebKitQt
2006-12-14 Simon Hausmann <hausmann@kde.org>
Reviewed by Zack.
- QtLauncher/QtLauncher.pro: Link this little test program with rpath, for convenience. (This is never going to get installed anyway)
- 8:47 AM Changeset in webkit [18213] by
-
- 2 edits in trunk/WebCore
2006-12-14 Simon Hausmann <hausmann@kde.org>
Reviewed by Zack Rusin.
- WebCore.pro: Clean up the xpath grammar generation rule.
- 6:22 AM Changeset in webkit [18212] by
-
- 2 edits in trunk/WebCore
Make it link with temporary stubs (from lars, icefox)
- 3:40 AM Changeset in webkit [18211] by
-
- 4 edits in trunk/WebCore
Compilation fixes for the Qt port after last nights changes
- 2:36 AM Changeset in webkit [18210] by
-
- 10 edits4 adds in trunk
Reviewed by Oliver.
http://bugs.webkit.org/show_bug.cgi?id=11726
SVG Image do not take into account clip/overflow when hit testing
Take into account the overflowRect when hit-testing <svg> container.
- 12:50 AM Changeset in webkit [18209] by
-
- 2 edits in branches/Safari-2-0-branch/WebKit
2006-12-13 Mark Rowe <mrowe@apple.com>
Merged fix from TOT to Safari-2-0-branch.
2006-05-14 Mitz Pettel <opendarwin.org@mitzpettel.com>
Reviewed by Darin.
- fix http://bugzilla.opendarwin.org/show_bug.cgi?id=8739 Crash in RenderTableSection::paint due to manipulating DOM on resize
Manual test: manual-tests/dom-manipulation-on-resize.html
- WebView/WebHTMLView.m: (-[NSArray layoutToMinimumPageWidth:maximumPageWidth:adjustingViewSize:]): Relayout if necessary after sending the resize event.
Dec 13, 2006:
- 11:52 PM Changeset in webkit [18208] by
-
- 5 edits in trunk/WebCore
Fix for bug 11825, dragging elements via -khtml-user-drag is broken (affects Dashboard). Make sure
to clear the paintingRoot properly when recurring into children. It would be nice to find a design
that prevented this mistake from being made and didn't require explicit clearing of the root.
Reviewed by olliej
- rendering/InlineFlowBox.cpp: (WebCore::InlineFlowBox::paint):
- rendering/RenderBlock.cpp: (WebCore::RenderBlock::paintChildren):
- rendering/RenderBox.cpp: (WebCore::RenderBox::paint):
- rendering/RenderTable.cpp: (WebCore::RenderTable::paint):
- 11:33 PM Changeset in webkit [18207] by
-
- 3 edits in branches/Safari-2-0-branch/WebKit
2006-12-13 Mark Rowe <mrowe@apple.com>
Merged fix from TOT to Safari-2-0-branch.
2005-09-06 David Hyatt <hyatt@apple.com>
Reduce the # of cached pages for a back/forward list. The old cache would cache the
following per tab:
1gb memory = 16 pages per tab/window
512mb memory = 8 pages per tab/window
<= 512mb memory = 4 pages per tab/window
This consumes far too much memory and is way too aggressive. The new cache sizes are
as follows:
1gb memory = 3 pages per tab/window
512mb memory = 2 pages per tab/window
< 512mb memory = 1 page per tab/window
Reviewed by john
- History.subproj/WebBackForwardList.m: (-[WebBackForwardList pageCacheSize]):
- WebView.subproj/WebPreferences.m: (+[WebPreferences initialize]):
- 5:30 PM Changeset in webkit [18206] by
-
- 2 edits in trunk/WebCore
- loader/FrameLoader.h: id is mac-only.
- 5:04 PM Changeset in webkit [22663] by
-
- 2 edits in branches/WindowsMerge/WebCore
Fix the build.
- platform/win/TemporaryLinkStubs.cpp: (PolicyCheck::call): (DocumentLoader::URL):
- 3:34 PM Changeset in webkit [18205] by
-
- 2 edits in trunk/WebCore
Implicitly reviewed by Darin, Hyatt, Maciej, and others!
Fixes a document tear down crash.
Changes a few long standing assertions to our new style
- dom/Document.cpp: (WebCore::Document::~Document): (WebCore::Document::topDocument):
- 3:22 PM Changeset in webkit [18204] by
-
- 2 edits in trunk
Reviewed by Brady and Anders.
- Makefile.shared: Stop spewing the environment all the time, at least for command-line builds.
- 3:20 PM Changeset in webkit [18203] by
-
- 30 edits in trunk
Reviewed by Anders.
- added equality and inequality operations for HashMap and Vector, useful for comparing more complex types
- wtf/HashMap.h: (WTF::operator==): (WTF::operator!=):
- wtf/Vector.h: (WTF::operator==): (WTF::operator!=):
WebCore:
Reviewed by Anders.
- converted many places to use ResourceRequest instead of NSURLRequest
- WebCore.exp:
- loader/DocumentLoader.h:
- loader/FrameLoader.cpp: (WebCore::FrameLoader::stopPolicyCheck):
- loader/FrameLoader.h: (WebCore::PolicyCheck::request):
- loader/FrameLoaderClient.h:
- loader/MainResourceLoader.h:
- loader/mac/DocumentLoaderMac.mm: (WebCore::DocumentLoader::DocumentLoader): (WebCore::DocumentLoader::originalRequest): (WebCore::DocumentLoader::originalRequestCopy): (WebCore::DocumentLoader::request): (WebCore::DocumentLoader::initialRequest): (WebCore::DocumentLoader::actualRequest): (WebCore::DocumentLoader::URL): (WebCore::DocumentLoader::unreachableURL): (WebCore::DocumentLoader::replaceRequestURLForAnchorScroll): (WebCore::DocumentLoader::setRequest): (WebCore::DocumentLoader::stopLoading): (WebCore::DocumentLoader::setLastCheckedRequest): (WebCore::DocumentLoader::lastCheckedRequest): (WebCore::DocumentLoader::URLForHistory):
- loader/mac/FrameLoaderMac.mm: (WebCore::FrameLoader::load): (WebCore::FrameLoader::startLoadingMainResource): (WebCore::FrameLoader::applyUserAgent): (WebCore::FrameLoader::originalRequest): (WebCore::FrameLoader::receivedMainResourceError): (WebCore::FrameLoader::callContinueFragmentScrollAfterNavigationPolicy): (WebCore::FrameLoader::continueFragmentScrollAfterNavigationPolicy): (WebCore::FrameLoader::commitProvisionalLoad): (WebCore::FrameLoader::initialRequest): (WebCore::FrameLoader::setRequest): (WebCore::FrameLoader::checkNavigationPolicy): (WebCore::FrameLoader::shouldReloadToHandleUnreachableURL): (WebCore::FrameLoader::reloadAllowingStaleData): (WebCore::FrameLoader::reload): (WebCore::FrameLoader::checkNewWindowPolicy): (WebCore::FrameLoader::continueAfterNewWindowPolicy): (WebCore::FrameLoader::continueAfterNavigationPolicy): (WebCore::FrameLoader::callContinueLoadAfterNavigationPolicy): (WebCore::FrameLoader::continueLoadAfterNavigationPolicy): (WebCore::FrameLoader::checkLoadCompleteForThisFrame): (WebCore::FrameLoader::callContinueLoadAfterNewWindowPolicy): (WebCore::FrameLoader::continueLoadAfterNewWindowPolicy): (WebCore::FrameLoader::post): (WebCore::FrameLoader::addExtraFieldsToRequest): (WebCore::FrameLoader::isReloading): (WebCore::FrameLoader::referrer): (WebCore::FrameLoader::loadEmptyDocumentSynchronously): (WebCore::FrameLoader::loadResourceSynchronously): (WebCore::FrameLoader::originalRequestURL): (WebCore::PolicyCheck::set): (WebCore::PolicyCheck::call): (WebCore::PolicyCheck::clearRequest):
- loader/mac/MainResourceLoaderMac.mm: (WebCore::MainResourceLoader::callContinueAfterNavigationPolicy): (WebCore::MainResourceLoader::continueAfterNavigationPolicy): (WebCore::MainResourceLoader::isPostOrRedirectAfterPost):
- loader/mac/SubresourceLoaderMac.mm: (WebCore::SubresourceLoader::create):
- loader/mac/WebDataProtocol.h:
- loader/mac/WebDataProtocol.mm:
- platform/KURL.cpp: (WebCore::operator!=):
- platform/KURL.h:
- platform/mac/KURLMac.mm: (WebCore::KURL::getNSURL):
- platform/network/FormData.h: (WebCore::operator==): (WebCore::operator!=):
- platform/network/ResourceRequest.cpp: (WebCore::operator==):
- platform/network/ResourceRequest.h:
- platform/network/mac/ResourceRequestMac.mm: (WebCore::ResourceRequest::doUpdatePlatformRequest):
WebKit:
Reviewed by Anders.
- adjusted for changes from NSURLRequest to ResourceRequest
- Plugins/WebPluginController.mm:
- WebCoreSupport/WebFrameLoaderClient.h:
- WebCoreSupport/WebFrameLoaderClient.mm: (WebFrameLoaderClient::updateHistoryForReload): (WebFrameLoaderClient::dispatchIdentifierForInitialRequest): (WebFrameLoaderClient::dispatchDecidePolicyForMIMEType): (WebFrameLoaderClient::dispatchDecidePolicyForNewWindowAction): (WebFrameLoaderClient::dispatchDecidePolicyForNavigationAction): (WebFrameLoaderClient::startDownload): (WebFrameLoaderClient::cannotShowURLError): (WebFrameLoaderClient::createDocumentLoader):
- WebView/WebDataSource.mm: (-[WebDataSource _initWithDocumentLoader:]): (-[WebDataSource initialRequest]): (-[WebDataSource request]):
- WebView/WebDocumentLoaderMac.h:
- WebView/WebDocumentLoaderMac.mm: (WebDocumentLoaderMac::WebDocumentLoaderMac):
- WebView/WebFrame.mm: (-[WebFrame _createItem:]): (-[WebFrame _loadItem:withLoadType:]): (-[WebFrame loadArchive:]):
- 3:19 PM Changeset in webkit [22662] by
-
- 9 edits in branches/WindowsMerge
WebCoreWin:
Reviewed by Darin Adler, Dave Hyatt.
Fixed <rdar://problem/4840261> Frame::setIsActive not called when frames
are focused/unfocused
Minor problems remain with focus in frames, but basic editing / cursor
focus works.
I moved tracking of the focused frame from the Widget hiearchy to Page's
FocusController. Not all widgets are frames, so this change cleaned up a
dubious static cast. Also, the DOM needs to track frame focus because (1)
it needs to respond to focus changes and (2) you can focus an element /
frame even before it has a renderer / widget.
- page/win/EventHandlerWin.cpp: (WebCore::EventHandler::focusDocumentView): Implemented. This function is poorly named, based on the Mac design. (WebCore::PluginViewWin::hasFocus): Added for completeness. It's not really used on Windows, though.
WebKitWin:
Reviewed by Darin Adler, Dave Hyatt.
Fixed <rdar://problem/4840261> Frame::setIsActive not called when frames
are focused/unfocused
Updated WebKit to use new FocusController tracking of the focused frame.
- WebView.cpp: (WebViewWndProc): Fixed a minor bug where we wouldn't fire the blur event when changing focus to the location bar.
- 3:10 PM Changeset in webkit [18202] by
-
- 8 edits in trunk/WebCore
Reviewed by Darin Adler, Dave Hyatt.
Beefed up FocusController to handle frame focus. Changed implementors to
use FocusController, rather than the widget hierarchy, to focus frames.
(WebCore::FocusController::focusedNode): Made a minor change to focus a frame
before focusing the element inside of it. This matches FF.
(WebCore::FocusController::focusedFrame):
- platform/Widget.h:
- 1:33 PM Changeset in webkit [18201] by
-
- 2 edits4 adds in trunk
Reviewed by adele
<rdar://problem/4818145>
Cannot setSelectedDOMRange to non-editable island unless it has editable content on both sides
There are editable positions before/after a "non-editable island" if its
a table, but the code in canonicalPosition was not using
editableRootForPosition to find root editable elements.
- editing/VisiblePosition.cpp: (WebCore::VisiblePosition::canonicalPosition): Use editableRootForPosition to fix the table case.
- 1:08 PM Changeset in webkit [22661] by
-
- 1 edit in branches/WindowsMerge/WebKitWin/WebKit.vcproj/VERSION
Bump version for submit
- 1:01 PM Changeset in webkit [18200] by
-
- 1 copy in tags/Safari-521.32.2b
New tag.
- 12:12 PM Changeset in webkit [22660] by
-
- 3 edits in branches/WindowsMerge/WebCore
2006-12-13 Steve Falkenburg <sfalken@apple.com>
Reviewed by Adam.
Add WebCore forwarding headers to include paths
2006-11-14 Steve Falkenburg <sfalken@apple.com>
B&I build fix
2006-12-13 Steve Falkenburg <sfalken@apple.com>
Reviewed by Adam.
Add missing ForwardingHeaders to project
- WebCore.vcproj/WebCore.make: Fixed line endings
- WebCore.vcproj/WebCore.vcproj: Added missing headers
- 12:02 PM Changeset in webkit [18199] by
-
- 1 edit2 adds in trunk/WebCore
2006-12-13 Steve Falkenburg <sfalken@apple.com>
Reviewed by Adam.
Added missing forwarding headers.
- ForwardingHeaders/kjs/value.h: Added.
- ForwardingHeaders/wtf/HashTable.h: Added.
- 9:05 AM Changeset in webkit [18198] by
-
- 2 edits in trunk/LayoutTests
Updated results to match Justin Garcia's addition of rangeCount to
the selection object.
- fast/dom/Window/window-properties-expected.txt:
- 6:45 AM Changeset in webkit [18197] by
-
- 3 edits in trunk/WebKitTools
Make qmake the default build environment for the Qt port.
CMake currently doesn't work and updates to qmake will happen
a lot faster. Review by Rob
- 5:16 AM Changeset in webkit [18196] by
-
- 6 edits in trunk
make it compile after last nights changes from lars (r=maciej,me)
Dec 12, 2006:
- 11:02 PM Changeset in webkit [22659] by
-
- 2 edits in branches/WindowsMerge/WebCore
2006-12-12 Steve Falkenburg <sfalken@apple.com>
Reviewed by Adam.
B&I build fix
- WebCore.vcproj/build-generated-files.sh:
- 6:48 PM Changeset in webkit [22658] by
-
- 2 edits in branches/WindowsMerge/WebCore
Reviewed by Geoff.
Fixed <rdar://problem/4853199> extra whitespace at beginning and end of pasted fragment into contenteditable region
- platform/win/PasteboardWin.cpp: (WebCore::Pasteboard::documentFragment):
- 6:41 PM Changeset in webkit [22657] by
-
- 5 edits in branches/WindowsMerge/WebCore
- 6:34 PM Changeset in webkit [18195] by
-
- 2 edits in trunk/WebCore
Reviewed by Anders.
Changed #import to #include to match the rest of our ForwardingHeaders.
- ForwardingHeaders/wtf/StringExtras.h:
- 5:46 PM Changeset in webkit [18194] by
-
- 4 edits in S60/trunk/WebCore
2006-12-11 rathnasa <sornalatha.rathnasamy@nokia.com>
Reviewed by Zalan Bujtas (zbujtas@gmail.com).
DESC: TSW Id# EJXO-6UVDF5: The table cells border can't be displayed on the webpage
http://bugs.webkit.org/show_bug.cgi?id=11769
WARNING: NO TEST CASES ADDED OR CHANGED
- khtml/css/html4.css:
- khtml/css/html4_gcce.css:
- khtml/html/html_tableimpl.cpp: (HTMLTableElementImpl::getSharedCellDecl):
- 5:41 PM Changeset in webkit [18193] by
-
- 4 edits in S60/branches/3.1m/WebCore
2006-12-12 rathnasa <sornalatha.rathnasamy@nokia.com>
Reviewed by Zalan Bujtas (zbujtas@gmail.com).
DESC: TSW Id# EJXO-6UVDF5: The table cells border can't be displayed on the webpage
http://bugs.webkit.org/show_bug.cgi?id=11769
WARNING: NO TEST CASES ADDED OR CHANGED
- khtml/css/html4.css:
- khtml/css/html4_gcce.css:
- khtml/html/html_tableimpl.cpp: (HTMLTableElementImpl::getSharedCellDecl):
- 5:23 PM Changeset in webkit [22656] by
-
- 1 edit in branches/WindowsMerge/WebKitWin/WebKit.vcproj/VERSION
Bump version for submit
- 5:16 PM Changeset in webkit [18192] by
-
- 1 copy in tags/Safari-521.32.0b
New tag.
- 4:48 PM Changeset in webkit [18191] by
-
- 5 edits2 adds in trunk
LayoutTests:
Reviewed by harrison
<rdar://problem/4757667>
GoogleDocs: Style menu does not open
- editing/selection/rangeCount-expected.txt: Added.
- editing/selection/rangeCount.html: Added.
WebCore:
Reviewed by harrison
<rdar://problem/4757667>
GoogleDocs: Style menu does not open
- bindings/js/kjs_window.cpp: (KJS::Selection::getValueProperty): Added rangeCount.
- bindings/js/kjs_window.h: (KJS::Selection::):
- editing/SelectionController.h: (WebCore::SelectionController::rangeCount): Added.
- 3:58 PM Changeset in webkit [18190] by
-
- 2 edits in trunk/WebCore
Reviewed by Oliver.
- bindings/js/JSSVGMatrixCustom.cpp: added #ifdef SVG_SUPPORT
- 3:45 PM Changeset in webkit [18189] by
-
- 2 edits in trunk/WebCore
Suggested by Darin.
- loader/ResourceLoader.cpp: Move down include of ResourceHandle.h.
- 3:30 PM Changeset in webkit [18188] by
-
- 2 edits in trunk/WebCore/page
Fixing up svn properties on FocusController.*
- 2:19 PM Changeset in webkit [22655] by
-
- 2 edits in branches/WindowsMerge/WebCore
Reviewed by Adam Roben, Dave Hyatt, Darin Adler.
Added FocusController to project.
- WebCore.vcproj/WebCore.vcproj:
- 2:11 PM Changeset in webkit [18187] by
-
- 7 edits2 adds in trunk/WebCore
Reviewed by Adam Roben, Dave Hyatt, Darin Adler.
Factored focus control into a FocusController class. I inted to use this
class for handling window active state and the focused frame, as well.
Layout tests pass.
- WebCore.xcodeproj/project.pbxproj:
- dom/Document.cpp: (WebCore::Document::view): (WebCore::Document::page): New helper function.
- dom/Document.h: Moved setters before getters. (WebCore::Document::hoverNode): (WebCore::Document::activeNode):
- dom/Node.cpp: (WebCore::Node::detach): Use the FocusController.
- page/FocusController.cpp: Added. (WebCore::shouldFocus): renamed and refactored this helper function. (WebCore::shouldUnfocus): ditto.
- page/FocusController.h: Added.
- 2:03 PM Changeset in webkit [18186] by
-
- 3 edits in trunk/WebCore
Rubber Stamped by Geoff.
- platform/Base64.cpp:
- platform/Base64.h: Put functions inside of the WebCore namespace.
- 1:50 PM Changeset in webkit [22654] by
-
- 6 edits in branches/WindowsMerge
WebCoreWin:
- loader/win/ResourceLoaderWin.cpp:
- platform/network/cf/ResourceHandleCFNet.cpp: (WebCore::ResourceHandle::start):
- platform/win/TemporaryLinkStubs.cpp: (ResourceHandle::loadsBlocked): Update for changes to ResourceHandle.
WebKitWin:
- WebFrame.cpp: (WebFrame::loadDataSource): Update for changes to ResourceHandle.
- 1:42 PM Changeset in webkit [18185] by
-
- 4 edits in trunk/WebCore
Try fixing the non-Mac builds.
- loader/ResourceLoader.cpp: (WebCore::ResourceLoader::willSendRequest): (WebCore::ResourceLoader::didReceiveResponse): (WebCore::ResourceLoader::didReceiveData): (WebCore::ResourceLoader::didFinishLoading): (WebCore::ResourceLoader::didFail):
- loader/SubresourceLoader.cpp: (WebCore::SubresourceLoader::create):
- loader/SubresourceLoader.h:
- 1:14 PM Changeset in webkit [18184] by
-
- 18 edits in trunk
WebCore:
Reviewed by Darin.
Turn ResourceLoader into a ResourceHandleClient and stop using NSURLConnection in the loader.
- WebCore.exp: Add new methods needed by WebKit.
- WebCore.xcodeproj/project.pbxproj: Make ResourceHandle.h a private header.
- loader/FrameLoaderClient.h: Change the download method to take a ResourceHandle instead of an NSURLConnection.
- loader/MainResourceLoader.h: Get rid of the proxy instance variable, that's handled by ResourceHandlw now.
- loader/ResourceLoader.h: (WebCore::ResourceLoader::didReceiveAuthenticationChallenge): (WebCore::ResourceLoader::didCancelAuthenticationChallenge): (WebCore::ResourceLoader::willStopBufferingData): (WebCore::ResourceLoader::willCacheResponse): (WebCore::ResourceLoader::receivedCredential): (WebCore::ResourceLoader::receivedRequestToContinueWithoutCredential): (WebCore::ResourceLoader::receivedCancellation): (WebCore::ResourceLoader::handle):
- loader/SubresourceLoader.h: Make ResourceLoader a ResourceHandleClient, moving the methods from SubresourceLoader.
- loader/mac/MainResourceLoaderMac.mm: (WebCore::MainResourceLoader::MainResourceLoader): (WebCore::MainResourceLoader::continueAfterContentPolicy): (WebCore::MainResourceLoader::loadNow): (WebCore::MainResourceLoader::load): Use a ResourceHandle instead of an NSURLConnection.
- loader/mac/ResourceLoaderMac.mm: (WebCore::ResourceLoader::~ResourceLoader): (WebCore::ResourceLoader::releaseResources): (WebCore::ResourceLoader::load): (WebCore::ResourceLoader::setDefersLoading): (WebCore::ResourceLoader::resourceData): (WebCore::ResourceLoader::didReceiveAuthenticationChallenge): (WebCore::ResourceLoader::didCancel): (WebCore::ResourceLoader::willSendRequest): (WebCore::ResourceLoader::didReceiveResponse): (WebCore::ResourceLoader::didReceiveData): (WebCore::ResourceLoader::didFinishLoading): (WebCore::ResourceLoader::didFail): Remove the WebCoreResourceLoaderAsDelegate class, use a ResourceHandle instead of an NSURLConnection.
- loader/mac/SubresourceLoaderMac.mm: Remove ResourceHandleClient methods.
- platform/network/ResourceHandle.cpp: (WebCore::ResourceHandle::ResourceHandle): (WebCore::ResourceHandle::create):
- platform/network/ResourceHandle.h:
- platform/network/ResourceHandleInternal.h: (WebCore::ResourceHandleInternal::ResourceHandleInternal): Add an extra argument denoting whether this ResourceHandle can possibly be "converted" into one used for downloads.
- platform/network/mac/ResourceHandleMac.mm: (WebCore::ResourceHandle::~ResourceHandle): (WebCore::ResourceHandle::start): (WebCore::ResourceHandle::releaseProxy): (WebCore::ResourceHandle::connection): New methods for creating a NSURLConnectionDelegateProxy which is used when creating a NSURLDownload from an existing connection.
WebKit:
Reviewed by Darin.
- WebCoreSupport/WebFrameLoaderClient.h:
- WebCoreSupport/WebFrameLoaderClient.mm: (WebFrameLoaderClient::download): Get the handle and proxy from the ResourceHandle now that they aren't passed to us.
- 12:13 PM Changeset in webkit [18183] by
-
- 3 edits in S60/trunk/WebKit
2006-12-12 rathnasa <sornalatha.rathnasamy@nokia.com>
Reviewed by Yongjun Zhang and Steve Winship.
DESC: TSW id:EYWG-6W7B4F: Error note "Program closed:BrowserNG" after clicking Submit button on test page
http://bugs.webkit.org/show_bug.cgi?id=11781
- BrowserView/inc/FormDataAutoFillStore.h:
- BrowserView/src/FormDataAutoFillStore.cpp: (CFormDataAutoFillStore::GetDataL): (CFormDataAutoFillStore::DeleteData): (CFormDataAutoFillStore::InsertData): (CFormDataAutoFillStore::SaveData): (CFormDataAutoFillStore::CreateDatabase): (CFormDataAutoFillStore::CreateFormDataTableL):
- 12:09 PM Changeset in webkit [18182] by
-
- 7 edits in trunk
Reviewed by Geoff. Based on a patch by Maks Orlovich.
http://bugs.webkit.org/show_bug.cgi?id=6257
Throw errors on invalid expressions (KJS merge)
- kjs/regexp.cpp: (KJS::RegExp::RegExp): (KJS::RegExp::~RegExp): (KJS::RegExp::match):
- kjs/regexp.h: (KJS::RegExp::flags): (KJS::RegExp::isValid): (KJS::RegExp::errorMessage): (KJS::RegExp::subPatterns): Remember and report RegExp construction failures. Renamed data members not to start with underscores.
- kjs/regexp_object.cpp: (RegExpObjectImp::construct): Raise an exception if RegExp construction fails. (RegExpObjectImp::callAsFunction): Removed an obsolete comment.
- tests/mozilla/ecma_3/RegExp/regress-119909.js: Reduced the number of nested parentheses to a value supported by PCRE.
LayoutTests:
- fast/js/kde/RegExp-expected.txt: One more test passes.
- 11:50 AM SVG TODO List - Short notes edited by
- text+filter stuff (diff)
- 11:42 AM Changeset in webkit [18181] by
-
- 3 edits in trunk/WebCore
Reviewed by Geoff.
- loader/mac/SubresourceLoaderMac.mm: (WebCore::SubresourceLoader::load):
- platform/network/mac/ResourceHandleMac.mm: (WebCore::ResourceHandle::start): Move the didTellBridgeAboutLoad call to SubresourceLoader in preparation for getting rid of the DocLoader parameter to ResourceHandle::create.
- 11:41 AM Changeset in webkit [22653] by
-
- 2 edits in branches/WindowsMerge/WebCore
- fix build
- WebCore.vcproj/WebCore.vcproj: Added missing files, removed obsolete files.
- 11:32 AM Changeset in webkit [18180] by
-
- 1 edit in trunk/LayoutTests/editing/undo/undo-iframe-location-change-expected.txt
Oops. Forgot to check in this file.
- 9:52 AM SVG TODO List - Short notes edited by
- (diff)
- 9:01 AM Changeset in webkit [18179] by
-
- 5 edits in S60/branches/3.1m/WebKit
2006-12-11 sareen <shyam.sareen@nokia.com>
Reviewed Sachin Padma.
DESC: Saved Pages: Some Images not saved with the page.
http://bugzilla.opendarwin.org/show_bug.cgi?id=11721
- BrowserView/src/WebKitLoader.cpp: (CWebKitLoader::LoadPageL):
- ResourceLoader/inc/UrlRequestInfo.h: (CUrlRequestInfo::IsSavedPageRequest): (CUrlRequestInfo::SetSavedPageRequest):
- ResourceLoader/src/MultipartContentHandler.cpp: (CMultipartContentHandler::HandleMultipartMixedL):
- ResourceLoader/src/UrlRequestInfo.cpp: (CUrlRequestInfo::CUrlRequestInfo): (CUrlRequestInfo::~CUrlRequestInfo): (CUrlRequestInfo::SetPostDataL):
- 4:09 AM Changeset in webkit [18178] by
-
- 3 edits in trunk/WebCore
Make the last checkin compile
- 3:19 AM Changeset in webkit [18177] by
-
- 55 edits1 add2 deletes in trunk
Fixes: http://bugs.webkit.org/show_bug.cgi?id=11797
Remove SVGMatrix, replace it by AffineTransform usage everywhere.
Changed AffineTransform API to be able to be used within generation
(m11() -> a(), m12() -> b(), ...). Add some methods needed for SVG.
- 1:55 AM Changeset in webkit [18176] by
-
- 9 edits in trunk
Fix the Qt build
- 1:02 AM Changeset in webkit [18175] by
-
- 8 edits4 adds in trunk
LayoutTests:
Reviewed by Beth Dakin.
Added some focus-related tests.
- editing/undo/undo-iframe-location-change-expected.txt: Updated to reflect the fact that we now unfocus nodes when they're removed from the document.
- fast/events/keypress-removed-node-expected.txt: Added.
- fast/events/keypress-removed-node.html: Added.
- fast/forms/focus2-expected.txt: Added.
- fast/forms/focus2.html: Added.
WebCore:
Reviewed by Beth Dakin.
Moved focus control to the page level. Fixed a minor bug where a node
would retain keyboard focus even when removed from the document.
We should probably move this, along with hover and active, into a separate
FocusController. But I'm too tired right now.
- dom/Document.cpp: Migrated code to Page (WebCore::Document::removedLastRef): (WebCore::Document::detach): (WebCore::Document::setFocusedNode): (WebCore::Document::focusedNode):
- dom/Document.h:
- dom/Node.cpp: (WebCore::Node::detach): Clear ourselves from keyboard focus. This fixes the minor bug and was also necessary to prevent regressions caused by hanging on to a focused node after the document was replaced.
- dom/Node.h: (WebCore::Node::inDetach):
- page/Page.cpp: Migrated code from Document (WebCore::shouldAcquireEditingFocus): (WebCore::shouldRelinquishEditingFocus): (WebCore::clearSelectionIfNeeded): (WebCore::widgetForNode): (WebCore::Page::setFocusedNode):
- page/Page.h: (WebCore::Page::focusedNode):
- 12:45 AM Changeset in webkit [18174] by
-
- 1 edit in trunk/WebCore/platform/Base64.cpp
build fix
- 12:28 AM Changeset in webkit [18173] by
-
- 2 edits in trunk/LayoutTests
Added the new XHR EventTarget methods to test results.
- fast/dom/Window/window-properties-expected.txt: