Timeline
May 19, 2007:
- 6:19 PM Changeset in webkit [21607] by
-
- 23 edits134 adds in branches/feature-branch
Reviewed by Oliver.
Fixes: http://bugs.webkit.org/show_bug.cgi?id=12698 (SVG text needs a special per-character layout mode.)
Finally land the new SVG text engine.
- 5:20 PM Changeset in webkit [21606] by
-
- 2 edits in trunk/WebCore
Fix for bug 13785, O(n2) counter creation.
Reviewed by darin
- rendering/RenderCounter.cpp: (WebCore::findPlaceForCounter): (WebCore::RenderCounter::originalText):
- 5:16 PM Changeset in webkit [21605] by
-
- 12 edits12 adds in trunk
2007-05-19 Mitz Pettel <mitz@webkit.org>
Reviewed by Dave Hyatt.
- fix http://bugs.webkit.org/show_bug.cgi?id=12729 box-shadow disappears when scrolling a div that it falls on/under
Tests: fast/repaint/box-shadow-dynamic.html
fast/repaint/box-shadow-h.html
fast/repaint/box-shadow-v.html
- rendering/InlineFlowBox.cpp: (WebCore::InlineFlowBox::placeBoxesHorizontally): Factor in box shadow. (WebCore::InlineFlowBox::placeBoxesVertically): Ditto. (WebCore::InlineFlowBox::paint): Account for box shadow when checking if the damage rect intersects.
- rendering/RenderBlock.cpp: (WebCore::RenderBlock::overflowHeight): For overflow areas, when asked for the "exterior" overflow, add box shadow overflow. (WebCore::RenderBlock::overflowWidth): Ditto. (WebCore::RenderBlock::overflowLeft): Ditto. (WebCore::RenderBlock::overflowTop): Ditto. (WebCore::RenderBlock::overflowRect): Ditto. (WebCore::RenderBlock::layoutBlock): Factor box shadow into visual overflow.
- rendering/RenderFlexibleBox.cpp: (WebCore::RenderFlexibleBox::layoutBlock): Ditto.
- rendering/RenderFlow.cpp: (WebCore::RenderFlow::lowestPosition): For overflow areas, when asked for the "exterior" extreme position, add box shadow. (WebCore::RenderFlow::rightmostPosition): Ditto. (WebCore::RenderFlow::leftmostPosition): Ditto.
- rendering/RenderLayer.cpp: (WebCore::RenderLayer::calculateRects): Avoid clipping out box shadow.
- rendering/RenderObject.cpp: (WebCore::RenderObject::repaintAfterLayoutIfNeeded): Make sure to paint the box shadow when an edge with a shadow moves. (WebCore::RenderObject::adjustRectForOutlineAndShadow): Helper function that expands a given rectangle to encompass outline and box shadow. (WebCore::RenderObject::absoluteOutlineBox): Changed to include box shadow.
- rendering/RenderObject.h:
2007-05-19 Mitz Pettel <mitz@webkit.org>
Reviewed by Dave Hyatt.
- repaint tests and updated results for http://bugs.webkit.org/show_bug.cgi?id=12729 box-shadow disappears when scrolling a div that it falls on/under
- fast/box-shadow/basic-shadows-expected.checksum:
- fast/box-shadow/basic-shadows-expected.png:
- fast/box-shadow/basic-shadows-expected.txt:
- fast/repaint/box-shadow-dynamic-expected.checksum: Added.
- fast/repaint/box-shadow-dynamic-expected.png: Added.
- fast/repaint/box-shadow-dynamic-expected.txt: Added.
- fast/repaint/box-shadow-dynamic.html: Added.
- fast/repaint/box-shadow-h-expected.checksum: Added.
- fast/repaint/box-shadow-h-expected.png: Added.
- fast/repaint/box-shadow-h-expected.txt: Added.
- fast/repaint/box-shadow-h.html: Added.
- fast/repaint/box-shadow-v-expected.checksum: Added.
- fast/repaint/box-shadow-v-expected.png: Added.
- fast/repaint/box-shadow-v-expected.txt: Added.
- fast/repaint/box-shadow-v.html: Added.
- 4:42 PM Changeset in webkit [21604] by
-
- 4 edits in trunk/LayoutTests
2007-05-20 Mark Rowe <mrowe@apple.com>
Update test results after r21597.
- fast/frames/viewsource-attribute-expected.checksum:
- fast/frames/viewsource-attribute-expected.png:
- fast/frames/viewsource-attribute-expected.txt:
- 4:11 PM Changeset in webkit [21603] by
-
- 2 edits in trunk/WebCore
2007-05-19 Mitz Pettel <mitz@webkit.org>
Reviewed by Dave Hyatt.
- fix http://bugs.webkit.org/show_bug.cgi?id=13783 REGRESSION (r21120): Frame resizers not repainted properly when dragged
- rendering/RenderFrameSet.cpp: (WebCore::RenderFrameSet::layout):
- 4:09 PM Changeset in webkit [21602] by
-
- 4 edits4 adds in trunk
2007-05-19 Mitz Pettel <mitz@webkit.org>
Reviewed by Darin.
- fix http://bugs.webkit.org/show_bug.cgi?id=13774 REGRESSION: Crash emailing blog entry using Google Reader
Test: fast/table/stale-grid-crash.html
- rendering/RenderTable.cpp: (WebCore::RenderTable::recalcSections): Made const and replaced setNeedsLayout(true) with an assertion that the table is already marked for layout. (WebCore::RenderTable::sectionAbove): Added call to recalcSectionsIfNeeded(). (WebCore::RenderTable::sectionBelow): Ditto. (WebCore::RenderTable::cellAbove): Ditto. (WebCore::RenderTable::cellBelow): Ditto. (WebCore::RenderTable::cellBefore): Ditto. (WebCore::RenderTable::cellAfter): Ditto.
- rendering/RenderTable.h: Made some private member variables which are used in section recalc mutable. (WebCore::RenderTable::setNeedsSectionRecalc): Moved the call to setNeedsLayout() from recalcSections() into here, because I made recalcSections() const. (WebCore::RenderTable::recalcSectionsIfNeeded): Made const.
2007-05-19 Mitz Pettel <mitz@webkit.org>
Reviewed by Darin.
- test for http://bugs.webkit.org/show_bug.cgi?id=13774 REGRESSION: Crash emailing blog entry using Google Reader
- fast/table/stale-grid-crash-expected.checksum: Added.
- fast/table/stale-grid-crash-expected.png: Added.
- fast/table/stale-grid-crash-expected.txt: Added.
- fast/table/stale-grid-crash.html: Added.
- 3:54 PM Changeset in webkit [21601] by
-
- 9 edits4 adds in trunk
2007-05-19 Mitz Pettel <mitz@webkit.org>
Reviewed by Darin.
- http://bugs.webkit.org/show_bug.cgi?id=13320 rounded corners with drop shadows are really slow
Test for a rendering bug fixed by this patch:
fast/box-shadow/border-radius-big.html
No test for the performance ingredient.
- platform/graphics/GraphicsContext.cpp: (WebCore::GraphicsContext::addRoundedRectClip): Made cross-platform. Changed to use a single clipping path. If all the radii cannot be accommodated, clips to a rect. (WebCore::GraphicsContext::clipOutRoundedRect): Changed to use a single clipping path. If all the radii cannot be accommodated, clips out a rect.
- platform/graphics/GraphicsContext.h: Added clipOut(const Path&).
- platform/graphics/Path.cpp: (WebCore::Path::createRoundedRectangle): Added. Returns a rounded rectangle with the specified radii. If all the radii cannot be accommodated, returns a rectangular path.
- platform/graphics/Path.h:
- platform/graphics/cairo/GraphicsContextCairo.cpp: (WebCore::GraphicsContext::clipOut): Added.
- platform/graphics/cg/GraphicsContextCG.cpp: (WebCore::GraphicsContext::fillRoundedRect): Changed to use a single path. (WebCore::GraphicsContext::clipOut): Added.
- platform/graphics/qt/GraphicsContextQt.cpp: (WebCore::GraphicsContext::clipOut): Added.
2007-05-19 Mitz Pettel <mitz@webkit.org>
Reviewed by Darin.
- http://bugs.webkit.org/show_bug.cgi?id=13320 rounded corners with drop shadows are really slow
- fast/box-shadow/border-radius-big-expected.checksum: Added.
- fast/box-shadow/border-radius-big-expected.png: Added.
- fast/box-shadow/border-radius-big-expected.txt: Added.
- fast/box-shadow/border-radius-big.html: Added.
- 6:14 AM Changeset in webkit [21600] by
-
- 3 edits2 adds in trunk
LayoutTests:
Reviewed by Mitz.
http://bugs.webkit.org/show_bug.cgi?id=13771
Assertion failure ASSERT(m_layer) when running Hamachi fuzz tester
- fast/frames/inline-object-inside-frameset-expected.txt: Added.
- fast/frames/inline-object-inside-frameset.html: Added.
WebCore:
Reviewed by Mitz.
Test: fast/frames/inline-object-inside-frameset.html
http://bugs.webkit.org/show_bug.cgi?id=13771
Assertion failure ASSERT(m_layer) when running Hamachi fuzz tester
Don't paint inline objects.
- rendering/RenderFrameSet.cpp: (WebCore::RenderFrameSet::paint):
- 12:42 AM Changeset in webkit [21599] by
-
- 6 edits in trunk/WebCore
Add support for plain text MIME types (CSS/JS/TXT) to view source mode.
CSS/JS will eventually tokenize via their own special tokenizers so that
they can also be syntax-highlighted, but for now just treat them as
plain text.
Reviewed by aroben
- dom/DOMImplementation.cpp: (WebCore::DOMImplementation::createDocument):
- html/HTMLViewSourceDocument.cpp: (WebCore::HTMLViewSourceDocument::HTMLViewSourceDocument): (WebCore::HTMLViewSourceDocument::createTokenizer): (WebCore::HTMLViewSourceDocument::createContainingTable): (WebCore::HTMLViewSourceDocument::addViewSourceText): (WebCore::HTMLViewSourceDocument::addViewSourceToken):
- html/HTMLViewSourceDocument.h:
- loader/TextDocument.cpp: (WebCore::TextTokenizer::TextTokenizer): (WebCore::TextTokenizer::write):
- loader/TextDocument.h: (WebCore::TextTokenizer::checkBuffer):
May 18, 2007:
- 11:48 PM Changeset in webkit [21598] by
-
- 2 edits in trunk/WebCore
Fix a glitch in view source mode attribute names.
- html/HTMLViewSourceDocument.cpp: (WebCore::HTMLViewSourceDocument::addViewSourceToken):
- 10:16 PM Changeset in webkit [21597] by
-
- 4 edits in trunk/WebCore
"Linkify" view source mode links.
Reviewed by andersca
- css/view-source.css:
- html/HTMLViewSourceDocument.cpp: (WebCore::HTMLViewSourceDocument::addViewSourceToken): (WebCore::HTMLViewSourceDocument::addSpanWithClassName): (WebCore::HTMLViewSourceDocument::addLink):
- html/HTMLViewSourceDocument.h:
- 7:05 PM Changeset in webkit [21596] by
-
- 10 edits in trunk
2007-05-18 Oliver Hunt <oliver@apple.com>
WebCore:
Reviewed by Sam
No longer need to pass HTMLImageElement and HTMLImageLoader on to WebKit
Need to expose CachedResourceClient constructor
- WebCore.exp:
- WebCore.xcodeproj/project.pbxproj:
WebKit:
Reviewed by Sam.
Fix for http://bugs.webkit.org/show_bug.cgi?id=13782
REGRESSION (r21528-r21533): Failing editing/selection/drag-in-iframe in pixel mode
r21533 made used a DOMElement as the source for promise data, this meant it had to
clear the dragging pasteboard following the drag. In DRT a drag is non-blocking
so this resulted in us prematurely clearing the pasteboard.
This patch avoids this problem by referencing the source CachedImage rather than the
DOMElement, so we don't need to worry about retaining an entire document forever, so
we don't need to clear the dragging pasteboard following the drag.
- Misc/WebNSPasteboardExtras.mm: (imageFromElement): Extract the underlying CachedImage from a DOMElement (-[NSPasteboard _web_writeImage:element:URL:title:archive:types:source:]): Use a CachedImage instead of a DOMElement
- WebCoreSupport/WebDragClient.mm: (WebDragClient::startDrag):
- WebKit.xcodeproj/project.pbxproj:
- WebView/WebHTMLView.mm: (-[WebHTMLViewPrivate dealloc]): (-[WebHTMLViewPrivate clear]): (-[WebHTMLView pasteboardChangedOwner:]): (-[WebHTMLView pasteboard:provideDataForType:]): (-[WebHTMLView namesOfPromisedFilesDroppedAtDestination:]): (-[WebHTMLView WebCore::]): (-[WebHTMLView setPromisedDragTIFFDataSource:WebCore::]): Use CachedImage rather than DOMElement as promised data source
- WebView/WebHTMLViewInternal.h:
- WebView/WebHTMLViewPrivate.h:
- 4:32 PM Changeset in webkit [21595] by
-
- 1 edit in trunk/LayoutTests/http/tests/security/local-JavaScript-from-remote.html
Fix more malformed test cases.
- 4:32 PM Changeset in webkit [21594] by
-
- 2 edits in trunk/LayoutTests/fast/tokenizer
Fix more malformed test cases.
- 4:31 PM Changeset in webkit [21593] by
-
- 2 edits in trunk/LayoutTests/fast/parser
Fix more malformed test cases.
- 4:29 PM Changeset in webkit [21592] by
-
- 1 edit in trunk/LayoutTests/fast/loader/local-JavaScript-from-local.html
Fix more malformed test cases.
- 4:26 PM Changeset in webkit [21591] by
-
- 2 edits in trunk/LayoutTests/fast/dom/HTMLScriptElement
Fix more malformed test cases.
- 4:12 PM Changeset in webkit [21590] by
-
- 26 edits in trunk/LayoutTests/http/tests/navigation
Beating my head against these malformed http/navigation tests still.
- 4:06 PM Changeset in webkit [21589] by
-
- 1 edit in trunk/LayoutTests/http/tests/navigation/resources/frameset.pl
Beating my head against these malformed http/navigation tests still.
- 4:04 PM Changeset in webkit [21588] by
-
- 2 edits in trunk/LayoutTests/http/tests/navigation
Beating my head against these malformed http/navigation tests still.
- 4:03 PM Changeset in webkit [21587] by
-
- 2 edits in trunk/LayoutTests/http/tests/navigation
Beating my head against these malformed http/navigation tests still.
- 4:03 PM Changeset in webkit [21586] by
-
- 5 edits in trunk/LayoutTests/http/tests/navigation
Beating my head against these malformed http/navigation tests still.
- 4:01 PM Changeset in webkit [21585] by
-
- 1 edit in trunk/LayoutTests/http/tests/navigation/resources/success200.html
Beating my head against these malformed http/navigation tests still.
- 3:50 PM Changeset in webkit [21584] by
-
- 6 edits in trunk/LayoutTests/http/tests/navigation
Fixing broken http/navigation test cases that were written with malformed HTML.
- 3:48 PM Changeset in webkit [21583] by
-
- 4 edits in trunk/LayoutTests/http/tests/navigation
Fixing broken http/navigation test cases that were written with malformed HTML.
- 3:46 PM Changeset in webkit [21582] by
-
- 1 edit in trunk/WebKit/WebCoreSupport/WebFrameLoaderClient.mm
Fixed potential crash with ASSERT in download due to previous commit.
- 3:44 PM Changeset in webkit [21581] by
-
- 2 edits in trunk/WebCore
Fix for <rdar://problem/5214338> REGRESSION: / mishandled in
HTML tokenization (13780).
Reviewed by ggaren
- html/HTMLTokenizer.cpp: (WebCore::Token::addAttribute): (WebCore::HTMLTokenizer::parseTag):
- 3:40 PM Changeset in webkit [21580] by
-
- 1 edit in trunk/WebCore/ChangeLog
Added bugzilla link
- 3:38 PM Changeset in webkit [21579] by
-
- 3 edits in trunk/WebKit
- WebCoreSupport/WebFrameLoaderClient.mm: (WebFrameLoaderClient::download): asked the webframeloaderclient for its webview's history and injected the originated url into the created WebDownload
- 3:38 PM Changeset in webkit [21578] by
-
- 2 edits in trunk/WebCore
Reviewed by Maciej
<rdar://problem/5166149> - window.open() causes server to be hit twice
This regressed in http://trac.webkit.org/projects/webkit/changeset/14637
That patch was to fix broken behavior when opening an already existant window.
The unfortunate side effect was to cause the server to be hit twice.
Once during the call to frame->loader()->createWindow(), and again via a
scheduled redirection.
I decided to restore the original de-facto behavior by making the new window
open via a scheduled redirection - there is a FIXME that was already here that
explains the reason why we have to do it this way for now.
Additionally, there were two distinct places that had their own logic to open
a new window - the logic for window.open() and the logic for
window.showModalDialog(). The logic was almost identical so I condensed them
into one utility function that takes a flag to handle the slight difference.
A layout test is not possible at this time since it would involve capturing
server logs (the 1st connection does not exist long enough to result in any
delegate callbacks). That task is documented in
http://bugs.webkit.org/show_bug.cgi?id=13769
- bindings/js/kjs_window.cpp: (KJS::createWindow): Merged the two slightly different versions of "creating a window" logic here. For the modal dialog case the load is an immediate call to changeLocation(), which is triggered by the "immediate" flag, and the other cases load via scheduleLocationChange() (KJS::showModalDialog): Call createWindow() (KJS::WindowFunc::callAsFunction): Handle frame targets of _top or _parent immediately and call createWindow() for all others
- 3:23 PM Changeset in webkit [23388] by
-
- 1 edit in branches/WindowsMerge/WebCore/WebCore.vcproj/WebCore.vcproj
Fix build.
- 2:45 PM Changeset in webkit [23387] by
-
- 4 edits1 add in branches/WindowsMerge/WebCore
- 2:43 PM Changeset in webkit [23386] by
-
- 2 edits in branches/WindowsMerge/WebCore
Reviewed by Adam.
Fixing the vcproj paths.
- WebCore.vcproj/WebCore.vcproj:
- 2:32 PM Changeset in webkit [23385] by
-
- 2 edits in branches/WindowsMerge/WebCore
Reviewed by Geoff.
Build fix after r21577.
- WebCore.vcproj/WebCore.vcproj:
- 2:06 PM Changeset in webkit [21577] by
-
- 17 edits in trunk
LayoutTests:
Reviewed by Geoff.
- update results to account for new JSHTMLElements that are being auto-generated and can now produce Constructors.
- fast/dom/Window/element-constructors-on-window-expected.txt:
- fast/dom/Window/window-properties-expected.txt:
WebCore:
Reviewed by Geoff.
Autogenerate the JS bindings for the HTMLTableElement, HTMLTableCaptionElement,
HTMLTableCellElement, HTMLTableColElement, HTMLTableRowElement, HTMLTableSectionElement.
- DerivedSources.make:
- WebCore.pro:
- WebCore.xcodeproj/project.pbxproj:
- bindings/js/JSHTMLElementWrapperFactory.cpp: (WebCore::createJSHTMLWrapper):
- bindings/js/kjs_html.cpp: (KJS::): (KJS::JSHTMLElement::classInfo): (KJS::JSHTMLElement::accessors): (KJS::HTMLElementFunction::callAsFunction):
- bindings/js/kjs_html.h: (KJS::JSHTMLElement::):
- html/HTMLTableCaptionElement.idl:
- html/HTMLTableCellElement.idl:
- html/HTMLTableColElement.idl:
- html/HTMLTableElement.idl:
- html/HTMLTableRowElement.idl:
- html/HTMLTableSectionElement.idl:
- page/DOMWindow.idl:
- 1:47 PM Changeset in webkit [21576] by
-
- 3 edits in trunk/WebKit
Reviewed by Kevin Decker
Improvement to WebKit part of fix for 5201499 based on more modern understanding. (That is,
a couple of hours more modern.)
- WebView/WebUIDelegatePrivate.h: add showPanel: parameter to just-introduced delegate method webView:saveFrameView:
- WebView/WebPDFView.mm: (-[WebPDFView PDFViewSavePDFToDownloadFolder:]): pass NO for new showPanel: parameter, and update comment
- 1:33 PM Changeset in webkit [21575] by
-
- 2 edits in trunk/WebKit
Reviewed by John.
<rdar://problem/5204792> REGRESSION (r21367): System widgets are drawn with vertical/horizontal scroll bars
No test because the bug requires calling setAllowsScrolling: to reproduce.
- WebView/WebFrameView.mm: (-[WebFrameView setAllowsScrolling:]): Update the FrameView's scroll state as well as the one on WebDynamicScrollBarsView, otherwise this setting won't stick if the frame has already loaded a document.
- 1:32 PM Changeset in webkit [21574] by
-
- 5 edits in trunk/LayoutTests
Not Reviewed, buildbot test fix.
- updated results for the last fiew checkins.
- fast/dom/clientWidthAfterDocumentIsRemoved-expected.txt:
- fast/dom/replaceChild-expected.txt:
- http/tests/loading/bad-scheme-subframe-expected.txt:
- webarchive/loading/test-loading-archive-expected.txt:
- 1:03 PM Changeset in webkit [21573] by
-
- 1 copy in tags/Safari-522.8.1b
New tag.
- 12:14 PM Changeset in webkit [21572] by
-
- 4 edits in trunk/WebCore
2007-05-18 Oliver Hunt <oliver@apple.com>
Reviewed by Sam.
Fix for <rdar://problem/5211122> DRT crash below
SVGTimer::applyAnimations when page cache is enabled
(SVG animation timers do not properly cancel themselves)
There were still a few paths in the SVG Animation code
that could cause timers to be created and used. This
patch inserts addition SVG_EXPERIMENTAL blocks to prevent
these timers from being used.
- ksvg2/misc/SVGDocumentExtensions.cpp: (WebCore::SVGDocumentExtensions::startAnimations):
- ksvg2/misc/SVGTimer.cpp: (WebCore::SVGTimer::animationsByElement): (WebCore::SVGTimer::applyAnimations): (WebCore::SVGTimer::notifyAll): (WebCore::SVGTimer::addNotify): (WebCore::SVGTimer::removeNotify):
- ksvg2/misc/TimeScheduler.cpp: (WebCore::TimeScheduler::addTimer): (WebCore::TimeScheduler::connectIntervalTimer): (WebCore::TimeScheduler::disconnectIntervalTimer): (WebCore::TimeScheduler::startAnimations): (WebCore::TimeScheduler::toggleAnimations): (WebCore::TimeScheduler::timerFired):
- ksvg2/svg/SVGAnimationElement.h:
- 11:58 AM Changeset in webkit [21571] by
-
- 2 edits in trunk/WebKit
Fixed spelling error.
- WebView/WebViewPrivate.h:
- 11:22 AM Changeset in webkit [23384] by
-
- 5 edits in branches/WindowsMerge/WebCore
Build fix after r21562.
- platform/win/TemporaryLinkStubs.cpp:
- platform/win/WidgetWin.cpp:
- plugins/win/PluginViewWin.cpp:
- plugins/win/PluginViewWin.h:
- 11:12 AM Changeset in webkit [23383] by
-
- 2 edits in branches/WindowsMerge/WebKitWin
Build-related fix: stamp version resource properly.
- WebKit.vcproj/WebKit.rc: Fix version resource
- 10:52 AM Changeset in webkit [21570] by
-
- 4 edits in trunk/LayoutTests
Reviewed by Mitz.
Update test results after Hyatt's update of view-source
to include line numbers and a gutter.
- fast/frames/viewsource-attribute-expected.checksum:
- fast/frames/viewsource-attribute-expected.png:
- fast/frames/viewsource-attribute-expected.txt:
- 10:05 AM Changeset in webkit [21569] by
-
- 3 edits in trunk/WebKit
Reviewed by Kevin Decker
WebKit part of fix for 5201499 (support for PDFKit UI for saving PDFs to disk)
Also, the PDFKit mechanism for notifying clients about "Open File Externally" was
changed from a notification to a delegate method. The notification was new to
Leopard, so removing it doesn't affect clients in the field.
- WebView/WebUIDelegatePrivate.h: Declared new UI delegate method webView:saveFrameView:, analogous to the existing webView:printFrameView:
- WebView/WebPDFView.mm: removed declaration of _webkit_PDFKitLaunchNotification (-[WebPDFView viewDidMoveToWindow]): don't observe _webkit_PDFKitLaunchNotification (-[WebPDFView viewWillMoveToWindow:]): ditto (-[WebPDFView PDFViewOpenPDFInNativeApplication:]): new PDFKit delegate method, replaces our use of _webkit_PDFKitLaunchNotification (-[WebPDFView PDFViewSavePDFToDownloadFolder:]): new PDFKit delegate method, calls through to new WebKit UI delegate method
- 8:36 AM Changeset in webkit [21568] by
-
- 2 edits in trunk/WebCore
Patch from Marius Bugge Monsen to fix clipboard crash.
Return a valid pointer to a Clipboard object
from newGeneralClipboard.
r=me
- 7:17 AM Changeset in webkit [21567] by
-
- 4 edits in trunk/WebKitQt
Changed the QWebPage::loadProgressChange API to have an integer (percent) argument
instead of a double precision float.
- 5:11 AM Changeset in webkit [21566] by
-
- 2 edits in trunk/WebKitQt
Keyboard event crash fix by Marius Bugge Monsen.
The default constructed KeyboardEvent has
no PlatformKeyboardEvent.
r=me
- 3:15 AM Changeset in webkit [21565] by
-
- 2 edits in trunk/LayoutTests
2007-05-18 Oliver Hunt <oliver@apple.com>
Reviewed by Mark.
Fix capitalisation of resources referenced by test case.
- svg/carto.net/window.svg:
- 2:50 AM Changeset in webkit [21564] by
-
- 3 edits in trunk/WebKitTools
2007-05-18 Mark Rowe <mrowe@apple.com>
Reviewed by Oliver.
Force LC_ALL to C when parsing locale-specific strings in 'svn' output.
- Scripts/svn-create-patch:
- Scripts/webkitdirs.pm:
- 2:21 AM Changeset in webkit [21563] by
-
- 3 edits in trunk/WebCore
2007-05-18 Mark Rowe <mrowe@apple.com>
Attempt to fix the Gdk build after r21562.
- platform/gdk/TemporaryLinkStubs.cpp: (Widget::isEnabled):
- platform/gdk/WidgetGdk.cpp:
- 1:49 AM Changeset in webkit [21562] by
-
- 4 edits in trunk/WebCore
2007-05-18 Adam Treat <treat@kde.org>
Reviewed by Lars
Remove dead code.
- platform/Widget.h:
- platform/mac/WidgetMac.mm:
- platform/qt/WidgetQt.cpp:
- 1:44 AM Changeset in webkit [21561] by
-
- 2 edits in trunk/WebCore
2007-05-18 Holger Freyther <zecke@selfish.org>
Reviewed by Maciej.
Return true to make loading of pages working again
- loader/gdk/FrameLoaderClientGdk.cpp: (WebCore::FrameLoaderClientGdk::canHandleRequest):
- 1:41 AM Changeset in webkit [21560] by
-
- 10 edits1 add in trunk
2007-05-18 Holger Freyther <zecke@selfish.org>
Reviewed by Maciej.
Make WebCore::Widget use GtkWidget to fix focus handling.
- WebCore.pro: Add PlatformScrollBar
- platform/ScrollView.h: Gtk stuff
- platform/Widget.h: Take a GtkWidget
- platform/gdk/PlatformScrollBarGdk.cpp: Added. (PlatformScrollbar::PlatformScrollbar): (PlatformScrollbar::~PlatformScrollbar): (PlatformScrollbar::width): (PlatformScrollbar::height): (PlatformScrollbar::setEnabled): (PlatformScrollbar::paint): (PlatformScrollbar::updateThumbPosition): (PlatformScrollbar::updateThumbProportion): (PlatformScrollbar::setRect):
- platform/gdk/ScreenGdk.cpp: Implement depth handling (WebCore::screenDepth):
- platform/gdk/ScrollViewGdk.cpp: use setGtkWidget, not setDrawable (WebCore::ScrollView::setGtkWidget):
- platform/gdk/TemporaryLinkStubs.cpp:
- platform/gdk/WidgetGdk.cpp: (WebCore::Widget::Widget): (WebCore::Widget::gtkWidget): (WebCore::Widget::setGtkWidget): (WebCore::Widget::hasFocus): (WebCore::Widget::setFocus):
2007-05-18 Holger Freyther <zecke@selfish.org>
Reviewed by Maciej.
- GdkLauncher/main.cpp: Call setGtkWidget (main):
- 1:38 AM Changeset in webkit [21559] by
-
- 3 edits in trunk/WebCore
Reviewed by Zack
Correctly implement initialiseSupportedImageMIMETypes.
- 1:34 AM Changeset in webkit [21558] by
-
- 2 edits in trunk/WebCore
2007-05-18 Holger Hans Peter Freyther <zecke@selfish.org>
Reviewed by Maciej.
Build fix for non-Qt and non-Mac ports.
- html/HTMLCanvasElement.h:
- 1:29 AM Changeset in webkit [21557] by
-
- 9 edits in trunk
2007-05-18 Holger Hans Peter Freyther <zecke@selfish.org>
Reviewed by Mark Rowe.
No test added as this is hard to time.
- platform/gdk/FrameGdk.cpp: Use needsLayout() to decide if layout() is needed.
(WebCore::FrameGdk::dumpRenderTree):
(WebCore::FrameGdk::handleGdkEvent):
2007-05-18 Holger Hans Peter Freyther <zecke@selfish.org>
Reviewed by Mark Rowe.
- kjs/testkjs.pro: Make the Gdk port link to icu
2007-05-18 Holger Hans Peter Freyther <zecke@selfish.org>
Reviewed by Mark Rowe.
- WebKit.pro: Build testkjs for Gdk and Qt
2007-05-18 Holger Hans Peter Freyther <zecke@selfish.org>
Reviewed by Mark Rowe.
- GdkLauncher/main.cpp: (main): Call Frame::init to catch up with Maciej's changes.
- Scripts/run-javascriptcore-tests: Remove --gdk from the command line passed to the helper scripts.
- 1:13 AM Changeset in webkit [23382] by
-
- 2 edits in branches/WindowsMerge/WebCore
Reviewed by Geoff.
<rdar://problem/4914940> Some plugins won't redraw correctly when scrolling
This patch does two things:
- It comments out the call to set the window's region to an empty region while it's being moved. This was done to prevent the QT plugin from drawing outside its bounds when scrolling it when it's inside an iframe or div with overflow.
- It lets Windows handle its invalid region when moving the window and setting its new window region.
- plugins/win/PluginViewWin.cpp: (WebCore::PluginViewWin::updateWindow):
- 12:54 AM Changeset in webkit [21556] by
-
- 2 edits in trunk/WebCore
Generate pkgconfig files for the Qt build.
- 12:50 AM Changeset in webkit [23381] by
-
- 4 edits in branches/WindowsMerge
WebCoreWin:
Build fix after r21555.
- page/win/EventHandlerWin.cpp: (WebCore::EventHandler::passMouseMoveEventToSubframe):
WebKitWin:
Build fix after r21555.
- WebView.cpp:
- 12:09 AM Changeset in webkit [21555] by
-
- 8 edits in trunk/WebCore
Reviewed by Hyatt.
Remove unused handleMouseEvent methods in the Widget
and derived classes.
- 12:00 AM Changeset in webkit [21554] by
-
- 2 edits in trunk/WebCore
Use the proper clipping algorithm