- 06 Jun, 2011 40 commits
-
-
koz@chromium.org authored
[Chromium] Unreviewed, update test_expectations.txt. * platform/chromium/test_expectations.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88206 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eae@chromium.org authored
Reviewed by Eric Seidel. Update RenderBlock::paint to use IntPoint internally https://bugs.webkit.org/show_bug.cgi?id=62140 Covered by existing tests. * rendering/RenderBlock.cpp: (WebCore::RenderBlock::paint): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88205 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
https://bugs.webkit.org/show_bug.cgi?id=62165sullivan@apple.com authored
<rdar://problem/9555835> WebKit2 find-on-page callback doesn’t handle kWKMoreThanMaximumMatchCount on PDF pages Reviewed by Dan Bernstein. * UIProcess/API/mac/PDFViewController.mm: (WebKit::PDFViewController::findString): Return kWKMoreThanMaximumMatchCount when appropriate, a la FindController::countStringMatches(). Also, skip counting all the matches if maxMatchCount is 0, to avoid (perhaps slowly) computing a number that would be ignored. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88204 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
thakis@chromium.org authored
Reviewed by James Robinson. [chromium] Make WebViewImpl's destructor virtual https://bugs.webkit.org/show_bug.cgi?id=62155 This is _not_ to fix a real bug, just to make clang's -Wdelete-non-virtual-dtor happy. As discussed at http://codereview.chromium.org/7094005/, we prefer making leaf class destructors virtual over making the leaf classes final. * src/WebViewImpl.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88203 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eae@chromium.org authored
Reviewed by Eric Seidel. Convert RenderBox::absoluteRects to IntPoint https://bugs.webkit.org/show_bug.cgi?id=62130 Covered by existing tests. * dom/Node.cpp: (WebCore::Node::hasNonEmptyBoundingBox): * rendering/RenderBlock.cpp: (WebCore::RenderBlock::absoluteRects): * rendering/RenderBlock.h: * rendering/RenderBox.cpp: (WebCore::RenderBox::absoluteRects): * rendering/RenderBox.h: * rendering/RenderInline.cpp: (WebCore::RenderInline::absoluteRects): * rendering/RenderInline.h: * rendering/RenderObject.cpp: (WebCore::RenderObject::absoluteBoundingBoxRect): * rendering/RenderObject.h: (WebCore::RenderObject::absoluteRects): * rendering/RenderText.cpp: (WebCore::RenderText::absoluteRects): * rendering/RenderText.h: * rendering/RenderView.cpp: (WebCore::RenderView::absoluteRects): * rendering/RenderView.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88202 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
qi.2.zhang@nokia.com authored
Reviewed by Kenneth Rohde Christiansen. [Qt] Clean scalePage related LayoutTests https://bugs.webkit.org/show_bug.cgi?id=62142 * platform/qt/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88201 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
leviw@chromium.org authored
Reviewed by Eric Seidel. Switch shouldPaint to use IntPoint https://bugs.webkit.org/show_bug.cgi?id=62158 Switching shouldPaint to take an IntPoint representing the paint offset instead of a pair of ints. No new tests as this is simple refactoring. * rendering/RenderReplaced.cpp: (WebCore::RenderReplaced::paint): (WebCore::RenderReplaced::shouldPaint): * rendering/RenderReplaced.h: * rendering/RenderWidget.cpp: (WebCore::RenderWidget::paint): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88200 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
simonjam@chromium.org authored
Reviewed by James Robinson. Add monotonicallyIncreasingTime() to get monotonically increasing time https://bugs.webkit.org/show_bug.cgi?id=37743 * wtf/CurrentTime.cpp: Add monotonicallyIncreasingTime() for mac and a fallback implementation that just wraps currentTime(). (WTF::monotonicallyIncreasingTime): * wtf/CurrentTime.h: Add monotonicallyIncreasingTime(). 2011-06-06 James Simonsen <simonjam@chromium.org> Reviewed by James Robinson. Add monotonicallyIncreasingTime() to get monotonically increasing time https://bugs.webkit.org/show_bug.cgi?id=37743 * platform/chromium/SystemTimeChromium.cpp: (WebCore::monotonicallyIncreasingTime): Add primitive monotonicallyIncreasingTime() which just wraps currentTime(). git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88199 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eae@chromium.org authored
Reviewed by Eric Seidel. Convert RenderBox::pushContentsClip to IntPoint https://bugs.webkit.org/show_bug.cgi?id=62133 Covered by existing tests. * rendering/RenderBlock.cpp: (WebCore::Covered by existing tests.RenderBlock::paint): * rendering/RenderBox.cpp: (WebCore::RenderBox::pushContentsClip): * rendering/RenderBox.h: * rendering/RenderTable.cpp: (WebCore::RenderTable::paint): * rendering/RenderTableSection.cpp: (WebCore::RenderTableSection::paint): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88198 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
leviw@chromium.org authored
Reviewed by Eric Seidel. Switch InlineFlowBox::paintMask to use IntPoint https://bugs.webkit.org/show_bug.cgi?id=62156 Switching InlineFlowBox::paintMask to take an IntPoint representing the paint offset instead of a pair of ints. No new tests as this is simple refactoring. * rendering/InlineFlowBox.cpp: (WebCore::InlineFlowBox::paint): (WebCore::InlineFlowBox::paintMask): * rendering/InlineFlowBox.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88196 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eae@chromium.org authored
Reviewed by Eric Seidel. Convert hitTest to IntPoint https://bugs.webkit.org/show_bug.cgi?id=62144 Covered by existing tests. * rendering/InlineBox.cpp: (WebCore::InlineBox::nodeAtPoint): * rendering/RenderBlock.cpp: (WebCore::RenderBlock::hitTestFloats): (WebCore::RenderBlock::hitTestContents): * rendering/RenderInline.cpp: (WebCore::RenderInline::nodeAtPoint): * rendering/RenderLayer.cpp: (WebCore::RenderLayer::hitTestContents): * rendering/RenderLayer.h: (WebCore::RenderLayer::renderBoxLocation): (WebCore::RenderLayer::renderBoxX): (WebCore::RenderLayer::renderBoxY): * rendering/RenderLineBoxList.cpp: (WebCore::RenderLineBoxList::hitTest): * rendering/RenderLineBoxList.h: * rendering/RenderObject.cpp: (WebCore::RenderObject::hitTest): * rendering/RenderObject.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88195 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
simonjam@chromium.org authored
[Chromium] Unreviewed, added baseline for inline-wrap-with-parent-padding.html * platform/chromium-win/fast/inline/inline-wrap-with-parent-padding-expected.png: Added. * platform/chromium-win/fast/inline/inline-wrap-with-parent-padding-expected.txt: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88194 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
leviw@chromium.org authored
Reviewed by Eric Seidel. Switch paintScrollbar to use IntPoint https://bugs.webkit.org/show_bug.cgi?id=62151 Switching paintScrollbar to use IntPoint instead of a pair of ints. No new tests since this is simple refactoring. * rendering/RenderListBox.cpp: (WebCore::RenderListBox::paintObject): (WebCore::RenderListBox::paintScrollbar): * rendering/RenderListBox.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88193 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dcheng@chromium.org authored
Reviewed by Tony Chang. [chromium] Delete dead clipboard code. https://bugs.webkit.org/show_bug.cgi?id=62113 No new tests since this change only deleted unused code. * WebCore.gypi: * platform/chromium/ChromiumDataObjectLegacy.cpp: Removed. * platform/chromium/ChromiumDataObjectLegacy.h: Removed. * platform/chromium/ReadableDataObject.cpp: Removed. * platform/chromium/ReadableDataObject.h: Removed. * platform/chromium/WritableDataObject.cpp: Removed. * platform/chromium/WritableDataObject.h: Removed. 2011-06-06 Daniel Cheng <dcheng@chromium.org> Reviewed by Tony Chang. [chromium] Delete dead clipboard code. https://bugs.webkit.org/show_bug.cgi?id=62113 * src/WebDragData.cpp: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88192 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
thakis@chromium.org authored
Reviewed by James Robinson. [chromium] Make WebURLRequestPrivateImpl's and WebURLResponsePrivateImpl's destructors virtual https://bugs.webkit.org/show_bug.cgi?id=62148 This is _not_ to fix a real bug, just to make clang's -Wdelete-non-virtual-dtor happy. As discussed at http://codereview.chromium.org/7094005/, we prefer making leaf class destructors virtual over making the leaf classes final. * src/WebURLRequest.cpp: (WebKit::WebURLRequestPrivateImpl::~WebURLRequestPrivateImpl): * src/WebURLResponse.cpp: (WebKit::WebURLResponsePrivateImpl::~WebURLResponsePrivateImpl): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88191 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
leviw@chromium.org authored
Reviewed by Eric Seidel. Switch paintOutline, paintContinuationOutlines, and paintOutlineForLine to use IntPoint https://bugs.webkit.org/show_bug.cgi?id=62137 Switching paintOutline, paintContinuationOutlines, and paintOutlineForLine to take an IntPoint representing the paint offset instead of a pair of ints. No new tests as this is simple refactoring. * rendering/RenderBlock.cpp: (WebCore::RenderBlock::paintObject): (WebCore::RenderBlock::paintContinuationOutlines): * rendering/RenderBlock.h: * rendering/RenderInline.cpp: (WebCore::RenderInline::paintOutline): (WebCore::RenderInline::paintOutlineForLine): * rendering/RenderInline.h: * rendering/RenderLineBoxList.cpp: (WebCore::RenderLineBoxList::paint): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88190 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eae@chromium.org authored
Reviewed by Eric Seidel. Convert RenderBox::popContentsClip to IntPoint https://bugs.webkit.org/show_bug.cgi?id=62132 Covered by existing tests. * rendering/RenderBlock.cpp: (WebCore::RenderBlock::paint): * rendering/RenderBox.cpp: (WebCore::RenderBox::popContentsClip): * rendering/RenderBox.h: * rendering/RenderTable.cpp: (WebCore::RenderTable::paint): * rendering/RenderTableSection.cpp: (WebCore::RenderTableSection::paint): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88189 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
leviw@chromium.org authored
Reviewed by Eric Seidel. Remove tx/ty offset from selectionRect https://bugs.webkit.org/show_bug.cgi?id=62146 Removing unused offset parameters from selectionRect. No new tests since this is just cleanup. * rendering/EllipsisBox.cpp: (WebCore::EllipsisBox::selectionRect): * rendering/EllipsisBox.h: * rendering/InlineTextBox.cpp: (WebCore::InlineTextBox::selectionRect): * rendering/InlineTextBox.h: * rendering/RenderText.cpp: (WebCore::RenderText::absoluteRectsForRange): (WebCore::ellipsisRectForBox): (WebCore::RenderText::absoluteQuadsForRange): (WebCore::RenderText::selectionRectForRepaint): * rendering/svg/RenderSVGInlineText.cpp: (WebCore::RenderSVGInlineText::localCaretRect): * rendering/svg/SVGInlineTextBox.cpp: (WebCore::SVGInlineTextBox::selectionRect): * rendering/svg/SVGInlineTextBox.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88188 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
Reviewed by Jeremy Orlow. Adds a test for firing popstate, using window.dispatchEvent. https://bugs.webkit.org/show_bug.cgi?id=62099 * fast/events/fire-popstate-event-expected.txt: Added. * fast/events/fire-popstate-event.html: Added. 2011-06-06 Paul Kinlan <paulkinlan@google.com> Reviewed by Jeremy Orlow. Let developers call createEvent("PopStateEvent"), previously it wasn't exposed and threw an exeception. https://bugs.webkit.org/show_bug.cgi?id=62099 * WebCore/dom/Document.cpp: * WebCore/dom/PopStateEvent.cpp: * WebCore/dom/PopStateEvent.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88187 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
leviw@chromium.org authored
Reviewed by Eric Seidel. Switch paintSelection to use IntPoint https://bugs.webkit.org/show_bug.cgi?id=62059 Switching paintSelection to use an IntPoint to represent the paint offset instead of a pair of ints. No new tests since this is simple refactoring. * rendering/EllipsisBox.cpp: (WebCore::EllipsisBox::paint): (WebCore::EllipsisBox::paintSelection): * rendering/EllipsisBox.h: * rendering/RenderBlock.cpp: (WebCore::RenderBlock::paintObject): (WebCore::RenderBlock::paintSelection): * rendering/RenderBlock.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88186 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
mrobinson@webkit.org authored
Fix the GTK+ build by ensuring that the autogenerated sources necessary for libWebCoreInternals are recorded in a predeclared variable before assigning to BUILT_SOURCES. * GNUmakefile.am: Assign libWebCoreInternals built sources to libwebcoreinternals_built_sources before adding to the source list and to BUILT_SOURCES. 2011-06-06 Martin Robinson <mrobinson@igalia.com> Fix the GTK+ build by ensuring that the autogenerated sources necessary for libWebCoreInternals are recorded in a predeclared variable before assigning to BUILT_SOURCES. * GNUmakefile.am: Predeclare libwebcoreinternals_built_sources. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88185 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
jberlin@webkit.org authored
* platform/win/fast/dom/Window/window-property-descriptors-expected.txt: * platform/win/fast/dom/prototype-inheritance-expected.txt: * platform/win/fast/js/global-constructors-expected.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88184 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eae@chromium.org authored
Reviewed by Eric Seidel. Convert RenderBox::clipRect to IntPoint https://bugs.webkit.org/show_bug.cgi?id=62045 Covered by existing tests. * rendering/RenderBox.cpp: (WebCore::RenderBox::clipRect): * rendering/RenderBox.h: * rendering/RenderLayer.cpp: (WebCore::RenderLayer::calculateClipRects): (WebCore::RenderLayer::calculateRects): (WebCore::RenderLayer::repaintBlockSelectionGaps): * rendering/RenderLayerBacking.cpp: (WebCore::clipBox): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88183 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
jberlin@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=59081 Skip more tests on Windows that use the Shadow DOM to get the bots green. * platform/win/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88182 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
Reviewed by David Levin. Marking media/video-canvas-alpha.html as SKIP for GPU MAC. https://bugs.webkit.org/show_bug.cgi?id=62068 * platform/chromium/test_expectations.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88181 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
vangelis@chromium.org authored
Unreviewed. Layout test expectations fix. [chromium] Adjusting expectations for failing huge-layer-img.html * platform/chromium/test_expectations.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88180 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
Reviewed by Eric Seidel. https://bugs.webkit.org/show_bug.cgi?id=62097 Fix the problem that integral bitfield check incorrectly barked at ?: expressions. * Scripts/webkitpy/style/checkers/cpp.py: * Scripts/webkitpy/style/checkers/cpp_unittest.py: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88179 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
Reviewed by Antonio Gomes. Remove unnecessary args from scroll functions. https://bugs.webkit.org/show_bug.cgi?id=61648 No behavior change, so no tests. * WebCore.exp.in: * WebCore.order: * dom/Element.cpp: (WebCore::Element::scrollIntoView): (WebCore::Element::scrollIntoViewIfNeeded): * editing/FrameSelection.cpp: (WebCore::FrameSelection::revealSelection): * page/EventHandler.cpp: (WebCore::EventHandler::handleMousePressEvent): * page/FrameView.cpp: (WebCore::FrameView::scrollToAnchor): * rendering/RenderBox.cpp: (WebCore::RenderBox::canBeScrolledAndHasScrollableArea): (WebCore::RenderBox::canBeProgramaticallyScrolled): * rendering/RenderBox.h: * rendering/RenderLayer.cpp: (WebCore::RenderLayer::scrollRectToVisible): (WebCore::RenderLayer::autoscroll): * rendering/RenderLayer.h: * rendering/RenderListBox.h: (WebCore::RenderListBox::canBeProgramaticallyScrolled): * rendering/RenderTextControl.h: (WebCore::RenderTextControl::canBeProgramaticallyScrolled): 2011-06-06 Peter Kasting <pkasting@google.com> Reviewed by Antonio Gomes. Remove unnecessary args from scroll functions. https://bugs.webkit.org/show_bug.cgi?id=61648 * WebView/WebFrame.mm: (-[WebFrame _scrollDOMRangeToVisible:]): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88178 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
xan@webkit.org authored
Reviewed by Martin Robinson. [GTK] Enable feature/symbol detection in NWRT/GTK https://bugs.webkit.org/show_bug.cgi?id=62136 Disable feature detection through DRT, since we don't support it, and set the libwebcore patch correctly so that symbol detection through 'nm' works. * Scripts/webkitpy/layout_tests/port/gtk.py: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88177 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
leviw@chromium.org authored
Reviewed by Eric Seidel. Switch paintContents, paintColumnContents, paintColumnRules, and paintSelection to use IntPoint https://bugs.webkit.org/show_bug.cgi?id=62134 Switching paintContents, paintColumnContents, paintColumnRules, and paintSelection to take an IntPoint representing the paint offset instead of a pair of ints. No new tests as this simple refactoring. * rendering/RenderBlock.cpp: (WebCore::RenderBlock::paintColumnRules): (WebCore::RenderBlock::paintColumnContents): (WebCore::RenderBlock::paintContents): (WebCore::RenderBlock::paintObject): (WebCore::RenderBlock::paintSelection): * rendering/RenderBlock.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88176 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
yael.aharon@nokia.com authored
Reviewed by Eric Seidel. Inline elements are wrapped prematurely with non-zero border, margin or padding. https://bugs.webkit.org/show_bug.cgi?id=60459 * fast/inline/inline-wrap-with-parent-padding.html: Added. * platform/mac/fast/inline/inline-wrap-with-parent-padding-expected.png: Added. * platform/mac/fast/inline/inline-wrap-with-parent-padding-expected.txt: Added. 2011-06-06 Yael Aharon <yael.aharon@nokia.com> Reviewed by Eric Seidel. Inline elements are wrapped prematurely with non-zero border, margin or padding. https://bugs.webkit.org/show_bug.cgi?id=60459 When an inline element has a right border/margin/padding and it has more than one descendant with no siblings, the width of the right border/margin/padding should be included in line breaking calculation only once, and not for each descendant. Test: fast/inline/inline-wrap-with-parent-padding.html * rendering/RenderBlockLineLayout.cpp: (WebCore::RenderBlock::LineBreaker::nextLineBreak): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88175 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
Reviewed by Tony Gentilcore. Add a "prerender" state for page visibility. https://bugs.webkit.org/show_bug.cgi?id=62062 * fast/events/page-visibility-transition-test-expected.txt: * fast/events/page-visibility-transition-test.html: 2011-06-06 Shishir Agrawal <shishir@chromium.org> Reviewed by Tony Gentilcore. Add a "prerender" state for page visibility. https://bugs.webkit.org/show_bug.cgi?id=62062 * page/PageVisibilityState.cpp: (WebCore::pageVisibilityStateString): * page/PageVisibilityState.h: 2011-06-06 Shishir Agrawal <shishir@chromium.org> Reviewed by Tony Gentilcore. Add a "prerender" state for page visibility. https://bugs.webkit.org/show_bug.cgi?id=62062 * public/WebPageVisibilityState.h: * src/AssertMatchingEnums.cpp: * src/WebViewImpl.cpp: (WebKit::WebViewImpl::setVisibilityState): 2011-06-06 Shishir Agrawal <shishir@chromium.org> Reviewed by Tony Gentilcore. Add a "prerender" state for page visibility. https://bugs.webkit.org/show_bug.cgi?id=62062 * DumpRenderTree/chromium/LayoutTestController.cpp: (LayoutTestController::setPageVisibility): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88174 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
Reviewed by Eric Seidel. Fix typo in CachedFont.cpp #define https://bugs.webkit.org/show_bug.cgi?id=62127 No new tests. The define typo in question is not yet enabled, so this change has no functional impact. * loader/cache/CachedFont.cpp: change SKIA_MAC_ON_CHROME to SKIA_ON_MAC_CHROME git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88173 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
leviw@chromium.org authored
Reviewed by Eric Seidel. Switch paintFloats, paintChildren, and paintEllipsisBoxes to use IntPoint https://bugs.webkit.org/show_bug.cgi?id=62058 Switching paintFloats, paintChildren, and paintEllipsisBoxes to take IntPoints representing their paint offsets instead of pairs of ints. No new tests since this is simple refactoring. * rendering/RenderBlock.cpp: (WebCore::RenderBlock::paintColumnContents): (WebCore::RenderBlock::paintContents): (WebCore::RenderBlock::paintChildren): (WebCore::RenderBlock::paintObject): (WebCore::RenderBlock::paintFloats): (WebCore::RenderBlock::paintEllipsisBoxes): * rendering/RenderBlock.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88172 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
carlosgc@webkit.org authored
Reviewed by Anders Carlsson. Do not use NPRuntimeObjectMap in NetscapePlugin::setException when plug-in is running out of process https://bugs.webkit.org/show_bug.cgi?id=62124 * WebProcess/Plugins/Netscape/NetscapePlugin.cpp: (WebKit::NetscapePlugin::setException): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88171 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
thakis@chromium.org authored
Reviewed by Dimitri Glazkov. webkit/glue/webmediaplayer_impl.cc deletes an object of type WebVideoFrame, which means this patch fixes a real bug, not just a theoretical one. [chromium] Give WebVideoFrame a virtual destructor https://bugs.webkit.org/show_bug.cgi?id=61742 * public/WebVideoFrame.h: (WebKit::WebVideoFrame::~WebVideoFrame): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88170 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ossy@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=52812 * platform/qt/Skipped: Add svg/custom/embedding-external-svgs.xhtml. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88168 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ossy@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=61865 Buildfix for --minimal and CONFIG+=qt_minimal build after r88161. * QtTestBrowser/launcherwindow.cpp: (LauncherWindow::LauncherWindow): * QtTestBrowser/launcherwindow.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88167 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
steveblock@google.com authored
Reviewed by Yury Semikhatsky. Use of ENABLE(INSPECTOR) is inconsistent https://bugs.webkit.org/show_bug.cgi?id=62118 Correctly guard implementation of ScriptProfiler. No new tests, build fix only. * bindings/v8/ScriptProfiler.cpp: (WebCore::ScriptProfiler::initialize): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88166 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dominicc@chromium.org authored
* win/WebKit2CFLite.def: Export symbols for WebCoreTestSupport. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@88165 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-