Timeline
Feb 25, 2007:
- 9:31 PM Changeset in webkit [19852] by
-
- 3 edits4 adds in trunk
2007-02-25 Mitz Pettel <mitz@webkit.org>
Reviewed by David Hyatt.
- fix http://bugs.webkit.org/show_bug.cgi?id=12886 Crash with Scriptalicious javascript library
Test: fast/dynamic/float-withdrawal.html
- rendering/RenderBlock.cpp: (WebCore::RenderBlock::layoutBlockChildren): Detect when a child block had intruding floats in a previous layout, and in that case force it to relayout.
2007-02-25 Mitz Pettel <mitz@webkit.org>
Reviewed by David Hyatt.
- test for http://bugs.webkit.org/show_bug.cgi?id=12886 Crash with Scriptalicious javascript library
- fast/dynamic/float-withdrawal-expected.checksum: Added.
- fast/dynamic/float-withdrawal-expected.png: Added.
- fast/dynamic/float-withdrawal-expected.txt: Added.
- fast/dynamic/float-withdrawal.html: Added.
- 7:00 PM Changeset in webkit [19851] by
-
- 3 edits in trunk/WebCore
Revert my change to the default fill color. Just set the color to transparent explicitly when
drawing textarea resizer frames.
- platform/graphics/GraphicsContext.cpp: (WebCore::GraphicsContextState::GraphicsContextState):
- rendering/RenderLayer.cpp: (WebCore::RenderLayer::paintOverflowControls):
- 6:28 PM Changeset in webkit [19850] by
-
- 2 edits in trunk/WebCore
Update forgotten files.
- rendering/RenderLayer.cpp: (WebCore::RenderLayer::updateLayerPosition):
- 6:07 PM Changeset in webkit [19849] by
-
- 1 edit in trunk/WebCore/page/FrameView.cpp
Forgot to land FrameView.cpp in previous commit.
- 5:29 PM Changeset in webkit [19848] by
-
- 5 edits in trunk/WebCore
Fix for regression caused by changing the containing block of positioned elements with no positioned ancestor
to be the initial containing block (represented in our tree by the RenderView). Rework RenderView's layout
to have very few special cases. Now it will just relayout its children when the width/height of the
view actually changes. Positioned elements no longer get a special additional layout, since width/height
adjustments are caught by the base class already anyway.
Reviewed by mjs, darin
- rendering/RenderBlock.cpp: (WebCore::RenderBlock::layoutBlock):
- rendering/RenderFlexibleBox.cpp: (WebCore::RenderFlexibleBox::layoutBlock): (WebCore::RenderFlexibleBox::layoutVerticalBox):
- rendering/RenderView.cpp: (WebCore::RenderView::RenderView): (WebCore::RenderView::layout):
- rendering/RenderView.h:
- 4:47 PM Changeset in webkit [22996] by
-
- 2 edits in branches/WindowsMerge/WebCore
Reviewed by Adam.
- fixed layout test failure in fast/overflow/scrollRevealButton
I added a new ScrollView method, fullyClippedContentRect, that vies the content rect
as clipped by all ancestor scroll views, not just this one. Currently it only works
correctly on mac however. visibleContentRect, only accounting for the clipping from
this particular scroll view, is sufficient for most purposes.
- platform/win/ScrollViewWin.cpp: (WebCore::ScrolView::fullyClippedContentRect):
- 4:41 PM Changeset in webkit [19847] by
-
- 3 edits in trunk/WebCore
Not reviewed, build fix.
- fix build breakage
- platform/gdk/ScrollViewGdk.cpp: (WebCore::ScrollView::fullyClippedContentRect):
- platform/qt/ScrollViewQt.cpp: (WebCore::ScrollView::fullyClippedContentRect):
- 3:44 PM Changeset in webkit [19846] by
-
- 7 edits in trunk/WebCore
Reviewed by Adam.
- fixed layout test failure in fast/overflow/scrollRevealButton
I added a new ScrollView method, fullyClippedContentRect, that vies the content rect
as clipped by all ancestor scroll views, not just this one. Currently it only works
correctly on mac however. visibleContentRect, only accounting for the clipping from
this particular scroll view, is sufficient for most purposes.
- page/Frame.cpp: (WebCore::Frame::visibleSelectionRect): (WebCore::Frame::setIsActive): (WebCore::Frame::markAllMatchesForText):
- platform/ScrollView.h:
- platform/gdk/ScrollViewGdk.cpp: (WebCore::ScrolView::fullyClippedContentRect):
- platform/mac/ScrollViewMac.mm: (WebCore::ScrollView::fullyClippedContentRect):
- platform/qt/ScrollViewQt.cpp: (WebCore::ScrolView::fullyClippedContentRect):
- rendering/RenderLayer.cpp: (WebCore::RenderLayer::scrollRectToVisible):
- 2:23 PM Changeset in webkit [19845] by
-
- 2 edits in trunk/WebKitSite
Reviewed by Maciej.
- building/checkout.html: Add Trac link to our SVN repository,
Feb 24, 2007:
- 11:20 PM Changeset in webkit [22995] by
-
- 2 edits in branches/WindowsMerge/WebCore
Change #if to #ifdef to match style.
- platform/win/PopupMenuWin.cpp: (WebCore::PopupMenu::show):
- 11:14 PM Changeset in webkit [22994] by
-
- 2 edits in branches/WindowsMerge/WebCore
Reviewed by Steve.
Fix <rdar://problem/5013502> REGRESSION: <select> menus are not
animating smoothly
This was caused by making the menus partially transparent in r12250.
- platform/win/PopupMenuWin.cpp: (WebCore::PopupMenu::show): Disable animations.
- 11:12 PM Changeset in webkit [19844] by
-
- 2 edits in trunk/WebCore
Reviewed by Steve.
"Look Up in Dictionary" context menu item should be Mac-only for now,
since it's only implemented on that platform (<rdar://problem/5021468>)
- platform/ContextMenu.cpp: (WebCore::ContextMenu::populate): Wrap all instances of the dictionary menu item in #if PLATFORM(MAC).
- 8:35 PM Changeset in webkit [22993] by
-
- 2 edits in branches/WindowsMerge/WebKitWin
2007-02-24 Steve Falkenburg <sfalken@apple.com>
Pre-emptive build fix.
Removed CGPThreads DLL copy
- WebKit.vcproj/WebKit.vcproj:
- 6:14 PM Changeset in webkit [19843] by
-
- 5 edits5 adds in trunk
LayoutTests:
Reviewed by Darin Adler.
Layout tests for BidiRun leaks.
- fast/leaks/001-expected.txt: Added.
- fast/leaks/001.html: Added.
- fast/leaks/002-expected.txt: Added.
- fast/leaks/002.html: Added.
WebCore:
Reviewed by Darin Adler.
Fixed <rdar://problem/4987649> leaks in BidiRun::operator new seen while
running WebKit unit tests
In bidi.cpp, some functions allocate BidiRuns and put them in a global data
structure, while others uses the BidiRuns in the global data structure.
The caller is responsible for knowing which functions may allocate runs
and which may use them, and calling deleteBidiRuns() at the appropriate time.
The fix is to add some calls to deleteBidiRuns() where they were missing.
I also added a BidiRun counter because these two leaks were introduced by
our two bidi.cpp experts, so the odds that leaks will creep in again
in the future seem pretty high.
- rendering/bidi.cpp: (WebCore::RenderBlock::bidiReorderCharacters): Added missing call to deleteBidiRuns(). (WebCore::BidiRunCounter::~BidiRunCounter): (WebCore::BidiRun::operator delete): (WebCore::RenderBlock::layoutInlineChildren): Added missing call to deleteBidiRuns(). Moved call to deleteBidiRuns() to same scope as call to bidiReorderLine(), to emphasize that they go together like new/delete. In theory, the old code was just as good, but I didn't want to rely on theory.
WebKitTools:
Reviewed by Darin Adler.
- Scripts/run-webkit-tests: Stop ignoring BidiRun leaks, now that they're fixed.
- 6:35 AM Changeset in webkit [19842] by
-
- 2 edits in trunk/WebCore
Reviewed by Kevin.
<rdar://problem/4961431> Image with empty string alt tag should be ignored
- bridge/mac/WebCoreAXObject.mm: (-[WebCoreAXObject accessibilityIsIgnored]): Ignore img element that has an alt attribute, but that string is empty.
- 5:14 AM Changeset in webkit [19841] by
-
- 2 edits in trunk/WebKitQt
Adjust the animation a little bit to make it more natural.
- 3:14 AM Changeset in webkit [19840] by
-
- 4 edits in trunk/LayoutTests
Reviewed by Anders.
Fix the test not to include any custom content in its auto-generated HTML wrapper.
- fast/js/resources/select-options-add.js:
- fast/js/select-options-add-expected.txt:
- fast/js/select-options-add.html:
- 12:45 AM Changeset in webkit [19839] by
-
- 6 edits in trunk
WebCore:
Reviewed by Adam Roben.
Gdk improvements.
- platform/gdk/FrameGdk.cpp: only scroll on keydown, not both keydown and keyup. (WebCore::FrameGdk::keyPress): (WebCore::FrameGdk::handleGdkEvent): (WebCore::Frame::print): (WebCore::Frame::issueTransposeCommand): (WebCore::Frame::respondToChangedSelection): (WebCore::Frame::cleanupPlatformScriptObjects): (WebCore::Frame::dragImageForSelection):
- platform/network/gdk/ResourceHandleManager.cpp: don't free memory that doesn't belong to us. (WebCore::ResourceHandleManager::downloadTimerCallback):
WebKitTools:
Reviewed by Adam Roben.
Improve gdklauncher: add text field for entering url.
- GdkLauncher/gdklauncher.bkl:
- GdkLauncher/main.cpp: (strEmpty): (strEq): (handleGdkEvent): (goToUrlBarText): (goButtonClickedCb): (urlBarEnterCb): (registerRenderingAreaEvents): (frameResizeCb): (frameDestroyCb): (main):
Feb 23, 2007:
- 11:42 PM Changeset in webkit [19838] by
-
- 3 edits in trunk/WebCore
Reviewed by Anders.
Fixed: <rdar://problem/4971226> REGRESSION: Replying to closed HTML mail message does not quote original body (12503)
There were two problems here:
- page/mac/WebCoreFrameBridge.mm: (+[WebCoreFrameBridge stringWithData:textEncodingName:]): The old code said "if there is no text encoding name than assume WindowsLatin1 (iso-8859-1) and try to decode that". That's not sufficient because it doesn't handle the fallback case for unknown encodings. This method will now attempt to decode using WindowsLatin1 for unknown encoding types.
- platform/mac/mac-encodings.txt: Added the missing "macroman" encoding type.
- 8:35 PM Changeset in webkit [22992] by
-
- 2 adds in branches/WindowsMerge/LayoutTests
Reviewed by Adam.
<rdar://problem/4516049>
Basic Infrastructure: Get regression tests running.
Make boomer-run-webkit-tests work with our internal setup.
- Scripts/boomer-run-webkit-tests:
- 6:55 PM Changeset in webkit [19837] by
-
- 4 edits in trunk
LayoutTests:
Reviewed by Maciej.
- updated test result for http://bugs.webkit.org/show_bug.cgi?id=12856 REGRESSION (r13685): Canceling the suggestion popup does not revert the change
- editing/deleting/delete-3800834-fix-expected.txt:
WebCore:
Reviewed by Maciej.
- fix http://bugs.webkit.org/show_bug.cgi?id=12856 REGRESSION (r13685): Canceling the suggestion popup does not revert the change
- editing/ReplaceSelectionCommand.cpp: (WebCore::ReplaceSelectionCommand::doApply): If the fragment to be inserted is empty, first delete the selection, and only then bail out.
- 6:52 PM Changeset in webkit [19836] by
-
- 2 edits in trunk/WebCore
Reviewed by Adam.
<rdar://problem/5001923>
REGRESSION: Crash when navigating forward from an error page in WebFrameLoaderClient::dispatchDidReceiveContentLength
Fix an error that was introduced in revision r18541. We should check if the provisional document loader
has an unreachable URL, not the actual document loader.
- loader/FrameLoader.cpp: (WebCore::FrameLoader::updateHistoryForCommit):
- 6:35 PM Changeset in webkit [19835] by
-
- 3 edits2 adds in trunk
LayoutTests:
Reviewed by Darin.
- test for http://bugs.webkit.org/show_bug.cgi?id=12823 REGRESSION(r16968-16977): unable to prevent selection by cancelling "selectstart" event
- fast/events/selectstart-during-autoscroll-expected.txt: Added.
- fast/events/selectstart-during-autoscroll.html: Added.
WebCore:
Reviewed by Darin.
- fix http://bugs.webkit.org/show_bug.cgi?id=12823 REGRESSION(r16968-16977): unable to prevent selection by cancelling "selectstart" event
Test: fast/events/selectstart-during-autoscroll.html
- rendering/RenderLayer.cpp: (WebCore::RenderLayer::autoscroll): Invoke the renderer's shouldSelect() -- which dispatches the selection DOM event and gives it a chance to cancel the selection -- before updating the selection during autoscroll.
- 6:22 PM Changeset in webkit [19834] by
-
- 2 edits in trunk/WebKit
Reviewed by Maciej.
- fix http://bugs.webkit.org/show_bug.cgi?id=11573 REGRESSION: pressing option-left arrow while in suggestion popup moves the insertion point to the left
- WebView/WebHTMLView.mm: (-[WebTextCompleteController endRevertingChange:moveLeft:]):
- 6:21 PM Changeset in webkit [22991] by
-
- 2 edits in branches/WindowsMerge/WebCore
Reviewed by Adam.
<rdar://problem/4761543>
nike.com doesn't finish loading if Flash plugin is installed.
If a plugin requests a JavaScript URL with a non null frame target, execute the JavaScript expression. If the result
is not "undefined", replace the contents of the frame with the result converted to a string.
- plugins/win/PluginViewWin.cpp: (WebCore::getString): (WebCore::PluginViewWin::performRequest): (WebCore::PluginViewWin::requestTimerFired):
- 5:25 PM Changeset in webkit [19833] by
-
- 1 edit in trunk/WebCore/ChangeLog
Correcting ChangeLog
- 5:22 PM Changeset in webkit [19832] by
-
- 2 edits1 add in trunk/WebCore
2007-02-23 Oliver Hunt <oliver@apple.com>
Reviewed by Adam.
It turns out short circuiting DragData::containsURL() was bad
- ChangeLog:
- WebCore.xcodeproj/project.pbxproj:
- manual-tests/directory-drop-on-view.html: Added.
- platform/mac/DragDataMac.mm: (WebCore::DragData::containsURL):
- 2:35 PM Changeset in webkit [19831] by
-
- 2 edits in S60/trunk/WebKit
forrest, reviewed by sachin
DESC: re-insert ability to handle EDoNothing case for disposition of downloaded content SXUU-6XZ232
- 11:13 AM Changeset in webkit [19830] by
-
- 5 edits in trunk/WebKit
Reviewed by Brady.
<rdar://problem/5016395> _recursive_pauseNullEventsForAllNetscapePlugins still gone
- WebView/WebFrameInternal.h: Remove _recursive_pauseNullEventsForAllNetscapePlugins
- WebView/WebFramePrivate.h: Add _recursive_pauseNullEventsForAllNetscapePlugins
- WebView/WebFrame.mm: More _recursive_pauseNullEventsForAllNetscapePlugins
- 8:43 AM Changeset in webkit [19829] by
-
- 1 edit in trunk/WebCore/ChangeLog
Added missing bug numbers.
- 8:32 AM Changeset in webkit [19828] by
-
- 3 edits in trunk/WebCore
Reviewed by Mitz.
- 12.5% speedup on BenchJS test 6
It turns out that calling documentVisibleRect on an NSScrollView is pretty expensive,
and calling visibleRect even more so. Take measures to call them less often.
- platform/mac/ScrollViewMac.mm: (WebCore::ScrollView::visibleContentRect): Use documentVisibleRect when possible. (WebCore::ScrollView::updateContents): Use visibleContentRect to be able to use documentVisibleRect when possible.
- rendering/RenderView.cpp: (WebCore::RenderView::repaintViewRectangle): Don't get or intersect with viewRect if we don't have a parent frame, since the ScrollView will do that anyway. Also, don't get contentX and contentY separately since they are in the viewRect already. (WebCore::RenderView::viewRect): Use visibleContentRect instead of getting each coordinate individually, to avoid calling documentVisibleRect repeatedly.
- 8:25 AM Changeset in webkit [19827] by
-
- 2 edits in trunk/WebCore
Reviewed by Mitz.
- 2% speedup on BenchJS test 6
- css/CSSPrimitiveValue.cpp: (WebCore::CSSPrimitiveValue::cssText): Use format() instead of number() followed by append of a constant string.
- 7:34 AM Changeset in webkit [19826] by
-
- 2 edits in trunk/JavaScriptCore
add return values (!!)
- 7:26 AM Changeset in webkit [19825] by
-
- 2 edits in trunk/WebCore
Fix the Qt build.
- 7:08 AM Changeset in webkit [19824] by
-
- 2 edits in trunk/WebKitQt
Adding a little bit of eye-candy to the last
commit (animations on hover events)
- 6:21 AM Changeset in webkit [19823] by
-
- 7 edits in trunk/WebKitQt
Adding API and code for notification of when the
mouse is hovering over a link and adding code to
the sample app to showcase it.
r=Lars
Feb 22, 2007:
- 10:54 PM Changeset in webkit [22990] by
-
- 2 edits in branches/WindowsMerge/WebCore
2007-02-22 Oliver Hunt <oliver@apple.com>
rs = adam
Replacing radar numbers from previous patch with one
the isn't fictitious <rdar://problem/5018591>
- platform/win/CursorWin.cpp: (WebCore::columnResizeCursor): (WebCore::rowResizeCursor): (WebCore::verticalTextCursor):
- 10:48 PM Changeset in webkit [19822] by
-
- 14 edits1 add in trunk/WebCore
Reviewed by Adam Roben, who never sleeps.
To avoid code duplication, move notImplementedGdk() macro to a separate
header file. Remove existing notImplementedGdk() macros and replace
remaining notImplemented() to notImplementedGdk() in gdk code.
- loader/gdk/DocumentLoaderGdk.cpp: (WebCore::DocumentLoader::getResponseModifiedHeader):
- loader/gdk/FrameLoaderClientGdk.cpp: (WebCore::FrameLoaderClientGdk::hasWebView): (WebCore::FrameLoaderClientGdk::hasFrameView):
- page/gdk/ContextMenuClientGdk.cpp: (WebCore::ContextMenuClientGdk::contextMenuDestroyed): (WebCore::ContextMenuClientGdk::getCustomMenuFromDefaultItems): (WebCore::ContextMenuClientGdk::contextMenuItemSelected): (WebCore::ContextMenuClientGdk::downloadURL): (WebCore::ContextMenuClientGdk::copyImageToClipboard): (WebCore::ContextMenuClientGdk::searchWithGoogle): (WebCore::ContextMenuClientGdk::lookUpInDictionary): (WebCore::ContextMenuClientGdk::speak): (WebCore::ContextMenuClientGdk::stopSpeaking):
- page/gdk/EventHandlerGdk.cpp:
- platform/gdk/CursorGdk.cpp: (WebCore::Cursor::Cursor):
- platform/gdk/EditorClientGdk.cpp:
- platform/gdk/NotImplementedGdk.h: Added.
- platform/gdk/PopupMenuGdk.cpp: (WebCore::PopupMenu::PopupMenu): (WebCore::PopupMenu::~PopupMenu): (WebCore::PopupMenu::show): (WebCore::PopupMenu::hide): (WebCore::PopupMenu::updateFromElement):
- platform/gdk/RenderThemeGdk.cpp:
- platform/gdk/ScreenGdk.cpp: (WebCore::screenDepth): (WebCore::screenDepthPerComponent): (WebCore::screenIsMonochrome): (WebCore::screenRect): (WebCore::screenAvailableRect):
- platform/gdk/TemporaryLinkStubs.cpp:
- platform/graphics/gdk/ImageGdk.cpp: (WebCore::Image::drawPattern):
- platform/network/gdk/ResourceHandleCurl.cpp: (WebCore::ResourceHandle::setDefersLoading):
- platform/network/gdk/ResourceHandleManager.cpp: (WebCore::ResourceHandleManager::setupPUT): (WebCore::ResourceHandleManager::setupPOST):
- 10:30 PM Changeset in webkit [22989] by
-
- 2 edits in branches/WindowsMerge/WebCore
2007-02-22 Oliver Hunt <oliver@apple.com>
Reviewed by Ada.
Implemented a couple more cursor methods
- platform/win/CursorWin.cpp: (WebCore::columnResizeCursor): (WebCore::rowResizeCursor): (WebCore::verticalTextCursor): Added radar bug reference <rdar://problem/5018452> (WebCore::progressCursor): (WebCore::noDropCursor): (WebCore::notAllowedCursor): Making them return the correct cursor
- 8:32 PM Changeset in webkit [19821] by
-
- 2 edits in trunk/WebKitTools
Reviewed by Tim H.
Fixes: http://bugs.webkit.org/show_bug.cgi?id=12852
Bug#12852: Drosera should select function name, not "function" keyword when selecting from function list pop-up
- Drosera/debugger.js: Fixed some logic errors resulting in generating double IDs and names.
- 7:48 PM Changeset in webkit [19820] by
-
- 7 edits2 adds in trunk
LayoutTests:
Reviewed by Maciej.
- Test for http://bugs.webkit.org/show_bug.cgi?id=12850 Leaks >10k objects
- fast/events/remove-event-listener-expected.txt: Added.
- fast/events/remove-event-listener.html: Added.
WebCore:
Reviewed by Maciej.
- Patch for http://bugs.webkit.org/show_bug.cgi?id=12850 Leaks >10k objects
and
- http://bugs.webkit.org/show_bug.cgi?id=12853 add a EventListener leak counter
Problem: RemoveEventListener leaks memory if the listener is not
registered.
Fix: Added Window::findJSEventListener function w/o creating a
JSEventListener; Renamed getJSEventListener to findOrCreateJSEventListener;
As an enhancement, added a leak counter for EventListeners.
Added a test case, LayoutTests/fast/events/remove-event-listener.html.
- WebCore/bindings/js/kjs_dom.cpp:
- WebCore/bindings/js/kjs_window.h:
- WebCore/bindings/js/kjs_window.cpp:
- WebCore/bindings/js/kjs_event.cpp: Add a leak counter.
- WebCore/bindings/js/JSXMLHttpRequest.cpp:
- LayoutTests/fast/events/remove-event-listener.html:
- 7:38 PM Changeset in webkit [19819] by
-
- 2 edits in trunk/WebCore
Reviewed by Geoff.
<rdar://problem/4998203>
REGRESSION: Back-forward list gets messed up when navigating to error pages with back-forward cache turned off
- loader/FrameLoader.cpp: (WebCore::FrameLoader::load): Remove call to setPolicyDocumentLoader(), the policy document loader is set immediately after, and setting it before calling shouldReloadToHandleUnreachableURL causes us to get the wrong URL.
(WebCore::FrameLoader::shouldReloadToHandleUnreachableURL):
Check if the unreachable URL is equal to the document loader's request.
(WebCore::FrameLoader::checkLoadCompleteForThisFrame):
Check the provisional document loader's unreachable URL.
- 6:47 PM Changeset in webkit [22988] by
-
- 5 edits in branches/WindowsMerge/WebCore
2007-02-22 Oliver Hunt <oliver@apple.com>
Reviewed by Anders.
Removing accessive COMPtr use from ClipboardWin constructors
Adding data verification to ClipoardWin::SetData
Small amount code tidying, and allowing for failure when writing an URL
- page/win/EventHandlerWin.cpp: (WebCore::EventHandler::createDraggingClipboard): Updated for new ClipboardWin constructor
- platform/win/ClipboardWin.cpp: (WebCore::ClipboardWin::ClipboardWin): (WebCore::writeURL): (WebCore::ClipboardWin::getData): Tidying code, and allowing failure (WebCore::ClipboardWin::setData): Verifying that we're writing a valid url
- platform/win/ClipboardWin.h:
- platform/win/EditorWin.cpp: (WebCore::Editor::newGeneralClipboard): Updated for new ClipboardWin constructor
- 5:13 PM Changeset in webkit [19818] by
-
- 4 edits in trunk
Versioning.
- 4:35 PM Changeset in webkit [19817] by
-
- 4 edits in tags/Safari-5522
Versioning.
- 4:32 PM Changeset in webkit [19816] by
-
- 2 edits in tags/Safari-5522/WebCore
Merge in r19806.
2007-02-22 Adele Peterson <adele@apple.com>
Reviewed by Darin.
Fix for <rdar://problem/5014970> 9A374: Tabs don't work in the message body
Test: fast/events/keypress-insert-tab.html
- page/EventHandler.cpp: (WebCore::EventHandler::defaultTextInputEventHandler): If the defaultTabEventHandler doesn't handle the event, then go on to the insertText case.
- 4:29 PM Changeset in webkit [19815] by
-
- 3 edits in tags/Safari-5522/JavaScriptGlue
Merge in r19805.
2007-02-22 Geoffrey Garen <ggaren@apple.com>
Reviewed by Darin Adler.
Fixed <rdar://problem/4942528> Installer.app Stuck "Examining additional
volumes..."
The problem was that JavaScriptGlue held a JSObject in a static pointer
without protecting it from garbage collection.
sUserObjectPrototypeImp = new UserObjectPrototypeImp();
static ProtectedPtr<UserObjectPrototypeImp> protectPrototype; valiant, brave, but useless
Through an interesting comedy of errors, this object would be collected
and then assigned as the prototype of another object allocated at the
same address, thus becoming its own prototype. (See http://www.ziplo.com/grandpa.htm
for further explanation of this phenomenon.) Hence the infinte loop in
property lookup.
The solution is equally humorous: all of this code was completely useless --
it only served to create an empty object in the prototype chain -- so
I just removed it.
- UserObjectImp.cpp: (UserObjectImp::UserObjectImp):
- UserObjectImp.h:
- 4:26 PM Changeset in webkit [19814] by
-
- 2 edits in tags/Safari-5522/WebCore
Merge in r19783.
2007-02-21 Brady Eidson <beidson@apple.com>
Reviewed by Dave Harrison
<rdar://problem/5014313> - Crash in FrameLoader::restoreScrollPositionAndViewState()
after regaining network connection
- loader/FrameLoader.cpp: (WebCore::FrameLoader::restoreScrollPositionAndViewState): Leave an assertion for debug build exploration, but gracefully handle the release build case
- 4:21 PM Changeset in webkit [19813] by
-
- 1 copy in tags/Safari-5522
New tag.
- 4:12 PM Changeset in webkit [22987] by
-
- 2 edits in branches/WindowsMerge/WebKitWin
Updating this file to match WebCore.
- WebKit.vcproj/textAreaResizeCorner.png:
- 4:03 PM Changeset in webkit [19812] by
-
- 3 edits in trunk/WebKit
Reviewed by John.
Updating this image to match the one in WebCore.
- WebKit.vcproj/textAreaResizeCorner.png:
- 3:59 PM Changeset in webkit [22986] by
-
- 2 edits in branches/WindowsMerge/WebKitWin
Reviewed by Adam.
Fix for http://bugs.webkit.org/show_bug.cgi?id=12399 REGRESSION:
Unable to prevent default context menu from appearing. <rdar://
problem/5017416>
- WebView.cpp: (WebView::handleContextMenuEvent): Clear the controller's context menu before propagating a new context menu event through the DOM.
- 3:51 PM Changeset in webkit [19811] by
-
- 19 edits8 adds in trunk
LayoutTests:
Reviewed by darin
<rdar://problem/5007143>
REGRESSION: WebKit doesn't remember horizontal position of caret when moving forward by line
Added, tests the removal of the use of the
recalc bool from xPosForVerticalArrowNavigation(...):
- editing/selection/5007143-2-expected.checksum: Added.
- editing/selection/5007143-2-expected.png: Added.
- editing/selection/5007143-2-expected.txt: Added.
- editing/selection/5007143-2.html: Added. Added, demonstrate the changes to modify:
- editing/selection/5007143-expected.checksum: Added.
- editing/selection/5007143-expected.png: Added.
- editing/selection/5007143-expected.txt: Added.
- editing/selection/5007143.html: Added. Demonstrates a bug (filed 5017312):
- editing/style/block-style-004-expected.txt:
- editing/style/block-style-005-expected.txt:
- editing/style/block-style-006-expected.txt: Fixed:
- editing/selection/3690703-2-expected.checksum:
- editing/selection/3690703-2-expected.png:
- editing/selection/3690703-2-expected.txt:
- editing/style/create-block-for-style-009-expected.checksum:
- editing/style/create-block-for-style-009-expected.png:
- editing/style/create-block-for-style-009-expected.txt:
- editing/style/create-block-for-style-011-expected.checksum:
- editing/style/create-block-for-style-011-expected.png:
- editing/style/create-block-for-style-011-expected.txt:
WebCore:
Reviewed by darin
<rdar://problem/5007143>
REGRESSION: WebKit doesn't remember horizontal position of caret when moving forward by line
- editing/SelectionController.cpp: (WebCore::SelectionController::SelectionController): Initialize m_xPosForVerticalArrowNavigation. (WebCore::SelectionController::setSelection): Call the new setter. (WebCore::SelectionController::modifyMovingRightForward): For line and paragraph granularities, use the saved xPosForVerticalArrowNavigation even if the old selection was a range. Use the x position of the *start*, not the end of the selection if there is no saved xPosForVerticalArrowNavigation. This matches TextEdit's behavior. (WebCore::SelectionController::modifyMovingLeftBackward): For line and paragraph granularities, use the saved xPosForVerticalArrowNavigation even if the old selection was a range. (WebCore::SelectionController::modify): Preserve the xPosForVerticalArrowNavigation for line and paragraph granularities. (WebCore::SelectionController::xPosForVerticalArrowNavigation): Removed the recalc bool because it is now always false. (WebCore::SelectionController::setXPosForVerticalArrowNavigation): Added.
- editing/SelectionController.h: Moved m_xPosForVerticalArrowNavigation from Frame.
- page/Frame.cpp: Moved m_xPosForVerticalArrowNavigation to SelectionController.
- page/Frame.h: Ditto.
- page/FramePrivate.h: Ditto.
- 3:49 PM Changeset in webkit [19810] by
-
- 6 edits1 add in trunk
WebCore:
Reviewed by Adam. Manual test added.
Fix for http://bugs.webkit.org/show_bug.cgi?id=12399 REGRESSION:
Unable to prevent default context menu from appearing. <rdar://
problem/5017416>
This problem appeared because of two facets of the current context
menu design. First, all context menu events are now considered to
be "swallowed" since we take care of building up the regular
context menu through the defaultEventHandler(). Second, the context
menu controller holds onto it's context menu until a new one is
created. There would be logistical problems changing this since
AppKit relies on the menu being around for as long as it is
visible on the screen and we don't get any notification once the
menu is popped-down.
This patch fixes the problem by giving WebKit a way to clear the
controller's context menu. WebKit now clears the menu before it
propagates a new context menu event through the DOM.
- WebCore.exp:
- manual-tests/DOMContextMenuEvent.html: Added.
- page/ContextMenuController.cpp: (WebCore::ContextMenuController::clearContextMenu):
- page/ContextMenuController.h:
WebKit:
Reviewed by Adam.
Fix for http://bugs.webkit.org/show_bug.cgi?id=12399 REGRESSION:
Unable to prevent default context menu from appearing. <rdar://
problem/5017416>
- WebView/WebHTMLView.mm: (-[WebHTMLView menuForEvent:]): Clear the controller's context menu before propagating a new context menu event through the DOM.
- 3:44 PM Changeset in webkit [22985] by
-
- 15 edits1 move4 adds in branches/WindowsMerge
2007-02-22 Oliver Hunt <oliver@apple.com>
Reviewed by Ada, Lou, and Steve.
WebKit:
Last of the major changes for drag and drop
- Move COMPtr.h to WebCore
- Added WebDragSource, a modified version of SDataSource from the App that can notify a WebView's eventhandler of drag events
- Implement the last bits of the DragClient
- As part of drag client added code to draw the "doubled" text used by drag links. May be useful for other parts of WebKit/App
- COMPtr.h: Removed. Moving to WebCore
- WebDragClient.cpp: (WebDragClient::actionMaskForDrag): (WebDragClient::willPerformDragDestinationAction): (WebDragClient::dragSourceActionMaskForPoint): (WebDragClient::willPerformDragSourceAction):
- Removing WebCore
- as i'm now using the WebCore namespace
(WebDragClient::startDrag):
Implemented client method
(allocImage):
(dragLabelFont):
Helper functions for generating the link dragging image
(WebDragClient::createDragImageForLink):
Implemented client method
- WebDropSource.cpp: Added. (WebDropSource::createInstance): (WebDropSource::WebDropSource): (WebDropSource::QueryInterface): (WebDropSource::AddRef): (WebDropSource::Release): (generateMouseEvent): Generates a mouse event for the EventHandler (WebDropSource::QueryContinueDrag): (WebDropSource::GiveFeedback): Copied from SDataObject in the App. Minor changes per suggestions from Ada and Steve (error codes, potential leaks) Also includes logic to notify the source WebView of drag events (moving and drag end)
- WebDropSource.h: Added. Header for the above
- WebKit.vcproj/WebKit.vcproj: Removing COMPtr.h, and adding WebDropSource.{h,cpp}
- WebKitGraphics.cpp: (DrawDoubledTextAtPoint): Utility function for drawing double text, as used by link dragging image
- WebCore.vcproj/WebCore.vcproj: Adding new files
- page/win/DragControllerWin.cpp: (WebCore::DragController::maxDragImageSize): Maximum size of drag image to allow sharp edges is 208x208
- page/win/EventHandlerWin.cpp: (WebCore::EventHandler::createDraggingClipboard): Properly implemented now
- platform/win/ClipboardWin.cpp: (WebCore::): (WebCore::clipboardTypeFromMIMEType): (WebCore::ClipboardWin::ClipboardWin): (WebCore::ClipboardWin::~ClipboardWin): (WebCore::writeURL): Helper function to write a url to a WCDataObject (WebCore::ClipboardWin::clearData): (WebCore::ClipboardWin::clearAllData): (WebCore::ClipboardWin::getData): (WebCore::ClipboardWin::setData): (WebCore::addMimeTypesForFormat): Helper function for ClipboardWin::types (WebCore::ClipboardWin::types): (WebCore::ClipboardWin::setDragImage): (WebCore::ClipboardWin::setDragImageElement): General setters, match behaviour of WebKit/Mac (WebCore::ClipboardWin::createDragImage): Creates a drag image for a DOM specified Image is specified can't currently generate an image for an arbitrary element (WebCore::imageToMarkup): Wraps a url in an img tag (WebCore::ClipboardWin::declareAndWriteDragImage): (WebCore::ClipboardWin::writeURL): (WebCore::ClipboardWin::writeRange): (WebCore::ClipboardWin::hasData): Implement Clipboard required by DragController. Provides read/write DOM Clipboard implementation for dragging, read only when accessing system clipboard.
- platform/win/ClipboardWin.h: (WebCore::ClipboardWin::dataObject): Provide an accessor for the dataObject
- platform/win/DragDataWin.cpp: (WebCore::urlWFormat): (WebCore::urlFormat): (WebCore::plainTextFormat): (WebCore::plainTextWFormat): (WebCore::texthtmlFormat): (WebCore::htmlFormat): (WebCore::getURL): (WebCore::DragData::asURL): (WebCore::getPlainText): (WebCore::DragData::asPlainText): (WebCore::DragData::asFragment): Refactoring and removing of a few static modifiers to allow sharing with Clipboard
- platform/win/DragImageWin.cpp: (WebCore::dragImageSize): (WebCore::deleteDragImage): (WebCore::allocImage): (WebCore::createCgContextFromBitmap): (WebCore::scaleDragImage): (WebCore::dissolveDragImageToFraction): (WebCore::createDragImageFromImage): (WebCore::createDragImageIconForCachedImage): Implement DragImage functions
- platform/win/EditorWin.cpp: (WebCore::Editor::newGeneralClipboard): Creating a Clipboard that wraps the system clipboard
- platform/win/PasteboardWin.cpp: (WebCore::createGlobalData): (WebCore::markupToCF_HTML): (WebCore::urlToMarkup): (WebCore::replaceNBSP): removing 'static'
- platform/win/WCDataObject.cpp: Added. (WebCore::WCEnumFormatEtc::WCEnumFormatEtc): (WebCore::WCEnumFormatEtc::QueryInterface): (WebCore::WCEnumFormatEtc::AddRef): (WebCore::WCEnumFormatEtc::Release): (WebCore::WCEnumFormatEtc::Next): (WebCore::WCEnumFormatEtc::Skip): (WebCore::WCEnumFormatEtc::Reset): (WebCore::WCEnumFormatEtc::Clone): (WebCore::WCDataObject::createInstance): (WebCore::WCDataObject::WCDataObject): (WebCore::WCDataObject::~WCDataObject): (WebCore::WCDataObject::QueryInterface): (WebCore::WCDataObject::AddRef): (WebCore::WCDataObject::Release): (WebCore::WCDataObject::GetData): (WebCore::WCDataObject::GetDataHere): (WebCore::WCDataObject::QueryGetData): (WebCore::WCDataObject::GetCanonicalFormatEtc): (WebCore::WCDataObject::SetData): (WebCore::WCDataObject::CopyMedium): (WebCore::WCDataObject::EnumFormatEtc): (WebCore::WCDataObject::DAdvise): (WebCore::WCDataObject::DUnadvise): (WebCore::WCDataObject::EnumDAdvise): (WebCore::WCDataObject::clearData): Copied from SDataObject in the App createInstance and clearData are the only new functions. clearData removes any entries in the object with a specified CLIPFORMAT. Have also made a few error and memory handling changes suggested by Steve and Ada
- platform/win/WCDataObject.h: Added. Header for the above
- 3:42 PM Changeset in webkit [19809] by
-
- 4 edits in trunk/WebCore
Reviewed by Kevin and Adele
- fixed <rdar://problem/4129417> Need final art for textarea's resize corner
This probably broke some layout pixel tests since the image changed. I'm going to
track those down in a moment (non-trivial since there are a bunch failing for other
reasons).
- Resources/textAreaResizeCorner.tiff: new art
- Resources/deleteButton.tiff:
- Resources/deleteButtonPressed.tiff: these got smaller when I ran compress-tiffs on this directory
- 3:40 PM Changeset in webkit [19808] by
-
- 7 edits in trunk/WebCore
2007-02-22 Oliver Hunt <oliver@apple.com>
Reviewed by Ada, Lou and Steve.
Moving basic components of ClipboardMac to Clipboard,
last of the basic common code merge will come later (namely setting the
drag element/image).
Tidying up in DragController including a few bad PassRefPtr uses and
removing unnecessary accessors. Also initialise fields properly to
fix <rdar:/problems/5014889>
- dom/Clipboard.cpp: (WebCore::Clipboard::Clipboard): New constructor
- dom/Clipboard.h: (WebCore::Clipboard::isForDragging): (WebCore::Clipboard::dragLocation): (WebCore::Clipboard::dragImage): (WebCore::Clipboard::dragImageElement): Exposing common data
- page/DragController.cpp: (WebCore::DragController::DragController): Initialise m_isHandlingDrag (oops) (WebCore::documentFragmentFromDragData): (WebCore::DragController::tryDocumentDrag): Fixing PassRefPtr misuse (WebCore::DragController::canProcessDrag): (WebCore::DragController::startDrag): (WebCore::DragController::doSystemDrag): Make sure we're using the correct coordinate space
- page/EventHandler.cpp: (WebCore::EventHandler::handleDrag): Reset drag source correctly
- platform/mac/ClipboardMac.h:
- platform/mac/ClipboardMac.mm: (WebCore::ClipboardMac::ClipboardMac): update constructor to use new Clipboard constructor
- 3:07 PM Changeset in webkit [22984] by
-
- 2 edits in branches/WindowsMerge/WebCore
Reviewed by Adele.
Make sure we always paint the right size search results icon.
- 3:02 PM Changeset in webkit [22983] by
-
- 1 edit in branches/WindowsMerge/WebKitWin/WebKit.vcproj/VERSION
Bump version for submit
- 3:00 PM Changeset in webkit [19807] by
-
- 1 copy in tags/Safari-521.35.2b
New tag.
- 2:20 PM Changeset in webkit [19806] by
-
- 6 edits2 adds in trunk
LayoutTests:
Reviewed by Darin.
Test for <rdar://problem/5014970> 9A374: Tabs don't work in the message body
- fast/events/keypress-insert-tab-expected.txt: Added.
- fast/events/keypress-insert-tab.html: Added.
WebCore:
Reviewed by Darin.
Fix for <rdar://problem/5014970> 9A374: Tabs don't work in the message body
Test: fast/events/keypress-insert-tab.html
- page/EventHandler.cpp: (WebCore::EventHandler::defaultTextInputEventHandler): If the defaultTabEventHandler doesn't handle the event, then go on to the insertText case.
WebKitTools:
Reviewed by Darin.
Added option in layoutTestController to setTabKeyCyclesThroughElements, so we
can test <rdar://problem/5014970> 9A374: Tabs don't work in the message body
- DumpRenderTree/DumpRenderTree.m: (+[LayoutTestController isSelectorExcludedFromWebScript:]): (+[LayoutTestController webScriptNameForSelector:]): (-[LayoutTestController setTabKeyCyclesThroughElements:]):
- 2:10 PM Changeset in webkit [19805] by
-
- 3 edits in trunk/JavaScriptGlue
Reviewed by Darin Adler.
Fixed <rdar://problem/4942528> Installer.app Stuck "Examining additional
volumes..."
The problem was that JavaScriptGlue held a JSObject in a static pointer
without protecting it from garbage collection.
sUserObjectPrototypeImp = new UserObjectPrototypeImp();
static ProtectedPtr<UserObjectPrototypeImp> protectPrototype; valiant, brave, but useless
Through an interesting comedy of errors, this object would be collected
and then assigned as the prototype of another object allocated at the
same address, thus becoming its own prototype. (See http://www.ziplo.com/grandpa.htm
for further explanation of this phenomenon.) Hence the infinte loop in
property lookup.
The solution is equally humorous: all of this code was completely useless --
it only served to create an empty object in the prototype chain -- so
I just removed it.
- UserObjectImp.cpp: (UserObjectImp::UserObjectImp):
- UserObjectImp.h:
- 1:55 PM Changeset in webkit [19804] by
-
- 4 edits in S60/trunk/WebKit
naguo, reviewed by sachin
DESC: Open while downloading UI setting functionality is not working correctly SCHY-6YFQ66
http://bugs.webkit.org/show_bug.cgi?id=12846
- 1:25 PM Changeset in webkit [19803] by
-
- 2 edits in S60/trunk/WebCore
hongzhao, reviewed by Zalan, merged by mbradley++
DESC: merge of r19802 to s60 trunk. Cache memory collector is not initialized in 3.2 HZHO-6YMQCK
Fix: Initialize the initial size of cache memory collector after create it.
http://bugs.webkit.org/show_bug.cgi?id=12844
- 1:22 PM Changeset in webkit [19802] by
-
- 2 edits in S60/branches/3.1m/WebCore
hongzhao, Reviewed by Zalan
DESC: [S60] Cache memory collector is not initialized in 3.1m HZHO-6YMQCK
Fix: Initialze the initial size of cache mem collector after create it.
http://bugs.webkit.org/show_bug.cgi?id=12844
- 1:16 PM Changeset in webkit [19801] by
-
- 2 edits in S60/branches/3.1m/WebKit
sareen by yongjun
DESC: Merge of r19655 to s60/3.1m. Selection list not shown correctly in www.elisa.fi HMNN-6XQJMX
http://bugs.webkit.org/show_bug.cgi?id=12719
- 1:00 PM Changeset in webkit [19800] by
-
- 8 edits in trunk/WebCore
Reviewed by Darin.
<rdar://problem/4948887> REGRESSION: Correct differences in public DOM API that inadvertently changed in Leopard
- bindings/objc/PublicDOMInterfaces.h: Changes return types for two size properties, adds deprecated DOMEventTarget methods.
- bindings/scripts/CodeGeneratorObjC.pm: Fixed public API checking for protocols, adds support for ConvertToString.
- dom/EventTarget.idl: Marks addEventListener and removeEventListener with the OldStyleObjC attribute.
- html/HTMLBaseFontElement.idl: Changes the size property to a DOMString for ObjC only.
- html/HTMLInputElement.idl: Changes the size property to a DOMString for ObjC only.
- html/HTMLOptionsCollection.idl: Changes the length property to be unsigned.
- 12:50 PM Changeset in webkit [19799] by
-
- 2 edits in trunk/WebCore
Reviewed by John.
Fix <rdar://problem/5016969> REGRESSION: "Check Spelling As You Type" context menu item is never checked
- platform/ContextMenu.cpp: (WebCore::ContextMenu::checkOrEnableIfNeeded): Set shouldCheck for ContextMenuItemTagCheckSpellingWhileTyping.
- 12:19 PM Changeset in webkit [19798] by
-
- 87 edits in trunk
LayoutTests:
Used svn merge -r19786:19785 to roll out previous SVG results produced by
hack to work around SVG painting issue in DRT.
The new work-around preserves the old SVG results -- both text and pixel.
This should fix the ~400 new pixel failures introduced in r19786.
- svg/W3C-SVG-1.1/animate-elem-02-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-03-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-04-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-05-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-06-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-07-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-08-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-13-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-14-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-15-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-16-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-17-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-18-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-19-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-20-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-21-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-29-b-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-33-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-36-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-39-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-40-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-46-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-77-t-expected.txt:
- svg/W3C-SVG-1.1/filters-blend-01-b-expected.txt:
- svg/W3C-SVG-1.1/fonts-elem-02-t-expected.txt:
- svg/W3C-SVG-1.1/interact-cursor-01-f-expected.txt:
- svg/W3C-SVG-1.1/interact-events-01-b-expected.txt:
- svg/W3C-SVG-1.1/linking-uri-01-b-expected.txt:
- svg/W3C-SVG-1.1/linking-uri-02-b-expected.txt:
- svg/W3C-SVG-1.1/masking-mask-01-b-expected.txt:
- svg/W3C-SVG-1.1/masking-path-04-b-expected.txt:
- svg/W3C-SVG-1.1/metadata-example-01-b-expected.txt:
- svg/W3C-SVG-1.1/painting-fill-02-t-expected.txt:
- svg/W3C-SVG-1.1/painting-marker-03-f-expected.txt:
- svg/W3C-SVG-1.1/pservers-grad-05-b-expected.txt:
- svg/W3C-SVG-1.1/pservers-grad-08-b-expected.txt:
- svg/W3C-SVG-1.1/pservers-grad-11-b-expected.txt:
- svg/W3C-SVG-1.1/render-elems-06-t-expected.txt:
- svg/W3C-SVG-1.1/render-elems-07-t-expected.txt:
- svg/W3C-SVG-1.1/render-elems-08-t-expected.txt:
- svg/W3C-SVG-1.1/script-handle-01-b-expected.txt:
- svg/W3C-SVG-1.1/struct-frag-06-t-expected.txt:
- svg/W3C-SVG-1.1/struct-use-01-t-expected.txt:
- svg/W3C-SVG-1.1/text-align-01-b-expected.txt:
- svg/W3C-SVG-1.1/text-align-02-b-expected.txt:
- svg/W3C-SVG-1.1/text-align-03-b-expected.txt:
- svg/W3C-SVG-1.1/text-align-04-b-expected.txt:
- svg/W3C-SVG-1.1/text-align-05-b-expected.txt:
- svg/W3C-SVG-1.1/text-align-06-b-expected.txt:
- svg/W3C-SVG-1.1/text-altglyph-01-b-expected.txt:
- svg/W3C-SVG-1.1/text-deco-01-b-expected.txt:
- svg/W3C-SVG-1.1/text-fonts-01-t-expected.txt:
- svg/W3C-SVG-1.1/text-fonts-02-t-expected.txt:
- svg/W3C-SVG-1.1/text-text-01-b-expected.txt:
- svg/W3C-SVG-1.1/text-text-03-b-expected.txt:
- svg/W3C-SVG-1.1/text-text-08-b-expected.txt:
- svg/W3C-SVG-1.1/text-tref-01-b-expected.txt:
- svg/W3C-SVG-1.1/text-tselect-02-f-expected.txt:
- svg/W3C-SVG-1.1/text-tspan-01-b-expected.txt:
- svg/W3C-SVG-1.1/text-ws-01-t-expected.txt:
- svg/W3C-SVG-1.1/text-ws-02-t-expected.txt:
- svg/carto.net/button-expected.txt:
- svg/carto.net/colourpicker-expected.txt:
- svg/carto.net/combobox-expected.txt:
- svg/carto.net/scrollbar-expected.txt:
- svg/carto.net/selectionlist-expected.txt:
- svg/carto.net/slider-expected.txt:
- svg/carto.net/tabgroup-expected.txt:
- svg/carto.net/textbox-expected.txt:
- svg/carto.net/window-expected.txt:
- svg/custom/gradient-stop-style-change-expected.txt:
- svg/custom/js-late-clipPath-and-object-creation-expected.txt:
- svg/custom/js-late-clipPath-creation-expected.txt:
- svg/custom/js-late-gradient-and-object-creation-expected.txt:
- svg/custom/non-opaque-filters-expected.txt:
- svg/custom/pointer-events-text-expected.txt:
- svg/custom/text-clip-expected.txt:
- svg/custom/text-filter-expected.txt:
- svg/custom/text-image-opacity-expected.txt:
- svg/custom/text-repaint-including-stroke-expected.txt:
- svg/custom/use-elementInstance-event-target-expected.txt:
- svg/custom/use-on-text-expected.txt:
WebKitTools:
Used svn merge -r19786:19785 to roll out previous hack to work around
SVG painting issue in DRT.
Implemented new work-around, which makes --paint paint *after* dumping
the render tree instead of before, so that painting doesn't influence
the SVG render tree.
This should fix the ~400 new pixel failures introduced in r19786.
- DumpRenderTree/DumpRenderTree.m: (dump):
- Scripts/run-webkit-tests:
- 11:57 AM Changeset in webkit [19797] by
-
- 6 edits4 adds in trunk
LayoutTests:
Reviewed by Darin.
- tests for http://bugs.webkit.org/show_bug.cgi?id=11447 REGRESSION(NativeListBox): List not scrolled to preselected option <rdar://problem/4957463>
- fast/forms/select-initial-position-expected.checksum: Added.
- fast/forms/select-initial-position-expected.png: Added.
- fast/forms/select-initial-position-expected.txt: Added.
- fast/forms/select-initial-position.html: Added.
WebCore:
Reviewed by Darin.
- fix http://bugs.webkit.org/show_bug.cgi?id=11447 REGRESSION(NativeListBox): List not scrolled to preselected option <rdar://problem/4957463>
Initiate scroll when selected <option> is added to <select>.
- html/HTMLOptionElement.cpp: (WebCore::HTMLOptionElement::insertedIntoDocument):
- html/HTMLOptionElement.h:
- html/HTMLSelectElement.cpp: (WebCore::HTMLSelectElement::notifyOptionSelected): (WebCore::HTMLSelectElement::updateListBoxSelection): (WebCore::HTMLSelectElement::scrollToSelection):
- html/HTMLSelectElement.h:
- 11:32 AM Changeset in webkit [19796] by
-
- 2 edits in trunk/WebCore
Fix sites with fixed positioned backgrounds. (my blog =) )
r=Lars,George
- 11:18 AM Changeset in webkit [19795] by
-
- 2 edits in trunk/WebKitTools
Resetting --leaks mode default to run 1000 tests at a time because setting it
to 750 didn't stop the stack logging related crashes, and running more tests
at a time is faster. The crashes seem to be a real bug in stack logging,
not an out of memory condition.
- Scripts/run-webkit-tests:
- 9:38 AM Changeset in webkit [19794] by
-
- 3 edits in trunk/WebKit
Reviewed by Darin
Removed some unused keyView-related code that I happened to run across.
Replacement code is now in WebChromeClient.
- WebCoreSupport/WebFrameBridge.h:
- WebCoreSupport/WebFrameBridge.mm: removed unused stuff
- 8:52 AM Changeset in webkit [19793] by
-
- 4 edits in trunk/WebKitQt
Fixing the default scroll offset, cleaning
up private methods and making the default
look not use any frames.
r=Lars
- 8:17 AM Changeset in webkit [19792] by
-
- 9 edits2 deletes in trunk
Properly implement canvas/scrollview's. Get
rid of ScrollViewCanvasQt and replace it with
a tailor abstractscrollview (now in qwebframe).
Scrolling of pages is finally completely smooth :)
r=Lars
- 7:59 AM Changeset in webkit [19791] by
-
- 2 edits in trunk/JavaScriptCore
Reviewed by Maciej.
Fix ARM-specific alignment problem in FastMalloc
http://bugs.webkit.org/show_bug.cgi?id=12841
- wtf/FastMalloc.cpp: Modify how pageheap_memory is declared to ensure proper alignment on architectures such as ARM
- 7:45 AM Changeset in webkit [19790] by
-
- 2 edits in trunk/WebKit
Reviewed by Maciej.
- fix http://bugs.webkit.org/show_bug.cgi?id=12804 REGRESSION (r19043-r19063): suggestion popup doesn't work after pressing Option+Esc
This patch also fixes a bug where using the arrow keys while
the suggestion popup is open moves the caret instead of changing the
selection in the popup (for up/down) or accepting the selection and
closing the popup (for left/right).
- WebView/WebHTMLView.mm: (-[WebHTMLView keyDown:]): Changed to close the popup only if it was open before the current event, so that the Option-Esc that opens the popup will not close it immediately. (-[WebHTMLView _interceptEditingKeyEvent:]): Give the completion popup a chance to intercept keydown events. (-[WebTextCompleteController popupWindowIsOpen]): Added. Returns whether the suggestion popup is open.
- 7:34 AM Changeset in webkit [19789] by
-
- 2 edits in trunk/WebKit
Reviewed by Mark (age 21).
- fix http://bugs.webkit.org/show_bug.cgi?id=12805 REGRESSION: suggestion popup has a disabled scroll bar
- WebView/WebHTMLView.mm: (-[WebTextCompleteController _buildUI]): Uncommented the call to the NSWindow SPI that forces the scroll bar to look active. Also replaced a call to the deprecated NSTableView method setAutoresizesAllColumnsToFit: with the new method setColumnAutoresizingStyle: to eliminate console spew.
Feb 21, 2007:
- 11:20 PM Changeset in webkit [19788] by
-
- 6 edits in trunk/WebCore
Reviewed by Adam Roben.
Improve notImplemented() macro for gdk. Rename to notImplementedGdk() to
give it a unique name (so that it doesn't clash with notImplemented()
for other platforms).
Make it print a given warning only once, so that frequently called
functions don't clutter the output.
Don't print the warning if DISABLE_NI_WARNING env variable is set.
- loader/gdk/FrameLoaderClientGdk.cpp: (WebCore::FrameLoaderClientGdk::dispatchDidReceiveAuthenticationChallenge): (WebCore::FrameLoaderClientGdk::dispatchDidCancelAuthenticationChallenge): (WebCore::FrameLoaderClientGdk::dispatchWillSendRequest): (WebCore::FrameLoaderClientGdk::assignIdentifierToInitialRequest): (WebCore::FrameLoaderClientGdk::createPlugin): (WebCore::FrameLoaderClientGdk::createFrame): (WebCore::FrameLoaderClientGdk::redirectDataToPlugin): (WebCore::FrameLoaderClientGdk::createJavaAppletWidget): (WebCore::FrameLoaderClientGdk::objectContentType): (WebCore::FrameLoaderClientGdk::overrideMediaType): (WebCore::FrameLoaderClientGdk::windowObjectCleared): (WebCore::FrameLoaderClientGdk::hasWebView): (WebCore::FrameLoaderClientGdk::hasFrameView): (WebCore::FrameLoaderClientGdk::frameLoadCompleted): (WebCore::FrameLoaderClientGdk::saveViewStateToItem): (WebCore::FrameLoaderClientGdk::restoreViewState): (WebCore::FrameLoaderClientGdk::privateBrowsingEnabled): (WebCore::FrameLoaderClientGdk::makeDocumentView): (WebCore::FrameLoaderClientGdk::makeRepresentation): (WebCore::FrameLoaderClientGdk::forceLayout): (WebCore::FrameLoaderClientGdk::forceLayoutForNonHTML): (WebCore::FrameLoaderClientGdk::setCopiesOnScroll): (WebCore::FrameLoaderClientGdk::detachedFromParent1): (WebCore::FrameLoaderClientGdk::detachedFromParent2): (WebCore::FrameLoaderClientGdk::detachedFromParent3): (WebCore::FrameLoaderClientGdk::detachedFromParent4): (WebCore::FrameLoaderClientGdk::loadedFromPageCache): (WebCore::FrameLoaderClientGdk::dispatchDidHandleOnloadEvents): (WebCore::FrameLoaderClientGdk::dispatchDidReceiveServerRedirectForProvisionalLoad): (WebCore::FrameLoaderClientGdk::dispatchDidCancelClientRedirect): (WebCore::FrameLoaderClientGdk::dispatchWillPerformClientRedirect): (WebCore::FrameLoaderClientGdk::dispatchDidChangeLocationWithinPage): (WebCore::FrameLoaderClientGdk::dispatchWillClose): (WebCore::FrameLoaderClientGdk::dispatchDidReceiveIcon): (WebCore::FrameLoaderClientGdk::dispatchDidStartProvisionalLoad): (WebCore::FrameLoaderClientGdk::dispatchDidReceiveTitle): (WebCore::FrameLoaderClientGdk::dispatchDidCommitLoad): (WebCore::FrameLoaderClientGdk::dispatchDidFinishDocumentLoad): (WebCore::FrameLoaderClientGdk::dispatchDidFirstLayout): (WebCore::FrameLoaderClientGdk::dispatchShow): (WebCore::FrameLoaderClientGdk::cancelPolicyCheck): (WebCore::FrameLoaderClientGdk::dispatchDidLoadMainResource): (WebCore::FrameLoaderClientGdk::revertToProvisionalState): (WebCore::FrameLoaderClientGdk::clearUnarchivingState): (WebCore::FrameLoaderClientGdk::willChangeTitle): (WebCore::FrameLoaderClientGdk::finishedLoading): (WebCore::FrameLoaderClientGdk::finalSetupForReplace): (WebCore::FrameLoaderClientGdk::setDefersLoading): (WebCore::FrameLoaderClientGdk::isArchiveLoadPending): (WebCore::FrameLoaderClientGdk::cancelPendingArchiveLoad): (WebCore::FrameLoaderClientGdk::clearArchivedResources): (WebCore::FrameLoaderClientGdk::canHandleRequest): (WebCore::FrameLoaderClientGdk::canShowMIMEType): (WebCore::FrameLoaderClientGdk::representationExistsForURLScheme): (WebCore::FrameLoaderClientGdk::generatedMIMETypeForURLScheme): (WebCore::FrameLoaderClientGdk::provisionalLoadStarted): (WebCore::FrameLoaderClientGdk::didFinishLoad): (WebCore::FrameLoaderClientGdk::prepareForDataSourceReplacement): (WebCore::FrameLoaderClientGdk::setTitle): (WebCore::FrameLoaderClientGdk::setDocumentViewFromPageCache): (WebCore::FrameLoaderClientGdk::dispatchDidReceiveContentLength): (WebCore::FrameLoaderClientGdk::dispatchDidFinishLoading): (WebCore::FrameLoaderClientGdk::dispatchDidFailLoading): (WebCore::FrameLoaderClientGdk::dispatchDidLoadResourceFromMemoryCache): (WebCore::FrameLoaderClientGdk::dispatchDidFailProvisionalLoad): (WebCore::FrameLoaderClientGdk::dispatchDidFailLoad): (WebCore::FrameLoaderClientGdk::download): (WebCore::FrameLoaderClientGdk::cancelledError): (WebCore::FrameLoaderClientGdk::cannotShowURLError): (WebCore::FrameLoaderClientGdk::interruptForPolicyChangeError): (WebCore::FrameLoaderClientGdk::cannotShowMIMETypeError): (WebCore::FrameLoaderClientGdk::fileDoesNotExistError): (WebCore::FrameLoaderClientGdk::shouldFallBack): (WebCore::FrameLoaderClientGdk::willUseArchive): (WebCore::FrameLoaderClientGdk::saveDocumentViewToPageCache): (WebCore::FrameLoaderClientGdk::canCachePage): (WebCore::FrameLoaderClientGdk::dispatchCreatePage): (WebCore::FrameLoaderClientGdk::dispatchUnableToImplementPolicy): (WebCore::FrameLoaderClientGdk::setMainDocumentError): (WebCore::FrameLoaderClientGdk::startDownload): (WebCore::FrameLoaderClientGdk::updateGlobalHistoryForStandardLoad): (WebCore::FrameLoaderClientGdk::updateGlobalHistoryForReload): (WebCore::FrameLoaderClientGdk::shouldGoToHistoryItem):
- page/gdk/EventHandlerGdk.cpp: (WebCore::EventHandler::passMouseDownEventToWidget): (WebCore::EventHandler::eventActivatedView): (WebCore::EventHandler::passSubframeEventToSubframe): (WebCore::EventHandler::passWheelEventToWidget): (WebCore::EventHandler::createDraggingClipboard):
- platform/gdk/EditorClientGdk.cpp: (WebCore::EditorClientGdk::shouldDeleteRange): (WebCore::EditorClientGdk::isContinuousSpellCheckingEnabled): (WebCore::EditorClientGdk::isGrammarCheckingEnabled): (WebCore::EditorClientGdk::spellCheckerDocumentTag): (WebCore::EditorClientGdk::shouldBeginEditing): (WebCore::EditorClientGdk::shouldEndEditing): (WebCore::EditorClientGdk::shouldInsertText): (WebCore::EditorClientGdk::shouldChangeSelectedRange): (WebCore::EditorClientGdk::shouldApplyStyle): (WebCore::EditorClientGdk::didBeginEditing): (WebCore::EditorClientGdk::respondToChangedContents): (WebCore::EditorClientGdk::didEndEditing): (WebCore::EditorClientGdk::didWriteSelectionToPasteboard): (WebCore::EditorClientGdk::didSetSelectionTypesForPasteboard): (WebCore::EditorClientGdk::selectWordBeforeMenuEvent): (WebCore::EditorClientGdk::isEditable): (WebCore::EditorClientGdk::registerCommandForUndo): (WebCore::EditorClientGdk::registerCommandForRedo): (WebCore::EditorClientGdk::clearUndoRedoOperations): (WebCore::EditorClientGdk::canUndo): (WebCore::EditorClientGdk::canRedo): (WebCore::EditorClientGdk::undo): (WebCore::EditorClientGdk::redo): (WebCore::EditorClientGdk::shouldInsertNode): (WebCore::EditorClientGdk::pageDestroyed): (WebCore::EditorClientGdk::smartInsertDeleteEnabled): (WebCore::EditorClientGdk::toggleContinuousSpellChecking): (WebCore::EditorClientGdk::textFieldDidBeginEditing): (WebCore::EditorClientGdk::textFieldDidEndEditing): (WebCore::EditorClientGdk::textDidChangeInTextField): (WebCore::EditorClientGdk::doTextFieldCommandFromEvent): (WebCore::EditorClientGdk::textWillBeDeletedInTextField): (WebCore::EditorClientGdk::textDidChangeInTextArea):
- platform/gdk/RenderThemeGdk.cpp: (WebCore::RenderThemeGdk::setCheckboxSize): (WebCore::RenderThemeGdk::setRadioSize): (WebCore::RenderThemeGdk::adjustTextFieldStyle):
- platform/gdk/TemporaryLinkStubs.cpp: (FrameView::updateBorder): (Widget::setEnabled): (Widget::isEnabled): (Widget::focusPolicy): (Widget::enableFlushDrawing): (Widget::disableFlushDrawing): (Widget::lockDrawingFocus): (Widget::unlockDrawingFocus): (Widget::removeFromParent): (Widget::paint): (Widget::setIsSelected): (Widget::invalidate): (Widget::invalidateRect): (PlatformMouseEvent::PlatformMouseEvent): (WebCore::findNextSentenceFromIndex): (WebCore::findSentenceBoundary): (WebCore::findNextWordFromIndex): (ChromeClientGdk::chromeDestroyed): (ChromeClientGdk::windowRect): (ChromeClientGdk::setWindowRect): (ChromeClientGdk::pageRect): (ChromeClientGdk::scaleFactor): (ChromeClientGdk::focus): (ChromeClientGdk::unfocus): (ChromeClientGdk::createWindow): (ChromeClientGdk::createModalDialog): (ChromeClientGdk::show): (ChromeClientGdk::canRunModal): (ChromeClientGdk::runModal): (ChromeClientGdk::setToolbarsVisible): (ChromeClientGdk::toolbarsVisible): (ChromeClientGdk::setStatusbarVisible): (ChromeClientGdk::statusbarVisible): (ChromeClientGdk::setScrollbarsVisible): (ChromeClientGdk::scrollbarsVisible): (ChromeClientGdk::setMenubarVisible): (ChromeClientGdk::menubarVisible): (ChromeClientGdk::setResizable): (ChromeClientGdk::closeWindowSoon): (ChromeClientGdk::canTakeFocus): (ChromeClientGdk::takeFocus): (ChromeClientGdk::canRunBeforeUnloadConfirmPanel): (ChromeClientGdk::addMessageToConsole): (ChromeClientGdk::runBeforeUnloadConfirmPanel): (ChromeClientGdk::runJavaScriptAlert): (ChromeClientGdk::runJavaScriptConfirm): (ChromeClientGdk::runJavaScriptPrompt): (ChromeClientGdk::setStatusbarText): (ChromeClientGdk::shouldInterruptJavaScript): (ChromeClientGdk::tabsToLinks): (ChromeClientGdk::windowResizerRect): (ChromeClientGdk::addToDirtyRegion): (ChromeClientGdk::scrollBackingStore): (ChromeClientGdk::updateBackingStore): (PlugInInfoStore::createPluginInfoForPluginAtIndex): (PlugInInfoStore::pluginCount): (WebCore::PlugInInfoStore::supportsMIMEType): (WebCore::refreshPlugins): (SearchPopupMenu::saveRecentSearches): (SearchPopupMenu::loadRecentSearches): (SearchPopupMenu::SearchPopupMenu): (PlatformScrollbar::PlatformScrollbar): (PlatformScrollbar::~PlatformScrollbar): (PlatformScrollbar::setEnabled): (PlatformScrollbar::paint): (PlatformScrollbar::updateThumbPosition): (PlatformScrollbar::updateThumbProportion): (PlatformScrollbar::setRect): (FileChooser::FileChooser): (FileChooser::~FileChooser): (FileChooser::openFileChooser): (FileChooser::basenameForWidth): (ResourceHandle::willLoadFromCache): (ResourceHandle::loadsBlocked): (ResourceHandle::loadResourceSynchronously): (Icon::Icon): (Icon::~Icon): (Icon::newIconForFile): (Icon::paint): (Font::drawComplexText): (Font::floatWidthForComplexText): (Font::offsetForPositionForComplexText): (PageCache::close): (Editor::ignoreSpelling): (Editor::learnSpelling): (Editor::isSelectionUngrammatical): (Editor::isSelectionMisspelled): (Editor::guessesForMisspelledSelection): (Editor::guessesForUngrammaticalSelection): (Editor::markMisspellingsAfterTypingToPosition): (Editor::newGeneralClipboard): (Pasteboard::generalPasteboard): (Pasteboard::writeSelection): (Pasteboard::writeURL): (Pasteboard::writeImage): (Pasteboard::clear): (Pasteboard::canSmartReplace): (Pasteboard::documentFragment): (Pasteboard::plainText): (Pasteboard::Pasteboard): (Pasteboard::~Pasteboard): (ContextMenu::ContextMenu): (ContextMenu::~ContextMenu): (ContextMenu::appendItem): (ContextMenuItem::ContextMenuItem): (ContextMenuItem::~ContextMenuItem): (ContextMenuItem::releasePlatformDescription): (ContextMenuItem::type): (ContextMenuItem::setType): (ContextMenuItem::action): (ContextMenuItem::setAction): (ContextMenuItem::title): (ContextMenuItem::setTitle): (ContextMenuItem::platformSubMenu): (ContextMenuItem::setSubMenu): (ContextMenuItem::setChecked): (ContextMenuItem::setEnabled): (WebCore::supportedKeySizes): (WebCore::systemBeep): (WebCore::userIdleTime):
- 10:40 PM Changeset in webkit [19787] by
-
- 2 adds in trunk/WebKitQt/WebCoreSupport
Add missing files from last commit
- 10:17 PM Changeset in webkit [19786] by
-
- 86 edits in trunk
LayoutTests:
Reviewed by Adam Roben.
Updated results to new, more correct values produced by painting SVGs
before dumping their render trees.
- svg/W3C-SVG-1.1/animate-elem-02-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-03-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-04-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-05-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-06-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-07-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-08-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-13-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-14-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-15-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-16-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-17-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-18-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-19-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-20-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-21-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-29-b-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-33-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-36-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-39-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-40-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-46-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-77-t-expected.txt:
- svg/W3C-SVG-1.1/filters-blend-01-b-expected.txt:
- svg/W3C-SVG-1.1/fonts-elem-02-t-expected.txt:
- svg/W3C-SVG-1.1/interact-cursor-01-f-expected.txt:
- svg/W3C-SVG-1.1/interact-events-01-b-expected.txt:
- svg/W3C-SVG-1.1/linking-uri-01-b-expected.txt:
- svg/W3C-SVG-1.1/linking-uri-02-b-expected.txt:
- svg/W3C-SVG-1.1/masking-mask-01-b-expected.txt:
- svg/W3C-SVG-1.1/masking-path-04-b-expected.txt:
- svg/W3C-SVG-1.1/metadata-example-01-b-expected.txt:
- svg/W3C-SVG-1.1/painting-fill-02-t-expected.txt:
- svg/W3C-SVG-1.1/painting-marker-03-f-expected.txt:
- svg/W3C-SVG-1.1/pservers-grad-05-b-expected.txt:
- svg/W3C-SVG-1.1/pservers-grad-08-b-expected.txt:
- svg/W3C-SVG-1.1/pservers-grad-11-b-expected.txt:
- svg/W3C-SVG-1.1/render-elems-06-t-expected.txt:
- svg/W3C-SVG-1.1/render-elems-07-t-expected.txt:
- svg/W3C-SVG-1.1/render-elems-08-t-expected.txt:
- svg/W3C-SVG-1.1/script-handle-01-b-expected.txt:
- svg/W3C-SVG-1.1/struct-frag-06-t-expected.txt:
- svg/W3C-SVG-1.1/struct-use-01-t-expected.txt:
- svg/W3C-SVG-1.1/text-align-01-b-expected.txt:
- svg/W3C-SVG-1.1/text-align-02-b-expected.txt:
- svg/W3C-SVG-1.1/text-align-03-b-expected.txt:
- svg/W3C-SVG-1.1/text-align-04-b-expected.txt:
- svg/W3C-SVG-1.1/text-align-05-b-expected.txt:
- svg/W3C-SVG-1.1/text-align-06-b-expected.txt:
- svg/W3C-SVG-1.1/text-altglyph-01-b-expected.txt:
- svg/W3C-SVG-1.1/text-deco-01-b-expected.txt:
- svg/W3C-SVG-1.1/text-fonts-01-t-expected.txt:
- svg/W3C-SVG-1.1/text-fonts-02-t-expected.txt:
- svg/W3C-SVG-1.1/text-text-01-b-expected.txt:
- svg/W3C-SVG-1.1/text-text-03-b-expected.txt:
- svg/W3C-SVG-1.1/text-text-08-b-expected.txt:
- svg/W3C-SVG-1.1/text-tref-01-b-expected.txt:
- svg/W3C-SVG-1.1/text-tselect-02-f-expected.txt:
- svg/W3C-SVG-1.1/text-tspan-01-b-expected.txt:
- svg/W3C-SVG-1.1/text-ws-01-t-expected.txt:
- svg/W3C-SVG-1.1/text-ws-02-t-expected.txt:
- svg/carto.net/button-expected.txt:
- svg/carto.net/colourpicker-expected.txt:
- svg/carto.net/combobox-expected.txt:
- svg/carto.net/scrollbar-expected.txt:
- svg/carto.net/selectionlist-expected.txt:
- svg/carto.net/slider-expected.txt:
- svg/carto.net/tabgroup-expected.txt:
- svg/carto.net/textbox-expected.txt:
- svg/carto.net/window-expected.txt:
- svg/custom/gradient-stop-style-change-expected.txt:
- svg/custom/js-late-clipPath-and-object-creation-expected.txt:
- svg/custom/js-late-clipPath-creation-expected.txt:
- svg/custom/js-late-gradient-and-object-creation-expected.txt:
- svg/custom/non-opaque-filters-expected.txt:
- svg/custom/pointer-events-text-expected.txt:
- svg/custom/text-clip-expected.txt:
- svg/custom/text-filter-expected.txt:
- svg/custom/text-image-opacity-expected.txt:
- svg/custom/text-repaint-including-stroke-expected.txt:
- svg/custom/use-elementInstance-event-target-expected.txt:
- svg/custom/use-on-text-expected.txt:
WebKitTools:
Reviewed by Adam Roben.
Added hack to force painting when running an SVG test. This is a work-around
for http://bugs.webkit.org/show_bug.cgi?id=12849 SVG renderers update at
paint time instead of style resolution time.
We need this so that --leaks mode, which always paints, doesn't appear to
fail SVG tests. We also need this if we ever want to test style application
in SVG, since many SVGs don't apply style to their renderers until they paint.
- Scripts/run-webkit-tests:
- 8:31 PM Changeset in webkit [22982] by
-
- 2 edits in branches/WindowsMerge/WebKitWin
Build fix
- 7:31 PM Changeset in webkit [22981] by
-
- 2 edits in branches/WindowsMerge/WebKitWin
Reviewed by Anders' rubberstamp
- WebDownload.cpp: (WebDownload::initToResumeWithBundle): Make a copy of the string we truncate so it doesn't affect the original
- 7:12 PM Changeset in webkit [19785] by
-
- 5 edits4 adds in trunk
LayoutTests:
Reviewed by Hyatt.
http://bugs.webkit.org/show_bug.cgi?id=12820
REGRESSION (r19706): Caret not painted after popup, failing editing/pasteboard/4641033
add test for caret before <select> case too
- editing/selection/caret-before-select-expected.checksum: Added.
- editing/selection/caret-before-select-expected.png: Added.
- editing/selection/caret-before-select-expected.txt: Added.
- editing/selection/caret-before-select.html: Added.
WebCore:
Reviewed by Hyatt.
- fix http://bugs.webkit.org/show_bug.cgi?id=12820 REGRESSION (r19706): Caret not painted after popup, failing editing/pasteboard/4641033
Yet another attempt to figure out exactly who should paint the caret.
- editing/SelectionController.cpp: (WebCore::SelectionController::isInsideNode):
- editing/SelectionController.h:
- rendering/RenderBlock.cpp: (WebCore::RenderBlock::paintCaret):
- 7:07 PM Changeset in webkit [22980] by
-
- 2 edits in branches/WindowsMerge/WebKitWin
Reviewed by Adam
<rdar://problem/4964763> - Hookup resume downloads on the engine side
NOTE: Resume downloads are broken in the current ChickenCat - this functionality requires
a custom ToT CFNetwork as of CFNetwork r3372, or will require CFNetwork 172 or later
- WebDownload.cpp: (WebDownload::initWithRequest): Changed some logging, plugged some potential leaks (WebDownload::initToResumeWithBundle): Added a real implementation - this now works! (WebDownload::didFinish): Added some logging and fixed up some lifetime issues (extractResumeDataFromBundle): Renamed to imply the modification of the file. Truncate the resume data from the file once it is extracted
- 6:58 PM Changeset in webkit [19784] by
-
- 5 edits4 adds in trunk
LayoutTests:
Reviewed by Hyatt.
- test for http://bugs.webkit.org/show_bug.cgi?id=12818 REGRESSION (r19148): shacknews.com does not render completely
- fast/dynamic/staticY-marking-parents-regression-expected.checksum: Added.
- fast/dynamic/staticY-marking-parents-regression-expected.png: Added.
- fast/dynamic/staticY-marking-parents-regression-expected.txt: Added.
- fast/dynamic/staticY-marking-parents-regression.html: Added.
WebCore:
Reviewed by Hyatt.
- fix http://bugs.webkit.org/show_bug.cgi?id=12818 REGRESSION (r19148): shacknews.com does not render completely
Test: fast/dynamic/staticY-marking-parents-regression.html
Changed calls to setChildNeedsLayout(true) during layout to
setChildNeedsLayout(true, false). Prior to r19148, the default behavior
of marking containers did not matter because the caller was the container
and was already marked, but r19148 added marking of the parent of
objects with static Y, which can be different from the caller and not
necessarily marked already.
- rendering/RenderBlock.cpp: (WebCore::RenderBlock::collapseMargins): (WebCore::RenderBlock::clearFloatsIfNeeded): (WebCore::RenderBlock::layoutBlockChildren):
- rendering/RenderBox.cpp: (WebCore::RenderBox::setStaticY):
- rendering/RenderFlexibleBox.cpp: (WebCore::RenderFlexibleBox::layoutVerticalBox):
- 6:54 PM Changeset in webkit [19783] by
-
- 2 edits in trunk/WebCore
Reviewed by Dave Harrison
<rdar://problem/5014313> - Crash in FrameLoader::restoreScrollPositionAndViewState()
after regaining network connection
- loader/FrameLoader.cpp: (WebCore::FrameLoader::restoreScrollPositionAndViewState): Leave an assertion for debug build exploration, but gracefully handle the release build case
- 5:14 PM Changeset in webkit [19782] by
-
- 2 edits in trunk/WebCore
Rubber-stamped by Darin.
- bindings/objc/PublicDOMInterfaces.h: Add missing classes that are really public. Also adds the deprecated selector for getComputedStyle: on DOMDocument.
- 4:30 PM Changeset in webkit [19781] by
-
- 3 edits in trunk/WebKitLibraries
Add new version with WKCGContextIsBitmapContext.
- WebKitSystemInterface.h:
- libWebKitSystemInterface.a:
- 4:10 PM Changeset in webkit [19780] by
-
- 11 edits in trunk
LayoutTests:
Reviewed by john
<rdar://problem/5012665>
Removing indent from list moves the caret to the line below
No new layout tests needed because the new results
for these tests and the removed FIXMEs cover the bug fix:
- editing/execCommand/indent-list-item.html:
- editing/execCommand/indent-list-item-expected.checksum:
- editing/execCommand/indent-list-item-expected.png:
- editing/execCommand/indent-list-item-expected.txt:
- editing/execCommand/remove-list-1.html:
- editing/execCommand/remove-list-1-expected.checksum:
- editing/execCommand/remove-list-1-expected.png:
- editing/execCommand/remove-list-1-expected.txt:
WebCore:
Reviewed by john
<rdar://problem/5012665>
Removing indent from list moves the caret to the line below
Selection preservation during indent, outdent and list
operations uses rangeFromLocationAndLength. Ranges returned
by rangeFromLocationAndLength were incorrect for locations
just before the line breaks that are emitted after blocks.
This is because TextIterator emitted bad ranges for these line
breaks (ranges that started and ended *after* the block).
The fix corrects the start but not the end. This is acceptible
because there is code in rangeFromLocationAndLength that corrects
the ends of runs using the start of the run and VisiblePosition
creation.
- editing/TextIterator.cpp: (WebCore::TextIterator::exitNode): Emit a position *inside* the block, after its contents.
- 2:56 PM Changeset in webkit [19779] by
-
- 2 edits in trunk/WebKitTools
Reduced --leaks mode to running only 750 tests at a time, in the hopes
of fixing intermittent crasher that may be caused by out of memory
conditions.
- Scripts/run-webkit-tests:
- 2:32 PM Changeset in webkit [19778] by
-
- 3 edits in trunk/WebKitTools
Reviewed by Darin Adler.
Made DRT paint when running run-webkit-tests in --leaks mode, to check
for painting leaks.
- DumpRenderTree/DumpRenderTree.m: Removed some "NO" initializations, since that's the default for statics. (dumpRenderTree): Added --paint command line option, which specifies that DRT should paint at the end of every test. (displayWebView): New function, called by dump() and -[LayoutTestController display].
- Scripts/run-webkit-tests: Use the --paint command line option when checking for leaks.
- Scripts/run-webkit-tests: Added a new, painting leak to the ignore list. Removed stale comment about THRD leaks -- we now ignore them reliably.
- 2:06 PM Changeset in webkit [22979] by
-
- 2 edits in branches/WindowsMerge/WebCore
WebCoreWin:
Reviewed by Adele.
Updated for SafariTheme changes.
- 1:52 PM Changeset in webkit [22978] by
-
- 2 edits in branches/WindowsMerge/WebCore
Reviewed by Darin.
- WebCore.vcproj/WebCore.vcproj: Added JSHTMLSelectElementCustom.h
- 1:49 PM Changeset in webkit [19777] by
-
- 7 edits3 adds in trunk
LayoutTests:
Reviewed by Darin.
Test for <rdar://problem/4999030> Indexing into select element to get to items in the options collection is broken
- fast/forms/select-index-setter-expected.txt: Added.
- fast/forms/select-index-setter.html: Added.
WebCore:
Reviewed by Darin.
Fix for <rdar://problem/4999030> Indexing into select element to get to items in the options collection is broken
Test: fast/forms/select-index-setter.html
Added indexSetter for HTMLSelectElement.
- WebCore.xcodeproj/project.pbxproj: Added JSHTMLSelectElementCustom.h
- bindings/js/JSHTMLOptionsCollectionCustom.cpp: (WebCore::JSHTMLOptionsCollection::indexSetter): Moved code to selectIndexSetter so it can be shared between these classes.
- bindings/js/JSHTMLSelectElementCustom.cpp: (WebCore::selectIndexSetter): Added. Moved from JSHTMLOptionsCollection::indexSetter. (WebCore::JSHTMLSelectElement::indexSetter): Calls selectIndexSetter.
- bindings/js/JSHTMLSelectElementCustom.h: Added.
- html/HTMLSelectElement.idl: Added HasCustomIndexSetter keyword.
- bindings/scripts/CodeGeneratorJS.pm: When generating "put" methods, if the propertyName is a number, call the indexSetter first, and then call the version of lookupPut that will also try to use the parent's lookup table. This matches the order of our old code, before we autogenerated the JSHTMLSelectElement class.
- 12:48 PM Changeset in webkit [19776] by
-
- 2 edits in trunk/WebKitTools
Tools tweak. No review necessary.
- Scripts/parse-malloc-history: Enabled multiple merge-regexp command line arguments. Changed command line argument variables from special implicit no-op values to specific empty values that we test explicitly.
- 12:00 PM Changeset in webkit [19775] by
-
- 2 edits in trunk/WebKitTools
Reviewed by Tim H.
Bug 12834: Drosera should remember scroll position of open files like Xcode
http://bugs.webkit.org/show_bug.cgi?id=12834
- Drosera/debugger.js: Implemented scrolling memory
- 10:55 AM Changeset in webkit [19774] by
-
- 3 edits in S60/branches/3.1m/WebKit
brmorris, reviewed by Sachin.
DESC: r19404 caused some regresion, so I'm reverting it. TMCN-6XYSLY
This was a fix for Enhanced Input feature not working in 3.1
http://bugs.webkit.org/show_bug.cgi?id=12533
- 8:55 AM Changeset in webkit [19773] by
-
- 8 edits in trunk
Add undo/redo support and more editing commands.
- 5:59 AM Changeset in webkit [19772] by
-
- 6 edits2 adds in trunk/WebCore
Implementing popups for the Qt platform.
r=Lars
- 4:00 AM Changeset in webkit [19771] by
-
- 2 edits in trunk/WebCore
Remove unneeded hack
- 3:18 AM Changeset in webkit [19770] by
-
- 2 edits in trunk/WebCore
Fix rendering of lineedits and remove the spurious
padding on push-buttons.
r=Lars
- 1:13 AM Changeset in webkit [19769] by
-
- 5 edits in trunk
fixing compilation with Qt