Timeline
Mar 31, 2009:
- 11:43 PM Changeset in webkit [42148] by
-
- 3 edits in trunk/WebCore
2009-03-31 Darin Adler <Darin Adler>
Rolled out that last change until I can investigate the regression test failures it seems
to have caused.
- dom/PositionIterator.cpp: (WebCore::PositionIterator::decrement):
- dom/PositionIterator.h: (WebCore::PositionIterator::PositionIterator):
- 9:41 PM Changeset in webkit [42147] by
-
- 3 edits in trunk/WebCore
2009-03-31 Darin Adler <Darin Adler>
Reviewed by Eric Seidel.
Bug 24621: PositionIterator doesn't iterate "after last child" positions when going backwards
https://bugs.webkit.org/show_bug.cgi?id=24621
- dom/PositionIterator.cpp: (WebCore::PositionIterator::decrement): Make sure that when the parent has no children, we don't ever use Position::uncheckedPreviousOffset. This is consistent with the forward iterator, but also should never arise because of the fix below.
- dom/PositionIterator.h: (WebCore::PositionIterator::PositionIterator): Fixed so m_offset will always be 0 when the passed-in node has no children. Like the change above, this is consistent with the rest of the class, although in the long run I think it's a bit strange to treat a <p> element with no children differently than a <p> element with children.
- 5:13 PM Changeset in webkit [42146] by
-
- 2 edits in trunk/WebKitTools
Make resolve-ChangeLogs -f work when the working tree has spaces in its path
Reviewed by Mark Rowe and David Kilzer.
- Scripts/resolve-ChangeLogs: (sub fixMergedChangeLogs): Quote the path to resolve-ChangeLogs in case it contains spaces.
- 3:57 PM Changeset in webkit [42145] by
-
- 5 edits in trunk/WebKit/mac
2009-03-31 Anders Carlsson <andersca@apple.com>
Reviewed by Adam Roben.
WebKit side of <rdar://problem/6500266>.
- Plugins/Hosted/NetscapePluginInstanceProxy.h:
- Plugins/Hosted/NetscapePluginInstanceProxy.mm: (WebKit::NetscapePluginInstanceProxy::wheelEvent): Send the event.
- Plugins/Hosted/WebHostedNetscapePluginView.mm: (-[WebHostedNetscapePluginView scrollWheel:]): Call NetscapePluginInstanceProxy::wheelEvent. If the plug-in processed the event, don't call super.
- Plugins/Hosted/WebKitPluginHost.defs: Add definition.
- 3:13 PM Changeset in webkit [42144] by
-
- 2 edits in trunk/WebCore
2009-03-31 Eric Carlson <eric.carlson@apple.com>
Reviewed by Simon Fraser.
https://bugs.webkit.org/show_bug.cgi?id=24965
Bug 24965: HTMLMediaElement: network state changes can be missed
- html/HTMLMediaElement.cpp: (WebCore::HTMLMediaElement::setNetworkState): Always update m_networkState when the state changes, even when no event needs to be fired.
- 2:55 PM Changeset in webkit [42143] by
-
- 5 edits in trunk
2009-03-31 Eric Carlson <eric.carlson@apple.com>
Reviewed by Darin Adler.
https://bugs.webkit.org/show_bug.cgi?id=24964
Bug 24964: HTMLMediaElement: 'waiting' event may fire twice
- html/HTMLMediaElement.cpp: (WebCore::HTMLMediaElement::setReadyState): Only fire 'waiting' event once when ready state drops below HAVE_FUTURE_DATA.
2009-03-31 Eric Carlson <eric.carlson@apple.com>
Reviewed by Darin Adler.
https://bugs.webkit.org/show_bug.cgi?id=24964
Bug 24964: HTMLMediaElement: 'waiting' event may fire twice
- http/tests/media/video-play-stall.html: Fail if 'waiting' fires more than once.
- media/video-test.js: Fix a typo. (failTest):
- 2:39 PM Changeset in webkit [42142] by
-
- 2 edits in trunk/WebKitTools
Reviewed by Darin Adler.
https://bugs.webkit.org/show_bug.cgi?id=24777
WebKit tools are broken on Tiger
- Scripts/webkitdirs.pm: Don't use arch command with options on Tiger.
- 2:26 PM Changeset in webkit [42141] by
-
- 9 edits2 adds in trunk
2009-03-31 Eric Carlson <eric.carlson@apple.com>
Reviewed by Darin Adler.
https://bugs.webkit.org/show_bug.cgi?id=24846
Bug 24846: HTMLMediaElement should implement 'autobuffer' attribute
Add 'autobuffer' attrubute to media element. 'autobuffer' is a hint that
the author recommends downloading the entire resource optimistically, so the
attribute is made available to the media engine to use if it is able.
Test: media/video-dom-autobuffer.html
- html/HTMLAttributeNames.in: Add autobuffer.
- html/HTMLMediaElement.cpp: (WebCore::HTMLMediaElement::parseMappedAttribute): New. (WebCore::HTMLMediaElement::autobuffer): Ditto. (WebCore::HTMLMediaElement::setAutobuffer): Ditto.
- html/HTMLMediaElement.h: Declare autobuffer and setAutobuffer.
- html/HTMLMediaElement.idl: Add autobuffer.
- platform/graphics/MediaPlayer.cpp: (WebCore::MediaPlayer::MediaPlayer): Initialize m_autobuffer. (WebCore::MediaPlayer::autobuffer): New. (WebCore::MediaPlayer::setAutobuffer): Ditto.
- platform/graphics/MediaPlayer.h: Declare m_autobuffer, autobuffer and setAutobuffer
- platform/graphics/MediaPlayerPrivate.h: (WebCore::MediaPlayerPrivateInterface::setAutobuffer): Declare setAutobuffer.
2009-03-31 Eric Carlson <eric.carlson@apple.com>
Reviewed by Darin Adler.
https://bugs.webkit.org/show_bug.cgi?id=24846
Bug 24846: HTMLMediaElement should implement 'autobuffer' attribute
- media/video-dom-autobuffer-expected.txt: Added.
- media/video-dom-autobuffer.html: Added.
- 1:24 PM Changeset in webkit [42140] by
-
- 2 edits in trunk/WebKit/mac
2009-03-31 Darin Adler <Darin Adler>
Reviewed by Adele Peterson.
<rdar://problem/6740581> REGRESSION (r41793): Page Down and Page Up don’t work in Leopard Mail
- WebView/WebHTMLView.mm: (-[WebResponderChainSink tryToPerform:with:]): Added. Without this we would think we had handled an event when we actually hadn't. Specifically, when -[WebFrameView scrollPageDown:] calls tryToPerform on the next responder.
- 1:23 PM Changeset in webkit [42139] by
-
- 2 edits in trunk/WebCore
2009-03-31 Craig Schlenter <craig.schlenter@gmail.com>
Reviewed by Dimitri Glazkov.
https://bugs.webkit.org/show_bug.cgi?id=24550
Check return value of vasprintf. This should keep gcc 4.3.3
happy rather than have it complain about attribute warn_unused_result.
- dom/XMLTokenizerLibxml2.cpp: (WebCore::XMLTokenizer::error):
- 1:11 PM Changeset in webkit [42138] by
-
- 2 edits in trunk/WebCore
2009-03-31 Dean Jackson <dino@apple.com>
Style guide violation!
- loader/MediaDocument.cpp: (WebCore::MediaDocument::defaultEventHandler):
- 1:05 PM Changeset in webkit [42137] by
-
- 2 edits in trunk/WebCore
2009-03-31 Dean Jackson <dino@apple.com>
Fix Tiger build.
- loader/MediaDocument.cpp: (WebCore::MediaDocument::defaultEventHandler):
- 12:56 PM Changeset in webkit [42136] by
-
- 2 adds in trunk/WebCore/bindings/v8
Fixing previous commit - forgot to 'git add' new files.
- 12:55 PM Changeset in webkit [42135] by
-
- 1 edit in trunk/WebCore/ChangeLog
2009-03-31 Jian Li <jianli@chromium.org>
Reviewed by Darin Fisher.
Upstream V8DOMMap for v8 bindings.
https://bugs.webkit.org/show_bug.cgi?id=24951
- bindings/v8/V8DOMMap.cpp: Added.
- bindings/v8/V8DOMMap.h: Added.
- 12:50 PM Changeset in webkit [42134] by
-
- 2 edits in trunk/WebCore
2009-03-31 Dean Jackson <dino@apple.com>
Reviewed by Simon Fraser.
Spacebar didn't play/pause in standalone MediaDocument
- loader/MediaDocument.cpp: (WebCore::MediaDocument::defaultEventHandler):
- 12:10 PM Changeset in webkit [42133] by
-
- 2 edits in trunk/WebCore
2009-03-31 Alpha Lam <hclam@chromium.org>
Reviewed by Eric Seidel.
https://bugs.webkit.org/show_bug.cgi?id=24901
Added the following methods to MediaPlayerPrivate for Chromium port.
void sizeChanged();
void rateChanged();
void durationChanged();
The above changes are to reflect changes in MediaPlayer.cpp.
More details can be found in the original changeset.
http://trac.webkit.org/changeset/41907
- platform/graphics/chromium/MediaPlayerPrivateChromium.h:
- 9:54 AM Changeset in webkit [42132] by
-
- 1 edit1 add in trunk/WebKitTools
2009-03-31 Darin Adler <Darin Adler>
- Scripts/add-include: Added.
- 9:46 AM Changeset in webkit [42131] by
-
- 4 edits in trunk/WebCore
2009-03-31 Rafael Weinstein <rafaelw@chromium.org>
Reviewed by Eric Seidel.
Special-case drawing text-shadow on win32, to let GDI draw in cases
when both fill & shadow color are opaque and the shadow has no blur.
- platform/graphics/chromium/FontChromiumWin.cpp: (WebCore::TransparencyAwareFontPainter::TransparencyAwareGlyphPainter::drawGlyphs): (WebCore::Font::drawComplexText):
- platform/graphics/skia/SkiaFontWin.cpp: (WebCore::windowsCanHandleDrawTextShadow): (WebCore::windowsCanHandleTextDrawing):
- platform/graphics/skia/SkiaFontWin.h:
- 9:21 AM Changeset in webkit [42130] by
-
- 4 edits in trunk/WebCore
2009-03-31 Jeremy Moskovich <jeremy@chromium.org>
Reviewed by Darin Fisher.
r42055 removed some functions in FrameLoader used by Chrome,
this CL backs out some of those changes to unbreak the Chrome build.
- WebCore.base.exp:
- loader/FrameLoader.cpp:
- loader/FrameLoader.h:
- 9:13 AM Changeset in webkit [42129] by
-
- 3 edits in trunk/WebCore
2009-03-31 Jeremy Moskovich <jeremy@chromium.org>
Reviewed by Darin Adler.
Build fixes for Chromium.
- dom/Document.h:
- platform/chromium/ClipboardChromium.cpp: (WebCore::imageToMarkup):
- 5:42 AM QtWebKitTodo edited by
- (diff)
- 3:26 AM Changeset in webkit [42128] by
-
- 2 edits in trunk/WebCore
2009-03-31 Simon Hausmann <simon.hausmann@nokia.com>
Fix the Qt build.
- 1:11 AM QtWebKitTodo edited by
- (diff)
- 12:55 AM QtWebKitTodo edited by
- (diff)
- 12:02 AM Changeset in webkit [42127] by
-
- 2 edits in trunk/WebKitTools
Fix use of incorrect constant.
- BuildSlaveSupport/built-product-archive:
Mar 30, 2009:
- 11:29 PM Changeset in webkit [42126] by
-
- 1 edit1 add in trunk/WebKitTools
Add a script in support of the new build.webkit.org configuration.
Rubber-stamped by Stephanie Lewis.
- BuildSlaveSupport/built-product-archive: Added.
- 8:21 PM Changeset in webkit [42125] by
-
- 3 edits in trunk/WebKit/gtk
2009-03-31 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>
Reviewed by Holger Freyther.
Updated gtk-doc configuration files for the 1.1.1, 1.1.2, 1.1.3,
and 1.1.4 versions of WebKitGTK+.
- docs/webkitgtk-docs.sgml:
- docs/webkitgtk-sections.txt:
- 8:16 PM Changeset in webkit [42124] by
-
- 7 edits1 add in trunk/WebKit/gtk
2009-03-31 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>
Reviewed by Holger Freyther.
https://bugs.webkit.org/show_bug.cgi?id=17045
[GTK] Documentation
Added header documentation for WebKitWebNavigationAction and
WebKitWebPolicyDecision.
Added missing documentation pieces for WebKitSoupAuthDialog,
WebKitDownload and WebKitWebPolicyDecision.
Wrote a section about using the WEBKIT_DEBUG environment variable.
- docs/GNUmakefile.am:
- docs/webkitenvironment.xml: Added.
- docs/webkitgtk-docs.sgml:
- webkit/webkitdownload.cpp:
- webkit/webkitsoupauthdialog.c:
- webkit/webkitwebnavigationaction.cpp:
- webkit/webkitwebpolicydecision.cpp:
- 7:41 PM Changeset in webkit [42123] by
-
- 5 edits2 adds in trunk
2009-03-30 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>
Reviewed by Holger Freyther.
Integrate gtk-doc into the Gtk+ buildsystem.
Based on original work by Holger Freyther.
Integrate gtk-doc into our buildsystem. We are forced to
use recursive make for gtk-doc itself as the to be installed
gtk-doc.make (done by gtkdocize) is not working in a non
recursive environment.
The documentation can only be generated when srcdir == builddir.
In all other cases the generated files will not be found. This
limitation can be found in pango and gtk+ as well. There is no
easy way around. The resulting html documentation will be saved
in the srcdir as well.
- docs/GNUmakefile.am: Added.
- docs/version.xml.in: Added.
- docs/webkitgtk-docs.sgml:
- 7:37 PM Changeset in webkit [42122] by
-
- 7 edits in trunk/WebKit/wx
Reviewed by Kevin Ollivier.
Add events to allow apps to override handling for JS prompts and
window object cleared events.
https://bugs.webkit.org/show_bug.cgi?id=24948
- 7:29 PM Changeset in webkit [42121] by
-
- 2 edits in trunk/WebCore
Don't create CFDataRef with a fixed size.
Fixes synchronous XMLHTTPRequests on Windows.
Reviewed by Ada Chan.
- platform/network/cf/ResourceHandleCFNet.cpp: (WebCore::WebCoreSynchronousLoader::didReceiveData):
- 5:19 PM Changeset in webkit [42120] by
-
- 4 edits2 adds in trunk
WebCore:
2009-03-30 Darin Adler <Darin Adler>
Reviewed by Sam Weinig.
Bug 24594: PolicyDelegate NavigationAction is WebNavigationTypeOther instead of WebNavigationTypeReload
https://bugs.webkit.org/show_bug.cgi?id=24594
rdar://problem/6682110
Test: fast/loader/reload-policy-delegate.html
- loader/FrameLoader.cpp: (WebCore::FrameLoader::loadWithDocumentLoader): Set the triggering action here where we know it's the policy loader and can use m_policyLoadType rather than letting it get set inside checkNavigationPolicy.
LayoutTests:
2009-03-30 Darin Adler <Darin Adler>
Reviewed by Sam Weinig.
Bug 24594: PolicyDelegate NavigationAction is WebNavigationTypeOther instead of WebNavigationTypeReload
https://bugs.webkit.org/show_bug.cgi?id=24594
rdar://problem/6682110
- fast/frames/resources/iframe-focus.html: Removed bogus but harmless "layoutTestController.loadCount" code.
- fast/loader/reload-policy-delegate-expected.txt: Added.
- fast/loader/reload-policy-delegate.html: Added.
- 5:17 PM Changeset in webkit [42119] by
-
- 3 edits in trunk/WebKitTools
2009-03-30 Darin Adler <Darin Adler>
Reviewed by Sam Weinig.
Make policy-delegate logging work even for local files by processing the URLs as we
do for other delegates.
- DumpRenderTree/mac/PolicyDelegate.mm: (-[PolicyDelegate webView:decidePolicyForNavigationAction:request:frame:decisionListener:]): Use _drt_descriptionSuitableForTestResult on the URL.
- DumpRenderTree/win/PolicyDelegate.cpp: (PolicyDelegate::decidePolicyForNavigationAction): Use urlSuitableForTestResult on the URL.
- 3:49 PM Changeset in webkit [42118] by
-
- 2 edits in trunk/WebCore
<rdar://problem/5838871> CrashTracer: 1483 crashes Quicklooking
in Finder (painting without up to date layout)
Reviewed by Dan Bernstein.
- page/FrameView.cpp: (WebCore::FrameView::paintContents): Add an early return when painting is attempted when layout is needed.
- 1:14 PM Changeset in webkit [42117] by
-
- 1 copy in releases/WebKitGTK/webkit-1.1.4
Tagging WebKitGTK+ 1.1.4.
- 12:59 PM Changeset in webkit [42116] by
-
- 2 edits in trunk/WebCore
2009-03-30 Greg Bolsinga <bolsinga@apple.com>
Reviewed by Simon Fraser.
Sort alphabetically.
- css/CSSComputedStyleDeclaration.cpp: (WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue):
- 11:33 AM Changeset in webkit [42115] by
-
- 2 edits in trunk/WebCore
2009-03-30 Greg Bolsinga <bolsinga@apple.com>
Reviewed by Simon Fraser.
Build fixes for building --3d-rendering and --no-svg
- rendering/RenderLayerBacking.cpp:
- 11:27 AM Changeset in webkit [42114] by
-
- 2 edits in trunk/WebKitLibraries
2009-03-30 Steve Falkenburg <sfalken@apple.com>
Bump version to 530.
- win/tools/scripts/VERSION:
- 11:21 AM Changeset in webkit [42113] by
-
- 2 edits in trunk/WebKit/gtk
2009-03-30 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>
Unreviewed. Documenting what changed since the 1.1.3 release, in
the GTK+ port.
- NEWS:
- 11:04 AM Changeset in webkit [42112] by
-
- 10 edits in trunk
2009-03-30 Greg Bolsinga <bolsinga@apple.com>
Reviewed by Simon Fraser.
Build fixes when building --no-svg
- css/CSSComputedStyleDeclaration.cpp: (WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue): Add missing CSS properties
- css/CSSCursorImageValue.cpp: (WebCore::CSSCursorImageValue::updateIfSVGCursorIsUsed): Handle unused param
- css/CSSParser.cpp: (WebCore::CSSParser::parseValue): Add missing CSS properties
- css/CSSStyleSelector.cpp: (WebCore::CSSStyleSelector::applyProperty): Add missing CSS properties
- dom/Node.cpp: (WebCore::updateSVGElementInstancesAfterEventListenerChange): Handle unused param
- platform/graphics/Font.cpp: (WebCore::Font::floatWidth): Handle unused param
- platform/graphics/SimpleFontData.cpp: (WebCore::SimpleFontData::SimpleFontData): Handle unused param
2009-03-30 Greg Bolsinga <bolsinga@apple.com>
Reviewed by Simon Fraser.
Build fixes when building --no-svg
DOMHTMLFrameElementPrivate.h and DOMHTMLIFrameElementPrivate.h are only available with ENABLE_SVG.
- MigrateHeaders.make:
- 10:46 AM Changeset in webkit [42111] by
-
- 2 edits in trunk
2009-03-30 Xan Lopez <xlopez@igalia.com>
Unreviewed: bump version to 1.1.4 for release.
- configure.ac:
- 10:41 AM Changeset in webkit [42110] by
-
- 2 edits in trunk/WebKit/gtk
2009-03-30 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>
Unreviewed. Add information on the bug-fix-only 1.1.3 release.
- NEWS:
- 10:37 AM Changeset in webkit [42109] by
-
- 3 edits in trunk/WebKitTools
Windows build fix
- DumpRenderTree/win/LayoutTestControllerWin.cpp: (LayoutTestController::waitForPolicyDelegate): Added this empty stub.
- DumpRenderTree/win/WorkQueueItemWin.cpp: (LoadItem::invoke): (ScriptItem::invoke): Changed to use data members instead of removed member functions.
- 10:26 AM Changeset in webkit [42108] by
-
- 2 edits in trunk/WebCore
2009-03-30 Darin Adler <Darin Adler>
Reviewed by Adam Roben.
Bug 24916: REGRESSION: NavigationAction policy dispatch broken
https://bugs.webkit.org/show_bug.cgi?id=24916
- loader/FrameLoader.cpp: (WebCore::FrameLoader::loadURL): Rearrange the code so that the "event" PassRefPtr is not used twice. This also optimizes the case where a frame name is specified, but it's the name of the frame being loaded. Also called release in all the final uses of FormState.
- 10:22 AM Changeset in webkit [42107] by
-
- 24 edits in trunk/WebCore
2009-03-30 Darin Adler <Darin Adler>
Reviewed by Adam Roben.
Bug 24937: NamedNodeMap and NamedAttrMap should not be separate classes
https://bugs.webkit.org/show_bug.cgi?id=24937
Also should fix the Windows COM bindings build.
- bindings/scripts/CodeGeneratorJS.pm: Removed special case for NamedNodeMap.
- bindings/scripts/CodeGeneratorObjC.pm: Ditto.
- dom/NamedAttrMap.h: Renamed class from NamedAttrMap to NamedNodeMap and removed NamedNodeMap base class. Made the NamedNodeMap functions all public and non-virtual. Removed virtualLength.
- dom/NamedNodeMap.h: Replaced file with just an include of NamedAttrMap.h. As a follow up we will rename the NamedAttrMap files and remove this file.
- bindings/js/JSNamedNodesCollection.cpp: Renamed from NamedAttrMap to NamedNodeMap.
- dom/Attr.h: Ditto.
- dom/Attribute.h: Ditto.
- dom/Document.cpp: (WebCore::Document::importNode): Ditto.
- dom/Element.cpp: (WebCore::Element::attributes): Ditto. (WebCore::Element::setAttributeMap): Ditto. (WebCore::Element::createAttributeMap): Ditto. (WebCore::Element::insertedIntoDocument): Ditto. (WebCore::Element::removedFromDocument): Ditto. (WebCore::Element::openTagStartToString): Ditto. (WebCore::Element::removeAttributeNode): Ditto. (WebCore::Element::getAttributeNode): Ditto. (WebCore::Element::getAttributeNodeNS): Ditto. (WebCore::Element::hasAttribute): Ditto. (WebCore::Element::hasAttributeNS): Ditto. (WebCore::Element::normalizeAttributes): Ditto.
- dom/Element.h: Ditto.
- dom/NamedAttrMap.cpp: (WebCore::NamedNodeMap::detachAttributesFromElement): Ditto. (WebCore::NamedNodeMap::~NamedNodeMap): Ditto. (WebCore::NamedNodeMap::isMappedAttributeMap): Ditto. (WebCore::NamedNodeMap::getNamedItem): Ditto. (WebCore::NamedNodeMap::getNamedItemNS): Ditto. (WebCore::NamedNodeMap::removeNamedItem): Ditto. (WebCore::NamedNodeMap::removeNamedItemNS): Ditto. (WebCore::NamedNodeMap::setNamedItem): Ditto. (WebCore::NamedNodeMap::item): Ditto. (WebCore::NamedNodeMap::getAttributeItem): Ditto. (WebCore::NamedNodeMap::clearAttributes): Ditto. (WebCore::NamedNodeMap::detachFromElement): Ditto. (WebCore::NamedNodeMap::setAttributes): Ditto. (WebCore::NamedNodeMap::addAttribute): Ditto. (WebCore::NamedNodeMap::removeAttribute): Ditto. (WebCore::NamedNodeMap::mapsEquivalent): Ditto.
- dom/NamedMappedAttrMap.cpp: (WebCore::NamedMappedAttrMap::clearAttributes): Ditto.
- dom/NamedMappedAttrMap.h: (WebCore::NamedMappedAttrMap::NamedMappedAttrMap): Ditto.
- dom/Node.cpp: (WebCore::Node::dumpStatistics): Ditto. (WebCore::Node::isEqualNode): Ditto. (WebCore::Node::isDefaultNamespace): Ditto. (WebCore::Node::lookupNamespaceURI): Ditto. (WebCore::Node::lookupNamespacePrefix): Ditto. (WebCore::Node::compareDocumentPosition): Ditto.
- dom/Node.h: Ditto.
- dom/XMLTokenizerLibxml2.cpp: (WebCore::XMLTokenizer::XMLTokenizer): Ditto.
- editing/ApplyStyleCommand.cpp: (WebCore::isSpanWithoutAttributesOrUnstyleStyleSpan): Ditto. (WebCore::isEmptyFontTag): Ditto. (WebCore::areIdenticalElements): Ditto.
- editing/markup.cpp: (WebCore::appendStartMarkup): Ditto. (WebCore::completeURLs): Ditto.
- html/HTMLParser.cpp: (WebCore::HTMLParser::handleError): Ditto.
- rendering/RenderPartObject.cpp: (WebCore::RenderPartObject::updateWidget): Ditto.
- svg/SVGAnimatedProperty.h: (WebCore::synchronizeProperty): Ditto.
- xml/XPathFunctions.cpp: (WebCore::XPath::FunLang::evaluate): Ditto.
- xml/XPathStep.cpp: (WebCore::XPath::Step::nodesInAxis): Ditto.
- 9:35 AM Changeset in webkit [42106] by
-
- 2 edits in trunk/WebCore
2009-03-30 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>
Reviewed by Holger Freyther.
https://bugs.webkit.org/show_bug.cgi?id=24750
[GTK] requests download instead of displaying page
Use soup facilities to append parameters to the content type, to
make that more robust;
- platform/network/soup/ResourceHandleSoup.cpp: (WebCore::fillResponseFromMessage):
- 9:24 AM Changeset in webkit [42105] by
-
- 4 edits in trunk/WebCore
<rdar://problem/6735683> Move SECTORDER_FLAGS from Xcode project to WebCore.xcconfig
Reviewed by Timothy Hatcher, Mark Rowe and Darin Adler.
- Configurations/Base.xcconfig: Moved Production definition of SECTORDER_FLAGS to here from Xcode project file.
- Configurations/DebugRelease.xcconfig: Override SECTORDER_FLAGS in Base.xcconfig to the empty string since it is not used for Debug and Release configurations.
- WebCore.xcodeproj/project.pbxproj: Removed SECTORDER_FLAGS.
- 8:58 AM Changeset in webkit [42104] by
-
- 4 edits in trunk/WebKit/win
Build fixes after recent FrameLoader changes
- WebCoreSupport/WebContextMenuClient.cpp: (WebContextMenuClient::searchWithGoogle): Updated to match urlSelected's current signature. We pass true for the userGesture parameter, since the user must have selected this item from the context menu.
- WebCoreSupport/WebFrameLoaderClient.cpp: Removed loadURLIntoChildFrame. (WebFrameLoaderClient::createFrame): Changed to call FrameLoader::loadURLIntoChildFrame. This probably should have been done way back around r31281 when that function was added.
- WebCoreSupport/WebFrameLoaderClient.h: Removed loadURLIntoChildFrame.
- 8:58 AM Changeset in webkit [42103] by
-
- 2 edits in trunk/WebCore
Windows build fix after recent Node.idl changes
- bindings/scripts/CodeGeneratorCOM.pm: Touched this to force sources of classes that derive from Node to rebuild.
- 8:48 AM Changeset in webkit [42102] by
-
- 4 edits in trunk/WebKit/gtk
2009-03-30 Xan Lopez <xlopez@igalia.com>
Reviewed by Holger Freyther.
https://bugs.webkit.org/show_bug.cgi?id=24878
[GTK] Use GtkBinding system to handle key events in WebView
Use GtkBinding system for key events in WebKitWebView. Allows the
user to reconfigure the bindings and fixes a bunch of bugs along
the way (we were not checking modifier keys in most actions).
- webkit/webkitwebview.cpp: (webkit_web_view_move_cursor):
- webkit/webkitwebview.h:
- webkitmarshal.list:
- 8:22 AM Changeset in webkit [42101] by
-
- 2 edits in trunk/WebCore
Windows build fix
- svg/graphics/SVGImage.cpp: Added a missing #include.
- 7:49 AM Changeset in webkit [42100] by
-
- 7 edits in trunk/WebCore
2009-03-30 Mads Ager <ager@chromium.org>
Reviewed by Darin Adler.
https://bugs.webkit.org/show_bug.cgi?id=24879
Add frame accessor to Screen, Console, and BarInfo objects. Add type
accessor to BarInfo objects.
In the V8 JavaScript bindings, we need access to the frame and
type for already created Screen, Console, and BarInfo objects in
order to keep their wrappers alive across GCs.
- page/BarInfo.cpp: (WebCore::BarInfo::frame): Added. (WebCore::BarInfo::type): Added.
- page/BarInfo.h:
- page/Console.cpp: (WebCore::Console::frame): Added.
- page/Console.h:
- page/Screen.cpp: (WebCore::Screen::frame): Added.
- page/Screen.h:
- 5:21 AM QtWebKitJournal edited by
- (diff)
- 2:25 AM Changeset in webkit [42099] by
-
- 3 edits in trunk/WebKit/qt
Document that setHtml/setContent loads only the html/data immediately, not external objects.
2009-03-30 Simon Hausmann <simon.hausmann@nokia.com>
Rubber-stamped by Tor Arne Vestbø.
Document that setHtml/setContent loads only the html/data immediately, not external objects.
- 2:13 AM Changeset in webkit [42098] by
-
- 2 edits in trunk/WebKitTools
2009-03-30 Jan Michael Alonzo <jmalonzo@webkit.org>
Gtk DRT build fix per changeset
http://trac.webkit.org/changeset/42082. Not reviewed.
- DumpRenderTree/gtk/WorkQueueItemGtk.cpp: (LoadItem::invoke): (ScriptItem::invoke):