Timeline
May 2, 2010:
- 10:40 PM Changeset in webkit [58666] by
-
- 1 edit in trunk/WebKitTools/ChangeLog
Unreviewed.
Corrected a file path in the ChangeLog entry for r58663 (bug 38319) below.
- 9:25 PM Changeset in webkit [58665] by
-
- 3 edits2 adds in trunk
Another case of <rdar://problem/7552959> REGRESSION: Infinite recursion in Position::getInlineBoxAndOffset()
https://bugs.webkit.org/show_bug.cgi?id=38445
Reviewed by Simon Fraser.
WebCore:
Test: editing/selection/mixed-editability-11.html
- dom/Position.cpp:
(WebCore::downstreamIgnoringEditingBoundaries): Added. Returns the furthest visually equivalent
position downstream, crossing any editability boundaries.
(WebCore::upstreamIgnoringEditingBoundaries): Similarly for upstream.
(WebCore::Position::getInlineBoxAndOffset): Changed the logic for finding an inline box for positions
whose node is a block flow. Instead of traversing the DOM, advance downstream or upstream as far as
possible, crossing any editability boudaries. Infinite recursion is avoided by advancing all the way
and checking that the new position is different from the starting position. Also replaced the specific
test for buttons with the generic and more comprehensive canHaveChildrenForEditing().
LayoutTests:
- editing/selection/mixed-editability-11-expected.txt: Added.
- editing/selection/mixed-editability-11.html: Added.
- 7:21 PM Changeset in webkit [58664] by
-
- 2 edits in trunk
2010-05-02 Geoff Levand <geoff.levand@am.sony.com>
Reviewed by Eric Seidel.
[GTK] Fix out of source build failure
https://bugs.webkit.org/show_bug.cgi?id=38051
Add a preprocessor include path for generated GTK header files.
Fixes build errors like these when building GTK out of source:
webkit.h: error: webkit/webkitversion.h: No such file or directory
- GNUmakefile.am:
- 6:49 PM Changeset in webkit [58663] by
-
- 4 edits in trunk/WebKitTools
2010-05-02 Chris Jerdonek <Chris Jerdonek>
Reviewed by Eric Seidel.
- Scripts/VCSUtils.pm:
- In parseDiffHeader()--
- Added an "scmFormat" hash key to the return value to represent whether the diff is Git or SVN formatted.
- Adjusted the code so the value of "copiedFromPath" will be undef rather than "does not exist" if the file was not copied.
- In parseDiffHeader()--
- Scripts/webkitperl/VCSUtils_unittest/parseDiffHeader.pl:
- Added a FIXME to refactor these unit tests to use is_deeply().
- Scripts/webkitperl/VCSUtils_unittest/parseDiffHeader.pl:
- Updated the unit tests to test the "scmFormat" value.
- Simplified the unit tests by refactoring them to use is_deeply().
- 3:18 PM Changeset in webkit [58662] by
-
- 5 edits in trunk
2010-05-02 Tasuku Suzuki <tasuku.suzuki@nokia.com>
Reviewed by Simon Hausmann.
[Qt] Fix compilation with QT_NO_BEARERMANAGEMENT
https://bugs.webkit.org/show_bug.cgi?id=38324
- platform/network/NetworkStateNotifier.h:
- platform/network/qt/NetworkStateNotifierQt.cpp:
2010-05-02 Tasuku Suzuki <tasuku.suzuki@nokia.com>
Reviewed by Simon Hausmann.
[Qt] Fix compilation with QT_NO_BEARERMANAGEMENT
https://bugs.webkit.org/show_bug.cgi?id=38324
- Api/qwebsettings.cpp:
- 2:48 PM Changeset in webkit [58661] by
-
- 3 edits1 add in trunk
[Qt] QtWebKit versioning added
https://bugs.webkit.org/show_bug.cgi?id=37207
Patch by Janne Koskinen <janne.p.koskinen@digia.com> on 2010-04-29
Reviewed by Simon Hausmann.
QtWebkit releases separated from Qt release cycle.
WebCore:
- WebCore.pro:
WebKit/qt:
- qtwebkit_version.pri: Added.
- 2:42 PM Changeset in webkit [58660] by
-
- 2 edits in trunk/WebCore
2010-05-02 Joseph Pecoraro <Joseph Pecoraro>
Reviewed by Timothy Hatcher.
Web Inspector: Old Style trimWhitespace() should be trim()
https://bugs.webkit.org/show_bug.cgi?id=38441
- inspector/front-end/SourceFrame.js: (WebInspector.SourceFrame.prototype._evalSelectionInCallFrame):
- 2:31 PM Changeset in webkit [58659] by
-
- 2 edits in trunk/WebCore
2010-05-02 Tasuku Suzuki <tasuku.suzuki@nokia.com>
Reviewed by Simon Hausmann.
[Qt] Fix compilation with QT_NO_LINEEDIT
https://bugs.webkit.org/show_bug.cgi?id=38324
- platform/qt/RenderThemeQt.cpp: (WebCore::RenderThemeQt::~RenderThemeQt): (WebCore::RenderThemeQt::findFrameLineWidth):
- 1:18 PM Changeset in webkit [58658] by
-
- 2 edits in trunk/WebCore
2010-05-02 Pavel Feldman <pfeldman@chromium.org>
Not reviewed: Touch inspector controller to kick windows tests.
- inspector/InspectorController.cpp:
- 11:32 AM Changeset in webkit [58657] by
-
- 3 edits in trunk
2010-05-02 Pavel Feldman <pfeldman@chromium.org>
Reviewed by Timothy Hatcher.
Web Inspector: IMG nodes are being added to the DOM tree late, sometimes hiding the revealed element.
- inspector/front-end/ElementsTreeOutline.js: (WebInspector.ElementsTreeOutline.prototype._onmousemove): (WebInspector.ElementsTreeElement.prototype._createTooltipForNode.setTooltip): (WebInspector.ElementsTreeElement.prototype._createTooltipForNode): (WebInspector.ElementsTreeElement.prototype.updateTitle): (WebInspector.ElementsTreeElement.prototype._attributeHTML): ():
- 10:08 AM WebInspector edited by
- (diff)
- 9:30 AM Changeset in webkit [58656] by
-
- 22 edits4 adds in trunk
2010-05-02 Dirk Schulze <krit@webkit.org>
Reviewed by Nikolas Zimmermann.
SVG hkern implementation incomplete
https://bugs.webkit.org/show_bug.cgi?id=38407
Test: svg/text/text-hkern.svg
The current SVG hkern implementation is incomplete and partly wrong. We pass the ACID3 test
by accident.
The new implementation supports all glyph and unicode combinations that are allowed by the Spec
and fixes various of bugs. The parser moved from SVGFontElement to the general parsing code in
SVGParserUtilities.
Some clean-up makes the code more readable and reuseable for the upcoming vkern implementation.
hkern support for text on path is missing and will be added by a following patch.
Unicode strings of hkern elements are just parsed once and not on every glyph again anymore.
- rendering/SVGRootInlineBox.cpp: (WebCore::calculateCSSKerning): (WebCore::applySVGKerning): (WebCore::SVGRootInlineBox::buildLayoutInformationForTextBox):
- svg/SVGFontElement.cpp: (WebCore::stringMatchesUnicodeRange): (WebCore::stringMatchesGlyphName): (WebCore::matches): (WebCore::SVGFontElement::getHorizontalKerningPairForStringsAndGlyphs):
- svg/SVGFontElement.h:
- svg/SVGHKernElement.cpp: (WebCore::SVGHKernElement::buildHorizontalKerningPair):
- svg/SVGHKernElement.h:
- svg/SVGParserUtilities.cpp: (WebCore::parseGlyphName): (WebCore::parseUnicodeRange): (WebCore::parseKerningUnicodeString):
- svg/SVGParserUtilities.h:
2010-05-02 Dirk Schulze <krit@webkit.org>
Reviewed by Nikolas Zimmermann.
SVG hkern implementation incomplete
https://bugs.webkit.org/show_bug.cgi?id=38407
The hkern patch fixes some very old bugs in some tests of the official
SVG Test suite. Added a new test to check correct behavior on different
use cases of textin SVG.
- platform/mac/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.txt:
- platform/mac/svg/W3C-SVG-1.1/masking-mask-01-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/masking-mask-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/render-groups-01-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/render-groups-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/render-groups-03-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/render-groups-03-t-expected.png:
- platform/mac/svg/text/kerning-expected.checksum:
- platform/mac/svg/text/kerning-expected.png:
- platform/mac/svg/text/text-hkern-expected.checksum: Added.
- platform/mac/svg/text/text-hkern-expected.png: Added.
- platform/mac/svg/text/text-hkern-expected.txt: Added.
- svg/text/text-hkern.svg: Added.
2010-05-02 Dirk Schulze <krit@webkit.org>
Reviewed by Nikolas Zimmermann.
SVG hkern implementation incomplete
https://bugs.webkit.org/show_bug.cgi?id=38407
We support hkern now. Mention this in the SVG status page.
- projects/svg/status.xml:
- 8:27 AM Changeset in webkit [58655] by
-
- 2 edits in trunk/WebCore
2010-05-02 Pavel Feldman <pfeldman@chromium.org>
Reviewed by Timothy Hatcher.
Web Inspector: debugger shortcuts are processed twice if source frame has focus.
- inspector/front-end/SourceFrame.js: (WebInspector.SourceFrame): (WebInspector.SourceFrame.prototype._createViewerIfNeeded):
- 8:03 AM Changeset in webkit [58654] by
-
- 1 edit in trunk/WebCore/platform/ThreadGlobalData.cpp
Unreviewed. Build fix on Japanese Windows.
Replace a non-ASCII character in a comment with an ASCII character.
- 5:47 AM Changeset in webkit [58653] by
-
- 2 edits in trunk
2010-05-02 Kartikaya Gupta <kagupta@rim.com>
Reviewed by George Staikos.
When running the IDL file through the preprocessor, wait for the preprocessor subcommand to fully terminate before continuing. Without this, if multiple IDL files are parsed in a tight loop, the code dies after 64 IDL files because it exhausts the available system resources.
No new tests. None needed.
- bindings/scripts/IDLParser.pm:
- 5:26 AM Changeset in webkit [58652] by
-
- 2 edits in trunk/JavaScriptCore
2010-05-02 Laszlo Gombos <Laszlo Gombos>
Reviewed by Eric Seidel.
[Qt] Enable JIT for QtWebKit on Symbian
https://bugs.webkit.org/show_bug.cgi?id=38339
JIT on Symbian has been stable for quite some time, it
is time to turn it on by default.
- wtf/Platform.h:
- 5:05 AM Changeset in webkit [58651] by
-
- 2 edits in trunk/WebCore
2010-05-02 Jarkko Sakkinen <jarkko.j.sakkinen@gmail.com>
Reviewed by Eric Seidel.
[Qt] Build error in GraphicsContext3DQt.cpp
https://bugs.webkit.org/show_bug.cgi?id=38382
Removed duplicate implementation of isGLES2Compliant from
GraphicsContext3DQt.cpp. Removed deprecated API stuff for
texImage2D/texSubImage2D.
- platform/graphics/qt/GraphicsContext3DQt.cpp:
- 4:54 AM Changeset in webkit [58650] by
-
- 2 edits in trunk/WebCore
2010-05-02 Garret Kelly <gdk@chromium.org>
Reviewed by David Levin.
Make the Touch RuntimeEnabledFeature disabled by default.
https://bugs.webkit.org/show_bug.cgi?id=38392
- bindings/generic/RuntimeEnabledFeatures.cpp: Disable the Touch feature by default.
- 4:29 AM Changeset in webkit [58649] by
-
- 1 edit in trunk/WebKit/chromium/src/SharedWorkerRepository.cpp
Unreviewed. Fix a build failure by r58647.
- 1:55 AM Changeset in webkit [58648] by
-
- 3 edits in trunk/WebKit/qt
2010-05-02 Benjamin Poulain <benjamin.poulain@nokia.com>
Reviewed by Kenneth Rohde Christiansen.
[Qt] QWebPage::userAgentForUrl is terrible API
https://bugs.webkit.org/show_bug.cgi?id=33875
Simplify the creation of the user agent string to avoid some
overhead for each loaded url.
The static part of the user agent is cached so it only have
to be made once.
This creation has been made in order to simplify the code.
The two variable: application name and current language are
set dynamically when needed.
The default locale is non longer created if the widget locale
is used.
- Api/qwebpage.cpp: (QWebPage::userAgentForUrl):
- tests/qwebpage/tst_qwebpage.cpp: (tst_QWebPage::userAgentApplicationName): (tst_QWebPage::userAgentLocaleChange):
- 1:39 AM Changeset in webkit [58647] by
-
- 10 edits in trunk
2010-05-02 Michael Nordman <Michael Nordman>
Reviewed by Dmitry Titov.
Define two new ResourceRequestBase TargetTypes for worker and shared worker
main resources. Use the new target types where appropiate. Add logic to marshal
the target type specified by requests initiated on a background worker thread.
No new tests. This doesn't have script visible artifacts.
- platform/network/ResourceRequestBase.cpp: marshal the values (WebCore::ResourceRequestBase::adopt): (WebCore::ResourceRequestBase::copyData):
- platform/network/ResourceRequestBase.h: define the types (WebCore::ResourceRequestBase::):
- workers/DefaultSharedWorkerRepository.cpp: use TargetIsSharedWorker (WebCore::SharedWorkerScriptLoader::load):
- workers/Worker.cpp: use TargetIsWorker (WebCore::Worker::Worker):
- workers/WorkerContext.cpp: use TargetIsScript for importScripts (WebCore::WorkerContext::importScripts):
- workers/WorkerScriptLoader.cpp: add a data member for the target type (WebCore::WorkerScriptLoader::WorkerScriptLoader): (WebCore::WorkerScriptLoader::createResourceRequest):
- workers/WorkerScriptLoader.h:
2010-05-02 Michael Nordman <Michael Nordman>
Reviewed by Dmitry Titov.
Define two new ResourceRequestBase TargetTypes for worker and shared worker
main resources. Use the new target types where appropiate. Add logic to marshal
the target type specified by requests initiated on a background worker thread.
- src/SharedWorkerRepository.cpp: use TargetIsSharedWorker (WebCore::SharedWorkerScriptLoader::SharedWorkerScriptLoader):
- 1:12 AM Changeset in webkit [58646] by
-
- 2 edits in trunk/LayoutTests
2010-05-02 Marcus Bulach <bulach@chromium.org>
Reviewed by Jeremy Orlow.
[chromium] Upstream test expectations for:
http/tests/loading/basic-auth-resend-wrong-credentials.html
https://bugs.webkit.org/show_bug.cgi?id=38387
- platform/chromium/test_expectations.txt:
- 1:01 AM Changeset in webkit [58645] by
-
- 2 edits in trunk/WebKit/qt
2010-05-02 Noam Rosenthal <noam.rosenthal@nokia.com>
Reviewed by Kenneth Rohde Christiansen.
[Qt] GraphicsLayer: animation incorrect when scrolling
https://bugs.webkit.org/show_bug.cgi?id=38371
This is a regression introduced with the invalidate-on-scroll code path, that uses QGraphicsWebViewPrivate::update()
instead of QGraphicsWebViewPrivate::scroll(). The patch makes sure that the scrolling position is correct on
each content update - this shouldn't have a performance impact - the only overhead is an additional value-test on each update.
- Api/qgraphicswebview.cpp: (QGraphicsWebViewPrivate::update):
- 12:50 AM Changeset in webkit [58644] by
-
- 8 edits1 move in trunk/LayoutTests
2010-05-02 Ben Murdoch <benm@google.com>
Reviewed by Darin Adler.
fast/events/touch has non-standard script test wrappers
https://bugs.webkit.org/show_bug.cgi?id=38084
Tidy up the touch event layout tests. Make the script-tests TEMPLATE.html
generate asynchronous style tests using js-test-post-function.js and move
the non-standard synchronous test into the resources directory.
- fast/events/touch/basic-multi-touch-events.html: Regenerate from TEMPLATE.html
- fast/events/touch/basic-single-touch-events.html: ditto.
- fast/events/touch/send-oncancel-event.html: ditto.
- fast/events/touch/touch-target.html: ditto.
- fast/events/touch/create-touch-event.html: Link to script in resources rather than
script-tests as this test is not generated from TEMPLATE.html.
- fast/events/touch/resources/create-touch-event.js: Copied from LayoutTests/fast/events/touch/script-tests/create-touch-event.js.
- fast/events/touch/script-tests/TEMPLATE.html: Update to generate asynchronous tests.
- fast/events/touch/script-tests/create-touch-event.js: Removed.
- fast/events/touch/script-tests/touch-target.js: Refactor to work with new wrapper
generated from TEMPLATE.html.
- 12:23 AM Changeset in webkit [58643] by
-
- 4 edits in trunk/WebKit/chromium
2010-05-02 Rafael Weinstein <rafaelw@chromium.org>
Reviewed by Darin Fisher.
Include WebWindowFeatures in call to WebViewClient::createView.
https://bugs.webkit.org/show_bug.cgi?id=38301
- public/WebViewClient.h: (WebKit::WebViewClient::createView):
- public/WebWindowFeatures.h:
- src/ChromeClientImpl.cpp: (WebKit::ChromeClientImpl::createWindow):
- 12:12 AM Changeset in webkit [58642] by
-
- 2 edits in trunk/WebCore
2010-05-02 Noam Rosenthal <noam.rosenthal@nokia.com>
Reviewed by Adele Peterson.
Webkit doesn't compile with 3D-canvas enabled and video disabled
https://bugs.webkit.org/show_bug.cgi?id=38297
Added a #ifdef ENABLE(VIDEO) to WebGL code
No new tests: compile fix.
- bindings/js/JSWebGLRenderingContextCustom.cpp: (WebCore::JSWebGLRenderingContext::texImage2D): (WebCore::JSWebGLRenderingContext::texSubImage2D):
- 12:01 AM Changeset in webkit [58641] by
-
- 4 edits in trunk
2010-05-01 Evan Stade <estade@chromium.org>
Reviewed by David Levin.
[chromium] Skia needs to fade DragImages
https://bugs.webkit.org/show_bug.cgi?id=38008
tested by DragImageTest
- platform/chromium/DragImageChromiumSkia.cpp: (WebCore::dissolveDragImageToFraction):implement (WebCore::createDragImageFromImage):deep copy instead of shallow
2010-05-01 Evan Stade <estade@chromium.org>
Reviewed by David Levin
[chromium] Skia needs to fade DragImages
https://bugs.webkit.org/show_bug.cgi?id=38008
- tests/DragImageTest.cpp: (DragImageTest.CreateDragImage): test that the drag image is a deep copy
May 1, 2010:
- 10:27 PM Changeset in webkit [58640] by
-
- 1 edit1 move in trunk/LayoutTests
Not reviewed.
More shortening of Sputnik paths.
- fast/js/sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/7.9.2_Examples: Copied from fast/js/sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/7.9.2_Examples_of_Automatic_Semicolon_Insertion.
- fast/js/sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/7.9.2_Examples_of_Automatic_Semicolon_Insertion: Removed.
- 10:07 PM Changeset in webkit [58639] by
-
- 2 edits in trunk/LayoutTests
2010-05-01 James Robinson <jamesr@chromium.org>
Reviewed by Eric Seidel.
Add fast/repaint/fixed-move-after-keyboard-scroll.html to skipped list pending investigation
https://bugs.webkit.org/show_bug.cgi?id=38416
- platform/mac-snowleopard/Skipped:
- 6:25 PM Changeset in webkit [58638] by
-
- 1 edit2 adds in trunk/LayoutTests
Land test case that was supposed to be in r53607.
2010-01-20 Adam Barth <abarth@webkit.org>
Reviewed by Darin Adler.
Stylesheet href property shows redirected URL unlike other browsers
https://bugs.webkit.org/show_bug.cgi?id=33683
Test whether the href property of style sheets contains the original or
final URL of the redirect chain that lead to the style sheet.
I couldn't figure out how to test the XSLStyleSheet parts of this
change. There didn't seem to be DOM bindings for the href property
here. If I missed it, please let me know.
- http/tests/security/stylesheet-href-redirect-expected.txt: Added.
- http/tests/security/stylesheet-href-redirect.html: Added.
- 3:44 PM Changeset in webkit [58637] by
-
- 4 edits in trunk/WebKitTools
2010-05-01 Daniel Bates <dbates@rim.com>
Reviewed by Chris Jerdonek.
Adds infrastructure to change the file mode of a file using
the appropriate SCM-specific routines.
No functionality was changed, so no new tests.
- Scripts/VCSUtils.pm: Added subroutines scmToggleExecutableBit, scmAddExecutableBit, and scmRemoveExecutableBit.
- Scripts/svn-apply: Check for the hash key executableBitDelta and toggle the executable bit.
- Scripts/svn-unapply: Ditto.
- 1:23 PM Changeset in webkit [58636] by
-
- 3 edits1 add in trunk/WebCore
2010-05-01 Maciej Stachowiak <mjs@apple.com>
Reviewed by Sam Weinig.
REGRESSION (r58273): Visited links do not change color immediately when Cmd-clicked
https://bugs.webkit.org/show_bug.cgi?id=38422
<rdar://problem/7921778>
Tests:
manual-tests/visited-link-new-window.html
- css/CSSStyleSelector.cpp: (WebCore::CSSStyleSelector::initElement): Only cache the visited link state when invoked as part of a helper call to styleForElement or pseudoStyleForElement, to avoid caching the visited link state beyond the scope of a single style lookup. (WebCore::CSSStyleSelector::styleForElement): Adjust for above change. (WebCore::CSSStyleSelector::pseudoStyleForElement): Adjust for above change.
- css/CSSStyleSelector.h: (WebCore::CSSStyleSelector::styleForElement): Change so "visited link helper mode" can't accidentally be called from outside CSSStyleSelector itself. (WebCore::CSSStyleSelector::pseudoStyleForElement): ditto
- manual-tests/visited-link-new-window.html: Added. I could not figure out any way to make an automated test that supports visited link coloring.
- 5:06 AM Changeset in webkit [58635] by
-
- 8 edits in trunk/WebCore
Move number parsing code out of HTMLInputElement.
https://bugs.webkit.org/show_bug.cgi?id=38203
Reviewed by Darin Adler.
The numebr parsing code follows HTML5 parsing rules and should be available outside of HTMLInputElement.
No new tests as no new functionality was introduced.
- html/HTMLInputElement.cpp:
- html/HTMLInputElement.h:
- html/HTMLParser.cpp:
- html/HTMLParser.h:
- html/StepRange.cpp:
- html/ValidityState.cpp:
- rendering/RenderSlider.cpp:
- 3:42 AM Changeset in webkit [58634] by
-
- 2 edits in trunk/WebKit/gtk
2010-05-01 Xan Lopez <xlopez@igalia.com>
Reviewed by Oliver Hunt.
[GTK] GObject DOM bindings
https://bugs.webkit.org/show_bug.cgi?id=33590
Test webkit_dom_document_get_links.
- tests/testdomdocument.c: (test_dom_document_get_links): (main):
- 3:40 AM Changeset in webkit [58633] by
-
- 4 edits in trunk/WebCore
2010-05-01 Xan Lopez <xlopez@igalia.com>
Reviewed by Oliver Hunt.
[GTK] GObject DOM bindings
https://bugs.webkit.org/show_bug.cgi?id=33590
Unify more logic to skip functions into SkipFunction, and
whitelist the two [Custom] methods in HTMLCollection.idl.
- bindings/scripts/CodeGeneratorGObject.pm:
- 3:20 AM Changeset in webkit [58632] by
-
- 8 edits in trunk/LayoutTests
[Qt] Fix up width/height differences in smart-paste-00* results
Unreviewed fix to height/width rendering differences in results added
by r58631.
[Qt] Fix up width/height differences in smart-paste-00* results
- platform/qt/editing/pasteboard/smart-paste-001-expected.txt:
- platform/qt/editing/pasteboard/smart-paste-002-expected.txt:
- platform/qt/editing/pasteboard/smart-paste-003-expected.txt:
- platform/qt/editing/pasteboard/smart-paste-004-expected.txt:
- platform/qt/editing/pasteboard/smart-paste-005-expected.txt:
- platform/qt/editing/pasteboard/smart-paste-006-expected.txt:
- platform/qt/editing/pasteboard/smart-paste-007-expected.txt:
- 3:02 AM Changeset in webkit [58631] by
-
- 8 edits1 copy6 adds in trunk
[Qt] Add smart paste support
2010-05-01 Robert Hogan <robert@webkit.org>
Reviewed by Simon Hausmann.
[Qt] Add smart paste support
Add platform specific results.
Unskip tests:
editing/pasteboard/smart-paste-001.html
editing/pasteboard/smart-paste-002.html
editing/pasteboard/smart-paste-003.html
editing/pasteboard/smart-paste-004.html
editing/pasteboard/smart-paste-005.html
editing/pasteboard/smart-paste-006.html
editing/pasteboard/smart-paste-007.html
- platform/qt/Skipped:
- platform/qt/editing/pasteboard/smart-paste-001-expected.txt: Added.
- platform/qt/editing/pasteboard/smart-paste-002-expected.txt: Added.
- platform/qt/editing/pasteboard/smart-paste-003-expected.txt: Added.
- platform/qt/editing/pasteboard/smart-paste-004-expected.txt: Added.
- platform/qt/editing/pasteboard/smart-paste-005-expected.txt: Added.
- platform/qt/editing/pasteboard/smart-paste-006-expected.txt:
- platform/qt/editing/pasteboard/smart-paste-007-expected.txt: Added.
- Api/qwebpage.cpp: (QWebPagePrivate::QWebPagePrivate): Enable smart paste support by default.
- WebCore.pro:
- editing/qt/SmartReplaceQt.cpp: Added. (WebCore::isCharacterSmartReplaceExempt):
- platform/qt/PasteboardQt.cpp: (WebCore::Pasteboard::writeSelection): (WebCore::Pasteboard::canSmartReplace):
- 12:07 AM Changeset in webkit [58630] by
-
- 3 edits2 adds in trunk
2010-04-30 Yoshiki Hayashi <yhayashi@google.com>
Reviewed by Shinichiro Hamaji.
Fixes an issue where border height and padding height are ignored when computing vertically shrinking flexbox's height.
- fast/flexbox/child-flexing-expected.txt: Added.
- fast/flexbox/child-flexing.html: Added.
2010-04-30 Yoshiki Hayashi <yhayashi@google.com>
Reviewed by Shinichiro Hamaji.
Fixes an issue where border height and padding height are ignored when computing vertically shrinking flexbox's height.
Test: fast/flexbox/child-flexing.html
- rendering/RenderFlexibleBox.cpp: (WebCore::RenderFlexibleBox::allowedChildFlex):