Timeline



Jul 19, 2012:

11:48 PM Changeset in webkit [123185] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

[Qt] Compile WebCore without QtWidgets
https://bugs.webkit.org/show_bug.cgi?id=91819

Patch by Simon Hausmann <simon.hausmann@nokia.com> on 2012-07-19
Reviewed by Kenneth Rohde Christiansen.

  • WebCore.pri: QT += opengl is not needed for Qt 5, given that QtGui has OpenGL

support built in with the QOpenGL* classes.

11:33 PM Changeset in webkit [123184] by morrita@google.com
  • 20 edits in trunk

[Refactoring] Replace Node's Document pointer with a TreeScope pointer
https://bugs.webkit.org/show_bug.cgi?id=59816

Reviewed by Ryosuke Niwa.

.:

  • Source/autotools/symbols.filter: Added newly exported symbols.

Source/WebCore:

Before this change, Node::treeScope() fetches the TreeScope object
from ElementRareData. This approach has several shortcomings:

  • rareData() call is slow due to a hashtable lookup.
  • In shadow tree, each node has its tree scope in ElementRareData, that means the rare-data is no longer rare in that case.

This change gets rid of ElementRareData::m_treeScope by replacing
Node::m_document with Node::m_treeScope. And retrieves the
document of Node through m_treeScope.

Note that Node::document() is a hot function and naive
replacemennt of m_document with m_treeScope can hurt the
speed. This change employs some tricks to address it.

  • This change introduces Node::InShadowTree flag, if the flag is off, that means m_treeScope is actually a document an can be returned as the result. this eliminates an extract dereference.
  • Node::m_treeScope can be null. But we don't want to issue any extra conditional statement. So this change represents a null TreeScope as TreeScope::nullInstance(), which saves one conditional statement.

With these changes, the Node::document() slowdown is minimized to
unnoticeable size.

No new tests. Covered by existing tests.

  • dom/Document.cpp: Took care of connectio betwen TreeScope.

(WebCore::Document::Document):
(WebCore::Document::~Document):
(WebCore::Document::suggestedMIMEType):

  • dom/Document.h:

(WebCore::Node::treeScope): Now just return m_treeScope, taking care of nullInstance() case.
(WebCore):
(WebCore::Node::setTreeScope): Now just sets m_treeScope.
(WebCore::Node::documentInternal): Extracted from document() to have ASSERT-free version.
(WebCore::Node::document): Re-implemented over treeScope() and the flag.
(WebCore::Node::isDocumentNode): Re-implemented using treeScope()
(WebCore::Node::Node):

  • dom/Node.cpp:

(WebCore::Node::~Node):
(WebCore::Node::reportMemoryUsage):

  • dom/Node.h:

(Node):
(WebCore::Node::inDocument):
(WebCore::Node::isInShadowTree): Rewrote to use InShadowTree flag.

  • dom/NodeRareData.h:

(WebCore::NodeRareData::NodeRareData): Eliminated m_treeScope.
(NodeRareData):

  • dom/ShadowRoot.cpp:

(WebCore::ShadowRoot::ShadowRoot):

  • dom/TreeScope.cpp:

(WebCore::TreeScope::TreeScope):
(WebCore):
(WebCore::TreeScope::setParentTreeScope): Added.
(WebCore::TreeScope::isDocumentScope): Added.
(WebCore::TreeScope::nullInstance): Added.

  • dom/TreeScope.h: Added m_parentTreeScope.

(WebCore):
(WebCore::TreeScope::rootDocument): Added.
(TreeScope):

  • dom/TreeScopeAdopter.cpp: No longer calls setDocument()

(WebCore::TreeScopeAdopter::moveTreeToNewScope):
(WebCore::TreeScopeAdopter::moveNodeToNewDocument):

  • editing/MoveSelectionCommand.cpp: Includes Document.h to find inlined Node functions
  • editing/RemoveNodeCommand.cpp: Includes Document.h to find inlined Node functions
  • editing/RemoveNodePreservingChildrenCommand.cpp: Includes Document.h to find inlined Node functions
  • inspector/PageConsoleAgent.cpp: Includes Document.h to find inlined Node functions

Source/WebKit2:

  • win/WebKit2.def: Added newly exported symbols.
  • win/WebKit2CFLite.def: Ditto.
11:12 PM Changeset in webkit [123183] by hyatt@apple.com
  • 5 edits
    4 adds in trunk

SVG not properly respecting max-width.
https://bugs.webkit.org/show_bug.cgi?id=91474

Source/WebCore:

My previous checkin for 91474 accidentally inverted width and height in the division case for
the computation of height. When I fixed this inversion, I discovered that <object> elements
are in fact also broken with max-width handling, and that furthermore, trying to apply the same
max-width fix by calling RenderBox::computeReplacedLogicalWidth/Height failed because those methods
call intrinsicLogicalWidth()/Height(). Becuase m_intrinsicSize is out-of-date and does not reflect
the values we just obtained from the contentRenderer, we use the default 300x150 values for object
and fail to render.

In order to both fix SVG/<object> with max-width constraints and to keep <object> rendering correctly
even when there are no max-width constraints, I was forced to update the m_intrinsicSize immediately
in order to make sure that the RenderBox methods returned the right values when computing the width/height
constrained to max/min-width/height values.

Reviewed by Dan Bernstein.

Added two new tests in svg/as-image. One test covers non-rectangular images to test for the inversion
mistake I made. The second test applies a max-width to <object> and shows that we have never gotten
this right before. An existing test in svg/as-image/ already covers basic <object> use (and tests that
the intrinsic size of 300x150 is not used when an explicit non-percentage size is specified on the SVG
itself).

  • rendering/RenderReplaced.cpp:

(WebCore::RenderReplaced::computeAspectRatioInformationForRenderBox):
Add a check to update m_intrinsicSize when we know it should apply, so that the calls to check against
min/max-width fetch this correct size.

  • rendering/RenderReplaced.h:

(RenderReplaced):
Make m_intrinsicSize mutable because of the mutation that occurs during the method above. It may be
that we should re-evaluate whether all of these methods should be const, but this would impact RenderBox
methods as well, so I chose to hold off going down that rabbit hole.

LayoutTests:

Reviewed by Dan Bernstein.

  • svg/as-image/svg-intrinsic-size-rectangular-expected.html: Added.
  • svg/as-image/svg-intrinsic-size-rectangular.html: Added.
  • svg/as-image/svg-object-intrinsic-size-expected.html: Added.
  • svg/as-image/svg-object-intrinsic-size.html: Added.
11:06 PM Changeset in webkit [123182] by dmazzoni@google.com
  • 27 edits
    4 adds in trunk

AX: Need AccessibilityObjects for nodes without renderers in canvas subtree
https://bugs.webkit.org/show_bug.cgi?id=87899

Reviewed by Chris Fleizach.

Source/WebCore:

Refactors AccessibilityRenderObject so that it inherits from a new class,
AccessibilityNodeObject, that can be constructed from a Node without a
renderer. Modifies AXObjectCache so that it automatically creates an
AccessibilityNodeObject for elements in a canvas subtree but not otherwise.
A new layout test verifies that this correctly exposes an accessibility
tree with appropriate roles for elements in a canvas subtree.

This patch does not try to complete the implementation of
AccessibilityNodeObject. Most AX methods are still unimplemented and need
to be migrated from AccessibilityRenderObject to AccessibilityNodeObject
in a future patch.

This patch also doesn't change anything outside of WebCore/accessibility, so
the rest of WebCore only calls AXObjectCache when there are changes to a
RenderObject, not to a Node. Accessible notifications on nodes without
renderers need to be implemented in a future patch.

Test: accessibility/canvas-accessibilitynodeobject.html

  • CMakeLists.txt:
  • GNUmakefile.list.am:
  • Target.pri:
  • WebCore.gypi:
  • accessibility/AXObjectCache.cpp:

(WebCore::AXObjectCache::get):
(WebCore):
(WebCore::createFromNode):
(WebCore::AXObjectCache::getOrCreate):
(WebCore::AXObjectCache::remove):

  • accessibility/AXObjectCache.h:

(AXObjectCache):
(WebCore::AXObjectCache::get):
(WebCore::AXObjectCache::getOrCreate):
(WebCore::AXObjectCache::remove):

  • accessibility/AccessibilityARIAGrid.cpp:

(WebCore::AccessibilityARIAGrid::AccessibilityARIAGrid):
(WebCore):
(WebCore::AccessibilityARIAGrid::~AccessibilityARIAGrid):
(WebCore::AccessibilityARIAGrid::init):
(WebCore::AccessibilityARIAGrid::create):

  • accessibility/AccessibilityARIAGrid.h:

(AccessibilityARIAGrid):

  • accessibility/AccessibilityARIAGridCell.cpp:

(WebCore::AccessibilityARIAGridCell::create):

  • accessibility/AccessibilityARIAGridRow.cpp:

(WebCore::AccessibilityARIAGridRow::create):

  • accessibility/AccessibilityAllInOne.cpp:
  • accessibility/AccessibilityList.cpp:

(WebCore::AccessibilityList::create):

  • accessibility/AccessibilityListBox.cpp:

(WebCore::AccessibilityListBox::create):

  • accessibility/AccessibilityMediaControls.cpp:

(WebCore::AccessibilityMediaControl::create):
(WebCore::AccessibilityMediaControlsContainer::create):
(WebCore::AccessibilityMediaTimeline::create):
(WebCore::AccessibilityMediaTimeDisplay::create):

  • accessibility/AccessibilityMenuList.cpp:

(WebCore::AccessibilityMenuList::create):
(WebCore):

  • accessibility/AccessibilityMenuList.h:

(AccessibilityMenuList):

  • accessibility/AccessibilityNodeObject.cpp: Added.

(WebCore):
(WebCore::AccessibilityNodeObject::AccessibilityNodeObject):
(WebCore::AccessibilityNodeObject::~AccessibilityNodeObject):
(WebCore::AccessibilityNodeObject::init):
(WebCore::AccessibilityNodeObject::create):
(WebCore::AccessibilityNodeObject::detach):
(WebCore::AccessibilityNodeObject::childrenChanged):
(WebCore::AccessibilityNodeObject::updateAccessibilityRole):
(WebCore::AccessibilityNodeObject::firstChild):
(WebCore::AccessibilityNodeObject::lastChild):
(WebCore::AccessibilityNodeObject::previousSibling):
(WebCore::AccessibilityNodeObject::nextSibling):
(WebCore::AccessibilityNodeObject::parentObjectIfExists):
(WebCore::AccessibilityNodeObject::parentObject):
(WebCore::AccessibilityNodeObject::elementRect):
(WebCore::AccessibilityNodeObject::setNode):
(WebCore::AccessibilityNodeObject::document):
(WebCore::AccessibilityNodeObject::determineAccessibilityRole):
(WebCore::AccessibilityNodeObject::addChildren):
(WebCore::AccessibilityNodeObject::accessibilityIsIgnored):
(WebCore::AccessibilityNodeObject::canSetFocusAttribute):
(WebCore::AccessibilityNodeObject::determineAriaRoleAttribute):
(WebCore::AccessibilityNodeObject::ariaRoleAttribute):
(WebCore::AccessibilityNodeObject::remapAriaRoleDueToParent):

  • accessibility/AccessibilityNodeObject.h: Added.

(WebCore):
(AccessibilityNodeObject):
(WebCore::AccessibilityNodeObject::isAccessibilityNodeObject):
(WebCore::AccessibilityNodeObject::node):
(WebCore::AccessibilityNodeObject::isDetached):
(WebCore::toAccessibilityNodeObject):

  • accessibility/AccessibilityObject.h:

(WebCore::AccessibilityObject::isAccessibilityNodeObject):

  • accessibility/AccessibilityProgressIndicator.cpp:

(WebCore::AccessibilityProgressIndicator::create):

  • accessibility/AccessibilityRenderObject.cpp:

(WebCore::AccessibilityRenderObject::AccessibilityRenderObject):
(WebCore::AccessibilityRenderObject::init):
(WebCore):
(WebCore::AccessibilityRenderObject::create):
(WebCore::AccessibilityRenderObject::detach):
(WebCore::AccessibilityRenderObject::setRenderer):
(WebCore::AccessibilityRenderObject::canHaveChildren):
(WebCore::AccessibilityRenderObject::addCanvasChildren):
(WebCore::AccessibilityRenderObject::addChildren):

  • accessibility/AccessibilityRenderObject.h:

(AccessibilityRenderObject):

  • accessibility/AccessibilitySlider.cpp:

(WebCore::AccessibilitySlider::create):

  • accessibility/AccessibilityTable.cpp:

(WebCore::AccessibilityTable::AccessibilityTable):
(WebCore):
(WebCore::AccessibilityTable::~AccessibilityTable):
(WebCore::AccessibilityTable::init):
(WebCore::AccessibilityTable::create):

  • accessibility/AccessibilityTable.h:

(AccessibilityTable):

  • accessibility/AccessibilityTableCell.cpp:

(WebCore::AccessibilityTableCell::create):

  • accessibility/AccessibilityTableRow.cpp:

(WebCore::AccessibilityTableRow::create):

LayoutTests:

This new test adds a bunch of elements to a normal container and the same elements to
a canvas subtree, then it iterates over all of the accessible objects within each
container and makes sure they have identical roles. Because we know the nodes in the
canvas subtree don't have renderers, this successfully tests that AccessibilityNodeObjects
are getting created for these nodes.

  • accessibility/canvas-accessibilitynodeobject-expected.txt: Added.
  • accessibility/canvas-accessibilitynodeobject.html: Added.
11:01 PM Changeset in webkit [123181] by mitz@apple.com
  • 11 edits
    4 deletes in trunk/Source

The ATSUI-based complex text code is unused
https://bugs.webkit.org/show_bug.cgi?id=91816

Reviewed by Sam Weinig.

../WebCore:

  • WebCore.gypi: Removed references to the files deleted in this change.
  • WebCore.xcodeproj/project.pbxproj: Ditto.
  • platform/graphics/FontCache.h:
(FontCache): Replaced USE(CORE_TEXT) with PLATFORM(MAC)
PLATFORM(CHROMIUM) && OS(DARWIN).
  • platform/graphics/SimpleFontData.h:

(SimpleFontData): Removed USE(ATSUI)-only code, replaced USE(CORE_TEXT) with
(PLATFORM(CHROMIUM) && OS(DARWIN)).

  • platform/graphics/mac/ComplexTextController.cpp: Removed USE(ATSUI)-only code. Moved

collectComplexTextRunsForCharacters() and the ComplexTextRun constructor out of this file.

  • platform/graphics/mac/ComplexTextController.h: Removed USE(ATSUI)-only code and removed

#if USE(CORE_TEXT) because anyone including this header is using Core Text.

  • platform/graphics/mac/ComplexTextControllerATSUI.cpp: Removed.
  • platform/graphics/mac/ComplexTextControllerCoreText.mm:

(WebCore::ComplexTextController::ComplexTextRun::ComplexTextRun): Moved from
ComplexTextController.cpp into this file and merged with createTextRunFromFontDataCoreText().
(WebCore::ComplexTextController::collectComplexTextRunsForCharacters): Moved from
ComplexTextController.cpp into this file and merged with
collectComplexTextRunsForCharactersCoreText().

  • platform/graphics/mac/SimpleFontDataATSUI.mm: Removed.
  • platform/graphics/mac/SimpleFontDataMac.mm:

(WebCore::SimpleFontData::platformInit): Remove USE(ATSUI)-only code.
(WebCore::SimpleFontData::platformDestroy): Ditto.

  • platform/text/mac/ShapeArabic.c: Removed.
  • platform/text/mac/ShapeArabic.h: Removed.

../WTF:

Removed definitions of WTF_USE_ATSUI and WTF_USE_CORE_TEXT.

  • wtf/Platform.h:
10:54 PM Changeset in webkit [123180] by tkent@chromium.org
  • 4 edits in trunk/Source/WebCore

Introduce Node::shadowHost()
https://bugs.webkit.org/show_bug.cgi?id=91814

Reviewed by Hajime Morita.

Introduce Node::shadowHost(), which return the host element, or 0.
Node::shadowAncestorNode() is used to obtain a shadow host. However it
is confusing because it returns 'this' if this is not in a shadow tree.

Replaces one callsite of shadowAncestorNode() with shadowHost().

No behavior change.

  • dom/Node.cpp:

(WebCore::Node::shadowHost): Added.

  • dom/Node.h:

(Node): Declare shadowHost(), and add a comment to shadowAncestorNode().

  • html/shadow/CalendarPickerElement.cpp:

(WebCore::CalendarPickerElement::hostInput):
Replace shadowAncestorNode() with shaodwHost().

10:33 PM Changeset in webkit [123179] by mary.wu@torchmobile.com.cn
  • 2 edits in trunk/Source/WebKit/blackberry

[BlackBerry] Make sure to send favicon when go back/forward
https://bugs.webkit.org/show_bug.cgi?id=91808

Reviewed by George Staikos.

When go back/forward, if the page was in page cache, it would have no chance
to send favicon. So we'll send it in commitLoad right after send the blank
icon.
RIM PR# 177495

  • WebCoreSupport/FrameLoaderClientBlackBerry.cpp:

(WebCore::FrameLoaderClientBlackBerry::dispatchDidCommitLoad):

9:48 PM Changeset in webkit [123178] by tkent@chromium.org
  • 6 edits in trunk

Form state restore: Need to identify a form by its content
https://bugs.webkit.org/show_bug.cgi?id=91209

Reviewed by Hajime Morita.

Source/WebCore:

Add names of the first two controls of a form to its formKey
string. By this change, we can correctly restore states to
reordered forms like webkit.org/b/91209#c0.

Tests: Added test cases to fast/forms/state-restore-per-form.html.

  • html/FormController.cpp:

(WebCore::recordFormStructure):
Append at most two name attribute values.
(WebCore::createKey): Insert a string built by recordFromStructure().
(WebCore::formStateSignature): Bump the version.

LayoutTests:

  • fast/forms/state-restore-broken-state-expected.txt:

Updated for the serialized format change.

  • fast/forms/state-restore-per-form-expected.txt:
  • fast/forms/state-restore-per-form.html:
  • Add a control to #form2 before 'additionalControl' We can't identify this form if the second named control is changed.
  • Add test cases of webkit.org/b/91209#c0.
9:31 PM Changeset in webkit [123177] by commit-queue@webkit.org
  • 5 edits in trunk

[EFL] [WK2] Add methods to get/set a custom text encoding
https://bugs.webkit.org/show_bug.cgi?id=90604

Patch by Sudarsana Nagineni <sudarsana.nagineni@linux.intel.com> on 2012-07-19
Reviewed by Kenneth Rohde Christiansen.

Source/WebKit2:

Add methods to get/set custom character encoding.

  • UIProcess/API/efl/ewk_view.cpp:

(_Ewk_View_Private_Data):
(_ewk_view_priv_del):
(ewk_view_setting_encoding_custom_get):
(ewk_view_setting_encoding_custom_set):

  • UIProcess/API/efl/ewk_view.h:

Tools:

Added support for setting custom character encoding in MiniBrowser.
Use 'F3' to set the custom character encoding.

  • MiniBrowser/efl/main.c:

(on_key_down):

9:29 PM Changeset in webkit [123176] by macpherson@chromium.org
  • 2 edits in trunk/Source/WebKit/chromium

Enable CSS variables compile time flag in Chrome.
https://bugs.webkit.org/show_bug.cgi?id=91708

Reviewed by Dimitri Glazkov.

Flips the ENABLE_CSS_VARIABLES compile flag on for Chrome. There is also a run-time flag that is off by default,
so this should not have a user visible effect other than making the variables runtime flag visible at chrome://flags/

  • features.gypi:
9:27 PM Changeset in webkit [123175] by commit-queue@webkit.org
  • 7 edits in trunk/Source

enable Web Audio for chromium android port
https://bugs.webkit.org/show_bug.cgi?id=89428

Patch by Wei James <james.wei@intel.com> on 2012-07-19
Reviewed by Kenneth Russell.

Source/WebCore:

  • WebCore.gyp/WebCore.gyp:
  • platform/audio/FFTFrameStub.cpp:

(WebCore::FFTFrame::doFFT):

Source/WebKit/chromium:

  • features.gypi:

Source/WTF:

  • wtf/MathExtras.h:

(log2):
(log2f):

9:27 PM Changeset in webkit [123174] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

[Chromium] Suppress tests requiring a rebaseline.
Skia roll to 4683 changes gradient rendering, and rebaselines are required.
https://bugs.webkit.org/show_bug.cgi?id=91797

Patch by Jeff Timanus <twiz@chromium.org> on 2012-07-19
Reviewed by Kenneth Russell.

  • platform/chromium/TestExpectations:
9:26 PM EFLWebKit edited by Joone Hur
(diff)
9:23 PM Changeset in webkit [123173] by dpranke@chromium.org
  • 2 edits in trunk/Tools

webkitpy: executive_unittest still failing when run in parallel
https://bugs.webkit.org/show_bug.cgi?id=91795

Reviewed by Adam Barth.

It turns out that test_kill_process and test_kill_all are both
launching the same process, and so if they're run at the same
time, test_kill_all interferes w/ test_kill_process.

Merging the two tests solves the issue :).

  • Scripts/webkitpy/common/system/executive_unittest.py:

(ExecutiveTest.test_kill_process):
(ExecutiveTest._assert_windows_image_name):
(ExecutiveTest):
(ExecutiveTest.test_windows_image_name):

9:08 PM Changeset in webkit [123172] by jpetsovits@rim.com
  • 4 edits in trunk/Source/WebKit/blackberry

[BlackBerry] Suspend when there's no target buffer until an external compositor is set
https://bugs.webkit.org/show_bug.cgi?id=91686
RIM PR 174365

Reviewed by Antonio Gomes.

If we don't have a client window (i.e. rendering to
GL directly) and a WebPageCompositor is only set
after a rendering operation, then we'll try to render
to BackingStorePrivate::buffer() which doesn't exist
at this point. That's bad, and gets us various
assertions and possibly worse.

Fix it by starting in a screen-suspended state and only
resuming screen and backingstore once a compositor is
actually set.

So, in effect, with this patch applied, the sequence
of events will look like this:

1) WebPage & BackingStore are initialize, neither window

nor compositor exists, therefore buffer() returns 0.
createSurface() therefore suspends screen and
backingstore.

2) loadURL() or loadData() is called, web page is

fully loaded, however we don't try to render because
we're still suspended, still have no target buffer.

3) A WebPageCompositor is being set from outside.

At the beginning of WebPage::setCompositor() we still
don't have a buffer() so there's nothing to suspend,
however, after the sync call to setCompositorHelper()
the compositor is set so buffer() will return a
nonzero value, causing us to resume at this point.

Using the existence of a target buffer to determine
whether or not to enable rendering or keep it suspended
seems like a good idea, and the implementation (while
not quite perfect yet) is a step forward from before.

  • Api/BackingStore.cpp:

(BlackBerry::WebKit::BackingStorePrivate::createSurfaces):

  • Api/WebPage.cpp:

(BlackBerry::WebKit::WebPagePrivate::setCompositor):
(BlackBerry::WebKit::WebPagePrivate::setCompositorHelper):

  • Api/WebPage_p.h:

(WebPagePrivate):

8:59 PM Changeset in webkit [123171] by hyatt@apple.com
  • 4 edits
    2 adds in trunk

SVG images broken when max-width specified.
https://bugs.webkit.org/show_bug.cgi?id=91474

Source/WebCore:

SVG images were computing intrinsic dimensions when width and height were auto that did not
respect min-max width/height. Normal images had code that applied these constraints properly.
Looking at the code before the check-in that broke things, these constraints used to be
applied to all images regardless of type via calcAspectRatioLogicalWidth/Height.

This patch leaves the new function structure in place but converts the code to be more like
it was prior to the introduction of the regression. Instead of raw intrinsic sizes being
used in the SVG case, now all image types get the intrinsic sizes constrained when doing
width/height computations.

Reviewed by Dan Bernstein.

Test: svg/as-image/svg-intrinsic-size.html

  • rendering/RenderReplaced.cpp:

(WebCore::RenderReplaced::computeAspectRatioInformationForRenderBox):
Rename computeIntrinsicRatioInformationForRenderBox to computeAspectRatioInformationForRenderBox.
Also rename the intrinsicSize reference to constrainedSize to reflect the fact that the size
is not necessarily the intrinsic size any longer but instead a size where both axes have been
constrained based off the max-min values of the opposite axes.

Move the constraining code out of RenderReplaced::computeIntrinsicRatioInformation into this
function so that the SVG code path appies the constraints as well. The movement of this code
is what fixes the bug.

(WebCore::RenderReplaced::computeIntrinsicRatioInformation):
Changed to remove the code that constrains the returned size, since it is shifting to
computeAspectRatioInformationForRenderBox instead.

(WebCore::RenderReplaced::computeReplacedLogicalWidth):
(WebCore::RenderReplaced::computeReplacedLogicalHeight):

  • rendering/RenderReplaced.h:

(RenderReplaced):
Patch the name of the reference passed in to computeReplacedLogicalWidth/Height to be
constrainedSize instead of intrinsicSize, so that it is more obvious that the returned
result is not just the intrinsic size of the image.

LayoutTests:

Reviewed by Dan Bernstein.

  • svg/as-image/svg-intrinsic-size-expected.html: Added.
  • svg/as-image/svg-intrinsic-size.html: Added.
8:57 PM Changeset in webkit [123170] by gyuyoung.kim@samsung.com
  • 3 edits in trunk/Source/WebKit2

Unreviewed. Fix build break because of changing parameter type of
vibration virtual function on EFL port.

  • WebProcess/WebCoreSupport/WebVibrationClient.cpp:

(WebKit::WebVibrationClient::vibrate):

  • WebProcess/WebCoreSupport/WebVibrationClient.h:

(WebVibrationClient):

8:50 PM Changeset in webkit [123169] by fpizlo@apple.com
  • 10 edits in trunk/Source/JavaScriptCore

DFG cell checks should be hoisted
https://bugs.webkit.org/show_bug.cgi?id=91717

Reviewed by Geoffrey Garen.

The DFG has always had the policy of hoisting array and integer checks to
the point of variable assignment. Eventually, we added doubles and booleans
to the mix. But cells should really be part of this as well, particularly
for 32-bit where accessing a known-type variable is dramatically cheaper
than accessing a variable whose types is only predicted but otherwise
unproven.

This appears to be a definite speed-up for V8 on 32-bit, a possible speed-up
for Kraken, and a possible slow-down for V8 on 64-bit (around 0.2% if at
all). Any slow-downs can, and should, be addressed by making the hoisting
logic cognizant of variables that are never used in a manner that requires
type checks, and by sinking argument checks to the point(s) of first use.

To make this work I had to change some OSR machinery, and special-case the
type predictions of the 'this' argument for constructors. OSR exit normally
assumes that arguments are boxed, which happens to be true because the
type prediction used for check hoisting is LUB'd with the type of the
argument that was passed in - so either the arguments are always stored to
with the full tag+payload, or if only the payload is stored then the tag
matches whatever the caller would have set. But not so with the 'this'
argument for constructors, which is not initialized by the caller. We
could make this more precise by having argument types for OSR be inferred
using similar machinery to other locals, but I figured that for this patch
I should use the surgical fix.

  • assembler/MacroAssemblerX86_64.h:

(JSC::MacroAssemblerX86_64::branchTestPtr):
(MacroAssemblerX86_64):

  • assembler/X86Assembler.h:

(JSC::X86Assembler::testq_rm):
(X86Assembler):

  • dfg/DFGAbstractState.cpp:

(JSC::DFG::AbstractState::initialize):
(JSC::DFG::AbstractState::execute):

  • dfg/DFGDriver.cpp:

(JSC::DFG::compile):

  • dfg/DFGGraph.h:

(JSC::DFG::Graph::isCreatedThisArgument):
(Graph):

  • dfg/DFGSpeculativeJIT.cpp:

(JSC::DFG::SpeculativeJIT::checkArgumentTypes):

  • dfg/DFGSpeculativeJIT32_64.cpp:

(JSC::DFG::SpeculativeJIT::compile):

  • dfg/DFGSpeculativeJIT64.cpp:

(JSC::DFG::SpeculativeJIT::compile):

  • dfg/DFGValueSource.h:

(JSC::DFG::ValueSource::forSpeculation):

6:31 PM Changeset in webkit [123168] by jchaffraix@webkit.org
  • 1 edit
    2 adds
    2 deletes in trunk/LayoutTests

[CSS2.1] Anonymous tables should be inline/block-level based off their parent
https://bugs.webkit.org/show_bug.cgi?id=15365

Another unreviewed rebaseline after r123159 (gtk).

  • fast/dynamic/insert-before-table-part-in-continuation-expected.txt: Added.
  • platform/efl/fast/dynamic/insert-before-table-part-in-continuation-expected.txt: Removed.
  • platform/gtk/fast/dynamic/insert-before-table-part-in-continuation-expected.txt: Removed.
  • platform/gtk/tables/mozilla/bugs/bug3037-1-expected.txt: Added.
5:22 PM Changeset in webkit [123167] by arv@chromium.org
  • 3 edits in trunk/LayoutTests

Fix test after r123145.

Unreviewed.

  • fast/js/var-declarations-shadowing-expected.txt:
  • fast/js/var-declarations-shadowing.html:
5:21 PM Changeset in webkit [123166] by dimich@chromium.org
  • 4 edits in trunk/Source/WebCore

Unreviewed, reverting http://trac.webkit.org/changeset/123149.
It broke an IDB test on Chromium page cycler.

  • bindings/v8/SerializedScriptValue.cpp:

(WebCore::SerializedScriptValue::SerializedScriptValue):
(WebCore):

  • bindings/v8/SerializedScriptValue.h:
  • dom/MessageEvent.cpp:

(WebCore::MessageEvent::MessageEvent):
(WebCore::MessageEvent::initMessageEvent):

5:20 PM Changeset in webkit [123165] by jchaffraix@webkit.org
  • 8 edits
    9 adds
    2 deletes in trunk/LayoutTests

[CSS2.1] Anonymous tables should be inline/block-level based off their parent
https://bugs.webkit.org/show_bug.cgi?id=15365

Unreviewed gardening after r123159.

  • mathml/msub-anonymous-child-render-crash-expected.txt:

MathML wraps msub / mpub in inline-blocks so the table wrapper is now inline too which leads to this
baseline change.

  • platform/chromium-mac-snowleopard/fast/dynamic/insert-before-table-part-in-continuation-expected.png:
  • platform/chromium-mac/fast/dynamic/insert-before-table-part-in-continuation-expected.png:
  • platform/chromium-win/fast/dynamic/insert-before-table-part-in-continuation-expected.png:
  • platform/efl/fast/dynamic/insert-before-table-part-in-continuation-expected.txt:
  • platform/efl/tables/mozilla/bugs/bug3037-1-expected.txt: Removed.
  • platform/gtk/tables/mozilla/bugs/bug3037-1-expected.txt: Removed.
  • platform/mac-wk2/fast/dynamic: Added.
  • platform/mac-wk2/fast/dynamic/insert-before-table-part-in-continuation-expected.txt: Added.
  • platform/mac-wk2/mathml: Added.
  • platform/mac-wk2/mathml/msub-anonymous-child-render-crash-expected.txt: Added.
  • platform/mac-wk2/tables: Added.
  • platform/mac-wk2/tables/mozilla: Added.
  • platform/mac-wk2/tables/mozilla/bugs: Added.
  • platform/mac-wk2/tables/mozilla/bugs/bug3037-1-expected.txt: Added.
  • platform/mac/fast/dynamic/insert-before-table-part-in-continuation-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug3037-1-expected.txt:
  • tables/mozilla/bugs/bug3037-1-expected.txt: Added.
5:04 PM Changeset in webkit [123164] by fpizlo@apple.com
  • 4 edits in trunk/Source/JavaScriptCore

Fast path of storage resize should be removed from property storage reallocation, since it is only useful for arrays
https://bugs.webkit.org/show_bug.cgi?id=91796

Reviewed by Geoffrey Garen.

  • dfg/DFGRepatch.cpp:

(JSC::DFG::emitPutTransitionStub):

  • dfg/DFGSpeculativeJIT.cpp:

(JSC::DFG::SpeculativeJIT::compileReallocatePropertyStorage):

  • runtime/JSObject.cpp:

(JSC::JSObject::growOutOfLineStorage):

4:43 PM Changeset in webkit [123163] by tony@chromium.org
  • 5 edits
    1 move
    1 add
    1 delete in trunk/LayoutTests

Unreviewed gardening. Land chromium win and chromium-linux baselines for
fast/backgrounds/size/zero.html after r121296.

  • fast/backgrounds/size/zero-expected.txt: Renamed from LayoutTests/platform/efl/fast/backgrounds/size/zero-expected.txt.
  • platform/chromium-linux/fast/backgrounds/size/zero-expected.png:
  • platform/chromium-win-xp/fast/backgrounds/size/zero-expected.png: Added.
  • platform/chromium-win/fast/backgrounds/size/zero-expected.png:
  • platform/chromium-win/fast/backgrounds/size/zero-expected.txt:
  • platform/chromium/TestExpectations:
  • platform/gtk/fast/backgrounds/size/zero-expected.txt: Removed.
4:40 PM Changeset in webkit [123162] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WTF

[Chromium] disable warning on Windows from gcc-only pragma in Assertions.cpp"
https://bugs.webkit.org/show_bug.cgi?id=91776

Patch by Scott Graham <scottmg@chromium.org> on 2012-07-19
Reviewed by Ryosuke Niwa.

Avoids:

...\source\wtf\wtf\assertions.cpp(31) : warning C4068: unknown pragma

  • WTF.gyp/WTF.gyp:
4:32 PM Changeset in webkit [123161] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WTF

[chromium][Mac] Switch the MACOSX_DEPLOYMENT_TARGET to 10.6
https://bugs.webkit.org/show_bug.cgi?id=91752

Patch by Robert Sesek <rsesek@chromium.org> on 2012-07-19
Reviewed by Eric Seidel.

When building CHROMIUM && DARWIN, do not enable ATSUI support.

  • wtf/Platform.h:
4:27 PM Changeset in webkit [123160] by abarth@webkit.org
  • 4 edits in trunk/Source/WebKit/chromium

[Chromium] Support external autofill popups
https://bugs.webkit.org/show_bug.cgi?id=91651

Reviewed by Darin Fisher.

This looks like the last piece needed to support external autofill
popups. This function just lets the embedder select an index
(presumably because the user picked an index from the external autofill
popup).

  • public/WebView.h:

(WebView):

  • src/WebViewImpl.cpp:

(WebKit::WebViewImpl::selectAutofillSuggestionAtIndex):
(WebKit):

  • src/WebViewImpl.h:

(WebViewImpl):

4:10 PM Changeset in webkit [123159] by jchaffraix@webkit.org
  • 9 edits
    6 adds in trunk

Source/WebCore: [CSS2.1] Anonymous tables should be inline/block-level based off their parent
https://bugs.webkit.org/show_bug.cgi?id=15365

Reviewed by Abhishek Arya.

This change makes us match bullet 3 "Generate missing parents" of section 17.2.1 http://www.w3.org/TR/CSS2/tables.html#anonymous-boxes":
"If a table is contained by an inline element, then the anonymous tables should be inline-tables."

Patch based on an earlier change by Kang-Hao (Kenny) Lu <kennyluck@csail.mit.edu>.

Tests: css2.1/20110323/inline-table-002b.html

fast/dynamic/insert-before-table-part-in-continuation.html
fast/table/inline-table-in-continuation.html
fast/table/inline-table-with-caption.html

  • rendering/RenderTable.cpp:

(WebCore::RenderTable::createAnonymousWithParentRenderer):
Added a check to determine if we should be inline or block based on our parent to match CSS 2.1.

  • rendering/RenderInline.cpp:

(WebCore::RenderInline::addChildIgnoringContinuation):
Changed the child addition logic to not wrap a table part in an inline context. This change works
as intended as we will call RenderObject::addChild which will create an anonymous inline table that
will be added under |this| instead of the table part. As the table is inline, it doesn't need to be
wrapped when we recursively call RenderInline::addChild.

Source/WebKit2: [WK2] Add Vibration API integration to WebContext and WebPage
https://bugs.webkit.org/show_bug.cgi?id=91081

Reviewed by Anders Carlsson.

Integrate Vibration API to WebPage, WebContext and properly route
messages to the WebVibrationProxy.

  • UIProcess/API/C/WKContext.cpp:

(WKContextGetVibration):

  • UIProcess/API/C/WKContext.h:
  • UIProcess/WebContext.cpp:

(WebKit::WebContext::WebContext):
(WebKit::WebContext::~WebContext):
(WebKit::WebContext::disconnectProcess):
(WebKit::WebContext::didReceiveMessage):

  • UIProcess/WebContext.h:

(WebKit):
(WebContext):
(WebKit::WebContext::vibrationProxy):

  • UIProcess/WebProcessProxy.cpp:

(WebKit::WebProcessProxy::didReceiveMessage):

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::WebPage):

Tools: [EFL] [WK2] Add a callback to handle delete request in MiniBrowser
https://bugs.webkit.org/show_bug.cgi?id=91483

Reviewed by Dirk Pranke.

Add a callback to handle delete request and quit the main loop when
window is asked to be deleted so that all the resources allocated
for the window will be freed properly.

  • MiniBrowser/efl/main.c:

(closeWindow):
(browserCreate):

LayoutTests: [CSS2.1] Anonymous tables should be inline/block-level based off their parent
https://bugs.webkit.org/show_bug.cgi?id=15365

Reviewed by Abhishek Arya.

  • css2.1/20110323/inline-table-002b-expected.htm: Added.
  • css2.1/20110323/inline-table-002b.html: Added.
  • fast/table/inline-table-in-continuation-expected.html: Added.
  • fast/table/inline-table-in-continuation.html: Added.

Added a test for an anonymous inline table in a continuation.

  • fast/table/inline-table-with-caption-expected.html: Added.
  • fast/table/inline-table-with-caption.html: Added.

Added a test for a table-caption in inline-context.

  • platform/chromium-win/tables/mozilla/bugs/bug3037-1-expected.txt:

This is a progression: we now properly make the table inline and don't wrap it in anonymous blocks.

  • platform/chromium-linux/fast/dynamic/insert-before-table-part-in-continuation-expected.png:
  • platform/chromium-win/fast/dynamic/insert-before-table-part-in-continuation-expected.txt:

This is a progression too. However we still have some differences with Firefox and Opera.

3:57 PM Changeset in webkit [123158] by commit-queue@webkit.org
  • 7 edits in trunk/Source/WebKit2

[WK2] Add Vibration API integration to WebContext and WebPage
https://bugs.webkit.org/show_bug.cgi?id=91081

Patch by Sudarsana Nagineni <sudarsana.nagineni@linux.intel.com> on 2012-07-19
Reviewed by Anders Carlsson.

Integrate Vibration API to WebPage, WebContext and properly route
messages to the WebVibrationProxy.

  • UIProcess/API/C/WKContext.cpp:

(WKContextGetVibration):

  • UIProcess/API/C/WKContext.h:
  • UIProcess/WebContext.cpp:

(WebKit::WebContext::WebContext):
(WebKit::WebContext::~WebContext):
(WebKit::WebContext::disconnectProcess):
(WebKit::WebContext::didReceiveMessage):

  • UIProcess/WebContext.h:

(WebKit):
(WebContext):
(WebKit::WebContext::vibrationProxy):

  • UIProcess/WebProcessProxy.cpp:

(WebKit::WebProcessProxy::didReceiveMessage):

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::WebPage):

3:55 PM Changeset in webkit [123157] by Chris Fleizach
  • 4 edits
    2 adds in trunk

Source/WebCore: WebKit should pass <title> element value as the default description for web views
https://bugs.webkit.org/show_bug.cgi?id=91763

Reviewed by Anders Carlsson.

Update the logic for determining the description for the AXWebArea to include the document's title.

Test: platform/mac/accessibility/document-title-used-for-description.html

  • accessibility/AccessibilityRenderObject.cpp:

(WebCore::AccessibilityRenderObject::webAreaAccessibilityDescription):

Move web area description handling into a separate method.

(WebCore::AccessibilityRenderObject::accessibilityDescription):

  • accessibility/AccessibilityRenderObject.h:

(AccessibilityRenderObject):

LayoutTests: WebKit should pass <title> element value as the default AXTitle for web views
https://bugs.webkit.org/show_bug.cgi?id=91763

Reviewed by Anders Carlsson.

  • platform/mac/accessibility/document-title-used-for-description-expected.txt: Added.
  • platform/mac/accessibility/document-title-used-for-description.html: Added.
3:40 PM Changeset in webkit [123156] by commit-queue@webkit.org
  • 22 edits
    1 copy
    59 adds in trunk/LayoutTests

[Qt] Added/updated missing fast/forms results after rebaseline
https://bugs.webkit.org/show_bug.cgi?id=91504

Patch by Bruno de Oliveira Abinader <Bruno de Oliveira Abinader> on 2012-07-19
Reviewed by Noam Rosenthal.

The following tests were failing after r122879:

fast/forms/HTMLOptionElement_label06.html = TEXT
fast/forms/HTMLOptionElement_label07.html = TEXT
fast/forms/basic-inputs.html = TEXT
fast/forms/basic-textareas-quirks.html = TEXT
fast/forms/box-shadow-override.html = TEXT
fast/forms/control-restrict-line-height.html = TEXT
fast/forms/encoding-test.html = TEXT
fast/forms/fieldset-align.html = TEXT
fast/forms/form-element-geometry.html = TEXT
fast/forms/input-appearance-bkcolor.html = TEXT
fast/forms/input-appearance-default-bkcolor.html = TEXT
fast/forms/input-appearance-disabled.html = TEXT
fast/forms/input-appearance-focus.html = TEXT
fast/forms/input-appearance-preventDefault.html = TEXT
fast/forms/input-appearance-readonly.html = TEXT
fast/forms/input-appearance-selection.html = TEXT
fast/forms/input-appearance-visibility.html = TEXT
fast/forms/input-baseline.html = TEXT
fast/forms/input-disabled-color.html = TEXT
fast/forms/input-double-click-selection-gap-bug.html = TEXT
fast/forms/input-placeholder-visibility-1.html = TEXT
fast/forms/input-placeholder-visibility-3.html = TEXT
fast/forms/input-readonly-dimmed.html = TEXT
fast/forms/input-readonly-empty.html = TEXT
fast/forms/input-spaces.html = TEXT
fast/forms/input-text-click-inside.html = TEXT
fast/forms/input-text-double-click.html = TEXT
fast/forms/input-text-option-delete.html = TEXT
fast/forms/input-text-self-emptying-click.html = TEXT
fast/forms/input-text-word-wrap.html = TEXT
fast/forms/input-width.html = TEXT
fast/forms/menulist-separator-painting.html = TEXT
fast/forms/number/input-appearance-number-rtl.html = TEXT
fast/forms/number/input-appearance-spinbutton-disabled-readonly.html = TEXT
fast/forms/number/input-appearance-spinbutton-layer.html = TEXT
fast/forms/placeholder-position.html = TEXT
fast/forms/placeholder-pseudo-style.html = TEXT
fast/forms/search-cancel-button-style-sharing.html = TEXT
fast/forms/search-display-none-cancel-button.html = TEXT
fast/forms/search-rtl.html = TEXT
fast/forms/search-vertical-alignment.html = TEXT
fast/forms/select-background-none.html = TEXT
fast/forms/select-baseline.html = TEXT
fast/forms/selectlist-minsize.html = TEXT
fast/forms/text-style-color.html = TEXT
fast/forms/textarea-align.html = TEXT
fast/forms/textarea-placeholder-pseudo-style.html = TEXT
fast/forms/textarea-placeholder-visibility-1.html = TEXT
fast/forms/textarea-placeholder-visibility-2.html = TEXT
fast/forms/textarea-setinnerhtml.html = TEXT
fast/forms/textfield-focus-ring.html = TEXT
fast/forms/textfield-outline.html = TEXT
fast/forms/textfield-overflow.html = TEXT

This patch includes/updates the missing expectations.

  • platform/qt-5.0-wk2/fast/forms/HTMLOptionElement_label06-expected.png:
  • platform/qt-5.0-wk2/fast/forms/HTMLOptionElement_label06-expected.txt:
  • platform/qt-5.0-wk2/fast/forms/HTMLOptionElement_label07-expected.png:
  • platform/qt-5.0-wk2/fast/forms/HTMLOptionElement_label07-expected.txt:
  • platform/qt-5.0-wk2/fast/forms/basic-inputs-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/basic-inputs-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/basic-textareas-quirks-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/basic-textareas-quirks-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/box-shadow-override-expected.png:
  • platform/qt-5.0-wk2/fast/forms/box-shadow-override-expected.txt:
  • platform/qt-5.0-wk2/fast/forms/control-restrict-line-height-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/control-restrict-line-height-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/encoding-test-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/fieldset-align-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/fieldset-align-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/form-element-geometry-expected.png:
  • platform/qt-5.0-wk2/fast/forms/form-element-geometry-expected.txt:
  • platform/qt-5.0-wk2/fast/forms/input-appearance-bkcolor-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/input-appearance-default-bkcolor-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-appearance-default-bkcolor-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/input-appearance-disabled-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-appearance-disabled-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/input-appearance-focus-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-appearance-focus-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/input-appearance-preventDefault-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/input-appearance-readonly-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-appearance-readonly-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/input-appearance-selection-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-appearance-selection-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/input-appearance-visibility-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/input-baseline-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-baseline-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/input-disabled-color-expected.png:
  • platform/qt-5.0-wk2/fast/forms/input-disabled-color-expected.txt:
  • platform/qt-5.0-wk2/fast/forms/input-double-click-selection-gap-bug-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-double-click-selection-gap-bug-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/input-placeholder-visibility-1-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/input-placeholder-visibility-3-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/input-readonly-dimmed-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/input-readonly-empty-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/input-spaces-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/input-text-click-inside-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/input-text-double-click-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/input-text-option-delete-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/input-text-self-emptying-click-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/input-text-word-wrap-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/input-width-expected.txt: Copied from LayoutTests/platform/qt-5.0-wk2/fast/forms/textarea-setinnerhtml-expected.txt.
  • platform/qt-5.0-wk2/fast/forms/menulist-separator-painting-expected.txt:
  • platform/qt-5.0-wk2/fast/forms/number/input-appearance-number-rtl-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/number/input-appearance-number-rtl-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/number/input-appearance-spinbutton-disabled-readonly-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/number/input-appearance-spinbutton-disabled-readonly-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/number/input-appearance-spinbutton-layer-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/number/input-appearance-spinbutton-layer-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/placeholder-position-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/placeholder-position-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/placeholder-pseudo-style-expected.png:
  • platform/qt-5.0-wk2/fast/forms/placeholder-pseudo-style-expected.txt:
  • platform/qt-5.0-wk2/fast/forms/search-cancel-button-style-sharing-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/search-display-none-cancel-button-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/search-rtl-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/search-rtl-expected.txt:
  • platform/qt-5.0-wk2/fast/forms/search-vertical-alignment-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/search-vertical-alignment-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/select-background-none-expected.txt:
  • platform/qt-5.0-wk2/fast/forms/select-baseline-expected.png:
  • platform/qt-5.0-wk2/fast/forms/select-baseline-expected.txt:
  • platform/qt-5.0-wk2/fast/forms/selectlist-minsize-expected.txt:
  • platform/qt-5.0-wk2/fast/forms/text-style-color-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/text-style-color-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/textarea-align-expected.png:
  • platform/qt-5.0-wk2/fast/forms/textarea-align-expected.txt:
  • platform/qt-5.0-wk2/fast/forms/textarea-placeholder-pseudo-style-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/textarea-placeholder-pseudo-style-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/textarea-placeholder-visibility-1-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/textarea-placeholder-visibility-2-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/textarea-setinnerhtml-expected.txt:
  • platform/qt-5.0-wk2/fast/forms/textfield-focus-ring-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/textfield-outline-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/forms/textfield-overflow-expected.txt: Added.
3:35 PM Changeset in webkit [123155] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

[EFL] [WK2] Add a callback to handle delete request in MiniBrowser
https://bugs.webkit.org/show_bug.cgi?id=91483

Patch by Sudarsana Nagineni <sudarsana.nagineni@linux.intel.com> on 2012-07-19
Reviewed by Dirk Pranke.

Add a callback to handle delete request and quit the main loop when
window is asked to be deleted so that all the resources allocated
for the window will be freed properly.

  • MiniBrowser/efl/main.c:

(closeWindow):
(browserCreate):

3:34 PM Changeset in webkit [123154] by commit-queue@webkit.org
  • 31 edits
    1 copy in trunk/Source

[Chromium] Textures drawn during occlusion are incorrectly re-used when unoccluded.
https://bugs.webkit.org/show_bug.cgi?id=91537

Patch by Zeev Lieber <zlieber@chromium.org> on 2012-07-19
Reviewed by Adrienne Walker.

Source/WebCore:

Detecting if any external occlusion occurs when drawing a
texture. If external occlusion happens, the texture is marked as
"incomplete" in LayerRendererChromium, and is not being considered
for re-use.

Minor refactoring of CCQuadCuller - extracted interface
(CCQuadSink) and united append() and appendSurface() methods.

Added unit tests to verify this fix; also added test to try
clipping instead of occlusion.

  • platform/graphics/chromium/LayerRendererChromium.cpp:

(LayerRendererChromium::CachedTexture):
(WebCore::LayerRendererChromium::CachedTexture::create):
(WebCore::LayerRendererChromium::CachedTexture::~CachedTexture):
(WebCore::LayerRendererChromium::CachedTexture::isComplete):
(WebCore::LayerRendererChromium::CachedTexture::setIsComplete):
(WebCore::LayerRendererChromium::CachedTexture::CachedTexture):
(WebCore):
(WebCore::LayerRendererChromium::decideRenderPassAllocationsForFrame):
(WebCore::LayerRendererChromium::haveCachedResourcesForRenderPassId):
(WebCore::LayerRendererChromium::drawRenderPassQuad):

  • platform/graphics/chromium/LayerRendererChromium.h:

(LayerRendererChromium):

  • platform/graphics/chromium/cc/CCIOSurfaceLayerImpl.cpp:

(WebCore::CCIOSurfaceLayerImpl::appendQuads):

  • platform/graphics/chromium/cc/CCIOSurfaceLayerImpl.h:

(CCIOSurfaceLayerImpl):

  • platform/graphics/chromium/cc/CCLayerImpl.cpp:

(WebCore::CCLayerImpl::appendDebugBorderQuad):

  • platform/graphics/chromium/cc/CCLayerImpl.h:

(WebCore):
(WebCore::CCLayerImpl::appendQuads):
(CCLayerImpl):

  • platform/graphics/chromium/cc/CCOcclusionTracker.cpp:

(WebCore::::unoccludedContentRect):
(WebCore::::unoccludedContributingSurfaceContentRect):
(WebCore):

  • platform/graphics/chromium/cc/CCOcclusionTracker.h:

(CCOcclusionTrackerBase):

  • platform/graphics/chromium/cc/CCQuadCuller.cpp:

(WebCore::CCQuadCuller::CCQuadCuller):
(WebCore::CCQuadCuller::append):

  • platform/graphics/chromium/cc/CCQuadCuller.h:

(WebCore):
(CCQuadCuller):
(WebCore::CCQuadCuller::~CCQuadCuller):
(WebCore::CCQuadCuller::hasExternalOcclusion):

  • platform/graphics/chromium/cc/CCQuadSink.h:

(WebKit):
(WebCore):
(CCQuadSink):
(WebCore::CCQuadSink::~CCQuadSink):

  • platform/graphics/chromium/cc/CCRenderPass.cpp:

(WebCore::CCRenderPass::CCRenderPass):
(WebCore::CCRenderPass::appendQuadsForLayer):
(WebCore::CCRenderPass::appendQuadsForRenderSurfaceLayer):

  • platform/graphics/chromium/cc/CCRenderPassDrawQuad.cpp:

(WebCore::CCRenderPassDrawQuad::create):
(WebCore::CCRenderPassDrawQuad::CCRenderPassDrawQuad):

  • platform/graphics/chromium/cc/CCRenderPassDrawQuad.h:

(CCRenderPassDrawQuad):
(WebCore::CCRenderPassDrawQuad::hasExternalOcclusion):

  • platform/graphics/chromium/cc/CCRenderSurface.cpp:

(WebCore::CCRenderSurface::CCRenderSurface):
(WebCore::CCRenderSurface::appendQuads):

  • platform/graphics/chromium/cc/CCRenderSurface.h:

(WebCore):
(WebCore::CCRenderSurface::setHasExternalOcclusion):
(WebCore::CCRenderSurface::hasExternalOcclusion):
(CCRenderSurface):

  • platform/graphics/chromium/cc/CCScrollbarLayerImpl.cpp:

(WebCore::CCScrollbarLayerImpl::appendQuads):

  • platform/graphics/chromium/cc/CCScrollbarLayerImpl.h:

(CCScrollbarLayerImpl):

  • platform/graphics/chromium/cc/CCSolidColorLayerImpl.cpp:

(WebCore::CCSolidColorLayerImpl::appendQuads):

  • platform/graphics/chromium/cc/CCSolidColorLayerImpl.h:

(CCSolidColorLayerImpl):

  • platform/graphics/chromium/cc/CCTextureLayerImpl.cpp:

(WebCore::CCTextureLayerImpl::appendQuads):

  • platform/graphics/chromium/cc/CCTextureLayerImpl.h:

(CCTextureLayerImpl):

  • platform/graphics/chromium/cc/CCTiledLayerImpl.cpp:

(WebCore::CCTiledLayerImpl::appendQuads):

  • platform/graphics/chromium/cc/CCTiledLayerImpl.h:

(CCTiledLayerImpl):

  • platform/graphics/chromium/cc/CCVideoLayerImpl.cpp:

(WebCore::CCVideoLayerImpl::appendQuads):

  • platform/graphics/chromium/cc/CCVideoLayerImpl.h:

(CCVideoLayerImpl):

Source/WebKit/chromium:

Added unit tests to test texture caching with clipping and
occlusion. Removed some minor code duplication when initializing
layers for various scenarios.

MockCCQuadCuller can now implement CCQuadSink.

  • tests/CCLayerTreeHostImplTest.cpp:
  • tests/CCQuadCullerTest.cpp:
  • tests/MockCCQuadCuller.h:

(WebCore::MockCCQuadCuller::MockCCQuadCuller):

3:18 PM Changeset in webkit [123153] by commit-queue@webkit.org
  • 18 edits
    2 deletes in trunk/LayoutTests

[Qt] [Part 6] platform/qt/css1 tests needs update after rebaseline and new testfonts
https://bugs.webkit.org/show_bug.cgi?id=91142

Batch of expected result files reviewed. It comprises
/LayoutTests/platform/qt/css1/text_properties directory

Patch by Luciano Wolf <Luciano Miguel Wolf> on 2012-07-19
Reviewed by Simon Hausmann.

  • platform/qt-5.0-wk1/Skipped:
  • platform/qt-5.0-wk2/Skipped:
  • platform/qt-5.0/css1/text_properties/letter_spacing-expected.txt: Removed.
  • platform/qt-5.0/css1/text_properties/text_transform-expected.txt: Removed.
  • platform/qt/css1/text_properties/letter_spacing-expected.png:
  • platform/qt/css1/text_properties/letter_spacing-expected.txt:
  • platform/qt/css1/text_properties/line_height-expected.png:
  • platform/qt/css1/text_properties/line_height-expected.txt:
  • platform/qt/css1/text_properties/text_align-expected.png:
  • platform/qt/css1/text_properties/text_align-expected.txt:
  • platform/qt/css1/text_properties/text_decoration-expected.png:
  • platform/qt/css1/text_properties/text_decoration-expected.txt:
  • platform/qt/css1/text_properties/text_indent-expected.png:
  • platform/qt/css1/text_properties/text_indent-expected.txt:
  • platform/qt/css1/text_properties/text_transform-expected.png:
  • platform/qt/css1/text_properties/vertical_align-expected.png:
  • platform/qt/css1/text_properties/vertical_align-expected.txt:
  • platform/qt/css1/text_properties/word_spacing-expected.png:
  • platform/qt/css1/text_properties/word_spacing-expected.txt:
3:11 PM Changeset in webkit [123152] by tony@chromium.org
  • 5 edits
    4 deletes in trunk/LayoutTests

[chromium] Unreviewed gardening. Rebaseline some tests after r115846.

  • platform/chromium-mac-snowleopard/fast/repaint/inline-relative-positioned-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/lines-with-layout-delta-expected.png:
  • platform/chromium-mac-snowleopard/fast/repaint/overflow-clip-subtree-layout-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/repaint-resized-overflow-expected.png:
  • platform/chromium-mac-snowleopard/fast/repaint/subtree-layoutstate-transform-expected.png:
  • platform/chromium-mac-snowleopard/fast/repaint/subtree-root-clip-2-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/subtree-root-clip-expected.png: Removed.
  • platform/chromium/TestExpectations:
3:02 PM Changeset in webkit [123151] by Simon Fraser
  • 4 edits
    2 adds in trunk

Keep overlap testing on for descendants of an animating element
https://bugs.webkit.org/show_bug.cgi?id=91787

Reviewed by Beth Dakin.

Source/WebCore:

RenderLayerCompositor::computeCompositingRequirements() would turn off
overlap testing for descendants of a layer that has a 3D transform,
or has an animating transform. This could cause compositing changes
inside an animating element when transitions start and stop, which
is undesirable.

Instead, we can keep overlap testing on for descendants of that
animating element, but we have to turn it off for layers later
in z-order.

Also enhance the "IndirectCompositingReason" flags so that in
the compositing log output, we can distinguish between layers that
were composited as a result of overlap testing from those compositing
for stacking reasons.

Test: compositing/layer-creation/animation-overlap-with-children.html

  • rendering/RenderLayer.h: New IndirectCompositingReason value to

distinguish overlap from stacking.

  • rendering/RenderLayerCompositor.cpp:

(WebCore::RenderLayerCompositor::computeCompositingRequirements):
Use an IndirectCompositingReason enum rather than a bool to track whether
the layer starts as composited.

Remove the if (layer->has3DTransform()
isRunningAcceleratedTransformAnimation(layer->renderer()))

check that turned off overlap testing for descendants of this layer.
Use IndirectCompositingForStacking (somewhat arbitrarily) for reflection layers.
Turn overlap testing off for layers later in the z-order.
(WebCore::RenderLayerCompositor::requiresOwnBackingStore): Take IndirectCompositingForStacking into
account.
(WebCore::RenderLayerCompositor::reasonForCompositing): Improve the logging output.

LayoutTests:

Test with two layers inside an animating container; one should be composited
because of overlap, the other should not be.

  • compositing/layer-creation/animation-overlap-with-children-expected.txt: Added.
  • compositing/layer-creation/animation-overlap-with-children.html: Added.
2:54 PM Changeset in webkit [123150] by noam.rosenthal@nokia.com
  • 9 edits in trunk

[Qt] Enable CSS shaders in Qt (software mode)
https://bugs.webkit.org/show_bug.cgi?id=85140

Reviewed by Simon Hausmann.

Source/WebCore:

Added missing files to the Qt build.

No new tests, WebGL is still disabled by default in the bots.

  • Target.pri:

Source/WebKit/qt:

Enable CSS Shaders in settings when WebGL is enabled.

  • Api/qwebsettings.cpp:

(QWebSettingsPrivate::apply):

Source/WebKit2:

Add CSSCustomFilterEnabled to QWebPreferences. It's disabled by default.

  • UIProcess/API/qt/qwebpreferences.cpp:

(QWebPreferencesPrivate::testAttribute):
(QWebPreferencesPrivate::setAttribute):

  • UIProcess/API/qt/qwebpreferences_p_p.h:

Tools:

Enable CSS_SHADERS when WEBGL and CSS_FILTERS are enabled.

  • qmake/mkspecs/features/features.prf:
2:40 PM Changeset in webkit [123149] by dimich@chromium.org
  • 4 edits in trunk/Source/WebCore

[Chromium] Out of Memory is observed when a large object is passed to a Web Worker.
https://bugs.webkit.org/show_bug.cgi?id=91535.

Reviewed by Dave Levin.

No new tests because of no new behavior and lack of mechanism to monitor used memory.

  • bindings/v8/SerializedScriptValue.cpp:

(WebCore::SerializedScriptValue::SerializedScriptValue):
(WebCore::SerializedScriptValue::registerMemoryAllocatedWithCurrentScriptContext):
(WebCore):
(WebCore::SerializedScriptValue::~SerializedScriptValue):

  • bindings/v8/SerializedScriptValue.h:

(SerializedScriptValue):
Added a method to SerializedScriptValue to add memory pressure on GC proportional to the size of memory allocated in serialized data.

  • dom/MessageEvent.cpp:

(WebCore::MessageEvent::MessageEvent):
(WebCore::MessageEvent::initMessageEvent):
Call the new method of SerializedScriptValue during creation of MessageEvent (presumably in the thread which contains the right V8 context).

1:55 PM Changeset in webkit [123148] by commit-queue@webkit.org
  • 21 edits in trunk/LayoutTests

[Qt] [Part 5] platform/qt/css1 tests needs update after rebaseline and new testfonts
https://bugs.webkit.org/show_bug.cgi?id=91140

Batch of expected result files reviewed. It comprises
/LayoutTests/platform/qt/css1/[pseudo, units] directories

Patch by Luciano Wolf <Luciano Miguel Wolf> on 2012-07-19
Reviewed by Simon Hausmann.

  • platform/qt-5.0-wk1/Skipped:
  • platform/qt-5.0-wk2/Skipped:
  • platform/qt/css1/pseudo/anchor-expected.png:
  • platform/qt/css1/pseudo/anchor-expected.txt:
  • platform/qt/css1/pseudo/firstletter-expected.png:
  • platform/qt/css1/pseudo/firstletter-expected.txt:
  • platform/qt/css1/pseudo/firstline-expected.png:
  • platform/qt/css1/pseudo/firstline-expected.txt:
  • platform/qt/css1/pseudo/multiple_pseudo_elements-expected.png:
  • platform/qt/css1/pseudo/multiple_pseudo_elements-expected.txt:
  • platform/qt/css1/pseudo/pseudo_elements_in_selectors-expected.png:
  • platform/qt/css1/pseudo/pseudo_elements_in_selectors-expected.txt:
  • platform/qt/css1/units/color_units-expected.png:
  • platform/qt/css1/units/color_units-expected.txt:
  • platform/qt/css1/units/length_units-expected.png:
  • platform/qt/css1/units/length_units-expected.txt:
  • platform/qt/css1/units/percentage_units-expected.png:
  • platform/qt/css1/units/percentage_units-expected.txt:
  • platform/qt/css1/units/urls-expected.png:
  • platform/qt/css1/units/urls-expected.txt:
1:53 PM Changeset in webkit [123147] by commit-queue@webkit.org
  • 8 edits in trunk/Source/JavaScriptCore

Bug fixes and enhancements for OfflineASM annotation system.
https://bugs.webkit.org/show_bug.cgi?id=91690

Patch by Mark Lam <mark.lam@apple.com> on 2012-07-19
Reviewed by Filip Pizlo.

  • offlineasm/armv7.rb: added default handling of Instruction lower().
  • offlineasm/asm.rb: added more support for annotations and more pretty printing.
  • offlineasm/ast.rb: added more support for annotations.
  • offlineasm/config.rb: added $preferredCommentStartColumn, simplified $enableInstrAnnotations.
  • offlineasm/parser.rb: added more support for annotations.
  • offlineasm/transform.rb: added more support for annotations.
  • offlineasm/x86.rb: added default handling of Instruction lower().
1:46 PM Changeset in webkit [123146] by mitz@apple.com
  • 4 edits
    2 adds in trunk

In flipped blocks writing modes, no flipping occurs when mapping RenderText’s local coordinates to absolute
https://bugs.webkit.org/show_bug.cgi?id=91780

Reviewed by Anders Carlsson.

Source/WebCore:

Test: fast/writing-mode/flipped-blocks-text-map-local-to-container.html

When RenderObject::mapLocalToContainer() was called on a RenderText with ApplyContainerFlip,
it would not flip (if the container was not a box) but it would always pass
DoNotApplyContainerFlip when recurring to the parent. This meant that no one applied the flip.

  • rendering/RenderInline.cpp:

(WebCore::RenderInline::mapLocalToContainer): Made the setting of applyContainerFlip to
false unconditional on the container actually being flipped.

  • rendering/RenderObject.cpp:

(WebCore::RenderObject::mapLocalToContainer): Rather than always passing
DoNotApplyContainerFlip when recurring to the parent, changed this function to pass through
the value of applyContainerFlip it was called with, unless it applied the flip itself.

LayoutTests:

  • fast/writing-mode/flipped-blocks-text-map-local-to-container-expected.txt: Added.
  • fast/writing-mode/flipped-blocks-text-map-local-to-container.html: Added.
1:34 PM Changeset in webkit [123145] by arv@chromium.org
  • 7 edits
    2 deletes in trunk

Window top should not be replaceable
https://bugs.webkit.org/show_bug.cgi?id=91755

Reviewed by Adam Barth.

Window top is readonly and unforgable and should not be replaceable.

http://www.whatwg.org/specs/web-apps/current-work/multipage/browsers.html#the-window-object

This change brings JSC inline with all other browsers.

Source/WebCore:

No new tests. Modified existing tests.

  • page/DOMWindow.idl:

LayoutTests:

  • fast/dom/Window/get-set-properties-expected.txt:
  • fast/dom/Window/get-set-properties.html:
  • fast/dom/Window/window-property-shadowing-expected.txt:
  • fast/dom/Window/window-property-shadowing.html:
  • platform/chromium/fast/dom/Window/get-set-properties-expected.txt: Removed.
  • platform/chromium/fast/dom/Window/window-property-shadowing-expected.txt: Removed.
1:20 PM Changeset in webkit [123144] by commit-queue@webkit.org
  • 3 edits
    6 adds in trunk/LayoutTests

[Qt] Added/updated missing fast/text results after rebaseline
https://bugs.webkit.org/show_bug.cgi?id=91570

Patch by Bruno de Oliveira Abinader <Bruno de Oliveira Abinader> on 2012-07-19
Reviewed by Noam Rosenthal.

The following tests were failing after r122971:

fast/text/international/unicode-bidi-plaintext-in-textarea.html = TEXT
fast/text/textIteratorNilRenderer.html = TEXT
fast/text/whitespace/030.html = TEXT

This patch includes/updates the missing expectations.

  • platform/qt-5.0-wk2/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.txt: Added.
  • platform/qt-5.0-wk2/fast/text/textIteratorNilRenderer-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/textIteratorNilRenderer-expected.txt: Added.
  • platform/qt-5.0/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.png: Added.
  • platform/qt/fast/text/whitespace/030-expected.png:
  • platform/qt/fast/text/whitespace/030-expected.txt:
1:19 PM Changeset in webkit [123143] by dpranke@chromium.org
  • 2 edits in trunk/Tools

test-webkitpy: fix executive_unittest nits, including a missing 'errno' import
https://bugs.webkit.org/show_bug.cgi?id=91770

Reviewed by Adam Barth.

The missing errno import is causing a flaky failure when run in
parallel on the bots.

  • Scripts/webkitpy/common/system/executive_unittest.py:

(ExecutiveTest.assert_interpreter_for_content):

1:08 PM Changeset in webkit [123142] by zandobersek@gmail.com
  • 2 edits in trunk/LayoutTests

Unreviewed GTK gardening, marking three svg/W3C-SVG-1.1 tests as flaky.

  • platform/gtk/TestExpectations:
1:06 PM Changeset in webkit [123141] by oliver@apple.com
  • 4 edits in trunk/Tools

Make style bot handle underscores in names more reasonably
https://bugs.webkit.org/show_bug.cgi?id=91777

Reviewed by Gavin Barraclough.

This patch adds a naming/readability/underscores category for style errors.
That allows us to use underscores in those portions of JSC (and potentially
gtk?) without turning off all naming checks for the effected directories.
We also filter out the DFG_OPERATION warning, and a few other minor changes
to make the style bot less noisy when running over JSC at least.

  • Scripts/webkitpy/style/checker.py:
  • Scripts/webkitpy/style/checkers/cpp.py:

(check_identifier_name_in_declaration):
(CppChecker):

  • Scripts/webkitpy/style/checkers/cpp_unittest.py:

(WebKitStyleTest.test_names):

12:58 PM Changeset in webkit [123140] by commit-queue@webkit.org
  • 42 edits
    14 adds in trunk/LayoutTests

[Qt] platform/qt/[scrollbars, transforms, transitions] directories need update after rebaseline and new testfonts
https://bugs.webkit.org/show_bug.cgi?id=91271

Batch of expected result files reviewed. It comprises
scrollbars, transforms, transitions directories.

Patch by Luciano Wolf <Luciano Miguel Wolf> on 2012-07-19
Reviewed by Simon Hausmann.

  • platform/qt-5.0-wk1/Skipped:
  • platform/qt-5.0-wk2/Skipped:
  • platform/qt-5.0/Skipped:
  • platform/qt/scrollbars/basic-scrollbar-expected.png: Added.
  • platform/qt/scrollbars/basic-scrollbar-expected.txt:
  • platform/qt/scrollbars/custom-scrollbar-with-incomplete-style-expected.png:
  • platform/qt/scrollbars/custom-scrollbar-with-incomplete-style-expected.txt:
  • platform/qt/scrollbars/disabled-scrollbar-expected.png: Added.
  • platform/qt/scrollbars/disabled-scrollbar-expected.txt:
  • platform/qt/scrollbars/listbox-scrollbar-combinations-expected.png: Added.
  • platform/qt/scrollbars/listbox-scrollbar-combinations-expected.txt:
  • platform/qt/scrollbars/overflow-scrollbar-combinations-expected.png:
  • platform/qt/scrollbars/overflow-scrollbar-combinations-expected.txt:
  • platform/qt/scrollbars/scrollbar-buttons-expected.png: Added.
  • platform/qt/scrollbars/scrollbar-buttons-expected.txt:
  • platform/qt/scrollbars/scrollbar-orientation-expected.png: Added.
  • platform/qt/scrollbars/scrollbar-orientation-expected.txt:
  • platform/qt/scrollbars/scrollbars-on-positioned-content-expected.png:
  • platform/qt/scrollbars/scrollbars-on-positioned-content-expected.txt:
  • platform/qt/transforms/2d/compound-transforms-vs-containers-expected.png:
  • platform/qt/transforms/2d/compound-transforms-vs-containers-expected.txt:
  • platform/qt/transforms/2d/transform-borderbox-expected.png:
  • platform/qt/transforms/2d/transform-borderbox-expected.txt:
  • platform/qt/transforms/2d/transform-fixed-container-expected.png:
  • platform/qt/transforms/2d/transform-fixed-container-expected.txt:
  • platform/qt/transforms/2d/transform-origin-borderbox-expected.png:
  • platform/qt/transforms/2d/transform-origin-borderbox-expected.txt:
  • platform/qt/transforms/2d/zoom-menulist-expected.png:
  • platform/qt/transforms/2d/zoom-menulist-expected.txt:
  • platform/qt/transforms/3d/hit-testing/backface-hit-test-expected.png: Added.
  • platform/qt/transforms/3d/hit-testing/backface-hit-test-expected.txt:
  • platform/qt/transforms/3d/hit-testing/backface-no-transform-hit-test-expected.png: Added.
  • platform/qt/transforms/3d/hit-testing/backface-no-transform-hit-test-expected.txt:
  • platform/qt/transforms/3d/point-mapping/3d-point-mapping-2-expected.png: Added.
  • platform/qt/transforms/3d/point-mapping/3d-point-mapping-2-expected.txt:
  • platform/qt/transforms/3d/point-mapping/3d-point-mapping-3-expected.png: Added.
  • platform/qt/transforms/3d/point-mapping/3d-point-mapping-3-expected.txt:
  • platform/qt/transforms/3d/point-mapping/3d-point-mapping-coplanar-expected.png: Added.
  • platform/qt/transforms/3d/point-mapping/3d-point-mapping-coplanar-expected.txt:
  • platform/qt/transforms/3d/point-mapping/3d-point-mapping-expected.png: Added.
  • platform/qt/transforms/3d/point-mapping/3d-point-mapping-expected.txt:
  • platform/qt/transforms/3d/point-mapping/3d-point-mapping-overlapping-expected.png: Added.
  • platform/qt/transforms/3d/point-mapping/3d-point-mapping-overlapping-expected.txt:
  • platform/qt/transforms/3d/point-mapping/3d-point-mapping-preserve-3d-expected.png: Added.
  • platform/qt/transforms/3d/point-mapping/3d-point-mapping-preserve-3d-expected.txt:
  • platform/qt/transforms/svg-vs-css-expected.png:
  • platform/qt/transforms/svg-vs-css-expected.txt:
  • platform/qt/transitions/cross-fade-background-image-expected.png:
  • platform/qt/transitions/cross-fade-background-image-expected.txt:
  • platform/qt/transitions/cross-fade-border-image-expected.png:
  • platform/qt/transitions/cross-fade-border-image-expected.txt:
  • platform/qt/transitions/move-after-transition-expected.png: Added.
  • platform/qt/transitions/move-after-transition-expected.txt:
  • platform/qt/transitions/svg-text-shadow-transition-expected.png:
  • platform/qt/transitions/svg-text-shadow-transition-expected.txt:
12:54 PM Changeset in webkit [123139] by jer.noble@apple.com
  • 2 edits in trunk/LayoutTests

[WK2] storage/domstorage/storage-close-database-on-idle.html failing on WK2
https://bugs.webkit.org/show_bug.cgi?id=91778

Unreviewed gardening. Add failing test to the mac-wk2 Skipped list.

  • platform/mac-wk2/Skipped:
12:48 PM Changeset in webkit [123138] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

[BlackBerry] Only maintain the hole punch rect while html5 video is being renderered
https://bugs.webkit.org/show_bug.cgi?id=91689

Patch by Max Feil <mfeil@rim.com> on 2012-07-19
Reviewed by Antonio Gomes.

The hole punch rectangle needs to be present if and only if html5
video content is being rendered. Otherwise unwanted content may
show through from behind the browser tab's window.

I am not adding any new tests because the difficulty of testing
for this case outweighs the benefit.

  • platform/graphics/blackberry/MediaPlayerPrivateBlackBerry.cpp:

(WebCore::MediaPlayerPrivate::updateStates):

12:44 PM Changeset in webkit [123137] by robert@webkit.org
  • 2 edits in trunk/LayoutTests

[Qt] Skip tests after r123130

Unreviewed.

Tests added in r123130 fail on Qt. Created bug 91772

  • platform/qt/Skipped:
12:42 PM Changeset in webkit [123136] by jer.noble@apple.com
  • 3 edits in trunk/LayoutTests

Layout Test css3/filters/custom/custom-filter-animation.html is failing
https://bugs.webkit.org/show_bug.cgi?id=91769

Unreviewed gardening. Add this failing test to the Test Expectations, and remove
the custom-filter-shader-cache test from the Skipped list.

  • platform/mac/Skipped:
  • platform/mac/TestExpectations:
12:32 PM Changeset in webkit [123135] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

[CSS Exclusions] - Code cleanup: make shape parsing use isComma() instead of manual checks
https://bugs.webkit.org/show_bug.cgi?id=91760

Patch by Bem Jones-Bey <Bem Jones-Bey> on 2012-07-19
Reviewed by Eric Seidel.

Remove code duplication by making the rectangle, circle, and ellipse
methods use isComma() to detect a comma.

No new tests needed: no new functionality added.

  • css/CSSParser.cpp:

(WebCore::CSSParser::parseExclusionShapeRectangle):
(WebCore::CSSParser::parseExclusionShapeCircle):
(WebCore::CSSParser::parseExclusionShapeEllipse):

12:19 PM Changeset in webkit [123134] by commit-queue@webkit.org
  • 27 edits in trunk/LayoutTests

[Qt] [Part 4] platform/qt/css1 tests needs update after rebaseline and new testfonts
https://bugs.webkit.org/show_bug.cgi?id=91134

Batch of expected result files reviewed. It comprises
/LayoutTests/platform/qt/css1/[font_properties, formatting_model] directories

Patch by Luciano Wolf <Luciano Miguel Wolf> on 2012-07-19
Reviewed by Simon Hausmann.

  • platform/qt-5.0-wk1/Skipped:
  • platform/qt-5.0-wk2/Skipped:
  • platform/qt/css1/font_properties/font-expected.png:
  • platform/qt/css1/font_properties/font-expected.txt:
  • platform/qt/css1/font_properties/font_family-expected.png:
  • platform/qt/css1/font_properties/font_family-expected.txt:
  • platform/qt/css1/font_properties/font_size-expected.png:
  • platform/qt/css1/font_properties/font_size-expected.txt:
  • platform/qt/css1/font_properties/font_style-expected.png:
  • platform/qt/css1/font_properties/font_style-expected.txt:
  • platform/qt/css1/font_properties/font_variant-expected.png:
  • platform/qt/css1/font_properties/font_variant-expected.txt:
  • platform/qt/css1/font_properties/font_weight-expected.png:
  • platform/qt/css1/font_properties/font_weight-expected.txt:
  • platform/qt/css1/formatting_model/canvas-expected.png:
  • platform/qt/css1/formatting_model/canvas-expected.txt:
  • platform/qt/css1/formatting_model/height_of_lines-expected.png:
  • platform/qt/css1/formatting_model/height_of_lines-expected.txt:
  • platform/qt/css1/formatting_model/horizontal_formatting-expected.png:
  • platform/qt/css1/formatting_model/horizontal_formatting-expected.txt:
  • platform/qt/css1/formatting_model/inline_elements-expected.png:
  • platform/qt/css1/formatting_model/inline_elements-expected.txt:
  • platform/qt/css1/formatting_model/replaced_elements-expected.png:
  • platform/qt/css1/formatting_model/replaced_elements-expected.txt:
  • platform/qt/css1/formatting_model/vertical_formatting-expected.png:
  • platform/qt/css1/formatting_model/vertical_formatting-expected.txt:
12:13 PM Changeset in webkit [123133] by dpranke@chromium.org
  • 2 edits in trunk/Tools

config_standalone.py is crashing on apple win's cygwin port
https://bugs.webkit.org/show_bug.cgi?id=91682

Reviewed by Adam Roben.

Work around a weird interaction of ctypes and cygwin that
is causing unit tests to crash for me locally.

  • Scripts/webkitpy/common/system/executive.py:

(Executive._win32_check_running_pid):

12:08 PM Changeset in webkit [123132] by commit-queue@webkit.org
  • 4 edits in trunk/Tools

[GTK] WebKit test runner ignores all system environment variables
https://bugs.webkit.org/show_bug.cgi?id=90284

Patch by Xabier Rodriguez Calvar <calvaris@igalia.com> on 2012-07-19
Reviewed by Dirk Pranke.

Added support in unit test framework to pass a custom environment
variable to the tests by using the --additional-env-var parameter.

  • Scripts/webkitpy/layout_tests/port/base.py:

(Port.to.setup_environ_for_server): Adding environment variables
that come through the additional_env_var option.

  • Scripts/webkitpy/layout_tests/port/base_unittest.py:

(PortTest.test_additional_env_var): Added unit test for the
additional_env_var option

  • Scripts/webkitpy/layout_tests/run_webkit_tests.py:

(parse_args): Added the --additional-env-var parameter.

12:06 PM Changeset in webkit [123131] by commit-queue@webkit.org
  • 3 edits
    2 adds in trunk

Limit maximum delay of DelayNode.
https://bugs.webkit.org/show_bug.cgi?id=91675

Patch by Raymond Toy <Raymond Toy> on 2012-07-19
Reviewed by Kenneth Russell.

Source/WebCore:

Clip the maximum delay of a DelayNode to a reasonable maximum.

Test: webaudio/delaynode-maxdelaylimit.html

  • Modules/webaudio/DelayNode.cpp:

(WebCore): Add maximumAllowedDelayTime.
(WebCore::DelayNode::DelayNode): Clip max delay.

LayoutTests:

Test that a DelayNode limits the specified max delay to the
expected maximum allowed delay.

  • webaudio/delaynode-maxdelaylimit-expected.txt: Added.
  • webaudio/delaynode-maxdelaylimit.html: Added.
11:47 AM Changeset in webkit [123130] by robert@webkit.org
  • 3 edits
    8 adds in trunk

CSS 2.1 failure: text-indent-intrinsic-003 fails
https://bugs.webkit.org/show_bug.cgi?id=80576

Reviewed by Eric Seidel.

Source/WebCore:

Negative values of text-indent should be distributed across inline children until used up.
This fixes text-indent-intrinsic-003 and text-indent-intrinsic-004.

Tests: css2.1/20110323/text-indent-intrinsic-001.htm

css2.1/20110323/text-indent-intrinsic-002.htm
css2.1/20110323/text-indent-intrinsic-003.htm
css2.1/20110323/text-indent-intrinsic-004.htm

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::computeInlinePreferredLogicalWidths): If text-indent is negative, keep

applying it to inline children in the first formatted line until it's reduced to zero. This isn't
a consideration when text-indent is a positive value.

LayoutTests:

  • css2.1/20110323/text-indent-intrinsic-001-expected.html: Added.
  • css2.1/20110323/text-indent-intrinsic-001.htm: Added.
  • css2.1/20110323/text-indent-intrinsic-002-expected.html: Added.
  • css2.1/20110323/text-indent-intrinsic-002.htm: Added.
  • css2.1/20110323/text-indent-intrinsic-003-expected.html: Added.
  • css2.1/20110323/text-indent-intrinsic-003.htm: Added.
  • css2.1/20110323/text-indent-intrinsic-004-expected.html: Added.
  • css2.1/20110323/text-indent-intrinsic-004.htm: Added.
11:42 AM Changeset in webkit [123129] by jpetsovits@rim.com
  • 5 edits in trunk/Source/WebKit/blackberry

[BlackBerry] Allow nested suspend/resume screen & backingstore calls.
https://bugs.webkit.org/show_bug.cgi?id=91644
RIM PR 174365

Reviewed by Adam Treat and Antonio Gomes.

We expose suspendScreenAndBackingStoreUpdates() to the
outside API, but also use it internally when reacting
to a number of happenings, i.e. zooming, viewport resize,
resetting view state on Committed state or when restoring
it from previous pages, etc.

These two can clash. For instance, if we get a suspend
call from outside that suspends us for app inactivity,
or we are told to suspend because the main target surface
is not available at the time, and while being suspended
we try to rotate, finish loading a page, the we'll end up
resuming operations even though we shouldn't.

This patch changes the suspend flag to be a counter
instead, allowing nested suspend/resume calls and making
suspend/resume more robust this way. It also changes
several call sites to make sure suspend/resume calls are
paired up correctly.

  • Api/BackingStore.cpp:

(BlackBerry::WebKit::BackingStorePrivate::BackingStorePrivate):
(BlackBerry::WebKit::BackingStorePrivate::suspendScreenAndBackingStoreUpdates):
(BlackBerry::WebKit::BackingStorePrivate::resumeScreenAndBackingStoreUpdates):

  • Api/BackingStore_p.h:

(BackingStorePrivate):

  • Api/WebPage.cpp:

(BlackBerry::WebKit::WebPagePrivate::shouldZoomAboutPoint):
(BlackBerry::WebKit::WebPagePrivate::zoomAboutPointTimerFired):
(BlackBerry::WebKit::WebPagePrivate::blockZoomRectForNode):

  • WebCoreSupport/FrameLoaderClientBlackBerry.cpp:

(WebCore::FrameLoaderClientBlackBerry::restoreViewState):

11:41 AM Changeset in webkit [123128] by commit-queue@webkit.org
  • 3 edits
    2 adds in trunk

Crash in WebCore::StyleResolver::collectMatchingRulesForList
https://bugs.webkit.org/show_bug.cgi?id=90803

Patch by Douglas Stockwell <dstockwell@google.com> on 2012-07-19
Reviewed by Andreas Kling.

Source/WebCore:

When a ProcessingInstruction was removed from the document the owner
was removed, but the style resolver was not guaranteed to be updated.
It was then possible for an inconsistent version of the stylesheet to
remain visible in the DOM. Fixed by removing an invalid condition and
mirroring the logic from StyleElement.

Test: fast/css/xml-stylesheet-removed.xhtml

  • dom/ProcessingInstruction.cpp:

(WebCore::ProcessingInstruction::removedFrom): Mirror the logic from
StyleElement -- always update the style resolver.

LayoutTests:

  • fast/css/xml-stylesheet-removed-expected.txt: Added.
  • fast/css/xml-stylesheet-removed.xhtml: Added.
11:40 AM Changeset in webkit [123127] by jer.noble@apple.com
  • 2 edits in trunk/LayoutTests

Layout Test css3/filters/custom/custom-filter-shader-cache.html is failing
https://bugs.webkit.org/show_bug.cgi?id=84813

Unreviewed. Add this failing test to the mac Skipped file.

  • platform/mac/Skipped:
11:24 AM Changeset in webkit [123126] by commit-queue@webkit.org
  • 5 edits in trunk

Shape-inside / shape-outside should support percent-based measurements
https://bugs.webkit.org/show_bug.cgi?id=90311

Patch by Bem Jones-Bey <Bem Jones-Bey> on 2012-07-19
Reviewed by Andreas Kling.

Source/WebCore:

Update the CSS Parser to accept percentage length values for exclusion
shapes.

Testing added to LayoutTests/fast/exclusions/parsing-wrap-shape-lengths.html

  • css/CSSParser.cpp:

(WebCore::CSSParser::parseExclusionShapeRectangle):
(WebCore::CSSParser::parseExclusionShapeCircle):
(WebCore::CSSParser::parseExclusionShapeEllipse):
(WebCore::CSSParser::parseExclusionShapePolygon):

LayoutTests:

Added tests for percent based lengths for exclusion shapes.

  • fast/exclusions/parsing-wrap-shape-lengths-expected.txt:
  • fast/exclusions/parsing-wrap-shape-lengths.html:
11:20 AM Changeset in webkit [123125] by Patrick Gansterer
  • 2 edits in trunk/Source/JavaScriptCore

[WIN] Fix compilation of JSGlobalData.h with ENABLE(DFG_JIT)
https://bugs.webkit.org/show_bug.cgi?id=91243

Reviewed by Geoffrey Garen.

Disable MSVC warning 4200 "zero-sized array in struct/union" for JSC::ScratchBuffer.

  • runtime/JSGlobalData.h:

(JSC):

11:16 AM Changeset in webkit [123124] by tony@chromium.org
  • 5 edits in trunk/Source/WebCore

Unreviewed, rolling out r123117.
http://trac.webkit.org/changeset/123117
https://bugs.webkit.org/show_bug.cgi?id=91667

Breaks chromium-win compile.

  • WebCore.gyp/WebCore.gyp:
  • WebCore.gyp/scripts/rule_bison.py:
  • bindings/scripts/preprocessor.pm:

(applyPreprocessor):

  • make-hash-tools.pl:
11:10 AM Changeset in webkit [123123] by abarth@webkit.org
  • 5 edits in trunk/Source/WebKit/chromium

[Chromium] WebView is missing isSelectionEditable and backgroundColor which are used by chromium-android
https://bugs.webkit.org/show_bug.cgi?id=91671

Reviewed by Darin Fisher.

I haven't studied what these APIs are used for downstream, but they
seem harmless enough.

  • public/WebView.h:

(WebView):

  • public/WebWidget.h:

(WebWidget):
(WebKit::WebWidget::backgroundColor):

  • src/WebViewImpl.cpp:

(WebKit::WebViewImpl::isSelectionEditable):
(WebKit):
(WebKit::WebViewImpl::backgroundColor):

  • src/WebViewImpl.h:

(WebViewImpl):

11:05 AM Changeset in webkit [123122] by scherkus@chromium.org
  • 2 edits in trunk/Source/WebKit/chromium

[chromium] Move WebAudioSourceProvider destructor from public to protected
https://bugs.webkit.org/show_bug.cgi?id=91669

Reviewed by Darin Fisher.

The lifetime of a WebAudioSourceProvider is managed by the implementor
and should never be deallocted by WebKit.

  • public/WebAudioSourceProvider.h:

(WebAudioSourceProvider):

11:04 AM Changeset in webkit [123121] by simonjam@chromium.org
  • 5 edits
    2 adds in trunk

Regression(120096): Protect the element used by ImageLoader until the end of notifyFinished().
https://bugs.webkit.org/show_bug.cgi?id=90471

Reviewed by Brady Eidson.

Source/WebCore:

Test: http/tests/security/video-poster-cross-origin-crash.html

  • html/HTMLImageLoader.cpp:

(WebCore::HTMLImageLoader::notifyFinished): Hang on to the element until we're done.

  • loader/ImageLoader.cpp:

(WebCore::ImageLoader::setImage): No behavior change.
(WebCore):
(WebCore::ImageLoader::setImageWithoutConsideringPendingLoadEvent): Split off from old setImage, minus calling updatedHasPendingLoadEvent().
(WebCore::ImageLoader::notifyFinished): Invoke updatedHasPendingLoadEvent when done with cross origin errors.

  • loader/ImageLoader.h:

(ImageLoader):

LayoutTests:

  • http/tests/security/video-poster-cross-origin-crash-expected.txt: Added.
  • http/tests/security/video-poster-cross-origin-crash.html: Added. From fuzzer.
10:30 AM WebKitIDL edited by arv@chromium.org
(diff)
10:17 AM Changeset in webkit [123120] by tony@chromium.org
  • 3 edits in trunk/Source/WebKit/chromium

Unreviewed, rolling out r123036.
http://trac.webkit.org/changeset/123036
https://bugs.webkit.org/show_bug.cgi?id=91555

Triggers some DCHECKs in Chromium browser_tests

  • public/WebTextInputType.h:
  • src/WebViewImpl.cpp:

(WebKit::WebViewImpl::textInputType):

10:14 AM Changeset in webkit [123119] by caio.oliveira@openbossa.org
  • 4 edits in trunk/LayoutTests

[Qt] platform/qt/editing/execCommand tests needs update after rebaseline and new testfonts (37)
https://bugs.webkit.org/show_bug.cgi?id=91246

Reviewed by Ryosuke Niwa.

Removing left-over skipped tests.

  • platform/qt-5.0-wk1/Skipped:
  • platform/qt-5.0/Skipped:
  • platform/qt/Skipped:
9:57 AM Changeset in webkit [123118] by commit-queue@webkit.org
  • 19 edits in trunk/LayoutTests

[Qt] [Part 3] platform/qt/css1 tests needs update after rebaseline and new testfonts
https://bugs.webkit.org/show_bug.cgi?id=91132

Batch of expected result files reviewed. It comprises
/LayoutTests/platform/qt/css1/[color_and_background, conformance] directories

Patch by Luciano Wolf <Luciano Miguel Wolf> on 2012-07-19
Reviewed by Simon Hausmann.

  • platform/qt-5.0-wk1/Skipped:
  • platform/qt-5.0-wk2/Skipped:
  • platform/qt/css1/color_and_background/background-expected.png:
  • platform/qt/css1/color_and_background/background-expected.txt:
  • platform/qt/css1/color_and_background/background_attachment-expected.png:
  • platform/qt/css1/color_and_background/background_attachment-expected.txt:
  • platform/qt/css1/color_and_background/background_color-expected.png:
  • platform/qt/css1/color_and_background/background_color-expected.txt:
  • platform/qt/css1/color_and_background/background_image-expected.png:
  • platform/qt/css1/color_and_background/background_image-expected.txt:
  • platform/qt/css1/color_and_background/background_position-expected.png:
  • platform/qt/css1/color_and_background/background_position-expected.txt:
  • platform/qt/css1/color_and_background/background_repeat-expected.png:
  • platform/qt/css1/color_and_background/background_repeat-expected.txt:
  • platform/qt/css1/color_and_background/color-expected.png:
  • platform/qt/css1/color_and_background/color-expected.txt:
  • platform/qt/css1/conformance/forward_compatible_parsing-expected.png:
  • platform/qt/css1/conformance/forward_compatible_parsing-expected.txt:
9:56 AM Changeset in webkit [123117] by commit-queue@webkit.org
  • 5 edits in trunk/Source/WebCore

Use native (non-cygwin) binaries for perl, gperf, and bison in Chromium
https://bugs.webkit.org/show_bug.cgi?id=91667

Patch by Scott Graham <scottmg@chromium.org> on 2012-07-19
Reviewed by Kentaro Hara.

Using native tools instead of cygwin version improves build time
performance by roughly 50% (on top of previous cl-instead-of-gcc
change).

No new tests.

  • WebCore.gyp/WebCore.gyp:
  • WebCore.gyp/scripts/rule_bison.py:
  • bindings/scripts/preprocessor.pm:

(applyPreprocessor):

  • make-hash-tools.pl:
9:54 AM Changeset in webkit [123116] by zandobersek@gmail.com
  • 2 edits in trunk/LayoutTests

Unreviewed GTK gardening.

Use the WONTFIX modifier for failing tests that the GTK port is not able to pass
due to unsupportable features or specific nature of the tests. The WONTFIX tests
are placed at the top of the 'Expected failures' section in the TestExpectations
file.

For starters the list contains the harness test for reftests mismatch, the tests
that utilize the modal dialog (which won't be supported in WebKit1) and various
V8 and Mac-specific tests

  • platform/gtk/TestExpectations:
9:51 AM Changeset in webkit [123115] by tony@chromium.org
  • 1 edit
    2 adds in trunk/LayoutTests

Unreviewed gardening. Update chromium-mac results after r123053.

  • platform/chromium-mac/fast/inline/002-expected.txt: Added.
  • platform/chromium-mac/fast/table/table-display-types-strict-expected.txt: Added.
9:46 AM Changeset in webkit [123114] by tony@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed gardening. Update chromium expectations after r123067.

  • platform/chromium/TestExpectations:
9:44 AM Changeset in webkit [123113] by caseq@chromium.org
  • 2 edits in trunk/Source/WebCore

Web Inspector: CPU bars are not cleared along with the rest of the timeline panel
https://bugs.webkit.org/show_bug.cgi?id=91753

Reviewed by Pavel Feldman.

  • remove early bail-outs in refreshMainThreadBars; let it run to clear bars for the non-existent / invisible events;
  • inspector/front-end/TimelinePanel.js:

(WebInspector.TimelinePanel.prototype._refreshMainThreadBars):

9:37 AM Changeset in webkit [123112] by jsbell@chromium.org
  • 22 edits in trunk

IndexedDB: Throw native TypeErrors per spec
https://bugs.webkit.org/show_bug.cgi?id=91679

Reviewed by Kentaro Hara.

Source/WebCore:

Per the IDB spec, the advance(), openCursor(), openKeyCursor() and transaction()
methods supposed to throw true native JavaScript TypeError objects as exceptions
rather than DOMException objects. Implement this by adding a special DOMException
code that is tested for in the binding layer.

Tests: storage/indexeddb/cursor-advance.html

storage/indexeddb/index-basics.html
storage/indexeddb/index-basics-workers.html
storage/indexeddb/objectstore-cursor.html
storage/indexeddb/transaction-basics.html

  • Modules/indexeddb/IDBCursor.cpp: Use the new DOMException code.

(WebCore::IDBCursor::advance):
(WebCore::IDBCursor::stringToDirection):
(WebCore::IDBCursor::directionToString):

  • Modules/indexeddb/IDBDatabase.cpp: Ditto.

(WebCore::IDBDatabase::setVersion):

  • Modules/indexeddb/IDBDatabaseException.cpp: Remove temporary cruft/mark as legacy.

(WebCore):

  • Modules/indexeddb/IDBDatabaseException.h: Ditto.
  • Modules/indexeddb/IDBDatabaseException.idl: Ditto.
  • Modules/indexeddb/IDBFactory.cpp: Use the new DOMException code.

(WebCore::IDBFactory::open):
(WebCore::IDBFactory::deleteDatabase):

  • Modules/indexeddb/IDBObjectStore.cpp:

(WebCore::IDBObjectStore::createIndex): Use the new DOMException code.

  • Modules/indexeddb/IDBTransaction.cpp: Use the new DOMException code.

(WebCore::IDBTransaction::stringToMode):
(WebCore::IDBTransaction::modeToString):

  • bindings/js/JSDOMBinding.cpp:

(WebCore::setDOMException): Intercept new DOMException code, throw native TypeError.

  • bindings/v8/V8Proxy.cpp:

(WebCore::V8Proxy::setDOMException): Ditto.

  • dom/ExceptionCode.h: Add new DOMException code.

LayoutTests:

  • storage/indexeddb/cursor-advance-expected.txt:
  • storage/indexeddb/index-basics-expected.txt:
  • storage/indexeddb/index-basics-workers-expected.txt:
  • storage/indexeddb/objectstore-cursor-expected.txt:
  • storage/indexeddb/resources/cursor-advance.js:

(testBadAdvance.advanceBadly):
(testBadAdvance):

  • storage/indexeddb/resources/index-basics.js:

(openKeyCursor):
(openObjectCursor):

  • storage/indexeddb/resources/objectstore-cursor.js:

(deleteExisting):

  • storage/indexeddb/resources/transaction-basics.js:

(testInvalidMode):

  • storage/indexeddb/transaction-basics-expected.txt:
9:28 AM Changeset in webkit [123111] by tony@chromium.org
  • 1 edit
    2 adds in trunk/LayoutTests

Unreviewed gardening. Update chromium results for shrink-to-column-height-for-pagination.html after 123051.

  • platform/chromium-win/fast/multicol/shrink-to-column-height-for-pagination-expected.png: Added.
  • platform/chromium/fast/multicol/shrink-to-column-height-for-pagination-expected.txt: Added.
9:24 AM Changeset in webkit [123110] by jsbell@chromium.org
  • 13 edits
    2 adds
    3 deletes in trunk

Roll out r121610 and r122487 which may have been causing flaky crashes
https://bugs.webkit.org/show_bug.cgi?id=91637

Reviewed by Kentaro Hara.

Flaky crashes started in random tests following r121610. It's not clear
that r121610 is to blame, but we'd like to prove or disprove it.
If this doesn't resolve the crashes, this patch should be rolled out.

Source/WebCore:

  • WebCore.gypi:
  • bindings/v8/NPObjectWrapper.cpp: Added.

(WebCore):
(NPProxyObject):
(WebCore::NPObjectWrapper::NPObjectWrapper):
(WebCore::NPObjectWrapper::create):
(WebCore::NPObjectWrapper::clear):
(WebCore::NPObjectWrapper::getWrapper):
(WebCore::NPObjectWrapper::getUnderlyingNPObject):
(WebCore::NPObjectWrapper::getObjectForCall):
(WebCore::NPObjectWrapper::NPAllocate):
(WebCore::NPObjectWrapper::NPDeallocate):
(WebCore::NPObjectWrapper::NPPInvalidate):
(WebCore::NPObjectWrapper::NPHasMethod):
(WebCore::NPObjectWrapper::NPInvoke):
(WebCore::NPObjectWrapper::NPInvokeDefault):
(WebCore::NPObjectWrapper::NPHasProperty):
(WebCore::NPObjectWrapper::NPGetProperty):
(WebCore::NPObjectWrapper::NPSetProperty):
(WebCore::NPObjectWrapper::NPRemoveProperty):
(WebCore::NPObjectWrapper::NPNEnumerate):
(WebCore::NPObjectWrapper::NPNConstruct):
(WebCore::NPObjectWrapper::NPInvokePrivate):

  • bindings/v8/NPObjectWrapper.h: Added.

(WebCore):
(NPObjectWrapper):

  • bindings/v8/NPV8Object.cpp:

(WebCore::freeV8NPObject):
(_NPN_Invoke):
(_NPN_InvokeDefault):
(_NPN_EvaluateHelper):
(_NPN_GetProperty):
(_NPN_SetProperty):
(_NPN_RemoveProperty):
(_NPN_HasProperty):
(_NPN_HasMethod):
(_NPN_Enumerate):
(_NPN_Construct):

  • bindings/v8/NPV8Object.h:

(WebCore):

  • bindings/v8/ScriptController.cpp:

(WebCore::ScriptController::ScriptController):
(WebCore::ScriptController::clearScriptObjects):
(WebCore::ScriptController::windowScriptNPObject):

  • bindings/v8/ScriptController.h:

(ScriptController):

Source/WebKit/chromium:

  • src/WebBindings.cpp:

(WebKit::getRangeImpl):
(WebKit::getElementImpl):
(WebKit::getArrayBufferImpl):
(WebKit::getArrayBufferViewImpl):
(WebKit::WebBindings::toV8Value):

Tools:

  • DumpRenderTree/DumpRenderTree.gypi:
  • DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp:
  • DumpRenderTree/TestNetscapePlugIn/PluginTest.h:

(PluginTest):

  • DumpRenderTree/TestNetscapePlugIn/Tests/LeakWindowScriptableObject.cpp: Removed.

LayoutTests:

  • plugins/npruntime/leak-window-scriptable-object-expected.txt: Removed.
  • plugins/npruntime/leak-window-scriptable-object.html: Removed.
9:17 AM Changeset in webkit [123109] by jsbell@chromium.org
  • 2 edits in trunk/LayoutTests

[chromium] Unreviewed gardening, fix malfomed BUG markers in TestExpectations

  • platform/chromium/TestExpectations:
9:12 AM Changeset in webkit [123108] by caseq@chromium.org
  • 2 edits in trunk/Source/WebCore

Web Inspector: minimize number of properties on WebInspector.TimelinePresentationModel.Record
https://bugs.webkit.org/show_bug.cgi?id=91744

Reviewed by Pavel Feldman.

  • replace most properties on TimelinePresentationModel.Record with getters;

This reduces the amount of memory we use for timeline presentation model records almost by 2x.

  • inspector/front-end/TimelinePresentationModel.js:

(WebInspector.TimelinePresentationModel.Record):
(WebInspector.TimelinePresentationModel.Record.prototype.get children):
(WebInspector.TimelinePresentationModel.Record.prototype.get category):
(WebInspector.TimelinePresentationModel.Record.prototype.get title):
(WebInspector.TimelinePresentationModel.Record.prototype.get startTime):
(WebInspector.TimelinePresentationModel.Record.prototype.get data):
(WebInspector.TimelinePresentationModel.Record.prototype.get type):
(WebInspector.TimelinePresentationModel.Record.prototype.get frameId):
(WebInspector.TimelinePresentationModel.Record.prototype.get endTime):
(WebInspector.TimelinePresentationModel.Record.prototype.get totalHeapSize):
(WebInspector.TimelinePresentationModel.Record.prototype.get usedHeapSize):
(WebInspector.TimelinePresentationModel.Record.prototype.get _selfTime):
(WebInspector.TimelinePresentationModel.Record.prototype.get stackTrace):
(WebInspector.TimelinePresentationModel.Record.prototype.generatePopupContent):
(WebInspector.TimelinePresentationModel.Record.prototype.calculateAggregatedStats):

8:45 AM Changeset in webkit [123107] by commit-queue@webkit.org
  • 3 edits in trunk/Source/JavaScriptCore

Fixed broken ENABLE_JIT=0 build.
https://bugs.webkit.org/show_bug.cgi?id=91725

Patch by Mark Lam <mark.lam@apple.com> on 2012-07-19
Reviewed by Oliver Hunt.

  • bytecode/Watchpoint.cpp:
  • heap/JITStubRoutineSet.h:

(JSC):
(JITStubRoutineSet):
(JSC::JITStubRoutineSet::JITStubRoutineSet):
(JSC::JITStubRoutineSet::~JITStubRoutineSet):
(JSC::JITStubRoutineSet::add):
(JSC::JITStubRoutineSet::clearMarks):
(JSC::JITStubRoutineSet::mark):
(JSC::JITStubRoutineSet::deleteUnmarkedJettisonedStubRoutines):
(JSC::JITStubRoutineSet::traceMarkedStubRoutines):

8:31 AM Changeset in webkit [123106] by zandobersek@gmail.com
  • 1 edit
    2 adds in trunk/LayoutTests

Unreviewed GTK gardening, adding missing baseline required after r122761.

  • platform/gtk/fast/multicol/shrink-to-column-height-for-pagination-expected.png: Added.
  • platform/gtk/fast/multicol/shrink-to-column-height-for-pagination-expected.txt: Added.
8:06 AM Changeset in webkit [123105] by commit-queue@webkit.org
  • 33 edits in trunk/LayoutTests

[Qt] [Part 2] platform/qt/css1 tests needs update after rebaseline and new testfonts
https://bugs.webkit.org/show_bug.cgi?id=91026

Batch of expected result files reviewed. It comprises
/LayoutTests/platform/qt/css1/[basic, cascade, classification] directories

Patch by Luciano Wolf <Luciano Miguel Wolf> on 2012-07-19
Reviewed by Simon Hausmann.

  • platform/qt-5.0-wk1/Skipped:
  • platform/qt-5.0-wk2/Skipped:
  • platform/qt/css1/basic/class_as_selector-expected.png:
  • platform/qt/css1/basic/class_as_selector-expected.txt:
  • platform/qt/css1/basic/comments-expected.png:
  • platform/qt/css1/basic/comments-expected.txt:
  • platform/qt/css1/basic/containment-expected.png:
  • platform/qt/css1/basic/containment-expected.txt:
  • platform/qt/css1/basic/contextual_selectors-expected.png:
  • platform/qt/css1/basic/contextual_selectors-expected.txt:
  • platform/qt/css1/basic/grouping-expected.png:
  • platform/qt/css1/basic/grouping-expected.txt:
  • platform/qt/css1/basic/id_as_selector-expected.png:
  • platform/qt/css1/basic/id_as_selector-expected.txt:
  • platform/qt/css1/basic/inheritance-expected.png:
  • platform/qt/css1/basic/inheritance-expected.txt:
  • platform/qt/css1/cascade/cascade_order-expected.png:
  • platform/qt/css1/cascade/cascade_order-expected.txt:
  • platform/qt/css1/cascade/important-expected.png:
  • platform/qt/css1/cascade/important-expected.txt:
  • platform/qt/css1/classification/display-expected.png:
  • platform/qt/css1/classification/display-expected.txt:
  • platform/qt/css1/classification/list_style-expected.png:
  • platform/qt/css1/classification/list_style-expected.txt:
  • platform/qt/css1/classification/list_style_image-expected.png:
  • platform/qt/css1/classification/list_style_image-expected.txt:
  • platform/qt/css1/classification/list_style_position-expected.png:
  • platform/qt/css1/classification/list_style_position-expected.txt:
  • platform/qt/css1/classification/list_style_type-expected.png:
  • platform/qt/css1/classification/list_style_type-expected.txt:
  • platform/qt/css1/classification/white_space-expected.png:
  • platform/qt/css1/classification/white_space-expected.txt:
8:03 AM Changeset in webkit [123104] by kkristof@inf.u-szeged.hu
  • 540 edits in trunk/LayoutTests

[Qt] platform/qt/svg/W3C-SVG-* tests needs update after rebaseline and new testfonts
https://bugs.webkit.org/show_bug.cgi?id=91092

Unreviewed rebaseline.

Patch by Balazs Ankes <bank@inf.u-szeged.hu> on 2012-07-19

  • platform/qt-5.0/Skipped:
  • platform/qt/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1-SE/filters-image-05-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1-SE/filters-image-05-f-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1-SE/struct-dom-11-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1-SE/struct-dom-11-f-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1-SE/struct-use-11-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1-SE/struct-use-11-f-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1-SE/styling-css-04-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1-SE/styling-css-04-f-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-02-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-02-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-03-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-03-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-04-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-04-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-05-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-05-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-06-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-06-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-07-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-07-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-08-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-08-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-09-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-09-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-10-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-10-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-11-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-11-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-12-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-12-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-13-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-13-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-14-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-14-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-15-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-15-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-16-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-16-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-17-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-17-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-18-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-18-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-19-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-19-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-20-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-20-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-21-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-21-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-22-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-22-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-23-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-23-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-24-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-25-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-25-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-26-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-26-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-27-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-27-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-28-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-28-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-29-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-29-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-30-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-30-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-31-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-31-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-32-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-32-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-33-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-33-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-34-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-34-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-36-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-37-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-37-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-39-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-39-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-40-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-40-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-41-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-41-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-44-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-44-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-46-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-46-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-52-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-52-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-60-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-60-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-61-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-61-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-62-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-62-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-63-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-63-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-64-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-64-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-65-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-65-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-66-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-66-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-67-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-67-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-68-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-68-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-69-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-69-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-70-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-70-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-77-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-77-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-78-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-78-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-81-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-81-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-82-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-82-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-83-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-83-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-84-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-84-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-85-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/animate-elem-85-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/color-prof-01-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/color-prof-01-f-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/color-prop-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/color-prop-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/color-prop-02-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/color-prop-02-f-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/color-prop-03-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/color-prop-03-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/coords-coord-01-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/coords-coord-01-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/coords-coord-02-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/coords-coord-02-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/coords-trans-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/coords-trans-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/coords-trans-02-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/coords-trans-02-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/coords-trans-03-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/coords-trans-03-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/coords-trans-04-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/coords-trans-04-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/coords-trans-05-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/coords-trans-05-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/coords-trans-06-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/coords-trans-06-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/coords-units-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/coords-units-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/coords-units-02-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/coords-units-02-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/coords-units-03-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/coords-units-03-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/extend-namespace-01-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/extend-namespace-01-f-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/filters-blend-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/filters-blend-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/filters-color-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/filters-color-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/filters-composite-02-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/filters-composite-02-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/filters-comptran-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/filters-comptran-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/filters-conv-01-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/filters-conv-01-f-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/filters-diffuse-01-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/filters-diffuse-01-f-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/filters-displace-01-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/filters-displace-01-f-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/filters-example-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/filters-example-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/filters-felem-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/filters-felem-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/filters-gauss-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/filters-gauss-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/filters-light-01-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/filters-light-01-f-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/filters-light-04-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/filters-light-04-f-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/filters-morph-01-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/filters-morph-01-f-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/filters-specular-01-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/filters-specular-01-f-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/filters-tile-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/filters-tile-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/filters-turb-01-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/filters-turb-01-f-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/fonts-elem-01-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/fonts-elem-01-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/fonts-elem-02-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/fonts-elem-02-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/fonts-elem-03-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/fonts-elem-03-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/fonts-elem-04-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/fonts-elem-04-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/fonts-elem-05-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/fonts-elem-05-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/fonts-elem-06-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/fonts-elem-06-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/fonts-elem-07-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/fonts-elem-07-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/fonts-glyph-03-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/fonts-glyph-03-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/interact-cursor-01-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/interact-cursor-01-f-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/interact-dom-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/interact-dom-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/interact-events-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/interact-events-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/interact-order-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/interact-order-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/interact-order-02-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/interact-order-02-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/interact-order-03-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/interact-order-03-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/interact-zoom-01-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/interact-zoom-01-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/linking-a-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/linking-a-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/linking-a-02-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/linking-a-02-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/linking-a-03-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/linking-a-03-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/linking-a-04-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/linking-a-04-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/linking-a-05-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/linking-a-05-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/linking-a-07-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/linking-a-07-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/linking-uri-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/linking-uri-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/linking-uri-02-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/linking-uri-02-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/linking-uri-03-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/linking-uri-03-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/masking-intro-01-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/masking-intro-01-f-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/masking-mask-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/masking-mask-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/masking-opacity-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/masking-opacity-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/masking-path-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/masking-path-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/masking-path-02-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/masking-path-02-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/masking-path-03-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/masking-path-03-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/masking-path-04-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/masking-path-04-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/masking-path-05-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/masking-path-05-f-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/painting-fill-01-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/painting-fill-01-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/painting-fill-02-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/painting-fill-02-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/painting-fill-03-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/painting-fill-03-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/painting-fill-04-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/painting-fill-04-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/painting-fill-05-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/painting-fill-05-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/painting-marker-01-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/painting-marker-01-f-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/painting-marker-02-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/painting-marker-02-f-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/painting-marker-03-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/painting-marker-03-f-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/painting-render-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/painting-render-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/painting-stroke-01-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/painting-stroke-01-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/painting-stroke-02-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/painting-stroke-02-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/painting-stroke-03-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/painting-stroke-03-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/painting-stroke-04-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/painting-stroke-04-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/painting-stroke-07-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/painting-stroke-07-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/paths-data-01-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/paths-data-01-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/paths-data-02-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/paths-data-02-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/paths-data-04-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/paths-data-04-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/paths-data-05-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/paths-data-05-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/paths-data-06-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/paths-data-06-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/paths-data-07-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/paths-data-07-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/paths-data-08-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/paths-data-08-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/paths-data-09-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/paths-data-09-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/paths-data-12-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/paths-data-12-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/paths-data-13-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/paths-data-13-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/paths-data-14-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/paths-data-14-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/paths-data-15-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/paths-data-15-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-02-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-02-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-03-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-03-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-04-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-04-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-05-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-05-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-07-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-07-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-09-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-09-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-10-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-10-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-11-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-11-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-12-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-12-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-13-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-13-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-14-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-14-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-15-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-15-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-16-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-16-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-17-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-17-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-18-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-18-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-19-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/pservers-grad-19-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/pservers-pattern-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/pservers-pattern-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/render-elems-01-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/render-elems-01-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/render-elems-02-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/render-elems-02-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/render-elems-03-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/render-elems-03-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/render-elems-06-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/render-elems-06-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/render-elems-07-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/render-elems-07-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/render-elems-08-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/render-elems-08-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/render-groups-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/render-groups-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/render-groups-03-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/render-groups-03-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/script-handle-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/script-handle-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/script-handle-02-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/script-handle-02-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/script-handle-03-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/script-handle-03-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/script-handle-04-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/script-handle-04-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/shapes-circle-01-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/shapes-circle-01-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/shapes-circle-02-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/shapes-circle-02-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/shapes-ellipse-01-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/shapes-ellipse-01-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/shapes-ellipse-02-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/shapes-ellipse-02-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/shapes-intro-01-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/shapes-intro-01-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/shapes-line-01-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/shapes-line-01-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/shapes-polygon-01-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/shapes-polygon-01-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/shapes-rect-01-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/shapes-rect-01-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/shapes-rect-02-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/shapes-rect-02-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-cond-01-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-cond-01-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-cond-03-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-cond-03-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-defs-01-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-defs-01-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-dom-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-dom-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-dom-02-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-dom-02-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-dom-03-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-dom-03-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-dom-04-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-dom-04-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-dom-05-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-dom-05-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-dom-06-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-dom-06-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-frag-02-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-frag-02-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-frag-03-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-frag-03-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-frag-04-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-frag-04-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-frag-05-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-frag-05-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-frag-06-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-frag-06-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-group-01-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-group-01-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-group-02-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-group-02-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-group-03-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-group-03-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-image-01-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-image-01-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-image-02-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-image-02-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-image-03-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-image-03-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-image-04-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-image-04-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-image-05-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-image-05-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-image-07-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-image-07-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-image-08-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-image-08-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-image-09-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-image-09-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-image-10-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-image-10-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-symbol-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-symbol-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-use-01-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-use-01-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-use-03-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-use-03-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/struct-use-05-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/struct-use-05-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/styling-css-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/styling-css-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/styling-css-02-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/styling-css-02-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/styling-css-03-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/styling-css-03-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/styling-css-04-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/styling-css-04-f-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/styling-css-05-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/styling-css-05-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/styling-css-06-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/styling-css-06-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/styling-inherit-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/styling-inherit-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/styling-pres-01-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/styling-pres-01-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-align-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-align-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-align-02-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-align-02-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-align-03-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-align-03-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-align-04-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-align-04-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-align-05-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-align-05-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-align-06-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-align-06-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-align-08-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-align-08-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-altglyph-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-altglyph-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-deco-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-deco-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-fonts-02-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-fonts-02-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-fonts-03-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-fonts-03-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-intro-01-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-intro-01-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-intro-02-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-intro-02-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-intro-03-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-intro-03-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-intro-04-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-intro-04-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-path-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-path-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-spacing-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-spacing-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-text-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-text-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-text-03-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-text-03-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-text-04-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-text-04-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-text-05-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-text-05-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-text-06-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-text-06-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-text-07-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-text-07-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-text-08-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-text-08-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-tref-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-tref-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-tselect-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-tselect-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-tspan-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-tspan-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-ws-01-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-ws-01-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/text-ws-02-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/text-ws-02-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.1/types-basicDOM-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/types-basicDOM-01-b-expected.txt:
  • platform/qt/svg/W3C-SVG-1.2-Tiny/struct-use-recursion-01-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.2-Tiny/struct-use-recursion-01-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.2-Tiny/struct-use-recursion-02-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.2-Tiny/struct-use-recursion-02-t-expected.txt:
  • platform/qt/svg/W3C-SVG-1.2-Tiny/struct-use-recursion-03-t-expected.png:
  • platform/qt/svg/W3C-SVG-1.2-Tiny/struct-use-recursion-03-t-expected.txt:
7:59 AM Changeset in webkit [123103] by pierre.rossi@gmail.com
  • 4 edits in trunk

[Qt][WK2] Map the elementRect exposed in QML to the view for popup menu
https://bugs.webkit.org/show_bug.cgi?id=91645

Reviewed by Simon Hausmann.

Source/WebKit2:

This way the geometry of the QML item is still sensible even if we panned
and zoomed.

  • UIProcess/qt/WebPopupMenuProxyQt.cpp:

(ItemSelectorContextObject):
(WebKit::ItemSelectorContextObject::elementRect):
(WebKit::ItemSelectorContextObject::ItemSelectorContextObject):
(WebKit::WebPopupMenuProxyQt::showPopupMenu):

Tools:

Also improved the logic slightly for edge cases.

  • MiniBrowser/qt/qml/ItemSelector.qml:
7:51 AM Changeset in webkit [123102] by commit-queue@webkit.org
  • 4 edits in trunk

[EFL] Bump libsoup dependency to v2.39.4.1 to fix cookie issues
https://bugs.webkit.org/show_bug.cgi?id=91741

Patch by Christophe Dumez <Christophe Dumez> on 2012-07-19
Reviewed by Kenneth Rohde Christiansen.

.:

Bump libsoup dependency in CMake to v2.39.4.1 to fix issues
with cookies in non-suffixed/private domains [GNOME #679230].

  • Source/cmake/OptionsEfl.cmake:

Tools:

Bump libsoup dependency in jhbuild to v2.39.4.1 to fix issues
with cookies in non-suffixed/private domains [GNOME #679230].

  • efl/jhbuild.modules:
7:44 AM Changeset in webkit [123101] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/chromium

[chromium] Remove duplicate mock CCLayerTreeHostClient
https://bugs.webkit.org/show_bug.cgi?id=89457

Patch by Sami Kyostila <skyostil@chromium.org> on 2012-07-19
Reviewed by Adrienne Walker.

This test can reuse the existing CCFakeLayerTreeHostClient.

  • tests/GraphicsLayerChromiumTest.cpp:

(WebKitTests::MockLayerTreeHost::create):

7:15 AM Changeset in webkit [123100] by kkristof@inf.u-szeged.hu
  • 590 edits
    34 copies
    150 adds in trunk/LayoutTests

[Qt] from platform/qt/fast/dynamic to platform/qt/fast/multicol tests needs update after new testfonts
https://bugs.webkit.org/show_bug.cgi?id=91739

Unreviewed rebaseline.

Patch by Balazs Ankes <bank@inf.u-szeged.hu> on 2012-07-19

  • platform/qt-5.0-wk1/Skipped:
  • platform/qt-5.0-wk2/Skipped:
  • platform/qt-5.0/Skipped:
  • platform/qt/fast/dynamic/002-expected.png:
  • platform/qt/fast/dynamic/002-expected.txt:
  • platform/qt/fast/dynamic/004-expected.png:
  • platform/qt/fast/dynamic/004-expected.txt:
  • platform/qt/fast/dynamic/006-expected.png:
  • platform/qt/fast/dynamic/006-expected.txt:
  • platform/qt/fast/dynamic/007-expected.png:
  • platform/qt/fast/dynamic/007-expected.txt:
  • platform/qt/fast/dynamic/008-expected.png:
  • platform/qt/fast/dynamic/008-expected.txt:
  • platform/qt/fast/dynamic/009-expected.png:
  • platform/qt/fast/dynamic/009-expected.txt:
  • platform/qt/fast/dynamic/011-expected.png:
  • platform/qt/fast/dynamic/011-expected.txt:
  • platform/qt/fast/dynamic/012-expected.png:
  • platform/qt/fast/dynamic/012-expected.txt:
  • platform/qt/fast/dynamic/013-expected.png:
  • platform/qt/fast/dynamic/013-expected.txt:
  • platform/qt/fast/dynamic/014-expected.png:
  • platform/qt/fast/dynamic/014-expected.txt:
  • platform/qt/fast/dynamic/015-expected.png:
  • platform/qt/fast/dynamic/015-expected.txt:
  • platform/qt/fast/dynamic/anchor-lock-expected.png:
  • platform/qt/fast/dynamic/anchor-lock-expected.txt:
  • platform/qt/fast/dynamic/anonymous-block-orphaned-lines-expected.png:
  • platform/qt/fast/dynamic/anonymous-block-orphaned-lines-expected.txt:
  • platform/qt/fast/dynamic/containing-block-change-expected.png:
  • platform/qt/fast/dynamic/containing-block-change-expected.txt:
  • platform/qt/fast/dynamic/create-renderer-for-whitespace-only-text-expected.png:
  • platform/qt/fast/dynamic/create-renderer-for-whitespace-only-text-expected.txt:
  • platform/qt/fast/dynamic/float-in-trailing-whitespace-after-last-line-break-expected.png:
  • platform/qt/fast/dynamic/float-in-trailing-whitespace-after-last-line-break-expected.txt:
  • platform/qt/fast/dynamic/float-withdrawal-expected.png:
  • platform/qt/fast/dynamic/float-withdrawal-expected.txt:
  • platform/qt/fast/dynamic/insert-before-table-part-in-continuation-expected.png:
  • platform/qt/fast/dynamic/insert-before-table-part-in-continuation-expected.txt:
  • platform/qt/fast/dynamic/layer-hit-test-crash-expected.png:
  • platform/qt/fast/dynamic/layer-hit-test-crash-expected.txt:
  • platform/qt/fast/dynamic/link-href-change-expected.png:
  • platform/qt/fast/dynamic/link-href-change-expected.txt:
  • platform/qt/fast/dynamic/noninlinebadness-expected.png:
  • platform/qt/fast/dynamic/noninlinebadness-expected.txt:
  • platform/qt/fast/dynamic/outerHTML-doc-expected.png:
  • platform/qt/fast/dynamic/outerHTML-doc-expected.txt:
  • platform/qt/fast/dynamic/outerHTML-img-expected.png:
  • platform/qt/fast/dynamic/outerHTML-img-expected.txt:
  • platform/qt/fast/dynamic/selection-highlight-adjust-expected.png:
  • platform/qt/fast/dynamic/selection-highlight-adjust-expected.txt:
  • platform/qt/fast/dynamic/staticY-marking-parents-regression-expected.png:
  • platform/qt/fast/dynamic/staticY-marking-parents-regression-expected.txt:
  • platform/qt/fast/dynamic/view-overflow-expected.png:
  • platform/qt/fast/dynamic/view-overflow-expected.txt:
  • platform/qt/fast/dynamic/window-resize-scrollbars-test-expected.png:
  • platform/qt/fast/dynamic/window-resize-scrollbars-test-expected.txt:
  • platform/qt/fast/dynamic/window-scrollbars-test-expected.png: Copied from LayoutTests/platform/qt/fast/html/details-remove-summary-6-and-click-expected.png.
  • platform/qt/fast/dynamic/window-scrollbars-test-expected.txt:
  • platform/qt/fast/encoding/utf-16-big-endian-expected.png:
  • platform/qt/fast/encoding/utf-16-big-endian-expected.txt:
  • platform/qt/fast/encoding/utf-16-little-endian-expected.png:
  • platform/qt/fast/encoding/utf-16-little-endian-expected.txt:
  • platform/qt/fast/events/context-no-deselect-expected.png:
  • platform/qt/fast/events/context-no-deselect-expected.txt:
  • platform/qt/fast/events/event-listener-on-link-expected.png: Added.
  • platform/qt/fast/events/event-listener-on-link-expected.txt:
  • platform/qt/fast/events/pointer-events-2-expected.png: Added.
  • platform/qt/fast/events/pointer-events-2-expected.txt:
  • platform/qt/fast/events/resize-events-expected.png:
  • platform/qt/fast/events/resize-events-expected.txt:
  • platform/qt/fast/events/reveal-link-when-focused-expected.png:
  • platform/qt/fast/events/reveal-link-when-focused-expected.txt:
  • platform/qt/fast/fast-mobile-scrolling/fixed-position-element-expected.png: Added.
  • platform/qt/fast/fast-mobile-scrolling/fixed-position-element-expected.txt:
  • platform/qt/fast/fast-mobile-scrolling/no-fixed-position-elements-expected.png: Added.
  • platform/qt/fast/fast-mobile-scrolling/no-fixed-position-elements-expected.txt:
  • platform/qt/fast/flexbox/001-expected.png: Added.
  • platform/qt/fast/flexbox/001-expected.txt:
  • platform/qt/fast/flexbox/002-expected.png:
  • platform/qt/fast/flexbox/002-expected.txt:
  • platform/qt/fast/flexbox/003-expected.png:
  • platform/qt/fast/flexbox/003-expected.txt:
  • platform/qt/fast/flexbox/004-expected.png: Added.
  • platform/qt/fast/flexbox/004-expected.txt:
  • platform/qt/fast/flexbox/005-expected.png: Added.
  • platform/qt/fast/flexbox/005-expected.txt:
  • platform/qt/fast/flexbox/006-expected.png: Added.
  • platform/qt/fast/flexbox/006-expected.txt:
  • platform/qt/fast/flexbox/007-expected.png: Added.
  • platform/qt/fast/flexbox/007-expected.txt:
  • platform/qt/fast/flexbox/008-expected.png: Added.
  • platform/qt/fast/flexbox/008-expected.txt:
  • platform/qt/fast/flexbox/009-expected.png: Added.
  • platform/qt/fast/flexbox/009-expected.txt:
  • platform/qt/fast/flexbox/010-expected.png: Added.
  • platform/qt/fast/flexbox/010-expected.txt:
  • platform/qt/fast/flexbox/011-expected.png: Added.
  • platform/qt/fast/flexbox/011-expected.txt:
  • platform/qt/fast/flexbox/012-expected.png: Added.
  • platform/qt/fast/flexbox/012-expected.txt:
  • platform/qt/fast/flexbox/013-expected.png: Added.
  • platform/qt/fast/flexbox/013-expected.txt:
  • platform/qt/fast/flexbox/014-expected.png: Added.
  • platform/qt/fast/flexbox/014-expected.txt:
  • platform/qt/fast/flexbox/015-expected.png: Added.
  • platform/qt/fast/flexbox/015-expected.txt:
  • platform/qt/fast/flexbox/016-expected.png: Added.
  • platform/qt/fast/flexbox/016-expected.txt:
  • platform/qt/fast/flexbox/017-expected.png: Added.
  • platform/qt/fast/flexbox/017-expected.txt:
  • platform/qt/fast/flexbox/018-expected.png: Added.
  • platform/qt/fast/flexbox/018-expected.txt:
  • platform/qt/fast/flexbox/019-expected.png: Added.
  • platform/qt/fast/flexbox/019-expected.txt:
  • platform/qt/fast/flexbox/020-expected.png: Added.
  • platform/qt/fast/flexbox/020-expected.txt:
  • platform/qt/fast/flexbox/021-expected.png: Added.
  • platform/qt/fast/flexbox/021-expected.txt:
  • platform/qt/fast/flexbox/022-expected.png: Added.
  • platform/qt/fast/flexbox/022-expected.txt:
  • platform/qt/fast/flexbox/023-expected.png:
  • platform/qt/fast/flexbox/023-expected.txt:
  • platform/qt/fast/flexbox/024-expected.png:
  • platform/qt/fast/flexbox/024-expected.txt:
  • platform/qt/fast/flexbox/025-expected.png: Added.
  • platform/qt/fast/flexbox/025-expected.txt:
  • platform/qt/fast/flexbox/026-expected.png: Added.
  • platform/qt/fast/flexbox/026-expected.txt:
  • platform/qt/fast/frames/flattening/frameset-flattening-advanced-expected.png:
  • platform/qt/fast/frames/flattening/frameset-flattening-advanced-expected.txt:
  • platform/qt/fast/frames/flattening/frameset-flattening-grid-expected.png:
  • platform/qt/fast/frames/flattening/frameset-flattening-grid-expected.txt:
  • platform/qt/fast/frames/flattening/frameset-flattening-simple-expected.png:
  • platform/qt/fast/frames/flattening/frameset-flattening-simple-expected.txt:
  • platform/qt/fast/frames/flattening/frameset-flattening-subframe-resize-expected.png:
  • platform/qt/fast/frames/flattening/frameset-flattening-subframe-resize-expected.txt:
  • platform/qt/fast/frames/flattening/frameset-flattening-subframesets-expected.png:
  • platform/qt/fast/frames/flattening/frameset-flattening-subframesets-expected.txt:
  • platform/qt/fast/frames/flattening/iframe-flattening-fixed-height-expected.png: Added.
  • platform/qt/fast/frames/flattening/iframe-flattening-fixed-height-expected.txt:
  • platform/qt/fast/frames/flattening/iframe-flattening-fixed-width-and-height-expected.png: Added.
  • platform/qt/fast/frames/flattening/iframe-flattening-fixed-width-and-height-expected.txt:
  • platform/qt/fast/frames/flattening/iframe-flattening-fixed-width-and-height-no-scrolling-expected.png: Added.
  • platform/qt/fast/frames/flattening/iframe-flattening-fixed-width-and-height-no-scrolling-expected.txt:
  • platform/qt/fast/frames/flattening/iframe-flattening-fixed-width-expected.png: Added.
  • platform/qt/fast/frames/flattening/iframe-flattening-fixed-width-expected.txt:
  • platform/qt/fast/frames/flattening/iframe-flattening-nested-expected.png:
  • platform/qt/fast/frames/flattening/iframe-flattening-nested-expected.txt:
  • platform/qt/fast/frames/flattening/iframe-flattening-offscreen-expected.png: Added.
  • platform/qt/fast/frames/flattening/iframe-flattening-offscreen-expected.txt:
  • platform/qt/fast/frames/flattening/iframe-flattening-out-of-view-and-scroll-expected.png:
  • platform/qt/fast/frames/flattening/iframe-flattening-out-of-view-and-scroll-expected.txt:
  • platform/qt/fast/frames/flattening/iframe-flattening-out-of-view-expected.png:
  • platform/qt/fast/frames/flattening/iframe-flattening-out-of-view-expected.txt:
  • platform/qt/fast/frames/flattening/iframe-flattening-out-of-view-scroll-and-relayout-expected.png:
  • platform/qt/fast/frames/flattening/iframe-flattening-out-of-view-scroll-and-relayout-expected.txt:
  • platform/qt/fast/frames/flattening/iframe-flattening-simple-expected.png: Added.
  • platform/qt/fast/frames/flattening/iframe-flattening-simple-expected.txt:
  • platform/qt/fast/frames/frame-navigation-expected.png:
  • platform/qt/fast/frames/frame-navigation-expected.txt:
  • platform/qt/fast/frames/frame-scrolling-attribute-expected.png:
  • platform/qt/fast/frames/frame-scrolling-attribute-expected.txt:
  • platform/qt/fast/frames/frameElement-frame-expected.png: Copied from LayoutTests/platform/qt/fast/html/details-remove-summary-2-and-click-expected.png.
  • platform/qt/fast/frames/frameElement-frame-expected.txt:
  • platform/qt/fast/frames/frameElement-iframe-expected.png: Added.
  • platform/qt/fast/frames/frameElement-iframe-expected.txt:
  • platform/qt/fast/frames/frameset-style-recalc-expected.png: Added.
  • platform/qt/fast/frames/frameset-style-recalc-expected.txt:
  • platform/qt/fast/frames/iframe-option-crash-expected.png: Added.
  • platform/qt/fast/frames/iframe-option-crash-expected.txt:
  • platform/qt/fast/frames/iframe-scrolling-attribute-expected.png:
  • platform/qt/fast/frames/iframe-scrolling-attribute-expected.txt:
  • platform/qt/fast/frames/iframe-with-frameborder-expected.png: Added.
  • platform/qt/fast/frames/iframe-with-frameborder-expected.txt:
  • platform/qt/fast/frames/inline-object-inside-frameset-expected.png: Added.
  • platform/qt/fast/frames/inline-object-inside-frameset-expected.txt:
  • platform/qt/fast/frames/take-focus-from-iframe-expected.png:
  • platform/qt/fast/frames/take-focus-from-iframe-expected.txt:
  • platform/qt/fast/frames/viewsource-attribute-expected.png:
  • platform/qt/fast/frames/viewsource-attribute-expected.txt:
  • platform/qt/fast/frames/viewsource-on-image-file-expected.png:
  • platform/qt/fast/frames/viewsource-on-image-file-expected.txt:
  • platform/qt/fast/gradients/crash-on-zero-radius-expected.png: Added.
  • platform/qt/fast/gradients/crash-on-zero-radius-expected.txt:
  • platform/qt/fast/gradients/list-item-gradient-expected.png: Added.
  • platform/qt/fast/gradients/list-item-gradient-expected.txt:
  • platform/qt/fast/gradients/radial-centered-expected.png:
  • platform/qt/fast/gradients/radial-centered-expected.txt:
  • platform/qt/fast/history/visited-link-background-color-expected.png:
  • platform/qt/fast/history/visited-link-background-color-expected.txt:
  • platform/qt/fast/html/details-add-child-1-expected.png:
  • platform/qt/fast/html/details-add-child-1-expected.txt:
  • platform/qt/fast/html/details-add-child-2-expected.png:
  • platform/qt/fast/html/details-add-child-2-expected.txt:
  • platform/qt/fast/html/details-add-details-child-1-expected.png:
  • platform/qt/fast/html/details-add-details-child-1-expected.txt:
  • platform/qt/fast/html/details-add-details-child-2-expected.png:
  • platform/qt/fast/html/details-add-details-child-2-expected.txt:
  • platform/qt/fast/html/details-add-summary-1-and-click-expected.png:
  • platform/qt/fast/html/details-add-summary-1-and-click-expected.txt:
  • platform/qt/fast/html/details-add-summary-10-and-click-expected.png:
  • platform/qt/fast/html/details-add-summary-10-and-click-expected.txt:
  • platform/qt/fast/html/details-add-summary-2-and-click-expected.png:
  • platform/qt/fast/html/details-add-summary-2-and-click-expected.txt:
  • platform/qt/fast/html/details-add-summary-3-and-click-expected.png:
  • platform/qt/fast/html/details-add-summary-3-and-click-expected.txt:
  • platform/qt/fast/html/details-add-summary-4-and-click-expected.png:
  • platform/qt/fast/html/details-add-summary-4-and-click-expected.txt:
  • platform/qt/fast/html/details-add-summary-5-and-click-expected.png:
  • platform/qt/fast/html/details-add-summary-5-and-click-expected.txt:
  • platform/qt/fast/html/details-add-summary-6-and-click-expected.png:
  • platform/qt/fast/html/details-add-summary-6-and-click-expected.txt:
  • platform/qt/fast/html/details-add-summary-7-and-click-expected.png:
  • platform/qt/fast/html/details-add-summary-7-and-click-expected.txt:
  • platform/qt/fast/html/details-add-summary-8-and-click-expected.png:
  • platform/qt/fast/html/details-add-summary-8-and-click-expected.txt:
  • platform/qt/fast/html/details-add-summary-9-and-click-expected.png:
  • platform/qt/fast/html/details-add-summary-9-and-click-expected.txt:
  • platform/qt/fast/html/details-add-summary-child-1-expected.png:
  • platform/qt/fast/html/details-add-summary-child-1-expected.txt:
  • platform/qt/fast/html/details-add-summary-child-2-expected.png:
  • platform/qt/fast/html/details-add-summary-child-2-expected.txt:
  • platform/qt/fast/html/details-marker-style-expected.png:
  • platform/qt/fast/html/details-marker-style-expected.txt:
  • platform/qt/fast/html/details-nested-1-expected.png:
  • platform/qt/fast/html/details-nested-1-expected.txt:
  • platform/qt/fast/html/details-nested-2-expected.png:
  • platform/qt/fast/html/details-nested-2-expected.txt:
  • platform/qt/fast/html/details-no-summary4-expected.png:
  • platform/qt/fast/html/details-no-summary4-expected.txt:
  • platform/qt/fast/html/details-open-javascript-expected.png:
  • platform/qt/fast/html/details-open-javascript-expected.txt:
  • platform/qt/fast/html/details-open2-expected.png:
  • platform/qt/fast/html/details-open2-expected.txt:
  • platform/qt/fast/html/details-open4-expected.png:
  • platform/qt/fast/html/details-open4-expected.txt:
  • platform/qt/fast/html/details-position-expected.png:
  • platform/qt/fast/html/details-position-expected.txt:
  • platform/qt/fast/html/details-remove-child-1-expected.png:
  • platform/qt/fast/html/details-remove-child-1-expected.txt:
  • platform/qt/fast/html/details-remove-child-2-expected.png:
  • platform/qt/fast/html/details-remove-child-2-expected.txt:
  • platform/qt/fast/html/details-remove-summary-1-and-click-expected.png:
  • platform/qt/fast/html/details-remove-summary-1-and-click-expected.txt:
  • platform/qt/fast/html/details-remove-summary-2-and-click-expected.png:
  • platform/qt/fast/html/details-remove-summary-2-and-click-expected.txt:
  • platform/qt/fast/html/details-remove-summary-3-and-click-expected.png:
  • platform/qt/fast/html/details-remove-summary-3-and-click-expected.txt:
  • platform/qt/fast/html/details-remove-summary-4-and-click-expected.png:
  • platform/qt/fast/html/details-remove-summary-4-and-click-expected.txt:
  • platform/qt/fast/html/details-remove-summary-5-and-click-expected.png:
  • platform/qt/fast/html/details-remove-summary-5-and-click-expected.txt:
  • platform/qt/fast/html/details-remove-summary-6-and-click-expected.png:
  • platform/qt/fast/html/details-remove-summary-6-and-click-expected.txt:
  • platform/qt/fast/html/details-remove-summary-child-1-expected.png:
  • platform/qt/fast/html/details-remove-summary-child-1-expected.txt:
  • platform/qt/fast/html/details-remove-summary-child-2-expected.png:
  • platform/qt/fast/html/details-remove-summary-child-2-expected.txt:
  • platform/qt/fast/html/details-replace-summary-child-expected.png:
  • platform/qt/fast/html/details-replace-summary-child-expected.txt:
  • platform/qt/fast/html/details-replace-text-expected.png:
  • platform/qt/fast/html/details-replace-text-expected.txt:
  • platform/qt/fast/html/details-writing-mode-expected.png:
  • platform/qt/fast/html/details-writing-mode-expected.txt:
  • platform/qt/fast/html/font-weight-bold-for-b-and-strong-expected.png:
  • platform/qt/fast/html/font-weight-bold-for-b-and-strong-expected.txt:
  • platform/qt/fast/html/link-rel-stylesheet-expected.png: Added.
  • platform/qt/fast/html/link-rel-stylesheet-expected.txt:
  • platform/qt/fast/html/listing-expected.png:
  • platform/qt/fast/html/listing-expected.txt:
  • platform/qt/fast/html/marquee-scroll-expected.png: Added.
  • platform/qt/fast/html/marquee-scroll-expected.txt:
  • platform/qt/fast/html/marquee-scrollamount-expected.png:
  • platform/qt/fast/html/marquee-scrollamount-expected.txt:
  • platform/qt/fast/images/animated-gif-with-offsets-expected.png: Added.
  • platform/qt/fast/images/animated-gif-with-offsets-expected.txt:
  • platform/qt/fast/images/image-map-anchor-children-expected.png: Added.
  • platform/qt/fast/images/image-map-anchor-children-expected.txt:
  • platform/qt/fast/images/imagemap-case-expected.png: Added.
  • platform/qt/fast/images/imagemap-case-expected.txt:
  • platform/qt/fast/images/imagemap-circle-focus-ring-expected.png:
  • platform/qt/fast/images/imagemap-circle-focus-ring-expected.txt:
  • platform/qt/fast/images/imagemap-focus-ring-expected.png:
  • platform/qt/fast/images/imagemap-focus-ring-expected.txt:
  • platform/qt/fast/images/imagemap-focus-ring-outline-color-expected.png:
  • platform/qt/fast/images/imagemap-focus-ring-outline-color-expected.txt:
  • platform/qt/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.png:
  • platform/qt/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.txt:
  • platform/qt/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.png:
  • platform/qt/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.txt:
  • platform/qt/fast/images/imagemap-focus-ring-zero-outline-width-expected.png:
  • platform/qt/fast/images/imagemap-focus-ring-zero-outline-width-expected.txt:
  • platform/qt/fast/images/imagemap-focus-ring-zoom-expected.png:
  • platform/qt/fast/images/imagemap-focus-ring-zoom-expected.txt:
  • platform/qt/fast/images/imagemap-polygon-focus-ring-expected.png:
  • platform/qt/fast/images/imagemap-polygon-focus-ring-expected.txt:
  • platform/qt/fast/inline-block/001-expected.png:
  • platform/qt/fast/inline-block/001-expected.txt:
  • platform/qt/fast/inline-block/002-expected.png: Added.
  • platform/qt/fast/inline-block/002-expected.txt:
  • platform/qt/fast/inline-block/003-expected.png: Added.
  • platform/qt/fast/inline-block/003-expected.txt:
  • platform/qt/fast/inline-block/006-expected.png: Added.
  • platform/qt/fast/inline-block/006-expected.txt:
  • platform/qt/fast/inline-block/14498-positionForCoordinates-expected.png: Added.
  • platform/qt/fast/inline-block/14498-positionForCoordinates-expected.txt:
  • platform/qt/fast/inline-block/contenteditable-baseline-expected.png: Added.
  • platform/qt/fast/inline-block/contenteditable-baseline-expected.txt:
  • platform/qt/fast/inline-block/inline-block-vertical-align-expected.png: Copied from LayoutTests/platform/qt/fast/html/details-remove-summary-3-and-click-expected.png.
  • platform/qt/fast/inline-block/inline-block-vertical-align-expected.txt:
  • platform/qt/fast/inline-block/overflow-clip-expected.png: Added.
  • platform/qt/fast/inline-block/overflow-clip-expected.txt:
  • platform/qt/fast/inline-block/tricky-baseline-expected.png: Added.
  • platform/qt/fast/inline-block/tricky-baseline-expected.txt:
  • platform/qt/fast/inline/001-expected.png: Copied from LayoutTests/platform/qt/fast/html/details-remove-summary-1-and-click-expected.png.
  • platform/qt/fast/inline/001-expected.txt:
  • platform/qt/fast/inline/25277-2-expected.png: Added.
  • platform/qt/fast/inline/25277-2-expected.txt:
  • platform/qt/fast/inline/25277-expected.png: Added.
  • platform/qt/fast/inline/25277-expected.txt:
  • platform/qt/fast/inline/absolute-positioned-inline-in-centred-block-expected.png:
  • platform/qt/fast/inline/absolute-positioned-inline-in-centred-block-expected.txt:
  • platform/qt/fast/inline/br-text-decoration-expected.png: Added.
  • platform/qt/fast/inline/br-text-decoration-expected.txt:
  • platform/qt/fast/inline/continuation-outlines-expected.png:
  • platform/qt/fast/inline/continuation-outlines-expected.txt:
  • platform/qt/fast/inline/continuation-outlines-with-layers-2-expected.png:
  • platform/qt/fast/inline/continuation-outlines-with-layers-2-expected.txt:
  • platform/qt/fast/inline/drawStyledEmptyInlines-expected.png: Added.
  • platform/qt/fast/inline/drawStyledEmptyInlines-expected.txt:
  • platform/qt/fast/inline/drawStyledEmptyInlinesWithWS-expected.png:
  • platform/qt/fast/inline/drawStyledEmptyInlinesWithWS-expected.txt:
  • platform/qt/fast/inline/emptyInlinesWithinLists-expected.png: Added.
  • platform/qt/fast/inline/emptyInlinesWithinLists-expected.txt:
  • platform/qt/fast/inline/inline-borders-with-bidi-override-expected.png:
  • platform/qt/fast/inline/inline-borders-with-bidi-override-expected.txt:
  • platform/qt/fast/inline/inline-continuation-borders-expected.png: Added.
  • platform/qt/fast/inline/inline-continuation-borders-expected.txt:
  • platform/qt/fast/inline/inline-focus-ring-expected.png:
  • platform/qt/fast/inline/inline-focus-ring-expected.txt:
  • platform/qt/fast/inline/inline-padding-disables-text-quirk-expected.png: Added.
  • platform/qt/fast/inline/inline-padding-disables-text-quirk-expected.txt:
  • platform/qt/fast/inline/inline-text-quirk-bpm-expected.png: Added.
  • platform/qt/fast/inline/inline-text-quirk-bpm-expected.txt:
  • platform/qt/fast/inline/inline-wrap-with-parent-padding-expected.png:
  • platform/qt/fast/inline/inline-wrap-with-parent-padding-expected.txt:
  • platform/qt/fast/inline/left-right-center-inline-alignment-in-ltr-and-rtl-blocks-expected.png: Added.
  • platform/qt/fast/inline/left-right-center-inline-alignment-in-ltr-and-rtl-blocks-expected.txt:
  • platform/qt/fast/inline/long-wrapped-line-expected.png: Added.
  • platform/qt/fast/inline/long-wrapped-line-expected.txt:
  • platform/qt/fast/inline/nested-top-alignment-expected.png:
  • platform/qt/fast/inline/nested-top-alignment-expected.txt:
  • platform/qt/fast/inline/outline-continuations-expected.png: Copied from LayoutTests/platform/qt/fast/html/details-add-summary-1-and-click-expected.png.
  • platform/qt/fast/inline/outline-continuations-expected.txt:
  • platform/qt/fast/inline/percentage-margins-expected.png: Added.
  • platform/qt/fast/inline/percentage-margins-expected.txt:
  • platform/qt/fast/inline/styledEmptyInlinesWithBRs-expected.png: Added.
  • platform/qt/fast/inline/styledEmptyInlinesWithBRs-expected.txt:
  • platform/qt/fast/inline/vertical-align-text-bottom-expected.png:
  • platform/qt/fast/inline/vertical-align-text-bottom-expected.txt:
  • platform/qt/fast/innerHTML/001-expected.png: Added.
  • platform/qt/fast/innerHTML/001-expected.txt:
  • platform/qt/fast/innerHTML/002-expected.png: Added.
  • platform/qt/fast/innerHTML/002-expected.txt:
  • platform/qt/fast/innerHTML/003-expected.png: Added.
  • platform/qt/fast/innerHTML/003-expected.txt:
  • platform/qt/fast/innerHTML/006-expected.png:
  • platform/qt/fast/innerHTML/006-expected.txt:
  • platform/qt/fast/inspector-support/matchedrules-expected.png: Added.
  • platform/qt/fast/inspector-support/matchedrules-expected.txt:
  • platform/qt/fast/invalid/001-expected.png: Added.
  • platform/qt/fast/invalid/001-expected.txt:
  • platform/qt/fast/invalid/002-expected.png: Added.
  • platform/qt/fast/invalid/002-expected.txt:
  • platform/qt/fast/invalid/003-expected.png: Added.
  • platform/qt/fast/invalid/003-expected.txt:
  • platform/qt/fast/invalid/004-expected.png: Added.
  • platform/qt/fast/invalid/004-expected.txt:
  • platform/qt/fast/invalid/006-expected.png: Added.
  • platform/qt/fast/invalid/006-expected.txt:
  • platform/qt/fast/invalid/008-expected.png:
  • platform/qt/fast/invalid/008-expected.txt:
  • platform/qt/fast/invalid/009-expected.png: Added.
  • platform/qt/fast/invalid/009-expected.txt:
  • platform/qt/fast/invalid/010-expected.png: Added.
  • platform/qt/fast/invalid/010-expected.txt:
  • platform/qt/fast/invalid/011-expected.png: Added.
  • platform/qt/fast/invalid/011-expected.txt:
  • platform/qt/fast/invalid/012-expected.png: Added.
  • platform/qt/fast/invalid/012-expected.txt:
  • platform/qt/fast/invalid/013-expected.png: Added.
  • platform/qt/fast/invalid/013-expected.txt:
  • platform/qt/fast/invalid/014-expected.png: Added.
  • platform/qt/fast/invalid/014-expected.txt:
  • platform/qt/fast/invalid/016-expected.png:
  • platform/qt/fast/invalid/016-expected.txt:
  • platform/qt/fast/invalid/017-expected.png:
  • platform/qt/fast/invalid/017-expected.txt:
  • platform/qt/fast/invalid/018-expected.png:
  • platform/qt/fast/invalid/018-expected.txt:
  • platform/qt/fast/invalid/019-expected.png:
  • platform/qt/fast/invalid/019-expected.txt:
  • platform/qt/fast/invalid/021-expected.png: Added.
  • platform/qt/fast/invalid/021-expected.txt:
  • platform/qt/fast/invalid/missing-address-end-tag-expected.png: Added.
  • platform/qt/fast/invalid/missing-address-end-tag-expected.txt:
  • platform/qt/fast/invalid/missing-dl-end-tag-expected.png: Added.
  • platform/qt/fast/invalid/missing-dl-end-tag-expected.txt:
  • platform/qt/fast/invalid/missing-dt-end-tag-expected.png: Added.
  • platform/qt/fast/invalid/missing-dt-end-tag-expected.txt:
  • platform/qt/fast/invalid/missing-font-end-tag-expected.png: Added.
  • platform/qt/fast/invalid/missing-font-end-tag-expected.txt:
  • platform/qt/fast/invalid/nestedh3s-expected.png: Added.
  • platform/qt/fast/invalid/nestedh3s-expected.txt:
  • platform/qt/fast/invalid/table-inside-stray-table-content-expected.png:
  • platform/qt/fast/invalid/table-inside-stray-table-content-expected.txt:
  • platform/qt/fast/invalid/td-inside-object-expected.png: Added.
  • platform/qt/fast/invalid/td-inside-object-expected.txt:
  • platform/qt/fast/layers/inline-dirty-z-order-lists-expected.png:
  • platform/qt/fast/layers/inline-dirty-z-order-lists-expected.txt:
  • platform/qt/fast/layers/layer-visibility-expected.png: Added.
  • platform/qt/fast/layers/layer-visibility-expected.txt:
  • platform/qt/fast/layers/layer-visibility-sublayer-expected.png: Added.
  • platform/qt/fast/layers/layer-visibility-sublayer-expected.txt:
  • platform/qt/fast/layers/normal-flow-hit-test-expected.png: Added.
  • platform/qt/fast/layers/normal-flow-hit-test-expected.txt:
  • platform/qt/fast/layers/opacity-outline-expected.png: Added.
  • platform/qt/fast/layers/opacity-outline-expected.txt:
  • platform/qt/fast/layers/opacity-transforms-expected.png: Added.
  • platform/qt/fast/layers/opacity-transforms-expected.txt:
  • platform/qt/fast/layers/overflow-scroll-auto-switch-expected.png: Added.
  • platform/qt/fast/layers/overflow-scroll-auto-switch-expected.txt:
  • platform/qt/fast/layers/remove-layer-with-nested-stacking-expected.png:
  • platform/qt/fast/layers/remove-layer-with-nested-stacking-expected.txt:
  • platform/qt/fast/layers/remove-only-this-layer-update-expected.png: Added.
  • platform/qt/fast/layers/remove-only-this-layer-update-expected.txt:
  • platform/qt/fast/layers/scroll-rect-to-visible-expected.png:
  • platform/qt/fast/layers/scroll-rect-to-visible-expected.txt:
  • platform/qt/fast/layers/zindex-inherit-expected.png: Added.
  • platform/qt/fast/layers/zindex-inherit-expected.txt:
  • platform/qt/fast/line-grid/line-grid-contains-value-expected.png:
  • platform/qt/fast/line-grid/line-grid-contains-value-expected.txt:
  • platform/qt/fast/line-grid/line-grid-floating-expected.png:
  • platform/qt/fast/line-grid/line-grid-floating-expected.txt:
  • platform/qt/fast/line-grid/line-grid-inside-columns-expected.png:
  • platform/qt/fast/line-grid/line-grid-inside-columns-expected.txt:
  • platform/qt/fast/line-grid/line-grid-into-columns-expected.png:
  • platform/qt/fast/line-grid/line-grid-into-columns-expected.txt:
  • platform/qt/fast/line-grid/line-grid-into-floats-expected.png:
  • platform/qt/fast/line-grid/line-grid-into-floats-expected.txt:
  • platform/qt/fast/line-grid/line-grid-positioned-expected.png:
  • platform/qt/fast/line-grid/line-grid-positioned-expected.txt:
  • platform/qt/fast/lists/001-expected.png:
  • platform/qt/fast/lists/001-expected.txt:
  • platform/qt/fast/lists/001-vertical-expected.png:
  • platform/qt/fast/lists/001-vertical-expected.txt:
  • platform/qt/fast/lists/002-expected.png: Added.
  • platform/qt/fast/lists/002-expected.txt:
  • platform/qt/fast/lists/002-vertical-expected.png:
  • platform/qt/fast/lists/002-vertical-expected.txt:
  • platform/qt/fast/lists/003-expected.png:
  • platform/qt/fast/lists/003-expected.txt:
  • platform/qt/fast/lists/003-vertical-expected.png:
  • platform/qt/fast/lists/003-vertical-expected.txt:
  • platform/qt/fast/lists/005-expected.png: Added.
  • platform/qt/fast/lists/005-expected.txt:
  • platform/qt/fast/lists/005-vertical-expected.png:
  • platform/qt/fast/lists/005-vertical-expected.txt:
  • platform/qt/fast/lists/006-expected.png: Added.
  • platform/qt/fast/lists/006-expected.txt:
  • platform/qt/fast/lists/006-vertical-expected.png:
  • platform/qt/fast/lists/006-vertical-expected.txt:
  • platform/qt/fast/lists/007-expected.png: Added.
  • platform/qt/fast/lists/007-expected.txt:
  • platform/qt/fast/lists/007-vertical-expected.png:
  • platform/qt/fast/lists/007-vertical-expected.txt:
  • platform/qt/fast/lists/008-expected.png: Added.
  • platform/qt/fast/lists/008-expected.txt:
  • platform/qt/fast/lists/008-vertical-expected.png:
  • platform/qt/fast/lists/008-vertical-expected.txt:
  • platform/qt/fast/lists/009-expected.png: Added.
  • platform/qt/fast/lists/009-expected.txt:
  • platform/qt/fast/lists/009-vertical-expected.png:
  • platform/qt/fast/lists/009-vertical-expected.txt:
  • platform/qt/fast/lists/anonymous-items-expected.png: Added.
  • platform/qt/fast/lists/anonymous-items-expected.txt:
  • platform/qt/fast/lists/big-list-marker-expected.png: Added.
  • platform/qt/fast/lists/big-list-marker-expected.txt:
  • platform/qt/fast/lists/dynamic-marker-crash-expected.png:
  • platform/qt/fast/lists/dynamic-marker-crash-expected.txt:
  • platform/qt/fast/lists/li-br-expected.png: Copied from LayoutTests/platform/qt/fast/html/details-add-summary-7-and-click-expected.png.
  • platform/qt/fast/lists/li-br-expected.txt:
  • platform/qt/fast/lists/li-style-alpha-huge-value-crash-expected.png: Added.
  • platform/qt/fast/lists/li-style-alpha-huge-value-crash-expected.txt:
  • platform/qt/fast/lists/list-item-line-height-expected.png: Added.
  • platform/qt/fast/lists/list-item-line-height-expected.txt:
  • platform/qt/fast/lists/list-marker-with-line-height-expected.png: Added.
  • platform/qt/fast/lists/list-marker-with-line-height-expected.txt:
  • platform/qt/fast/lists/list-style-none-crash-expected.png: Added.
  • platform/qt/fast/lists/list-style-none-crash-expected.txt:
  • platform/qt/fast/lists/marker-before-empty-inline-expected.png: Added.
  • platform/qt/fast/lists/marker-before-empty-inline-expected.txt:
  • platform/qt/fast/lists/marker-image-error-expected.png: Added.
  • platform/qt/fast/lists/marker-image-error-expected.txt:
  • platform/qt/fast/lists/markers-in-selection-expected.png: Added.
  • platform/qt/fast/lists/markers-in-selection-expected.txt:
  • platform/qt/fast/lists/numeric-markers-outside-list-expected.png: Added.
  • platform/qt/fast/lists/numeric-markers-outside-list-expected.txt:
  • platform/qt/fast/lists/ol-display-types-expected.png: Added.
  • platform/qt/fast/lists/ol-display-types-expected.txt:
  • platform/qt/fast/lists/ol-start-parsing-expected.png: Added.
  • platform/qt/fast/lists/ol-start-parsing-expected.txt:
  • platform/qt/fast/lists/olstart-expected.png: Added.
  • platform/qt/fast/lists/olstart-expected.txt:
  • platform/qt/fast/lists/ordered-list-with-no-ol-tag-expected.png: Added.
  • platform/qt/fast/lists/ordered-list-with-no-ol-tag-expected.txt:
  • platform/qt/fast/lists/scrolled-marker-paint-expected.png: Added.
  • platform/qt/fast/lists/scrolled-marker-paint-expected.txt:
  • platform/qt/fast/media/media-descriptor-syntax-01-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/media-descriptor-syntax-01-expected.txt:
  • platform/qt/fast/media/media-descriptor-syntax-02-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/media-descriptor-syntax-02-expected.txt:
  • platform/qt/fast/media/media-descriptor-syntax-03-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/media-descriptor-syntax-03-expected.txt:
  • platform/qt/fast/media/media-descriptor-syntax-04-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/media-descriptor-syntax-04-expected.txt:
  • platform/qt/fast/media/media-descriptor-syntax-05-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/media-descriptor-syntax-05-expected.txt:
  • platform/qt/fast/media/media-descriptor-syntax-06-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/media-descriptor-syntax-06-expected.txt:
  • platform/qt/fast/media/media-type-syntax-01-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/media-type-syntax-01-expected.txt:
  • platform/qt/fast/media/media-type-syntax-02-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/media-type-syntax-02-expected.txt:
  • platform/qt/fast/media/mq-animation-expected.png:
  • platform/qt/fast/media/mq-animation-expected.txt:
  • platform/qt/fast/media/mq-aspect-ratio-expected.png: Added.
  • platform/qt/fast/media/mq-aspect-ratio-expected.txt:
  • platform/qt/fast/media/mq-compound-query-01-expected.png: Added.
  • platform/qt/fast/media/mq-compound-query-01-expected.txt:
  • platform/qt/fast/media/mq-compound-query-02-expected.png: Added.
  • platform/qt/fast/media/mq-compound-query-02-expected.txt:
  • platform/qt/fast/media/mq-compound-query-03-expected.png: Added.
  • platform/qt/fast/media/mq-compound-query-03-expected.txt:
  • platform/qt/fast/media/mq-compound-query-04-expected.png: Added.
  • platform/qt/fast/media/mq-compound-query-04-expected.txt:
  • platform/qt/fast/media/mq-compound-query-05-expected.png: Added.
  • platform/qt/fast/media/mq-compound-query-05-expected.txt:
  • platform/qt/fast/media/mq-grid-01-expected.png: Added.
  • platform/qt/fast/media/mq-grid-01-expected.txt:
  • platform/qt/fast/media/mq-grid-02-expected.png: Added.
  • platform/qt/fast/media/mq-grid-02-expected.txt:
  • platform/qt/fast/media/mq-invalid-media-feature-01-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/mq-invalid-media-feature-01-expected.txt:
  • platform/qt/fast/media/mq-invalid-media-feature-02-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/mq-invalid-media-feature-02-expected.txt:
  • platform/qt/fast/media/mq-invalid-media-feature-03-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/mq-invalid-media-feature-03-expected.txt:
  • platform/qt/fast/media/mq-invalid-media-feature-04-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/mq-invalid-media-feature-04-expected.txt:
  • platform/qt/fast/media/mq-invalid-syntax-01-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/mq-invalid-syntax-01-expected.txt:
  • platform/qt/fast/media/mq-invalid-syntax-02-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/mq-invalid-syntax-02-expected.txt:
  • platform/qt/fast/media/mq-invalid-syntax-03-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/mq-invalid-syntax-03-expected.txt:
  • platform/qt/fast/media/mq-invalid-syntax-04-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/mq-invalid-syntax-04-expected.txt:
  • platform/qt/fast/media/mq-invalid-syntax-05-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/mq-invalid-syntax-05-expected.txt:
  • platform/qt/fast/media/mq-js-media-except-01-expected.png:
  • platform/qt/fast/media/mq-js-media-except-01-expected.txt:
  • platform/qt/fast/media/mq-js-media-except-02-expected.png:
  • platform/qt/fast/media/mq-js-media-except-02-expected.txt:
  • platform/qt/fast/media/mq-js-media-except-03-expected.png: Added.
  • platform/qt/fast/media/mq-js-media-except-03-expected.txt:
  • platform/qt/fast/media/mq-js-media-forward-syntax-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/mq-js-media-forward-syntax-expected.txt:
  • platform/qt/fast/media/mq-js-stylesheet-media-01-expected.png: Added.
  • platform/qt/fast/media/mq-js-stylesheet-media-01-expected.txt:
  • platform/qt/fast/media/mq-js-stylesheet-media-02-expected.png: Added.
  • platform/qt/fast/media/mq-js-stylesheet-media-02-expected.txt:
  • platform/qt/fast/media/mq-js-stylesheet-media-03-expected.png: Added.
  • platform/qt/fast/media/mq-js-stylesheet-media-03-expected.txt:
  • platform/qt/fast/media/mq-js-stylesheet-media-04-expected.png: Added.
  • platform/qt/fast/media/mq-js-stylesheet-media-04-expected.txt:
  • platform/qt/fast/media/mq-max-pixel-ratio-expected.png: Added.
  • platform/qt/fast/media/mq-max-pixel-ratio-expected.txt:
  • platform/qt/fast/media/mq-min-constraint-expected.png: Added.
  • platform/qt/fast/media/mq-min-constraint-expected.txt:
  • platform/qt/fast/media/mq-orientation-expected.png: Added.
  • platform/qt/fast/media/mq-orientation-expected.txt:
  • platform/qt/fast/media/mq-pixel-ratio-expected.png: Added.
  • platform/qt/fast/media/mq-pixel-ratio-expected.txt:
  • platform/qt/fast/media/mq-relative-constraints-02-expected.png: Added.
  • platform/qt/fast/media/mq-relative-constraints-02-expected.txt:
  • platform/qt/fast/media/mq-relative-constraints-03-expected.png: Added.
  • platform/qt/fast/media/mq-relative-constraints-03-expected.txt:
  • platform/qt/fast/media/mq-relative-constraints-04-expected.png: Added.
  • platform/qt/fast/media/mq-relative-constraints-04-expected.txt:
  • platform/qt/fast/media/mq-relative-constraints-05-expected.png: Added.
  • platform/qt/fast/media/mq-relative-constraints-05-expected.txt:
  • platform/qt/fast/media/mq-relative-constraints-06-expected.png: Added.
  • platform/qt/fast/media/mq-relative-constraints-06-expected.txt:
  • platform/qt/fast/media/mq-relative-constraints-07-expected.png: Added.
  • platform/qt/fast/media/mq-relative-constraints-07-expected.txt:
  • platform/qt/fast/media/mq-relative-constraints-08-expected.png:
  • platform/qt/fast/media/mq-relative-constraints-08-expected.txt:
  • platform/qt/fast/media/mq-relative-constraints-09-expected.png: Added.
  • platform/qt/fast/media/mq-relative-constraints-09-expected.txt:
  • platform/qt/fast/media/mq-simple-neg-query-01-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/mq-simple-neg-query-01-expected.txt:
  • platform/qt/fast/media/mq-simple-neg-query-02-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/mq-simple-neg-query-02-expected.txt:
  • platform/qt/fast/media/mq-simple-neg-query-03-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/mq-simple-neg-query-03-expected.txt:
  • platform/qt/fast/media/mq-simple-neg-query-04-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/mq-simple-neg-query-04-expected.txt:
  • platform/qt/fast/media/mq-simple-neg-query-05-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/mq-simple-neg-query-05-expected.txt:
  • platform/qt/fast/media/mq-simple-query-01-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/mq-simple-query-01-expected.txt:
  • platform/qt/fast/media/mq-simple-query-02-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/mq-simple-query-02-expected.txt:
  • platform/qt/fast/media/mq-simple-query-03-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/mq-simple-query-03-expected.txt:
  • platform/qt/fast/media/mq-simple-query-04-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/mq-simple-query-04-expected.txt:
  • platform/qt/fast/media/mq-simple-query-05-expected.png: Copied from LayoutTests/platform/qt/fast/dynamic/009-expected.png.
  • platform/qt/fast/media/mq-simple-query-05-expected.txt:
  • platform/qt/fast/media/mq-transform-01-expected.png: Added.
  • platform/qt/fast/media/mq-transform-01-expected.txt:
  • platform/qt/fast/media/mq-transform-04-expected.png: Added.
  • platform/qt/fast/media/mq-transform-04-expected.txt:
  • platform/qt/fast/media/mq-transition-expected.png: Added.
  • platform/qt/fast/media/mq-transition-expected.txt:
  • platform/qt/fast/media/mq-valueless-expected.png: Added.
  • platform/qt/fast/media/mq-valueless-expected.txt:
  • platform/qt/fast/media/mq-width-absolute-01-expected.png: Added.
  • platform/qt/fast/media/mq-width-absolute-01-expected.txt:
  • platform/qt/fast/media/mq-width-absolute-02-expected.png: Added.
  • platform/qt/fast/media/mq-width-absolute-02-expected.txt:
  • platform/qt/fast/media/mq-width-absolute-03-expected.png: Added.
  • platform/qt/fast/media/mq-width-absolute-03-expected.txt:
  • platform/qt/fast/media/mq-width-absolute-04-expected.png: Added.
  • platform/qt/fast/media/mq-width-absolute-04-expected.txt:
  • platform/qt/fast/media/viewport-media-query-expected.png: Added.
  • platform/qt/fast/media/viewport-media-query-expected.txt:
  • platform/qt/fast/multicol/block-axis-horizontal-bt-expected.png:
  • platform/qt/fast/multicol/block-axis-horizontal-bt-expected.txt:
  • platform/qt/fast/multicol/block-axis-horizontal-tb-expected.png:
  • platform/qt/fast/multicol/block-axis-horizontal-tb-expected.txt:
  • platform/qt/fast/multicol/block-axis-vertical-lr-expected.png:
  • platform/qt/fast/multicol/block-axis-vertical-lr-expected.txt:
  • platform/qt/fast/multicol/block-axis-vertical-rl-expected.png:
  • platform/qt/fast/multicol/block-axis-vertical-rl-expected.txt:
  • platform/qt/fast/multicol/border-padding-pagination-expected.png:
  • platform/qt/fast/multicol/border-padding-pagination-expected.txt:
  • platform/qt/fast/multicol/client-rects-expected.png:
  • platform/qt/fast/multicol/client-rects-expected.txt:
  • platform/qt/fast/multicol/column-break-with-balancing-expected.png:
  • platform/qt/fast/multicol/column-break-with-balancing-expected.txt:
  • platform/qt/fast/multicol/column-count-with-rules-expected.png:
  • platform/qt/fast/multicol/column-count-with-rules-expected.txt:
  • platform/qt/fast/multicol/column-rules-expected.png: Added.
  • platform/qt/fast/multicol/column-rules-expected.txt:
  • platform/qt/fast/multicol/column-rules-stacking-expected.png: Added.
  • platform/qt/fast/multicol/column-rules-stacking-expected.txt:
  • platform/qt/fast/multicol/columns-shorthand-parsing-expected.png: Added.
  • platform/qt/fast/multicol/columns-shorthand-parsing-expected.txt:
  • platform/qt/fast/multicol/float-avoidance-expected.png:
  • platform/qt/fast/multicol/float-avoidance-expected.txt:
  • platform/qt/fast/multicol/float-multicol-expected.png:
  • platform/qt/fast/multicol/float-multicol-expected.txt:
  • platform/qt/fast/multicol/float-paginate-complex-expected.png:
  • platform/qt/fast/multicol/float-paginate-complex-expected.txt:
  • platform/qt/fast/multicol/float-paginate-empty-lines-expected.png:
  • platform/qt/fast/multicol/float-paginate-empty-lines-expected.txt:
  • platform/qt/fast/multicol/float-paginate-expected.png:
  • platform/qt/fast/multicol/float-paginate-expected.txt:
  • platform/qt/fast/multicol/layers-in-multicol-expected.png:
  • platform/qt/fast/multicol/layers-in-multicol-expected.txt:
  • platform/qt/fast/multicol/layers-split-across-columns-expected.png:
  • platform/qt/fast/multicol/layers-split-across-columns-expected.txt:
  • platform/qt/fast/multicol/margin-collapse-expected.png:
  • platform/qt/fast/multicol/margin-collapse-expected.txt:
  • platform/qt/fast/multicol/max-height-columns-block-expected.png:
  • platform/qt/fast/multicol/max-height-columns-block-expected.txt:
  • platform/qt/fast/multicol/nested-columns-expected.png:
  • platform/qt/fast/multicol/nested-columns-expected.txt:
  • platform/qt/fast/multicol/overflow-across-columns-percent-height-expected.png:
  • platform/qt/fast/multicol/overflow-across-columns-percent-height-expected.txt:
  • platform/qt/fast/multicol/paginate-block-replaced-expected.png:
  • platform/qt/fast/multicol/paginate-block-replaced-expected.txt:
  • platform/qt/fast/multicol/positioned-split-expected.png:
  • platform/qt/fast/multicol/positioned-split-expected.txt:
  • platform/qt/fast/multicol/positioned-with-constrained-height-expected.png:
  • platform/qt/fast/multicol/positioned-with-constrained-height-expected.txt:
  • platform/qt/fast/multicol/scrolling-overflow-expected.png:
  • platform/qt/fast/multicol/scrolling-overflow-expected.txt:
  • platform/qt/fast/multicol/shadow-breaking-expected.png:
  • platform/qt/fast/multicol/shadow-breaking-expected.txt:
  • platform/qt/fast/multicol/span/anonymous-before-child-parent-crash-expected.png:
  • platform/qt/fast/multicol/span/anonymous-before-child-parent-crash-expected.txt:
  • platform/qt/fast/multicol/span/anonymous-split-block-crash-expected.png:
  • platform/qt/fast/multicol/span/anonymous-split-block-crash-expected.txt:
  • platform/qt/fast/multicol/span/anonymous-style-inheritance-expected.png:
  • platform/qt/fast/multicol/span/anonymous-style-inheritance-expected.txt:
  • platform/qt/fast/multicol/span/clone-anonymous-block-non-inline-child-crash-expected.png:
  • platform/qt/fast/multicol/span/clone-anonymous-block-non-inline-child-crash-expected.txt:
  • platform/qt/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.png:
  • platform/qt/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.txt:
  • platform/qt/fast/multicol/span/span-as-immediate-child-generated-content-expected.png:
  • platform/qt/fast/multicol/span/span-as-immediate-child-generated-content-expected.txt:
  • platform/qt/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.png:
  • platform/qt/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.txt:
  • platform/qt/fast/multicol/span/span-as-immediate-columns-child-expected.png:
  • platform/qt/fast/multicol/span/span-as-immediate-columns-child-expected.txt:
  • platform/qt/fast/multicol/span/span-as-nested-columns-child-dynamic-expected.png:
  • platform/qt/fast/multicol/span/span-as-nested-columns-child-dynamic-expected.txt:
  • platform/qt/fast/multicol/span/span-as-nested-columns-child-expected.png:
  • platform/qt/fast/multicol/span/span-as-nested-columns-child-expected.txt:
  • platform/qt/fast/multicol/span/span-as-nested-inline-block-child-expected.png:
  • platform/qt/fast/multicol/span/span-as-nested-inline-block-child-expected.txt:
  • platform/qt/fast/multicol/span/span-margin-collapsing-expected.png:
  • platform/qt/fast/multicol/span/span-margin-collapsing-expected.txt:
  • platform/qt/fast/multicol/table-margin-collapse-expected.png:
  • platform/qt/fast/multicol/table-margin-collapse-expected.txt:
  • platform/qt/fast/multicol/table-vertical-align-expected.png:
  • platform/qt/fast/multicol/table-vertical-align-expected.txt:
  • platform/qt/fast/multicol/unsplittable-inline-block-expected.png:
  • platform/qt/fast/multicol/unsplittable-inline-block-expected.txt:
  • platform/qt/fast/multicol/vertical-lr/border-padding-pagination-expected.png:
  • platform/qt/fast/multicol/vertical-lr/border-padding-pagination-expected.txt:
  • platform/qt/fast/multicol/vertical-lr/column-break-with-balancing-expected.png:
  • platform/qt/fast/multicol/vertical-lr/column-break-with-balancing-expected.txt:
  • platform/qt/fast/multicol/vertical-lr/column-count-with-rules-expected.png:
  • platform/qt/fast/multicol/vertical-lr/column-count-with-rules-expected.txt:
  • platform/qt/fast/multicol/vertical-lr/column-rules-expected.png:
  • platform/qt/fast/multicol/vertical-lr/column-rules-expected.txt:
  • platform/qt/fast/multicol/vertical-lr/float-avoidance-expected.png:
  • platform/qt/fast/multicol/vertical-lr/float-avoidance-expected.txt:
  • platform/qt/fast/multicol/vertical-lr/float-multicol-expected.png:
  • platform/qt/fast/multicol/vertical-lr/float-multicol-expected.txt:
  • platform/qt/fast/multicol/vertical-lr/float-paginate-complex-expected.png:
  • platform/qt/fast/multicol/vertical-lr/float-paginate-complex-expected.txt:
  • platform/qt/fast/multicol/vertical-lr/float-paginate-expected.png:
  • platform/qt/fast/multicol/vertical-lr/float-paginate-expected.txt:
  • platform/qt/fast/multicol/vertical-lr/nested-columns-expected.png:
  • platform/qt/fast/multicol/vertical-lr/nested-columns-expected.txt:
  • platform/qt/fast/multicol/vertical-lr/unsplittable-inline-block-expected.png:
  • platform/qt/fast/multicol/vertical-lr/unsplittable-inline-block-expected.txt:
  • platform/qt/fast/multicol/vertical-rl/border-padding-pagination-expected.png:
  • platform/qt/fast/multicol/vertical-rl/border-padding-pagination-expected.txt:
  • platform/qt/fast/multicol/vertical-rl/column-break-with-balancing-expected.png:
  • platform/qt/fast/multicol/vertical-rl/column-break-with-balancing-expected.txt:
  • platform/qt/fast/multicol/vertical-rl/column-count-with-rules-expected.png:
  • platform/qt/fast/multicol/vertical-rl/column-count-with-rules-expected.txt:
  • platform/qt/fast/multicol/vertical-rl/column-rules-expected.png:
  • platform/qt/fast/multicol/vertical-rl/column-rules-expected.txt:
  • platform/qt/fast/multicol/vertical-rl/float-avoidance-expected.png:
  • platform/qt/fast/multicol/vertical-rl/float-avoidance-expected.txt:
  • platform/qt/fast/multicol/vertical-rl/float-multicol-expected.png:
  • platform/qt/fast/multicol/vertical-rl/float-multicol-expected.txt:
  • platform/qt/fast/multicol/vertical-rl/float-paginate-complex-expected.png:
  • platform/qt/fast/multicol/vertical-rl/float-paginate-complex-expected.txt:
  • platform/qt/fast/multicol/vertical-rl/float-paginate-expected.png:
  • platform/qt/fast/multicol/vertical-rl/float-paginate-expected.txt:
  • platform/qt/fast/multicol/vertical-rl/nested-columns-expected.png:
  • platform/qt/fast/multicol/vertical-rl/nested-columns-expected.txt:
  • platform/qt/fast/multicol/vertical-rl/unsplittable-inline-block-expected.png:
  • platform/qt/fast/multicol/vertical-rl/unsplittable-inline-block-expected.txt:
7:05 AM Changeset in webkit [123099] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

[EFL] Fix build break when WEB_AUDIO is enabled.
https://bugs.webkit.org/show_bug.cgi?id=91735

Unreviewed build fix.

New files are added for the Web Audio fearure.
These files should be included into the CMakeLists.txt file.

Patch by Dongwoo Im <dw.im@samsung.com> on 2012-07-19

  • CMakeLists.txt: Add the newly created files into the CMakeLists.txt
6:44 AM Changeset in webkit [123098] by zandobersek@gmail.com
  • 1 edit
    1 delete in trunk/LayoutTests

Unreviewed GTK gardening, removing platform-specific baseline redundant after r123066.

  • platform/gtk/fast/forms/state-restore-skip-stateless-expected.txt: Removed.
6:21 AM Changeset in webkit [123097] by kkristof@inf.u-szeged.hu
  • 2 edits in trunk/Source/JavaScriptCore

[Qt] Unreviewed buildfix after r123042.

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::dumpRegisters):

6:00 AM Changeset in webkit [123096] by zandobersek@gmail.com
  • 2 edits in trunk/LayoutTests

Unreviewed GTK gardening, removing flaky expectations for MathML Presentations
layout tests. Their baselines were updated in r122704 and the tests have been
passing without problems since.

  • platform/gtk/TestExpectations:
5:27 AM Changeset in webkit [123095] by peter@chromium.org
  • 2 edits in trunk/Source/WebKit/chromium

Unreviewed. Rolled DEPS.

  • DEPS:
5:19 AM Changeset in webkit [123094] by kbalazs@webkit.org
  • 961 edits
    1 add in trunk/LayoutTests

[Qt] platform/qt/tables/mozilla tests needs update after rebaseline and new testfonts
https://bugs.webkit.org/show_bug.cgi?id=91242

Unreviewed rebaseline.

Patch by János Badics <János Badics> on 2012-07-19

  • platform/qt-5.0-wk1/Skipped:
  • platform/qt-5.0-wk2/Skipped:
  • platform/qt-5.0/Skipped:
  • platform/qt/tables/mozilla/marvin/backgr_index-expected.png:
  • platform/qt/tables/mozilla/marvin/backgr_index-expected.txt:
  • platform/qt/tables/mozilla/marvin/backgr_layers-opacity-expected.png:
  • platform/qt/tables/mozilla/marvin/backgr_layers-opacity-expected.txt:
  • platform/qt/tables/mozilla/marvin/backgr_position-table-expected.png:
  • platform/qt/tables/mozilla/marvin/backgr_position-table-expected.txt:
  • platform/qt/tables/mozilla/marvin/backgr_simple-table-cell-expected.png:
  • platform/qt/tables/mozilla/marvin/backgr_simple-table-cell-expected.txt:
  • platform/qt/tables/mozilla/marvin/backgr_simple-table-column-expected.png:
  • platform/qt/tables/mozilla/marvin/backgr_simple-table-column-expected.txt:
  • platform/qt/tables/mozilla/marvin/backgr_simple-table-column-group-expected.png:
  • platform/qt/tables/mozilla/marvin/backgr_simple-table-column-group-expected.txt:
  • platform/qt/tables/mozilla/marvin/backgr_simple-table-expected.png:
  • platform/qt/tables/mozilla/marvin/backgr_simple-table-expected.txt:
  • platform/qt/tables/mozilla/marvin/backgr_simple-table-row-expected.png:
  • platform/qt/tables/mozilla/marvin/backgr_simple-table-row-expected.txt:
  • platform/qt/tables/mozilla/marvin/backgr_simple-table-row-group-expected.png:
  • platform/qt/tables/mozilla/marvin/backgr_simple-table-row-group-expected.txt:
  • platform/qt/tables/mozilla/marvin/body_col-expected.png:
  • platform/qt/tables/mozilla/marvin/body_col-expected.txt:
  • platform/qt/tables/mozilla/marvin/body_tbody-expected.png:
  • platform/qt/tables/mozilla/marvin/body_tbody-expected.txt:
  • platform/qt/tables/mozilla/marvin/body_tfoot-expected.png:
  • platform/qt/tables/mozilla/marvin/body_tfoot-expected.txt:
  • platform/qt/tables/mozilla/marvin/body_thead-expected.png:
  • platform/qt/tables/mozilla/marvin/body_thead-expected.txt:
  • platform/qt/tables/mozilla/marvin/col_span-expected.png:
  • platform/qt/tables/mozilla/marvin/col_span-expected.txt:
  • platform/qt/tables/mozilla/marvin/colgroup_align_center-expected.png:
  • platform/qt/tables/mozilla/marvin/colgroup_align_center-expected.txt:
  • platform/qt/tables/mozilla/marvin/colgroup_align_justify-expected.png:
  • platform/qt/tables/mozilla/marvin/colgroup_align_justify-expected.txt:
  • platform/qt/tables/mozilla/marvin/colgroup_align_left-expected.png:
  • platform/qt/tables/mozilla/marvin/colgroup_align_left-expected.txt:
  • platform/qt/tables/mozilla/marvin/colgroup_align_right-expected.png:
  • platform/qt/tables/mozilla/marvin/colgroup_align_right-expected.txt:
  • platform/qt/tables/mozilla/marvin/colgroup_span-expected.png:
  • platform/qt/tables/mozilla/marvin/colgroup_span-expected.txt:
  • platform/qt/tables/mozilla/marvin/colgroup_valign_baseline-expected.png:
  • platform/qt/tables/mozilla/marvin/colgroup_valign_baseline-expected.txt:
  • platform/qt/tables/mozilla/marvin/colgroup_valign_bottom-expected.png:
  • platform/qt/tables/mozilla/marvin/colgroup_valign_bottom-expected.txt:
  • platform/qt/tables/mozilla/marvin/colgroup_valign_middle-expected.png:
  • platform/qt/tables/mozilla/marvin/colgroup_valign_middle-expected.txt:
  • platform/qt/tables/mozilla/marvin/colgroup_valign_top-expected.png:
  • platform/qt/tables/mozilla/marvin/colgroup_valign_top-expected.txt:
  • platform/qt/tables/mozilla/marvin/colgroup_width_px-expected.png:
  • platform/qt/tables/mozilla/marvin/colgroup_width_px-expected.txt:
  • platform/qt/tables/mozilla/marvin/table_frame_border-expected.png:
  • platform/qt/tables/mozilla/marvin/table_frame_border-expected.txt:
  • platform/qt/tables/mozilla/marvin/table_frame_box-expected.png:
  • platform/qt/tables/mozilla/marvin/table_frame_box-expected.txt:
  • platform/qt/tables/mozilla/marvin/table_overflow_td_dynamic_deactivate-expected.png:
  • platform/qt/tables/mozilla/marvin/table_overflow_td_dynamic_deactivate-expected.txt:
  • platform/qt/tables/mozilla/marvin/table_row_align_center-expected.png:
  • platform/qt/tables/mozilla/marvin/table_row_align_center-expected.txt:
  • platform/qt/tables/mozilla/marvin/table_row_align_left-expected.png:
  • platform/qt/tables/mozilla/marvin/table_row_align_left-expected.txt:
  • platform/qt/tables/mozilla/marvin/table_row_align_right-expected.png:
  • platform/qt/tables/mozilla/marvin/table_row_align_right-expected.txt:
  • platform/qt/tables/mozilla/marvin/table_rules_all-expected.png:
  • platform/qt/tables/mozilla/marvin/table_rules_all-expected.txt:
  • platform/qt/tables/mozilla/marvin/table_rules_groups-expected.png:
  • platform/qt/tables/mozilla/marvin/table_rules_groups-expected.txt:
  • platform/qt/tables/mozilla/marvin/table_rules_none-expected.png:
  • platform/qt/tables/mozilla/marvin/table_rules_none-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_align_center-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_align_center-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_align_left-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_align_left-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_align_right-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_align_right-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_aqua-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_aqua-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_aqua_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_aqua_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_black-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_black-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_black_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_black_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_blue-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_blue-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_blue_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_blue_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_fuchsia-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_fuchsia-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_fuchsia_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_fuchsia_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_gray-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_gray-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_gray_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_gray_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_green-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_green-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_green_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_green_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_lime-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_lime-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_lime_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_lime_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_maroon-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_maroon-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_maroon_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_maroon_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_navy-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_navy-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_navy_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_navy_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_olive-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_olive-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_olive_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_olive_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_purple-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_purple-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_purple_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_purple_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_red-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_red-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_red_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_red_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_silver-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_silver-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_silver_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_silver_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_teal-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_teal-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_teal_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_teal_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_white-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_white-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_white_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_white_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_yellow-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_yellow-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_yellow_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_bgcolor_yellow_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_border_0-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_border_0-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_border_1-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_border_1-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_border_2-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_border_2-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_border_3-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_border_3-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_caption_align_bot-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_caption_align_bot-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_caption_align_top-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_caption_align_top-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_cellpadding-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_cellpadding-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_cellpadding_pct-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_cellpadding_pct-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_cellspacing-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_cellspacing-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_class-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_class-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_default-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_default-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_id-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_id-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_row_th_nowrap-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_row_th_nowrap-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_style-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_style-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_td_align_center-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_td_align_center-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_td_align_left-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_td_align_left-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_td_align_right-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_td_align_right-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_td_colspan-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_td_colspan-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_td_height-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_td_height-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_td_nowrap-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_td_nowrap-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_td_rowspan-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_td_rowspan-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_td_width-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_td_width-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_th_align_center-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_th_align_center-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_th_align_left-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_th_align_left-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_th_align_right-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_th_align_right-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_th_colspan-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_th_colspan-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_th_height-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_th_height-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_th_rowspan-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_th_rowspan-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_th_width-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_th_width-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_width_percent-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_width_percent-expected.txt:
  • platform/qt/tables/mozilla/marvin/tables_width_px-expected.png:
  • platform/qt/tables/mozilla/marvin/tables_width_px-expected.txt:
  • platform/qt/tables/mozilla/marvin/tbody_align_center-expected.png:
  • platform/qt/tables/mozilla/marvin/tbody_align_center-expected.txt:
  • platform/qt/tables/mozilla/marvin/tbody_align_char-expected.png:
  • platform/qt/tables/mozilla/marvin/tbody_align_char-expected.txt:
  • platform/qt/tables/mozilla/marvin/tbody_align_justify-expected.png:
  • platform/qt/tables/mozilla/marvin/tbody_align_justify-expected.txt:
  • platform/qt/tables/mozilla/marvin/tbody_align_left-expected.png:
  • platform/qt/tables/mozilla/marvin/tbody_align_left-expected.txt:
  • platform/qt/tables/mozilla/marvin/tbody_align_right-expected.png:
  • platform/qt/tables/mozilla/marvin/tbody_align_right-expected.txt:
  • platform/qt/tables/mozilla/marvin/tbody_char-expected.png:
  • platform/qt/tables/mozilla/marvin/tbody_char-expected.txt:
  • platform/qt/tables/mozilla/marvin/tbody_valign_baseline-expected.png:
  • platform/qt/tables/mozilla/marvin/tbody_valign_baseline-expected.txt:
  • platform/qt/tables/mozilla/marvin/tbody_valign_bottom-expected.png:
  • platform/qt/tables/mozilla/marvin/tbody_valign_bottom-expected.txt:
  • platform/qt/tables/mozilla/marvin/tbody_valign_middle-expected.png:
  • platform/qt/tables/mozilla/marvin/tbody_valign_middle-expected.txt:
  • platform/qt/tables/mozilla/marvin/tbody_valign_top-expected.png:
  • platform/qt/tables/mozilla/marvin/tbody_valign_top-expected.txt:
  • platform/qt/tables/mozilla/marvin/td_valign_baseline-expected.png:
  • platform/qt/tables/mozilla/marvin/td_valign_baseline-expected.txt:
  • platform/qt/tables/mozilla/marvin/td_valign_bottom-expected.png:
  • platform/qt/tables/mozilla/marvin/td_valign_bottom-expected.txt:
  • platform/qt/tables/mozilla/marvin/td_valign_middle-expected.png:
  • platform/qt/tables/mozilla/marvin/td_valign_middle-expected.txt:
  • platform/qt/tables/mozilla/marvin/td_valign_top-expected.png:
  • platform/qt/tables/mozilla/marvin/td_valign_top-expected.txt:
  • platform/qt/tables/mozilla/marvin/tfoot_align_center-expected.png:
  • platform/qt/tables/mozilla/marvin/tfoot_align_center-expected.txt:
  • platform/qt/tables/mozilla/marvin/tfoot_align_char-expected.png:
  • platform/qt/tables/mozilla/marvin/tfoot_align_char-expected.txt:
  • platform/qt/tables/mozilla/marvin/tfoot_align_justify-expected.png:
  • platform/qt/tables/mozilla/marvin/tfoot_align_justify-expected.txt:
  • platform/qt/tables/mozilla/marvin/tfoot_align_left-expected.png:
  • platform/qt/tables/mozilla/marvin/tfoot_align_left-expected.txt:
  • platform/qt/tables/mozilla/marvin/tfoot_align_right-expected.png:
  • platform/qt/tables/mozilla/marvin/tfoot_align_right-expected.txt:
  • platform/qt/tables/mozilla/marvin/tfoot_valign_baseline-expected.png:
  • platform/qt/tables/mozilla/marvin/tfoot_valign_baseline-expected.txt:
  • platform/qt/tables/mozilla/marvin/tfoot_valign_bottom-expected.png:
  • platform/qt/tables/mozilla/marvin/tfoot_valign_bottom-expected.txt:
  • platform/qt/tables/mozilla/marvin/tfoot_valign_middle-expected.png:
  • platform/qt/tables/mozilla/marvin/tfoot_valign_middle-expected.txt:
  • platform/qt/tables/mozilla/marvin/tfoot_valign_top-expected.png:
  • platform/qt/tables/mozilla/marvin/tfoot_valign_top-expected.txt:
  • platform/qt/tables/mozilla/marvin/th_valign_baseline-expected.png:
  • platform/qt/tables/mozilla/marvin/th_valign_baseline-expected.txt:
  • platform/qt/tables/mozilla/marvin/th_valign_bottom-expected.png:
  • platform/qt/tables/mozilla/marvin/th_valign_bottom-expected.txt:
  • platform/qt/tables/mozilla/marvin/th_valign_middle-expected.png:
  • platform/qt/tables/mozilla/marvin/th_valign_middle-expected.txt:
  • platform/qt/tables/mozilla/marvin/th_valign_top-expected.png:
  • platform/qt/tables/mozilla/marvin/th_valign_top-expected.txt:
  • platform/qt/tables/mozilla/marvin/thead_align_center-expected.png:
  • platform/qt/tables/mozilla/marvin/thead_align_center-expected.txt:
  • platform/qt/tables/mozilla/marvin/thead_align_char-expected.png:
  • platform/qt/tables/mozilla/marvin/thead_align_char-expected.txt:
  • platform/qt/tables/mozilla/marvin/thead_align_justify-expected.png:
  • platform/qt/tables/mozilla/marvin/thead_align_justify-expected.txt:
  • platform/qt/tables/mozilla/marvin/thead_align_left-expected.png:
  • platform/qt/tables/mozilla/marvin/thead_align_left-expected.txt:
  • platform/qt/tables/mozilla/marvin/thead_align_right-expected.png:
  • platform/qt/tables/mozilla/marvin/thead_align_right-expected.txt:
  • platform/qt/tables/mozilla/marvin/thead_char-expected.png:
  • platform/qt/tables/mozilla/marvin/thead_char-expected.txt:
  • platform/qt/tables/mozilla/marvin/thead_valign_baseline-expected.png:
  • platform/qt/tables/mozilla/marvin/thead_valign_baseline-expected.txt:
  • platform/qt/tables/mozilla/marvin/thead_valign_bottom-expected.png:
  • platform/qt/tables/mozilla/marvin/thead_valign_bottom-expected.txt:
  • platform/qt/tables/mozilla/marvin/thead_valign_middle-expected.png:
  • platform/qt/tables/mozilla/marvin/thead_valign_middle-expected.txt:
  • platform/qt/tables/mozilla/marvin/thead_valign_top-expected.png:
  • platform/qt/tables/mozilla/marvin/thead_valign_top-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_aqua_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_aqua_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_black-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_black-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_black_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_black_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_blue-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_blue-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_blue_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_blue_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_fuchsia-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_fuchsia-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_fuchsia_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_fuchsia_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_gray-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_gray-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_gray_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_gray_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_green-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_green-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_green_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_green_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_lime-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_lime-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_lime_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_lime_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_maroon-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_maroon-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_maroon_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_maroon_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_navy-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_navy-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_navy_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_navy_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_olive-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_olive-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_olive_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_olive_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_purple-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_purple-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_purple_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_purple_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_red-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_red-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_red_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_red_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_silver-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_silver-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_silver_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_silver_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_teal-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_teal-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_teal_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_teal_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_white-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_white-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_white_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_white_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_yellow-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_yellow-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_yellow_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_bgcolor_yellow_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_valign_baseline-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_valign_baseline-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_valign_bottom-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_valign_bottom-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_valign_middle-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_valign_middle-expected.txt:
  • platform/qt/tables/mozilla/marvin/tr_valign_top-expected.png:
  • platform/qt/tables/mozilla/marvin/tr_valign_top-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_caption_align_bottom-expected.png:
  • platform/qt/tables/mozilla/marvin/x_caption_align_bottom-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_caption_align_top-expected.png:
  • platform/qt/tables/mozilla/marvin/x_caption_align_top-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_caption_class-expected.png:
  • platform/qt/tables/mozilla/marvin/x_caption_class-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_caption_id-expected.png:
  • platform/qt/tables/mozilla/marvin/x_caption_id-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_caption_style-expected.png:
  • platform/qt/tables/mozilla/marvin/x_caption_style-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_col_align_center-expected.png:
  • platform/qt/tables/mozilla/marvin/x_col_align_center-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_col_align_char-expected.png:
  • platform/qt/tables/mozilla/marvin/x_col_align_char-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_col_align_justify-expected.png:
  • platform/qt/tables/mozilla/marvin/x_col_align_justify-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_col_align_left-expected.png:
  • platform/qt/tables/mozilla/marvin/x_col_align_left-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_col_align_right-expected.png:
  • platform/qt/tables/mozilla/marvin/x_col_align_right-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_col_span-expected.png:
  • platform/qt/tables/mozilla/marvin/x_col_span-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_col_valign_baseline-expected.png:
  • platform/qt/tables/mozilla/marvin/x_col_valign_baseline-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_col_valign_bottom-expected.png:
  • platform/qt/tables/mozilla/marvin/x_col_valign_bottom-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_col_valign_middle-expected.png:
  • platform/qt/tables/mozilla/marvin/x_col_valign_middle-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_col_valign_top-expected.png:
  • platform/qt/tables/mozilla/marvin/x_col_valign_top-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_col_width_pct-expected.png:
  • platform/qt/tables/mozilla/marvin/x_col_width_pct-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_col_width_px-expected.png:
  • platform/qt/tables/mozilla/marvin/x_col_width_px-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_col_width_rel-expected.png:
  • platform/qt/tables/mozilla/marvin/x_col_width_rel-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_colgroup_align_center-expected.png:
  • platform/qt/tables/mozilla/marvin/x_colgroup_align_center-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_colgroup_align_char-expected.png:
  • platform/qt/tables/mozilla/marvin/x_colgroup_align_char-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_colgroup_align_justify-expected.png:
  • platform/qt/tables/mozilla/marvin/x_colgroup_align_justify-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_colgroup_align_left-expected.png:
  • platform/qt/tables/mozilla/marvin/x_colgroup_align_left-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_colgroup_align_right-expected.png:
  • platform/qt/tables/mozilla/marvin/x_colgroup_align_right-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_colgroup_span-expected.png:
  • platform/qt/tables/mozilla/marvin/x_colgroup_span-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.png:
  • platform/qt/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.png:
  • platform/qt/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_colgroup_valign_middle-expected.png:
  • platform/qt/tables/mozilla/marvin/x_colgroup_valign_middle-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_colgroup_valign_top-expected.png:
  • platform/qt/tables/mozilla/marvin/x_colgroup_valign_top-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_colgroup_width_pct-expected.png:
  • platform/qt/tables/mozilla/marvin/x_colgroup_width_pct-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_colgroup_width_rel-expected.png:
  • platform/qt/tables/mozilla/marvin/x_colgroup_width_rel-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_table-expected.png:
  • platform/qt/tables/mozilla/marvin/x_table-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_table_align_center-expected.png:
  • platform/qt/tables/mozilla/marvin/x_table_align_center-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_table_align_left-expected.png:
  • platform/qt/tables/mozilla/marvin/x_table_align_left-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_table_align_right-expected.png:
  • platform/qt/tables/mozilla/marvin/x_table_align_right-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_table_bgcolor_name-expected.png:
  • platform/qt/tables/mozilla/marvin/x_table_bgcolor_name-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_table_border-expected.png:
  • platform/qt/tables/mozilla/marvin/x_table_border-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_table_border_none-expected.png:
  • platform/qt/tables/mozilla/marvin/x_table_border_none-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_table_border_px-expected.png:
  • platform/qt/tables/mozilla/marvin/x_table_border_px-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_table_cellpadding-expected.png:
  • platform/qt/tables/mozilla/marvin/x_table_cellpadding-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_table_cellpadding_pct-expected.png:
  • platform/qt/tables/mozilla/marvin/x_table_cellpadding_pct-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_table_cellspacing-expected.png:
  • platform/qt/tables/mozilla/marvin/x_table_cellspacing-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_table_cellspacing_pct-expected.png:
  • platform/qt/tables/mozilla/marvin/x_table_cellspacing_pct-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_table_class-expected.png:
  • platform/qt/tables/mozilla/marvin/x_table_class-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_table_frame_void-expected.png:
  • platform/qt/tables/mozilla/marvin/x_table_frame_void-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_table_id-expected.png:
  • platform/qt/tables/mozilla/marvin/x_table_id-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_table_rules_groups-expected.png:
  • platform/qt/tables/mozilla/marvin/x_table_rules_groups-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_table_rules_none-expected.png:
  • platform/qt/tables/mozilla/marvin/x_table_rules_none-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_table_style-expected.png:
  • platform/qt/tables/mozilla/marvin/x_table_style-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_table_width_pct-expected.png:
  • platform/qt/tables/mozilla/marvin/x_table_width_pct-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_table_width_px-expected.png:
  • platform/qt/tables/mozilla/marvin/x_table_width_px-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tbody_align_center-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tbody_align_center-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tbody_align_char-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tbody_align_char-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tbody_align_justify-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tbody_align_justify-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tbody_align_left-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tbody_align_left-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tbody_align_right-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tbody_align_right-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tbody_class-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tbody_class-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tbody_id-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tbody_id-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tbody_style-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tbody_style-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tbody_valign_baseline-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tbody_valign_baseline-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tbody_valign_bottom-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tbody_valign_bottom-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tbody_valign_middle-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tbody_valign_middle-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tbody_valign_top-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tbody_valign_top-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_td_align_center-expected.png:
  • platform/qt/tables/mozilla/marvin/x_td_align_center-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_td_align_char-expected.png:
  • platform/qt/tables/mozilla/marvin/x_td_align_char-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_td_align_justify-expected.png:
  • platform/qt/tables/mozilla/marvin/x_td_align_justify-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_td_align_left-expected.png:
  • platform/qt/tables/mozilla/marvin/x_td_align_left-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_td_align_right-expected.png:
  • platform/qt/tables/mozilla/marvin/x_td_align_right-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_td_bgcolor_name-expected.png:
  • platform/qt/tables/mozilla/marvin/x_td_bgcolor_name-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_td_class-expected.png:
  • platform/qt/tables/mozilla/marvin/x_td_class-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_td_colspan-expected.png:
  • platform/qt/tables/mozilla/marvin/x_td_colspan-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_td_height-expected.png:
  • platform/qt/tables/mozilla/marvin/x_td_height-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_td_id-expected.png:
  • platform/qt/tables/mozilla/marvin/x_td_id-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_td_nowrap-expected.png:
  • platform/qt/tables/mozilla/marvin/x_td_nowrap-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_td_rowspan-expected.png:
  • platform/qt/tables/mozilla/marvin/x_td_rowspan-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_td_style-expected.png:
  • platform/qt/tables/mozilla/marvin/x_td_style-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_td_valign_baseline-expected.png:
  • platform/qt/tables/mozilla/marvin/x_td_valign_baseline-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_td_valign_bottom-expected.png:
  • platform/qt/tables/mozilla/marvin/x_td_valign_bottom-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_td_valign_middle-expected.png:
  • platform/qt/tables/mozilla/marvin/x_td_valign_middle-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_td_valign_top-expected.png:
  • platform/qt/tables/mozilla/marvin/x_td_valign_top-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_td_width-expected.png:
  • platform/qt/tables/mozilla/marvin/x_td_width-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tfoot_align_center-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tfoot_align_center-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tfoot_align_char-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tfoot_align_char-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tfoot_align_justify-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tfoot_align_justify-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tfoot_align_left-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tfoot_align_left-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tfoot_align_right-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tfoot_align_right-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tfoot_class-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tfoot_class-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tfoot_id-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tfoot_id-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tfoot_style-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tfoot_style-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tfoot_valign_middle-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tfoot_valign_middle-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tfoot_valign_top-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tfoot_valign_top-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_th_align_center-expected.png:
  • platform/qt/tables/mozilla/marvin/x_th_align_center-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_th_align_char-expected.png:
  • platform/qt/tables/mozilla/marvin/x_th_align_char-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_th_align_justify-expected.png:
  • platform/qt/tables/mozilla/marvin/x_th_align_justify-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_th_align_left-expected.png:
  • platform/qt/tables/mozilla/marvin/x_th_align_left-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_th_align_right-expected.png:
  • platform/qt/tables/mozilla/marvin/x_th_align_right-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_th_bgcolor_name-expected.png:
  • platform/qt/tables/mozilla/marvin/x_th_bgcolor_name-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_th_class-expected.png:
  • platform/qt/tables/mozilla/marvin/x_th_class-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_th_colspan-expected.png:
  • platform/qt/tables/mozilla/marvin/x_th_colspan-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_th_height-expected.png:
  • platform/qt/tables/mozilla/marvin/x_th_height-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_th_id-expected.png:
  • platform/qt/tables/mozilla/marvin/x_th_id-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_th_nowrap-expected.png:
  • platform/qt/tables/mozilla/marvin/x_th_nowrap-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_th_rowspan-expected.png:
  • platform/qt/tables/mozilla/marvin/x_th_rowspan-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_th_style-expected.png:
  • platform/qt/tables/mozilla/marvin/x_th_style-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_th_valign_baseline-expected.png:
  • platform/qt/tables/mozilla/marvin/x_th_valign_baseline-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_th_valign_bottom-expected.png:
  • platform/qt/tables/mozilla/marvin/x_th_valign_bottom-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_th_valign_middle-expected.png:
  • platform/qt/tables/mozilla/marvin/x_th_valign_middle-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_th_valign_top-expected.png:
  • platform/qt/tables/mozilla/marvin/x_th_valign_top-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_th_width-expected.png:
  • platform/qt/tables/mozilla/marvin/x_th_width-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_thead_align_center-expected.png:
  • platform/qt/tables/mozilla/marvin/x_thead_align_center-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_thead_align_char-expected.png:
  • platform/qt/tables/mozilla/marvin/x_thead_align_char-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_thead_align_justify-expected.png:
  • platform/qt/tables/mozilla/marvin/x_thead_align_justify-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_thead_align_left-expected.png:
  • platform/qt/tables/mozilla/marvin/x_thead_align_left-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_thead_align_right-expected.png:
  • platform/qt/tables/mozilla/marvin/x_thead_align_right-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_thead_class-expected.png:
  • platform/qt/tables/mozilla/marvin/x_thead_class-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_thead_id-expected.png:
  • platform/qt/tables/mozilla/marvin/x_thead_id-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_thead_style-expected.png:
  • platform/qt/tables/mozilla/marvin/x_thead_style-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_thead_valign_baseline-expected.png:
  • platform/qt/tables/mozilla/marvin/x_thead_valign_baseline-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_thead_valign_bottom-expected.png:
  • platform/qt/tables/mozilla/marvin/x_thead_valign_bottom-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_thead_valign_middle-expected.png:
  • platform/qt/tables/mozilla/marvin/x_thead_valign_middle-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_thead_valign_top-expected.png:
  • platform/qt/tables/mozilla/marvin/x_thead_valign_top-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tr_align_center-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tr_align_center-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tr_align_char-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tr_align_char-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tr_align_justify-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tr_align_justify-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tr_align_left-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tr_align_left-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tr_align_right-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tr_align_right-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tr_bgcolor_name-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tr_bgcolor_name-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tr_class-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tr_class-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tr_id-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tr_id-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tr_style-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tr_style-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tr_valign_baseline-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tr_valign_baseline-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tr_valign_bottom-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tr_valign_bottom-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tr_valign_middle-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tr_valign_middle-expected.txt:
  • platform/qt/tables/mozilla/marvin/x_tr_valign_top-expected.png:
  • platform/qt/tables/mozilla/marvin/x_tr_valign_top-expected.txt:
  • platform/qt/tables/mozilla/other/body_col-expected.png:
  • platform/qt/tables/mozilla/other/body_col-expected.txt:
  • platform/qt/tables/mozilla/other/cell_widths-expected.png:
  • platform/qt/tables/mozilla/other/cell_widths-expected.txt:
  • platform/qt/tables/mozilla/other/cellspacing-expected.png:
  • platform/qt/tables/mozilla/other/cellspacing-expected.txt:
  • platform/qt/tables/mozilla/other/move_row-expected.png:
  • platform/qt/tables/mozilla/other/move_row-expected.txt:
  • platform/qt/tables/mozilla/other/ms-expected.png:
  • platform/qt/tables/mozilla/other/ms-expected.txt:
  • platform/qt/tables/mozilla/other/nested2-expected.png:
  • platform/qt/tables/mozilla/other/nested2-expected.txt:
  • platform/qt/tables/mozilla/other/nestedTables-expected.png:
  • platform/qt/tables/mozilla/other/nestedTables-expected.txt:
  • platform/qt/tables/mozilla/other/padding-expected.png:
  • platform/qt/tables/mozilla/other/padding-expected.txt:
  • platform/qt/tables/mozilla/other/slashlogo-expected.png: Added.
  • platform/qt/tables/mozilla/other/slashlogo-expected.txt:
  • platform/qt/tables/mozilla/other/test3-expected.png:
  • platform/qt/tables/mozilla/other/test3-expected.txt:
  • platform/qt/tables/mozilla/other/test6-expected.png:
  • platform/qt/tables/mozilla/other/test6-expected.txt:
  • platform/qt/tables/mozilla/other/wa_table_thtd_rowspan-expected.png:
  • platform/qt/tables/mozilla/other/wa_table_thtd_rowspan-expected.txt:
  • platform/qt/tables/mozilla/other/wa_table_tr_align-expected.png:
  • platform/qt/tables/mozilla/other/wa_table_tr_align-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/97619-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/97619-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug1010-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug1010-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug10140-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug10140-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug101759-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug101759-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug10216-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug10216-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug104898-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug104898-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug1055-2-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug1055-2-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug106336-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug106336-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug106966-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug106966-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug1128-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug1128-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug11331-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug11331-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug1164-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug1164-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug11945-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug11945-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug1262-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug1262-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug131020-3-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug131020-3-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug14007-1-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug14007-1-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug14007-2-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug14159-2-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug14159-2-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug14489-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug14489-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug1647-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug1647-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug1725-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug1725-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug17826-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug17826-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug18770-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug18770-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug19526-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug19526-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug21518-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug21518-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug220653-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug220653-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug22122-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug22122-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug24880-1-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug24880-1-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug25707-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug25707-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug27993-2-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug27993-2-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug29058-2-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3105-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3105-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-1-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-1-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-10-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-10-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-11-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-11-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-12-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-12-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-13-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-13-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-14-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-14-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-15-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-15-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-16-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-16-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-17-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-17-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-18-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-18-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-2-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-2-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-3-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-3-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-4-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-4-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-5-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-5-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-6-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-6-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-7-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-7-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-8-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-8-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-9-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug3166-9-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug32205-1-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug32205-1-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug32205-4-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug32205-4-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug33784-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug33784-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug42043-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug42043-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug4294-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug4294-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug45621-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug45621-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug46268-4-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug46268-4-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug47163-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug47163-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug51000-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug51000-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug56024-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug56024-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug58402-2-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug58402-2-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug59252-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug59252-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug61042-1-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug61042-1-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug61042-2-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug61042-2-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug65372-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug65372-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug67915-2-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug67915-2-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug6933-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug6933-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug7113-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug7113-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug7121-2-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug7121-2-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug72393-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug72393-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug7243-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug7243-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug73629-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug73629-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug80762-2-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug80762-2-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug8499-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug8499-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug89315-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug89315-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug91057-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug91057-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug92647-1-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug92647-1-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug92868_1-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug92868_1-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug9879-1-expected.png:
  • platform/qt/tables/mozilla_expected_failures/bugs/bug9879-1-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/collapsing_borders/bug41262-1-expected.png:
  • platform/qt/tables/mozilla_expected_failures/collapsing_borders/bug41262-1-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.png:
  • platform/qt/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.png:
  • platform/qt/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/core/backgrounds-expected.png:
  • platform/qt/tables/mozilla_expected_failures/core/backgrounds-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/core/captions1-expected.png:
  • platform/qt/tables/mozilla_expected_failures/core/captions1-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/core/captions2-expected.png:
  • platform/qt/tables/mozilla_expected_failures/core/captions2-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/core/captions3-expected.png:
  • platform/qt/tables/mozilla_expected_failures/core/captions3-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/core/col_span2-expected.png:
  • platform/qt/tables/mozilla_expected_failures/core/col_span2-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/core/cols1-expected.png:
  • platform/qt/tables/mozilla_expected_failures/core/cols1-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/core/columns-expected.png:
  • platform/qt/tables/mozilla_expected_failures/core/columns-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/core/conflicts-expected.png:
  • platform/qt/tables/mozilla_expected_failures/core/conflicts-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/core/standards1-expected.png:
  • platform/qt/tables/mozilla_expected_failures/core/standards1-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/dom/appendCells1-expected.png:
  • platform/qt/tables/mozilla_expected_failures/dom/appendCells1-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/dom/appendCellsRebuild1-expected.png:
  • platform/qt/tables/mozilla_expected_failures/dom/appendCellsRebuild1-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/dom/appendCol1-expected.png:
  • platform/qt/tables/mozilla_expected_failures/dom/appendCol1-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/dom/appendColGroup1-expected.png:
  • platform/qt/tables/mozilla_expected_failures/dom/appendColGroup1-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/dom/insertTbodyExpand1-expected.png:
  • platform/qt/tables/mozilla_expected_failures/dom/insertTbodyExpand1-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/dom/insertTbodyRebuild1-expected.png:
  • platform/qt/tables/mozilla_expected_failures/dom/insertTbodyRebuild1-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_frame_above-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_frame_above-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_frame_below-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_frame_below-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_frame_void-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_frame_void-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_table-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_table-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_td_dynamic_deactivate-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_td_dynamic_deactivate-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_bottom-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_bottom-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_middle-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_middle-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_top-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_top-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_colgroup_width_px-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_colgroup_width_px-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.png:
  • platform/qt/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/other/empty_cells-expected.png:
  • platform/qt/tables/mozilla_expected_failures/other/empty_cells-expected.txt:
  • platform/qt/tables/mozilla_expected_failures/other/test4-expected.png:
  • platform/qt/tables/mozilla_expected_failures/other/test4-expected.txt:
5:18 AM Changeset in webkit [123093] by commit-queue@webkit.org
  • 14 edits in trunk

[Qt] Remove support for Qt versions before 4.8.0
https://bugs.webkit.org/show_bug.cgi?id=91730

Patch by Simon Hausmann <simon.hausmann@nokia.com> on 2012-07-19
Reviewed by Kenneth Rohde Christiansen.

Remove Qt version check #ifdefs for Qt versions before 4.8.0.

Source/WebCore:

  • platform/graphics/qt/GraphicsContextQt.cpp:

(WebCore::GraphicsContextPlatformPrivate::clipBoundingRect):

  • platform/qt/ThirdPartyCookiesQt.cpp:

(WebCore::urlsShareSameDomain):
(WebCore::thirdPartyCookiePolicyPermits):

Source/WebKit/qt:

  • Api/qwebsettings.cpp:

(QWebSettingsPrivate):
(QWebSettings::QWebSettings):
(QWebSettings::thirdPartyCookiePolicy):

  • Api/qwebsettings.h:
  • WebCoreSupport/DumpRenderTreeSupportQt.cpp:

(DumpRenderTreeSupportQt::thirdPartyCookiePolicyAllows):

  • WebCoreSupport/DumpRenderTreeSupportQt.h:
  • tests/qdeclarativewebview/tst_qdeclarativewebview.cpp:

(tst_QDeclarativeWebView):
(tst_QDeclarativeWebView::backgroundColor):

  • tests/qwebelement/tst_qwebelement.cpp:

(tst_QWebElement::render):

  • tests/qwebpage/tst_qwebpage.cpp:

(tst_QWebPage):
(tst_QWebPage::thirdPartyCookiePolicy):

Tools:

  • DumpRenderTree/qt/LayoutTestControllerQt.cpp:

(LayoutTestController::reset):
(LayoutTestController::setAlwaysBlockCookies):

  • DumpRenderTree/qt/LayoutTestControllerQt.h:

(LayoutTestController):

5:05 AM Changeset in webkit [123092] by kkristof@inf.u-szeged.hu
  • 785 edits
    2 copies
    28 adds in trunk/LayoutTests

[Qt] from platform/qt/fast/backgrounds to platform/qt/fast/dom tests needs update after rebaseline and new testfonts
https://bugs.webkit.org/show_bug.cgi?id=91500

Unreviewed rebaseline.

Patch by Balazs Ankes <bank@inf.u-szeged.hu> on 2012-07-19

  • platform/qt-5.0-wk1/Skipped:
  • platform/qt-5.0-wk2/Skipped:
  • platform/qt-5.0/Skipped:
  • platform/qt/fast/backgrounds/001-expected.png: Added.
  • platform/qt/fast/backgrounds/001-expected.txt:
  • platform/qt/fast/backgrounds/animated-svg-as-mask-expected.png:
  • platform/qt/fast/backgrounds/animated-svg-as-mask-expected.txt:
  • platform/qt/fast/backgrounds/background-clip-text-expected.png:
  • platform/qt/fast/backgrounds/background-clip-text-expected.txt:
  • platform/qt/fast/backgrounds/background-inherit-color-bug-expected.png:
  • platform/qt/fast/backgrounds/background-inherit-color-bug-expected.txt:
  • platform/qt/fast/backgrounds/background-leakage-expected.png:
  • platform/qt/fast/backgrounds/background-leakage-expected.txt:
  • platform/qt/fast/backgrounds/background-leakage-transforms-expected.png:
  • platform/qt/fast/backgrounds/background-leakage-transforms-expected.txt:
  • platform/qt/fast/backgrounds/background-origin-root-element-expected.png: Added.
  • platform/qt/fast/backgrounds/background-origin-root-element-expected.txt:
  • platform/qt/fast/backgrounds/background-position-1-expected.png: Added.
  • platform/qt/fast/backgrounds/background-position-1-expected.txt:
  • platform/qt/fast/backgrounds/background-position-parsing-expected.png:
  • platform/qt/fast/backgrounds/background-position-parsing-expected.txt:
  • platform/qt/fast/backgrounds/background-position-rounding-expected.png: Copied from LayoutTests/platform/qt/fast/css/font-family-pictograph-expected.png.
  • platform/qt/fast/backgrounds/background-position-rounding-expected.txt:
  • platform/qt/fast/backgrounds/body-generated-image-propagated-to-root-expected.png: Added.
  • platform/qt/fast/backgrounds/body-generated-image-propagated-to-root-expected.txt:
  • platform/qt/fast/backgrounds/border-radius-split-background-expected.png:
  • platform/qt/fast/backgrounds/border-radius-split-background-expected.txt:
  • platform/qt/fast/backgrounds/border-radius-split-background-image-expected.png:
  • platform/qt/fast/backgrounds/border-radius-split-background-image-expected.txt:
  • platform/qt/fast/backgrounds/mask-composite-expected.png: Added.
  • platform/qt/fast/backgrounds/mask-composite-expected.txt:
  • platform/qt/fast/backgrounds/opacity-on-document-element-expected.png:
  • platform/qt/fast/backgrounds/opacity-on-document-element-expected.txt:
  • platform/qt/fast/backgrounds/quirks-mode-line-box-backgrounds-expected.png: Added.
  • platform/qt/fast/backgrounds/quirks-mode-line-box-backgrounds-expected.txt:
  • platform/qt/fast/backgrounds/repeat/mask-negative-offset-repeat-expected.png:
  • platform/qt/fast/backgrounds/repeat/mask-negative-offset-repeat-expected.txt:
  • platform/qt/fast/backgrounds/repeat/negative-offset-repeat-expected.png:
  • platform/qt/fast/backgrounds/repeat/negative-offset-repeat-expected.txt:
  • platform/qt/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.png:
  • platform/qt/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.txt:
  • platform/qt/fast/backgrounds/size/backgroundSize15-expected.png:
  • platform/qt/fast/backgrounds/size/backgroundSize15-expected.txt:
  • platform/qt/fast/backgrounds/size/backgroundSize16-expected.png:
  • platform/qt/fast/backgrounds/size/backgroundSize16-expected.txt:
  • platform/qt/fast/backgrounds/solid-color-context-restore-expected.png: Added.
  • platform/qt/fast/backgrounds/solid-color-context-restore-expected.txt:
  • platform/qt/fast/body-propagation/background-color/001-expected.png:
  • platform/qt/fast/body-propagation/background-color/001-expected.txt:
  • platform/qt/fast/body-propagation/background-color/001-xhtml-expected.png:
  • platform/qt/fast/body-propagation/background-color/001-xhtml-expected.txt:
  • platform/qt/fast/body-propagation/background-color/002-expected.png:
  • platform/qt/fast/body-propagation/background-color/002-expected.txt:
  • platform/qt/fast/body-propagation/background-color/002-xhtml-expected.png:
  • platform/qt/fast/body-propagation/background-color/002-xhtml-expected.txt:
  • platform/qt/fast/body-propagation/background-color/003-declarative-expected.png:
  • platform/qt/fast/body-propagation/background-color/003-declarative-expected.txt:
  • platform/qt/fast/body-propagation/background-color/003-expected.png:
  • platform/qt/fast/body-propagation/background-color/003-expected.txt:
  • platform/qt/fast/body-propagation/background-color/003-xhtml-expected.png:
  • platform/qt/fast/body-propagation/background-color/003-xhtml-expected.txt:
  • platform/qt/fast/body-propagation/background-color/004-declarative-expected.png:
  • platform/qt/fast/body-propagation/background-color/004-declarative-expected.txt:
  • platform/qt/fast/body-propagation/background-color/004-expected.png:
  • platform/qt/fast/body-propagation/background-color/004-expected.txt:
  • platform/qt/fast/body-propagation/background-color/004-xhtml-expected.png:
  • platform/qt/fast/body-propagation/background-color/004-xhtml-expected.txt:
  • platform/qt/fast/body-propagation/background-color/005-declarative-expected.png:
  • platform/qt/fast/body-propagation/background-color/005-declarative-expected.txt:
  • platform/qt/fast/body-propagation/background-color/005-expected.png:
  • platform/qt/fast/body-propagation/background-color/005-expected.txt:
  • platform/qt/fast/body-propagation/background-color/005-xhtml-expected.png:
  • platform/qt/fast/body-propagation/background-color/005-xhtml-expected.txt:
  • platform/qt/fast/body-propagation/background-color/006-declarative-expected.png:
  • platform/qt/fast/body-propagation/background-color/006-declarative-expected.txt:
  • platform/qt/fast/body-propagation/background-color/006-expected.png:
  • platform/qt/fast/body-propagation/background-color/006-expected.txt:
  • platform/qt/fast/body-propagation/background-color/006-xhtml-expected.png:
  • platform/qt/fast/body-propagation/background-color/006-xhtml-expected.txt:
  • platform/qt/fast/body-propagation/background-color/007-declarative-expected.png:
  • platform/qt/fast/body-propagation/background-color/007-declarative-expected.txt:
  • platform/qt/fast/body-propagation/background-color/007-expected.png:
  • platform/qt/fast/body-propagation/background-color/007-expected.txt:
  • platform/qt/fast/body-propagation/background-color/007-xhtml-expected.png:
  • platform/qt/fast/body-propagation/background-color/007-xhtml-expected.txt:
  • platform/qt/fast/body-propagation/background-color/008-expected.png:
  • platform/qt/fast/body-propagation/background-color/008-expected.txt:
  • platform/qt/fast/body-propagation/background-color/008-xhtml-expected.png:
  • platform/qt/fast/body-propagation/background-color/008-xhtml-expected.txt:
  • platform/qt/fast/body-propagation/background-image/001-expected.png:
  • platform/qt/fast/body-propagation/background-image/001-expected.txt:
  • platform/qt/fast/body-propagation/background-image/001-xhtml-expected.png:
  • platform/qt/fast/body-propagation/background-image/001-xhtml-expected.txt:
  • platform/qt/fast/body-propagation/background-image/002-expected.png:
  • platform/qt/fast/body-propagation/background-image/002-expected.txt:
  • platform/qt/fast/body-propagation/background-image/002-xhtml-expected.png:
  • platform/qt/fast/body-propagation/background-image/002-xhtml-expected.txt:
  • platform/qt/fast/body-propagation/background-image/003-declarative-expected.png:
  • platform/qt/fast/body-propagation/background-image/003-declarative-expected.txt:
  • platform/qt/fast/body-propagation/background-image/003-expected.png:
  • platform/qt/fast/body-propagation/background-image/003-expected.txt:
  • platform/qt/fast/body-propagation/background-image/003-xhtml-expected.png:
  • platform/qt/fast/body-propagation/background-image/003-xhtml-expected.txt:
  • platform/qt/fast/body-propagation/background-image/004-declarative-expected.png:
  • platform/qt/fast/body-propagation/background-image/004-declarative-expected.txt:
  • platform/qt/fast/body-propagation/background-image/004-expected.png:
  • platform/qt/fast/body-propagation/background-image/004-expected.txt:
  • platform/qt/fast/body-propagation/background-image/004-xhtml-expected.png:
  • platform/qt/fast/body-propagation/background-image/004-xhtml-expected.txt:
  • platform/qt/fast/body-propagation/background-image/005-declarative-expected.png:
  • platform/qt/fast/body-propagation/background-image/005-declarative-expected.txt:
  • platform/qt/fast/body-propagation/background-image/005-expected.png:
  • platform/qt/fast/body-propagation/background-image/005-expected.txt:
  • platform/qt/fast/body-propagation/background-image/005-xhtml-expected.png:
  • platform/qt/fast/body-propagation/background-image/005-xhtml-expected.txt:
  • platform/qt/fast/body-propagation/background-image/006-declarative-expected.png:
  • platform/qt/fast/body-propagation/background-image/006-declarative-expected.txt:
  • platform/qt/fast/body-propagation/background-image/006-expected.png:
  • platform/qt/fast/body-propagation/background-image/006-expected.txt:
  • platform/qt/fast/body-propagation/background-image/006-xhtml-expected.png:
  • platform/qt/fast/body-propagation/background-image/006-xhtml-expected.txt:
  • platform/qt/fast/body-propagation/background-image/007-declarative-expected.png:
  • platform/qt/fast/body-propagation/background-image/007-declarative-expected.txt:
  • platform/qt/fast/body-propagation/background-image/007-expected.png:
  • platform/qt/fast/body-propagation/background-image/007-expected.txt:
  • platform/qt/fast/body-propagation/background-image/007-xhtml-expected.png:
  • platform/qt/fast/body-propagation/background-image/007-xhtml-expected.txt:
  • platform/qt/fast/body-propagation/background-image/008-expected.png:
  • platform/qt/fast/body-propagation/background-image/008-expected.txt:
  • platform/qt/fast/body-propagation/background-image/008-xhtml-expected.png:
  • platform/qt/fast/body-propagation/background-image/008-xhtml-expected.txt:
  • platform/qt/fast/body-propagation/background-image/009-expected.png:
  • platform/qt/fast/body-propagation/background-image/009-expected.txt:
  • platform/qt/fast/body-propagation/background-image/009-xhtml-expected.png:
  • platform/qt/fast/body-propagation/background-image/009-xhtml-expected.txt:
  • platform/qt/fast/body-propagation/background-image/010-expected.png:
  • platform/qt/fast/body-propagation/background-image/010-expected.txt:
  • platform/qt/fast/body-propagation/background-image/010-xhtml-expected.png:
  • platform/qt/fast/body-propagation/background-image/010-xhtml-expected.txt:
  • platform/qt/fast/body-propagation/overflow/001-expected.png:
  • platform/qt/fast/body-propagation/overflow/001-expected.txt:
  • platform/qt/fast/body-propagation/overflow/001-xhtml-expected.png:
  • platform/qt/fast/body-propagation/overflow/001-xhtml-expected.txt:
  • platform/qt/fast/body-propagation/overflow/002-expected.png:
  • platform/qt/fast/body-propagation/overflow/002-expected.txt:
  • platform/qt/fast/body-propagation/overflow/002-xhtml-expected.png:
  • platform/qt/fast/body-propagation/overflow/002-xhtml-expected.txt:
  • platform/qt/fast/body-propagation/overflow/003-declarative-expected.png:
  • platform/qt/fast/body-propagation/overflow/003-declarative-expected.txt:
  • platform/qt/fast/body-propagation/overflow/003-expected.png:
  • platform/qt/fast/body-propagation/overflow/003-expected.txt:
  • platform/qt/fast/body-propagation/overflow/003-xhtml-expected.png:
  • platform/qt/fast/body-propagation/overflow/003-xhtml-expected.txt:
  • platform/qt/fast/body-propagation/overflow/004-declarative-expected.png:
  • platform/qt/fast/body-propagation/overflow/004-declarative-expected.txt:
  • platform/qt/fast/body-propagation/overflow/004-expected.png:
  • platform/qt/fast/body-propagation/overflow/004-expected.txt:
  • platform/qt/fast/body-propagation/overflow/004-xhtml-expected.png:
  • platform/qt/fast/body-propagation/overflow/004-xhtml-expected.txt:
  • platform/qt/fast/body-propagation/overflow/005-declarative-expected.png:
  • platform/qt/fast/body-propagation/overflow/005-declarative-expected.txt:
  • platform/qt/fast/body-propagation/overflow/005-expected.png:
  • platform/qt/fast/body-propagation/overflow/005-expected.txt:
  • platform/qt/fast/body-propagation/overflow/005-xhtml-expected.png:
  • platform/qt/fast/body-propagation/overflow/005-xhtml-expected.txt:
  • platform/qt/fast/body-propagation/overflow/006-declarative-expected.png:
  • platform/qt/fast/body-propagation/overflow/006-declarative-expected.txt:
  • platform/qt/fast/body-propagation/overflow/006-expected.png:
  • platform/qt/fast/body-propagation/overflow/006-expected.txt:
  • platform/qt/fast/body-propagation/overflow/006-xhtml-expected.png:
  • platform/qt/fast/body-propagation/overflow/006-xhtml-expected.txt:
  • platform/qt/fast/body-propagation/overflow/007-declarative-expected.png:
  • platform/qt/fast/body-propagation/overflow/007-declarative-expected.txt:
  • platform/qt/fast/body-propagation/overflow/007-expected.png:
  • platform/qt/fast/body-propagation/overflow/007-expected.txt:
  • platform/qt/fast/body-propagation/overflow/007-xhtml-expected.png:
  • platform/qt/fast/body-propagation/overflow/007-xhtml-expected.txt:
  • platform/qt/fast/borders/bidi-002-expected.png:
  • platform/qt/fast/borders/bidi-002-expected.txt:
  • platform/qt/fast/borders/bidi-009a-expected.png:
  • platform/qt/fast/borders/bidi-009a-expected.txt:
  • platform/qt/fast/borders/bidi-012-expected.png:
  • platform/qt/fast/borders/bidi-012-expected.txt:
  • platform/qt/fast/borders/block-mask-overlay-image-expected.png:
  • platform/qt/fast/borders/block-mask-overlay-image-expected.txt:
  • platform/qt/fast/borders/block-mask-overlay-image-outset-expected.png:
  • platform/qt/fast/borders/block-mask-overlay-image-outset-expected.txt:
  • platform/qt/fast/borders/border-color-inherit-expected.png:
  • platform/qt/fast/borders/border-color-inherit-expected.txt:
  • platform/qt/fast/borders/border-fit-expected.png:
  • platform/qt/fast/borders/border-fit-expected.txt:
  • platform/qt/fast/borders/border-image-01-expected.png:
  • platform/qt/fast/borders/border-image-01-expected.txt:
  • platform/qt/fast/borders/border-image-border-radius-expected.png:
  • platform/qt/fast/borders/border-image-border-radius-expected.txt:
  • platform/qt/fast/borders/border-image-longhand-expected.png:
  • platform/qt/fast/borders/border-image-longhand-expected.txt:
  • platform/qt/fast/borders/border-image-massive-scale-expected.png: Added.
  • platform/qt/fast/borders/border-image-massive-scale-expected.txt:
  • platform/qt/fast/borders/border-image-outset-expected.png:
  • platform/qt/fast/borders/border-image-outset-expected.txt:
  • platform/qt/fast/borders/border-image-outset-in-shorthand-expected.png:
  • platform/qt/fast/borders/border-image-outset-in-shorthand-expected.txt:
  • platform/qt/fast/borders/border-image-outset-split-inline-expected.png:
  • platform/qt/fast/borders/border-image-outset-split-inline-expected.txt:
  • platform/qt/fast/borders/border-image-outset-split-inline-vertical-lr-expected.png:
  • platform/qt/fast/borders/border-image-outset-split-inline-vertical-lr-expected.txt:
  • platform/qt/fast/borders/border-image-repeat-expected.png: Added.
  • platform/qt/fast/borders/border-image-repeat-expected.txt:
  • platform/qt/fast/borders/border-image-rotate-transform-expected.png:
  • platform/qt/fast/borders/border-image-rotate-transform-expected.txt:
  • platform/qt/fast/borders/border-image-scale-transform-expected.png:
  • platform/qt/fast/borders/border-image-scale-transform-expected.txt:
  • platform/qt/fast/borders/border-image-scaled-expected.png:
  • platform/qt/fast/borders/border-image-scaled-expected.txt:
  • platform/qt/fast/borders/border-image-scrambled-expected.png: Added.
  • platform/qt/fast/borders/border-image-scrambled-expected.txt:
  • platform/qt/fast/borders/border-image-side-reduction-expected.png:
  • platform/qt/fast/borders/border-image-side-reduction-expected.txt:
  • platform/qt/fast/borders/border-image-slices-expected.png:
  • platform/qt/fast/borders/border-image-slices-expected.txt:
  • platform/qt/fast/borders/border-image-source-expected.png:
  • platform/qt/fast/borders/border-image-source-expected.txt:
  • platform/qt/fast/borders/border-radius-constraints-expected.png: Added.
  • platform/qt/fast/borders/border-radius-constraints-expected.txt:
  • platform/qt/fast/borders/border-radius-huge-assert-expected.png:
  • platform/qt/fast/borders/border-radius-huge-assert-expected.txt:
  • platform/qt/fast/borders/border-radius-inline-flow-expected.png:
  • platform/qt/fast/borders/border-radius-inline-flow-expected.txt:
  • platform/qt/fast/borders/border-radius-inset-outset-expected.png:
  • platform/qt/fast/borders/border-radius-inset-outset-expected.txt:
  • platform/qt/fast/borders/border-radius-split-inline-expected.png: Added.
  • platform/qt/fast/borders/border-radius-split-inline-expected.txt:
  • platform/qt/fast/borders/border-styles-split-expected.png:
  • platform/qt/fast/borders/border-styles-split-expected.txt:
  • platform/qt/fast/borders/borderRadiusInvalidColor-expected.png:
  • platform/qt/fast/borders/borderRadiusInvalidColor-expected.txt:
  • platform/qt/fast/borders/different-color-borders-expected.png: Added.
  • platform/qt/fast/borders/different-color-borders-expected.txt:
  • platform/qt/fast/borders/inline-mask-overlay-image-expected.png:
  • platform/qt/fast/borders/inline-mask-overlay-image-expected.txt:
  • platform/qt/fast/borders/inline-mask-overlay-image-outset-expected.png:
  • platform/qt/fast/borders/inline-mask-overlay-image-outset-expected.txt:
  • platform/qt/fast/borders/inline-mask-overlay-image-outset-vertical-rl-expected.png:
  • platform/qt/fast/borders/inline-mask-overlay-image-outset-vertical-rl-expected.txt:
  • platform/qt/fast/borders/mixed-border-styles-expected.png:
  • platform/qt/fast/borders/mixed-border-styles-expected.txt:
  • platform/qt/fast/borders/mixed-border-styles-radius-expected.png:
  • platform/qt/fast/borders/mixed-border-styles-radius-expected.txt:
  • platform/qt/fast/borders/mixed-border-styles-radius2-expected.png:
  • platform/qt/fast/borders/mixed-border-styles-radius2-expected.txt:
  • platform/qt/fast/borders/rtl-border-01-expected.png:
  • platform/qt/fast/borders/rtl-border-01-expected.txt:
  • platform/qt/fast/borders/rtl-border-02-expected.png:
  • platform/qt/fast/borders/rtl-border-02-expected.txt:
  • platform/qt/fast/borders/rtl-border-03-expected.png:
  • platform/qt/fast/borders/rtl-border-03-expected.txt:
  • platform/qt/fast/box-shadow/basic-shadows-expected.png:
  • platform/qt/fast/box-shadow/border-radius-big-expected.png:
  • platform/qt/fast/box-shadow/box-shadow-transformed-expected.png:
  • platform/qt/fast/box-shadow/transform-fringing-expected.png:
  • platform/qt/fast/box-sizing/box-sizing-expected.png:
  • platform/qt/fast/box-sizing/panels-one-expected.png:
  • platform/qt/fast/box-sizing/panels-two-expected.png:
  • platform/qt/fast/canvas/canvas-size-change-after-layout-expected.png:
  • platform/qt/fast/canvas/canvas-size-change-after-layout-expected.txt:
  • platform/qt/fast/canvas/canvas-zoom-expected.png:
  • platform/qt/fast/canvas/canvas-zoom-expected.txt:
  • platform/qt/fast/clip/001-expected.png:
  • platform/qt/fast/clip/001-expected.txt:
  • platform/qt/fast/clip/002-expected.png:
  • platform/qt/fast/clip/002-expected.txt:
  • platform/qt/fast/clip/003-expected.png:
  • platform/qt/fast/clip/003-expected.txt:
  • platform/qt/fast/clip/004-expected.png:
  • platform/qt/fast/clip/004-expected.txt:
  • platform/qt/fast/clip/005-expected.png:
  • platform/qt/fast/clip/005-expected.txt:
  • platform/qt/fast/clip/006-expected.png:
  • platform/qt/fast/clip/006-expected.txt:
  • platform/qt/fast/clip/007-expected.png:
  • platform/qt/fast/clip/007-expected.txt:
  • platform/qt/fast/clip/008-expected.png:
  • platform/qt/fast/clip/008-expected.txt:
  • platform/qt/fast/clip/009-expected.png:
  • platform/qt/fast/clip/009-expected.txt:
  • platform/qt/fast/clip/010-expected.png:
  • platform/qt/fast/clip/010-expected.txt:
  • platform/qt/fast/clip/011-expected.png:
  • platform/qt/fast/clip/011-expected.txt:
  • platform/qt/fast/clip/012-expected.png:
  • platform/qt/fast/clip/012-expected.txt:
  • platform/qt/fast/clip/013-expected.png:
  • platform/qt/fast/clip/013-expected.txt:
  • platform/qt/fast/clip/014-expected.png:
  • platform/qt/fast/clip/014-expected.txt:
  • platform/qt/fast/clip/015-expected.png:
  • platform/qt/fast/clip/015-expected.txt:
  • platform/qt/fast/clip/016-expected.png:
  • platform/qt/fast/clip/016-expected.txt:
  • platform/qt/fast/clip/nestedTransparencyClip-expected.png:
  • platform/qt/fast/clip/nestedTransparencyClip-expected.txt:
  • platform/qt/fast/clip/outline-overflowClip-expected.png:
  • platform/qt/fast/clip/outline-overflowClip-expected.txt:
  • platform/qt/fast/clip/overflow-border-radius-clip-expected.png:
  • platform/qt/fast/clip/overflow-border-radius-clip-expected.txt:
  • platform/qt/fast/clip/overflow-border-radius-combinations-expected.png:
  • platform/qt/fast/clip/overflow-border-radius-combinations-expected.txt:
  • platform/qt/fast/clip/overflow-border-radius-composited-expected.png:
  • platform/qt/fast/clip/overflow-border-radius-composited-expected.txt:
  • platform/qt/fast/clip/overflow-border-radius-fixed-position-expected.png:
  • platform/qt/fast/clip/overflow-border-radius-fixed-position-expected.txt:
  • platform/qt/fast/clip/overflow-border-radius-transformed-expected.png:
  • platform/qt/fast/clip/overflow-border-radius-transformed-expected.txt:
  • platform/qt/fast/css-generated-content/001-expected.png:
  • platform/qt/fast/css-generated-content/001-expected.txt:
  • platform/qt/fast/css-generated-content/002-expected.png:
  • platform/qt/fast/css-generated-content/002-expected.txt:
  • platform/qt/fast/css-generated-content/003-expected.png:
  • platform/qt/fast/css-generated-content/003-expected.txt:
  • platform/qt/fast/css-generated-content/004-expected.png:
  • platform/qt/fast/css-generated-content/004-expected.txt:
  • platform/qt/fast/css-generated-content/005-expected.png:
  • platform/qt/fast/css-generated-content/005-expected.txt:
  • platform/qt/fast/css-generated-content/007-expected.png:
  • platform/qt/fast/css-generated-content/007-expected.txt:
  • platform/qt/fast/css-generated-content/008-expected.png:
  • platform/qt/fast/css-generated-content/008-expected.txt:
  • platform/qt/fast/css-generated-content/009-expected.png:
  • platform/qt/fast/css-generated-content/009-expected.txt:
  • platform/qt/fast/css-generated-content/011-expected.png:
  • platform/qt/fast/css-generated-content/011-expected.txt:
  • platform/qt/fast/css-generated-content/012-expected.png:
  • platform/qt/fast/css-generated-content/012-expected.txt:
  • platform/qt/fast/css-generated-content/013-expected.png:
  • platform/qt/fast/css-generated-content/013-expected.txt:
  • platform/qt/fast/css-generated-content/014-expected.png:
  • platform/qt/fast/css-generated-content/014-expected.txt:
  • platform/qt/fast/css-generated-content/015-expected.png:
  • platform/qt/fast/css-generated-content/015-expected.txt:
  • platform/qt/fast/css-generated-content/016-expected.png:
  • platform/qt/fast/css-generated-content/016-expected.txt:
  • platform/qt/fast/css-generated-content/after-duplicated-after-split-expected.png:
  • platform/qt/fast/css-generated-content/after-duplicated-after-split-expected.txt:
  • platform/qt/fast/css-generated-content/after-order-expected.png:
  • platform/qt/fast/css-generated-content/after-order-expected.txt:
  • platform/qt/fast/css-generated-content/before-with-first-letter-expected.png:
  • platform/qt/fast/css-generated-content/before-with-first-letter-expected.txt:
  • platform/qt/fast/css-generated-content/beforeAfter-interdocument-expected.png:
  • platform/qt/fast/css-generated-content/beforeAfter-interdocument-expected.txt:
  • platform/qt/fast/css-generated-content/hover-style-change-expected.png:
  • platform/qt/fast/css-generated-content/hover-style-change-expected.txt:
  • platform/qt/fast/css-generated-content/inline-display-types-expected.png:
  • platform/qt/fast/css-generated-content/inline-display-types-expected.txt:
  • platform/qt/fast/css-generated-content/no-openclose-quote-expected.png:
  • platform/qt/fast/css-generated-content/no-openclose-quote-expected.txt:
  • platform/qt/fast/css-generated-content/table-before-after-child-add-expected.png:
  • platform/qt/fast/css-generated-content/table-before-after-child-add-expected.txt:
  • platform/qt/fast/css-generated-content/table-cell-before-after-child-add-expected.png:
  • platform/qt/fast/css-generated-content/table-cell-before-after-child-add-expected.txt:
  • platform/qt/fast/css-generated-content/table-cell-before-content-expected.png:
  • platform/qt/fast/css-generated-content/table-cell-before-content-expected.txt:
  • platform/qt/fast/css-generated-content/table-row-before-after-child-add-expected.png:
  • platform/qt/fast/css-generated-content/table-row-before-after-child-add-expected.txt:
  • platform/qt/fast/css-generated-content/table-row-before-after-expected.png:
  • platform/qt/fast/css-generated-content/table-row-before-after-expected.txt:
  • platform/qt/fast/css-generated-content/table-row-group-to-inline-expected.png:
  • platform/qt/fast/css-generated-content/table-row-group-to-inline-expected.txt:
  • platform/qt/fast/css-generated-content/table-row-group-with-before-expected.png:
  • platform/qt/fast/css-generated-content/table-row-group-with-before-expected.txt:
  • platform/qt/fast/css-generated-content/table-row-with-before-expected.png:
  • platform/qt/fast/css-generated-content/table-row-with-before-expected.txt:
  • platform/qt/fast/css-generated-content/table-table-before-after-child-add-expected.png:
  • platform/qt/fast/css-generated-content/table-table-before-after-child-add-expected.txt:
  • platform/qt/fast/css-generated-content/table-with-before-expected.png:
  • platform/qt/fast/css-generated-content/table-with-before-expected.txt:
  • platform/qt/fast/css-generated-content/visibleContentHiddenParent-expected.png:
  • platform/qt/fast/css-generated-content/visibleContentHiddenParent-expected.txt:
  • platform/qt/fast/css-generated-content/wbr-with-before-content-expected.png:
  • platform/qt/fast/css-generated-content/wbr-with-before-content-expected.txt:
  • platform/qt/fast/css/001-expected.png:
  • platform/qt/fast/css/001-expected.txt:
  • platform/qt/fast/css/002-expected.png:
  • platform/qt/fast/css/002-expected.txt:
  • platform/qt/fast/css/003-expected.png:
  • platform/qt/fast/css/003-expected.txt:
  • platform/qt/fast/css/004-expected.png:
  • platform/qt/fast/css/004-expected.txt:
  • platform/qt/fast/css/005-expected.png:
  • platform/qt/fast/css/005-expected.txt:
  • platform/qt/fast/css/007-expected.png:
  • platform/qt/fast/css/007-expected.txt:
  • platform/qt/fast/css/008-expected.png:
  • platform/qt/fast/css/008-expected.txt:
  • platform/qt/fast/css/MarqueeLayoutTest-expected.png:
  • platform/qt/fast/css/MarqueeLayoutTest-expected.txt:
  • platform/qt/fast/css/ZeroOpacityLayers-expected.png:
  • platform/qt/fast/css/ZeroOpacityLayers-expected.txt:
  • platform/qt/fast/css/ZeroOpacityLayers2-expected.png:
  • platform/qt/fast/css/ZeroOpacityLayers2-expected.txt:
  • platform/qt/fast/css/absolute-poition-in-rtl-parent-expected.png:
  • platform/qt/fast/css/absolute-poition-in-rtl-parent-expected.txt:
  • platform/qt/fast/css/acid2-expected.png:
  • platform/qt/fast/css/acid2-expected.txt:
  • platform/qt/fast/css/acid2-pixel-expected.png:
  • platform/qt/fast/css/acid2-pixel-expected.txt:
  • platform/qt/fast/css/attribute-selector-dynamic-expected.png: Added.
  • platform/qt/fast/css/attribute-selector-dynamic-expected.txt:
  • platform/qt/fast/css/attribute-selector-empty-value-expected.png:
  • platform/qt/fast/css/attribute-selector-empty-value-expected.txt:
  • platform/qt/fast/css/background-image-with-baseurl-expected.png:
  • platform/qt/fast/css/background-image-with-baseurl-expected.txt:
  • platform/qt/fast/css/background-shorthand-invalid-url-expected.png:
  • platform/qt/fast/css/background-shorthand-invalid-url-expected.txt:
  • platform/qt/fast/css/beforeSelectorOnCodeElement-expected.png:
  • platform/qt/fast/css/beforeSelectorOnCodeElement-expected.txt:
  • platform/qt/fast/css/begin-end-contain-selector-empty-value-expected.png:
  • platform/qt/fast/css/begin-end-contain-selector-empty-value-expected.txt:
  • platform/qt/fast/css/bidi-override-in-anonymous-block-expected.png:
  • platform/qt/fast/css/bidi-override-in-anonymous-block-expected.txt:
  • platform/qt/fast/css/border-height-expected.png:
  • platform/qt/fast/css/border-height-expected.txt:
  • platform/qt/fast/css/border-radius-outline-offset-expected.png:
  • platform/qt/fast/css/border-radius-outline-offset-expected.txt:
  • platform/qt/fast/css/child-style-can-override-visited-style-expected.png:
  • platform/qt/fast/css/child-style-can-override-visited-style-expected.txt:
  • platform/qt/fast/css/clip-text-in-scaled-div-expected.png:
  • platform/qt/fast/css/clip-text-in-scaled-div-expected.txt:
  • platform/qt/fast/css/clip-zooming-expected.png:
  • platform/qt/fast/css/clip-zooming-expected.txt:
  • platform/qt/fast/css/color-correction-backgrounds-and-text-expected.png:
  • platform/qt/fast/css/color-correction-backgrounds-and-text-expected.txt:
  • platform/qt/fast/css/color-quirk-expected.png:
  • platform/qt/fast/css/color-quirk-expected.txt:
  • platform/qt/fast/css/color-strict-expected.png:
  • platform/qt/fast/css/color-strict-expected.txt:
  • platform/qt/fast/css/compare-content-style-expected.png:
  • platform/qt/fast/css/compare-content-style-expected.txt:
  • platform/qt/fast/css/continuationCrash-expected.png:
  • platform/qt/fast/css/continuationCrash-expected.txt:
  • platform/qt/fast/css/counters/counter-text-security-expected.png:
  • platform/qt/fast/css/counters/counter-text-security-expected.txt:
  • platform/qt/fast/css/counters/counter-text-transform-expected.png:
  • platform/qt/fast/css/counters/counter-text-transform-expected.txt:
  • platform/qt/fast/css/create_element_align-expected.png:
  • platform/qt/fast/css/create_element_align-expected.txt:
  • platform/qt/fast/css/css-imports-expected.png:
  • platform/qt/fast/css/css-imports-expected.txt:
  • platform/qt/fast/css/css1_forward_compatible_parsing-expected.png:
  • platform/qt/fast/css/css1_forward_compatible_parsing-expected.txt:
  • platform/qt/fast/css/css2-system-fonts-expected.png:
  • platform/qt/fast/css/css2-system-fonts-expected.txt:
  • platform/qt/fast/css/css3-modsel-22-expected.png:
  • platform/qt/fast/css/css3-modsel-22-expected.txt:
  • platform/qt/fast/css/css3-nth-child-expected.png:
  • platform/qt/fast/css/css3-nth-child-expected.txt:
  • platform/qt/fast/css/css3-space-in-nth-and-lang-expected.png: Added.
  • platform/qt/fast/css/css3-space-in-nth-and-lang-expected.txt:
  • platform/qt/fast/css/disabled-author-styles-expected.png:
  • platform/qt/fast/css/disabled-author-styles-expected.txt:
  • platform/qt/fast/css/dynamic-sibling-selector-expected.png:
  • platform/qt/fast/css/dynamic-sibling-selector-expected.txt:
  • platform/qt/fast/css/empty-body-test-expected.png:
  • platform/qt/fast/css/empty-body-test-expected.txt:
  • platform/qt/fast/css/empty-generated-content-expected.png:
  • platform/qt/fast/css/empty-generated-content-expected.txt:
  • platform/qt/fast/css/empty-pseudo-class-expected.png:
  • platform/qt/fast/css/empty-pseudo-class-expected.txt:
  • platform/qt/fast/css/error-in-last-decl-expected.png:
  • platform/qt/fast/css/error-in-last-decl-expected.txt:
  • platform/qt/fast/css/fieldset-display-row-expected.png:
  • platform/qt/fast/css/fieldset-display-row-expected.txt:
  • platform/qt/fast/css/find-next-layer-expected.png:
  • platform/qt/fast/css/find-next-layer-expected.txt:
  • platform/qt/fast/css/first-child-pseudo-class-expected.png:
  • platform/qt/fast/css/first-child-pseudo-class-expected.txt:
  • platform/qt/fast/css/first-letter-capitalized-expected.png:
  • platform/qt/fast/css/first-letter-capitalized-expected.txt:
  • platform/qt/fast/css/first-letter-detach-expected.png:
  • platform/qt/fast/css/first-letter-detach-expected.txt:
  • platform/qt/fast/css/first-letter-first-line-hover-expected.png:
  • platform/qt/fast/css/first-letter-first-line-hover-expected.txt:
  • platform/qt/fast/css/first-letter-float-after-float-expected.png:
  • platform/qt/fast/css/first-letter-float-after-float-expected.txt:
  • platform/qt/fast/css/first-letter-float-expected.png:
  • platform/qt/fast/css/first-letter-float-expected.txt:
  • platform/qt/fast/css/first-letter-hover-expected.png:
  • platform/qt/fast/css/first-letter-hover-expected.txt:
  • platform/qt/fast/css/first-letter-punctuation-expected.png:
  • platform/qt/fast/css/first-letter-punctuation-expected.txt:
  • platform/qt/fast/css/first-letter-recalculation-expected.png:
  • platform/qt/fast/css/first-letter-recalculation-expected.txt:
  • platform/qt/fast/css/first-letter-skip-out-of-flow-expected.png:
  • platform/qt/fast/css/first-letter-skip-out-of-flow-expected.txt:
  • platform/qt/fast/css/first-letter-visibility-expected.png:
  • platform/qt/fast/css/first-letter-visibility-expected.txt:
  • platform/qt/fast/css/first-line-text-decoration-expected.png:
  • platform/qt/fast/css/first-line-text-decoration-expected.txt:
  • platform/qt/fast/css/first-line-text-decoration-inherited-from-parent-expected.png:
  • platform/qt/fast/css/first-line-text-decoration-inherited-from-parent-expected.txt:
  • platform/qt/fast/css/first-of-type-pseudo-class-expected.png:
  • platform/qt/fast/css/first-of-type-pseudo-class-expected.txt:
  • platform/qt/fast/css/focus-ring-detached-expected.png:
  • platform/qt/fast/css/focus-ring-detached-expected.txt:
  • platform/qt/fast/css/focus-ring-multiline-expected.png:
  • platform/qt/fast/css/focus-ring-multiline-expected.txt:
  • platform/qt/fast/css/focus-ring-multiline-writingmode-vertical-expected.png:
  • platform/qt/fast/css/focus-ring-multiline-writingmode-vertical-expected.txt:
  • platform/qt/fast/css/focus-ring-outline-color-expected.png:
  • platform/qt/fast/css/focus-ring-outline-color-expected.txt:
  • platform/qt/fast/css/focus-ring-outline-offset-expected.png:
  • platform/qt/fast/css/focus-ring-outline-offset-expected.txt:
  • platform/qt/fast/css/focus-ring-outline-width-expected.png:
  • platform/qt/fast/css/focus-ring-outline-width-expected.txt:
  • platform/qt/fast/css/font-face-default-font-expected.png:
  • platform/qt/fast/css/font-face-default-font-expected.txt:
  • platform/qt/fast/css/font-face-implicit-local-font-expected.png:
  • platform/qt/fast/css/font-face-implicit-local-font-expected.txt:
  • platform/qt/fast/css/font-face-in-media-rule-expected.png:
  • platform/qt/fast/css/font-face-in-media-rule-expected.txt:
  • platform/qt/fast/css/font-face-multiple-faces-expected.png:
  • platform/qt/fast/css/font-face-multiple-faces-expected.txt:
  • platform/qt/fast/css/font-face-opentype-expected.png:
  • platform/qt/fast/css/font-face-opentype-expected.txt:
  • platform/qt/fast/css/font-face-synthetic-bold-italic-expected.png:
  • platform/qt/fast/css/font-face-synthetic-bold-italic-expected.txt:
  • platform/qt/fast/css/font-face-weight-matching-expected.png:
  • platform/qt/fast/css/font-face-weight-matching-expected.txt:
  • platform/qt/fast/css/font-family-pictograph-expected.png:
  • platform/qt/fast/css/font-family-pictograph-expected.txt:
  • platform/qt/fast/css/font-shorthand-weight-only-expected.png:
  • platform/qt/fast/css/font-shorthand-weight-only-expected.txt:
  • platform/qt/fast/css/font-size-negative-expected.png:
  • platform/qt/fast/css/font-size-negative-expected.txt: Added.
  • platform/qt/fast/css/font-smoothing-expected.png: Added.
  • platform/qt/fast/css/font-smoothing-expected.txt:
  • platform/qt/fast/css/font_property_normal-expected.png:
  • platform/qt/fast/css/font_property_normal-expected.txt:
  • platform/qt/fast/css/h1-in-section-elements-expected.png:
  • platform/qt/fast/css/h1-in-section-elements-expected.txt:
  • platform/qt/fast/css/hover-subselector-expected.png:
  • platform/qt/fast/css/hover-subselector-expected.txt:
  • platform/qt/fast/css/hsl-color-expected.png:
  • platform/qt/fast/css/hsl-color-expected.txt:
  • platform/qt/fast/css/hsla-color-expected.png:
  • platform/qt/fast/css/hsla-color-expected.txt:
  • platform/qt/fast/css/ignore-text-zoom-expected.png:
  • platform/qt/fast/css/ignore-text-zoom-expected.txt:
  • platform/qt/fast/css/import-rule-regression-11590-expected.png:
  • platform/qt/fast/css/import-rule-regression-11590-expected.txt:
  • platform/qt/fast/css/import_with_baseurl-expected.png:
  • platform/qt/fast/css/import_with_baseurl-expected.txt:
  • platform/qt/fast/css/inline-element-line-break-expected.png: Added.
  • platform/qt/fast/css/inline-element-line-break-expected.txt:
  • platform/qt/fast/css/inline-properties-important-expected.png:
  • platform/qt/fast/css/inline-properties-important-expected.txt:
  • platform/qt/fast/css/input-search-padding-expected.png:
  • platform/qt/fast/css/input-search-padding-expected.txt:
  • platform/qt/fast/css/invalid-percentage-property-expected.png:
  • platform/qt/fast/css/invalid-percentage-property-expected.txt:
  • platform/qt/fast/css/invalid-pseudo-classes-expected.png:
  • platform/qt/fast/css/invalid-pseudo-classes-expected.txt:
  • platform/qt/fast/css/invalidation-errors-2-expected.png:
  • platform/qt/fast/css/invalidation-errors-2-expected.txt:
  • platform/qt/fast/css/invalidation-errors-3-expected.png:
  • platform/qt/fast/css/invalidation-errors-3-expected.txt:
  • platform/qt/fast/css/invalidation-errors-expected.png:
  • platform/qt/fast/css/invalidation-errors-expected.txt:
  • platform/qt/fast/css/last-child-pseudo-class-expected.png:
  • platform/qt/fast/css/last-child-pseudo-class-expected.txt:
  • platform/qt/fast/css/last-of-type-pseudo-class-expected.png:
  • platform/qt/fast/css/last-of-type-pseudo-class-expected.txt:
  • platform/qt/fast/css/layerZOrderCrash-expected.png:
  • platform/qt/fast/css/layerZOrderCrash-expected.txt:
  • platform/qt/fast/css/line-height-expected.png:
  • platform/qt/fast/css/line-height-expected.txt:
  • platform/qt/fast/css/line-height-font-order-expected.png:
  • platform/qt/fast/css/line-height-font-order-expected.txt:
  • platform/qt/fast/css/line-height-negative-expected.png:
  • platform/qt/fast/css/line-height-negative-expected.txt:
  • platform/qt/fast/css/line-height-overflow-expected.png:
  • platform/qt/fast/css/line-height-overflow-expected.txt:
  • platform/qt/fast/css/link-outside-head-expected.png:
  • platform/qt/fast/css/link-outside-head-expected.txt:
  • platform/qt/fast/css/list-outline-expected.png:
  • platform/qt/fast/css/list-outline-expected.txt:
  • platform/qt/fast/css/margin-bottom-form-element-quirk-expected.png:
  • platform/qt/fast/css/margin-bottom-form-element-quirk-expected.txt:
  • platform/qt/fast/css/margin-bottom-form-element-strict-expected.png:
  • platform/qt/fast/css/margin-bottom-form-element-strict-expected.txt:
  • platform/qt/fast/css/margin-top-bottom-dynamic-expected.png:
  • platform/qt/fast/css/margin-top-bottom-dynamic-expected.txt:
  • platform/qt/fast/css/max-height-none-expected.png:
  • platform/qt/fast/css/max-height-none-expected.txt:
  • platform/qt/fast/css/namespaces/001-expected.png:
  • platform/qt/fast/css/namespaces/001-expected.txt:
  • platform/qt/fast/css/namespaces/002-expected.png:
  • platform/qt/fast/css/namespaces/002-expected.txt:
  • platform/qt/fast/css/namespaces/003-expected.png:
  • platform/qt/fast/css/namespaces/003-expected.txt:
  • platform/qt/fast/css/namespaces/004-expected.png:
  • platform/qt/fast/css/namespaces/004-expected.txt:
  • platform/qt/fast/css/namespaces/005-expected.png:
  • platform/qt/fast/css/namespaces/005-expected.txt:
  • platform/qt/fast/css/namespaces/006-expected.png:
  • platform/qt/fast/css/namespaces/006-expected.txt:
  • platform/qt/fast/css/namespaces/007-expected.png:
  • platform/qt/fast/css/namespaces/007-expected.txt:
  • platform/qt/fast/css/namespaces/namespaces-comments-expected.png:
  • platform/qt/fast/css/namespaces/namespaces-comments-expected.txt:
  • platform/qt/fast/css/namespaces/namespaces-empty-expected.png:
  • platform/qt/fast/css/namespaces/namespaces-empty-expected.txt:
  • platform/qt/fast/css/namespaces/namespaces-escapes-expected.png: Copied from LayoutTests/platform/qt/fast/body-propagation/background-color/003-xhtml-expected.png.
  • platform/qt/fast/css/namespaces/namespaces-escapes-expected.txt:
  • platform/qt/fast/css/namespaces/namespaces-invalid-at-expected.png: Added.
  • platform/qt/fast/css/namespaces/namespaces-invalid-at-expected.txt:
  • platform/qt/fast/css/negative-leading-expected.png:
  • platform/qt/fast/css/negative-leading-expected.txt:
  • platform/qt/fast/css/negative-nth-child-expected.png:
  • platform/qt/fast/css/negative-nth-child-expected.txt:
  • platform/qt/fast/css/nested-floating-relative-position-percentages-expected.png: Added.
  • platform/qt/fast/css/nested-floating-relative-position-percentages-expected.txt:
  • platform/qt/fast/css/nested-layers-with-hover-expected.png:
  • platform/qt/fast/css/nested-layers-with-hover-expected.txt:
  • platform/qt/fast/css/non-empty-span-expected.png:
  • platform/qt/fast/css/non-empty-span-expected.txt:
  • platform/qt/fast/css/non-standard-checkbox-size-expected.png:
  • platform/qt/fast/css/non-standard-checkbox-size-expected.txt:
  • platform/qt/fast/css/nth-child-dynamic-expected.png: Added.
  • platform/qt/fast/css/nth-child-dynamic-expected.txt:
  • platform/qt/fast/css/only-child-pseudo-class-expected.png:
  • platform/qt/fast/css/only-child-pseudo-class-expected.txt:
  • platform/qt/fast/css/only-of-type-pseudo-class-expected.png:
  • platform/qt/fast/css/only-of-type-pseudo-class-expected.txt:
  • platform/qt/fast/css/outline-auto-empty-rects-expected.png:
  • platform/qt/fast/css/outline-auto-empty-rects-expected.txt:
  • platform/qt/fast/css/outline-auto-location-expected.png:
  • platform/qt/fast/css/outline-auto-location-expected.txt:
  • platform/qt/fast/css/outline-narrowLine-expected.png:
  • platform/qt/fast/css/outline-narrowLine-expected.txt:
  • platform/qt/fast/css/pendingStylesheetFontSize-expected.png:
  • platform/qt/fast/css/pendingStylesheetFontSize-expected.txt:
  • platform/qt/fast/css/percent-top-relative-container-height-unspecified-expected.png:
  • platform/qt/fast/css/percent-top-relative-container-height-unspecified-expected.txt:
  • platform/qt/fast/css/percent-top-value-with-relative-position-expected.png:
  • platform/qt/fast/css/percent-top-value-with-relative-position-expected.txt:
  • platform/qt/fast/css/position-negative-top-margin-expected.png:
  • platform/qt/fast/css/position-negative-top-margin-expected.txt:
  • platform/qt/fast/css/preserve-user-specified-zoom-level-on-reload-expected.png:
  • platform/qt/fast/css/preserve-user-specified-zoom-level-on-reload-expected.txt:
  • platform/qt/fast/css/pseudo-element-line-break-expected.png: Added.
  • platform/qt/fast/css/pseudo-element-line-break-expected.txt:
  • platform/qt/fast/css/quirk-orphaned-units-expected.png:
  • platform/qt/fast/css/quirk-orphaned-units-expected.txt:
  • platform/qt/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.png:
  • platform/qt/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.txt:
  • platform/qt/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.png:
  • platform/qt/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.txt:
  • platform/qt/fast/css/relative-positioned-block-nested-with-inline-parent-expected.png:
  • platform/qt/fast/css/relative-positioned-block-nested-with-inline-parent-expected.txt:
  • platform/qt/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.png:
  • platform/qt/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.txt:
  • platform/qt/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.png:
  • platform/qt/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.txt:
  • platform/qt/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.png:
  • platform/qt/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.txt:
  • platform/qt/fast/css/relative-positioned-block-with-inline-ancestor-expected.png:
  • platform/qt/fast/css/relative-positioned-block-with-inline-ancestor-expected.txt:
  • platform/qt/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.png:
  • platform/qt/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.txt:
  • platform/qt/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.png:
  • platform/qt/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.txt:
  • platform/qt/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.png:
  • platform/qt/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.txt:
  • platform/qt/fast/css/rem-dynamic-scaling-expected.png: Added.
  • platform/qt/fast/css/rem-dynamic-scaling-expected.txt:
  • platform/qt/fast/css/rem-units-on-root-expected.png: Added.
  • platform/qt/fast/css/rem-units-on-root-expected.txt:
  • platform/qt/fast/css/resize-corner-tracking-expected.png:
  • platform/qt/fast/css/resize-corner-tracking-expected.txt:
  • platform/qt/fast/css/resize-corner-tracking-transformed-expected.png:
  • platform/qt/fast/css/resize-corner-tracking-transformed-expected.txt:
  • platform/qt/fast/css/rgb-float-expected.png:
  • platform/qt/fast/css/rgb-float-expected.txt:
  • platform/qt/fast/css/selector-set-attribute-expected.png:
  • platform/qt/fast/css/selector-set-attribute-expected.txt:
  • platform/qt/fast/css/shadow-multiple-expected.png:
  • platform/qt/fast/css/shadow-multiple-expected.txt:
  • platform/qt/fast/css/simple-selector-chain-parsing-expected.png:
  • platform/qt/fast/css/simple-selector-chain-parsing-expected.txt:
  • platform/qt/fast/css/style-outside-head-expected.png:
  • platform/qt/fast/css/style-outside-head-expected.txt:
  • platform/qt/fast/css/style-parsed-outside-head-expected.png:
  • platform/qt/fast/css/style-parsed-outside-head-expected.txt:
  • platform/qt/fast/css/table-text-align-quirk-expected.png:
  • platform/qt/fast/css/table-text-align-quirk-expected.txt:
  • platform/qt/fast/css/table-text-align-strict-expected.png:
  • platform/qt/fast/css/table-text-align-strict-expected.txt:
  • platform/qt/fast/css/target-fragment-match-expected.png:
  • platform/qt/fast/css/target-fragment-match-expected.txt:
  • platform/qt/fast/css/text-align-expected.png:
  • platform/qt/fast/css/text-align-expected.txt:
  • platform/qt/fast/css/text-input-with-webkit-border-radius-expected.png:
  • platform/qt/fast/css/text-input-with-webkit-border-radius-expected.txt:
  • platform/qt/fast/css/text-overflow-input-expected.png:
  • platform/qt/fast/css/text-overflow-input-expected.txt:
  • platform/qt/fast/css/text-rendering-expected.png: Added.
  • platform/qt/fast/css/text-rendering-expected.txt:
  • platform/qt/fast/css/text-transform-select-expected.png:
  • platform/qt/fast/css/text-transform-select-expected.txt:
  • platform/qt/fast/css/textCapitalizeEdgeCases-expected.png:
  • platform/qt/fast/css/textCapitalizeEdgeCases-expected.txt:
  • platform/qt/fast/css/transform-default-parameter-expected.png:
  • platform/qt/fast/css/transform-default-parameter-expected.txt:
  • platform/qt/fast/css/transformed-mask-expected.png:
  • platform/qt/fast/css/transformed-mask-expected.txt:
  • platform/qt/fast/css/universal-hover-quirk-expected.png:
  • platform/qt/fast/css/universal-hover-quirk-expected.txt:
  • platform/qt/fast/css/value-list-out-of-bounds-crash-expected.png:
  • platform/qt/fast/css/value-list-out-of-bounds-crash-expected.txt:
  • platform/qt/fast/css/visibility-hit-test-expected.png:
  • platform/qt/fast/css/visibility-hit-test-expected.txt:
  • platform/qt/fast/css/word-space-extra-expected.png:
  • platform/qt/fast/css/word-space-extra-expected.txt:
  • platform/qt/fast/css/zoom-font-size-expected.png:
  • platform/qt/fast/css/zoom-font-size-expected.txt:
  • platform/qt/fast/doctypes/001-expected.png: Added.
  • platform/qt/fast/doctypes/001-expected.txt:
  • platform/qt/fast/doctypes/002-expected.png: Added.
  • platform/qt/fast/doctypes/002-expected.txt:
  • platform/qt/fast/doctypes/003-expected.png:
  • platform/qt/fast/doctypes/003-expected.txt:
  • platform/qt/fast/doctypes/004-expected.png: Added.
  • platform/qt/fast/doctypes/004-expected.txt:
  • platform/qt/fast/dom/52776-expected.png:
  • platform/qt/fast/dom/52776-expected.txt:
  • platform/qt/fast/dom/Element/class-attribute-whitespace-expected.png:
  • platform/qt/fast/dom/Element/class-attribute-whitespace-expected.txt:
  • platform/qt/fast/dom/Element/null-offset-parent-expected.png:
  • platform/qt/fast/dom/Element/null-offset-parent-expected.txt:
  • platform/qt/fast/dom/HTMLElement/bdo-expected.png:
  • platform/qt/fast/dom/HTMLElement/bdo-expected.txt:
  • platform/qt/fast/dom/HTMLHeadElement/head-link-style-href-check-expected.png:
  • platform/qt/fast/dom/HTMLHeadElement/head-link-style-href-check-expected.txt:
  • platform/qt/fast/dom/HTMLInputElement/input-image-alt-text-expected.png:
  • platform/qt/fast/dom/HTMLInputElement/input-image-alt-text-expected.txt:
  • platform/qt/fast/dom/HTMLLinkElement/pending-stylesheet-count-expected.png:
  • platform/qt/fast/dom/HTMLLinkElement/pending-stylesheet-count-expected.txt:
  • platform/qt/fast/dom/HTMLMeterElement/meter-boundary-values-expected.png:
  • platform/qt/fast/dom/HTMLMeterElement/meter-boundary-values-expected.txt:
  • platform/qt/fast/dom/HTMLMeterElement/meter-optimums-expected.png:
  • platform/qt/fast/dom/HTMLMeterElement/meter-optimums-expected.txt:
  • platform/qt/fast/dom/HTMLMeterElement/meter-styles-changing-pseudo-expected.png:
  • platform/qt/fast/dom/HTMLMeterElement/meter-styles-changing-pseudo-expected.txt:
  • platform/qt/fast/dom/HTMLMeterElement/meter-styles-expected.png:
  • platform/qt/fast/dom/HTMLMeterElement/meter-styles-expected.txt:
  • platform/qt/fast/dom/HTMLObjectElement/vspace-hspace-as-number-expected.png:
  • platform/qt/fast/dom/HTMLObjectElement/vspace-hspace-as-number-expected.txt:
  • platform/qt/fast/dom/HTMLProgressElement/indeterminate-progress-001-expected.png:
  • platform/qt/fast/dom/HTMLProgressElement/indeterminate-progress-001-expected.txt:
  • platform/qt/fast/dom/HTMLProgressElement/progress-bar-value-pseudo-element-expected.png:
  • platform/qt/fast/dom/HTMLProgressElement/progress-bar-value-pseudo-element-expected.txt:
  • platform/qt/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.png:
  • platform/qt/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.txt:
  • platform/qt/fast/dom/HTMLTableElement/colSpan-expected.png:
  • platform/qt/fast/dom/HTMLTableElement/colSpan-expected.txt:
  • platform/qt/fast/dom/HTMLTableElement/createCaption-expected.png:
  • platform/qt/fast/dom/HTMLTableElement/createCaption-expected.txt:
  • platform/qt/fast/dom/HTMLTextAreaElement/reset-textarea-expected.png:
  • platform/qt/fast/dom/HTMLTextAreaElement/reset-textarea-expected.txt:
  • platform/qt/fast/dom/Range/create-contextual-fragment-expected.png:
  • platform/qt/fast/dom/Range/create-contextual-fragment-expected.txt:
  • platform/qt/fast/dom/Range/surroundContents-1-expected.png:
  • platform/qt/fast/dom/Range/surroundContents-1-expected.txt:
  • platform/qt/fast/dom/Window/open-existing-pop-up-blocking-expected.png:
  • platform/qt/fast/dom/Window/open-existing-pop-up-blocking-expected.txt:
  • platform/qt/fast/dom/anchor-text-expected.png:
  • platform/qt/fast/dom/anchor-text-expected.txt:
  • platform/qt/fast/dom/blur-contenteditable-expected.png:
  • platform/qt/fast/dom/blur-contenteditable-expected.txt:
  • platform/qt/fast/dom/children-nodes-expected.png:
  • platform/qt/fast/dom/children-nodes-expected.txt:
  • platform/qt/fast/dom/clone-contents-0-end-offset-expected.png:
  • platform/qt/fast/dom/clone-contents-0-end-offset-expected.txt:
  • platform/qt/fast/dom/clone-node-dynamic-style-expected.png:
  • platform/qt/fast/dom/clone-node-dynamic-style-expected.txt:
  • platform/qt/fast/dom/createDocumentType-expected.png:
  • platform/qt/fast/dom/createDocumentType-expected.txt:
  • platform/qt/fast/dom/css-mediarule-deleteRule-update-expected.png:
  • platform/qt/fast/dom/css-mediarule-deleteRule-update-expected.txt:
  • platform/qt/fast/dom/css-mediarule-insertRule-update-expected.png:
  • platform/qt/fast/dom/css-mediarule-insertRule-update-expected.txt:
  • platform/qt/fast/dom/css-rule-functions-expected.png:
  • platform/qt/fast/dom/css-rule-functions-expected.txt:
  • platform/qt/fast/dom/gc-10-expected.png:
  • platform/qt/fast/dom/gc-10-expected.txt:
  • platform/qt/fast/dom/importNodeHTML-expected.png:
  • platform/qt/fast/dom/importNodeHTML-expected.txt:
  • platform/qt/fast/dom/importNodeXML-expected.png:
  • platform/qt/fast/dom/importNodeXML-expected.txt:
  • platform/qt/fast/dom/inner-text-expected.png:
  • platform/qt/fast/dom/inner-text-expected.txt:
  • platform/qt/fast/dom/isindex-001-expected.png:
  • platform/qt/fast/dom/isindex-001-expected.txt:
  • platform/qt/fast/dom/outerText-expected.png:
  • platform/qt/fast/dom/outerText-expected.txt:
  • platform/qt/fast/dom/row-inner-text-expected.png:
  • platform/qt/fast/dom/row-inner-text-expected.txt:
  • platform/qt/fast/dom/rtl-scroll-to-leftmost-and-resize-expected.png:
  • platform/qt/fast/dom/rtl-scroll-to-leftmost-and-resize-expected.txt:
  • platform/qt/fast/dom/scroll-reveal-left-overflow-expected.png:
  • platform/qt/fast/dom/scroll-reveal-left-overflow-expected.txt:
  • platform/qt/fast/dom/scroll-reveal-top-overflow-expected.png:
  • platform/qt/fast/dom/scroll-reveal-top-overflow-expected.txt:
4:50 AM Changeset in webkit [123091] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

Web Inspector: CodeGeneratorInspector.py: fix output write logic to support incremental build
https://bugs.webkit.org/show_bug.cgi?id=90642

Patch by Peter Rybin <peter.rybin@gmail.com> on 2012-07-19
Reviewed by Yury Semikhatsky.

A small intermediate writer is added. It handles comparing old and new source before actual writing.

  • inspector/CodeGeneratorInspector.py:

(flatten_list):
(SmartOutput):
(SmartOutput.init):
(SmartOutput.write):
(SmartOutput.close):

4:44 AM Changeset in webkit [123090] by kkristof@inf.u-szeged.hu
  • 2 edits in trunk/LayoutTests

[Qt] Unreviewed gardening after r123081. Skipped a failing reftest.

Patch by János Badics <János Badics> on 2012-07-19

  • platform/qt/Skipped:
4:07 AM Changeset in webkit [123089] by mario@webkit.org
  • 4 edits in trunk

[GTK] Enable MHTML support by default at build time
https://bugs.webkit.org/show_bug.cgi?id=89987

Reviewed by Carlos Garcia Campos.

.:

Enable MHTML support by default for GTK in configure.ac.

  • configure.ac:

Tools:

Enable MHTML support by default for GTK in build-webkit.

  • Scripts/webkitperl/FeatureList.pm:
3:59 AM Changeset in webkit [123088] by mario@webkit.org
  • 4 edits
    9 moves in trunk

[GTK] MHTML files not being loaded due to reported mime type not supported
https://bugs.webkit.org/show_bug.cgi?id=89978

Reviewed by Carlos Garcia Campos.

Source/WebCore:

Make 'message/rfc822' a supported MIME type for MHTML files in GTK.

  • loader/MainResourceLoader.cpp:

(WebCore::MainResourceLoader::continueAfterContentPolicy): Add
'message/rfc822' to the list of MIME types to be considered to
avoid them bypasing cross-domain security checks, only for GTK.

  • loader/archive/ArchiveFactory.cpp:

(WebCore::archiveMIMETypes): Add 'message/rfc822' to the list of
supported MIME types when MHTML support is enabled in GTK.

LayoutTests:

Move expectations for MHTML tests out of chromium's specific directory.

  • mhtml/multi_frames_binary-expected.txt: Renamed from LayoutTests/platform/chromium/mhtml/multi_frames_binary-expected.txt.
  • mhtml/multi_frames_ie-expected.txt: Renamed from LayoutTests/platform/chromium/mhtml/multi_frames_ie-expected.txt.
  • mhtml/multi_frames_unmht-expected.txt: Renamed from LayoutTests/platform/chromium/mhtml/multi_frames_unmht-expected.txt.
  • mhtml/page_with_css_and_js_ie-expected.txt: Renamed from LayoutTests/platform/chromium/mhtml/page_with_css_and_js_ie-expected.txt.
  • mhtml/page_with_css_and_js_unmht-expected.txt: Renamed from LayoutTests/platform/chromium/mhtml/page_with_css_and_js_unmht-expected.txt.
  • mhtml/page_with_image_ie-expected.txt: Renamed from LayoutTests/platform/chromium/mhtml/page_with_image_ie-expected.txt.
  • mhtml/page_with_image_unmht-expected.txt: Renamed from LayoutTests/platform/chromium/mhtml/page_with_image_unmht-expected.txt.
  • mhtml/simple_page_ie-expected.txt: Renamed from LayoutTests/platform/chromium/mhtml/simple_page_ie-expected.txt.
  • mhtml/simple_page_unmht-expected.txt: Renamed from LayoutTests/platform/chromium/mhtml/simple_page_unmht-expected.txt.
3:46 AM Changeset in webkit [123087] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

[EFL] Inspector tests needs new baselines after r122952
https://bugs.webkit.org/show_bug.cgi?id=91624

Unreviewed gardening.

Add some tests to Skipped list.

Patch by Seokju Kwon <seokju.kwon@samsung.com> on 2012-07-19

  • platform/efl/Skipped:
3:03 AM Changeset in webkit [123086] by commit-queue@webkit.org
  • 7 edits
    1 add in trunk/Source/WebCore

Web Inspector: Factor ExtensionView into separate file
https://bugs.webkit.org/show_bug.cgi?id=91699

Patch by Jan Keromnes <janx@linux.com> on 2012-07-19
Reviewed by Vsevolod Vlasov.

The class ExtensionView was defined in ExtensionPanel.js but needed to
be in a separate file since it is going to be reused somewhere else.

Current test coverage is enough since no behavior was changed.

  • WebCore.gypi:
  • WebCore.vcproj/WebCore.vcproj:
  • inspector/compile-front-end.py:
  • inspector/front-end/ExtensionPanel.js:
  • inspector/front-end/WebKit.qrc:
  • inspector/front-end/inspector.html:
2:59 AM Changeset in webkit [123085] by commit-queue@webkit.org
  • 5 edits in trunk

[EFL][WK2] Using different cache directory for each WTR process
https://bugs.webkit.org/show_bug.cgi?id=91719

Patch by Zoltan Nyul <zoltan.nyul@intel.com> on 2012-07-19
Reviewed by Kenneth Rohde Christiansen.

Source/WebKit2:

Make sure we return a valid application cache directory in
WebContextEfl.

  • UIProcess/efl/WebContextEfl.cpp:

(WebKit::WebContext::applicationCacheDirectory):

Tools:

The testrunner script may be running multiple processes in
parallel, and it makes appcache tests fail if they are using the same
directory. I modified the EFL's LayoutTestController to use the
DUMPRENDERTREE_TEMP for application cache directory because it's
different for each process.

  • WebKitTestRunner/CMakeLists.txt:
  • WebKitTestRunner/InjectedBundle/efl/LayoutTestControllerEfl.cpp:

(WTR::LayoutTestController::platformInitialize):

2:31 AM Changeset in webkit [123084] by commit-queue@webkit.org
  • 204 edits in trunk/LayoutTests

[Qt] fast/selectors tests needs update after rebaseline and new testfonts
https://bugs.webkit.org/show_bug.cgi?id=91640

Patch by Bruno de Oliveira Abinader <Bruno de Oliveira Abinader> on 2012-07-19
Reviewed by Simon Hausmann.

After the rebaseline from changeset 121971 - [Qt] DumpRenderTree does not use
'monospace' font when directed, fast/selectors tests directory needs to be
updated.

  • platform/qt-5.0/Skipped:
  • platform/qt/fast/selectors/001-expected.png:
  • platform/qt/fast/selectors/001-expected.txt:
  • platform/qt/fast/selectors/002-expected.png:
  • platform/qt/fast/selectors/002-expected.txt:
  • platform/qt/fast/selectors/003-expected.png:
  • platform/qt/fast/selectors/003-expected.txt:
  • platform/qt/fast/selectors/004-expected.png:
  • platform/qt/fast/selectors/004-expected.txt:
  • platform/qt/fast/selectors/005-expected.png:
  • platform/qt/fast/selectors/005-expected.txt:
  • platform/qt/fast/selectors/006-expected.png:
  • platform/qt/fast/selectors/006-expected.txt:
  • platform/qt/fast/selectors/007a-expected.png:
  • platform/qt/fast/selectors/007a-expected.txt:
  • platform/qt/fast/selectors/007b-expected.png:
  • platform/qt/fast/selectors/007b-expected.txt:
  • platform/qt/fast/selectors/008-expected.png:
  • platform/qt/fast/selectors/008-expected.txt:
  • platform/qt/fast/selectors/009-expected.png:
  • platform/qt/fast/selectors/009-expected.txt:
  • platform/qt/fast/selectors/010-expected.png:
  • platform/qt/fast/selectors/010-expected.txt:
  • platform/qt/fast/selectors/011-expected.png:
  • platform/qt/fast/selectors/011-expected.txt:
  • platform/qt/fast/selectors/012-expected.png:
  • platform/qt/fast/selectors/012-expected.txt:
  • platform/qt/fast/selectors/013-expected.png:
  • platform/qt/fast/selectors/013-expected.txt:
  • platform/qt/fast/selectors/014-expected.png:
  • platform/qt/fast/selectors/014-expected.txt:
  • platform/qt/fast/selectors/015-expected.png:
  • platform/qt/fast/selectors/015-expected.txt:
  • platform/qt/fast/selectors/016-expected.png:
  • platform/qt/fast/selectors/016-expected.txt:
  • platform/qt/fast/selectors/017-expected.png:
  • platform/qt/fast/selectors/017-expected.txt:
  • platform/qt/fast/selectors/018-expected.png:
  • platform/qt/fast/selectors/018-expected.txt:
  • platform/qt/fast/selectors/018b-expected.png:
  • platform/qt/fast/selectors/018b-expected.txt:
  • platform/qt/fast/selectors/019-expected.png:
  • platform/qt/fast/selectors/019-expected.txt:
  • platform/qt/fast/selectors/020-expected.png:
  • platform/qt/fast/selectors/020-expected.txt:
  • platform/qt/fast/selectors/021-expected.png:
  • platform/qt/fast/selectors/021-expected.txt:
  • platform/qt/fast/selectors/021b-expected.png:
  • platform/qt/fast/selectors/021b-expected.txt:
  • platform/qt/fast/selectors/027-expected.png:
  • platform/qt/fast/selectors/027-expected.txt:
  • platform/qt/fast/selectors/032-expected.png:
  • platform/qt/fast/selectors/032-expected.txt:
  • platform/qt/fast/selectors/034-expected.png:
  • platform/qt/fast/selectors/034-expected.txt:
  • platform/qt/fast/selectors/038-expected.png:
  • platform/qt/fast/selectors/038-expected.txt:
  • platform/qt/fast/selectors/039-expected.png:
  • platform/qt/fast/selectors/039-expected.txt:
  • platform/qt/fast/selectors/039b-expected.png:
  • platform/qt/fast/selectors/039b-expected.txt:
  • platform/qt/fast/selectors/040-expected.png:
  • platform/qt/fast/selectors/040-expected.txt:
  • platform/qt/fast/selectors/041-expected.png:
  • platform/qt/fast/selectors/041-expected.txt:
  • platform/qt/fast/selectors/042-expected.png:
  • platform/qt/fast/selectors/042-expected.txt:
  • platform/qt/fast/selectors/043-expected.png:
  • platform/qt/fast/selectors/043-expected.txt:
  • platform/qt/fast/selectors/043b-expected.png:
  • platform/qt/fast/selectors/043b-expected.txt:
  • platform/qt/fast/selectors/044-expected.png:
  • platform/qt/fast/selectors/044-expected.txt:
  • platform/qt/fast/selectors/044b-expected.png:
  • platform/qt/fast/selectors/044b-expected.txt:
  • platform/qt/fast/selectors/044c-expected.png:
  • platform/qt/fast/selectors/044c-expected.txt:
  • platform/qt/fast/selectors/044d-expected.png:
  • platform/qt/fast/selectors/044d-expected.txt:
  • platform/qt/fast/selectors/045-expected.png:
  • platform/qt/fast/selectors/045-expected.txt:
  • platform/qt/fast/selectors/045b-expected.png:
  • platform/qt/fast/selectors/045b-expected.txt:
  • platform/qt/fast/selectors/045c-expected.png:
  • platform/qt/fast/selectors/045c-expected.txt:
  • platform/qt/fast/selectors/046-expected.png:
  • platform/qt/fast/selectors/046-expected.txt:
  • platform/qt/fast/selectors/054-expected.png:
  • platform/qt/fast/selectors/054-expected.txt:
  • platform/qt/fast/selectors/056-expected.png:
  • platform/qt/fast/selectors/056-expected.txt:
  • platform/qt/fast/selectors/058-expected.png:
  • platform/qt/fast/selectors/058-expected.txt:
  • platform/qt/fast/selectors/059-expected.png:
  • platform/qt/fast/selectors/059-expected.txt:
  • platform/qt/fast/selectors/060-expected.png:
  • platform/qt/fast/selectors/060-expected.txt:
  • platform/qt/fast/selectors/061-expected.png:
  • platform/qt/fast/selectors/061-expected.txt:
  • platform/qt/fast/selectors/062-expected.png:
  • platform/qt/fast/selectors/062-expected.txt:
  • platform/qt/fast/selectors/063-expected.png:
  • platform/qt/fast/selectors/063-expected.txt:
  • platform/qt/fast/selectors/064-expected.png:
  • platform/qt/fast/selectors/064-expected.txt:
  • platform/qt/fast/selectors/065-expected.png:
  • platform/qt/fast/selectors/065-expected.txt:
  • platform/qt/fast/selectors/066-expected.png:
  • platform/qt/fast/selectors/066-expected.txt:
  • platform/qt/fast/selectors/066b-expected.png:
  • platform/qt/fast/selectors/066b-expected.txt:
  • platform/qt/fast/selectors/072-expected.png:
  • platform/qt/fast/selectors/072-expected.txt:
  • platform/qt/fast/selectors/072b-expected.png:
  • platform/qt/fast/selectors/072b-expected.txt:
  • platform/qt/fast/selectors/077-expected.png:
  • platform/qt/fast/selectors/077-expected.txt:
  • platform/qt/fast/selectors/077b-expected.png:
  • platform/qt/fast/selectors/077b-expected.txt:
  • platform/qt/fast/selectors/078b-expected.png:
  • platform/qt/fast/selectors/078b-expected.txt:
  • platform/qt/fast/selectors/083-expected.png:
  • platform/qt/fast/selectors/083-expected.txt:
  • platform/qt/fast/selectors/087b-expected.png:
  • platform/qt/fast/selectors/087b-expected.txt:
  • platform/qt/fast/selectors/088b-expected.png:
  • platform/qt/fast/selectors/088b-expected.txt:
  • platform/qt/fast/selectors/089-expected.png:
  • platform/qt/fast/selectors/089-expected.txt:
  • platform/qt/fast/selectors/090b-expected.png:
  • platform/qt/fast/selectors/090b-expected.txt:
  • platform/qt/fast/selectors/154-expected.png:
  • platform/qt/fast/selectors/154-expected.txt:
  • platform/qt/fast/selectors/155-expected.png:
  • platform/qt/fast/selectors/155-expected.txt:
  • platform/qt/fast/selectors/155a-expected.png:
  • platform/qt/fast/selectors/155a-expected.txt:
  • platform/qt/fast/selectors/155b-expected.png:
  • platform/qt/fast/selectors/155b-expected.txt:
  • platform/qt/fast/selectors/155c-expected.png:
  • platform/qt/fast/selectors/155c-expected.txt:
  • platform/qt/fast/selectors/155d-expected.png:
  • platform/qt/fast/selectors/155d-expected.txt:
  • platform/qt/fast/selectors/156b-expected.png:
  • platform/qt/fast/selectors/156b-expected.txt:
  • platform/qt/fast/selectors/157-expected.png:
  • platform/qt/fast/selectors/157-expected.txt:
  • platform/qt/fast/selectors/158-expected.png:
  • platform/qt/fast/selectors/158-expected.txt:
  • platform/qt/fast/selectors/159-expected.png:
  • platform/qt/fast/selectors/159-expected.txt:
  • platform/qt/fast/selectors/160-expected.png:
  • platform/qt/fast/selectors/160-expected.txt:
  • platform/qt/fast/selectors/166-expected.png:
  • platform/qt/fast/selectors/166-expected.txt:
  • platform/qt/fast/selectors/166a-expected.png:
  • platform/qt/fast/selectors/166a-expected.txt:
  • platform/qt/fast/selectors/167-expected.png:
  • platform/qt/fast/selectors/167-expected.txt:
  • platform/qt/fast/selectors/167a-expected.png:
  • platform/qt/fast/selectors/167a-expected.txt:
  • platform/qt/fast/selectors/168-expected.png:
  • platform/qt/fast/selectors/168-expected.txt:
  • platform/qt/fast/selectors/168a-expected.png:
  • platform/qt/fast/selectors/168a-expected.txt:
  • platform/qt/fast/selectors/169-expected.png:
  • platform/qt/fast/selectors/169-expected.txt:
  • platform/qt/fast/selectors/169a-expected.png:
  • platform/qt/fast/selectors/169a-expected.txt:
  • platform/qt/fast/selectors/170-expected.png:
  • platform/qt/fast/selectors/170-expected.txt:
  • platform/qt/fast/selectors/170a-expected.png:
  • platform/qt/fast/selectors/170a-expected.txt:
  • platform/qt/fast/selectors/170b-expected.png:
  • platform/qt/fast/selectors/170b-expected.txt:
  • platform/qt/fast/selectors/170c-expected.png:
  • platform/qt/fast/selectors/170c-expected.txt:
  • platform/qt/fast/selectors/170d-expected.png:
  • platform/qt/fast/selectors/170d-expected.txt:
  • platform/qt/fast/selectors/175a-expected.png:
  • platform/qt/fast/selectors/175a-expected.txt:
  • platform/qt/fast/selectors/175b-expected.png:
  • platform/qt/fast/selectors/175b-expected.txt:
  • platform/qt/fast/selectors/175c-expected.png:
  • platform/qt/fast/selectors/175c-expected.txt:
  • platform/qt/fast/selectors/177a-expected.png:
  • platform/qt/fast/selectors/177a-expected.txt:
  • platform/qt/fast/selectors/177b-expected.png:
  • platform/qt/fast/selectors/177b-expected.txt:
  • platform/qt/fast/selectors/lang-inheritance-expected.png:
  • platform/qt/fast/selectors/lang-inheritance-expected.txt:
  • platform/qt/fast/selectors/lang-inheritance2-expected.png:
  • platform/qt/fast/selectors/lang-inheritance2-expected.txt:
  • platform/qt/fast/selectors/lang-vs-xml-lang-expected.png:
  • platform/qt/fast/selectors/lang-vs-xml-lang-expected.txt:
  • platform/qt/fast/selectors/lang-vs-xml-lang-xhtml-expected.png:
  • platform/qt/fast/selectors/lang-vs-xml-lang-xhtml-expected.txt:
  • platform/qt/fast/selectors/nondeterministic-combinators-expected.png:
  • platform/qt/fast/selectors/nondeterministic-combinators-expected.txt:
  • platform/qt/fast/selectors/unqualified-hover-quirks-expected.png:
  • platform/qt/fast/selectors/unqualified-hover-quirks-expected.txt:
  • platform/qt/fast/selectors/visited-descendant-expected.png:
  • platform/qt/fast/selectors/visited-descendant-expected.txt:
2:04 AM Changeset in webkit [123083] by mario@webkit.org
  • 7 edits
    1 add in trunk

[WK2][GTK] Complete implementation of AccessibilityController in WKTR for GTK
https://bugs.webkit.org/show_bug.cgi?id=89224

Reviewed by Chris Fleizach.

Tools:

Implement logAccessibilityEvents() and resetToConsistentState(),
so we can ask WKTR from the layout tests for logging all the
accessibility related events into the result.

  • WebKitTestRunner/GNUmakefile.am:
  • WebKitTestRunner/InjectedBundle/AccessibilityController.cpp:

(WTR::AccessibilityController::AccessibilityController):
(WTR):
(WTR::AccessibilityController::logAccessibilityEvents):
(WTR::AccessibilityController::resetToConsistentState):

  • WebKitTestRunner/InjectedBundle/AccessibilityController.h:

(AccessibilityController):

  • WebKitTestRunner/InjectedBundle/gtk/AccessibilityControllerGtk.cpp: Added.

(WTR):
(WTR::printAccessibilityEvent):
(WTR::axObjectEventListener):
(WTR::AccessibilityController::logAccessibilityEvents):
(WTR::AccessibilityController::resetToConsistentState):

Ensure we reset the accessibility controller to a consistent
whenever a test has finished running.

  • WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:

(WTR::InjectedBundle::done):

LayoutTests:

Unskip tests now passing.

  • platform/gtk-wk2/Skipped:
1:56 AM Changeset in webkit [123082] by shinyak@chromium.org
  • 12 edits in trunk/Source/WebCore

[Refactoring] Use userAgentShadowRoot() to take user agent shadow root.
https://bugs.webkit.org/show_bug.cgi?id=91716

Reviewed by Hajime Morita.

We have introduced Element::userAgentShadowRoot in r123071 to take user agent shadow root.
We have used shadow()->oldestShadowRoot() to take the user agent shadow root, however its code intention was
not so clear. Using userAgentShadowRoot() will make it clearer.

No new tests, simple refactoring.

  • html/ColorInputType.cpp:

(WebCore::ColorInputType::createShadowSubtree):
(WebCore::ColorInputType::shadowColorSwatch):

  • html/FileInputType.cpp:

(WebCore::FileInputType::createShadowSubtree):
(WebCore::FileInputType::multipleAttributeChanged):

  • html/HTMLDetailsElement.cpp:

(WebCore::HTMLDetailsElement::findMainSummary):

  • html/HTMLImageElement.cpp:

(WebCore::HTMLImageElement::willAddAuthorShadowRoot):
(WebCore::HTMLImageElement::imageElement):
(WebCore::HTMLImageElement::innerElement):

  • html/HTMLKeygenElement.cpp:

(WebCore::HTMLKeygenElement::shadowSelect):

  • html/HTMLTextAreaElement.cpp:

(WebCore::HTMLTextAreaElement::innerTextElement):
(WebCore::HTMLTextAreaElement::updatePlaceholderText):

  • html/InputType.cpp:

(WebCore::InputType::destroyShadowSubtree):

  • html/RangeInputType.cpp:

(WebCore::RangeInputType::handleMouseDownEvent):
(WebCore::RangeInputType::createShadowSubtree):

  • html/TextFieldInputType.cpp:

(WebCore::TextFieldInputType::createShadowSubtree):
(WebCore::TextFieldInputType::updatePlaceholderText):

  • html/ValidationMessage.cpp:

(WebCore::ValidationMessage::deleteBubbleTree):

  • html/shadow/SliderThumbElement.cpp:

(WebCore::sliderThumbElementOf):
(WebCore::trackLimiterElementOf):

1:55 AM Changeset in webkit [123081] by keishi@webkit.org
  • 12 edits
    2 adds in trunk

Redraw slider tick marks when datalist changes.
https://bugs.webkit.org/show_bug.cgi?id=89544

Reviewed by Kent Tamura.

Source/WebCore:

Updating the datalist should redraw the slider tick marks. This patch monitors
the id target element of the list attribute using ListAttributeTargetObserver
and notifies changes to the option element inside of a datalist element.

Test: fast/forms/datalist/update-range-with-datalist.html

  • html/HTMLDataListElement.cpp:

(WebCore::HTMLDataListElement::optionElementChildrenChanged): Called when a child option element's value might have changed.
(WebCore):

  • html/HTMLDataListElement.h:

(HTMLDataListElement):

  • html/HTMLInputElement.cpp:

(ListAttributeTargetObserver): Inherits IdTargetObserver.
(WebCore):
(WebCore::HTMLInputElement::parseAttribute): Observe the form attribute target.
(WebCore::HTMLInputElement::insertedInto): Observe the form attribute id target.
(WebCore::HTMLInputElement::removedFrom): Remove the observer.
(WebCore::HTMLInputElement::resetListAttributeTargetObserver):
(WebCore::HTMLInputElement::listAttributeTargetChanged):
(WebCore::ListAttributeTargetObserver::create):
(WebCore::ListAttributeTargetObserver::ListAttributeTargetObserver):
(WebCore::ListAttributeTargetObserver::idTargetChanged):

  • html/HTMLInputElement.h:

(WebCore):
(HTMLInputElement):

  • html/HTMLOptionElement.cpp:

(WebCore::HTMLOptionElement::parseAttribute): If the value attribute changed, notify the owner datalist element.
(WebCore::HTMLOptionElement::childrenChanged): If the children changed, notify the owner datalist element.
(WebCore):
(WebCore::HTMLOptionElement::ownerDataListElement): The datalist that the option element is inside of.

  • html/HTMLOptionElement.h:

(WebCore):
(HTMLOptionElement):

  • html/InputType.cpp:

(WebCore):
(WebCore::InputType::listAttributeTargetChanged):

  • html/InputType.h:

(InputType):

  • html/RangeInputType.cpp:

(WebCore):
(WebCore::RangeInputType::listAttributeTargetChanged):

  • html/RangeInputType.h:

(RangeInputType):

LayoutTests:

Updating the datalist should redraw the slider tick marks.

  • fast/forms/datalist/update-range-with-datalist-expected.html: Added.
  • fast/forms/datalist/update-range-with-datalist.html: Added.
1:24 AM Changeset in webkit [123080] by commit-queue@webkit.org
  • 3 edits in trunk/Tools

[EFL][Wk2] Add a bot that runs WTR / WebKit2 tests
https://bugs.webkit.org/show_bug.cgi?id=90788

Patch by Dominik Röttsches <dominik.rottsches@intel.com> on 2012-07-19
Reviewed by Kentaro Hara.

Adding EFL 64bit WK2 BuildAndTest bot. At this point, we cannot transfer
the build product from one bot to the other due to link path issues with jhbuild,
so we do a full build and test cycle for WebKit2 on this bot.

  • BuildSlaveSupport/build.webkit.org-config/config.json: Adding the new slave.
  • BuildSlaveSupport/build.webkit.org-config/master.cfg: Adding a new factory for building and testing WebKit2.

(BuildAndTestWebKit2Factory):

1:22 AM Changeset in webkit [123079] by kkristof@inf.u-szeged.hu
  • 1 edit
    1 delete in trunk/LayoutTests

[Qt] Unreviewed gardening. Remove the platform specific expected after r123066.

Patch by Szilard Ledan <Szilárd LEDÁN> on 2012-07-19

  • platform/qt/fast/forms/state-restore-skip-stateless-expected.txt: Removed.
1:05 AM Changeset in webkit [123078] by mihnea@adobe.com
  • 2 edits in trunk/Tools

Unreviewed. Adding Andrei Bucur, Mihai Balan and Raul Hudea from Adobe to the contributors list. They are working on CSSRegions.

12:29 AM Changeset in webkit [123077] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

CodeGeneratorV8.pm : @enabledAtRuntime is not used in GenerateHeader.
https://bugs.webkit.org/show_bug.cgi?id=91715

Patch by Dongwoo Im <dw.im@samsung.com> on 2012-07-19
Reviewed by Kentaro Hara.

@enabledAtRuntime is not used in GenerateHeader.
We can remove it from GenerateHeader.

No new tests as this has no functional changes.

  • bindings/scripts/CodeGeneratorV8.pm: Remove @enabledAtRuntime from GenerateHeader.

(GenerateHeader):

12:24 AM Changeset in webkit [123076] by inferno@chromium.org
  • 2 edits in trunk/Source/WebCore

Crash in FontCache::releaseFontData.
https://bugs.webkit.org/show_bug.cgi?id=91710

Reviewed by Tim Horton.

Revert back change made to StyleResolver in r122896. The
maximum font size clamp is required there since transformed
sizes use that code path.

  • css/StyleResolver.cpp:

(WebCore::StyleResolver::collectMatchingRulesForList):

12:11 AM Changeset in webkit [123075] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/efl

[EFL] Enable interactive form validation
https://bugs.webkit.org/show_bug.cgi?id=91711

Patch by Kihong Kwon <kihong.kwon@samsung.com> on 2012-07-19
Reviewed by Ryosuke Niwa.

Enable interactive form validation on the Efl.
This makes we can validate data at form elements.
In addition, it is already enabled in the DRT.

  • ewk/ewk_view.cpp:

(_ewk_view_priv_new):

Jul 18, 2012:

11:51 PM WebKit Team edited by kseo@webkit.org
(diff)
11:42 PM WebKitGTK/WebKit2Roadmap edited by Carlos Garcia Campos
(diff)
10:55 PM Changeset in webkit [123074] by rniwa@webkit.org
  • 2 edits in trunk/Source/WebCore

Another build fix after r123065. Don't list deleted file in gypi.

  • WebCore.gypi:
10:48 PM Changeset in webkit [123073] by rniwa@webkit.org
  • 2 edits in trunk/Source/WebKit/chromium

Chromium build fix attempt. Don't use anonymous namespace.

  • tests/TextureCopierTest.cpp:
10:30 PM Changeset in webkit [123072] by keishi@webkit.org
  • 23 edits
    12 adds in trunk

Implement painting slider tick marks
https://bugs.webkit.org/show_bug.cgi?id=87844

Reviewed by Kent Tamura.

Source/WebCore:

This implements painting slider tick marks for <datalist> support for input type=range.
This does not support automatic update when list target changes, and it will be fixed
in a follow up patch (Bug 89544).

Tests: fast/forms/datalist/input-appearance-range-with-datalist-rtl.html

fast/forms/datalist/input-appearance-range-with-datalist-zoomed.html
fast/forms/datalist/input-appearance-range-with-datalist.html

  • html/HTMLInputElement.cpp:

(WebCore::HTMLInputElement::sliderThumbElement):
(WebCore):

  • html/HTMLInputElement.h:

(HTMLInputElement):

  • html/InputType.h:

(WebCore::InputType::sliderThumbElement):

  • html/RangeInputType.cpp:

(WebCore::RangeInputType::typeMismatchFor): We need HTMLInputElement::isValidValue("foo") to return false.
(WebCore):
(WebCore::RangeInputType::sliderThumbElement):

  • html/RangeInputType.h:

(RangeInputType):

  • html/shadow/SliderThumbElement.cpp:

(WebCore::RenderSliderContainer::layout): Slider height needs to be increased for the tick marks.

  • platform/efl/RenderThemeEfl.cpp:

(WebCore):
(WebCore::RenderThemeEfl::sliderTickSize):
(WebCore::RenderThemeEfl::sliderTickOffsetFromTrackCenter):

  • platform/efl/RenderThemeEfl.h:

(RenderThemeEfl):

  • platform/qt/RenderThemeQt.cpp:

(WebCore::RenderThemeQt::sliderTickSize):
(WebCore):
(WebCore::RenderThemeQt::sliderTickOffsetFromTrackCenter):

  • platform/qt/RenderThemeQt.h:

(RenderThemeQt):

  • rendering/RenderTheme.cpp:

(WebCore):
(WebCore::RenderTheme::paintSliderTicks):

  • rendering/RenderTheme.h:

(RenderTheme):

  • rendering/RenderThemeChromiumCommon.cpp:

(WebCore::RenderThemeChromiumCommon::supportsDataListUI):

  • rendering/RenderThemeChromiumLinux.cpp:

(WebCore):
(WebCore::RenderThemeChromiumLinux::sliderTickSize): Tick size for horizontal slider. i.e. Width is length along the track.
(WebCore::RenderThemeChromiumLinux::sliderTickOffsetFromTrackCenter): Offset from
middle of draw rect to draw the ticks. Minus value means above the track.
(WebCore::RenderThemeChromiumLinux::paintSliderTrack):

  • rendering/RenderThemeChromiumLinux.h:

(RenderThemeChromiumLinux):

  • rendering/RenderThemeChromiumWin.cpp:

(WebCore):
(WebCore::RenderThemeChromiumWin::sliderTickSize):
(WebCore::RenderThemeChromiumWin::sliderTickOffsetFromTrackCenter):
(WebCore::RenderThemeChromiumWin::paintSliderTrack):
(WebCore::RenderThemeChromiumWin::paintSliderThumb):

  • rendering/RenderThemeChromiumWin.h:

(RenderThemeChromiumWin):

  • rendering/RenderThemeMac.h:

(RenderThemeMac):

  • rendering/RenderThemeMac.mm:

(WebCore::RenderThemeMac::paintSliderTrack):
(WebCore):
(WebCore::RenderThemeMac::sliderTickSize):
(WebCore::RenderThemeMac::sliderTickOffsetFromTrackCenter):

LayoutTests:

  • fast/forms/datalist/input-appearance-range-with-datalist-expected.txt: Added.
  • fast/forms/datalist/input-appearance-range-with-datalist-rtl-expected.html: Added.
  • fast/forms/datalist/input-appearance-range-with-datalist-rtl.html: Added. The ticks should go from right to left.
  • fast/forms/datalist/input-appearance-range-with-datalist-zoomed-expected.txt: Added.
  • fast/forms/datalist/input-appearance-range-with-datalist-zoomed.html: Added. The ticks should zoom properly.
  • fast/forms/datalist/input-appearance-range-with-datalist.html: Added.
  • platform/chromium-linux/fast/forms/datalist/input-appearance-range-with-datalist-expected.png: Added.
  • platform/chromium-linux/fast/forms/datalist/input-appearance-range-with-datalist-zoomed-expected.png: Added.
  • platform/chromium-mac/fast/forms/datalist/input-appearance-range-with-datalist-expected.png: Added.
  • platform/chromium-mac/fast/forms/datalist/input-appearance-range-with-datalist-zoomed-expected.png: Added.
  • platform/chromium-win/fast/forms/datalist/input-appearance-range-with-datalist-expected.png: Added.
  • platform/chromium-win/fast/forms/datalist/input-appearance-range-with-datalist-zoomed-expected.png: Added.
  • platform/chromium/TestExpectations:
  • platform/chromium/fast/forms/datalist/input-list-expected.txt:
10:08 PM Changeset in webkit [123071] by shinyak@chromium.org
  • 4 edits in trunk/Source/WebCore

Element wants to have userAgentShadowRoot()
https://bugs.webkit.org/show_bug.cgi?id=91564

Reviewed by Eric Carlson.

We introduce Element::userAgentShadowRoot() to return a UserAgentShadowRoot.
It returns the oldest shadow root if any, and checks the type of ShadowRoot in debug build.

Previously, we have used elementShadow()->oldestShadowRoot() to get UserAgentShadowRoot.
The class implementor will know the oldest shadow root is UserAgentShadowRoot, but it is not
clear for the other people. This method will make the code intention clearer.

We will introduce userAgentShadowRoot to the other elements (e.g. HTMLInputElement) after this patch.

No new tests, simple refactoring.

  • dom/Element.cpp:

(WebCore::Element::userAgentShadowRoot):
(WebCore):

  • dom/Element.h:

(Element):

  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::createShadowSubtree):
(WebCore::HTMLMediaElement::willAddAuthorShadowRoot):
(WebCore::HTMLMediaElement::mediaControls):
(WebCore::HTMLMediaElement::hasMediaControls):
(WebCore::HTMLMediaElement::createMediaControls):

10:05 PM Changeset in webkit [123070] by commit-queue@webkit.org
  • 4 edits in trunk/LayoutTests

Shadow DOM drop event tests are very flaky.
https://bugs.webkit.org/show_bug.cgi?id=87364

Patch by Takashi Sakamoto <tasak@google.com> on 2012-07-18
Reviewed by Hajime Morita.

Modified these tests to run test functions in onload. Probably
executing event tests while parsing html document causes flakyness.

  • fast/dom/shadow/drop-event-for-input-in-shadow.html:
  • fast/dom/shadow/drop-event-in-shadow.html:
  • platform/chromium/TestExpectations:
9:47 PM Changeset in webkit [123069] by commit-queue@webkit.org
  • 4 edits in trunk

[CMake][EFL] Should try to find the same libsoup version pulled by jhbuild
https://bugs.webkit.org/show_bug.cgi?id=91626

Patch by Christophe Dumez <Christophe Dumez> on 2012-07-18
Reviewed by Kenneth Rohde Christiansen.

.:

Bump required version of libsoup in CMake to 2.39.3. This is the first
tarball version to contain the API we need (soup_cookie_jar_get_cookies()
and soup_cookie_jar_set_cookie_with_first_party()).

  • Source/cmake/OptionsEfl.cmake:

Tools:

Update jhbuild to pull libsoup 2.39.3 tarball from Gnome FTP instead
of fetching a tag from Gnome GIT. We need to do this to map the version
of libsoup that is required by our CMake config.

  • efl/jhbuild.modules:
9:36 PM Changeset in webkit [123068] by gyuyoung.kim@samsung.com
  • 3 edits in trunk/Source/WebCore

[CMAKE] Remove duplicated #ifdef guard in CMakeLists.txt
https://bugs.webkit.org/show_bug.cgi?id=91575

Reviewed by Dirk Pranke.

CMake files have used ENABLE_XXX macro. However, almost source and idl files are already protected by #ifdef.
So, we don't need to guard them in CMake files again.

In SVG idl files case, blackberry port doesn't support it yet. So, SVG idl files are handled by WebCore_SVG_IDL_FILES macro.

No new tests. This patch isn't for functionality.

  • CMakeLists.txt:
  • PlatformBlackBerry.cmake: Change SVG_IDL_FILES with WebCore_SVG_IDL_FILES.
7:51 PM Changeset in webkit [123067] by hbono@chromium.org
  • 6 edits
    5 adds in trunk

Move contents right when a vertical scrollbar is shown at the left side of an RTL element.
https://bugs.webkit.org/show_bug.cgi?id=85856

Reviewed by Hajime Morita.

Source/WebCore:

This change prevents the scrollWidth value from being cropped by the width of a
scrollbar when a vertical scrollbar is shown at the left side of an RTL element.
This change also increases the clientLeft value by this scrollbar width and move
contents right to improve compliance with CSSOM <http://www.w3.org/TR/cssom-view>.

Tests: scrollbars/rtl/div-horizontal.html

scrollbars/rtl/div-vertical.html

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::paintObject): Move contents to the right.

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::topLeftLocationOffset): Move the top-left corner to the right to prevent WebKit from cropping scrollWidth.

  • rendering/RenderBox.h:

(WebCore::RenderBox::clientLeft): Increase clientLeft by the width of a scrollbar.

LayoutTests:

This changes adds a couple of tests that verify CSSOM properties of RTL elements
are compliant with <http://www.w3.org/TR/cssom-view> regardless of their
scrollbar positions.

  • platform/chromium/TestExpectations:
  • scrollbars/rtl: Added.
  • scrollbars/rtl/div-horizontal-expected.txt: Added.
  • scrollbars/rtl/div-horizontal.html: Added.
  • scrollbars/rtl/div-vertical-expected.txt: Added.
  • scrollbars/rtl/div-vertical.html: Added.
7:48 PM Changeset in webkit [123066] by tkent@chromium.org
  • 10 edits
    1 delete in trunk

Form state restore: Classify form control sates by owners in internal and serialized representations
https://bugs.webkit.org/show_bug.cgi?id=91594

Reviewed by Hajime Morita.

Source/WebCore:

Before this change, the internal representation of form control states
was a map like:

{name, type, formKey} -> [FormControlState, FormControlState, ...]

Also, the serialized representation was:

[name, type, formKey, FormControlState,

name, type, formKey, formControlState,
...]

This changes these represenations. The internal representation is

A map owned by FormController:

formKey -> SavedFormState

SavedFormState owns a map like:

{name, type} -> [FormControlState, FormControlState, ...]

The serialized representation is:

[formKey, count,

name, type, FormControlState,
name, type, FormControlState,
name, type, FormControlState,
....
formKey, count,
name, type, FormControlState,
name, type, FormControlState,
name, type, FormControlState,
....]

The serialized representation would be smaller in many cases because
each of items doesn't have formKey.

Tests: Covered by fast/forms/state-restore-broken-state.html,
state-restore-per-form.html, and state-restore-skip-stateless.html.

  • html/FormController.cpp:

(FormElementKey): Remove formKey argument and m_formKey.
(WebCore::FormElementKey::FormElementKey):
(WebCore::FormElementKey::operator=):
(WebCore::FormElementKey::ref):
(WebCore::FormElementKey::deref):
(WebCore::operator==):

(SavedFormState):

  • The role of SavedFromState was changed. It represented all of control states. Now it represent control states owned by a signle form.
  • Make this non-copyable and fast-allocated.
  • Add m_controlStateCount, a counter of FormControlState

(WebCore::SavedFormState::SavedFormState):

Initialize m_controlStateCount.

(WebCore::isNotFormControlTypeCharacter):
Moved from another place in this file.
(WebCore::SavedFormState::deserialize):
Added. Build a SavedFromState with the specified stateVector.
(WebCore::SavedFormState::serializeTo):
Added. m_controlStateCount is needed here.
(WebCore::SavedFormState::appendControlState):

  • Remove formKey arguement.
  • Update m_controlStateCount.

(WebCore::SavedFormState::takeControlState): ditto.

(WebCore::formStateSignature): Bump the version.
(WebCore::FormController::createSavedFormStateMap):
Added. Build a SavedFormStateMap from the form control list. This is a
helper for formElementsState, and classifies controls in the document.
(WebCore::FormController::formElementsState):
Build a SavedFormStateMap with createSavedFormStateMap(),
then serializes it.
(WebCore::FormController::setStateForNewFormElements):
Deserialize SavedFormState, and build SavedFormStateMap.
(WebCore::FormController::takeStateForFormElement):
Finds the corresponding SavedFormState with a formKey, and uses it.

  • html/FormController.h:

Declare createSavedFormStateMap(), and moved typedefs for it.

LayoutTests:

Because the state serialization order depends on iteration order of
HashMap, serialized state array is not stable. We should remove raw dump
of serialized state array.

  • fast/forms/state-restore-per-form.html: Remove the code to dump the

form state. It's useless because the test have enough assertions.

  • fast/forms/state-restore-per-form-expected.txt:
  • fast/forms/resources/state-restore-per-form-back.html: Removed.
  • fast/forms/resources/state-restore-skip-stateless-dump.html:

Instead of dumping form state, check existence of types with JavaScript code.

  • fast/forms/state-restore-skip-stateless-expected.txt:
  • fast/forms/state-restore-skip-stateless.html: Fix a typo.
  • fast/forms/state-restore-broken-state-expected.txt:

Update the expectation because of the serialization format change.

7:46 PM Changeset in webkit [123065] by piman@chromium.org
  • 73 edits
    1 copy
    3 adds
    3 deletes in trunk/Source

[chromium] Introduce CCResourceProvider, replacing TextureAllocator and hiding textures from clients to allow transport
https://bugs.webkit.org/show_bug.cgi?id=91044

Reviewed by Adrienne Walker.

This does several things:

  • Add a CCResourceProvider class, that hides textures and the 3D context

from layers (except those that need it). Instead layers manage
"resources". In the future, resources are expected to be transportable
to a "parent" CCResourceProvider to allow flattening of nested
compositors.

  • Replace texture ids by resource ids in DrawQuads (allowing them to be

serializable).

  • Replace TextureAllocator uses by the CCResourceProvider class.
  • Upload of data is done through the CCResourceProvider instead of

explicit GL calls.

  • External textures are wrapped into a resource at draw time (see

caveat/FIXME in CCTextureLayerImpl).

  • Rendering with the resources is done through an explicit

beginRenderFrom/endRenderFrom that exposes the texture only between that
pair.

  • Merge all the LayerTextureSubImage instances (one per layer), into a

single instance on the CCResourceProvider.

Added CCResourceProviderTest, the refactoring is covered by existing tests.

Source/Platform:

  • chromium/public/WebCompositorTextureQuad.h:

(WebCompositorTextureQuad):
(WebKit::WebCompositorTextureQuad::resourceId):

  • chromium/public/WebCompositorTileQuad.h:

(WebCompositorTileQuad):
(WebKit::WebCompositorTileQuad::resourceId):

Source/WebCore:

  • WebCore.gypi:
  • platform/chromium/support/WebCompositorTextureQuad.cpp:

(WebKit::WebCompositorTextureQuad::create):
(WebKit::WebCompositorTextureQuad::WebCompositorTextureQuad):

  • platform/chromium/support/WebCompositorTileQuad.cpp:

(WebKit::WebCompositorTileQuad::create):
(WebKit::WebCompositorTileQuad::WebCompositorTileQuad):

  • platform/graphics/chromium/BitmapCanvasLayerTextureUpdater.cpp:

(WebCore::BitmapCanvasLayerTextureUpdater::Texture::updateRect):
(WebCore::BitmapCanvasLayerTextureUpdater::create):
(WebCore::BitmapCanvasLayerTextureUpdater::BitmapCanvasLayerTextureUpdater):
(WebCore::BitmapCanvasLayerTextureUpdater::prepareToUpdate):
(WebCore::BitmapCanvasLayerTextureUpdater::updateTextureRect):

  • platform/graphics/chromium/BitmapCanvasLayerTextureUpdater.h:

(WebCore):
(Texture):
(BitmapCanvasLayerTextureUpdater):

  • platform/graphics/chromium/BitmapSkPictureCanvasLayerTextureUpdater.cpp:

(WebCore::BitmapSkPictureCanvasLayerTextureUpdater::Texture::updateRect):
(WebCore::BitmapSkPictureCanvasLayerTextureUpdater::create):
(WebCore::BitmapSkPictureCanvasLayerTextureUpdater::BitmapSkPictureCanvasLayerTextureUpdater):

  • platform/graphics/chromium/BitmapSkPictureCanvasLayerTextureUpdater.h:

(Texture):
(BitmapSkPictureCanvasLayerTextureUpdater):

  • platform/graphics/chromium/ContentLayerChromium.cpp:

(WebCore::ContentLayerChromium::createTextureUpdaterIfNeeded):

  • platform/graphics/chromium/FrameBufferSkPictureCanvasLayerTextureUpdater.cpp:

(WebCore::createAcceleratedCanvas):
(WebCore::FrameBufferSkPictureCanvasLayerTextureUpdater::Texture::updateRect):
(WebCore::FrameBufferSkPictureCanvasLayerTextureUpdater::updateTextureRect):

  • platform/graphics/chromium/FrameBufferSkPictureCanvasLayerTextureUpdater.h:

(Texture):
(FrameBufferSkPictureCanvasLayerTextureUpdater):

  • platform/graphics/chromium/ImageLayerChromium.cpp:

(WebCore::ImageLayerTextureUpdater::create):
(WebCore::ImageLayerTextureUpdater::updateTextureRect):
(WebCore::ImageLayerTextureUpdater::ImageLayerTextureUpdater):
(ImageLayerTextureUpdater):
(WebCore::ImageLayerChromium::createTextureUpdaterIfNeeded):

  • platform/graphics/chromium/LayerRendererChromium.cpp:

(WebCore::LayerRendererChromium::create):
(WebCore::LayerRendererChromium::LayerRendererChromium):
(WebCore::LayerRendererChromium::decideRenderPassAllocationsForFrame):
(WebCore::applyFilters):
(WebCore::LayerRendererChromium::drawBackgroundFilters):
(WebCore::LayerRendererChromium::drawRenderPassQuad):
(WebCore::LayerRendererChromium::drawTileQuad):
(WebCore::LayerRendererChromium::drawYUVVideoQuad):
(WebCore::LayerRendererChromium::drawTextureQuad):
(WebCore::LayerRendererChromium::drawIOSurfaceQuad):
(WebCore::LayerRendererChromium::drawHeadsUpDisplay):
(WebCore::LayerRendererChromium::finishDrawingFrame):
(WebCore::LayerRendererChromium::getFramebufferTexture):
(WebCore::LayerRendererChromium::useRenderPass):
(WebCore::LayerRendererChromium::useScopedTexture):
(WebCore::LayerRendererChromium::bindFramebufferToTexture):
(WebCore::LayerRendererChromium::finishCurrentFramebuffer):
(WebCore):
(WebCore::LayerRendererChromium::initializeSharedObjects):

  • platform/graphics/chromium/LayerRendererChromium.h:

(LayerRendererChromium):
(WebCore::LayerRendererChromium::resourceProvider):

  • platform/graphics/chromium/LayerTextureSubImage.cpp:

(WebCore::LayerTextureSubImage::LayerTextureSubImage):
(WebCore::LayerTextureSubImage::upload):
(WebCore::LayerTextureSubImage::uploadWithTexSubImage):
(WebCore::LayerTextureSubImage::uploadWithMapTexSubImage):

  • platform/graphics/chromium/LayerTextureSubImage.h:

(WebKit):
(LayerTextureSubImage):

  • platform/graphics/chromium/LayerTextureUpdater.h:

(WebCore):
(Texture):

  • platform/graphics/chromium/ManagedTexture.cpp:

(WebCore::ManagedTexture::ManagedTexture):
(WebCore::ManagedTexture::reserve):
(WebCore::ManagedTexture::allocate):
(WebCore::ManagedTexture::steal):
(WebCore::ManagedTexture::clear):

  • platform/graphics/chromium/ManagedTexture.h:

(WebCore::ManagedTexture::resourceId):
(ManagedTexture):

  • platform/graphics/chromium/ScrollbarLayerChromium.cpp:

(WebCore::ScrollbarLayerChromium::pushPropertiesTo):
(WebCore::ScrollbarLayerChromium::createTextureUpdaterIfNeeded):

  • platform/graphics/chromium/TextureCopier.cpp:

(WebCore::AcceleratedTextureCopier::copyTexture):
(WebCore):
(WebCore::AcceleratedTextureCopier::flush):

  • platform/graphics/chromium/TextureCopier.h:

(TextureCopier):
(AcceleratedTextureCopier):

  • platform/graphics/chromium/TextureManager.cpp:

(WebCore::TextureManager::TextureManager):
(WebCore::TextureManager::deleteEvictedTextures):
(WebCore::TextureManager::removeTexture):
(WebCore::TextureManager::allocateTexture):
(WebCore::TextureManager::requestTexture):

  • platform/graphics/chromium/TextureManager.h:

(WebCore):
(WebCore::TextureManager::create):
(TextureManager):
(TextureInfo):
(EvictionEntry):

  • platform/graphics/chromium/TextureUploader.h:

(TextureUploader):

  • platform/graphics/chromium/ThrottledTextureUploader.cpp:

(WebCore::ThrottledTextureUploader::uploadTexture):

  • platform/graphics/chromium/ThrottledTextureUploader.h:

(ThrottledTextureUploader):

  • platform/graphics/chromium/TiledLayerChromium.cpp:

(WebCore::TiledLayerChromium::pushPropertiesTo):

  • platform/graphics/chromium/TrackingTextureAllocator.cpp: Removed.
  • platform/graphics/chromium/TrackingTextureAllocator.h: Removed.
  • platform/graphics/chromium/cc/CCHeadsUpDisplay.cpp:

(WebCore::CCHeadsUpDisplay::draw):

  • platform/graphics/chromium/cc/CCIOSurfaceLayerImpl.cpp:

(WebCore::CCIOSurfaceLayerImpl::willDraw):

  • platform/graphics/chromium/cc/CCIOSurfaceLayerImpl.h:

(CCIOSurfaceLayerImpl):

  • platform/graphics/chromium/cc/CCLayerImpl.cpp:

(WebCore::CCLayerImpl::willDraw):
(WebCore::CCLayerImpl::didDraw):
(WebCore::CCLayerImpl::contentsResourceId):

  • platform/graphics/chromium/cc/CCLayerImpl.h:

(CCLayerImpl):

  • platform/graphics/chromium/cc/CCLayerTreeHost.cpp:

(WebCore::CCLayerTreeHost::initializeLayerRenderer):
(WebCore::CCLayerTreeHost::deleteContentsTexturesOnImplThread):
(WebCore::CCLayerTreeHost::beginCommitOnImplThread):

  • platform/graphics/chromium/cc/CCLayerTreeHost.h:

(WebCore):
(CCLayerTreeHost):

  • platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp:

(WebCore::CCLayerTreeHostImpl::calculateRenderPasses):
(WebCore::CCLayerTreeHostImpl::releaseContentsTextures):
(WebCore::CCLayerTreeHostImpl::didDrawAllLayers):
(WebCore::CCLayerTreeHostImpl::initializeLayerRenderer):

  • platform/graphics/chromium/cc/CCLayerTreeHostImpl.h:

(WebCore):
(WebCore::CCLayerTreeHostImpl::resourceProvider):
(CCLayerTreeHostImpl):

  • platform/graphics/chromium/cc/CCPrioritizedTexture.cpp:

(WebCore::CCPrioritizedTexture::acquireBackingTexture):
(WebCore::CCPrioritizedTexture::resourceId):
(WebCore::CCPrioritizedTexture::upload):
(WebCore::CCPrioritizedTexture::beginRenderTo):
(WebCore::CCPrioritizedTexture::endRenderTo):
(WebCore):

  • platform/graphics/chromium/cc/CCPrioritizedTexture.h:

(WebCore):
(CCPrioritizedTexture):
(WebCore::CCPrioritizedTexture::Backing::resourceId):
(WebCore::CCPrioritizedTexture::Backing::Backing):
(Backing):

  • platform/graphics/chromium/cc/CCPrioritizedTextureManager.cpp:

(WebCore::CCPrioritizedTextureManager::CCPrioritizedTextureManager):
(WebCore::CCPrioritizedTextureManager::~CCPrioritizedTextureManager):
(WebCore::CCPrioritizedTextureManager::acquireBackingTextureIfNeeded):
(WebCore::CCPrioritizedTextureManager::reduceMemory):
(WebCore::CCPrioritizedTextureManager::clearAllMemory):
(WebCore::CCPrioritizedTextureManager::allBackingTexturesWereDeleted):
(WebCore::CCPrioritizedTextureManager::createBacking):
(WebCore::CCPrioritizedTextureManager::destroyBacking):

  • platform/graphics/chromium/cc/CCPrioritizedTextureManager.h:

(WebCore::CCPrioritizedTextureManager::create):
(CCPrioritizedTextureManager):

  • platform/graphics/chromium/cc/CCRenderPassDrawQuad.cpp:

(WebCore::CCRenderPassDrawQuad::create):
(WebCore::CCRenderPassDrawQuad::CCRenderPassDrawQuad):

  • platform/graphics/chromium/cc/CCRenderPassDrawQuad.h:

(CCRenderPassDrawQuad):
(WebCore::CCRenderPassDrawQuad::maskResourceId):

  • platform/graphics/chromium/cc/CCRenderSurface.cpp:

(WebCore::CCRenderSurface::appendQuads):

  • platform/graphics/chromium/cc/CCRenderer.h:

(WebCore):
(CCRenderer):

  • platform/graphics/chromium/cc/CCResourceProvider.cpp: Added.

(WebCore):
(WebCore::textureToStorageFormat):
(WebCore::isTextureFormatSupportedForStorage):
(WebCore::CCResourceProvider::create):
(WebCore::CCResourceProvider::~CCResourceProvider):
(WebCore::CCResourceProvider::graphicsContext3D):
(WebCore::CCResourceProvider::inUseByConsumer):
(WebCore::CCResourceProvider::createResource):
(WebCore::CCResourceProvider::createResourceFromExternalTexture):
(WebCore::CCResourceProvider::deleteResource):
(WebCore::CCResourceProvider::deleteOwnedResources):
(WebCore::CCResourceProvider::upload):
(WebCore::CCResourceProvider::beginRenderTo):
(WebCore::CCResourceProvider::endRenderTo):
(WebCore::CCResourceProvider::beginRenderFrom):
(WebCore::CCResourceProvider::endRenderFrom):
(WebCore::CCResourceProvider::CCResourceProvider):
(WebCore::CCResourceProvider::initialize):

  • platform/graphics/chromium/cc/CCResourceProvider.h: Added.

(WebKit):
(WebCore):
(CCResourceProvider):
(WebCore::CCResourceProvider::maxTextureSize):
(WebCore::CCResourceProvider::numResources):
(Resource):

  • platform/graphics/chromium/cc/CCScopedTexture.cpp:

(WebCore::CCScopedTexture::CCScopedTexture):
(WebCore::CCScopedTexture::allocate):
(WebCore::CCScopedTexture::free):

  • platform/graphics/chromium/cc/CCScopedTexture.h:

(WebCore::CCScopedTexture::create):
(CCScopedTexture):
(WebCore::CCScopedTexture::beginRenderTo):
(WebCore::CCScopedTexture::endRenderTo):
(WebCore::CCScopedTexture::beginRenderFrom):
(WebCore::CCScopedTexture::endRenderFrom):

  • platform/graphics/chromium/cc/CCScrollbarLayerImpl.cpp:

(WebCore::CCScrollbarLayerImpl::CCScrollbarLayerImpl):
(WebCore):
(WebCore::CCScrollbarLayerImpl::appendQuads):

  • platform/graphics/chromium/cc/CCScrollbarLayerImpl.h:

(WebCore::CCScrollbarLayerImpl::setBackTrackResourceId):
(WebCore::CCScrollbarLayerImpl::setForeTrackResourceId):
(WebCore::CCScrollbarLayerImpl::setThumbResourceId):
(CCScrollbarLayerImpl):

  • platform/graphics/chromium/cc/CCSingleThreadProxy.cpp:

(WebCore::CCSingleThreadProxy::recreateContext):
(WebCore::CCSingleThreadProxy::doCommit):
(WebCore::CCSingleThreadProxy::stop):

  • platform/graphics/chromium/cc/CCTexture.h:

(WebCore::CCTexture::id):
(WebCore::CCTexture::setId):
(CCTexture):

  • platform/graphics/chromium/cc/CCTextureLayerImpl.cpp:

(WebCore::CCTextureLayerImpl::CCTextureLayerImpl):
(WebCore::CCTextureLayerImpl::willDraw):
(WebCore):
(WebCore::CCTextureLayerImpl::appendQuads):
(WebCore::CCTextureLayerImpl::didDraw):

  • platform/graphics/chromium/cc/CCTextureLayerImpl.h:

(CCTextureLayerImpl):

  • platform/graphics/chromium/cc/CCTextureUpdater.cpp:

(WebCore::CCTextureUpdater::update):

  • platform/graphics/chromium/cc/CCTextureUpdater.h:

(WebCore):
(CCTextureUpdater):

  • platform/graphics/chromium/cc/CCThreadProxy.cpp:

(WebCore::CCThreadProxy::scheduledActionUpdateMoreResources):
(WebCore::CCThreadProxy::layerTreeHostClosedOnImplThread):
(WebCore::CCThreadProxy::recreateContextOnImplThread):

  • platform/graphics/chromium/cc/CCTiledLayerImpl.cpp:

(WebCore::DrawableTile::resourceId):
(WebCore::DrawableTile::setResourceId):
(WebCore::DrawableTile::DrawableTile):
(DrawableTile):
(WebCore::CCTiledLayerImpl::contentsResourceId):
(WebCore::CCTiledLayerImpl::hasTextureIdForTileAt):
(WebCore::CCTiledLayerImpl::appendQuads):
(WebCore::CCTiledLayerImpl::pushTileProperties):

  • platform/graphics/chromium/cc/CCTiledLayerImpl.h:

(CCTiledLayerImpl):

  • platform/graphics/chromium/cc/CCVideoLayerImpl.cpp:

(WebCore::CCVideoLayerImpl::CCVideoLayerImpl):
(WebCore::CCVideoLayerImpl::~CCVideoLayerImpl):
(WebCore::CCVideoLayerImpl::willDraw):
(WebCore::CCVideoLayerImpl::willDrawInternal):
(WebCore::CCVideoLayerImpl::appendQuads):
(WebCore::CCVideoLayerImpl::didDraw):
(WebCore::CCVideoLayerImpl::FramePlane::allocateData):
(WebCore::CCVideoLayerImpl::FramePlane::freeData):
(WebCore::CCVideoLayerImpl::allocatePlaneData):
(WebCore::CCVideoLayerImpl::copyPlaneData):
(WebCore::CCVideoLayerImpl::freePlaneData):
(WebCore::CCVideoLayerImpl::freeUnusedPlaneData):
(WebCore::CCVideoLayerImpl::didLoseContext):

  • platform/graphics/chromium/cc/CCVideoLayerImpl.h:

(CCVideoLayerImpl):
(FramePlane):
(WebCore::CCVideoLayerImpl::FramePlane::FramePlane):

Source/WebKit/chromium:

  • WebKit.gypi:
  • tests/CCLayerTreeHostImplTest.cpp:
  • tests/CCPrioritizedTextureTest.cpp:

(WTF::CCPrioritizedTextureTest::CCPrioritizedTextureTest):
(WTF::CCPrioritizedTextureTest::createManager):
(WTF::CCPrioritizedTextureTest::validateTexture):
(WTF::CCPrioritizedTextureTest::resourceProvider):
(CCPrioritizedTextureTest):
(WTF::TEST_F):

  • tests/CCQuadCullerTest.cpp:
  • tests/CCResourceProviderTest.cpp: Added.

(WebKit):
(ResourceProviderContext):
(WebKit::ResourceProviderContext::create):
(WebKit::ResourceProviderContext::bindTexture):
(WebKit::ResourceProviderContext::createTexture):
(WebKit::ResourceProviderContext::deleteTexture):
(WebKit::ResourceProviderContext::texStorage2DEXT):
(WebKit::ResourceProviderContext::texImage2D):
(WebKit::ResourceProviderContext::texSubImage2D):
(WebKit::ResourceProviderContext::getPixels):
(WebKit::ResourceProviderContext::textureCount):
(WebKit::ResourceProviderContext::textureSize):
(WebKit::ResourceProviderContext::ResourceProviderContext):
(WebKit::ResourceProviderContext::Texture::Texture):
(Texture):
(WebKit::ResourceProviderContext::allocateTexture):
(WebKit::ResourceProviderContext::setPixels):
(CCResourceProviderTest):
(WebKit::CCResourceProviderTest::CCResourceProviderTest):
(WebKit::CCResourceProviderTest::context):
(WebKit::CCResourceProviderTest::getResourcePixels):
(WebKit::TEST_F):

  • tests/CCScopedTextureTest.cpp:

(WebKitTests::TEST):

  • tests/CCTiledLayerImplTest.cpp:

(CCLayerTestCommon::createLayer):
(CCLayerTestCommon::TEST):

  • tests/CCTiledLayerTestCommon.cpp:

(WebKitTests::FakeLayerTextureUpdater::Texture::updateRect):

  • tests/CCTiledLayerTestCommon.h:

(Texture):
(WebKitTests::FakeTextureCopier::copyTexture):
(WebKitTests::FakeTextureCopier::flush):
(WebKitTests::FakeTextureUploader::uploadTexture):

  • tests/ContentLayerChromiumTest.cpp:

(WebKit::TEST):

  • tests/FakeCCGraphicsContext.h: Copied from Source/WebCore/platform/graphics/chromium/cc/CCTexture.h.

(WebKit):
(WebKit::createFakeCCGraphicsContext):

  • tests/LayerRendererChromiumTest.cpp:

(FakeLayerRendererChromium::FakeLayerRendererChromium):
(LayerRendererChromiumTest::LayerRendererChromiumTest):
(LayerRendererChromiumTest::context):
(LayerRendererChromiumTest):
(TEST_F):
(TEST):

  • tests/TextureCopierTest.cpp:
  • tests/TextureManagerTest.cpp:

(WTF::TextureManagerTest::TextureManagerTest):
(WTF::TextureManagerTest::createTextureManager):
(WTF::TextureManagerTest::requestTexture):
(TextureManagerTest):

  • tests/TiledLayerChromiumTest.cpp:
7:39 PM Changeset in webkit [123064] by hayato@chromium.org
  • 6 edits in trunk

[Shadow] A 'selectstart' event fired on distributed nodes should not be stopped at shadow boundary of the parent shadow host.
https://bugs.webkit.org/show_bug.cgi?id=90508

Reviewed by Dimitri Glazkov.

Source/WebCore:

We should not stop some kinds of events at the shadow boundary of a shadow host if the
event is fired on distributed nodes.

See the spec for such kinds of events.
http://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/shadow/index.html#events-that-are-always-stopped

Test: fast/dom/shadow/events-stopped-at-shadow-boundary.html

  • dom/EventDispatcher.cpp:

(WebCore::EventDispatcher::ensureEventAncestors):
(WebCore::inTheSameScope):
(WebCore):
(WebCore::EventDispatcher::determineDispatchBehavior):

  • dom/EventDispatcher.h:

(EventDispatcher):

LayoutTests:

  • fast/dom/shadow/events-stopped-at-shadow-boundary-expected.txt:
  • fast/dom/shadow/events-stopped-at-shadow-boundary.html:
7:29 PM Changeset in webkit [123063] by morrita@google.com
  • 4 edits
    4 adds in trunk

Add window resize benchmark
https://bugs.webkit.org/show_bug.cgi?id=91070

Reviewed by Ryosuke Niwa.

PerformanceTests:

Added window-resize.html which exercise html5.html. This test
resizes the window and forces re-layout repeatedly.

  • Interactive/resources/window-resize.js: Added.
  • Interactive/window-resize.html: Added.
  • Parser/resources/html5.html: Modified to inject driver scripts.

Tools:

Added some more output filters to take care of html5.html output.

  • Scripts/webkitpy/performance_tests/perftest.py:

(PerfTest):

7:24 PM Changeset in webkit [123062] by jchaffraix@webkit.org
  • 5 edits
    2 adds in trunk

Crash in RenderTableSection::addCell.
http://webkit.org/b/89496

Reviewed by Abhishek Arya.

Source/WebCore:

The issue comes from RenderBox::splitAnonymousBoxesAroundChild that would move sections
across tables but didn't force the table to do a synchronous section recalc. This opened
the way for race conditions where we would query the table column structure while it's dirty
(this is not uncommon but as usually the table's column representation is always bigger or
more split than a section's, it's usually harmless).

The fix is to force a synchronous section recalc.

Test: fast/table/split-table-no-section-update-crash.html

  • rendering/RenderBox.cpp:

(WebCore::markBoxForRelayoutAfterSplit):
Changed to call forceSectionsRecalc ie force a section recalc.

  • rendering/RenderTable.cpp:

(WebCore::RenderTable::recalcSections):
Added missing ASSERT for unneeded calls.

  • rendering/RenderTable.h:

(WebCore::RenderTable::forceSectionsRecalc):
Added this helper function.

LayoutTests:

The test is still pretty complex as it involves lots of generated content. It should
be possible to get a smaller test case based on the conditions for the crash. However
this test is a pretty good stress test so I decided against creating a more simple test
case.

  • fast/table/split-table-no-section-update-crash-expected.txt: Added.
  • fast/table/split-table-no-section-update-crash.html: Added.
6:52 PM Changeset in webkit [123061] by jchaffraix@webkit.org
  • 10 edits
    2 adds in trunk

Avoid calling GraphicsContext drawing primitives for 0px borders
https://bugs.webkit.org/show_bug.cgi?id=90039

Reviewed by Eric Seidel.

Source/WebCore:

The current code would happily call GraphicsContext to draw empty (0px) borders.
There is no good use case for going all the way to GraphicsContext in this case as
0px borders, regardless of the border-style, will not be painted. Thus this is a waste
of time on all platforms. On Chromium, this trigger some issues with pdf rendering as
Skia interprets 0px lines as very thin lines.

This change adds 0-checks in the border painting code as well as ASSERTs for
performance and to catch future bad use.

Test: fast/borders/0px-borders.html

  • platform/graphics/cairo/GraphicsContextCairo.cpp:

(WebCore::GraphicsContext::drawRect):

  • platform/graphics/cg/GraphicsContextCG.cpp:

(WebCore::GraphicsContext::drawRect):

  • platform/graphics/openvg/GraphicsContextOpenVG.cpp:

(WebCore::GraphicsContext::drawRect):

  • platform/graphics/qt/GraphicsContextQt.cpp:

(WebCore::GraphicsContext::drawRect):

  • platform/graphics/skia/GraphicsContextSkia.cpp:

(WebCore::GraphicsContext::drawRect):

  • platform/graphics/wx/GraphicsContextWx.cpp:

(WebCore::GraphicsContext::drawRect):
Added an ASSERT on all platforms to catch incorrect use.

  • rendering/RenderBoxModelObject.cpp:

(WebCore::BorderEdge::shouldRender):
Changed to not render 0px borders, which should avoid unneeded work
in the patining code (context saving / restoring or transparency layer
push).

(WebCore::RenderBoxModelObject::paintOneBorderSide):
Added an ASSERT here that the border side is not empty.

  • rendering/RenderObject.cpp:

(WebCore::RenderObject::drawLineForBoxSide):
Added an early return with a comment as to why it's not feasible to
ASSERT as would be best.

LayoutTests:

The ref-tests are pretty similar and the exact rendering doesn't matter. What matters
is that we try to exercise the border painting code with 0px borders. Note that the
test were passing before already as they are meant to trigger the newly added ASSERTs
if something changes.

  • fast/borders/0px-borders-expected.html: Added.
  • fast/borders/0px-borders.html: Added.
6:46 PM Changeset in webkit [123060] by commit-queue@webkit.org
  • 3 edits
    2 adds in trunk

REGRESSION (r89900): Assertion failure on null view() when destroying the document
https://bugs.webkit.org/show_bug.cgi?id=91547

Patch by Elliott Sprehn <Elliott Sprehn> on 2012-07-18
Reviewed by Abhishek Arya.

Source/WebCore:

Check for document destruction during insertion to avoid crash on null RenderView when trying
to count the number of RenderQuote and RenderCounter objects.

Test: fast/css-generated-content/bug91547.html

  • rendering/RenderObjectChildList.cpp:

(WebCore::RenderObjectChildList::appendChildNode):
(WebCore::RenderObjectChildList::insertChildNode):

LayoutTests:

Test for crash caused by null RenderView in RenderQuote and RenderCounter.

  • fast/css-generated-content/bug91547-expected.txt: Added.
  • fast/css-generated-content/bug91547.html: Added.
6:31 PM Changeset in webkit [123059] by dgrogan@chromium.org
  • 2 edits in trunk/Source/WebKit/chromium

IndexedDB: Add intVersion to chromium/public/WebIDBMetadata.h
https://bugs.webkit.org/show_bug.cgi?id=91408

Reviewed by Adam Barth.

This is in support of the new upgradeneeded versioning api.
intVersion will eventually replace the WebString version member.

  • public/WebIDBMetadata.h:

(WebKit::WebIDBMetadata::WebIDBMetadata):
The spec uses unsigned long long for version numbers but we use signed
long long so that we can use -1 as a sentinel. It indicates that a
database still uses a string version.

6:21 PM Changeset in webkit [123058] by dpranke@chromium.org
  • 11 edits in trunk/Tools

nrwt: merge WebKitDriver into Driver
https://bugs.webkit.org/show_bug.cgi?id=91696

Reviewed by Adam Barth.

As part of merging WebKitPort into Port, we also should merge
WebKitDriver into Driver, since all of the non-test Drivers now
inherit from WebKitDriver.

There are no functional changes in this patch, and all the changes should
be covered by the existing tests.

  • Scripts/webkitpy/layout_tests/port/base.py:

(Port._driver_class):

  • Scripts/webkitpy/layout_tests/port/chromium.py:

(ChromiumPort._check_file_exists):

  • Scripts/webkitpy/layout_tests/port/chromium_android.py:

(ChromiumAndroidDriver):
(ChromiumAndroidDriver.init):
(ChromiumAndroidDriver._drt_cmd_line):

  • Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:

(ChromiumAndroidDriverTest.test_read_prompt):

  • Scripts/webkitpy/layout_tests/port/driver.py:

(Driver):
(Driver.init):
(Driver.del):
(Driver.run_test):
(Driver.has_crashed):
(Driver.start):
(Driver._start):
(Driver.stop):
(Driver.cmd_line):
(Driver._check_for_driver_crash):
(Driver._command_from_driver_input):
(Driver._read_first_block):
(Driver._read_optional_image_block):
(Driver._read_header):
(Driver._process_stdout_line):
(Driver._strip_eof):
(Driver._read_block):
(ContentBlock):
(ContentBlock.init):
(ContentBlock.decode_content):

  • Scripts/webkitpy/layout_tests/port/driver_unittest.py:

(DriverTest.make_port):
(DriverTest._assert_wrapper):
(DriverTest.test_read_block):
(DriverTest):
(DriverTest.test_read_binary_block):
(DriverTest.test_read_base64_block):
(DriverTest.test_no_timeout):
(DriverTest.test_check_for_driver_crash):
(DriverTest.test_check_for_driver_crash.FakeServerProcess):
(DriverTest.test_check_for_driver_crash.FakeServerProcess.init):
(DriverTest.test_check_for_driver_crash.FakeServerProcess.pid):
(DriverTest.test_check_for_driver_crash.FakeServerProcess.name):
(DriverTest.test_check_for_driver_crash.FakeServerProcess.has_crashed):
(DriverTest.test_check_for_driver_crash.FakeServerProcess.stop):
(DriverTest.test_check_for_driver_crash.assert_crash):
(DriverTest.test_creating_a_port_does_not_write_to_the_filesystem):
(DriverTest.test_stop_cleans_up_properly):
(DriverTest.test_two_starts_cleans_up_properly):
(MockServerProcess):
(MockServerProcess.init):
(MockServerProcess.has_crashed):
(MockServerProcess.read_stdout_line):
(MockServerProcess.read_stdout):
(MockServerProcess.read_either_stdout_or_stderr_line):
(MockServerProcess.start):
(MockServerProcess.stop):
(MockServerProcess.kill):

  • Scripts/webkitpy/layout_tests/port/gtk.py:
  • Scripts/webkitpy/layout_tests/port/webkit.py:

(WebKitPort._read_image_diff):
(WebKitPort.skipped_layout_tests):

  • Scripts/webkitpy/layout_tests/port/webkit_unittest.py:

(test_path_to_apache_config_file):

  • Scripts/webkitpy/layout_tests/port/xvfbdriver.py:

(XvfbDriver):
(XvfbDriver.stop):

6:18 PM Changeset in webkit [123057] by benjamin@webkit.org
  • 3 edits in trunk/Source/WebKit/mac

[Mac] Make WebDataSourcePrivate lighter
https://bugs.webkit.org/show_bug.cgi?id=91511

Patch by Benjamin Poulain <bpoulain@apple.com> on 2012-07-18
Reviewed by Anders Carlsson.

Make WebDataSourcePrivate a simple C++ class and use smart pointers for memory management.

Since the "loader" attribute is only set on initialization, all the assertions spread in
various function are removed in favor of assertions on initialization.

  • WebView/WebDataSource.h:
  • WebView/WebDataSource.mm:

(WebDataSourcePrivate):
(WebDataSourcePrivate::WebDataSourcePrivate):
(WebDataSourcePrivate::~WebDataSourcePrivate):
Use a class instead of a Objective-C object for WebDataSourcePrivate.
Use smart pointers instead of ref counting manually.

(-[WebDataSource _setRepresentation:]):
(-[WebDataSource _addSubframeArchives:]):
(-[WebDataSource _transferApplicationCache:]):
(-[WebDataSource _setDeferMainResourceDataLoad:]):
(-[WebDataSource _documentFragmentWithArchive:]):
(-[WebDataSource _initWithDocumentLoader:]):

(+[WebDataSource initialize]):
(-[WebDataSource dealloc]):
(-[WebDataSource finalize]):
WebDataSource takes the special initialization and destruction that was done in WebDataSourcePrivate.

(-[WebDataSource representation]):

6:08 PM Changeset in webkit [123056] by nduca@chromium.org
  • 2 edits in trunk/Source/WebCore

[chromium] Add histogram for tracking compositor-thread frame rate
https://bugs.webkit.org/show_bug.cgi?id=91692

Reviewed by Adrienne Walker.

This patch tracks the interval between compositor thread frames
and pushes it into a platform histogram. This allows us to track
compositor-thread frame rate in the wild.

  • platform/graphics/chromium/cc/CCFrameRateCounter.cpp:

(WebCore::CCFrameRateCounter::markBeginningOfFrame):

5:42 PM Changeset in webkit [123055] by dpranke@chromium.org
  • 2 edits in trunk/Tools

webkitpy.common.system.executive_unittest.ExecutiveTest.test_kill_process is flaky
https://bugs.webkit.org/show_bug.cgi?id=91698

Unreviewed, build fix.

This is a workaround for the test failing (apparently mostly?)
when run in parallel with other tests. The underlying bug still
needs to be diagnosed as we shouldn't be getting ECHILD from
process.wait().

  • Scripts/webkitpy/common/system/executive_unittest.py:

(ExecutiveTest.test_kill_process):

5:35 PM Changeset in webkit [123054] by dpranke@chromium.org
  • 2 edits in trunk/Tools

Disable running python unit tests in parallel on win32 for now.
https://bugs.webkit.org/show_bug.cgi?id=91697

Unreviewed, build fix.

  • Scripts/webkitpy/test/main.py:

(Tester._parse_args):

5:33 PM Changeset in webkit [123053] by jer.noble@apple.com
  • 3 edits in trunk/LayoutTests

[mac] Unreviewed gardening.

Rebaseline (by partially reverting) r122883.

  • platform/mac/fast/inline/002-expected.txt:
  • platform/mac/fast/table/table-display-types-strict-expected.txt:
5:30 PM Changeset in webkit [123052] by fpizlo@apple.com
  • 15 edits in trunk/Source/JavaScriptCore

DFG should emit inline code for property storage (re)allocation
https://bugs.webkit.org/show_bug.cgi?id=91597

Reviewed by Oliver Hunt.

This adds two new ops to the DFG IR: AllocatePropertyStorage and
ReallocatePropertyStorage. It enables these to interact properly with
CSE so that a GetPropertyStorage on something for which we have
obviously done a (Re)AllocatePropertyStorage will result in the
GetPropertyStorage being eliminated. Other than that, the code
emitted for these ops is identical to the code we were emitting in
the corresponding PutById stub.

  • dfg/DFGAbstractState.cpp:

(JSC::DFG::AbstractState::execute):

  • dfg/DFGByteCodeParser.cpp:

(JSC::DFG::ByteCodeParser::parseBlock):

  • dfg/DFGCSEPhase.cpp:

(JSC::DFG::CSEPhase::putStructureStoreElimination):
(JSC::DFG::CSEPhase::getPropertyStorageLoadElimination):

  • dfg/DFGNode.h:

(JSC::DFG::Node::hasStructureTransitionData):

  • dfg/DFGNodeType.h:

(DFG):

  • dfg/DFGOperations.cpp:
  • dfg/DFGOperations.h:
  • dfg/DFGPredictionPropagationPhase.cpp:

(JSC::DFG::PredictionPropagationPhase::propagate):

  • dfg/DFGSpeculativeJIT.cpp:

(JSC::DFG::SpeculativeJIT::compileAllocatePropertyStorage):
(DFG):
(JSC::DFG::SpeculativeJIT::compileReallocatePropertyStorage):

  • dfg/DFGSpeculativeJIT.h:

(JSC::DFG::SpeculativeJIT::callOperation):
(SpeculativeJIT):

  • dfg/DFGSpeculativeJIT32_64.cpp:

(JSC::DFG::SpeculativeJIT::compile):

  • dfg/DFGSpeculativeJIT64.cpp:

(JSC::DFG::SpeculativeJIT::compile):

  • runtime/Structure.cpp:

(JSC::nextOutOfLineStorageCapacity):

  • runtime/Structure.h:

(JSC):

5:26 PM Changeset in webkit [123051] by jer.noble@apple.com
  • 4 edits in trunk/LayoutTests

[chromium] Drag image for image elements should be scaled with device scale factor.
https://bugs.webkit.org/show_bug.cgi?id=89688

Patch by Varun Jain <varunjain@chromium.org> on 2012-07-18
Reviewed by Adam Barth.

  • ManualTests/chromium/drag-image-accounts-for-device-scale.html:
5:19 PM Changeset in webkit [123050] by mitz@apple.com
  • 4 edits
    2 adds in trunk

Hit testing in the gap between pages returns incorrect results
https://bugs.webkit.org/show_bug.cgi?id=91695

Reviewed by Dave Hyatt.

Source/WebCore:

Test: fast/multicol/hit-test-gap-between-pages.html

  • rendering/RenderBlock.h:

(RenderBlock): Promoted adjustPointToColumnContents from private to protected.

  • rendering/RenderView.cpp:

(WebCore::RenderView::updateHitTestResult): If we get here, and we make the document element
the inner node, adjust the local point for columns.

LayoutTests:

  • fast/multicol/hit-test-gap-between-pages-expected.txt: Added.
  • fast/multicol/hit-test-gap-between-pages.html: Added.
5:07 PM Changeset in webkit [123049] by abarth@webkit.org
  • 3 edits in trunk/Source/WebKit/chromium

Disable printing on chromium-android
https://bugs.webkit.org/show_bug.cgi?id=91550

Reviewed by Tony Chang.

We don't implement printing on Android.

  • features.gypi:
  • src/WebFrameImpl.cpp:

(WebKit::WebFrameImpl::printPage):

4:57 PM Changeset in webkit [123048] by jsbell@chromium.org
  • 5 edits
    2 adds in trunk

IndexedDB: Direction parameter ignored by some openCursor() overloads
https://bugs.webkit.org/show_bug.cgi?id=91687

Reviewed by Tony Chang.

Source/WebCore:

A few of the openCursor() and openKeyCursor() overloads were not passing along the
direction parameter, resulting in the default direction being used. Trivial fixes.
Also, added a whitespace fix to a relevant console warning.

Test: storage/indexeddb/cursor-overloads.html

  • Modules/indexeddb/IDBIndex.cpp:

(WebCore::IDBIndex::openCursor):
(WebCore::IDBIndex::openKeyCursor):

  • Modules/indexeddb/IDBObjectStore.cpp:

(WebCore::IDBObjectStore::openCursor):

LayoutTests:

Test the overloads to ensure cursor direction is set correctly.

  • storage/indexeddb/cursor-overloads-expected.txt: Added.
  • storage/indexeddb/cursor-overloads.html: Added.
  • storage/indexeddb/legacy-constants-expected.txt: Fix whitespace in console warnings.
4:54 PM Changeset in webkit [123047] by arv@chromium.org
  • 13 edits
    2 adds in trunk

[V8] Improve Replaceable extended attribute
https://bugs.webkit.org/show_bug.cgi?id=91668

Reviewed by Adam Barth.

Replaceable is working by chance in the V8 bindings because V8 does not correctly handle
read only properties on the prototype chain. With this change we generate a setter that
uses ForceSet to replace the existing property when set.

Source/WebCore:

Test: fast/dom/Window/replaceable.html

  • bindings/scripts/CodeGeneratorV8.pm:

(GenerateReplaceableAttrSetter):
(GenerateFunctionCallback):
(GenerateSingleBatchedAttribute):
(GenerateImplementation):

  • bindings/scripts/test/CPP/WebDOMTestObj.cpp:

(WebDOMTestObj::replaceableAttribute):

  • bindings/scripts/test/CPP/WebDOMTestObj.h:
  • bindings/scripts/test/GObject/WebKitDOMTestObj.cpp:

(webkit_dom_test_obj_get_property):
(webkit_dom_test_obj_class_init):
(webkit_dom_test_obj_get_replaceable_attribute):

  • bindings/scripts/test/GObject/WebKitDOMTestObj.h:
  • bindings/scripts/test/JS/JSTestObj.cpp:

(WebCore):
(WebCore::jsTestObjReplaceableAttribute):
(WebCore::setJSTestObjReplaceableAttribute):

  • bindings/scripts/test/JS/JSTestObj.h:

(WebCore):

  • bindings/scripts/test/ObjC/DOMTestObj.h:
  • bindings/scripts/test/ObjC/DOMTestObj.mm:

(-[DOMTestObj replaceableAttribute]):
(-[DOMTestObj setReplaceableAttribute:]):

  • bindings/scripts/test/TestObj.idl:
  • bindings/scripts/test/V8/V8TestObj.cpp:

(WebCore::TestObjV8Internal::replaceableAttributeAttrGetter):
(TestObjV8Internal):
(WebCore::TestObjV8Internal::TestObjReplaceableAttrSetter):
(WebCore):

LayoutTests:

  • fast/dom/Window/replaceable-expected.txt: Added.
  • fast/dom/Window/replaceable.html: Added.
4:50 PM Changeset in webkit [123046] by jer.noble@apple.com
  • 12 edits in trunk/LayoutTests

Unreviewed gardening.

Correct a path error introduced by r122769 for the fast/sub-pixel/selection/selection-gaps-at-fractional-offsets.html
test in many Skipped lists.

  • platform/mac-lion/Skipped:
  • platform/mac-snowleopard/Skipped:
  • platform/mac-wk2/Skipped:
  • platform/mac/Skipped:
  • platform/qt-4.8/Skipped:
  • platform/qt/Skipped:
  • platform/win-wk2/Skipped:
  • platform/win-xp/Skipped:
  • platform/win/Skipped:
  • platform/wincairo/Skipped:
  • platform/wk2/Skipped:
4:44 PM Changeset in webkit [123045] by jsbell@chromium.org
  • 2 edits in trunk/LayoutTests

[chromium] Unreviewed TestExpectations update for WK90469.
Restore a test that was skipped to test a theory.
https://bugs.webkit.org/show_bug.cgi?id=90469

  • platform/chromium/TestExpectations:
4:39 PM Changeset in webkit [123044] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

[EFL][DRT] Add heap profiling tests to Skipped list
https://bugs.webkit.org/show_bug.cgi?id=91684

Unreviewed gardening.

JSC doesn't support heap profiling.

Patch by Seokju Kwon <seokju.kwon@samsung.com> on 2012-07-18

  • platform/efl/Skipped:
4:38 PM Changeset in webkit [123043] by arv@chromium.org
  • 3 edits in trunk/Source/WebCore

[V8] Remove temporary flag override for es52_globals
https://bugs.webkit.org/show_bug.cgi?id=91681

Reviewed by Adam Barth.

V8 has now changed their default value for the es52_globals so we no longer needs this override.

No new tests. No change in functionality.

  • bindings/v8/V8DOMWindowShell.cpp:

(WebCore::V8DOMWindowShell::initContextIfNeeded):

  • bindings/v8/WorkerContextExecutionProxy.cpp:

(WebCore::WorkerContextExecutionProxy::initIsolate):

4:26 PM Changeset in webkit [123042] by oliver@apple.com
  • 9 edits in trunk/Source/JavaScriptCore

dumpCallFrame is broken in ToT
https://bugs.webkit.org/show_bug.cgi?id=91444

Reviewed by Gavin Barraclough.

Various changes have been made to the SF calling convention, but
dumpCallFrame has not been updated to reflect these changes.
That resulted in both bogus information, as well as numerous
assertions of sadness.

This patch makes dumpCallFrame actually work again and adds the
wonderful feature of telling you the name of the variable that a
register reflects, or what value it contains.

  • bytecode/CodeBlock.cpp:

(JSC::CodeBlock::nameForRegister):

A really innefficient mechanism for finding the name of a local register.
This should only ever be used by debug code so this should be okay.

  • bytecode/CodeBlock.h:

(CodeBlock):

  • bytecompiler/BytecodeGenerator.cpp:

(JSC::BytecodeGenerator::generate):

Debug builds no longer throw away a functions symbol table, this allows
us to actually perform a register# to name mapping

  • dfg/DFGJITCompiler.cpp:

(JSC::DFG::JITCompiler::link):

We weren't propogating the bytecode offset here leading to assertions
in debug builds when dumping bytecode of DFG compiled code.

  • interpreter/Interpreter.cpp:

(JSC):
(JSC::Interpreter::dumpRegisters):

Rework to actually be correct.

(JSC::getCallerInfo):

Return the byteocde offset as well now, given we have to determine it
anyway.

(JSC::Interpreter::getStackTrace):
(JSC::Interpreter::retrieveCallerFromVMCode):

  • interpreter/Interpreter.h:

(Interpreter):

  • jsc.cpp:

(GlobalObject::finishCreation):
(functionDumpCallFrame):

Give debug builds of JSC a method for calling dumpCallFrame so we can
inspect a callframe without requiring us to break in a debugger.

4:23 PM Changeset in webkit [123041] by commit-queue@webkit.org
  • 3 edits in trunk/Tools

[chromium] Add gl_tests to flakiness dashboard.
https://bugs.webkit.org/show_bug.cgi?id=91680

Patch by Dave Tu <dtu@chromium.org> on 2012-07-18
Reviewed by Dirk Pranke.

  • TestResultServer/static-dashboards/builders.js:

(loadBuildersList):

  • TestResultServer/static-dashboards/dashboard_base.js:

(currentBuilderGroupCategory):

4:21 PM Changeset in webkit [123040] by dpranke@chromium.org
  • 2 edits in trunk/Tools

fix python unit tests failing under cygwin
https://bugs.webkit.org/show_bug.cgi?id=91678

Reviewed by Adam Barth.

Fix a case where executive.kill_process was failing under cygwin
(apple win port) in an unexpected way.

  • Scripts/webkitpy/common/system/executive.py:

(Executive.kill_process):

3:58 PM Changeset in webkit [123039] by jer.noble@apple.com
  • 5 edits in trunk/LayoutTests

REGRESSION (r122660-r122663): mathml/presentation/mo.xhtml, mathml/presentation/row.xhtml failing on Mountain Lion Production Tests
https://bugs.webkit.org/show_bug.cgi?id=91677

Reviewed by Eric Seidel.

Rebaseline after r122663.

  • platform/mac/mathml/presentation/mo-expected.txt:
  • platform/mac/mathml/presentation/row-expected.txt:
  • platform/mac/mathml/presentation/mo-expected.png:
  • platform/mac/mathml/presentation/row-expected.png:
3:57 PM Changeset in webkit [123038] by commit-queue@webkit.org
  • 17 edits in trunk/Source

[chromium] Ubercomp: add id to SharedQuadState
https://bugs.webkit.org/show_bug.cgi?id=91670

Patch by Alexandre Elias <aelias@google.com> on 2012-07-18
Reviewed by Adrienne Walker.

This assigns an integer ID to SharedQuadState objects and a
corresponding ID to quads. This ID is unique only within a
RenderPass and currently is just set to the index in the shared quad
state list. This is redundant with the pointer and exists to
simplify serialization.

I found out that pointer rewriting within a pickler is blocked by
pointers to memory being const there, so the reassignment will have to
be performed in the application layer anyway. In that case, it's
simplest to add some ID integers.

Source/Platform:

  • chromium/public/WebCompositorQuad.h:

(WebKit::WebCompositorQuad::sharedQuadStateId):
(WebCompositorQuad):

  • chromium/public/WebCompositorSharedQuadState.h:

(WebCompositorSharedQuadState):

Source/WebCore:

No new tests (will introduce them when making use of the ID).

  • platform/chromium/support/WebCompositorQuad.cpp:

(WebKit::WebCompositorQuad::WebCompositorQuad):
(WebKit::WebCompositorQuad::setSharedQuadState):
(WebKit):

  • platform/chromium/support/WebCompositorSharedQuadState.cpp:

(WebKit::WebCompositorSharedQuadState::WebCompositorSharedQuadState):
(WebKit::WebCompositorSharedQuadState::create):

  • platform/graphics/chromium/cc/CCLayerImpl.cpp:

(WebCore::CCLayerImpl::createSharedQuadState):

  • platform/graphics/chromium/cc/CCLayerImpl.h:

(CCLayerImpl):

  • platform/graphics/chromium/cc/CCRenderPass.cpp:

(WebCore::CCRenderPass::appendQuadsForLayer):
(WebCore::CCRenderPass::appendQuadsForRenderSurfaceLayer):
(WebCore::CCRenderPass::appendQuadsToFillScreen):

  • platform/graphics/chromium/cc/CCRenderSurface.cpp:

(WebCore::CCRenderSurface::createSharedQuadState):
(WebCore::CCRenderSurface::createReplicaSharedQuadState):

  • platform/graphics/chromium/cc/CCRenderSurface.h:

(CCRenderSurface):

Source/WebKit/chromium:

  • tests/CCLayerTreeHostImplTest.cpp:
  • tests/CCQuadCullerTest.cpp:
  • tests/CCRenderSurfaceTest.cpp:
  • tests/CCSolidColorLayerImplTest.cpp:

(CCLayerTestCommon::TEST):

  • tests/CCTiledLayerImplTest.cpp:

(CCLayerTestCommon::TEST):
(CCLayerTestCommon::getQuads):

3:41 PM Changeset in webkit [123037] by hclam@chromium.org
  • 2 edits in trunk/LayoutTests

[chromium] Not reviewed. Build fix.

Add CR before bug number to avoid lint error.

  • platform/chromium/TestExpectations:
3:41 PM Changeset in webkit [123036] by commit-queue@webkit.org
  • 4 edits in trunk/Source

Source/WebCore: [chromium] Ubercomp: clean up CCRenderer interface
https://bugs.webkit.org/show_bug.cgi?id=91555

Patch by Alexandre Elias <aelias@google.com> on 2012-07-18
Reviewed by Adrienne Walker.

I replaced the one-by-one RenderPass calls with a new drawFrame()
method that directly takes a CCRenderPassList, and moved a small
amount of code from CCLayerTreeHostImpl to implement it. In ubercomp
mode, we will produce a frame bundle rather than a command-stream, so
the full list is easier to work with.

Also, give empty default implementations for the methods that don't
need to do anything in a non-GL context, and make private
setScissorToRect.

No new tests (no-op refactoring).

  • platform/graphics/chromium/LayerRendererChromium.cpp:

(WebCore::LayerRendererChromium::drawFrame):
(WebCore):

  • platform/graphics/chromium/LayerRendererChromium.h:

(LayerRendererChromium):

  • platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp:

(WebCore::CCLayerTreeHostImpl::drawLayers):

  • platform/graphics/chromium/cc/CCRenderer.h:

(WebCore::CCRenderer::viewportChanged):
(WebCore::CCRenderer::decideRenderPassAllocationsForFrame):
(WebCore::CCRenderer::haveCachedResourcesForRenderPassId):
(CCRenderer):
(WebCore::CCRenderer::finishDrawingFrame):
(WebCore::CCRenderer::doNoOp):
(WebCore::CCRenderer::isContextLost):

Source/WebKit/chromium: Add WebTextInputType enum values for text areas and
content-editable.
https://bugs.webkit.org/show_bug.cgi?id=91654

Patch by Nate Chapin <Nate Chapin> on 2012-07-18
Reviewed by Adam Barth.

No new tests, no behavior change without corresponding chromium.org changes.

  • public/WebTextInputType.h:
  • src/WebViewImpl.cpp:

(WebKit::WebViewImpl::textInputType):

3:39 PM Changeset in webkit [123035] by dpranke@chromium.org
  • 2 edits in trunk/Tools

test-webkitpy: run tests in parallel by default
https://bugs.webkit.org/show_bug.cgi?id=91422

Reviewed by Adam Barth.

We use multiprocessing.cpu_count() for the default number of
jobs to run; memory overhead should be very low, so this should
be fine.

  • Scripts/webkitpy/test/main.py:

(Tester._parse_args):

3:36 PM Changeset in webkit [123034] by rniwa@webkit.org
  • 2 edits in trunk/Source/Platform

Another Chromium Windows build fix attempt after r123014.

  • chromium/public/Platform.h:
3:33 PM Changeset in webkit [123033] by commit-queue@webkit.org
  • 7 edits in trunk/Source

[chromium] Ubercomp: clean up CCRenderer interface
https://bugs.webkit.org/show_bug.cgi?id=91555

Patch by Alexandre Elias <aelias@google.com> on 2012-07-18
Reviewed by Adrienne Walker.

I replaced the one-by-one RenderPass calls with a new drawFrame()
method that directly takes a CCRenderPassList, and moved a small
amount of code from CCLayerTreeHostImpl to implement it. In ubercomp
mode, we will produce a frame bundle rather than a command-stream, so
the full list is easier to work with.

Also, give empty default implementations for the methods that don't
need to do anything in a non-GL context, and make private
setScissorToRect.

Source/WebCore:

No new tests (no-op refactoring).

  • platform/graphics/chromium/LayerRendererChromium.cpp:

(WebCore::LayerRendererChromium::drawFrame):
(WebCore):

  • platform/graphics/chromium/LayerRendererChromium.h:

(LayerRendererChromium):

  • platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp:

(WebCore::CCLayerTreeHostImpl::drawLayers):

  • platform/graphics/chromium/cc/CCRenderer.h:

(WebCore::CCRenderer::viewportChanged):
(WebCore::CCRenderer::decideRenderPassAllocationsForFrame):
(WebCore::CCRenderer::haveCachedResourcesForRenderPassId):
(CCRenderer):
(WebCore::CCRenderer::finishDrawingFrame):
(WebCore::CCRenderer::doNoOp):
(WebCore::CCRenderer::isContextLost):

Source/WebKit/chromium:

  • tests/LayerRendererChromiumTest.cpp:

(FakeCCRendererClient::FakeCCRendererClient):
(FakeCCRendererClient::renderPasses):
(FakeCCRendererClient):
(TEST_F):
(TEST):

3:28 PM Changeset in webkit [123032] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WTF

[BlackBerry] Implement currentTime() and monotonicallyIncreasingTime() for OS(QNX)
https://bugs.webkit.org/show_bug.cgi?id=91659

Patch by Yong Li <yoli@rim.com> on 2012-07-18
Reviewed by Rob Buis.

Implement currentTime() and monotonicallyIncreasingTime() for OS(QNX) with clock_gettime().

  • wtf/CurrentTime.cpp:

(WTF):
(WTF::currentTime):
(WTF::monotonicallyIncreasingTime):

3:28 PM Changeset in webkit [123031] by commit-queue@webkit.org
  • 3 edits
    4 adds in trunk

Content size of child having percent height inside a fixed height container having overflow:auto is wrongly calculated
https://bugs.webkit.org/show_bug.cgi?id=11355

Patch by Pravin D <pravind.2k4@gmail.com> on 2012-07-18
Reviewed by Julien Chaffraix.

Source/WebCore:

The content height of a child must be container height minus padding, border width and height of horizontal scrollbar(if any).

Tests: fast/overflow/child-100percent-height-inside-fixed-container-with-overflow-auto.html

fast/overflow/replaced-child-100percent-height-inside-fixed-container-with-overflow-auto.html

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::computePercentageLogicalHeight):
(WebCore::RenderBox::computeReplacedLogicalHeightUsing):
Subtracting the height of the scrollbar from the client height when the client has percentage height.

LayoutTests:

  • fast/overflow/child-100percent-height-inside-fixed-container-with-overflow-auto-expected.txt: Added.
  • fast/overflow/child-100percent-height-inside-fixed-container-with-overflow-auto.html: Added.
  • fast/overflow/replaced-child-100percent-height-inside-fixed-container-with-overflow-auto-expected.txt: Added.
  • fast/overflow/replaced-child-100percent-height-inside-fixed-container-with-overflow-auto.html: Added.
3:22 PM Changeset in webkit [123030] by rniwa@webkit.org
  • 2 edits in trunk/Tools

Add Pravin D to the list of contributors.

  • Scripts/webkitpy/common/config/committers.py:
3:20 PM Changeset in webkit [123029] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

[chromium] Ensure that the compositor code which is aware of flipped status of video-textures
per platform sets the flipped bit to false on Windows.
https://bugs.webkit.org/show_bug.cgi?id=91562

Patch by Anantanarayanan G Iyengar <ananta@chromium.org> on 2012-07-18
Reviewed by Adrienne Walker.

No new tests. (HW video decode is still only being tested manually for orientation)

  • platform/graphics/chromium/cc/CCVideoLayerImpl.cpp:

(WebCore::CCVideoLayerImpl::appendQuads):

3:17 PM Changeset in webkit [123028] by fpizlo@apple.com
  • 3 edits
    12 adds in trunk

DFG 32-bit PutById transition stub storage reallocation case copies the first pointer of each JSValue instead of the whole JSValue
https://bugs.webkit.org/show_bug.cgi?id=91599

Source/JavaScriptCore:

Reviewed by Geoffrey Garen.

  • dfg/DFGRepatch.cpp:

(JSC::DFG::emitPutTransitionStub):

LayoutTests:

Rubber stamped by Mark Hahnenberg.

It turns out we previously didn't have adequate coverage for this. Now we do.

  • fast/js/dfg-put-by-id-allocate-storage-expected.txt: Added.
  • fast/js/dfg-put-by-id-allocate-storage-polymorphic-expected.txt: Added.
  • fast/js/dfg-put-by-id-allocate-storage-polymorphic.html: Added.
  • fast/js/dfg-put-by-id-allocate-storage.html: Added.
  • fast/js/dfg-put-by-id-reallocate-storage-expected.txt: Added.
  • fast/js/dfg-put-by-id-reallocate-storage-polymorphic-expected.txt: Added.
  • fast/js/dfg-put-by-id-reallocate-storage-polymorphic.html: Added.
  • fast/js/dfg-put-by-id-reallocate-storage.html: Added.
  • fast/js/script-tests/dfg-put-by-id-allocate-storage-polymorphic.js: Added.

(foo):

  • fast/js/script-tests/dfg-put-by-id-allocate-storage.js: Added.

(foo):

  • fast/js/script-tests/dfg-put-by-id-reallocate-storage-polymorphic.js: Added.

(foo):

  • fast/js/script-tests/dfg-put-by-id-reallocate-storage.js: Added.

(foo):

3:16 PM Changeset in webkit [123027] by tsepez@chromium.org
  • 2 edits in trunk/Source/WTF

OOB read of stack buffer below DoubleToStringConverter::CreateExponentialRepresentation() in debug builds
https://bugs.webkit.org/show_bug.cgi?id=91642

Reviewed by Abhishek Arya.

  • wtf/dtoa/double-conversion.cc:

(DoubleToStringConverter::CreateExponentialRepresentation): NUL-terminate string buffer before passing it to StringBuilder::AddSubstring()

3:14 PM Changeset in webkit [123026] by hclam@chromium.org
  • 2 edits
    2 adds
    1 delete in trunk/LayoutTests

[chromium] Unreviewed gardening.

Updated test expectation for compositing/masks/layer-mask-placement.html.
Updated bug number for fast/js/mozilla/strict/assign-to-callee-name.html after filing webkit bug 91676.

Updated bug number for fast/url/ipv6.html after filing crbug.com/137938.

  • platform/chromium-mac-snowleopard/compositing/masks/layer-mask-placement-expected.png: Removed.
  • platform/chromium-mac/compositing/masks/layer-mask-placement-expected.png: Added.
  • platform/chromium-win/compositing/masks/layer-mask-placement-expected.png: Added.
  • platform/chromium/TestExpectations:
3:06 PM Changeset in webkit [123025] by eae@chromium.org
  • 9 edits in trunk/Source/WebCore

Replace uses of RenderBox::x(), y() in rendering code with with point and size methods
https://bugs.webkit.org/show_bug.cgi?id=91549

Reviewed by Eric Seidel.

Replaces uses of RenderBox::x() and RenderBox::y() with
RenderBox::location(), RenderBox::locationOffset() and
RenderBox::frameRect().

No new tests, no change in functionality.

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::layoutBlockChild):
(WebCore::RenderBlock::positionNewFloats):
Use child->frameRect() and child->location() instead of constructing a
rect and size from the x, y, width and height values.

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::repaintDuringLayoutIfMoved):
Compare and copy m_frameRect directly instead of comparing and copying
the individual values.

(WebCore::RenderBox::localCaretRect):
Use location() instead of x() and y().

  • rendering/RenderBoxModelObject.cpp:

(WebCore::RenderBoxModelObject::calculateBackgroundImageGeometry):
Use pixelSnappedIntSize and RenderBox::size() instead of computing and
snapping the width and height separately.

  • rendering/RenderImage.cpp:

(WebCore::RenderImage::nodeAtPoint):
USe locationOffset() instead of creating a new LayoutSize object from the
x() and y() values.

  • rendering/RenderInline.cpp:

(WebCore::RenderInline::updateHitTestResult):
Move by Size instead of x and y value.

(WebCore::RenderInline::addFocusRingRects):
Move by Size instead of x and y value.

  • rendering/RenderTableCell.cpp:

(WebCore::RenderTableCell::offsetFromContainer):
Shrink offset by size instead of using x and y values.

  • rendering/RenderTableSection.cpp:

(WebCore::RenderTableSection::layoutRows):
(WebCore::RenderTableSection::setLogicalPositionForCell):
Use child->frameRect() and child->location() instead of constructing a
rect and size from the x, y, width and height values.

  • rendering/svg/SVGRenderTreeAsText.cpp:

(WebCore::writeRenderSVGTextBox):
Use location() instead of x() and y().

2:58 PM Changeset in webkit [123024] by kbr@google.com
  • 2 edits in trunk/LayoutTests

Unreviewed test expectations update. Added bug ID for fast/filesystem/file-writer-truncate-extend.html flakiness.

  • platform/chromium/TestExpectations:
2:51 PM Changeset in webkit [123023] by tony@chromium.org
  • 2 edits in trunk/Source/WebCore

[chromium] Unreviewed, try to fix the chromium-win build after r123014.

  • platform/sql/chromium/SQLiteFileSystemChromiumWin.cpp:
2:38 PM Changeset in webkit [123022] by tony@chromium.org
  • 2 edits in trunk/LayoutTests

[chromium] Unreviewed gardening.

svg/W3C-I18N/tspan-dirRTL-ubEmbed-in-default-context.svg flakily crashes on Chromium Win.

  • platform/chromium/TestExpectations:
2:36 PM Changeset in webkit [123021] by kbalazs@webkit.org
  • 3 edits in trunk/Tools

[Qt] feature detection in orwt/nrwt does not work with force_static_libs_as_shared
https://bugs.webkit.org/show_bug.cgi?id=91514

Reviewed by Dirk Pranke.

Analyzing libQtWebKit.so is not enough in the case of force_static_libs_as_shared.
We need to analyze all the shared library or at least the WebCore one.

  • Scripts/webkitdirs.pm:

(builtDylibPathForName):
In orwt it is hard coded to search for symbols in the WebCore library.
While in theory it is possible that symbols for a given feature are not
located in that, it doesn't happen in practice, so returning the path of
the WebCore library for a force_static_libs_as_shared build is enough to
fix the bug and it doesn't require a bigger refactoring. For a default
build we still return the path of the QtWebKit lib.

  • Scripts/webkitpy/layout_tests/port/qt.py:

(QtPort._modules_to_search_for_symbols):
Enumerate all dynamic libraries, not just the QtWebKit one.

2:33 PM Changeset in webkit [123020] by jsbell@chromium.org
  • 9 edits in trunk/Source

IndexedDB: Fix some coding style violations
https://bugs.webkit.org/show_bug.cgi?id=91565

Reviewed by Tony Chang.

Source/WebCore:

In declarations, put the * next to the type not the identifier.
Remove k as a prefix for various constants.

No new tests - no functional changes.

  • Modules/indexeddb/IDBCursorBackendImpl.cpp:

(WebCore::IDBCursorBackendImpl::prefetchContinueInternal):

  • Modules/indexeddb/IDBFactoryBackendImpl.cpp:

(WebCore::computeFileIdentifier):

  • Modules/indexeddb/IDBKey.h:

(WebCore::IDBKey::IDBKey):

  • Modules/indexeddb/IDBLevelDBBackingStore.cpp:

(WebCore::IDBLevelDBBackingStore::getDatabaseNames):
(WebCore::IDBLevelDBBackingStore::getIDBDatabaseMetaData):
(WebCore::IDBLevelDBBackingStore::createIDBDatabaseMetaData):
(WebCore::IDBLevelDBBackingStore::updateIDBDatabaseMetaData):
(WebCore::IDBLevelDBBackingStore::deleteDatabase):
(WebCore::IDBLevelDBBackingStore::getObjectStores):
(WebCore::getNewObjectStoreId):
(WebCore::IDBLevelDBBackingStore::createObjectStore):
(WebCore::IDBLevelDBBackingStore::deleteObjectStore):
(WebCore::getNewVersionNumber):
(WebCore::IDBLevelDBBackingStore::nextAutoIncrementNumber):
(WebCore::IDBLevelDBBackingStore::forEachObjectStoreRecord):
(WebCore::IDBLevelDBBackingStore::getIndexes):
(WebCore::getNewIndexId):
(WebCore::IDBLevelDBBackingStore::createIndex):
(WebCore::IDBLevelDBBackingStore::putIndexDataForRecord):
(WebCore):

  • Modules/indexeddb/IDBLevelDBCoding.cpp:

(IDBLevelDBCoding):
(WebCore::IDBLevelDBCoding::maxIDBKey):
(WebCore::IDBLevelDBCoding::minIDBKey):
(WebCore::IDBLevelDBCoding::decodeVarInt):
(WebCore::IDBLevelDBCoding::encodeIDBKey):
(WebCore::IDBLevelDBCoding::decodeIDBKey):
(WebCore::IDBLevelDBCoding::extractEncodedIDBKey):
(WebCore::IDBLevelDBCoding::keyTypeByteToKeyType):
(WebCore::IDBLevelDBCoding::compareEncodedIDBKeys):
(WebCore::IDBLevelDBCoding::encodeIDBKeyPath):
(WebCore::IDBLevelDBCoding::decodeIDBKeyPath):
(WebCore::IDBLevelDBCoding::compare):
(WebCore::IDBLevelDBCoding::KeyPrefix::KeyPrefix):
(WebCore::IDBLevelDBCoding::KeyPrefix::encode):
(WebCore::IDBLevelDBCoding::KeyPrefix::compare):
(WebCore::IDBLevelDBCoding::KeyPrefix::type):
(WebCore::IDBLevelDBCoding::SchemaVersionKey::encode):
(WebCore::IDBLevelDBCoding::MaxDatabaseIdKey::encode):
(WebCore::IDBLevelDBCoding::DatabaseFreeListKey::decode):
(WebCore::IDBLevelDBCoding::DatabaseFreeListKey::encode):
(WebCore::IDBLevelDBCoding::DatabaseNameKey::decode):
(WebCore::IDBLevelDBCoding::DatabaseNameKey::encode):
(WebCore::IDBLevelDBCoding::ObjectStoreMetaDataKey::decode):
(WebCore::IDBLevelDBCoding::ObjectStoreMetaDataKey::encode):
(WebCore::IDBLevelDBCoding::ObjectStoreMetaDataKey::encodeMaxKey):
(WebCore::IDBLevelDBCoding::IndexMetaDataKey::decode):
(WebCore::IDBLevelDBCoding::IndexMetaDataKey::encode):
(WebCore::IDBLevelDBCoding::IndexMetaDataKey::encodeMaxKey):
(WebCore::IDBLevelDBCoding::ObjectStoreFreeListKey::decode):
(WebCore::IDBLevelDBCoding::ObjectStoreFreeListKey::encode):
(WebCore::IDBLevelDBCoding::IndexFreeListKey::decode):
(WebCore::IDBLevelDBCoding::IndexFreeListKey::encode):
(WebCore::IDBLevelDBCoding::ObjectStoreNamesKey::decode):
(WebCore::IDBLevelDBCoding::ObjectStoreNamesKey::encode):
(WebCore::IDBLevelDBCoding::IndexNamesKey::decode):
(WebCore::IDBLevelDBCoding::IndexNamesKey::encode):
(WebCore::IDBLevelDBCoding::ObjectStoreDataKey::decode):
(WebCore::IDBLevelDBCoding::ObjectStoreDataKey::encode):
(WebCore::IDBLevelDBCoding::ExistsEntryKey::decode):
(WebCore::IDBLevelDBCoding::ExistsEntryKey::encode):
(WebCore::IDBLevelDBCoding::IndexDataKey::decode):

  • Modules/indexeddb/IDBLevelDBCoding.h:

(IDBLevelDBCoding):
(ObjectStoreDataKey):
(ExistsEntryKey):

Source/WebKit/chromium:

  • tests/IDBLevelDBCodingTest.cpp:

(IDBLevelDBCoding::TEST):

2:31 PM Changeset in webkit [123019] by commit-queue@webkit.org
  • 6 edits
    4 adds
    3 deletes in trunk/Source/WebKit2

[EFL][WK2] EFL should use DownloadSoup instead of defining DownloadEfl
https://bugs.webkit.org/show_bug.cgi?id=91602

Patch by Christophe Dumez <Christophe Dumez> on 2012-07-18
Reviewed by Kenneth Rohde Christiansen.

Reuse WebProcess/Downloads/soup/DownloadSoup.cpp in EFL port
instead of redefining our own DownloadEfl.cpp. The EFL port
is also using libsoup so it is best to avoid code duplication.

  • GNUmakefile.am:
  • GNUmakefile.list.am:
  • PlatformEfl.cmake:
  • WebProcess/Downloads/Download.h:

(WebKit):
(Download):

  • WebProcess/Downloads/efl/DownloadEfl.cpp: Removed.
  • WebProcess/Downloads/efl/DownloadSoupErrorsEfl.cpp: Added.

(WebKit):
(WebKit::platformDownloadNetworkError):
(WebKit::platformDownloadDestinationError):

  • WebProcess/Downloads/efl/FileDownloaderEfl.cpp: Removed.
  • WebProcess/Downloads/efl/FileDownloaderEfl.h: Removed.
  • WebProcess/Downloads/gtk/DownloadSoupErrorsGtk.cpp: Added.

(WebKit):
(WebKit::platformDownloadNetworkError):
(WebKit::platformDownloadDestinationError):

  • WebProcess/Downloads/soup/DownloadSoup.cpp: Make the code

compile for other ports than GTK.
(WebKit::DownloadClient::didReceiveResponse):
(WebKit::DownloadClient::didReceiveData):
(WebKit::DownloadClient::didFail):
(WebKit::Download::continueWithoutCredential):
(WebKit):
(WebKit::Download::useCredential):
(WebKit::Download::cancelAuthenticationChallenge):

  • WebProcess/Downloads/soup/DownloadSoupErrors.h: Added.

(WebKit):

2:28 PM Changeset in webkit [123018] by tony@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed gardening.
http/tests/loading/307-after-303-after-post.html is flaky on win debug too.

  • platform/chromium/TestExpectations:
2:26 PM Changeset in webkit [123017] by tony@chromium.org
  • 4 edits in trunk/Source/WebKit/chromium

[chromium] Unreviewed, fix some MSVC compile warnings.

  • tests/CCDamageTrackerTest.cpp:

(WebKitTests::TEST_F):

  • tests/CCLayerTreeHostCommonTest.cpp:
  • tests/TiledLayerChromiumTest.cpp:
2:22 PM Changeset in webkit [123016] by commit-queue@webkit.org
  • 8 edits
    2 copies in trunk/Source/WebKit2

[WK2] Add C API for Network Information API
https://bugs.webkit.org/show_bug.cgi?id=90762

Patch by Christophe Dumez <Christophe Dumez> on 2012-07-18
Reviewed by Kenneth Rohde Christiansen.

Add C API for WKNetworkInfo and WKNetworkInfoManager
so that they can be used by the client.

  • CMakeLists.txt:
  • GNUmakefile.list.am:
  • Target.pri:
  • UIProcess/API/C/WKContext.cpp:

(WKContextGetNetworkInfoManager):

  • UIProcess/API/C/WKContext.h:
  • UIProcess/API/C/WKNetworkInfo.cpp: Copied from Source/WebKit2/UIProcess/API/C/WKNetworkInfoManager.cpp.

(WKNetworkInfoGetTypeID):
(WKNetworkInfoCreate):

  • UIProcess/API/C/WKNetworkInfo.h: Copied from Source/WebKit2/UIProcess/API/C/WKNetworkInfoManager.cpp.
  • UIProcess/API/C/WKNetworkInfoManager.cpp:

(WKNetworkInfoManagerSetProvider):
(WKNetworkInfoManagerProviderDidChangeNetworkInformation):

  • UIProcess/API/C/WKNetworkInfoManager.h:
2:13 PM Changeset in webkit [123015] by rniwa@webkit.org
  • 2 edits in trunk/LayoutTests

Update Chromium test expectations after filing the bug 91666.

  • platform/chromium/TestExpectations:
1:51 PM Changeset in webkit [123014] by pilgrim@chromium.org
  • 11 edits in trunk/Source

[Chromium] Call SQLiteFileSystem-related functions directly
https://bugs.webkit.org/show_bug.cgi?id=91631

Reviewed by Adam Barth.

Source/Platform:

Part of a refactoring series. See tracking bug 82948.

  • chromium/public/Platform.h:

(Platform):
(WebKit::Platform::databaseOpenFile):
(WebKit::Platform::databaseDeleteFile):
(WebKit::Platform::databaseGetFileAttributes):
(WebKit::Platform::databaseGetFileSize):
(WebKit::Platform::databaseGetSpaceAvailableForOrigin):

Source/WebCore:

Part of a refactoring series. See tracking bug 82948.

  • Modules/webdatabase/chromium/QuotaTracker.cpp:

(WebCore::QuotaTracker::getDatabaseSizeAndSpaceAvailableToOrigin):

  • platform/chromium/PlatformSupport.h:

(PlatformSupport):

  • platform/sql/chromium/SQLiteFileSystemChromium.cpp:

(WebCore::SQLiteFileSystem::deleteDatabaseFile):
(WebCore::SQLiteFileSystem::getDatabaseFileSize):

  • platform/sql/chromium/SQLiteFileSystemChromiumPosix.cpp:
  • platform/sql/chromium/SQLiteFileSystemChromiumWin.cpp:

Source/WebKit/chromium:

Part of a refactoring series. See tracking bug 82948.

  • public/platform/WebKitPlatformSupport.h:

(WebKitPlatformSupport):

  • src/PlatformSupport.cpp:

(WebCore):

1:43 PM Changeset in webkit [123013] by oliver@apple.com
  • 2 edits in trunk/Source/WebCore

WebKit provides APIs that make it possible for JSC to attempt to initialise the heap without initialising threading
https://bugs.webkit.org/show_bug.cgi?id=91663

Reviewed by Filip Pizlo.

Initialising a JSGlobalData now requires us to have initialised JSC's threading
logic, as that also initialises the JSC VM runtime options. WebKit provides a
number of routines that make use of commonJSGlobalData() that can be used before
webcore has called the appropriate initialisation routine. This patch makes the
minimal change of ensuring that commonJSGlobalData initialises threading before
attempting to create the common heap.

  • bindings/js/JSDOMWindowBase.cpp:

(WebCore::JSDOMWindowBase::commonJSGlobalData):

1:40 PM Changeset in webkit [123012] by hclam@chromium.org
  • 2 edits in trunk/LayoutTests

[chromium] Unreviewed gardening.

Remove some test expectations with my name on it, they are currently passing.

  • platform/chromium/TestExpectations:
1:28 PM Changeset in webkit [123011] by msaboff@apple.com
  • 3 edits in trunk/Source/WebCore

Make TextCodecUTF8 handle 8 bit data without converting to UChar's
https://bugs.webkit.org/show_bug.cgi?id=90320

Reviewed by Oliver Hunt.

Change UTF8 Codec to produce 8-bit strings when data fits in 8-bit range.
First we try decoding the string as all 8-bit and then fall back to 16 bit
when we find the first character that doesn't fit in 8 bits. Then we take
the already decoded data and copy / convert it to a 16-bit buffer and then
continue process the rest of the stream as 16-bits.

No new tests, no change in functionality.

  • platform/text/TextCodecUTF8.cpp:

(WebCore::TextCodecUTF8::handleError):
(WebCore::TextCodecUTF8::decode):

  • platform/text/TextCodecUTF8.h:

(TextCodecUTF8):

1:27 PM Changeset in webkit [123010] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit2

[EFL][WK2] ewk_cookie_manager_persistent_storage_set is not exported
https://bugs.webkit.org/show_bug.cgi?id=91647

Patch by Christophe Dumez <Christophe Dumez> on 2012-07-18
Reviewed by Gustavo Noronha Silva.

Properly export ewk_cookie_manager_persistent_storage_set in
ewk_cookie_manager.h by using EAPI.

  • UIProcess/API/efl/ewk_cookie_manager.h:
1:25 PM Changeset in webkit [123009] by commit-queue@webkit.org
  • 8 edits in trunk/Source

Chromium Mac: Add TEXTURE_RECTANGLE_ARB support to CCVideoLayerImpl
https://bugs.webkit.org/show_bug.cgi?id=91169

Patch by Sailesh Agrawal <sail@chromium.org> on 2012-07-18
Reviewed by Adrienne Walker.

Source/Platform:

Added a "orientation" field to WebCompositorIOSurfaceQuad. This is used at draw time to flip the texture if necessary.

  • chromium/public/WebCompositorIOSurfaceQuad.h: Added orientation field to the constructor.

(WebKit::WebCompositorIOSurfaceQuad::orientation):
(WebCompositorIOSurfaceQuad): The new orientation field should be set to Flipped if the texture should be flipped when drawing.

Source/WebCore:

This extends CCVideoLayerImpl to support TEXTURE_RECTANGLE_ARB. This texture target is used by the Mac hardware accelerated video decoder.

No new tests (HW video decode on Mac is being tested manually.).

  • platform/chromium/support/WebCompositorIOSurfaceQuad.cpp:

(WebKit::WebCompositorIOSurfaceQuad::create): Added an orientation argument.
(WebKit::WebCompositorIOSurfaceQuad::WebCompositorIOSurfaceQuad): Added an orientation argument.

  • platform/graphics/chromium/LayerRendererChromium.cpp:

(WebCore::LayerRendererChromium::drawIOSurfaceQuad): Added support for non-flipped IOSurface textures.

  • platform/graphics/chromium/LayerRendererChromium.h:

(LayerRendererChromium): Changed TextureIOSurfaceProgram to be non-flipped. To draw flipped textures drawIOSurfaceQuad sets a different value for texTransformLocation.

  • platform/graphics/chromium/cc/CCIOSurfaceLayerImpl.cpp:

(WebCore::CCIOSurfaceLayerImpl::appendQuads): Updated call to CCIOSurfaceDrawQuad constructor.

  • platform/graphics/chromium/cc/CCVideoLayerImpl.cpp:

(WebCore::CCVideoLayerImpl::appendQuads): Added support for drawing TEXTURE_RECTANGLE_ARB textures.

1:22 PM Changeset in webkit [123008] by msaboff@apple.com
  • 6 edits in trunk/Source

Make TextCodecLatin1 handle 8 bit data without converting to UChar's
https://bugs.webkit.org/show_bug.cgi?id=90319

Reviewed by Oliver Hunt.

Source/WebCore:

Updated codec to create 8 bit strings where possible.
We assume that the incoming stream can all be decoded as 8-bit values.
If we find a 16-bit value, we take the already decoded data and
copy / convert it to a 16-bit buffer and then continue process the rest
of the stream as 16-bits.

No new tests, functionality covered with existing tests.

  • platform/text/TextCodecASCIIFastPath.h:

(WebCore::copyASCIIMachineWord):

  • platform/text/TextCodecLatin1.cpp:

(WebCore::TextCodecLatin1::decode):

Source/WTF:

  • wtf/text/StringImpl.h:

(StringImpl): Exported LChar variant of adopt().

  • wtf/text/WTFString.h:

(WTF::String::createUninitialized): Exported LChar variant.

1:21 PM Changeset in webkit [123007] by tony@chromium.org
  • 5 edits in trunk

[chromium] Unreviewed, more compile fixes on Chromium Win.

Source/WebKit/chromium:

  • tests/WebTransformationMatrixTest.cpp:

(WebKit::TEST):

Tools:

  • DumpRenderTree/chromium/TestShellWin.cpp:

(TestShell::waitTestFinished):

  • DumpRenderTree/chromium/WebThemeControlDRTWin.cpp:
1:09 PM Changeset in webkit [123006] by Dimitri Glazkov
  • 2 edits in trunk/Source/WebCore

Fix up old name in RuleSet::addRulesFromSheet
https://bugs.webkit.org/show_bug.cgi?id=91646

Reviewed by Andreas Kling.

Simple parameter rename, no change in functionality.

  • css/StyleResolver.cpp:

(WebCore::StyleResolver::collectMatchingRulesForList): Renamed styleSelector to resolver to reflect recent rename of the parameter type.

1:06 PM Changeset in webkit [123005] by scheib@chromium.org
  • 5 edits
    2 adds in trunk

Unify allowfullscreen logic in Document::webkitFullScreenEnabled and fullScreenIsAllowedForElement.
https://bugs.webkit.org/show_bug.cgi?id=91448

Reviewed by Adrienne Walker.

Unifies redundant traversal logic and static cast previously used
to determine if an element or document can be made fullscreen.
This clean up prepares for pointer lock, which will use the same logic.

Added a test to detect an edge case of an owning document with
fullscreen permision moving an iframe to fullscreen, while that iframe
does not have permision for its contents to be made fullscreen.

Source/WebCore:

Test: fullscreen/full-screen-iframe-without-allow-attribute-allowed-from-parent.html

  • dom/Document.cpp:

(WebCore::isAttributeOnAllOwners):
(WebCore::Document::fullScreenIsAllowedForElement):
(WebCore::Document::webkitFullscreenEnabled):

LayoutTests:

  • fullscreen/full-screen-iframe-without-allow-attribute-allowed-from-parent-expected.txt: Added.
  • fullscreen/full-screen-iframe-without-allow-attribute-allowed-from-parent.html: Added.
1:01 PM Changeset in webkit [123004] by commit-queue@webkit.org
  • 10 edits
    2 adds in trunk

[EFL] Add central error management to EFL port
https://bugs.webkit.org/show_bug.cgi?id=91598

Patch by Christophe Dumez <Christophe Dumez> on 2012-07-18
Reviewed by Kenneth Rohde Christiansen.

Source/WebCore:

Define possible error types in ErrorsEfl so
that we can reuse the header in both WebKit1
and WebKit2. This is inspired from the GTK
port.

No new tests, no behavior change.

  • PlatformEfl.cmake:
  • platform/efl/ErrorsEfl.cpp: Added.

(WebCore):
(WebCore::cancelledError):
(WebCore::blockedError):
(WebCore::cannotShowURLError):
(WebCore::interruptedForPolicyChangeError):
(WebCore::cannotShowMIMETypeError):
(WebCore::fileDoesNotExistError):
(WebCore::pluginWillHandleLoadError):
(WebCore::downloadNetworkError):
(WebCore::downloadCancelledByUserError):
(WebCore::downloadDestinationError):
(WebCore::printError):
(WebCore::printerNotFoundError):
(WebCore::invalidPageRangeToPrint):

  • platform/efl/ErrorsEfl.h: Added.

(WebCore):

Source/WebKit/efl:

Make use of ErrorsEfl header from WebCore in
EFL's FrameLoaderClient now that we have
a central place for errors.

  • WebCoreSupport/FrameLoaderClientEfl.cpp:

(WebCore::FrameLoaderClientEfl::cancelledError):
(WebCore::FrameLoaderClientEfl::blockedError):
(WebCore::FrameLoaderClientEfl::cannotShowURLError):
(WebCore::FrameLoaderClientEfl::interruptedForPolicyChangeError):
(WebCore::FrameLoaderClientEfl::cannotShowMIMETypeError):
(WebCore::FrameLoaderClientEfl::fileDoesNotExistError):
(WebCore::FrameLoaderClientEfl::pluginWillHandleLoadError):
(WebCore::FrameLoaderClientEfl::shouldFallBack):

Source/WebKit2:

Make use of ErrorsEfl header from WebCore in
WebKit2, for Ewk_Web_Error and WebErrorsEfl.

  • UIProcess/API/efl/ewk_web_error.cpp:

(ewk_web_error_type_get):

  • UIProcess/API/efl/ewk_web_error.h:
  • WebProcess/WebCoreSupport/efl/WebErrorsEfl.cpp:

(WebKit::cancelledError):
(WebKit::blockedError):
(WebKit::cannotShowURLError):
(WebKit::interruptedForPolicyChangeError):
(WebKit::cannotShowMIMETypeError):
(WebKit::fileDoesNotExistError):
(WebKit::pluginWillHandleLoadError):

Tools:

Map WebKitNetworkError to NSURLErrorDomain when
printing in DumpRenderTree so that the output
matches the expected one.

  • DumpRenderTree/efl/DumpRenderTreeChrome.cpp:

(descriptionSuitableForTestResult):

12:59 PM Changeset in webkit [123003] by tony@chromium.org
  • 2 edits in trunk/Source/WebKit/chromium

[chromium] Fix compile on Windows.

148>tests\LayerChromiumTest.cpp(510): warning C4305: 'argument' : truncation from 'double' to 'float'

  • tests/LayerChromiumTest.cpp:
12:59 PM Changeset in webkit [123002] by dpranke@chromium.org
  • 4 edits in trunk/Tools

nrwt: start merging port/webkit.py into port/base.py
https://bugs.webkit.org/show_bug.cgi?id=91559

Reviewed by Ojan Vafai.

Since all the non-test port implementations now derive from
WebKitPort, there's no real point in keeping WebKitPort distinct
from Port. This patch starts merging the two by moving nearly
all of the webkit implementations of routines with no default
behavior into base.py. The few that didn't move rely on
additional infrastructure that should be refactored differently
(like the image diffing, which should probably be its own
class) and deserve their own patches.

This patch should just be moving code around, and require no
additional tests; in fact, we can delete the tests that were
asserting virtual methods in the base class.

  • Scripts/webkitpy/layout_tests/port/base.py:

(Port.baseline_search_path):
(Port.check_build):
(Port):
(Port._check_driver):
(Port._check_port_build):
(Port.check_image_diff):
(Port.driver_name):
(Port.default_results_directory):
(Port.to.setup_environ_for_server):
(Port._path_to_apache):
(Port._is_redhat_based):
(Port._is_debian_based):
(Port._apache_config_file_name_for_platform):
(Port._path_to_apache_config_file):
(Port._build_path):
(Port._path_to_driver):
(Port._path_to_webcore_library):
(Port._path_to_helper):
(Port._path_to_image_diff):
(Port._path_to_wdiff):

  • Scripts/webkitpy/layout_tests/port/base_unittest.py:

(PortTest.test_httpd_returns_error_code):

  • Scripts/webkitpy/layout_tests/port/webkit.py:

(WebKitPort):
(WebKitPort._build_driver_flags):
(WebKitPort._read_image_diff):
(WebKitPort.skipped_layout_tests):

12:51 PM Changeset in webkit [123001] by tony@chromium.org
  • 2 edits in trunk/Source/WebCore

[chromium] Fix crash in DragImageTest caused by r122996
https://bugs.webkit.org/show_bug.cgi?id=91653

Patch by Varun Jain <varunjain@chromium.org> on 2012-07-18
Reviewed by Tony Chang.

Covered by existing DragImageTest.

  • platform/chromium/DragImageChromiumSkia.cpp:

(WebCore::deleteDragImage):

12:31 PM Changeset in webkit [123000] by commit-queue@webkit.org
  • 5 edits in trunk/Source/WebKit2

[EFL] Set a theme for EFL WebKit2 unit test fixture
https://bugs.webkit.org/show_bug.cgi?id=91618

Patch by Thiago Marcos P. Santos <thiago.santos@intel.com> on 2012-07-18
Reviewed by Kenneth Rohde Christiansen.

The test fixture should load the theme generated by the build
instead of trying to load the system theme.

  • PlatformEfl.cmake:
  • UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestBase.cpp:

(EWK2UnitTest::EWK2UnitTestBase::SetUp):

  • UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestEnvironment.cpp:

(EWK2UnitTest::EWK2UnitTestEnvironment::defaultTheme):
(EWK2UnitTest):

  • UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestEnvironment.h:

(EWK2UnitTestEnvironment):

12:26 PM Changeset in webkit [122999] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebKit/chromium

Implement putIndexKeys in WebIDBObjectStoreImpl
https://bugs.webkit.org/show_bug.cgi?id=91546

Patch by Alec Flett <alecflett@chromium.org> on 2012-07-18
Reviewed by Darin Fisher.

Implement putIndexKeys in the chromium API, so it is callable
from chromium.

  • src/WebIDBObjectStoreImpl.cpp:

(WebKit::WebIDBObjectStoreImpl::putWithIndexKeys):
(WebKit):

  • src/WebIDBObjectStoreImpl.h:

(WebIDBObjectStoreImpl):

12:23 PM Changeset in webkit [122998] by tony@chromium.org
  • 2 edits in trunk/Source/WebKit/chromium

[chromium] Unreviewed compile fix for Android.

More sqrt fixes.

  • tests/CCLayerTreeHostCommonTest.cpp:
11:55 AM Changeset in webkit [122997] by tony@chromium.org
  • 2 edits in trunk/Source/WebKit/chromium

[chromium] Unreviewed compile fix for Android.

Source/WebKit/chromium/tests/CCDamageTrackerTest.cpp: In member function 'virtual void<unnamed>::CCDamageTrackerTest_verifyDamageForTransformedLayer_Test::TestBody()':
Source/WebKit/chromium/tests/CCDamageTrackerTest.cpp:332: error: call of overloaded 'sqrt(int)' is ambiguous

  • tests/CCDamageTrackerTest.cpp:

(WebKitTests::TEST_F):

11:43 AM Changeset in webkit [122996] by commit-queue@webkit.org
  • 14 edits in trunk

[chromium] Drag image for image elements should be scaled with device scale factor.
https://bugs.webkit.org/show_bug.cgi?id=89688

Patch by Varun Jain <varunjain@chromium.org> on 2012-07-18
Reviewed by Adam Barth.

.:

  • ManualTests/chromium/drag-image-accounts-for-device-scale.html:

Source/WebCore:

Modified ManualTest: ManualTests/chromium/drag-image-accounts-for-device-scale.html

  • page/Frame.cpp:

(WebCore::Frame::nodeImage):
(WebCore::Frame::dragImageForSelection):

  • platform/chromium/DragImageChromiumSkia.cpp:

(WebCore::dragImageSize):
(WebCore::deleteDragImage):
(WebCore::scaleDragImage):
(WebCore::dissolveDragImageToFraction):
(WebCore::createDragImageFromImage):

  • platform/chromium/DragImageRef.h:

(DragImageChromium):
(WebCore):

  • platform/graphics/skia/BitmapImageSingleFrameSkia.h:

(BitmapImageSingleFrameSkia):

  • platform/graphics/skia/ImageBufferSkia.cpp:

(WebCore::ImageBuffer::ImageBuffer):
(WebCore::ImageBuffer::copyImage):

  • platform/graphics/skia/ImageSkia.cpp:

(WebCore::BitmapImageSingleFrameSkia::BitmapImageSingleFrameSkia):
(WebCore::BitmapImageSingleFrameSkia::create):

  • platform/graphics/skia/NativeImageSkia.cpp:

(WebCore::NativeImageSkia::NativeImageSkia):

  • platform/graphics/skia/NativeImageSkia.h:

(NativeImageSkia):
(WebCore::NativeImageSkia::resolutionScale):

Source/WebKit/chromium:

  • src/DragClientImpl.cpp:

(WebKit::DragClientImpl::startDrag):

  • tests/DragImageTest.cpp:

(WebCore::TEST):

11:34 AM Changeset in webkit [122995] by tommyw@google.com
  • 4 edits
    2 copies in trunk/Tools

[chromium] MediaStream API: Moving the mock create* WebRTC calls into a shadow Platform class
https://bugs.webkit.org/show_bug.cgi?id=86215

Reviewed by Adam Barth.

Adding a shadow Platform object that is used to override some WebKit::Platform funtions to
instead create mock objects. No actual mock objects created yet.

  • DumpRenderTree/DumpRenderTree.gypi:
  • DumpRenderTree/chromium/DumpRenderTree.cpp:

(WebKitSupportTestEnvironment::WebKitSupportTestEnvironment):

  • DumpRenderTree/chromium/MockWebKitPlatformSupport.cpp: Copied from Tools/DumpRenderTree/chromium/config.h.

(MockWebKitPlatformSupport::create):
(MockWebKitPlatformSupport::MockWebKitPlatformSupport):
(MockWebKitPlatformSupport::cryptographicallyRandomValues):
(MockWebKitPlatformSupport::createMediaStreamCenter):

  • DumpRenderTree/chromium/MockWebKitPlatformSupport.h: Copied from Tools/DumpRenderTree/chromium/config.h.

(MockWebKitPlatformSupport):

  • DumpRenderTree/chromium/config.h:
11:32 AM Changeset in webkit [122994] by tony@chromium.org
  • 3 edits in trunk/LayoutTests

[chromium] Unreviewed gardening. Rebaseline 2 tests due to minor changes from r122980.

  • platform/chromium-win/transforms/3d/point-mapping/3d-point-mapping-expected.png:
  • platform/chromium-win/transforms/3d/point-mapping/3d-point-mapping-origins-expected.png:
11:25 AM Changeset in webkit [122993] by shawnsingh@chromium.org
  • 7 edits in trunk/Source/WebKit/chromium

[chromium] Fix style for numeric literals in chromium unit test code
https://bugs.webkit.org/show_bug.cgi?id=91635

Reviewed by Adrienne Walker.

Where possible, removed ".0" and "f" suffixes on numeric literals,
to be more consistent with WebKit style rules.

  • tests/CCDamageTrackerTest.cpp:

(WebKitTests::TEST_F):

  • tests/CCLayerQuadTest.cpp:

(WebCore::TEST):

  • tests/CCLayerTreeHostCommonTest.cpp:
  • tests/CCQuadCullerTest.cpp:
  • tests/LayerChromiumTest.cpp:
  • tests/WebTransformationMatrixTest.cpp:

(WebKit::TEST):

11:25 AM Changeset in webkit [122992] by commit-queue@webkit.org
  • 9 edits
    2 moves in trunk/Source

[BlackBerry] Move about: URL handling out of WebCore
https://bugs.webkit.org/show_bug.cgi?id=91541

Patch by Yong Li <yoli@rim.com> on 2012-07-18
Reviewed by Rob Buis.

Source/WebCore:

Remove about URL handling from our NetworkJob.

  • platform/network/blackberry/NetworkJob.cpp:

(WebCore::NetworkJob::NetworkJob):
(WebCore::NetworkJob::initialize):
(WebCore::NetworkJob::cancelJob):
(WebCore::NetworkJob::sendResponseIfNeeded):

  • platform/network/blackberry/NetworkJob.h:

(NetworkJob):

  • platform/network/blackberry/NetworkManager.cpp:

(WebCore::NetworkManager::startJob):

Source/WebKit:

AboutData.cpp is moved from WebCoreSupport to WebKitSupport.

  • PlatformBlackBerry.cmake:

Source/WebKit/blackberry:

Move about URL handling code to WebKit/blackberry. Now when WebPage is asked to load an about URL,
it directly calls loadString() with the generated source.

Also move AboutData.h/cpp from WebCoreSupport to WebKitSupport and change their namespace from WebCore
to BlackBerry::WebKit.

The change is very mechanical except "procss total memory usage" in about:memory now only accounts used
bytes and ignore free spaces in malloc.

  • Api/WebPage.cpp:

(BlackBerry::WebKit::WebPagePrivate::loadAbout):
(WebKit):
(BlackBerry::WebKit::WebPage::load):

  • Api/WebPage_p.h:

(WebPagePrivate):

  • WebKitSupport/AboutData.cpp: Renamed from Source/WebKit/blackberry/WebCoreSupport/AboutData.cpp.

(WebKit):
(BlackBerry::WebKit::writeFeatures):
(BlackBerry::WebKit::numberToHTMLTr):
(BlackBerry::WebKit::bool):
(BlackBerry::WebKit::configPage):
(BlackBerry::WebKit::cacheTypeStatisticToHTMLTr):
(BlackBerry::WebKit::dumpJSCTypeCountSetToTableHTML):
(BlackBerry::WebKit::memoryPage):

  • WebKitSupport/AboutData.h: Renamed from Source/WebKit/blackberry/WebCoreSupport/AboutData.h.

(WebKit):

11:21 AM Changeset in webkit [122991] by tony@chromium.org
  • 2 edits in trunk/Source/WebCore

Unreviewed, rolling out r122984.
http://trac.webkit.org/changeset/122984
https://bugs.webkit.org/show_bug.cgi?id=91171

Broken the shared build, need to export a SkData in skia

  • platform/graphics/skia/GraphicsContextSkia.cpp:

(WebCore::GraphicsContext::setURLForRect):

11:09 AM Changeset in webkit [122990] by rwlbuis@webkit.org
  • 4 edits in trunk/Source

Source/WebCore: Alignment crash in MIMESniffer
https://bugs.webkit.org/show_bug.cgi?id=89787

Reviewed by Yong Li.

PR 169064

Prevent ASSERT on unaligned data. Special-case handling of unaligned data
to maskedCompareSlowCase.

No test, too hard to reproduce.

  • platform/network/MIMESniffing.cpp:

(std::maskedCompareSlowCase):
(std):
(std::maskedCompare):

Source/WTF: Alignment crash in MIMESniffer
https://bugs.webkit.org/show_bug.cgi?id=89787

Reviewed by Yong Li.

PR 169064

Change isPointerTypeAlignmentOkay so calling it does not require ifdefs.

  • wtf/StdLibExtras.h:

(isPointerTypeAlignmentOkay):

10:58 AM Changeset in webkit [122989] by tony@chromium.org
  • 2 edits in trunk/LayoutTests

Convert svg/css/scientific-numbers.html to a text only test
https://bugs.webkit.org/show_bug.cgi?id=91641

Reviewed by Dirk Schulze.

This is a JS test so we don't need the pixel dump.

  • svg/css/script-tests/scientific-numbers.js:
10:57 AM Changeset in webkit [122988] by commit-queue@webkit.org
  • 32 edits
    6 adds in trunk/LayoutTests

[Qt] platform/qt/http tests needs update after rebaseline and new testfonts
https://bugs.webkit.org/show_bug.cgi?id=91119

Patch by Alex Bravo <alex.bravo@nokia.com> on 2012-07-18
Reviewed by Noam Rosenthal.

Rebased platform/qt/http tests and unskipped them from qt-5.0

  • platform/qt/http/tests/loading/simple-subframe-expected.png: Added.
  • platform/qt/http/tests/loading/simple-subframe-expected.txt:
  • platform/qt/http/tests/local/file-url-sent-as-referer-expected.png:
  • platform/qt/http/tests/local/file-url-sent-as-referer-expected.txt:
  • platform/qt/http/tests/misc/acid2-expected.png:
  • platform/qt/http/tests/misc/acid2-expected.txt:
  • platform/qt/http/tests/misc/acid2-pixel-expected.png:
  • platform/qt/http/tests/misc/acid2-pixel-expected.txt:
  • platform/qt/http/tests/misc/error404-expected.png:
  • platform/qt/http/tests/misc/error404-expected.txt:
  • platform/qt/http/tests/misc/favicon-as-image-expected.png:
  • platform/qt/http/tests/misc/favicon-as-image-expected.txt:
  • platform/qt/http/tests/misc/frame-access-during-load-expected.png:
  • platform/qt/http/tests/misc/frame-access-during-load-expected.txt:
  • platform/qt/http/tests/misc/generated-content-inside-table-expected.png:
  • platform/qt/http/tests/misc/generated-content-inside-table-expected.txt:
  • platform/qt/http/tests/misc/iframe404-expected.png:
  • platform/qt/http/tests/misc/iframe404-expected.txt:
  • platform/qt/http/tests/misc/slow-loading-image-in-pattern-expected.png:
  • platform/qt/http/tests/misc/slow-loading-image-in-pattern-expected.txt:
  • platform/qt/http/tests/misc/slow-loading-mask-expected.png:
  • platform/qt/http/tests/misc/slow-loading-mask-expected.txt:
  • platform/qt/http/tests/navigation/error404-basic-expected.png: Added.
  • platform/qt/http/tests/navigation/error404-basic-expected.txt:
  • platform/qt/http/tests/navigation/error404-goback-expected.png: Added.
  • platform/qt/http/tests/navigation/error404-goback-expected.txt:
  • platform/qt/http/tests/navigation/error404-subframeload-expected.png: Added.
  • platform/qt/http/tests/navigation/error404-subframeload-expected.txt:
  • platform/qt/http/tests/navigation/javascriptlink-frames-expected.png:
  • platform/qt/http/tests/navigation/javascriptlink-frames-expected.txt:
  • platform/qt/http/tests/navigation/postredirect-basic-expected.png: Added.
  • platform/qt/http/tests/navigation/postredirect-basic-expected.txt:
  • platform/qt/http/tests/navigation/postredirect-goback1-expected.png: Added.
  • platform/qt/http/tests/navigation/postredirect-goback1-expected.txt:
  • platform/qt/http/tests/uri/css-href-expected.png:
  • platform/qt/http/tests/uri/css-href-expected.txt:
10:43 AM Changeset in webkit [122987] by pierre.rossi@gmail.com
  • 2 edits in trunk/Source/WebKit2

[Qt] QQuickWebView shouldn't recieve mouse events while dialogs are active
https://bugs.webkit.org/show_bug.cgi?id=91634

Reviewed by Alexis Menard.

One side-effect of reimplementing childMouseEventFilter() in r122438 is that it can end up
bypassing the mouseArea mechanism used in QML dialogs and still forward some mouse events
over to the web process. We can rely on the same m_dialogActive mechanism already used for
touch events in there as well.

  • UIProcess/API/qt/qquickwebview.cpp:

(QQuickWebView::childMouseEventFilter): ignore events and return early if a dialog is active.

10:37 AM Changeset in webkit [122986] by pierre.rossi@gmail.com
  • 5 edits in trunk/Source/WebKit2

[Qt] Build fix for ENABLE_TOUCH_EVENTS=0

Rubber-stamped by No'am Rosenthal.

Add the appropriate ENABLE(TOUCH_EVENTS) where they're needed.

  • UIProcess/API/qt/raw/qrawwebview.cpp:
  • UIProcess/API/qt/raw/qrawwebview_p.h: include Platform.h so we can use the ENABLE macro.
  • UIProcess/InspectorServer/qt/WebInspectorServerQt.cpp: Also add the missing QFile include.
  • UIProcess/qt/QtWebPageEventHandler.cpp:

(WebKit::QtWebPageEventHandler::deactivateTapHighlight):

10:22 AM Changeset in webkit [122985] by commit-queue@webkit.org
  • 280 edits in trunk/LayoutTests

[Qt] fast/table tests needs update after rebaseline and new testfonts
https://bugs.webkit.org/show_bug.cgi?id=91621

Patch by Bruno de Oliveira Abinader <Bruno de Oliveira Abinader> on 2012-07-18
Reviewed by Alexis Menard.

After the rebaseline from changeset 121971 - [Qt] DumpRenderTree does not use
'monospace' font when directed, fast/table tests directory needs to be updated.

  • platform/qt-5.0-wk1/Skipped:
  • platform/qt-5.0-wk2/Skipped:
  • platform/qt-5.0/Skipped:
  • platform/qt-5.0/fast/table/003-expected.png:
  • platform/qt-5.0/fast/table/003-expected.txt:
  • platform/qt-5.0/fast/table/border-collapsing/004-expected.txt:
  • platform/qt/fast/table/001-expected.png:
  • platform/qt/fast/table/001-expected.txt:
  • platform/qt/fast/table/002-expected.png:
  • platform/qt/fast/table/002-expected.txt:
  • platform/qt/fast/table/004-expected.png:
  • platform/qt/fast/table/004-expected.txt:
  • platform/qt/fast/table/005-expected.png:
  • platform/qt/fast/table/005-expected.txt:
  • platform/qt/fast/table/006-expected.png:
  • platform/qt/fast/table/006-expected.txt:
  • platform/qt/fast/table/007-expected.png:
  • platform/qt/fast/table/007-expected.txt:
  • platform/qt/fast/table/009-expected.png:
  • platform/qt/fast/table/009-expected.txt:
  • platform/qt/fast/table/010-expected.png:
  • platform/qt/fast/table/010-expected.txt:
  • platform/qt/fast/table/011-expected.png:
  • platform/qt/fast/table/011-expected.txt:
  • platform/qt/fast/table/012-expected.png:
  • platform/qt/fast/table/012-expected.txt:
  • platform/qt/fast/table/013-expected.png:
  • platform/qt/fast/table/013-expected.txt:
  • platform/qt/fast/table/014-expected.png:
  • platform/qt/fast/table/014-expected.txt:
  • platform/qt/fast/table/015-expected.png:
  • platform/qt/fast/table/015-expected.txt:
  • platform/qt/fast/table/016-expected.png:
  • platform/qt/fast/table/016-expected.txt:
  • platform/qt/fast/table/017-expected.png:
  • platform/qt/fast/table/017-expected.txt:
  • platform/qt/fast/table/018-expected.png:
  • platform/qt/fast/table/018-expected.txt:
  • platform/qt/fast/table/020-expected.png:
  • platform/qt/fast/table/020-expected.txt:
  • platform/qt/fast/table/021-expected.png:
  • platform/qt/fast/table/021-expected.txt:
  • platform/qt/fast/table/022-expected.png:
  • platform/qt/fast/table/022-expected.txt:
  • platform/qt/fast/table/023-expected.png:
  • platform/qt/fast/table/023-expected.txt:
  • platform/qt/fast/table/025-expected.png:
  • platform/qt/fast/table/025-expected.txt:
  • platform/qt/fast/table/026-expected.png:
  • platform/qt/fast/table/026-expected.txt:
  • platform/qt/fast/table/027-expected.png:
  • platform/qt/fast/table/027-expected.txt:
  • platform/qt/fast/table/027-vertical-expected.png:
  • platform/qt/fast/table/027-vertical-expected.txt:
  • platform/qt/fast/table/028-expected.png:
  • platform/qt/fast/table/028-expected.txt:
  • platform/qt/fast/table/028-vertical-expected.png:
  • platform/qt/fast/table/028-vertical-expected.txt:
  • platform/qt/fast/table/029-expected.png:
  • platform/qt/fast/table/029-expected.txt:
  • platform/qt/fast/table/030-expected.png:
  • platform/qt/fast/table/030-expected.txt:
  • platform/qt/fast/table/033-expected.png:
  • platform/qt/fast/table/033-expected.txt:
  • platform/qt/fast/table/034-expected.png:
  • platform/qt/fast/table/034-expected.txt:
  • platform/qt/fast/table/035-expected.png:
  • platform/qt/fast/table/035-expected.txt:
  • platform/qt/fast/table/035-vertical-expected.png:
  • platform/qt/fast/table/035-vertical-expected.txt:
  • platform/qt/fast/table/036-expected.png:
  • platform/qt/fast/table/036-expected.txt:
  • platform/qt/fast/table/037-expected.png:
  • platform/qt/fast/table/037-expected.txt:
  • platform/qt/fast/table/038-expected.png:
  • platform/qt/fast/table/038-expected.txt:
  • platform/qt/fast/table/038-vertical-expected.png:
  • platform/qt/fast/table/038-vertical-expected.txt:
  • platform/qt/fast/table/039-expected.png:
  • platform/qt/fast/table/039-expected.txt:
  • platform/qt/fast/table/040-expected.png:
  • platform/qt/fast/table/040-expected.txt:
  • platform/qt/fast/table/040-vertical-expected.png:
  • platform/qt/fast/table/040-vertical-expected.txt:
  • platform/qt/fast/table/041-expected.png:
  • platform/qt/fast/table/041-expected.txt:
  • platform/qt/fast/table/100-percent-cell-width-expected.png:
  • platform/qt/fast/table/100-percent-cell-width-expected.txt:
  • platform/qt/fast/table/absolute-table-at-bottom-expected.png:
  • platform/qt/fast/table/absolute-table-at-bottom-expected.txt:
  • platform/qt/fast/table/add-before-anonymous-child-expected.png:
  • platform/qt/fast/table/add-before-anonymous-child-expected.txt:
  • platform/qt/fast/table/align-right-within-left-aligned-div-expected.txt:
  • platform/qt/fast/table/append-cells-expected.png:
  • platform/qt/fast/table/append-cells-expected.txt:
  • platform/qt/fast/table/append-cells2-expected.png:
  • platform/qt/fast/table/append-cells2-expected.txt:
  • platform/qt/fast/table/auto-with-percent-height-expected.png:
  • platform/qt/fast/table/auto-with-percent-height-expected.txt:
  • platform/qt/fast/table/auto-with-percent-height-vertical-expected.png:
  • platform/qt/fast/table/auto-with-percent-height-vertical-expected.txt:
  • platform/qt/fast/table/border-collapsing/001-expected.png:
  • platform/qt/fast/table/border-collapsing/001-expected.txt:
  • platform/qt/fast/table/border-collapsing/001-vertical-expected.png:
  • platform/qt/fast/table/border-collapsing/001-vertical-expected.txt:
  • platform/qt/fast/table/border-collapsing/002-expected.png:
  • platform/qt/fast/table/border-collapsing/002-expected.txt:
  • platform/qt/fast/table/border-collapsing/002-vertical-expected.png:
  • platform/qt/fast/table/border-collapsing/002-vertical-expected.txt:
  • platform/qt/fast/table/border-collapsing/003-expected.png:
  • platform/qt/fast/table/border-collapsing/003-expected.txt:
  • platform/qt/fast/table/border-collapsing/003-vertical-expected.png:
  • platform/qt/fast/table/border-collapsing/003-vertical-expected.txt:
  • platform/qt/fast/table/border-collapsing/004-vertical-expected.png:
  • platform/qt/fast/table/border-collapsing/004-vertical-expected.txt:
  • platform/qt/fast/table/border-collapsing/border-collapsing-head-foot-expected.png:
  • platform/qt/fast/table/border-collapsing/border-collapsing-head-foot-expected.txt:
  • platform/qt/fast/table/border-collapsing/border-collapsing-head-foot-vertical-expected.png:
  • platform/qt/fast/table/border-collapsing/border-collapsing-head-foot-vertical-expected.txt:
  • platform/qt/fast/table/border-collapsing/rtl-border-collapsing-expected.png:
  • platform/qt/fast/table/border-collapsing/rtl-border-collapsing-expected.txt:
  • platform/qt/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.png:
  • platform/qt/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.txt:
  • platform/qt/fast/table/cell-absolute-child-expected.png:
  • platform/qt/fast/table/cell-absolute-child-expected.txt:
  • platform/qt/fast/table/cell-coalescing-expected.png:
  • platform/qt/fast/table/cell-coalescing-expected.txt:
  • platform/qt/fast/table/cell-pref-width-invalidation-expected.png:
  • platform/qt/fast/table/cell-pref-width-invalidation-expected.txt:
  • platform/qt/fast/table/cell-width-auto-expected.png:
  • platform/qt/fast/table/cell-width-auto-expected.txt:
  • platform/qt/fast/table/cellindex-expected.png:
  • platform/qt/fast/table/cellindex-expected.txt:
  • platform/qt/fast/table/click-near-anonymous-table-expected.png:
  • platform/qt/fast/table/click-near-anonymous-table-expected.txt:
  • platform/qt/fast/table/colgroup-preceded-by-caption-expected.png:
  • platform/qt/fast/table/colgroup-preceded-by-caption-expected.txt:
  • platform/qt/fast/table/colgroup-spanning-groups-rules-expected.png:
  • platform/qt/fast/table/colgroup-spanning-groups-rules-expected.txt:
  • platform/qt/fast/table/colspanMinWidth-expected.png:
  • platform/qt/fast/table/colspanMinWidth-expected.txt:
  • platform/qt/fast/table/dynamic-caption-add-before-child-expected.png:
  • platform/qt/fast/table/dynamic-caption-add-before-child-expected.txt:
  • platform/qt/fast/table/dynamic-caption-add-remove-before-child-expected.png:
  • platform/qt/fast/table/dynamic-caption-add-remove-before-child-expected.txt:
  • platform/qt/fast/table/dynamic-cellpadding-expected.png:
  • platform/qt/fast/table/dynamic-cellpadding-expected.txt:
  • platform/qt/fast/table/dynamic-descendant-percentage-height-expected.png:
  • platform/qt/fast/table/dynamic-descendant-percentage-height-expected.txt:
  • platform/qt/fast/table/early-table-layout-expected.png:
  • platform/qt/fast/table/early-table-layout-expected.txt:
  • platform/qt/fast/table/edge-offsets-expected.png:
  • platform/qt/fast/table/edge-offsets-expected.txt:
  • platform/qt/fast/table/empty-cells-expected.png:
  • platform/qt/fast/table/empty-cells-expected.txt:
  • platform/qt/fast/table/empty-row-crash-expected.png:
  • platform/qt/fast/table/empty-row-crash-expected.txt:
  • platform/qt/fast/table/empty-table-percent-height-expected.png:
  • platform/qt/fast/table/empty-table-percent-height-expected.txt:
  • platform/qt/fast/table/fixed-nested-expected.png:
  • platform/qt/fast/table/fixed-nested-expected.txt:
  • platform/qt/fast/table/fixed-table-non-cell-in-row-expected.png:
  • platform/qt/fast/table/fixed-table-non-cell-in-row-expected.txt:
  • platform/qt/fast/table/fixed-table-with-percent-inside-percent-table-expected.txt:
  • platform/qt/fast/table/fixed-table-with-percent-width-inside-auto-table-expected.txt:
  • platform/qt/fast/table/fixed-table-with-percent-width-inside-div-expected.txt:
  • platform/qt/fast/table/fixed-table-with-percent-width-inside-extra-large-div-expected.txt:
  • platform/qt/fast/table/fixed-table-with-percent-width-inside-fixed-width-table-expected.txt:
  • platform/qt/fast/table/fixed-table-with-small-percent-width-expected.txt:
  • platform/qt/fast/table/floating-th-expected.png:
  • platform/qt/fast/table/floating-th-expected.txt:
  • platform/qt/fast/table/floatingTablePaintBackground-expected.png:
  • platform/qt/fast/table/floatingTablePaintBackground-expected.txt:
  • platform/qt/fast/table/form-with-table-style-expected.png:
  • platform/qt/fast/table/form-with-table-style-expected.txt:
  • platform/qt/fast/table/frame-and-rules-expected.png:
  • platform/qt/fast/table/frame-and-rules-expected.txt:
  • platform/qt/fast/table/generated-caption-expected.png:
  • platform/qt/fast/table/generated-caption-expected.txt:
  • platform/qt/fast/table/giantRowspan2-expected.png:
  • platform/qt/fast/table/giantRowspan2-expected.txt:
  • platform/qt/fast/table/inline-form-assert-expected.png:
  • platform/qt/fast/table/inline-form-assert-expected.txt:
  • platform/qt/fast/table/insert-before-anonymous-ancestors-expected.png:
  • platform/qt/fast/table/insert-before-anonymous-ancestors-expected.txt:
  • platform/qt/fast/table/insert-cell-before-form-expected.png:
  • platform/qt/fast/table/insert-cell-before-form-expected.txt:
  • platform/qt/fast/table/insert-row-before-form-expected.png:
  • platform/qt/fast/table/insert-row-before-form-expected.txt:
  • platform/qt/fast/table/invisible-cell-background-expected.png:
  • platform/qt/fast/table/invisible-cell-background-expected.txt:
  • platform/qt/fast/table/large-width-expected.png:
  • platform/qt/fast/table/large-width-expected.txt:
  • platform/qt/fast/table/multiple-captions-display-expected.png:
  • platform/qt/fast/table/multiple-captions-display-expected.txt:
  • platform/qt/fast/table/multiple-percent-height-rows-expected.png:
  • platform/qt/fast/table/multiple-percent-height-rows-expected.txt:
  • platform/qt/fast/table/nested-percent-height-table-expected.png:
  • platform/qt/fast/table/nested-percent-height-table-expected.txt:
  • platform/qt/fast/table/nobr-expected.png:
  • platform/qt/fast/table/nobr-expected.txt:
  • platform/qt/fast/table/overflowHidden-expected.png:
  • platform/qt/fast/table/overflowHidden-expected.txt:
  • platform/qt/fast/table/percent-heights-expected.png:
  • platform/qt/fast/table/percent-heights-expected.txt:
  • platform/qt/fast/table/prepend-in-anonymous-table-expected.png:
  • platform/qt/fast/table/prepend-in-anonymous-table-expected.txt:
  • platform/qt/fast/table/quote-text-around-iframe-expected.png:
  • platform/qt/fast/table/quote-text-around-iframe-expected.txt:
  • platform/qt/fast/table/relative-position-containment-expected.png:
  • platform/qt/fast/table/relative-position-containment-expected.txt:
  • platform/qt/fast/table/relative-position-offsets-expected.png:
  • platform/qt/fast/table/relative-position-offsets-expected.txt:
  • platform/qt/fast/table/relative-position-stacking-expected.png:
  • platform/qt/fast/table/relative-position-stacking-expected.txt:
  • platform/qt/fast/table/remove-td-display-none-expected.png:
  • platform/qt/fast/table/remove-td-display-none-expected.txt:
  • platform/qt/fast/table/replaced-percent-height-expected.png:
  • platform/qt/fast/table/replaced-percent-height-expected.txt:
  • platform/qt/fast/table/row-height-recalc-expected.png:
  • platform/qt/fast/table/row-height-recalc-expected.txt:
  • platform/qt/fast/table/rowindex-expected.png:
  • platform/qt/fast/table/rowindex-expected.txt:
  • platform/qt/fast/table/rowspan-paint-order-expected.png:
  • platform/qt/fast/table/rowspan-paint-order-expected.txt:
  • platform/qt/fast/table/rowspan-paint-order-vertical-expected.png:
  • platform/qt/fast/table/rowspan-paint-order-vertical-expected.txt:
  • platform/qt/fast/table/rtl-cell-display-none-assert-expected.png:
  • platform/qt/fast/table/rtl-cell-display-none-assert-expected.txt:
  • platform/qt/fast/table/rules-attr-dynchange1-expected.png:
  • platform/qt/fast/table/rules-attr-dynchange1-expected.txt:
  • platform/qt/fast/table/rules-attr-dynchange2-expected.png:
  • platform/qt/fast/table/rules-attr-dynchange2-expected.txt:
  • platform/qt/fast/table/spanOverlapRepaint-expected.png:
  • platform/qt/fast/table/spanOverlapRepaint-expected.txt:
  • platform/qt/fast/table/stale-grid-crash-expected.png:
  • platform/qt/fast/table/stale-grid-crash-expected.txt:
  • platform/qt/fast/table/table-after-child-in-table-expected.png:
  • platform/qt/fast/table/table-after-child-in-table-expected.txt:
  • platform/qt/fast/table/table-and-parts-outline-expected.png:
  • platform/qt/fast/table/table-and-parts-outline-expected.txt:
  • platform/qt/fast/table/table-before-child-in-table-expected.png:
  • platform/qt/fast/table/table-before-child-in-table-expected.txt:
  • platform/qt/fast/table/table-cell-after-child-in-block-expected.png:
  • platform/qt/fast/table/table-cell-after-child-in-block-expected.txt:
  • platform/qt/fast/table/table-cell-after-child-in-table-expected.png:
  • platform/qt/fast/table/table-cell-after-child-in-table-expected.txt:
  • platform/qt/fast/table/table-cell-before-child-in-block-expected.png:
  • platform/qt/fast/table/table-cell-before-child-in-block-expected.txt:
  • platform/qt/fast/table/table-cell-before-child-in-table-expected.png:
  • platform/qt/fast/table/table-cell-before-child-in-table-expected.txt:
  • platform/qt/fast/table/table-continuation-outline-paint-crash-expected.png:
  • platform/qt/fast/table/table-continuation-outline-paint-crash-expected.txt:
  • platform/qt/fast/table/table-display-types-expected.png:
  • platform/qt/fast/table/table-display-types-expected.txt:
  • platform/qt/fast/table/table-display-types-strict-expected.png:
  • platform/qt/fast/table/table-display-types-strict-expected.txt:
  • platform/qt/fast/table/table-display-types-vertical-expected.png:
  • platform/qt/fast/table/table-display-types-vertical-expected.txt:
  • platform/qt/fast/table/table-hspace-align-center-expected.png:
  • platform/qt/fast/table/table-hspace-align-center-expected.txt:
  • platform/qt/fast/table/table-row-after-child-in-block-expected.png:
  • platform/qt/fast/table/table-row-after-child-in-block-expected.txt:
  • platform/qt/fast/table/table-row-after-child-in-table-expected.png:
  • platform/qt/fast/table/table-row-after-child-in-table-expected.txt:
  • platform/qt/fast/table/table-row-before-child-in-block-expected.png:
  • platform/qt/fast/table/table-row-before-child-in-block-expected.txt:
  • platform/qt/fast/table/table-row-before-child-in-table-expected.png:
  • platform/qt/fast/table/table-row-before-child-in-table-expected.txt:
  • platform/qt/fast/table/tableInsideCaption-expected.png:
  • platform/qt/fast/table/tableInsideCaption-expected.txt:
  • platform/qt/fast/table/text-field-baseline-expected.png:
  • platform/qt/fast/table/text-field-baseline-expected.txt:
  • platform/qt/fast/table/unbreakable-images-quirk-expected.png:
  • platform/qt/fast/table/unbreakable-images-quirk-expected.txt:
  • platform/qt/fast/table/unused-percent-heights-expected.png:
  • platform/qt/fast/table/unused-percent-heights-expected.txt:
  • platform/qt/fast/table/vertical-align-baseline-expected.png:
  • platform/qt/fast/table/vertical-align-baseline-expected.txt:
10:10 AM Changeset in webkit [122984] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

Chrome/Skia: PDF print output does not have clickable links.
https://bugs.webkit.org/show_bug.cgi?id=91171

Patch by Steve VanDeBogart <vandebo@chromium.org> on 2012-07-18
Reviewed by Stephen White.

Connect GraphicsContext::setURLForRect to Skia's new API for annotations.

Printing is not generally testable.

  • platform/graphics/skia/GraphicsContextSkia.cpp:

(WebCore::GraphicsContext::setURLForRect):

9:51 AM Changeset in webkit [122983] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

[GStreamer] 0.11 build broken
https://bugs.webkit.org/show_bug.cgi?id=91629

Patch by Philippe Normand <pnormand@igalia.com> on 2012-07-18
Reviewed by Alexis Menard.

  • platform/graphics/gstreamer/VideoSinkGStreamer.cpp:

(webkitVideoSinkProposeAllocation): Pass null GstStructure to
gst_query_add_allocation_meta(). Our propose-allocation method
is simple enough to not need to set it.

9:46 AM Changeset in webkit [122982] by jsbell@chromium.org
  • 2 edits in trunk/LayoutTests

[chromium] Unreviewed TestExpectations update for WK90469.
Coalesce entries for windows flaky crashes related to 90469, and try
skipping a particularly impacted test to see if fails shift elsewhere.
https://bugs.webkit.org/show_bug.cgi?id=90469

  • platform/chromium/TestExpectations:
9:36 AM Changeset in webkit [122981] by Chris Fleizach
  • 3 edits
    2 adds in trunk

AX: <input type="submit"> unlabelled.
https://bugs.webkit.org/show_bug.cgi?id=91563

Reviewed by Adele Peterson.

Source/WebCore:

Make sure the default value is returned if there is no other value specified.

Test: platform/mac/accessibility/submit-button-default-value.html

  • accessibility/AccessibilityRenderObject.cpp:

(WebCore::AccessibilityRenderObject::title):

LayoutTests:

  • platform/mac/accessibility/submit-button-default-value-expected.txt: Added.
  • platform/mac/accessibility/submit-button-default-value.html: Added.
9:34 AM Changeset in webkit [122980] by shawnsingh@chromium.org
  • 10 edits in trunk

[chromium] Remove awkward anchorPoint usage that implicity affects layer position
https://bugs.webkit.org/show_bug.cgi?id=91472

Reviewed by Adrienne Walker.

Source/WebCore:

Covered by existing layout tests and unit tests, several existing unit tests updated.

In GraphicsLayerChromium, anchorPoint() implicity affects
position(). Therefore, unit tests needed to remember to set
anchorPoint correctly when trying to position layers for
testing. However, it's easy to forget that initialization, and
probably shouldn't be necessary anyway since conceptually
anchorPoint does not affect layer position.

This patch removes the "actualPosition + anchorPoint" quirk in
GraphicsLayerChromium, so that this problem is avoided.

  • platform/graphics/chromium/GraphicsLayerChromium.cpp:

(WebCore::GraphicsLayerChromium::updateLayerPosition): No longer computes position + anchorPoint. Instead this is done in calcDrawTransformsInternal.
(WebCore::GraphicsLayerChromium::updateLayerSize): No longer affects computation of position.
(WebCore::GraphicsLayerChromium::updateAnchorPoint): No longer affects computation of position
(WebCore::GraphicsLayerChromium::updateLayerPreserves3D): Position is initialized to zero instead of relative to anchorPoint

  • platform/graphics/chromium/cc/CCLayerTreeHostCommon.cpp:

(WebCore::calculateDrawTransformsInternal): explicitly use position + anchorPoint in this code, for both layer and replica.

Note that replicaLayer now uses its own anchorPoint, which seems to be more consistent with Safari behavior.

Source/WebKit/chromium:

Unit tests were updated to account for the fact that anchorPoint
and position are now separated.

  • tests/CCDamageTrackerTest.cpp:

(WebKitTests::TEST_F):

  • tests/CCLayerTreeHostCommonTest.cpp:
  • tests/CCLayerTreeHostImplTest.cpp:
  • tests/TiledLayerChromiumTest.cpp:

LayoutTests:

  • platform/chromium/TestExpectations: marked compositing/reflections/nested-reflection-anchor-point.html as needing

rebaselining. Its behavior should now be similar to Safari.

9:23 AM EFLWebKitTests edited by tmpsantos@gmail.com
(diff)
9:22 AM EFLWebKitTests edited by tmpsantos@gmail.com
(diff)
9:12 AM EFLWebKitTests edited by tmpsantos@gmail.com
(diff)
9:10 AM Changeset in webkit [122979] by pfeldman@chromium.org
  • 4 edits in trunk/Source/WebCore

Web Inspector: [Regression] Save as file is missing in Network panel preview/response tabs.
https://bugs.webkit.org/show_bug.cgi?id=91625

Reviewed by Vsevolod Vlasov.

  • inspector/front-end/HandlerRegistry.js:
  • inspector/front-end/NetworkPanel.js:
8:42 AM Changeset in webkit [122978] by krit@webkit.org
  • 5 edits
    3 adds in trunk

SVG CSS property types with <number> don't support exponents
https://bugs.webkit.org/show_bug.cgi?id=52542

Reviewed by Nikolas Zimmermann.

Source/WebCore:

Parse numbers in SVG presentation attributes with SVG parser to support scientific notations.
The SVG parser is already well tested and has some extra checks for edge like protection from
overflow.

The patch is based upon a patch of Bear Travis.

Test: svg/css/scientific-numbers.html

  • css/CSSParser.cpp:

(WebCore::CSSParser::lex): Use SVG parser to parse numbers of SVG attributes.

  • svg/SVGParserUtilities.cpp:

(WebCore::parseSVGNumber): Added accessor to call from CSSParser with double value.
(WebCore):

  • svg/SVGParserUtilities.h:

(WebCore):

LayoutTests:

Test scientific number values on SVG presentation attributes.

  • svg/css/scientific-numbers-expected.txt: Added.
  • svg/css/scientific-numbers.html: Added.
  • svg/css/script-tests/scientific-numbers.js: Added.
8:39 AM Changeset in webkit [122977] by pfeldman@chromium.org
  • 10 edits in trunk/Source/WebCore

Web Inspector: beautify the paused in debugger message, make it configurable from the front-end.
https://bugs.webkit.org/show_bug.cgi?id=91628

Reviewed by Vsevolod Vlasov.

Made message smaller, using consistent font;
Made message configurable from the front-end.

  • English.lproj/localizedStrings.js:
  • inspector/DOMNodeHighlighter.cpp:

(WebCore::InspectorOverlay::InspectorOverlay):
(WebCore::InspectorOverlay::setPausedInDebuggerMessage):
(WebCore::InspectorOverlay::update):
(WebCore::InspectorOverlay::drawPausedInDebugger):

  • inspector/DOMNodeHighlighter.h:

(InspectorOverlay):

  • inspector/Inspector.json:
  • inspector/InspectorDebuggerAgent.cpp:

(WebCore::InspectorDebuggerAgent::setOverlayMessage):
(WebCore):
(WebCore::InspectorDebuggerAgent::clear):

  • inspector/InspectorDebuggerAgent.h:

(InspectorDebuggerAgent):

  • inspector/PageDebuggerAgent.cpp:

(WebCore::PageDebuggerAgent::setOverlayMessage):

  • inspector/PageDebuggerAgent.h:

(PageDebuggerAgent):

  • inspector/front-end/DebuggerModel.js:

(WebInspector.DebuggerModel.prototype._setDebuggerPausedDetails):

8:15 AM Changeset in webkit [122976] by commit-queue@webkit.org
  • 5 edits
    2 adds in trunk

WebCore::StylePropertySet::addParsedProperties - crash
https://bugs.webkit.org/show_bug.cgi?id=91153

Patch by Douglas Stockwell <dstockwell@chromium.org> on 2012-07-18
Reviewed by Andreas Kling.

Source/WebCore:

WebKitCSSKeyframeRule::style exposed an immutable StylePropertySet.
Modified to create a mutable copy on demand.

Test: fast/css/css-keyframe-style-mutate-crash.html

  • css/StyleResolver.cpp:

(WebCore::StyleResolver::collectMatchingRulesForList):

  • css/WebKitCSSKeyframeRule.cpp:

(WebCore::StyleKeyframe::mutableProperties): Added, creates a mutable copy of properties as required.
(WebCore::WebKitCSSKeyframeRule::style):

  • css/WebKitCSSKeyframeRule.h:

(WebCore::StyleKeyframe::properties): Made const, use mutableProperties to mutate.

LayoutTests:

  • fast/css/css-keyframe-style-mutate-crash-expected.txt: Added.
  • fast/css/css-keyframe-style-mutate-crash.html: Added.
8:13 AM Changeset in webkit [122975] by kseo@webkit.org
  • 2 edits in trunk/Source/WebCore

[Texmap] Make TextureMapperLayer clip m_state.needsDisplayRect with the layerRect.
https://bugs.webkit.org/show_bug.cgi?id=91595

Patch by Huang Dongsung <luxtella@company100.net> on 2012-07-18
Reviewed by Noam Rosenthal.

Internal review by Kwang Yul Seo.

Currently, TextureMapperLayer creates an ImageBuffer as big as
m_state.needsDisplayRect if m_state.needsDispaly is false. The size of
m_state.needsDisplayRect can be bigger than the size of the layerRect, so we may
consume more memory than the size of the layerRect. It even can cause crash if
m_state.needsDisplayRect is too big.

No new tests, covered by existing tests.

  • platform/graphics/texmap/TextureMapperLayer.cpp:

(WebCore::TextureMapperLayer::updateBackingStore):

8:12 AM Changeset in webkit [122974] by kbalazs@webkit.org
  • 2 edits
    7 adds in trunk/LayoutTests

Unreviewed gardening.
More pixel rebaseline in compositing for qt-5.0-wk2.

Added baselines, mark failing tests.

  • platform/qt-5.0-wk2/TestExpectations:
  • platform/qt-5.0-wk2/compositing/culling/filter-occlusion-blur-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/culling/filter-occlusion-blur-large-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/fixed-position-scroll-offset-history-restore-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/flat-with-transformed-child-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/images/content-image-change-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/layer-creation/fixed-position-scroll-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/layer-creation/fixed-position-scroll-expected.txt: Added.
8:07 AM Changeset in webkit [122973] by commit-queue@webkit.org
  • 4 edits
    4 copies
    3 adds in trunk/Tools

[CMake][EFL] Build and run TestWebKitAPI unit tests
https://bugs.webkit.org/show_bug.cgi?id=90671

Patch by Thiago Marcos P. Santos <thiago.santos@intel.com> on 2012-07-18
Reviewed by Daniel Bates.

This patch enables almost for free a significant amount of test for the
WebKit C API, WTF and KURL. It makes easy for CMake based ports to
enable TestWebKitAPI since the missing bits to implement are
relatively simple.

  • CMakeLists.txt:
  • TestWebKitAPI/CMakeLists.txt: Added.
  • TestWebKitAPI/PlatformEfl.cmake: Added.
  • TestWebKitAPI/PlatformWebView.h:
  • TestWebKitAPI/config.h:
  • TestWebKitAPI/efl/InjectedBundleController.cpp: Added.

(TestWebKitAPI):
(TestWebKitAPI::InjectedBundleController::platformInitialize):

  • TestWebKitAPI/efl/PlatformUtilities.cpp: Added.

(TestWebKitAPI):
(Util):
(TestWebKitAPI::Util::run):
(TestWebKitAPI::Util::sleep):
(TestWebKitAPI::Util::createURLForResource):
(TestWebKitAPI::Util::createInjectedBundlePath):
(TestWebKitAPI::Util::URLForNonExistentResource):

  • TestWebKitAPI/efl/PlatformWebView.cpp: Added.

(TestWebKitAPI):
(TestWebKitAPI::initEcoreEvas):
(TestWebKitAPI::PlatformWebView::PlatformWebView):
(TestWebKitAPI::PlatformWebView::~PlatformWebView):
(TestWebKitAPI::PlatformWebView::page):

  • TestWebKitAPI/efl/main.cpp: Added.

(checkForUseX11WindowArgument):
(main):

8:04 AM Changeset in webkit [122972] by jason.liu@torchmobile.com.cn
  • 2 edits in trunk/Source/WebCore

[BlackBerry] We should update the status in NetworkJob if there is a new one from libcurl.
https://bugs.webkit.org/show_bug.cgi?id=91475

Reviewed by Yong Li.

Libcurl sometimes sends multiple status messages, we need to keep the last
one in NetworkJob.
We originally had the m_statusReceived check, then we found out that libcurl
sometimes sent additional 401 codes and added the 401 exception to the check,
and now we're removing the whole check(so we don't need the exception either).

RIM PR# 163172
Reviewed internally by Joe Mason.

No new tests. This is caused by libcurl's multiple status messages.
So we don't need to write a test case for webkit.

  • platform/network/blackberry/NetworkJob.cpp:

(WebCore::NetworkJob::handleNotifyStatusReceived):

7:52 AM Changeset in webkit [122971] by commit-queue@webkit.org
  • 129 edits in trunk/LayoutTests

[Qt] fast/text tests needs update after rebaseline and new testfonts
https://bugs.webkit.org/show_bug.cgi?id=91570

Patch by Bruno de Oliveira Abinader <Bruno de Oliveira Abinader> on 2012-07-18
Reviewed by Simon Hausmann.

After the rebaseline from changeset 121971 - [Qt] DumpRenderTree does not use
'monospace' font when directed, fast/text tests directory needs to be updated.

  • platform/qt-5.0-wk1/Skipped:
  • platform/qt-5.0-wk2/Skipped:
  • platform/qt-5.0-wk2/fast/text/large-text-composed-char-expected.png:
  • platform/qt-5.0-wk2/fast/text/large-text-composed-char-expected.txt:
  • platform/qt-5.0/Skipped:
  • platform/qt-5.0/fast/text/backslash-to-yen-sign-euc-expected.txt:
  • platform/qt-5.0/fast/text/backslash-to-yen-sign-expected.txt:
  • platform/qt-5.0/fast/text/basic/003-expected.png:
  • platform/qt-5.0/fast/text/basic/003-expected.txt:
  • platform/qt-5.0/fast/text/fallback-traits-fixup-expected.txt:
  • platform/qt-5.0/fast/text/international/hindi-whitespace-expected.txt:
  • platform/qt-5.0/fast/text/international/text-spliced-font-expected.png:
  • platform/qt-5.0/fast/text/international/text-spliced-font-expected.txt:
  • platform/qt-5.0/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.txt:
  • platform/qt-5.0/fast/text/large-text-composed-char-expected.png:
  • platform/qt-5.0/fast/text/large-text-composed-char-expected.txt:
  • platform/qt-5.0/fast/text/letter-spacing-negative-opacity-expected.png:
  • platform/qt-5.0/fast/text/letter-spacing-negative-opacity-expected.txt:
  • platform/qt-5.0/fast/text/softHyphen-expected.txt:
  • platform/qt-5.0/fast/text/text-letter-spacing-expected.txt:
  • platform/qt/fast/text/atsui-kerning-and-ligatures-expected.txt:
  • platform/qt/fast/text/atsui-small-caps-punctuation-size-expected.png:
  • platform/qt/fast/text/atsui-small-caps-punctuation-size-expected.txt:
  • platform/qt/fast/text/backslash-to-yen-sign-dynamic-expected.png:
  • platform/qt/fast/text/backslash-to-yen-sign-dynamic-expected.txt:
  • platform/qt/fast/text/basic/001-expected.png:
  • platform/qt/fast/text/basic/001-expected.txt:
  • platform/qt/fast/text/basic/002-expected.txt:
  • platform/qt/fast/text/basic/004-expected.txt:
  • platform/qt/fast/text/basic/005-expected.txt:
  • platform/qt/fast/text/basic/006-expected.txt:
  • platform/qt/fast/text/basic/007-expected.txt:
  • platform/qt/fast/text/basic/008-expected.txt:
  • platform/qt/fast/text/basic/009-expected.png:
  • platform/qt/fast/text/basic/009-expected.txt:
  • platform/qt/fast/text/basic/011-expected.txt:
  • platform/qt/fast/text/basic/012-expected.txt:
  • platform/qt/fast/text/basic/generic-family-changes-expected.png:
  • platform/qt/fast/text/basic/generic-family-changes-expected.txt:
  • platform/qt/fast/text/basic/generic-family-reset-expected.png:
  • platform/qt/fast/text/basic/generic-family-reset-expected.txt:
  • platform/qt/fast/text/break-word-expected.png:
  • platform/qt/fast/text/break-word-expected.txt:
  • platform/qt/fast/text/capitalize-empty-generated-string-expected.txt:
  • platform/qt/fast/text/capitalize-preserve-nbsp-expected.txt:
  • platform/qt/fast/text/cg-vs-atsui-expected.png:
  • platform/qt/fast/text/cg-vs-atsui-expected.txt:
  • platform/qt/fast/text/complex-preferred-logical-widths-expected.png:
  • platform/qt/fast/text/complex-preferred-logical-widths-expected.txt:
  • platform/qt/fast/text/complex-synthetic-bold-space-width-expected.png:
  • platform/qt/fast/text/complex-synthetic-bold-space-width-expected.txt:
  • platform/qt/fast/text/delete-hard-break-character-expected.txt:
  • platform/qt/fast/text/embed-at-end-of-pre-wrap-line-expected.png:
  • platform/qt/fast/text/embed-at-end-of-pre-wrap-line-expected.txt:
  • platform/qt/fast/text/fake-italic-expected.txt:
  • platform/qt/fast/text/firstline/001-expected.txt:
  • platform/qt/fast/text/firstline/002-expected.txt:
  • platform/qt/fast/text/firstline/003-expected.txt:
  • platform/qt/fast/text/font-initial-expected.txt:
  • platform/qt/fast/text/hyphenate-limit-before-after-expected.png:
  • platform/qt/fast/text/hyphenate-limit-before-after-expected.txt:
  • platform/qt/fast/text/hyphenate-limit-lines-expected.png:
  • platform/qt/fast/text/hyphenate-limit-lines-expected.txt:
  • platform/qt/fast/text/justified-selection-at-edge-expected.txt:
  • platform/qt/fast/text/justified-selection-expected.txt:
  • platform/qt/fast/text/line-breaks-after-white-space-expected.png:
  • platform/qt/fast/text/line-breaks-after-white-space-expected.txt:
  • platform/qt/fast/text/midword-break-before-surrogate-pair-2-expected.txt:
  • platform/qt/fast/text/midword-break-hang-expected.txt:
  • platform/qt/fast/text/reset-emptyRun-expected.txt:
  • platform/qt/fast/text/selection-hard-linebreak-expected.png:
  • platform/qt/fast/text/selection-hard-linebreak-expected.txt:
  • platform/qt/fast/text/shadow-no-blur-expected.png:
  • platform/qt/fast/text/shadow-no-blur-expected.txt:
  • platform/qt/fast/text/shadow-translucent-fill-expected.txt:
  • platform/qt/fast/text/should-use-atsui-expected.txt:
  • platform/qt/fast/text/stroking-decorations-expected.txt:
  • platform/qt/fast/text/stroking-expected.txt:
  • platform/qt/fast/text/text-shadow-no-default-color-expected.txt:
  • platform/qt/fast/text/textIteratorNilRenderer-expected.png:
  • platform/qt/fast/text/textIteratorNilRenderer-expected.txt:
  • platform/qt/fast/text/unicode-variation-selector-expected.png:
  • platform/qt/fast/text/unicode-variation-selector-expected.txt:
  • platform/qt/fast/text/updateNewFont-expected.txt:
  • platform/qt/fast/text/wbr-expected.txt:
  • platform/qt/fast/text/wbr-in-pre-crash-expected.txt:
  • platform/qt/fast/text/wbr-pre-expected.png:
  • platform/qt/fast/text/wbr-pre-expected.txt:
  • platform/qt/fast/text/wbr-styled-expected.png:
  • platform/qt/fast/text/wbr-styled-expected.txt:
  • platform/qt/fast/text/whitespace/002-expected.png:
  • platform/qt/fast/text/whitespace/002-expected.txt:
  • platform/qt/fast/text/whitespace/003-expected.png:
  • platform/qt/fast/text/whitespace/003-expected.txt:
  • platform/qt/fast/text/whitespace/006-expected.txt:
  • platform/qt/fast/text/whitespace/007-expected.txt:
  • platform/qt/fast/text/whitespace/008-expected.txt:
  • platform/qt/fast/text/whitespace/009-expected.txt:
  • platform/qt/fast/text/whitespace/012-expected.png:
  • platform/qt/fast/text/whitespace/012-expected.txt:
  • platform/qt/fast/text/whitespace/013-expected.txt:
  • platform/qt/fast/text/whitespace/014-expected.txt:
  • platform/qt/fast/text/whitespace/018-expected.txt:
  • platform/qt/fast/text/whitespace/019-expected.png:
  • platform/qt/fast/text/whitespace/019-expected.txt:
  • platform/qt/fast/text/whitespace/020-expected.txt:
  • platform/qt/fast/text/whitespace/021-expected.txt:
  • platform/qt/fast/text/whitespace/022-expected.png:
  • platform/qt/fast/text/whitespace/022-expected.txt:
  • platform/qt/fast/text/whitespace/023-expected.png:
  • platform/qt/fast/text/whitespace/023-expected.txt:
  • platform/qt/fast/text/whitespace/025-expected.txt:
  • platform/qt/fast/text/whitespace/026-expected.txt:
  • platform/qt/fast/text/whitespace/027-expected.txt:
  • platform/qt/fast/text/whitespace/029-expected.png:
  • platform/qt/fast/text/whitespace/029-expected.txt:
  • platform/qt/fast/text/whitespace/nbsp-mode-and-linewraps-expected.txt:
  • platform/qt/fast/text/whitespace/normal-after-nowrap-breaking-expected.png:
  • platform/qt/fast/text/whitespace/normal-after-nowrap-breaking-expected.txt:
  • platform/qt/fast/text/whitespace/nowrap-clear-float-expected.txt:
  • platform/qt/fast/text/whitespace/pre-break-word-expected.png:
  • platform/qt/fast/text/whitespace/pre-break-word-expected.txt:
  • platform/qt/fast/text/whitespace/pre-newline-box-test-expected.png:
  • platform/qt/fast/text/whitespace/pre-newline-box-test-expected.txt:
  • platform/qt/fast/text/whitespace/pre-wrap-last-char-expected.txt:
  • platform/qt/fast/text/whitespace/pre-wrap-line-test-expected.png:
  • platform/qt/fast/text/whitespace/pre-wrap-line-test-expected.txt:
  • platform/qt/fast/text/whitespace/span-in-word-space-causes-overflow-expected.txt:
7:47 AM Changeset in webkit [122970] by commit-queue@webkit.org
  • 3 edits
    4 adds in trunk

TOUCH_ADJUSTMENT is too aggressive when snapping to large elements.
https://bugs.webkit.org/show_bug.cgi?id=91262

Patch by Kevin Ellis <kevers@chromium.org> on 2012-07-18
Reviewed by Antonio Gomes.

Source/WebCore:

Constrains the extent to which the touch point can be adjusted when
generating synthetic mouse events when TOUCH_ADJUSTEMNT is enabled.
Previously, the target position snapped to the center of the target
element, which can be far removed from the touch position when tapping
on or near a large element. The refined strategy is to leave the
adjusted position unchanged if tapping within the element or to snap
to the center of the overlap region if the touch point lies outside the
bounds of the element, but the touch area and element bounds overlap.
For non-rectilineary bounds, a point lying outside the element boundary
is pulled towards the center of the element, by an amount limited by
the radius of the touch area.

Tests: touchadjustment/big-div.html

touchadjustment/rotated-node.html

  • page/TouchAdjustment.cpp:

(WebCore::TouchAdjustment::contentsToWindow):
(TouchAdjustment):
(WebCore::TouchAdjustment::snapTo):
(WebCore::TouchAdjustment::findNodeWithLowestDistanceMetric):

LayoutTests:

Adding a test case to ensure that the adjusted touch position is
within the bounds of the target element and the touch area.
Previously, the target position snapped to the center of the target
element, which can be far removed from the touch area.

The second test is for non-rectilinear elements, and verifies that
the touch area must overlap the true bounds of the element for an
adjustment to occur.

  • touchadjustment/big-div-expected.txt: Added.
  • touchadjustment/big-div.html: Added.
  • touchadjustment/rotated-node-expected.txt: Added.
  • touchadjustment/rotated-node.html: Added.
7:41 AM Changeset in webkit [122969] by commit-queue@webkit.org
  • 5 edits
    3 adds in trunk/Source/WebKit2

[EFL][WK2] Add Ewk class for cookie manager
https://bugs.webkit.org/show_bug.cgi?id=91053

Patch by Christophe Dumez <Christophe Dumez> on 2012-07-18
Reviewed by Gustavo Noronha Silva.

Add new Ewk_Cookie_Manager class to allow the client
to set/get the cookie acceptance policy, support
persistent cookie storage and clear cookies.

The Ewk_Cookie_Manager instance can be retrieved
from the Ewk_Context API.

  • PlatformEfl.cmake:
  • UIProcess/API/efl/EWebKit2.h:
  • UIProcess/API/efl/ewk_context.cpp:

(_Ewk_Context):
(_Ewk_Context::_Ewk_Context):
(_Ewk_Context::~_Ewk_Context):
(ewk_context_cookie_manager_get):

  • UIProcess/API/efl/ewk_context.h:
  • UIProcess/API/efl/ewk_cookie_manager.cpp: Added.

(_Ewk_Cookie_Manager):
(_Ewk_Cookie_Manager::_Ewk_Cookie_Manager):
(ewk_cookie_manager_persistent_storage_set):
(ewk_cookie_manager_accept_policy_set):
(Get_Policy_Async_Data):
(getAcceptPolicyCallback):
(ewk_cookie_manager_async_accept_policy_get):
(Get_Hostnames_Async_Data):
(getHostnamesWithCookiesCallback):
(ewk_cookie_manager_async_hostnames_with_cookies_get):
(ewk_cookie_manager_hostname_cookies_clear):
(ewk_cookie_manager_cookies_clear):
(ewk_cookie_manager_free):
(ewk_cookie_manager_new):

  • UIProcess/API/efl/ewk_cookie_manager.h: Added.
  • UIProcess/API/efl/ewk_cookie_manager_private.h: Added.
7:38 AM Changeset in webkit [122968] by vsevik@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed chromium gardening, unskipped tests.

  • platform/chromium/TestExpectations:
7:06 AM Changeset in webkit [122967] by kbalazs@webkit.org
  • 25 edits
    3 adds in trunk/LayoutTests

[Qt] editing/input and editing/unsupported-content tests needs update after rebaseline and new testfonts
https://bugs.webkit.org/show_bug.cgi?id=91400

Unreviewed rebaseline.

Patch by Szilard Ledan <Szilárd LEDÁN> on 2012-07-18

  • platform/qt-5.0-wk1/Skipped:
  • platform/qt-5.0/Skipped:
  • platform/qt/editing/input/caret-at-the-edge-of-contenteditable-expected.png: Added.
  • platform/qt/editing/input/caret-at-the-edge-of-contenteditable-expected.txt:
  • platform/qt/editing/input/emacs-ctrl-o-expected.png:
  • platform/qt/editing/input/emacs-ctrl-o-expected.txt:
  • platform/qt/editing/input/reveal-caret-of-multiline-contenteditable-expected.png: Added.
  • platform/qt/editing/input/reveal-caret-of-multiline-contenteditable-expected.txt:
  • platform/qt/editing/input/reveal-caret-of-multiline-input-expected.png: Added.
  • platform/qt/editing/unsupported-content/list-delete-001-expected.png:
  • platform/qt/editing/unsupported-content/list-delete-001-expected.txt:
  • platform/qt/editing/unsupported-content/list-delete-003-expected.png:
  • platform/qt/editing/unsupported-content/list-delete-003-expected.txt:
  • platform/qt/editing/unsupported-content/list-type-after-expected.png:
  • platform/qt/editing/unsupported-content/list-type-after-expected.txt:
  • platform/qt/editing/unsupported-content/list-type-before-expected.png:
  • platform/qt/editing/unsupported-content/list-type-before-expected.txt:
  • platform/qt/editing/unsupported-content/table-delete-001-expected.png:
  • platform/qt/editing/unsupported-content/table-delete-001-expected.txt:
  • platform/qt/editing/unsupported-content/table-delete-002-expected.png:
  • platform/qt/editing/unsupported-content/table-delete-002-expected.txt:
  • platform/qt/editing/unsupported-content/table-delete-003-expected.png:
  • platform/qt/editing/unsupported-content/table-delete-003-expected.txt:
  • platform/qt/editing/unsupported-content/table-type-after-expected.png:
  • platform/qt/editing/unsupported-content/table-type-after-expected.txt:
  • platform/qt/editing/unsupported-content/table-type-before-expected.png:
  • platform/qt/editing/unsupported-content/table-type-before-expected.txt:
7:04 AM Changeset in webkit [122966] by caseq@chromium.org
  • 12 edits in trunk/Source/WebCore

Web Inspector: adding pause icon for JavaScript debugging
https://bugs.webkit.org/show_bug.cgi?id=90880

Patch by Sergey Rogulenko <rogulenko@google.com> on 2012-07-18
Reviewed by Pavel Feldman.

Refactored DOMNodeHighlighter into InspectorOverlay class and added a feature to show a "pause" screen when
the Javascript debugger is paused.

  • inspector/DOMNodeHighlighter.cpp:

(WebCore::InspectorOverlay::InspectorOverlay):
(WebCore::InspectorOverlay::paint):
(WebCore::InspectorOverlay::drawOutline):
(WebCore::InspectorOverlay::getHighlight):
(WebCore::InspectorOverlay::setPausedInDebugger):
(WebCore::InspectorOverlay::hideHighlight):
(WebCore):
(WebCore::InspectorOverlay::highlightNode):
(WebCore::InspectorOverlay::setHighlightData):
(WebCore::InspectorOverlay::clearHighlightData):
(WebCore::InspectorOverlay::highlightedNode):
(WebCore::InspectorOverlay::update):
(WebCore::InspectorOverlay::drawHighlight):
(WebCore::InspectorOverlay::drawPausedInDebugger):

  • inspector/DOMNodeHighlighter.h:

(WebCore):
(InspectorOverlay):
(WebCore::InspectorOverlay::create):

  • inspector/InspectorController.cpp:

(WebCore::InspectorController::InspectorController):
(WebCore::InspectorController::drawHighlight):
(WebCore::InspectorController::getHighlight):
(WebCore::InspectorController::highlightedNode):

  • inspector/InspectorController.h:

(WebCore):
(InspectorController):

  • inspector/InspectorDOMAgent.cpp:

(WebCore::InspectorDOMAgent::InspectorDOMAgent):
(WebCore::InspectorDOMAgent::~InspectorDOMAgent):
(WebCore::InspectorDOMAgent::handleMousePress):
(WebCore::InspectorDOMAgent::mouseDidMoveOverElement):
(WebCore::InspectorDOMAgent::setSearchingForNode):
(WebCore::InspectorDOMAgent::setHighlightDataFromConfig):
(WebCore::InspectorDOMAgent::setInspectModeEnabled):
(WebCore::InspectorDOMAgent::highlightRect):
(WebCore::InspectorDOMAgent::highlightNode):
(WebCore::InspectorDOMAgent::highlightFrame):
(WebCore::InspectorDOMAgent::hideHighlight):

  • inspector/InspectorDOMAgent.h:

(WebCore):
(WebCore::InspectorDOMAgent::create):
(InspectorDOMAgent):

  • inspector/InspectorDebuggerAgent.h:

(InspectorDebuggerAgent):

  • inspector/InspectorPageAgent.cpp:

(WebCore::InspectorPageAgent::create):
(WebCore::InspectorPageAgent::InspectorPageAgent):
(WebCore::InspectorPageAgent::didPaint):

  • inspector/InspectorPageAgent.h:

(WebCore):

  • inspector/PageDebuggerAgent.cpp:

(WebCore::PageDebuggerAgent::create):
(WebCore::PageDebuggerAgent::PageDebuggerAgent):
(WebCore::PageDebuggerAgent::disable):
(WebCore):
(WebCore::PageDebuggerAgent::didPause):
(WebCore::PageDebuggerAgent::didContinue):

  • inspector/PageDebuggerAgent.h:

(WebCore):
(PageDebuggerAgent):

6:51 AM Changeset in webkit [122965] by vsevik@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed chromium gardening, updated test expectations.

  • platform/chromium/TestExpectations:
6:46 AM Changeset in webkit [122964] by caseq@chromium.org
  • 3 edits in trunk/Source/WebCore

Web Inspector: intern strings when processing timeline records
https://bugs.webkit.org/show_bug.cgi?id=91531

Reviewed by Pavel Feldman.

  • added StringPool that is capable of interning strings;
  • used it in TimelineModel to process all incoming records;
  • inspector/front-end/TimelineModel.js:

(WebInspector.TimelineModel):
(WebInspector.TimelineModel.prototype._addRecord):
(WebInspector.TimelineModel.prototype.reset):

  • inspector/front-end/utilities.js:
6:43 AM WebKitGTK/WebKit2Roadmap edited by Carlos Garcia Campos
Form client done! (diff)
6:42 AM Changeset in webkit [122963] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebCore

Use cl to preprocess IDL for Chromium Windows generate_supplemental_dependency
https://bugs.webkit.org/show_bug.cgi?id=91548

Patch by Scott Graham <scottmg@chromium.org> on 2012-07-18
Reviewed by Kentaro Hara.

Use cl.exe as preprocessor for IDL files rather than cygwin gcc. Cuts
two minute execution time on Windows by a bit better than 50%.

No new tests.

  • WebCore.gyp/WebCore.gyp:
  • bindings/scripts/preprocessor.pm:

(applyPreprocessor):

6:41 AM Changeset in webkit [122962] by pfeldman@chromium.org
  • 16 edits in trunk/Source/WebCore

Web Inspector: remove search replace from behind experiment, polish the behavior
https://bugs.webkit.org/show_bug.cgi?id=91519

Reviewed by Vsevolod Vlasov.

  • This change makes replace loop with no boundary, removes the loop parameter from jumpToNext/Previous;
  • Lays out replace as a second row
  • Fixes replace all with no search matches
  • Splits Search and Search and Replace
  • Introduces explicit Next / Previous buttons in the search mode
  • Introduces editRange on the TextEditor so that it was preserving the undo stack (we'll need to fix editor so that it does not require it).
  • English.lproj/localizedStrings.js:
  • inspector/front-end/ConsolePanel.js:

(WebInspector.ConsolePanel.prototype.performSearch):
(WebInspector.ConsolePanel.prototype.jumpToNextSearchResult):
(WebInspector.ConsolePanel.prototype.jumpToPreviousSearchResult):

  • inspector/front-end/ElementsPanel.js:

(WebInspector.ElementsPanel.prototype.jumpToNextSearchResult):
(WebInspector.ElementsPanel.prototype.jumpToPreviousSearchResult):

  • inspector/front-end/ExtensionPanel.js:

(WebInspector.ExtensionPanel.prototype.performSearch):
(WebInspector.ExtensionPanel.prototype.jumpToNextSearchResult):
(WebInspector.ExtensionPanel.prototype.jumpToPreviousSearchResult):

  • inspector/front-end/JavaScriptSourceFrame.js:

(WebInspector.JavaScriptSourceFrame.prototype.beforeTextChanged):

  • inspector/front-end/NetworkPanel.js:

(WebInspector.NetworkLogView.prototype.jumpToPreviousSearchResult):
(WebInspector.NetworkLogView.prototype.jumpToNextSearchResult):
(WebInspector.NetworkPanel.prototype.jumpToPreviousSearchResult):
(WebInspector.NetworkPanel.prototype.jumpToNextSearchResult):

  • inspector/front-end/Panel.js:

(WebInspector.Panel.prototype.performSearch):
(WebInspector.Panel.prototype.jumpToNextSearchResult):
(WebInspector.Panel.prototype.jumpToPreviousSearchResult):

  • inspector/front-end/ProfilesPanel.js:

(WebInspector.ProfilesPanel.prototype.jumpToNextSearchResult):
(WebInspector.ProfilesPanel.prototype.jumpToPreviousSearchResult):

  • inspector/front-end/ResourcesPanel.js:

(WebInspector.ResourcesPanel.prototype.jumpToNextSearchResult):
(WebInspector.ResourcesPanel.prototype.jumpToPreviousSearchResult):

  • inspector/front-end/ScriptsPanel.js:

(WebInspector.ScriptsPanel.prototype._editorClosed):
(WebInspector.ScriptsPanel.prototype._editorSelected):
(WebInspector.ScriptsPanel.prototype.performSearch.finishedCallback):
(WebInspector.ScriptsPanel.prototype.performSearch):
(WebInspector.ScriptsPanel.prototype.jumpToNextSearchResult):
(WebInspector.ScriptsPanel.prototype.jumpToPreviousSearchResult):
(WebInspector.ScriptsPanel.prototype.replaceSelectionWith):
(WebInspector.ScriptsPanel.prototype.replaceAllWith):

  • inspector/front-end/SearchController.js:

(WebInspector.SearchController):
(WebInspector.SearchController.prototype.cancelSearch):
(WebInspector.SearchController.prototype.resetSearch):
(WebInspector.SearchController.prototype.handleShortcut):
(WebInspector.SearchController.prototype._updateSearchNavigationButtonState):
(WebInspector.SearchController.prototype._updateReplaceVisibility):
(WebInspector.SearchController.prototype._onKeyDown):
(WebInspector.SearchController.prototype._onNextButtonSearch):
(WebInspector.SearchController.prototype._onPrevButtonSearch):
(WebInspector.SearchController.prototype._performSearch):
(WebInspector.SearchController.prototype._updateReplaceDetailsVisibility):
(WebInspector.SearchController.prototype._replace):
(WebInspector.SearchController.prototype._replaceAll):

  • inspector/front-end/Settings.js:

(WebInspector.ExperimentsSettings):

  • inspector/front-end/SourceFrame.js:

(WebInspector.SourceFrame.prototype.beforeTextChanged):
(WebInspector.SourceFrame.prototype.performSearch.doFindSearchMatches):
(WebInspector.SourceFrame.prototype.performSearch):
(WebInspector.SourceFrame.prototype.replaceSearchMatchWith):
(WebInspector.SourceFrame.prototype.replaceAllWith):
(WebInspector.TextEditorDelegateForSourceFrame.prototype.beforeTextChanged):

  • inspector/front-end/TextEditor.js:

(WebInspector.TextEditor.prototype.editRange):

  • inspector/front-end/inspector.css:

(.toolbar-search-replace .search-replace):
(.toolbar-search):
(.toolbar-search-replace):
(.toolbar-search-close-button):
(.toolbar-search-close-button:hover):
(.toolbar-search-close-button:active):
(.toolbar-search input[type="checkbox"]):
(.toolbar-search-replace .toolbar-replace-control):

6:39 AM Changeset in webkit [122961] by Carlos Garcia Campos
  • 9 edits
    5 adds in trunk/Source/WebKit2

[GTK] Add WebKitWebView::submit-form signal to WebKit2 GTK+ API
https://bugs.webkit.org/show_bug.cgi?id=91605

Reviewed by Gustavo Noronha Silva.

The signal is emitted when a form is about to submitted, with a
form submission request that can be used to get the text fields
and to continue the form submission wheh done.

  • GNUmakefile.list.am: Add new files to compilation.
  • UIProcess/API/gtk/WebKitFormClient.cpp: Added.

(willSubmitForm): Create a WebKitFormSubmissionRequest and call
webkitWebViewSubmitFormRequest() with the request.
(attachFormClientToView): Add impementation for willSubmitForm
callback.

  • UIProcess/API/gtk/WebKitFormClient.h: Added.
  • UIProcess/API/gtk/WebKitFormSubmissionRequest.cpp: Added.

(webkit_form_submission_request_init):
(webkitFormSubmissionRequestFinalize):
(webkit_form_submission_request_class_init):
(webkitFormSubmissionRequestCreate): Create a new
WebKitFormSubmissionRequest for the given values dictionary and
submission listener.
(webkit_form_submission_request_get_text_fields): Create a
GHashTable with the text fields values and return it.
(webkit_form_submission_request_submit): Continue the form
submission.

  • UIProcess/API/gtk/WebKitFormSubmissionRequest.h: Added.
  • UIProcess/API/gtk/WebKitFormSubmissionRequestPrivate.h: Added.
  • UIProcess/API/gtk/WebKitWebView.cpp:

(webkitWebViewConstructed): Attach web view to form client.
(webkit_web_view_class_init): Add WebKitWebView::submit-form
signal.
(webkitWebViewSubmitFormRequest): Emit WebKitWebView::submit-form
signal.

  • UIProcess/API/gtk/WebKitWebView.h:
  • UIProcess/API/gtk/WebKitWebViewPrivate.h:
  • UIProcess/API/gtk/docs/webkit2gtk-docs.sgml: Add new section for

WebKitFormSubmissionRequest.

  • UIProcess/API/gtk/docs/webkit2gtk-sections.txt: Add new symbols.
  • UIProcess/API/gtk/tests/TestWebKitWebView.cpp:

(testWebViewSubmitForm):
(beforeAll):

  • UIProcess/API/gtk/webkit2.h: Include

WebKitFormSubmissionRequest.h.

6:27 AM Changeset in webkit [122960] by Carlos Garcia Campos
  • 3 edits in trunk/Source/WebKit2

[GTK] No main resource in WebView when page has been loaded from history cache
https://bugs.webkit.org/show_bug.cgi?id=91478

Reviewed by Gustavo Noronha Silva.

We are assuming that a resource loaded for the main frame that is
provisionally loading is the main resource of the web view. However
that's not true for pages loaded from history cache, so when you
go back/forward webkit_web_view_get_main_resource() always returns
NULL. We can assume that the first resource loaded for the main
frame is the main resource of the web view when
pageIsProvisionallyLoading is false.

  • UIProcess/API/gtk/WebKitWebView.cpp:

(webkitWebViewResourceLoadStarted): Make sure we always have a
main resource for the web view.

  • UIProcess/API/gtk/tests/TestResources.cpp:

(testWebViewResourcesHistoryCache): Test we always have a main
resource even after going back/forward.
(beforeAll): Add new test case.

6:19 AM Changeset in webkit [122959] by kbalazs@webkit.org
  • 117 edits in trunk/LayoutTests

[Qt] editing/style and editing/undo tests needs update after rebaseline and new testfonts
https://bugs.webkit.org/show_bug.cgi?id=91385

Unreviewed rebaseline.

Patch by Szilard Ledan <Szilárd LEDÁN> on 2012-07-18

  • platform/qt-5.0-wk1/Skipped:
  • platform/qt-5.0/Skipped:
  • platform/qt/editing/style/4916887-expected.png:
  • platform/qt/editing/style/4916887-expected.txt:
  • platform/qt/editing/style/5017613-1-expected.png:
  • platform/qt/editing/style/5017613-1-expected.txt:
  • platform/qt/editing/style/5017613-2-expected.png:
  • platform/qt/editing/style/5017613-2-expected.txt:
  • platform/qt/editing/style/5046875-1-expected.png:
  • platform/qt/editing/style/5046875-1-expected.txt:
  • platform/qt/editing/style/5046875-2-expected.png:
  • platform/qt/editing/style/5046875-2-expected.txt:
  • platform/qt/editing/style/5065910-expected.png:
  • platform/qt/editing/style/5065910-expected.txt:
  • platform/qt/editing/style/5084241-expected.png:
  • platform/qt/editing/style/5084241-expected.txt:
  • platform/qt/editing/style/5228141-expected.png:
  • platform/qt/editing/style/5228141-expected.txt:
  • platform/qt/editing/style/5279521-expected.png:
  • platform/qt/editing/style/5279521-expected.txt:
  • platform/qt/editing/style/apple-style-editable-mix-expected.png:
  • platform/qt/editing/style/apple-style-editable-mix-expected.txt:
  • platform/qt/editing/style/block-style-001-expected.png:
  • platform/qt/editing/style/block-style-001-expected.txt:
  • platform/qt/editing/style/block-style-002-expected.png:
  • platform/qt/editing/style/block-style-002-expected.txt:
  • platform/qt/editing/style/block-style-003-expected.png:
  • platform/qt/editing/style/block-style-003-expected.txt:
  • platform/qt/editing/style/block-styles-007-expected.png:
  • platform/qt/editing/style/block-styles-007-expected.txt:
  • platform/qt/editing/style/create-block-for-style-001-expected.png:
  • platform/qt/editing/style/create-block-for-style-001-expected.txt:
  • platform/qt/editing/style/create-block-for-style-002-expected.png:
  • platform/qt/editing/style/create-block-for-style-002-expected.txt:
  • platform/qt/editing/style/create-block-for-style-003-expected.png:
  • platform/qt/editing/style/create-block-for-style-003-expected.txt:
  • platform/qt/editing/style/create-block-for-style-004-expected.png:
  • platform/qt/editing/style/create-block-for-style-004-expected.txt:
  • platform/qt/editing/style/create-block-for-style-005-expected.png:
  • platform/qt/editing/style/create-block-for-style-005-expected.txt:
  • platform/qt/editing/style/create-block-for-style-006-expected.png:
  • platform/qt/editing/style/create-block-for-style-006-expected.txt:
  • platform/qt/editing/style/create-block-for-style-007-expected.png:
  • platform/qt/editing/style/create-block-for-style-007-expected.txt:
  • platform/qt/editing/style/create-block-for-style-008-expected.png:
  • platform/qt/editing/style/create-block-for-style-008-expected.txt:
  • platform/qt/editing/style/create-block-for-style-009-expected.png:
  • platform/qt/editing/style/create-block-for-style-009-expected.txt:
  • platform/qt/editing/style/create-block-for-style-010-expected.png:
  • platform/qt/editing/style/create-block-for-style-010-expected.txt:
  • platform/qt/editing/style/create-block-for-style-011-expected.png:
  • platform/qt/editing/style/create-block-for-style-011-expected.txt:
  • platform/qt/editing/style/create-block-for-style-012-expected.png:
  • platform/qt/editing/style/create-block-for-style-012-expected.txt:
  • platform/qt/editing/style/create-block-for-style-013-expected.png:
  • platform/qt/editing/style/create-block-for-style-013-expected.txt:
  • platform/qt/editing/style/designmode-expected.png:
  • platform/qt/editing/style/designmode-expected.txt:
  • platform/qt/editing/style/font-family-with-space-expected.png:
  • platform/qt/editing/style/font-family-with-space-expected.txt:
  • platform/qt/editing/style/highlight-expected.png:
  • platform/qt/editing/style/highlight-expected.txt:
  • platform/qt/editing/style/relative-font-size-change-001-expected.png:
  • platform/qt/editing/style/relative-font-size-change-001-expected.txt:
  • platform/qt/editing/style/relative-font-size-change-002-expected.png:
  • platform/qt/editing/style/relative-font-size-change-002-expected.txt:
  • platform/qt/editing/style/relative-font-size-change-003-expected.png:
  • platform/qt/editing/style/relative-font-size-change-003-expected.txt:
  • platform/qt/editing/style/relative-font-size-change-004-expected.png:
  • platform/qt/editing/style/relative-font-size-change-004-expected.txt:
  • platform/qt/editing/style/smoosh-styles-001-expected.png:
  • platform/qt/editing/style/smoosh-styles-001-expected.txt:
  • platform/qt/editing/style/smoosh-styles-003-expected.png:
  • platform/qt/editing/style/smoosh-styles-003-expected.txt:
  • platform/qt/editing/style/style-3681552-fix-001-expected.png:
  • platform/qt/editing/style/style-3681552-fix-001-expected.txt:
  • platform/qt/editing/style/style-3681552-fix-002-expected.png:
  • platform/qt/editing/style/style-3681552-fix-002-expected.txt:
  • platform/qt/editing/style/style-3998892-fix-expected.png:
  • platform/qt/editing/style/style-3998892-fix-expected.txt:
  • platform/qt/editing/style/style-boundary-001-expected.png:
  • platform/qt/editing/style/style-boundary-001-expected.txt:
  • platform/qt/editing/style/style-boundary-002-expected.png:
  • platform/qt/editing/style/style-boundary-002-expected.txt:
  • platform/qt/editing/style/style-boundary-003-expected.png:
  • platform/qt/editing/style/style-boundary-003-expected.txt:
  • platform/qt/editing/style/style-boundary-004-expected.png:
  • platform/qt/editing/style/style-boundary-004-expected.txt:
  • platform/qt/editing/style/style-boundary-005-expected.png:
  • platform/qt/editing/style/style-boundary-005-expected.txt:
  • platform/qt/editing/style/table-selection-expected.png:
  • platform/qt/editing/style/table-selection-expected.txt:
  • platform/qt/editing/style/typing-style-001-expected.png:
  • platform/qt/editing/style/typing-style-001-expected.txt:
  • platform/qt/editing/style/typing-style-002-expected.png:
  • platform/qt/editing/style/typing-style-002-expected.txt:
  • platform/qt/editing/style/unbold-in-bold-expected.png:
  • platform/qt/editing/style/unbold-in-bold-expected.txt:
  • platform/qt/editing/undo/4063751-expected.png:
  • platform/qt/editing/undo/4063751-expected.txt:
  • platform/qt/editing/undo/redo-typing-001-expected.png:
  • platform/qt/editing/undo/redo-typing-001-expected.txt:
  • platform/qt/editing/undo/undo-combined-delete-boundary-expected.png:
  • platform/qt/editing/undo/undo-combined-delete-boundary-expected.txt:
  • platform/qt/editing/undo/undo-combined-delete-expected.png:
  • platform/qt/editing/undo/undo-combined-delete-expected.txt:
  • platform/qt/editing/undo/undo-delete-boundary-expected.png:
  • platform/qt/editing/undo/undo-delete-boundary-expected.txt:
  • platform/qt/editing/undo/undo-delete-expected.png:
  • platform/qt/editing/undo/undo-delete-expected.txt:
  • platform/qt/editing/undo/undo-forward-delete-boundary-expected.png:
  • platform/qt/editing/undo/undo-forward-delete-boundary-expected.txt:
  • platform/qt/editing/undo/undo-forward-delete-expected.png:
  • platform/qt/editing/undo/undo-forward-delete-expected.txt:
  • platform/qt/editing/undo/undo-typing-001-expected.png:
  • platform/qt/editing/undo/undo-typing-001-expected.txt:
6:19 AM Changeset in webkit [122958] by commit-queue@webkit.org
  • 5 edits in trunk/Source/WebCore

[WK2][EFL] Divide ENABLE(WEBGL) into ENABLE(WEBGL) and USE(3D_GRAPHICS) in CMakeLists.txt
https://bugs.webkit.org/show_bug.cgi?id=91584

Patch by YoungTaeck Song <youngtaeck.song@samsung.com> on 2012-07-18
Reviewed by Noam Rosenthal.

This patch is a subset of Efl's UI_SIDE_COMPOSITING implementation.
Modified CMakeLists.txt so that the basic 3D-graphics sources can be compiled even when WebGL is disabled.

  • CMakeLists.txt:
  • PlatformEfl.cmake:
  • platform/graphics/GraphicsContext3D.h:

(GraphicsContext3D):

  • platform/graphics/efl/GraphicsContext3DEfl.cpp:

(WebCore::GraphicsContext3D::platformGraphicsContext3D):

6:11 AM Changeset in webkit [122957] by kbalazs@webkit.org
  • 2 edits
    10 adds in trunk/LayoutTests

Unreviewed rebaseline of compositing tests on Qt-WebKit2.

Mark pixel tests with wrong output as failing (IMAGE) Rebaseline some pixel
results where only scrollbar theme or antialiasing was the difference
between actual and expected.

  • platform/qt-5.0-wk2/TestExpectations:
  • platform/qt-5.0-wk2/compositing/color-matching/image-color-matching-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/culling/clear-fixed-iframe-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/direct-image-compositing-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/geometry/fixed-in-composited-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/geometry/video-fixed-scrolling-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/masks/multiple-masks-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/masks/simple-composited-mask-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/overflow/overflow-scroll-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/self-painting-layers-expected.png: Added.
5:59 AM Changeset in webkit [122956] by commit-queue@webkit.org
  • 3 edits in trunk/Tools

[CMake][EFL] Building jsc causes reconfiguration
https://bugs.webkit.org/show_bug.cgi?id=91387

Patch by Thiago Marcos P. Santos <thiago.santos@intel.com> on 2012-07-18
Reviewed by Daniel Bates.

We should remove CMakeCache only when running build-webkit script,
otherwise it will cause a reconfiguration every time someone calls
generateBuildSystemFromCMakeProject(). We were re-building "jsc" and
not running WebKit2 unit tests on the bots because the project was
reconfigured with default values by the scripts that run these tests.

  • Scripts/build-webkit:
  • Scripts/webkitdirs.pm:

(removeCMakeCache):
(generateBuildSystemFromCMakeProject):

5:59 AM Changeset in webkit [122955] by commit-queue@webkit.org
  • 2 edits
    1 move in trunk/Source/WebKit2

[EFL] Rename WebInspectorEfl.cpp as WebInspectorProxyEfl.cpp
https://bugs.webkit.org/show_bug.cgi?id=91585

Patch by Seokju Kwon <seokju.kwon@samsung.com> on 2012-07-18
Reviewed by Andreas Kling.

Rename WebInspectorEfl.cpp as WebInspectorProxyEfl.cpp
since it implements the platform specific methods of WebInspectorProxy.

  • PlatformEfl.cmake:
  • UIProcess/efl/WebInspectorProxyEfl.cpp: Renamed from Source/WebKit2/UIProcess/efl/WebInspectorEfl.cpp.

(WebKit):
(WebKit::WebInspectorProxy::platformCreateInspectorPage):
(WebKit::WebInspectorProxy::platformOpen):
(WebKit::WebInspectorProxy::platformDidClose):
(WebKit::WebInspectorProxy::platformBringToFront):
(WebKit::WebInspectorProxy::platformIsFront):
(WebKit::WebInspectorProxy::platformInspectedURLChanged):
(WebKit::WebInspectorProxy::inspectorPageURL):
(WebKit::WebInspectorProxy::inspectorBaseURL):
(WebKit::WebInspectorProxy::platformInspectedWindowHeight):
(WebKit::WebInspectorProxy::platformAttach):
(WebKit::WebInspectorProxy::platformDetach):
(WebKit::WebInspectorProxy::platformSetAttachedWindowHeight):

5:53 AM Changeset in webkit [122954] by vsevik@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed chromium gardening, updated test expectations.

  • platform/chromium/TestExpectations:
5:50 AM Changeset in webkit [122953] by zoltan@webkit.org
  • 7 edits in trunk/Source

[Qt] Modify the using of the QImage::Format enum to the appropriate functions from NativeImageQt
https://bugs.webkit.org/show_bug.cgi?id=91600

Reviewed by Andreas Kling.

Use NativeImageQt::defaultFormatForAlphaEnabledImages() and NativeImageQt::defaultFormatForOpaqueImages()
instead of the direct imagetypes at the appropriate places.

Source/WebCore:

Covered by existing tests.

  • platform/graphics/qt/GraphicsContext3DQt.cpp:

(WebCore::GraphicsContext3D::paintToCanvas):

  • platform/graphics/qt/PathQt.cpp:

(WebCore::scratchContext):

  • platform/graphics/texmap/TextureMapperGL.cpp:

(WebCore::TextureMapperGL::drawRepaintCounter):

  • platform/graphics/texmap/TextureMapperImageBuffer.cpp:

(WebCore::BitmapTextureImageBuffer::updateContents):

Source/WebKit2:

  • Shared/qt/ShareableBitmapQt.cpp:

(WebKit::ShareableBitmap::createQImage):

5:50 AM Changeset in webkit [122952] by commit-queue@webkit.org
  • 11 edits in trunk

[EFL][DRT] Add support for Web Inspector in WebKit-EFL DRT
https://bugs.webkit.org/show_bug.cgi?id=87935

Patch by Seokju Kwon <seokju.kwon@samsung.com> on 2012-07-18
Reviewed by Andreas Kling.

Source/WebKit/efl:

Add implementation of DumpRenderTreeSupportEfl::evaluateInWebInspector().
Some scripts for test should be evaluated in frontend.

  • WebCoreSupport/DumpRenderTreeSupportEfl.cpp:

(DumpRenderTreeSupportEfl::evaluateInWebInspector):

  • WebCoreSupport/DumpRenderTreeSupportEfl.h:

Tools:

Web Inspector will be shown when path or url contains "inspector/".
Dumprendertree should wait util web inspector resources are loaded totally
and handle the signals for creating or removing a view of web inspector.
("inspector,view,create" and "inspector,view,close")

  • DumpRenderTree/efl/DumpRenderTree.cpp:

(shouldOpenWebInspector):
(createLayoutTestController):

  • DumpRenderTree/efl/DumpRenderTreeChrome.cpp:

(DumpRenderTreeChrome::createView):
(DumpRenderTreeChrome::createWebInspectorView):
(DumpRenderTreeChrome::removeWebInspectorView):
(DumpRenderTreeChrome::waitInspectorLoadFinished):
(DumpRenderTreeChrome::onInspectorViewCreate):
(DumpRenderTreeChrome::onInspectorViewClose):
(DumpRenderTreeChrome::onInspectorFrameLoadFinished):

  • DumpRenderTree/efl/DumpRenderTreeChrome.h:

(DumpRenderTreeChrome):

  • DumpRenderTree/efl/DumpRenderTreeView.cpp:

(onConsoleMessage):

  • DumpRenderTree/efl/LayoutTestControllerEfl.cpp:

(LayoutTestController::showWebInspector):
(LayoutTestController::closeWebInspector):
(LayoutTestController::evaluateInWebInspector):

LayoutTests:

Remove the following tests from Skipped list.
LayoutTests/inspector
LayoutTests/http/test/inspector
LayoutTests/http/test/inspector-enabled
LayoutTests/http/tests/inspector/network/ping.html

  • platform/efl/Skipped:
5:43 AM Changeset in webkit [122951] by vsevik@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed chromium gardening, unskipped tests.

  • platform/chromium/TestExpectations:
5:38 AM Changeset in webkit [122950] by caseq@chromium.org
  • 3 edits in trunk/Source/WebCore

Web Inspector: create timeline detail records lazily
https://bugs.webkit.org/show_bug.cgi?id=91513

Reviewed by Pavel Feldman.

  • only create timeline record details when these are used;
  • inspector/front-end/TimelinePanel.js:

(WebInspector.TimelineRecordListRow.prototype.update):

  • inspector/front-end/TimelinePresentationModel.js:

(WebInspector.TimelinePresentationModel.Record.prototype.generatePopupContent):
(WebInspector.TimelinePresentationModel.Record.prototype._refreshDetails):
(WebInspector.TimelinePresentationModel.Record.prototype.details):

5:16 AM Changeset in webkit [122949] by vsevik@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed chromium gardening, unskipped tests.
https://bugs.webkit.org/show_bug.cgi?id=84764
https://bugs.webkit.org/show_bug.cgi?id=84767
https://bugs.webkit.org/show_bug.cgi?id=84768
https://bugs.webkit.org/show_bug.cgi?id=84769
https://bugs.webkit.org/show_bug.cgi?id=84775
https://bugs.webkit.org/show_bug.cgi?id=84776

  • platform/chromium/TestExpectations:
4:53 AM Changeset in webkit [122948] by zeno.albisser@nokia.com
  • 3 edits in trunk/Source/WebKit2

[Qt][WK2] Caching of ShareableSurfaces breaks tiling.
https://bugs.webkit.org/show_bug.cgi?id=91609

A ShareableSurface should only be cached,
when it is GraphicsSurface based.

Reviewed by Kenneth Rohde Christiansen.

  • UIProcess/LayerTreeCoordinatorProxy.cpp:

(WebKit::LayerTreeCoordinatorProxy::updateTileForLayer):

  • UIProcess/LayerTreeCoordinatorProxy.h:

(LayerTreeCoordinatorProxy):

4:41 AM Changeset in webkit [122947] by Simon Hausmann
  • 5 edits in trunk

[ANGLE] On QT, use Bison and Flex during ANGLE build
https://bugs.webkit.org/show_bug.cgi?id=91108

Reviewed by Kenneth Rohde Christiansen.

Source/WebCore:

Add derived source generators for the two angle bison parsers and flex based lexers.

  • DerivedSources.pri:
  • Target.pri:

Tools:

  • qmake/mkspecs/features/default_post.prf: Add support for variable_out to our generators, to allow

generating not only for SOURCES but also ANGLE_SOURCES (in this bug)

4:30 AM Changeset in webkit [122946] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

[EFL][WK2] Too early assertion failure if default theme is not available
https://bugs.webkit.org/show_bug.cgi?id=91608

Patch by Dominik Röttsches <dominik.rottsches@intel.com> on 2012-07-18
Reviewed by Kenneth Rohde Christiansen.

After bug 90107 we're setting a default theme path, which leads to a
themeChanged() call initializing edje in createEdje() - if that theme
path is not available we run into a premature assertion failure.
We need to give the embedder a chance to override the default theme path
before failing - so only the usages of m_edje should be guarded with assertions.

No new tests, no change in rendering behavior.

  • platform/efl/RenderThemeEfl.cpp:

(WebCore::RenderThemeEfl::themePartCacheEntryReset): Adding an assertion to ensure m_edje is present - so that all usages of m_edje are now guarded.
(WebCore::RenderThemeEfl::createEdje): Not hitting assertion if theme path doesn't contain the theme object file, allowing the embedder to override with a new path.

4:30 AM Changeset in webkit [122945] by Carlos Garcia Campos
  • 2 edits in trunk/Source/WebKit2

[GTK] Fix a crash due to an invalid assert
https://bugs.webkit.org/show_bug.cgi?id=91614

Reviewed by Xan Lopez.

In webkitWebViewBaseContainerAdd() there's
ASSERT(priv->inspectorView); that should be the opposite, since we
shoulnd't have an inspector view when the inspector view is added.

  • UIProcess/API/gtk/WebKitWebViewBase.cpp:

(webkitWebViewBaseContainerAdd):

4:25 AM Changeset in webkit [122944] by Simon Hausmann
  • 4 edits in trunk/Tools

[Qt] plugin tests should not be disabled for WebKit1
https://bugs.webkit.org/show_bug.cgi?id=91604

Patch by Balazs Kelemen <kbalazs@webkit.org> on 2012-07-18
Reviewed by Simon Hausmann.

Instead of not building TestNetscapePlugIn, we could programatically
disable actually loading it from WTR until https://bugs.webkit.org/show_bug.cgi?id=86620
has been solved, so we can still test plugins on WebKit1.

  • Tools.pro:
  • WebKitTestRunner/TestController.cpp:

(WTR::TestController::initialize):

  • WebKitTestRunner/qt/TestControllerQt.cpp:

(WTR::TestController::initializeTestPluginDirectory):

4:15 AM Changeset in webkit [122943] by commit-queue@webkit.org
  • 6 edits in trunk

[CMake] Make gtest a shared library
https://bugs.webkit.org/show_bug.cgi?id=90973

Patch by Thiago Marcos P. Santos <thiago.santos@intel.com> on 2012-07-18
Reviewed by Daniel Bates.

.:

It's nicer to make it a shared library because it might improve
linking time and we don't need to force gtest users to link with gtest
dependencies like pthreads (which causes linking errors when it is not
available).

  • Source/cmake/gtest/CMakeLists.txt:

Source/WebKit:

No need to link with gtest dependencies now since it is a shared library.

  • PlatformEfl.cmake:

Source/WebKit2:

No need to link with gtest dependencies now since it is a shared library.

  • PlatformEfl.cmake:
3:54 AM Changeset in webkit [122942] by vsevik@chromium.org
  • 2 edits in trunk/Source/WebCore

IndexedDB: IDBLevelDBBackingStore compilation fails because of unused variable.
https://bugs.webkit.org/show_bug.cgi?id=91612

Reviewed by Pavel Feldman.

Replaced ASSERT with ASSERT_UNUSED.

  • Modules/indexeddb/IDBLevelDBBackingStore.cpp:

(WebCore::IDBLevelDBBackingStore::getObjectStores):

3:31 AM Changeset in webkit [122941] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit2

[WK2][EFL] Add a common code using Color instead of QColor
https://bugs.webkit.org/show_bug.cgi?id=91580

Patch by YoungTaeck Song <youngtaeck.song@samsung.com> on 2012-07-18
Reviewed by Simon Hausmann.

This patch is a subset of Efl's UI_SIDE_COMPOSITING implementation.
drawBorder's argument is QColor. So add a common code using Color to be used by Efl.

  • UIProcess/texmap/LayerBackingStore.cpp:

(WebKit::LayerBackingStore::paintToTextureMapper):

3:20 AM Changeset in webkit [122940] by mario@webkit.org
  • 9 edits
    1 add in trunk

[WK2][GTK] Implement AccessibilityUIElement in WKTR for GTK
https://bugs.webkit.org/show_bug.cgi?id=89223

Reviewed by Chris Fleizach.

Tools:

Implemented AccessibilityUIElement in WKTR for GTK, based in the
implementation present in DumpRenderTree.

Added new files in gtk/ and updated the cross-platform ones.

  • WebKitTestRunner/GNUmakefile.am:
  • WebKitTestRunner/InjectedBundle/AccessibilityUIElement.cpp:

(WTR):

  • WebKitTestRunner/InjectedBundle/AccessibilityUIElement.h:

(AccessibilityUIElement):

  • WebKitTestRunner/InjectedBundle/gtk/AccessibilityUIElementGtk.cpp: Added.

(WTR):
(WTR::attributeSetToString):
(WTR::checkElementState):
(WTR::indexRangeInTable):
(WTR::alterCurrentValue):
(WTR::AccessibilityUIElement::AccessibilityUIElement):
(WTR::AccessibilityUIElement::~AccessibilityUIElement):
(WTR::AccessibilityUIElement::isEqual):
(WTR::AccessibilityUIElement::getChildren):
(WTR::AccessibilityUIElement::getChildrenWithRange):
(WTR::AccessibilityUIElement::childrenCount):
(WTR::AccessibilityUIElement::elementAtPoint):
(WTR::AccessibilityUIElement::indexOfChild):
(WTR::AccessibilityUIElement::childAtIndex):
(WTR::AccessibilityUIElement::linkedUIElementAtIndex):
(WTR::AccessibilityUIElement::ariaOwnsElementAtIndex):
(WTR::AccessibilityUIElement::ariaFlowToElementAtIndex):
(WTR::AccessibilityUIElement::disclosedRowAtIndex):
(WTR::AccessibilityUIElement::rowAtIndex):
(WTR::AccessibilityUIElement::selectedChildAtIndex):
(WTR::AccessibilityUIElement::selectedChildrenCount):
(WTR::AccessibilityUIElement::selectedRowAtIndex):
(WTR::AccessibilityUIElement::titleUIElement):
(WTR::AccessibilityUIElement::parentElement):
(WTR::AccessibilityUIElement::disclosedByRow):
(WTR::AccessibilityUIElement::attributesOfLinkedUIElements):
(WTR::AccessibilityUIElement::attributesOfDocumentLinks):
(WTR::AccessibilityUIElement::attributesOfChildren):
(WTR::AccessibilityUIElement::allAttributes):
(WTR::AccessibilityUIElement::stringAttributeValue):
(WTR::AccessibilityUIElement::numberAttributeValue):
(WTR::AccessibilityUIElement::uiElementAttributeValue):
(WTR::AccessibilityUIElement::boolAttributeValue):
(WTR::AccessibilityUIElement::isAttributeSettable):
(WTR::AccessibilityUIElement::isAttributeSupported):
(WTR::AccessibilityUIElement::parameterizedAttributeNames):
(WTR::AccessibilityUIElement::role):
(WTR::AccessibilityUIElement::subrole):
(WTR::AccessibilityUIElement::roleDescription):
(WTR::AccessibilityUIElement::title):
(WTR::AccessibilityUIElement::description):
(WTR::AccessibilityUIElement::orientation):
(WTR::AccessibilityUIElement::stringValue):
(WTR::AccessibilityUIElement::language):
(WTR::AccessibilityUIElement::helpText):
(WTR::AccessibilityUIElement::x):
(WTR::AccessibilityUIElement::y):
(WTR::AccessibilityUIElement::width):
(WTR::AccessibilityUIElement::height):
(WTR::AccessibilityUIElement::clickPointX):
(WTR::AccessibilityUIElement::clickPointY):
(WTR::AccessibilityUIElement::intValue):
(WTR::AccessibilityUIElement::minValue):
(WTR::AccessibilityUIElement::maxValue):
(WTR::AccessibilityUIElement::valueDescription):
(WTR::AccessibilityUIElement::insertionPointLineNumber):
(WTR::AccessibilityUIElement::isActionSupported):
(WTR::AccessibilityUIElement::isEnabled):
(WTR::AccessibilityUIElement::isRequired):
(WTR::AccessibilityUIElement::isFocused):
(WTR::AccessibilityUIElement::isSelected):
(WTR::AccessibilityUIElement::isExpanded):
(WTR::AccessibilityUIElement::isChecked):
(WTR::AccessibilityUIElement::hierarchicalLevel):
(WTR::AccessibilityUIElement::speak):
(WTR::AccessibilityUIElement::ariaIsGrabbed):
(WTR::AccessibilityUIElement::ariaDropEffects):
(WTR::AccessibilityUIElement::lineForIndex):
(WTR::AccessibilityUIElement::rangeForLine):
(WTR::AccessibilityUIElement::rangeForPosition):
(WTR::AccessibilityUIElement::boundsForRange):
(WTR::AccessibilityUIElement::stringForRange):
(WTR::AccessibilityUIElement::attributedStringForRange):
(WTR::AccessibilityUIElement::attributedStringRangeIsMisspelled):
(WTR::AccessibilityUIElement::uiElementForSearchPredicate):
(WTR::AccessibilityUIElement::attributesOfColumnHeaders):
(WTR::AccessibilityUIElement::attributesOfRowHeaders):
(WTR::AccessibilityUIElement::attributesOfColumns):
(WTR::AccessibilityUIElement::attributesOfRows):
(WTR::AccessibilityUIElement::attributesOfVisibleCells):
(WTR::AccessibilityUIElement::attributesOfHeader):
(WTR::AccessibilityUIElement::rowCount):
(WTR::AccessibilityUIElement::columnCount):
(WTR::AccessibilityUIElement::indexInTable):
(WTR::AccessibilityUIElement::rowIndexRange):
(WTR::AccessibilityUIElement::columnIndexRange):
(WTR::AccessibilityUIElement::cellForColumnAndRow):
(WTR::AccessibilityUIElement::horizontalScrollbar):
(WTR::AccessibilityUIElement::verticalScrollbar):
(WTR::AccessibilityUIElement::selectedTextRange):
(WTR::AccessibilityUIElement::setSelectedTextRange):
(WTR::AccessibilityUIElement::increment):
(WTR::AccessibilityUIElement::decrement):
(WTR::AccessibilityUIElement::showMenu):
(WTR::AccessibilityUIElement::press):
(WTR::AccessibilityUIElement::setSelectedChild):
(WTR::AccessibilityUIElement::accessibilityValue):
(WTR::AccessibilityUIElement::documentEncoding):
(WTR::AccessibilityUIElement::documentURI):
(WTR::AccessibilityUIElement::url):
(WTR::AccessibilityUIElement::addNotificationListener):
(WTR::AccessibilityUIElement::removeNotificationListener):
(WTR::AccessibilityUIElement::isFocusable):
(WTR::AccessibilityUIElement::isSelectable):
(WTR::AccessibilityUIElement::isMultiSelectable):
(WTR::AccessibilityUIElement::isVisible):
(WTR::AccessibilityUIElement::isOffScreen):
(WTR::AccessibilityUIElement::isCollapsed):
(WTR::AccessibilityUIElement::isIgnored):
(WTR::AccessibilityUIElement::hasPopup):
(WTR::AccessibilityUIElement::takeFocus):
(WTR::AccessibilityUIElement::takeSelection):
(WTR::AccessibilityUIElement::addSelection):
(WTR::AccessibilityUIElement::removeSelection):
(WTR::AccessibilityUIElement::textMarkerRangeForElement):
(WTR::AccessibilityUIElement::textMarkerRangeLength):
(WTR::AccessibilityUIElement::previousTextMarker):
(WTR::AccessibilityUIElement::nextTextMarker):
(WTR::AccessibilityUIElement::stringForTextMarkerRange):
(WTR::AccessibilityUIElement::textMarkerRangeForMarkers):
(WTR::AccessibilityUIElement::startTextMarkerForTextMarkerRange):
(WTR::AccessibilityUIElement::endTextMarkerForTextMarkerRange):
(WTR::AccessibilityUIElement::textMarkerForPoint):
(WTR::AccessibilityUIElement::accessibilityElementForTextMarker):
(WTR::AccessibilityUIElement::attributedStringForTextMarkerRangeContainsAttribute):
(WTR::AccessibilityUIElement::indexForTextMarker):
(WTR::AccessibilityUIElement::isTextMarkerValid):
(WTR::AccessibilityUIElement::textMarkerForIndex):

Add documentEncoding and documentURI to AccessibilityUIElement.idl.

  • WebKitTestRunner/InjectedBundle/Bindings/AccessibilityUIElement.idl:

LayoutTests:

Removed lines skipping all the accessibility tests and replace
them with the specific ones that are still not passing, which
are just a few now, and will hopefully get fixed later on.

  • platform/gtk-wk2/Skipped: Reduce the list of skipped tests.

Updated two layout tests to consider nulls, something that didn't
happen with DumpRenderTree, but that we need to check now.

  • accessibility/table-cell-spans.html: Update test.
  • accessibility/table-cells.html: Update test.
2:57 AM WebKitGTK/WebKit2Roadmap edited by Carlos Garcia Campos
Add form client task (diff)
2:55 AM Changeset in webkit [122939] by vsevik@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed chromium gardening, unskipped test.

  • platform/chromium/TestExpectations:
2:49 AM Changeset in webkit [122938] by vsevik@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed chromium gardening, unskipped test.

  • platform/chromium/TestExpectations:
2:47 AM Changeset in webkit [122937] by yosin@chromium.org
  • 2 edits in trunk/Source/WebCore

REGRESSION(r117738) [Forms] Default step base should be 0 (=1970-01) for input type month
https://bugs.webkit.org/show_bug.cgi?id=91603

Reviewed by Kent Tamura.

This patch restores default step base value to 0 (=1970-01) as before
r117738.

No new tests. Existing test(fast/forms/month/month-stepup-stepdown-from-renderer.html)
covers this case, although it is disabled.

  • html/MonthInputType.cpp:

(WebCore::MonthInputType::createStepRange): Changed default value of
step base to defaultMonthStepBase instead of DateComponents::minimumMonth().

1:57 AM Changeset in webkit [122936] by alexis.menard@openbossa.org
  • 2 edits in trunk/Tools

[EFL] Build fix in WebKitTestRunner.
https://bugs.webkit.org/show_bug.cgi?id=91567

Reviewed by Kentaro Hara.

sleep() is defined in unistd.h, we need to include it.

  • WebKitTestRunner/efl/TestControllerEfl.cpp:
1:51 AM Changeset in webkit [122935] by vsevik@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed chromium gardening, updated test expectations.

  • platform/chromium/TestExpectations:
1:37 AM Changeset in webkit [122934] by ryuan.choi@samsung.com
  • 2 edits in trunk/Source/WebCore

[EFL] Cursor is not drawn when opengl_x11 backend is choosen.
https://bugs.webkit.org/show_bug.cgi?id=89142

Reviewed by Simon Hausmann.

If theme based cursor is not given, WebKit/Efl only uses Ecore_X based
cursor as a fallback after checked whether current engine is using EcoreX.
This patch adds opengl_x11 which is one of Ecore_X based engine in check
lists to draw fallback cursor.

  • platform/efl/EflScreenUtilities.cpp:

(WebCore::isUsingEcoreX):

1:28 AM Changeset in webkit [122933] by vsevik@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed chromium gardening, unskipped test.

  • platform/chromium/TestExpectations:
1:20 AM Changeset in webkit [122932] by kkristof@inf.u-szeged.hu
  • 2 edits in trunk/Tools

[NRWT] Unreviewed gardening after r122913
https://bugs.webkit.org/show_bug.cgi?id=91601

  • Scripts/webkitpy/layout_tests/port/server_process_unittest.py:

(TrivialMockPort.process_kill_time):

1:19 AM Changeset in webkit [122931] by vsevik@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed chromium gardening, unskipped test.

  • platform/chromium/TestExpectations:
1:16 AM Changeset in webkit [122930] by rniwa@webkit.org
  • 3 edits
    2 adds in trunk

REGRESSION(r122345): HTMLCollection::length() sometimes returns a wrong value
https://bugs.webkit.org/show_bug.cgi?id=91587

Reviewed by Benjamin Poulain.

Source/WebCore:

The bug was caused by my douchey code that set the length cache to be the *offset*
of the last item in a HTMLCollection. Clearly, the length of a collection that contains
the last item at offset n is n + 1. Fixed that.

Also removed the call to setLengthCache in HTMLCollection::length since it must have set
by previous calls to itemBeforeOrAfterCachedItem already. This will allow us to catch
regressions like this in ports that use JSC bindings as well.

Test: fast/dom/htmlcollection-length-after-item.html

  • html/HTMLCollection.cpp:

(WebCore::HTMLCollection::length):
(WebCore::HTMLCollection::itemBeforeOrAfterCachedItem):

LayoutTests:

Add a regression test. It only fails on Chromium port before the patch is applied because JSC binding code
has a bug (?) that it always checks index > length() to throw an exception before accessing an item in HTMLCollection.

  • fast/dom/htmlcollection-length-after-item-expected.txt: Added.
  • fast/dom/htmlcollection-length-after-item.html: Added.
1:14 AM Changeset in webkit [122929] by vsevik@chromium.org
  • 6 edits
    4 deletes in trunk/LayoutTests

Unreviewed chromium gardening, rebaselined tests.

  • platform/chromium-win-xp/css2.1/t100801-c544-valgn-03-d-agi-expected.png: Removed.
  • platform/chromium-win-xp/css2.1/t100801-c544-valgn-03-d-agi-expected.txt: Removed.
  • platform/chromium-win-xp/fast/inline-block/inline-block-vertical-align-expected.png: Removed.
  • platform/chromium-win-xp/fast/inline/002-expected.png: Removed.
  • platform/chromium-win/css2.1/t100801-c544-valgn-03-d-agi-expected.png:
  • platform/chromium-win/css2.1/t100801-c544-valgn-03-d-agi-expected.txt:
  • platform/chromium-win/fast/inline-block/inline-block-vertical-align-expected.png:
  • platform/chromium-win/fast/inline/002-expected.png:
  • platform/chromium-win/fast/table/table-display-types-strict-expected.png:
1:09 AM Changeset in webkit [122928] by yosin@chromium.org
  • 4 edits in trunk/Source

Decimal::toString should not round integer value.
https://bugs.webkit.org/show_bug.cgi?id=91481

Reviewed by Kent Tamura.

Source/WebCore:

This patch makes Decimal::toString not to round an integer value
before converting string.

Tests: WebKit/chromium/tests/DecimalTest.cpp: DecimalTest.toString

  • platform/Decimal.cpp:

(WebCore::Decimal::toString): When the value is an integer, we don't
round coefficient to be DBL_DIG(15) digits because double can
represent an integer without rounding error.

Source/WebKit/chromium:

This patch adds a new test cases for Decimal::toString() for failed
value and maximum coefficient value with various exponent.

  • tests/DecimalTest.cpp:

(TEST_F): DecimalTest.toString: Add test cases for big coefficient values.

1:08 AM Changeset in webkit [122927] by hans@chromium.org
  • 4 edits in trunk/Source/WebKit/chromium

Add copy constructor to WebSpeechGrammar.h
https://bugs.webkit.org/show_bug.cgi?id=91484

Reviewed by Adam Barth.

Provide user-defined copy constructor (and assign function) for WebSpeechGrammar.
Without this, we were hitting the implicit copy constructor, which in
turn used the implicit copy constructor of WebPrivatePtr. This was bad,
because the implicit copy constructor wouldn't increace the reference
count on the wrapped object, causing us to crash.

Also add one for WebSpeechRecognitionResult; haven't seen any problems
here, but I noticed it was missing.

  • public/WebSpeechGrammar.h:

(WebKit::WebSpeechGrammar::WebSpeechGrammar):
(WebSpeechGrammar):

  • public/WebSpeechRecognitionResult.h:

(WebKit::WebSpeechRecognitionResult::WebSpeechRecognitionResult):
(WebSpeechRecognitionResult):

  • src/WebSpeechGrammar.cpp:

(WebKit::WebSpeechGrammar::assign):
(WebKit):

1:02 AM Changeset in webkit [122926] by Csaba Osztrogonác
  • 3 edits in trunk/LayoutTests

[Qt][WK2] REGRESSION(r122376): It made 68 tests flakey (TEXT PASS)
https://bugs.webkit.org/show_bug.cgi?id=91063

  • platform/qt-5.0-wk2/Skipped: Skip one more test.
  • platform/qt/Skipped: Move a skipped test to the proper Skipped list.
12:51 AM Changeset in webkit [122925] by kkristof@inf.u-szeged.hu
  • 2 edits in trunk/Source/ThirdParty/ANGLE

[Qt] Buildfix after r122870.
https://bugs.webkit.org/show_bug.cgi?id=89039

Reviewed by Csaba Osztrogonác

  • src/compiler/preprocessor/new/MacroExpander.cpp:

(pp::MacroExpander::ungetToken):

12:10 AM Changeset in webkit [122924] by kkristof@inf.u-szeged.hu
  • 2 edits in trunk/LayoutTests

[Qt] Unreviewed gardening. Skip the new failing tests.

  • platform/qt/Skipped:
12:09 AM Changeset in webkit [122923] by macpherson@chromium.org
  • 2 edits in trunk/Source/WebCore

Fix null pointer dereference introduced by Changeset 121874.
https://bugs.webkit.org/show_bug.cgi?id=91578

Reviewed by Pavel Feldman.

In http://trac.webkit.org/changeset/121874/trunk/Source/WebCore/inspector/InspectorStyleSheet.cpp I introduced code that
dereferences the return value of ownerDocument() without doing a null check. This was a bad idea.

No new tests. I don't have a repro case, but it is clear from reading the code for ownerDocument() that it can return null.

  • inspector/InspectorStyleSheet.cpp:

(WebCore::InspectorStyleSheet::ensureSourceData):

Jul 17, 2012:

11:50 PM Changeset in webkit [122922] by yosin@chromium.org
  • 4 edits in trunk/Source

Decimal constructor with 99999999999999999 loses last digit
https://bugs.webkit.org/show_bug.cgi?id=91579

Reviewed by Kent Tamura.

Source/WebCore:

This patch changes maximum coefficient value handling in Decimal::EncodedData
constructor not to lose the last digit. It was used ">=" operator for
comparison instead of ">" operator.

Tests: WebKit/chromium/tests/DecimalTest.cpp

  • platform/Decimal.cpp:

(WebCore::Decimal::EncodedData::EncodedData): Replace ">=" to ">" for
not getting rid of the last digit for maximum coefficient value.

Source/WebKit/chromium:

This patch adds test cases for Decimal::EncodedData constructors for
testing edge cases in addition to common cases which they aren't
covered by other test cases.

  • tests/DecimalTest.cpp:

(EXPECT_DECIMAL_ENCODED_DATA_EQ): Introduce a new macro for ease of
writing test cases for verifying components of Decimal::EncodedData.
(TEST_F): Added a new test entry DecimalTest.Constructor.

11:31 PM Changeset in webkit [122921] by loislo@chromium.org
  • 2 edits in trunk/Source/WebCore

Unreviewed Web Inspector: followup fix for r122920.

Add collected Loaders size to InspectorMemoryBlock

  • inspector/InspectorMemoryAgent.cpp:

(MemoryBlockName):
(WebCore):

10:58 PM Changeset in webkit [122920] by loislo@chromium.org
  • 14 edits in trunk/Source/WebCore

Web Inspector: show loaders memory consumption on the memory chart.
https://bugs.webkit.org/show_bug.cgi?id=90686

Reviewed by Pavel Feldman.

Size of FrameLoader, DocumentLoader, ResourceLoader and their resources should be shown on the memory pie chart.

It is covered by existing WebInspector performance tests infrastructure.

  • WebCore.exp.in:
  • dom/MemoryInstrumentation.h:

(MemoryInstrumentation):
(WebCore::MemoryInstrumentation::addRawBuffer):
(WebCore::MemoryInstrumentation::addInstrumentedMemberImpl):
(WebCore):
(WebCore::MemoryClassInfo::addInstrumentedHashSet):
(WebCore::MemoryClassInfo::addRawBuffer):
(WebCore::MemoryInstrumentation::addInstrumentedHashSet):
(WebCore::MemoryInstrumentation::addVector):

  • inspector/InspectorMemoryAgent.cpp:

(WebCore):
(WebCore::domTreeInfo):

  • loader/DocumentLoader.cpp:

(WebCore::DocumentLoader::reportMemoryUsage):
(WebCore):

  • loader/DocumentLoader.h:

(WebCore):
(DocumentLoader):

  • loader/FrameLoader.cpp:

(WebCore::FrameLoader::reportMemoryUsage):
(WebCore):

  • loader/FrameLoader.h:

(WebCore):
(FrameLoader):

  • loader/ResourceLoader.cpp:

(WebCore::ResourceLoader::reportMemoryUsage):
(WebCore):

  • loader/ResourceLoader.h:

(WebCore):
(ResourceLoader):

  • page/Frame.cpp:

(WebCore::Frame::reportMemoryUsage):
(WebCore):

  • page/Frame.h:

(WebCore):
(Frame):

  • platform/SharedBuffer.cpp:

(WebCore::SharedBuffer::reportMemoryUsage):
(WebCore):

  • platform/SharedBuffer.h:

(WebCore):
(SharedBuffer):

9:42 PM Changeset in webkit [122919] by fpizlo@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

DFG 32-bit PutById transition stub passes the payload/tag arguments to a DFG operation in the wrong order
https://bugs.webkit.org/show_bug.cgi?id=91576

Reviewed by Gavin Barraclough.

  • dfg/DFGRepatch.cpp:

(JSC::DFG::emitPutTransitionStub):

9:18 PM Changeset in webkit [122918] by tkent@chromium.org
  • 3 edits
    2 adds in trunk

Fix an assertion failure in CalendarPickerElement::hostInput().
https://bugs.webkit.org/show_bug.cgi?id=91568

Reviewed by Hajime Morita.

Source/WebCore:

Test: fast/forms/date/calendar-picker-type-change-onclick.html

  • html/shadow/CalendarPickerElement.cpp:

(WebCore::CalendarPickerElement::defaultEventHandler):
It's possible that this function is called when the element is detached
from the document tree.

LayoutTests:

  • fast/forms/date/calendar-picker-type-change-onclick-expected.txt: Added.
  • fast/forms/date/calendar-picker-type-change-onclick.html: Added.
9:16 PM Changeset in webkit [122917] by tkent@chromium.org
  • 3 edits in trunk/Source/WebCore

Form state: Make a new class handling HashMap<FormElementKey, Deque<>>
https://bugs.webkit.org/show_bug.cgi?id=91480

Reviewed by Hajime Morita.

This is a preparation of Bug 91209, "Form state restore: Need to
identify a from by its content."

Make a new class which is responsible to handle "HashMap<FormElementKey,
Deque<FormControlState>, FormElementKeyHash, FormElementKeyHashTraits>."
Also, move the FormElementKey class declaration and related structs from
FormController.h to FormController.cpp because FormElementKey is used
only in FormController.cpp.

No new tests. Just a refactoring.

  • html/FormController.cpp:

(WebCore::FormElementKey): Moeved from FormController.h.
(WebCore::FormElementKey::FormElementKey):
Moved from the bottom of FormController.cpp
(WebCore::FormElementKey::~FormElementKey): ditto.
(WebCore::FormElementKey::operator=): ditto.
(WebCore::FormElementKey::ref): ditto.
(WebCore::FormElementKey::deref): ditto.
(WebCore::operator==): Moved from FormController.h
(FormElementKeyHash): ditto.
(WebCore::FormElementKeyHash::equal): ditto.
(WebCore::FormElementKeyHash::hash):
Moved from the bottom of FormController.cpp
(WebCore::FormElementKeyHashTraits::constructDeletedValue):
Moved from FormController.h
(WebCore::FormElementKeyHashTraits::isDeletedValue): ditto.

(WebCore::SavedFormState): Added.
(WebCore::SavedFormState::isEmpty):
(WebCore::SavedFormState::SavedFormState): Added. The constructor.
(WebCore::SavedFormState::create): Added. A factory function.
(WebCore::SavedFormState::appendControlState):
Moved some code from FormController::setStateForNewFormElements.
(WebCore::SavedFormState::takeControlState):
Moved some code from FormController::takeStateForFormElement.

(WebCore::FormController::setStateForNewFormElements):

  • Creates SavedFormState if needed.
  • Uses SavedFormState::appendControlState.

(WebCore::FormController::takeStateForFormElement):
Uses SavedFormState.

  • html/FormController.h:

(FormController):

9:09 PM Changeset in webkit [122916] by yosin@chromium.org
  • 2 edits in trunk/Source/WebKit/chromium

Test cases in DecimalTest should use EXPECT_STREQ for ease of debugging test case
https://bugs.webkit.org/show_bug.cgi?id=91572

Reviewed by Kent Tamura.

This patch introduces EXPECT_DECIMAL_STREQ macro to replace EXPECT_EQ
with String class for displaying text string rather than object dump
for ease of debugging test cases.

  • tests/DecimalTest.cpp:

(DecimalTest::stepDown): Changed to return Decimal instead of String
to use EXPECT_DECIMAL_STREQ.
(DecimalTest::stepUp): ditto.
(TEST_F): Replaced EXPECT_EQ + String class to EXPECT_DECIMAL_STREQ.

9:05 PM Changeset in webkit [122915] by morrita@google.com
  • 5 edits
    2 adds in trunk

[Shadow DOM] Some distribution invalidation can drop necessary reattachment.
https://bugs.webkit.org/show_bug.cgi?id=88843

Reviewed by Dimitri Glazkov.

Source/WebCore:

Following scenario caused this problem:

  • Inserting a Text node as a shadow child triggers invalidateDistribution(), which doen't reattach the shadow's host element.
  • Then inserting a <content> element after that triggers another invalidateDistribution(), which should reattach its host because <content> can affect not only distribution of new nodes, but also existing distribution.
  • Since the first invalidateDistribution() has marked the distribution as invalidated, the second invalidateDistribution() call returns early without any reattachment, even though it needs one.

This change adds InvalidationType parameter to invalidateDistribution(), which asks ElementShadow to
reattach the host regardless of its validity state. InsertionPoint::insertedInto() uses
this flag to ensure that its insertion always results a reattachment.

Test: fast/dom/shadow/content-after-style.html

  • dom/ElementShadow.cpp:

(WebCore::ElementShadow::addShadowRoot): Passes InvalidationType.
(WebCore::ElementShadow::removeAllShadowRoots): Passes InvalidationType.
(WebCore::ElementShadow::invalidateDistribution): Added a InvalidationType parameter.

  • dom/ElementShadow.h:
  • html/shadow/InsertionPoint.cpp:

(WebCore::InsertionPoint::insertedInto): Passes InvalidationType.

LayoutTests:

  • fast/dom/shadow/content-after-style-expected.html: Added.
  • fast/dom/shadow/content-after-style.html: Added.
7:45 PM Changeset in webkit [122914] by wangxianzhu@chromium.org
  • 6 edits in trunk/Tools

[Chromium-Android] Run ref tests together to avoid expensive driver restarts
https://bugs.webkit.org/show_bug.cgi?id=91533

Reviewed by Dirk Pranke.

Though DriverProxy maintains two drivers to support pixel tests and non-pixel tests,
chromium-android uses another way because it can't support multiple drivers.
It restarts the driver when pixel-test mode changes (e.g. when running a ref test after
a normal test in --no-pixel-tests mode). However restarting driver is expensive on
Android (several seconds each time). To reduce the cost, a command line option
'--shard-ref-tests' is added to group ref tests in dedicated shards.
The option is by default enabled on Android.

Will remove the option once DRT supports switching pixel test mode during one run.
(https://bugs.webkit.org/show_bug.cgi?id=91538, https://bugs.webkit.org/show_bug.cgi?id=91539)

  • Scripts/webkitpy/layout_tests/controllers/manager.py:

(Manager._shard_tests):
(Manager._shard_in_two):
(Manager._shard_by_directory):
(Manager._run_tests):

  • Scripts/webkitpy/layout_tests/controllers/worker.py:

(Worker._update_test_input):

  • Scripts/webkitpy/layout_tests/port/chromium_android.py:

(ChromiumAndroidPort.init):

  • Scripts/webkitpy/layout_tests/run_webkit_tests.py:

(parse_args):

6:26 PM Changeset in webkit [122913] by commit-queue@webkit.org
  • 3 edits in trunk/Tools

NRWT The time before server_process kills DRT should be variable
https://bugs.webkit.org/show_bug.cgi?id=91542

Patch by Don Olmstead <don.olmstead@am.sony.com> on 2012-07-17
Reviewed by Dirk Pranke.

Added the ability to configure the amount of time
server_process waits before killing the DRT process
during the call to stop.

  • Scripts/webkitpy/layout_tests/port/base.py:

(Port.variable.process_kill_time):

  • Scripts/webkitpy/layout_tests/port/server_process.py:

(ServerProcess.stop):

6:16 PM Changeset in webkit [122912] by jonlee@apple.com
  • 7 edits in trunk/Source/WebCore

Teach CodeGenerator to support for static, readonly, attributes
https://bugs.webkit.org/show_bug.cgi?id=88920
<rdar://problem/11650330>

Reviewed by Oliver Hunt.

Update the parser to be able to accept the static keyword for attribute. We will treat static attributes
like custom static functions. They call the implementing class directly, and pass in the ExecState as a script context.

  • bindings/scripts/CodeGeneratorJS.pm:

(GetAttributeGetterName): Factor out the construction of the attribute getter function name.
(GetAttributeSetterName): Factor out the construction of the attribute setter function name.
(GenerateHeader): Determine that a class has read-write properties only if there is a read-write attribute that
is not static.
(GenerateAttributesHashTable): Skip static attributes in the object hash table. They will be added to the constructor
hash table.
(GenerateImplementation): Look for static attributes to add to the constructor hash table. Make a call to the static
function in the class.

  • bindings/scripts/IDLParser.pm:

(ParseInterface): Update the processing because of the regex change.

  • bindings/scripts/IDLStructure.pm: Update the attribute regex.
  • bindings/scripts/test/JS/JSTestObj.cpp: Update test results.
  • bindings/scripts/test/JS/JSTestObj.h: Update test results.
  • bindings/scripts/test/TestObj.idl: Add test cases.
6:12 PM Changeset in webkit [122911] by bashi@chromium.org
  • 8 edits
    4 moves in trunk/Source/WebCore

[Chromium] Rename HarfBuzzFace to HarfBuzzNGFace
https://bugs.webkit.org/show_bug.cgi?id=91458

Reviewed by Tony Chang.

There are HarfbuzzFace class (for old-harfbuzz) and HarfBuzzFace (for harfbuzz-ng) class. The difference is too subtle. Make them more distinct.

No new tests. No changes in behavior.

  • WebCore.gyp/WebCore.gyp: Rename HarfBuzzFace to HarfBuzzNGFace.
  • WebCore.gypi: Ditto.
  • platform/graphics/FontPlatformData.h: Ditto.

(FontPlatformData):

  • platform/graphics/cocoa/FontPlatformDataCocoa.mm: Ditto.

(WebCore::FontPlatformData::harfbuzzFace):

  • platform/graphics/harfbuzz/FontPlatformDataHarfBuzz.cpp: Ditto.

(WebCore::FontPlatformData::harfbuzzFace):

  • platform/graphics/harfbuzz/FontPlatformDataHarfBuzz.h: Ditto.

(FontPlatformData):

  • platform/graphics/harfbuzz/ng/HarfBuzzNGFaceCoreText.cpp: Renamed from Source/WebCore/platform/graphics/harfbuzz/ng/HarfBuzzFaceCoreText.cpp.

(WebCore):
(WebCore::floatToHarfBuzzPosition):
(WebCore::getGlyph):
(WebCore::getGlyphHorizontalAdvance):
(WebCore::getGlyphHorizontalOrigin):
(WebCore::getGlyphExtents):
(WebCore::harfbuzzCoreTextGetFontFuncs):
(WebCore::releaseTableData):
(WebCore::harfbuzzCoreTextGetTable):
(WebCore::HarfBuzzNGFace::createFace):
(WebCore::HarfBuzzNGFace::createFont):
(WebCore::HarfBuzzShaper::createGlyphBufferAdvance):

  • platform/graphics/harfbuzz/ng/HarfBuzzNGFaceSkia.cpp: Renamed from Source/WebCore/platform/graphics/harfbuzz/ng/HarfBuzzFaceSkia.cpp.

(WebCore):
(WebCore::SkiaScalarToHarfbuzzPosition):
(WebCore::SkiaGetGlyphWidthAndExtents):
(WebCore::harfbuzzGetGlyph):
(WebCore::harfbuzzGetGlyphHorizontalAdvance):
(WebCore::harfbuzzGetGlyphHorizontalOrigin):
(WebCore::harfbuzzGetGlyphExtents):
(WebCore::harfbuzzSkiaGetFontFuncs):
(WebCore::harfbuzzSkiaGetTable):
(WebCore::destroyPaint):
(WebCore::HarfBuzzNGFace::createFace):
(WebCore::HarfBuzzNGFace::createFont):
(WebCore::HarfBuzzShaper::createGlyphBufferAdvance):

  • platform/graphics/harfbuzz/ng/HarfBuzzNGFace.cpp: Renamed from Source/WebCore/platform/graphics/harfbuzz/ng/HarfBuzzFace.cpp.

(WebCore):
(WebCore::harfbuzzFaceCache):
(WebCore::HarfBuzzNGFace::HarfBuzzNGFace):
(WebCore::HarfBuzzNGFace::~HarfBuzzNGFace):

  • platform/graphics/harfbuzz/ng/HarfBuzzNGFace.h: Renamed from Source/WebCore/platform/graphics/harfbuzz/ng/HarfBuzzFace.h.

(WebCore):
(HarfBuzzNGFace):
(WebCore::HarfBuzzNGFace::create):

  • platform/graphics/harfbuzz/ng/HarfBuzzShaper.cpp:

(WebCore::HarfBuzzShaper::shapeHarfBuzzRuns):

6:08 PM Changeset in webkit [122910] by kinuko@chromium.org
  • 3 edits in trunk/Source/WebCore

Record metrics to measure the usage of Blob([ArrayBuffer]) to eventually deprecate it
https://bugs.webkit.org/show_bug.cgi?id=90534

Reviewed by Jian Li.

We are removing ArrayBuffer support in Blob constructor (in favor of
ArrayBufferView) but before doing that we should record its use relative to ArrayBufferView.
http://dev.w3.org/2006/webapi/FileAPI/#dfn-Blob

No new tests as this has no functional changes.

  • fileapi/WebKitBlobBuilder.cpp:

(WebCore::WebKitBlobBuilder::append):

6:07 PM Changeset in webkit [122909] by jsbell@chromium.org
  • 13 edits in trunk

IndexedDB: Key generator state not maintained across connections
https://bugs.webkit.org/show_bug.cgi?id=91456

Reviewed by Tony Chang.

Source/WebCore:

Explicitly store key generator state for each object store in the backing store,
rather than deriving it from the maximum key in the data (which violates the spec
if data is deleted).

This change eliminates a (fragile) per-store cache of the value to simplify the
code. A cache could be re-introduced, requiring an "onbeforecommit" hook for
object stores, but it seems cleaner to save that for a follow-up patch.

Test: storage/indexeddb/key-generator.html

  • Modules/indexeddb/IDBBackingStore.h: New APIs for getting/setting generator states.

(IDBBackingStore):

  • Modules/indexeddb/IDBLevelDBBackingStore.cpp:

(WebCore::IDBLevelDBBackingStore::getObjectStores): Read generator state (but currently ignored).
(WebCore::IDBLevelDBBackingStore::createObjectStore): Write generator state.
(WebCore):
(WebCore::IDBLevelDBBackingStore::getKeyGeneratorCurrentNumber):
(WebCore::IDBLevelDBBackingStore::maybeUpdateKeyGeneratorCurrentNumber): Update, optionally
checking to see if the new value is greater than the old. (If caller got the value via
getKeyGeneratorCurrentNumber it is safe to skip the check.)

  • Modules/indexeddb/IDBLevelDBBackingStore.h:

(IDBLevelDBBackingStore):

  • Modules/indexeddb/IDBLevelDBCoding.cpp:
  • Modules/indexeddb/IDBLevelDBCoding.h:
  • Modules/indexeddb/IDBObjectStoreBackendImpl.cpp:

(WebCore::IDBObjectStoreBackendImpl::IDBObjectStoreBackendImpl): Ditch the cache.
(WebCore::IDBObjectStoreBackendImpl::put): No need for abort task.
(WebCore::IDBObjectStoreBackendImpl::putWithIndexKeys): Ditto.
(WebCore::IDBObjectStoreBackendImpl::putInternal): Use the newfangled APIs below.
(WebCore::IDBObjectStoreBackendImpl::generateKey):
(WebCore::IDBObjectStoreBackendImpl::updateKeyGenerator):

  • Modules/indexeddb/IDBObjectStoreBackendImpl.h:

(IDBObjectStoreBackendImpl):

Source/WebKit/chromium:

Add stub method implementations to test class.

  • tests/IDBFakeBackingStore.h:

LayoutTests:

Added key generator test case that spans database connections.

  • storage/indexeddb/key-generator-expected.txt:
  • storage/indexeddb/resources/key-generator.js:

(testAcrossConnections.request.onsuccess.request.onsuccess.request.onsuccess):
(testAcrossConnections.request.onsuccess.request.onsuccess):
(testAcrossConnections.request.onsuccess):
(testAcrossConnections.doFirstWrite.request.onsuccess):
(testAcrossConnections.doFirstWrite):
(testAcrossConnections.closeAndReopen.request.onsuccess):
(testAcrossConnections.closeAndReopen):
(testAcrossConnections.doSecondWrite.request.onsuccess):
(testAcrossConnections.doSecondWrite.trans.oncomplete):
(testAcrossConnections.doSecondWrite):

5:59 PM Changeset in webkit [122908] by tkent@chromium.org
  • 2 edits in branches/chromium/1132

Merge 122212 - RTL calendar picker for <input type=date> is too narrow and clipped
https://bugs.webkit.org/show_bug.cgi?id=90864

Reviewed by Kentaro Hara.

.:

  • ManualTests/forms/calendar-picker.html:
  • Add isRTL:true for the arabic setting
  • Reset the iframe size when the setting is changed.

Source/WebCore:

Tests: ManualTests/forms/calendar-picker.html

  • Resources/calendarPicker.js:

(fixWindowSize):
Checks the left edge of elemenets in RTL.
(layout): Add dir=ltr for the manual test, which re-uses the document.

TBR=tkent@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10800003

5:58 PM Changeset in webkit [122907] by alexis.menard@openbossa.org
  • 2 edits in trunk/Tools

webkitdirs.pm should fallback to uname -m if arch is not present.
https://bugs.webkit.org/show_bug.cgi?id=91543

Reviewed by Martin Robinson.

It seems that coreutils is moving away from the 'arch' command. Archlinux
for example doesn't ship it anymore (coreutils 8.17). We can then fallback
to 'uname -m' to find out the architecture.

  • Scripts/webkitdirs.pm:

(determineArchitecture):

5:49 PM Changeset in webkit [122906] by eae@chromium.org
  • 2 edits
    3 adds in trunk/LayoutTests

Unreviewed chromium windows rebaseline for r122883.

  • platform/chromium-win-xp/css2.1/t100801-c544-valgn-03-d-agi-expected.png: Added.
  • platform/chromium-win-xp/css2.1/t100801-c544-valgn-03-d-agi-expected.txt: Added.
  • platform/chromium-win-xp/fast/inline-block/inline-block-vertical-align-expected.png: Added.
  • platform/chromium-win-xp/fast/inline/002-expected.png:
5:35 PM Changeset in webkit [122905] by commit-queue@webkit.org
  • 7 edits in trunk

IndexedDB: createIndex should throw INVALID_ACCESS_ERR instead of NOT_SUPPORTED_ERR
https://bugs.webkit.org/show_bug.cgi?id=91553

Patch by Alec Flett <alecflett@chromium.org> on 2012-07-17
Reviewed by Tony Chang.

Source/WebCore:

Update createIndex to throw an INVALID_ACCESS_ERR
as per the IndexedDB spec.

No new tests: existing tests have been updated

  • Modules/indexeddb/IDBDatabaseException.cpp:

(WebCore):

  • Modules/indexeddb/IDBDatabaseException.h:
  • Modules/indexeddb/IDBObjectStore.cpp:

(WebCore::IDBObjectStore::createIndex):

LayoutTests:

Update to match IndexedDB spec.

  • storage/indexeddb/keypath-arrays-expected.txt:
  • storage/indexeddb/resources/keypath-arrays.js:

(openSuccess.request.onsuccess):
(openSuccess):

5:32 PM Changeset in webkit [122904] by dpranke@chromium.org
  • 5 edits in trunk/Tools

nrwt: rename printer.print_update to printer.write_update to match metered_stream
https://bugs.webkit.org/show_bug.cgi?id=91557

Reviewed by Ojan Vafai.

Now that all of the printing logic is in printer.py, I want the
public interface to printer to follow the meteredstream
interface where possible. renaming write_update() gets us close.

  • Scripts/webkitpy/layout_tests/controllers/manager.py:

(Manager._run_tests):
(Manager._set_up_run):
(Manager.start_servers_with_lock):
(Manager.stop_servers_with_lock):
(Manager._clobber_old_results):

  • Scripts/webkitpy/layout_tests/run_webkit_tests.py:

(run):

  • Scripts/webkitpy/layout_tests/views/printing.py:

(Printer.write_update):

  • Scripts/webkitpy/layout_tests/views/printing_unittest.py:

(Testprinter.test_write_update):

5:30 PM Changeset in webkit [122903] by pdr@google.com
  • 6 edits in trunk/LayoutTests

Remove entries in TestExpectations for passing non-scaling-stroke-pattern.svg
https://bugs.webkit.org/show_bug.cgi?id=88230

Unreviewed update of test expecatations.

  • platform/chromium/TestExpectations:
  • platform/efl/TestExpectations:
  • platform/gtk/TestExpectations:
  • platform/mac/TestExpectations:
  • platform/qt/TestExpectations:
5:26 PM Changeset in webkit [122902] by tony@chromium.org
  • 3 edits in trunk/Tools

Fix a bug where optimize-baselines would incorrectly fail to optimize
https://bugs.webkit.org/show_bug.cgi?id=91551

Reviewed by Adam Barth.

In some cases, optimize-baseline would correctly optimize the results, but because
we weren't filtering the virtual ports out of _results_by_port_name, we thought
that we had failed to optimize.

  • Scripts/webkitpy/common/checkout/baselineoptimizer.py:

(BaselineOptimizer._find_optimal_result_placement): No virtual filtering here.
(BaselineOptimizer._filtered_results_by_port_name): New function that filters out virtual directories.
(BaselineOptimizer.optimize): Filter out virtual ports.

  • Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py:

(TestBaselineOptimizer._move_baselines): Add a stub so we don't actual move results.
(BaselineOptimizerTest._assertOptimization): Call optimize and verify that the right files were moved.
(BaselineOptimizerTest._assertOptimizationFailed): Add a method for when optimization should fail.
(BaselineOptimizerTest.test_common_directory_includes_root): Update since this test should fail.
(BaselineOptimizerTest.test_virtual_ports_filtered): New test case that demonstrates the bug.

5:21 PM Changeset in webkit [122901] by wangxianzhu@chromium.org
  • 7 edits in trunk/Tools

[Chromium] Add --encode-binary command line option for DRT
https://bugs.webkit.org/show_bug.cgi?id=91532

Reviewed by Adam Barth.

When the option presents, DRT will encode binary output data in base64.
ChromiumAndroidPort will pass the option because 'adb shell' doesn't support
binary data output.

This change is a refactoring to replace the original hard-coded code for Android.

  • DumpRenderTree/chromium/DumpRenderTree.cpp:

(main):

  • DumpRenderTree/chromium/TestEventPrinter.cpp:

(TestEventPrinter::TestEventPrinter):
(TestEventPrinter::handleAudio): New function replacing the original handleAudioHeader
(TestEventPrinter::handleImage):
(TestEventPrinter::handleBinary): Extracted common function for handleAudio and handleImage

  • DumpRenderTree/chromium/TestEventPrinter.h:

(TestEventPrinter):

  • DumpRenderTree/chromium/TestShell.cpp:

(TestShell::TestShell):
(TestShell::initialize):
(TestShell::dump):

  • DumpRenderTree/chromium/TestShell.h:

(TestShell):
(TestShell::setEncodeBinary):

  • Scripts/webkitpy/layout_tests/port/chromium_android.py: Add --encode-binary to additional_drt_flags

(ChromiumAndroidPort.init):

5:16 PM Changeset in webkit [122900] by abarth@webkit.org
  • 3 edits
    1 delete in trunk/Source/WebCore

DragImageChromiumMac.cpp is never compiled and can be removed
https://bugs.webkit.org/show_bug.cgi?id=91545

Reviewed by Tony Chang.

This file would only be compiled on chromium-mac, but it's excluded
from that build. This is likely left over from the CG configuration.

  • WebCore.gyp/WebCore.gyp:
  • WebCore.gypi:
  • platform/chromium/DragImageChromiumMac.cpp: Removed.
5:12 PM Changeset in webkit [122899] by eae@chromium.org
  • 10 edits in trunk/LayoutTests

Unreviewed chromium lion/snowleopard rebaseline for r122883.

  • platform/chromium-mac-snowleopard/fast/css/line-height-determined-by-primary-font-expected.png:
  • platform/chromium-mac/css2.1/t100801-c544-valgn-03-d-agi-expected.png:
  • platform/chromium-mac/fast/block/basic/014-expected.png:
  • platform/chromium-mac/fast/inline/002-expected.png:
  • platform/chromium-mac/fast/table/table-display-types-strict-expected.png:
  • platform/chromium-mac/fast/text/international/bidi-LDB-2-CSS-expected.png:
  • platform/chromium-mac/fast/text/international/bidi-LDB-2-HTML-expected.png:
  • platform/chromium-mac/fast/text/international/bidi-LDB-2-formatting-characters-expected.png:
  • platform/chromium-mac/tables/mozilla/bugs/bug4527-expected.png:
5:03 PM Changeset in webkit [122898] by tony@chromium.org
  • 2 edits in trunk/Source/WebKit/chromium

Unreviewed, rolling out r122884.
http://trac.webkit.org/changeset/122884
https://bugs.webkit.org/show_bug.cgi?id=91408

Broke the chromium-win build.

  • public/WebIDBMetadata.h:

(WebIDBMetadata):
(WebKit::WebIDBMetadata::WebIDBMetadata):

4:39 PM Changeset in webkit [122897] by dpranke@chromium.org
  • 3 edits in trunk/Tools

nrwt: move per-test result output into printing.py
https://bugs.webkit.org/show_bug.cgi?id=91465

Reviewed by Ojan Vafai.

This moves the last substantive logging/printing code from the
manager into printing.py. Subsequent patches in this thread can
largely focus on cleaning up printing.py and will leave the rest
of the code alone.

This patch also removes manager.update() and
manager.update_summary(), two routines that were no longer being
used or needed (they have been dead for a long time but I didn't
notice them until now).

  • Scripts/webkitpy/layout_tests/controllers/manager.py:

(Manager.results_directory):
(Manager._look_for_new_crash_logs):
(Manager._update_summary_with_result):

  • Scripts/webkitpy/layout_tests/views/printing.py:

(Printer.print_finished_test):

4:27 PM Changeset in webkit [122896] by commit-queue@webkit.org
  • 4 edits
    2 adds in trunk

Assertion failure/crash on Windows when using a font in an SVG
element with an unresaonbly large font size
https://bugs.webkit.org/show_bug.cgi?id=91273
Radar: <rdar://problem/8355401>

Source/WebCore:

Patch by Roger Fong <roger_fong@apple.com> on 2012-07-17
Reviewed by Tim Horton.

When using a font in an SVG element with an unreasonably large
font size in Windows, WebKit crashes. The problem has to do with
font sizes overflowing into negative values in the Windows specific code.
The fix is to cap the font sizes to something reasonable when the font style is getting processed.
The fix will apply to both CSS and SVG so that behaviour is consistent.

Test: svg/text/font-size-too-large-crash.svg

  • css/StyleBuilder.cpp:

(WebCore::ApplyPropertyFontSize::applyValue):
This is where the font size capping now occurs. Caps size to 1000000.
Both CSS and SVG reach the font size capping code here.

  • css/StyleResolver.cpp:

(WebCore::StyleResolver::collectMatchingRulesForList):
Capping here removed, moved to StyleBuilder.cpp.

LayoutTests:

Patch by Roger Fong <roger_fong@apple.com> on 2012-07-17
Reviewed by Tim Horton.

Test to make sure that having an overly large font size won't crash on Windows.

  • svg/text/font-size-too-large-crash-expected.txt: Added.
  • svg/text/font-size-too-large-crash.svg: Added.
4:23 PM Changeset in webkit [122895] by commit-queue@webkit.org
  • 17 edits
    3 adds in trunk

Add parsing and style application for css3-images image-orientation
https://bugs.webkit.org/show_bug.cgi?id=89624

Patch by David Barr <davidbarr@chromium.org> on 2012-07-17
Reviewed by Tony Chang.

The css3-images module is at candidate recommendation.
http://www.w3.org/TR/2012/CR-css3-images-20120417/#the-image-orientation

Source/WebCore:

Test: fast/css/image-orientation/image-orientation.html

  • css/CSSComputedStyleDeclaration.cpp: Add computed style for image-orientation.

(WebCore): Add CSSPropertyImageOrientation to computedProperties.
(WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue): Map CSSPropertyImageOrientation using cast operator from PrimitiveValueMappings.

  • css/CSSParser.cpp: Add parsing rule for image-orientation.

(WebCore::CSSParser::parseValue): Parse the value of CSSPropertyImageOrientation as an angle.

  • css/CSSPrimitiveValueMappings.h: Add mappings between CSSPrimitiveValue and ImageOrientationEnum.

(WebCore): Add conditional include for ImageOrientation.h.
(WebCore::CSSPrimitiveValue::CSSPrimitiveValue): Map the natural orientations to angles.
(WebCore::CSSPrimitiveValue::operator ImageOrientationEnum): Round angles away from zero to quarter turns and map to the natural orientations.

  • css/CSSProperty.cpp: Add CSSPropertyImageOrientation.

(WebCore::CSSProperty::isInheritedProperty): Map CSSPropertyImageOrientation inherited.

  • css/CSSPropertyNames.in: Add image-orientation.
  • css/StyleBuilder.cpp: Add style application logic for CSSPropertyImageOrientation.

(WebCore::StyleBuilder::StyleBuilder): Map CSSPropertyImageOrientation to RenderStyle::imageOrientation with type ImageOrientationEnum.

  • css/StyleResolver.cpp: Handle CSSPropertyImageOrientation.

(WebCore::StyleResolver::applyProperty): Expect CSSPropertyImageOrientation to be handled by StyleBuilder.

  • rendering/style/RenderStyle.h: Add imageOrientation, setImageOrientation and initialImageOrientation.
  • rendering/style/StyleRareInheritedData.cpp: Add m_imageOrientation.

(WebCore::StyleRareInheritedData::StyleRareInheritedData): Add m_imageOrientation to default and copy contructors.
(WebCore::StyleRareInheritedData::operator==): Include m_imageOrientation in comparison.

  • rendering/style/StyleRareInheritedData.h: Add m_imageOrientation.

(StyleRareInheritedData): Add 4-bit field m_imageOrientation, mapping to ImageOrientationEnum.

LayoutTests:

  • fast/css/image-orientation/image-orientation-expected.txt: Added.
  • fast/css/image-orientation/image-orientation.html: Added.
  • platform/chromium/TestExpectations: Skip tests until image-orientation implementation lands.
  • platform/efl/TestExpectations: Skip tests until image-orientation implementation lands.
  • platform/gtk/TestExpectations: Skip tests until image-orientation implementation lands.
  • platform/mac/TestExpectations: Skip tests until image-orientation implementation lands.
  • platform/qt/TestExpectations: Skip tests until image-orientation implementation lands.
4:20 PM Changeset in webkit [122894] by dpranke@chromium.org
  • 6 edits in trunk/Tools

nrwt: move config-specific logging to printing.py
https://bugs.webkit.org/show_bug.cgi?id=91450

Reviewed by Ojan Vafai.

More refactoring ... this moves the 'config' output to
printing.py.

  • Scripts/webkitpy/layout_tests/controllers/manager.py:

(Manager._resize_shards):
(Manager._run_tests):
(Manager._upload_json_files):

  • Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:

(ManagerTest.get_options):

  • Scripts/webkitpy/layout_tests/run_webkit_tests.py:

(run):

  • Scripts/webkitpy/layout_tests/views/printing.py:

(Printer.print_config):
(Printer.print_workers_and_shards):
(Printer._print_config):

  • Scripts/webkitpy/layout_tests/views/printing_unittest.py:

(Testprinter.test_fallback_path_in_config):
(Testprinter.test_print_config):

4:20 PM Changeset in webkit [122893] by aestes@apple.com
  • 2 edits in trunk/LayoutTests

Fix two mistakes I made when modifying TestExpectations.

Apparently the MAC modifier and the FAIL result don't do what I think they do.

  • platform/mac/TestExpectations: Remove MAC and replace FAIL with IMAGE.
4:18 PM Changeset in webkit [122892] by dpranke@chromium.org
  • 2 edits in trunk/Tools

nrwt: clean up logging when we're only running one chunk of the tests
https://bugs.webkit.org/show_bug.cgi?id=91447

Reviewed by Ojan Vafai.

Apparently we were creating a 'tests_run.txt' in the results
directory if we were only running one chunk of the tests; after
3+ years of hacking on this code, that was news to me, so I'm
guessing no one uses this. I'm removing this, and changing the
_print_expected calls to debug messages to simplify the
layering.

  • Scripts/webkitpy/layout_tests/controllers/manager.py:

(Manager._split_into_chunks_if_necessary):

4:15 PM Changeset in webkit [122891] by tony@chromium.org
  • 1 edit
    2 moves
    4 deletes in trunk/LayoutTests

Unreviewed, optimize baselines for fast/block/float/02[68].html .

  • fast/block/float/026-expected.txt: Renamed from LayoutTests/platform/efl/fast/block/float/026-expected.txt.
  • fast/block/float/028-expected.txt: Renamed from LayoutTests/platform/efl/fast/block/float/028-expected.txt.
  • platform/chromium-mac-snowleopard/fast/block/float/026-expected.txt: Removed.
  • platform/chromium-mac-snowleopard/fast/block/float/028-expected.txt: Removed.
  • platform/gtk/fast/block/float/026-expected.txt: Removed.
  • platform/gtk/fast/block/float/028-expected.txt: Removed.
4:13 PM Changeset in webkit [122890] by fpizlo@apple.com
  • 2 edits in trunk/LayoutTests

[Mac] REGRESSION (r122494): Running platform/mac/plugins/root-object-premature-delete-crash.html results in a crash
https://bugs.webkit.org/show_bug.cgi?id=91505

Skip this test so we don't see it in the results.

  • platform/mac/Skipped:
4:12 PM Changeset in webkit [122889] by dpranke@chromium.org
  • 2 edits in trunk/Tools

Fix regression in style checker introduced in r122868.
https://bugs.webkit.org/show_bug.cgi?id=91470

Unreviewed, build fix.

  • Scripts/webkitpy/style/checkers/cpp.py:

(_FileState.init):

4:11 PM Changeset in webkit [122888] by fpizlo@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

[Qt] REGRESSION(r122768, r122771): They broke jquery/data.html and inspector/elements/edit-dom-actions.html
https://bugs.webkit.org/show_bug.cgi?id=91476

Reviewed by Mark Hahnenberg.

The 32-bit repatching code was not correctly adapted to the new world where there may not always
be an available scratch register. Fixed it by ensuring that the scratch register we select does
not overlap with the value tag.

  • dfg/DFGRepatch.cpp:

(JSC::DFG::generateProtoChainAccessStub):
(JSC::DFG::tryCacheGetByID):
(JSC::DFG::tryBuildGetByIDList):
(JSC::DFG::emitPutReplaceStub):

4:08 PM Changeset in webkit [122887] by dpranke@chromium.org
  • 4 edits in trunk/Tools

nrwt: move the bulk of the "expected" output to printing.py
https://bugs.webkit.org/show_bug.cgi?id=91442

Reviewed by Ojan Vafai.

More printing-related refactoring. This moves all of the code
that prints the results we expect to get, but doesn't move a few
dangling printfs (those'll get hit in a later patch).

No functional changes; covered by existing tests.

  • Scripts/webkitpy/layout_tests/controllers/manager.py:

(Manager._split_into_chunks_if_necessary):
(Manager.prepare_lists_and_print_output):
(Manager.print_config):

  • Scripts/webkitpy/layout_tests/views/printing.py:

(Printer.print_expected):
(Printer):
(Printer._print_expected_results_of_type):
(Printer._num_digits):
(Printer._print_expected):

  • Scripts/webkitpy/layout_tests/views/printing_unittest.py:

(Testprinter.test_print_expected):

4:06 PM Changeset in webkit [122886] by enne@google.com
  • 2 edits in trunk/Source/WebCore

REGRESSION(r122215) - RenderObject::willRenderImage crashes on null view()
https://bugs.webkit.org/show_bug.cgi?id=91525

Reviewed by Julien Chaffraix.

Fix by doing an early out check. This is intended to fix the crash in
http://crbug.com/137161.

No new test, because unfortunately a layout test is ill-suited to
reproing this kind of Document creation/destruction bug.

  • rendering/RenderObject.cpp:

(WebCore::RenderObject::willRenderImage):

4:05 PM Changeset in webkit [122885] by aestes@apple.com
  • 2 edits in trunk/LayoutTests

[Mac] REGRESSION (r122651): fast/text/descent-clip-in-scaled-page.html fails
https://bugs.webkit.org/show_bug.cgi?id=91552

  • platform/mac/TestExpectations: Mark the test as expected to fail.
4:04 PM Changeset in webkit [122884] by dgrogan@chromium.org
  • 2 edits in trunk/Source/WebKit/chromium

IndexedDB: Add intVersion to chromium/public/WebIDBMetadata.h
https://bugs.webkit.org/show_bug.cgi?id=91408

Reviewed by Adam Barth.

This is in support of the new upgradeneeded versioning api.
intVersion will eventually replace the WebString version member.

  • public/WebIDBMetadata.h:

(WebIDBMetadata): The spec uses unsigned long long for version
numbers but we use int64_t here so that we can use -1 as a sentinel.
It indicates that a database still uses a string version.

3:51 PM Changeset in webkit [122883] by eae@chromium.org
  • 36 edits
    2 adds in trunk

vertical-align: middle causes overflow with subpixel layout
https://bugs.webkit.org/show_bug.cgi?id=91464

Reviewed by Eric Seidel.

Source/WebCore:

Using vertical-align: middle in combination with an overflow value other
than visible can cause the overflow height to be computed incorrectly.

Test: fast/sub-pixel/vertical-align-middle-overflow.html

  • rendering/RootInlineBox.cpp:

(WebCore::RootInlineBox::verticalPositionForBox):
Round verticalPosition after calculation instead of flooring the result
of the xHeight calculation. By flooring it the resulting value is in
effect rounded up which can cause the height of the box to grow by one.
By rounding the resulting value thevertical position is more accurate and
the off by one error is avoided.

LayoutTests:

Add new test for vertical-align: middle and adjust existing results to
reflect the improved alignment calculation.

  • fast/sub-pixel/vertical-align-middle-overflow-expected.txt: Added.
  • fast/sub-pixel/vertical-align-middle-overflow.html: Added.
  • platform/chromium-linux/css2.1/t100801-c544-valgn-03-d-agi-expected.png:
  • platform/chromium-linux/css2.1/t100801-c544-valgn-03-d-agi-expected.txt:
  • platform/chromium-linux/fast/inline-block/inline-block-vertical-align-expected.png:
  • platform/chromium-linux/fast/inline/002-expected.png:
  • platform/chromium-linux/fast/table/table-display-types-strict-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug4527-expected.png:
  • platform/chromium-mac-snowleopard/css2.1/t100801-c544-valgn-03-d-agi-expected.png:
  • platform/chromium-mac-snowleopard/fast/block/basic/014-expected.png:
  • platform/chromium-mac-snowleopard/fast/css/line-height-determined-by-primary-font-expected.png:
  • platform/chromium-mac-snowleopard/fast/inline/002-expected.png:
  • platform/chromium-mac-snowleopard/fast/table/table-display-types-strict-expected.png:
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-CSS-expected.png:
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-HTML-expected.png:
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-formatting-characters-expected.png:
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4527-expected.png:
  • platform/chromium-mac/css1/text_properties/vertical_align-expected.txt:
  • platform/chromium-mac/css2.1/t100801-c544-valgn-03-d-agi-expected.txt:
  • platform/chromium-mac/fast/block/basic/014-expected.txt:
  • platform/chromium-mac/fast/inline-block/inline-block-vertical-align-expected.txt:
  • platform/chromium-mac/fast/text/international/bidi-LDB-2-CSS-expected.txt:
  • platform/chromium-mac/fast/text/international/bidi-LDB-2-HTML-expected.txt:
  • platform/chromium-mac/fast/text/international/bidi-LDB-2-formatting-characters-expected.txt:
  • platform/chromium-mac/tables/mozilla/bugs/bug4527-expected.txt:
  • platform/chromium-win/css1/text_properties/vertical_align-expected.txt:
  • platform/chromium-win/fast/block/basic/014-expected.txt:
  • platform/chromium-win/fast/inline-block/inline-block-vertical-align-expected.txt:
  • platform/chromium-win/fast/inline/002-expected.txt:
  • platform/chromium-win/fast/table/table-display-types-strict-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug4527-expected.txt:
  • platform/mac/fast/inline/002-expected.txt:
  • platform/mac/fast/replaced/008-expected.png:
  • platform/mac/fast/table/table-display-types-strict-expected.txt:
3:49 PM Changeset in webkit [122882] by cevans@google.com
  • 2 edits in branches/chromium/1180/Source/WebCore/svg

Merge 122278
BUG=136296
Review URL: https://chromiumcodereview.appspot.com/10778043

3:34 PM Changeset in webkit [122881] by cevans@google.com
  • 1 edit in branches/chromium/1180/Source/WebCore/dom/Element.cpp

Merge 122188
BUG=135698
Review URL: https://chromiumcodereview.appspot.com/10783039

3:22 PM Changeset in webkit [122880] by ojan@chromium.org
  • 4 edits in trunk/LayoutTests

A couple of UI nits about the flagging feature in results.html
https://bugs.webkit.org/show_bug.cgi?id=86798

Reviewed by Dirk Pranke.

-Clicking the flag unflags it now
-There's a flag all link for each test list
-Make the flag list always show up at the bottom of the viewport
when there are flagged tests. This makes it both less annoying
and easier to understand what's going on when you flag a test.
This required wrapping all the content in a div so that we could
make the body be a flexbox.

  • fast/harness/resources/results-test.js:

(runSingleRowTest):

  • fast/harness/results.html:
3:16 PM Changeset in webkit [122879] by commit-queue@webkit.org
  • 234 edits in trunk/LayoutTests

[Qt] fast/forms tests needs update after rebaseline and new testfonts
https://bugs.webkit.org/show_bug.cgi?id=91504

Patch by Bruno de Oliveira Abinader <Bruno de Oliveira Abinader> on 2012-07-17
Reviewed by Alexis Menard.

Updated expected Qt results for most fast/forms layout tests, after testfonts changes made by bug 85203.

  • platform/qt-5.0-wk1/Skipped:
  • platform/qt-5.0-wk2/Skipped:
  • platform/qt-5.0/Skipped:
  • platform/qt-5.0/fast/forms/HTMLOptionElement_label06-expected.png:
  • platform/qt-5.0/fast/forms/HTMLOptionElement_label06-expected.txt:
  • platform/qt-5.0/fast/forms/HTMLOptionElement_label07-expected.png:
  • platform/qt-5.0/fast/forms/HTMLOptionElement_label07-expected.txt:
  • platform/qt-5.0/fast/forms/box-shadow-override-expected.png:
  • platform/qt-5.0/fast/forms/box-shadow-override-expected.txt:
  • platform/qt-5.0/fast/forms/form-element-geometry-expected.png:
  • platform/qt-5.0/fast/forms/form-element-geometry-expected.txt:
  • platform/qt-5.0/fast/forms/input-disabled-color-expected.png:
  • platform/qt-5.0/fast/forms/input-disabled-color-expected.txt:
  • platform/qt-5.0/fast/forms/listbox-bidi-align-expected.txt:
  • platform/qt-5.0/fast/forms/menulist-separator-painting-expected.txt:
  • platform/qt-5.0/fast/forms/placeholder-pseudo-style-expected.png:
  • platform/qt-5.0/fast/forms/placeholder-pseudo-style-expected.txt:
  • platform/qt-5.0/fast/forms/search-rtl-expected.png:
  • platform/qt-5.0/fast/forms/search-rtl-expected.txt:
  • platform/qt-5.0/fast/forms/select-background-none-expected.txt:
  • platform/qt-5.0/fast/forms/select-baseline-expected.png:
  • platform/qt-5.0/fast/forms/select-baseline-expected.txt:
  • platform/qt-5.0/fast/forms/selectlist-minsize-expected.txt:
  • platform/qt-5.0/fast/forms/textarea-align-expected.png:
  • platform/qt-5.0/fast/forms/textarea-align-expected.txt:
  • platform/qt-5.0/fast/forms/textarea-setinnerhtml-expected.png:
  • platform/qt-5.0/fast/forms/textarea-setinnerhtml-expected.txt:
  • platform/qt/fast/forms/003-expected.txt:
  • platform/qt/fast/forms/004-expected.txt:
  • platform/qt/fast/forms/006-expected.txt:
  • platform/qt/fast/forms/007-expected.txt:
  • platform/qt/fast/forms/HTMLOptionElement_label01-expected.txt:
  • platform/qt/fast/forms/HTMLOptionElement_label02-expected.txt:
  • platform/qt/fast/forms/HTMLOptionElement_label03-expected.txt:
  • platform/qt/fast/forms/HTMLOptionElement_label04-expected.txt:
  • platform/qt/fast/forms/HTMLOptionElement_label05-expected.txt:
  • platform/qt/fast/forms/basic-inputs-expected.png:
  • platform/qt/fast/forms/basic-inputs-expected.txt:
  • platform/qt/fast/forms/basic-selects-expected.png:
  • platform/qt/fast/forms/basic-selects-expected.txt:
  • platform/qt/fast/forms/basic-textareas-quirks-expected.png:
  • platform/qt/fast/forms/basic-textareas-quirks-expected.txt:
  • platform/qt/fast/forms/blankbuttons-expected.png:
  • platform/qt/fast/forms/blankbuttons-expected.txt:
  • platform/qt/fast/forms/button-align-expected.png:
  • platform/qt/fast/forms/button-align-expected.txt:
  • platform/qt/fast/forms/button-cannot-be-nested-expected.png:
  • platform/qt/fast/forms/button-cannot-be-nested-expected.txt:
  • platform/qt/fast/forms/button-default-title-expected.txt:
  • platform/qt/fast/forms/button-generated-content-expected.png:
  • platform/qt/fast/forms/button-generated-content-expected.txt:
  • platform/qt/fast/forms/button-inner-block-reuse-expected.png:
  • platform/qt/fast/forms/button-inner-block-reuse-expected.txt:
  • platform/qt/fast/forms/button-positioned-expected.png:
  • platform/qt/fast/forms/button-positioned-expected.txt:
  • platform/qt/fast/forms/button-sizes-expected.png:
  • platform/qt/fast/forms/button-sizes-expected.txt:
  • platform/qt/fast/forms/button-style-color-expected.png:
  • platform/qt/fast/forms/button-style-color-expected.txt:
  • platform/qt/fast/forms/button-submit-expected.txt:
  • platform/qt/fast/forms/button-table-styles-expected.png:
  • platform/qt/fast/forms/button-table-styles-expected.txt:
  • platform/qt/fast/forms/button-text-transform-expected.png:
  • platform/qt/fast/forms/button-text-transform-expected.txt:
  • platform/qt/fast/forms/caret-rtl-expected.txt:
  • platform/qt/fast/forms/control-clip-expected.txt:
  • platform/qt/fast/forms/control-clip-overflow-expected.png:
  • platform/qt/fast/forms/control-clip-overflow-expected.txt:
  • platform/qt/fast/forms/control-restrict-line-height-expected.png:
  • platform/qt/fast/forms/control-restrict-line-height-expected.txt:
  • platform/qt/fast/forms/disabled-select-change-index-expected.png:
  • platform/qt/fast/forms/disabled-select-change-index-expected.txt:
  • platform/qt/fast/forms/encoding-test-expected.png:
  • platform/qt/fast/forms/encoding-test-expected.txt:
  • platform/qt/fast/forms/fieldset-align-expected.png:
  • platform/qt/fast/forms/fieldset-align-expected.txt:
  • platform/qt/fast/forms/fieldset-legend-padding-unclipped-fieldset-border-expected.png:
  • platform/qt/fast/forms/fieldset-legend-padding-unclipped-fieldset-border-expected.txt:
  • platform/qt/fast/forms/fieldset-with-float-expected.txt:
  • platform/qt/fast/forms/file/file-input-direction-expected.png:
  • platform/qt/fast/forms/file/file-input-direction-expected.txt:
  • platform/qt/fast/forms/file/file-input-disabled-expected.png:
  • platform/qt/fast/forms/file/file-input-disabled-expected.txt:
  • platform/qt/fast/forms/float-before-fieldset-expected.png:
  • platform/qt/fast/forms/float-before-fieldset-expected.txt:
  • platform/qt/fast/forms/floating-textfield-relayout-expected.png:
  • platform/qt/fast/forms/floating-textfield-relayout-expected.txt:
  • platform/qt/fast/forms/form-added-to-table-expected.txt:
  • platform/qt/fast/forms/form-hides-table-expected.png:
  • platform/qt/fast/forms/form-hides-table-expected.txt:
  • platform/qt/fast/forms/form-in-malformed-markup-expected.txt:
  • platform/qt/fast/forms/formmove-expected.txt:
  • platform/qt/fast/forms/formmove2-expected.txt:
  • platform/qt/fast/forms/formmove3-expected.png:
  • platform/qt/fast/forms/formmove3-expected.txt:
  • platform/qt/fast/forms/hidden-listbox-expected.txt:
  • platform/qt/fast/forms/image-border-expected.txt:
  • platform/qt/fast/forms/indeterminate-expected.txt:
  • platform/qt/fast/forms/input-align-expected.png:
  • platform/qt/fast/forms/input-align-expected.txt:
  • platform/qt/fast/forms/input-align-image-expected.txt:
  • platform/qt/fast/forms/input-appearance-bkcolor-expected.png:
  • platform/qt/fast/forms/input-appearance-bkcolor-expected.txt:
  • platform/qt/fast/forms/input-appearance-default-bkcolor-expected.png:
  • platform/qt/fast/forms/input-appearance-default-bkcolor-expected.txt:
  • platform/qt/fast/forms/input-appearance-disabled-expected.png:
  • platform/qt/fast/forms/input-appearance-disabled-expected.txt:
  • platform/qt/fast/forms/input-appearance-focus-expected.png:
  • platform/qt/fast/forms/input-appearance-focus-expected.txt:
  • platform/qt/fast/forms/input-appearance-preventDefault-expected.png:
  • platform/qt/fast/forms/input-appearance-preventDefault-expected.txt:
  • platform/qt/fast/forms/input-appearance-readonly-expected.png:
  • platform/qt/fast/forms/input-appearance-readonly-expected.txt:
  • platform/qt/fast/forms/input-appearance-selection-expected.png:
  • platform/qt/fast/forms/input-appearance-selection-expected.txt:
  • platform/qt/fast/forms/input-appearance-visibility-expected.png:
  • platform/qt/fast/forms/input-appearance-visibility-expected.txt:
  • platform/qt/fast/forms/input-baseline-expected.png:
  • platform/qt/fast/forms/input-baseline-expected.txt:
  • platform/qt/fast/forms/input-button-sizes-expected.png:
  • platform/qt/fast/forms/input-button-sizes-expected.txt:
  • platform/qt/fast/forms/input-double-click-selection-gap-bug-expected.png:
  • platform/qt/fast/forms/input-double-click-selection-gap-bug-expected.txt:
  • platform/qt/fast/forms/input-field-text-truncated-expected.png:
  • platform/qt/fast/forms/input-field-text-truncated-expected.txt:
  • platform/qt/fast/forms/input-first-letter-expected.txt:
  • platform/qt/fast/forms/input-no-renderer-expected.txt:
  • platform/qt/fast/forms/input-placeholder-visibility-1-expected.png:
  • platform/qt/fast/forms/input-placeholder-visibility-1-expected.txt:
  • platform/qt/fast/forms/input-placeholder-visibility-3-expected.png:
  • platform/qt/fast/forms/input-placeholder-visibility-3-expected.txt:
  • platform/qt/fast/forms/input-readonly-dimmed-expected.png:
  • platform/qt/fast/forms/input-readonly-dimmed-expected.txt:
  • platform/qt/fast/forms/input-readonly-empty-expected.png:
  • platform/qt/fast/forms/input-readonly-empty-expected.txt:
  • platform/qt/fast/forms/input-spaces-expected.png:
  • platform/qt/fast/forms/input-spaces-expected.txt:
  • platform/qt/fast/forms/input-text-click-inside-expected.png:
  • platform/qt/fast/forms/input-text-click-inside-expected.txt:
  • platform/qt/fast/forms/input-text-double-click-expected.png:
  • platform/qt/fast/forms/input-text-double-click-expected.txt:
  • platform/qt/fast/forms/input-text-option-delete-expected.png:
  • platform/qt/fast/forms/input-text-option-delete-expected.txt:
  • platform/qt/fast/forms/input-text-self-emptying-click-expected.png:
  • platform/qt/fast/forms/input-text-self-emptying-click-expected.txt:
  • platform/qt/fast/forms/input-text-word-wrap-expected.png:
  • platform/qt/fast/forms/input-text-word-wrap-expected.txt:
  • platform/qt/fast/forms/input-width-expected.png:
  • platform/qt/fast/forms/input-width-expected.txt:
  • platform/qt/fast/forms/linebox-overflow-in-textarea-padding-expected.txt:
  • platform/qt/fast/forms/listbox-scrollbar-incremental-load-expected.txt:
  • platform/qt/fast/forms/menulist-clip-expected.png:
  • platform/qt/fast/forms/menulist-clip-expected.txt:
  • platform/qt/fast/forms/menulist-deselect-update-expected.txt:
  • platform/qt/fast/forms/menulist-no-overflow-expected.txt:
  • platform/qt/fast/forms/menulist-option-wrap-expected.png:
  • platform/qt/fast/forms/menulist-option-wrap-expected.txt:
  • platform/qt/fast/forms/menulist-style-color-expected.png:
  • platform/qt/fast/forms/menulist-style-color-expected.txt:
  • platform/qt/fast/forms/minWidthPercent-expected.png:
  • platform/qt/fast/forms/minWidthPercent-expected.txt:
  • platform/qt/fast/forms/negativeLineHeight-expected.png:
  • platform/qt/fast/forms/negativeLineHeight-expected.txt:
  • platform/qt/fast/forms/number/input-appearance-number-rtl-expected.png:
  • platform/qt/fast/forms/number/input-appearance-number-rtl-expected.txt:
  • platform/qt/fast/forms/number/input-appearance-spinbutton-disabled-readonly-expected.png:
  • platform/qt/fast/forms/number/input-appearance-spinbutton-disabled-readonly-expected.txt:
  • platform/qt/fast/forms/number/input-appearance-spinbutton-layer-expected.png:
  • platform/qt/fast/forms/number/input-appearance-spinbutton-layer-expected.txt:
  • platform/qt/fast/forms/option-index-expected.txt:
  • platform/qt/fast/forms/option-script-expected.txt:
  • platform/qt/fast/forms/option-strip-whitespace-expected.txt:
  • platform/qt/fast/forms/option-text-clip-expected.txt:
  • platform/qt/fast/forms/placeholder-position-expected.png:
  • platform/qt/fast/forms/placeholder-position-expected.txt:
  • platform/qt/fast/forms/preserveFormDuringResidualStyle-expected.txt:
  • platform/qt/fast/forms/range/input-appearance-range-expected.png:
  • platform/qt/fast/forms/range/input-appearance-range-expected.txt:
  • platform/qt/fast/forms/range/range-thumb-height-percentage-expected.png:
  • platform/qt/fast/forms/range/range-thumb-height-percentage-expected.txt:
  • platform/qt/fast/forms/range/slider-padding-expected.png:
  • platform/qt/fast/forms/range/slider-padding-expected.txt:
  • platform/qt/fast/forms/search-cancel-button-style-sharing-expected.png:
  • platform/qt/fast/forms/search-cancel-button-style-sharing-expected.txt:
  • platform/qt/fast/forms/search-display-none-cancel-button-expected.png:
  • platform/qt/fast/forms/search-display-none-cancel-button-expected.txt:
  • platform/qt/fast/forms/search-styled-expected.png:
  • platform/qt/fast/forms/search-styled-expected.txt:
  • platform/qt/fast/forms/search-vertical-alignment-expected.png:
  • platform/qt/fast/forms/search-vertical-alignment-expected.txt:
  • platform/qt/fast/forms/select-align-expected.txt:
  • platform/qt/fast/forms/select-block-background-expected.txt:
  • platform/qt/fast/forms/select-change-listbox-size-expected.txt:
  • platform/qt/fast/forms/select-change-listbox-to-popup-expected.txt:
  • platform/qt/fast/forms/select-change-popup-to-listbox-expected.txt:
  • platform/qt/fast/forms/select-dirty-parent-pref-widths-expected.txt:
  • platform/qt/fast/forms/select-disabled-appearance-expected.txt:
  • platform/qt/fast/forms/select-display-none-style-resolve-expected.txt:
  • platform/qt/fast/forms/select-empty-option-height-expected.txt:
  • platform/qt/fast/forms/select-initial-position-expected.txt:
  • platform/qt/fast/forms/select-item-background-clip-expected.txt:
  • platform/qt/fast/forms/select-list-box-with-height-expected.txt:
  • platform/qt/fast/forms/select-listbox-multiple-no-focusring-expected.png:
  • platform/qt/fast/forms/select-listbox-multiple-no-focusring-expected.txt:
  • platform/qt/fast/forms/select-overflow-scroll-expected.png:
  • platform/qt/fast/forms/select-overflow-scroll-expected.txt:
  • platform/qt/fast/forms/select-overflow-scroll-inherited-expected.png:
  • platform/qt/fast/forms/select-overflow-scroll-inherited-expected.txt:
  • platform/qt/fast/forms/select-selected-expected.txt:
  • platform/qt/fast/forms/select-size-expected.txt:
  • platform/qt/fast/forms/select-style-expected.txt:
  • platform/qt/fast/forms/stuff-on-my-optgroup-expected.txt:
  • platform/qt/fast/forms/targeted-frame-submission-expected.png:
  • platform/qt/fast/forms/targeted-frame-submission-expected.txt:
  • platform/qt/fast/forms/text-style-color-expected.png:
  • platform/qt/fast/forms/text-style-color-expected.txt:
  • platform/qt/fast/forms/textarea-placeholder-pseudo-style-expected.png:
  • platform/qt/fast/forms/textarea-placeholder-pseudo-style-expected.txt:
  • platform/qt/fast/forms/textarea-placeholder-visibility-1-expected.png:
  • platform/qt/fast/forms/textarea-placeholder-visibility-1-expected.txt:
  • platform/qt/fast/forms/textarea-placeholder-visibility-2-expected.png:
  • platform/qt/fast/forms/textarea-placeholder-visibility-2-expected.txt:
  • platform/qt/fast/forms/textarea-scrollbar-expected.png:
  • platform/qt/fast/forms/textarea-scrollbar-expected.txt:
  • platform/qt/fast/forms/textarea-scrolled-type-expected.png:
  • platform/qt/fast/forms/textarea-scrolled-type-expected.txt:
  • platform/qt/fast/forms/textfield-focus-ring-expected.png:
  • platform/qt/fast/forms/textfield-focus-ring-expected.txt:
  • platform/qt/fast/forms/textfield-outline-expected.png:
  • platform/qt/fast/forms/textfield-outline-expected.txt:
  • platform/qt/fast/forms/textfield-overflow-by-value-update-expected.txt:
  • platform/qt/fast/forms/textfield-overflow-expected.png:
  • platform/qt/fast/forms/textfield-overflow-expected.txt:
3:08 PM Changeset in webkit [122878] by commit-queue@webkit.org
  • 14 edits in trunk/LayoutTests

[Qt] svg/transforms tests needs update after rebaseline and new testfonts
https://bugs.webkit.org/show_bug.cgi?id=91501

Patch by Bruno de Oliveira Abinader <Bruno de Oliveira Abinader> on 2012-07-17
Reviewed by Alexis Menard.

Updated expected Qt results for most svg/transforms layout tests, after testfonts changes made by bug 85203.

  • platform/qt-5.0/Skipped:
  • platform/qt-5.0/svg/transforms/text-with-mask-with-svg-transform-expected.png:
  • platform/qt-5.0/svg/transforms/text-with-mask-with-svg-transform-expected.txt:
  • platform/qt-5.0/svg/transforms/text-with-pattern-inside-transformed-html-expected.png:
  • platform/qt-5.0/svg/transforms/text-with-pattern-inside-transformed-html-expected.txt:
  • platform/qt-5.0/svg/transforms/text-with-pattern-with-svg-transform-expected.png:
  • platform/qt-5.0/svg/transforms/text-with-pattern-with-svg-transform-expected.txt:
  • platform/qt/svg/transforms/animated-path-inside-transformed-html-expected.png:
  • platform/qt/svg/transforms/animated-path-inside-transformed-html-expected.txt:
  • platform/qt/svg/transforms/svg-css-transforms-clip-path-expected.png:
  • platform/qt/svg/transforms/svg-css-transforms-clip-path-expected.txt:
  • platform/qt/svg/transforms/svg-css-transforms-expected.png:
  • platform/qt/svg/transforms/svg-css-transforms-expected.txt:
3:05 PM Changeset in webkit [122877] by cevans@google.com
  • 1 edit
    2 copies in branches/chromium/1180

Merge 122293
BUG=135071
Review URL: https://chromiumcodereview.appspot.com/10704255

2:47 PM Changeset in webkit [122876] by jpetsovits@rim.com
  • 4 edits in trunk/Source/WebKit/blackberry

[BlackBerry] Remove unnecessary clearWindow() calls and the method itself
https://bugs.webkit.org/show_bug.cgi?id=91540
RIM PR 174365

Reviewed by Adam Treat.

If we resume the backingstore right afterwards with
RenderAndBlit then that'll fill the whole visible area
with content, making a clearWindow() call unnecessary.
This call is a remnant from ages ago, and is well suited
to disappear into nothingness.

(There is still a clearWindow() call, with rect argument,
which we continue using. This commit only removes the
rect-less version.)

  • Api/BackingStore.cpp:
  • Api/BackingStore_p.h:

(BackingStorePrivate):

  • Api/WebPage.cpp:

(BlackBerry::WebKit::WebPagePrivate::zoomAboutPoint):
(BlackBerry::WebKit::WebPagePrivate::zoomBlock):

2:43 PM Changeset in webkit [122875] by pdr@google.com
  • 5 edits in trunk/Source/WebCore

Move zero-length-subpaths from RenderSVGShape to RenderSVGPath
https://bugs.webkit.org/show_bug.cgi?id=90716

Reviewed by Nikolas Zimmermann.

Previously zero-length-subpath code was present in RenderSVGShape but it is
only needed in RenderSVGPath. This patch moves the zero-length-subpath code
to RenderSVGPath.

In this change, we gain:
1) Ellipses, Circles, and Rects will no longer carry an empty Vector nor

checks for zero-length subpaths which (per the spec) they cannot have.

2) RenderSVGShape, the superclass of all shape rendering, has been

drastically simplified by removing 70 lines of code that only applies
to Path rendering. This generally aids in code understandability.

The patch is primarily a straightforward code move but useStrokeStyleToFill
needs further explanation:
Zero-length-subpaths are drawn using rectangular and circular paths which
are filled.
Previously in RenderSVGShape::fillAndStrokePath, strokePath was called for
the main path with ApplyToStrokeMode and then strokePath was called for
each zero-length-subpath with ApplyToFillMode.
ApplyToFillMode had the effect of setting the context's stroke style to
the fill style so zero-length-subpaths were "filled" with the stroke style.
After this patch, the context is only setup once (which is faster!) using
ApplyToStrokeMode so we manually set the stroke style to the fill style
using useStrokeStyleToFill.

No new tests, just a refactoring.

  • rendering/svg/RenderSVGPath.cpp:

(WebCore::RenderSVGPath::updateShapeFromElement):
(WebCore):
(WebCore::RenderSVGPath::calculateUpdatedStrokeBoundingBox):
(WebCore::useStrokeStyleToFill):
(WebCore::RenderSVGPath::strokeShape):
(WebCore::RenderSVGPath::shapeDependentStrokeContains):
(WebCore::RenderSVGPath::shouldStrokeZeroLengthSubpath):
(WebCore::RenderSVGPath::zeroLengthLinecapPath):
(WebCore::RenderSVGPath::zeroLengthSubpathRect):
(WebCore::RenderSVGPath::updateZeroLengthSubpaths):

  • rendering/svg/RenderSVGPath.h:

(RenderSVGPath):

  • rendering/svg/RenderSVGShape.cpp:

(WebCore::RenderSVGShape::updateShapeFromElement):
(WebCore::RenderSVGShape::strokeShape):
(WebCore::RenderSVGShape::strokeContains):
(WebCore):
(WebCore::RenderSVGShape::fillShape):
(WebCore::RenderSVGShape::fillAndStrokeShape):
(WebCore::RenderSVGShape::paint):
(WebCore::RenderSVGShape::calculateStrokeBoundingBox):

  • rendering/svg/RenderSVGShape.h:

(WebCore::RenderSVGShape::hasPath):
(WebCore::RenderSVGShape::hasNonScalingStroke):
(RenderSVGShape):
(WebCore::RenderSVGShape::strokeBoundingBox):

2:33 PM Changeset in webkit [122874] by tony@chromium.org
  • 2 edits in trunk/LayoutTests

[chromium] Unreviewed gardening.
Mark media/media-continues-playing-after-replace-source.html as flaky.

  • platform/chromium/TestExpectations:
1:56 PM Changeset in webkit [122873] by rniwa@webkit.org
  • 6 edits
    2 adds in trunk

invalidateNodeListCachesInAncestors walks up ancestors even when an attribute that doesn't invalidate node lists changes
https://bugs.webkit.org/show_bug.cgi?id=91530

Reviewed by Ojan Vafai.

Source/WebCore:

The bug was caused by invalidateNodeListCachesInAncestors not calling Document::shouldInvalidateNodeListCaches with
attrName. Done that.

This chance revealed a bug in shouldInvalidateTypeOnAttributeChange that we weren't checking form attribute changes for
RadioNodeList and HTMLCollection, so fixed the bug.

Also renamed Document::clearNodeListCaches to invalidateNodeListCaches to match the name convention used elsewhere,
and added a new version of DynamicNodeListCacheBase::invalidateCache that takes attrName to reduce the code duplication.

Test: fast/forms/elements-invalidate-on-form-attribute-invalidation.html

  • dom/Document.cpp:

(WebCore::Document::invalidateNodeListCaches):

  • dom/Document.h:

(Document):

  • dom/DynamicNodeList.h:

(WebCore::DynamicNodeListCacheBase::invalidateCache):
(WebCore::DynamicNodeListCacheBase::shouldInvalidateTypeOnAttributeChange):

  • dom/Node.cpp:

(WebCore::Node::invalidateNodeListCachesInAncestors):
(WebCore::NodeListsNodeData::invalidateCaches):

LayoutTests:

Add a regression test for invalidating HTMLFormColletion on form attribute changes. This invalidation worked before
because we weren't properly exiting early in Node::invalidateNodeListCachesInAncestors and
Document::invalidateNodeListCaches invalidated all node lists regardless of the attribute type.

  • fast/forms/elements-invalidate-on-form-attribute-invalidation-expected.txt: Added.
  • fast/forms/elements-invalidate-on-form-attribute-invalidation.html: Added.
1:44 PM Changeset in webkit [122872] by fmalita@chromium.org
  • 1 edit
    2 adds in trunk/LayoutTests

SVG getBBox does not update bound after path data change
https://bugs.webkit.org/show_bug.cgi?id=82629

Reviewed by Dirk Schulze.

The bug appears to have been fixed - adding a test for it.

  • svg/custom/path-bbox-update-expected.txt: Added.
  • svg/custom/path-bbox-update.html: Added.
1:24 PM Changeset in webkit [122871] by tony@chromium.org
  • 3 edits
    2 copies
    1 add in trunk/LayoutTests

[chromium] Unreviewed gardening. Add baselines after r122861.

  • platform/chromium-mac-snowleopard/fast/block/float/026-expected.txt: Copied from LayoutTests/platform/chromium-mac/fast/block/float/026-expected.txt.
  • platform/chromium-mac-snowleopard/fast/block/float/028-expected.txt: Copied from LayoutTests/platform/chromium-mac/fast/block/float/028-expected.txt.
  • platform/chromium-mac/fast/block/float/026-expected.txt:
  • platform/chromium-mac/fast/block/float/028-expected.txt:
  • platform/chromium-mac/fast/multicol/shrink-to-column-height-for-pagination-expected.png: Added.
1:18 PM Changeset in webkit [122870] by Alexandru Chiculita
  • 81 edits
    47 adds
    11 deletes in trunk/Source

Update ANGLE in WebKit
https://bugs.webkit.org/show_bug.cgi?id=89039

Reviewed by Dean Jackson and Mark Rowe.

Update ANGLE to r1170, with the following modifications:

(1) Use Bison 2.3 instead of Bison 2.4.2 to generate ExpressionParser.cpp and
glslang_tab.cpp. I had to modify ExpressionParser.y to make it compatible with Bison
2.3. The changes have been contributed back to ANGLE in r1224.

(2) Continue to recognize QNX as POSIX in ANGLE. This has been contributed back to ANGLE
in r1223.

(3) Rename ANGLE/src/compiler/preprocessor/new/Diagnostic.cpp to DiagnosticBase.cpp.
Rename ANGLE/src/compiler/preprocessor/new/DirectiveHandler.cpp to DirectiveHandlerBase.cpp.

With the introduction of ANGLE's new preprocessor, there were two files named Diagnostic.cpp
in ANGLE under different folders. This caused problems on the QT build when their object
files, both named Diagnostic.o, tried to go in the same folder. Renaming one of them to
DiagnosticBase.cpp avoids this conflict. The same situation occurred with
DirectiveHandler.cpp. I will work on contributing this change back to ANGLE for future
updates.

(4) Add the following lines to glslang.y and ExpressionParser.y:
#define YYENABLE_NLS 0
#define YYLTYPE_IS_TRIVIAL 1

Bison 2.3 doesn't first check that these macros are defined before reading their value,
which causes the QT build to fail.

We work around this issue in the same way in CSSGrammar.y.

I will work on contributing this change back to ANGLE.

Source/ThirdParty/ANGLE:

  • ANGLE.xcodeproj/project.pbxproj:
  • include/GLES2/gl2ext.h:
  • include/GLSLANG/ShaderLang.h:
  • src/build_angle.xcodeproj/project.pbxproj:
  • src/common/angleutils.h:
  • src/common/debug.cpp:

(gl):
(gl::output):
(gl::trace):
(gl::perfActive):
(gl::ScopedPerfEventHelper::ScopedPerfEventHelper):
(gl::ScopedPerfEventHelper::~ScopedPerfEventHelper):

  • src/common/version.h:
  • src/compiler/BuiltInFunctionEmulator.cpp:

(BuiltInFunctionEmulator::IdentifyFunction):

  • src/compiler/BuiltInFunctionEmulator.h:
  • src/compiler/Compiler.cpp:

(isWebGLBasedSpec):
(TCompiler::compile):
(TCompiler::rewriteCSSShader):
(TCompiler::enforceTimingRestrictions):
(TCompiler::enforceFragmentShaderTimingRestrictions):
(TCompiler::enforceVertexShaderTimingRestrictions):

  • src/compiler/DetectDiscontinuity.cpp: Added.

(sh::DetectLoopDiscontinuity::traverse):
(sh):
(sh::DetectLoopDiscontinuity::visitBranch):
(sh::DetectLoopDiscontinuity::visitAggregate):
(sh::containsLoopDiscontinuity):
(sh::DetectGradientOperation::traverse):
(sh::DetectGradientOperation::visitUnary):
(sh::DetectGradientOperation::visitAggregate):
(sh::containsGradientOperation):

  • src/compiler/DetectDiscontinuity.h: Added.

(sh):
(DetectLoopDiscontinuity):
(DetectGradientOperation):

  • src/compiler/Diagnostics.cpp: Added.

(TDiagnostics::TDiagnostics):
(TDiagnostics::~TDiagnostics):
(TDiagnostics::writeInfo):
(TDiagnostics::writeDebug):
(TDiagnostics::print):

  • src/compiler/Diagnostics.h: Added.

(TDiagnostics):
(TDiagnostics::infoSink):

  • src/compiler/DirectiveHandler.cpp: Added.

(getBehavior):
(TDirectiveHandler::TDirectiveHandler):
(TDirectiveHandler::~TDirectiveHandler):
(TDirectiveHandler::handleError):
(TDirectiveHandler::handlePragma):
(TDirectiveHandler::handleExtension):
(TDirectiveHandler::handleVersion):

  • src/compiler/DirectiveHandler.h: Added.

(TDirectiveHandler):
(TDirectiveHandler::pragma):
(TDirectiveHandler::extensionBehavior):

  • src/compiler/ExtensionBehavior.h:

(getBehaviorString):

  • src/compiler/Initialize.cpp:

(BuiltInConstants):
(TBuiltIns::initialize):
(IdentifyBuiltIns):

  • src/compiler/InitializeParseContext.cpp: Added.

(InitializeParseContextIndex):
(FreeParseContextIndex):
(InitializeGlobalParseContext):
(FreeParseContext):
(GetGlobalParseContext):

  • src/compiler/InitializeParseContext.h:

(TThreadParseContextRec):

  • src/compiler/Intermediate.cpp:

(TIntermediate::addSelection):

  • src/compiler/MapLongVariableNames.cpp:
  • src/compiler/OutputHLSL.cpp:

(sh::str):
(sh::OutputHLSL::OutputHLSL):
(sh::OutputHLSL::~OutputHLSL):
(sh::OutputHLSL::output):
(sh::OutputHLSL::header):
(sh::OutputHLSL::visitBinary):
(sh::OutputHLSL::visitUnary):
(sh::OutputHLSL::visitAggregate):
(sh::OutputHLSL::visitSelection):
(sh::OutputHLSL::visitLoop):
(sh::OutputHLSL::traverseStatements):
(sh):
(sh::OutputHLSL::handleExcessiveLoop):
(sh::OutputHLSL::typeString):
(sh::OutputHLSL::addConstructor):
(sh::OutputHLSL::decorateField):

  • src/compiler/OutputHLSL.h:

(sh):
(OutputHLSL):

  • src/compiler/ParseHelper.cpp:

(TParseContext::parseVectorFields):
(TParseContext::parseMatrixFields):
(TParseContext::error):
(TParseContext::warning):
(TParseContext::trace):
(TParseContext::assignError):
(TParseContext::unaryOpError):
(TParseContext::binaryOpError):
(TParseContext::precisionErrorCheck):
(TParseContext::lValueErrorCheck):
(TParseContext::constErrorCheck):
(TParseContext::integerErrorCheck):
(TParseContext::globalErrorCheck):
(TParseContext::reservedErrorCheck):
(TParseContext::constructorErrorCheck):
(TParseContext::voidErrorCheck):
(TParseContext::boolErrorCheck):
(TParseContext::samplerErrorCheck):
(TParseContext::structQualifierErrorCheck):
(TParseContext::parameterSamplerErrorCheck):
(TParseContext::arraySizeErrorCheck):
(TParseContext::arrayQualifierErrorCheck):
(TParseContext::arrayTypeErrorCheck):
(TParseContext::arrayErrorCheck):
(TParseContext::arraySetMaxSize):
(TParseContext::nonInitConstErrorCheck):
(TParseContext::nonInitErrorCheck):
(TParseContext::paramErrorCheck):
(TParseContext::extensionErrorCheck):
(TParseContext::supportsExtension):
(TParseContext::handleExtensionDirective):
(TParseContext::handlePragmaDirective):
(TParseContext::findFunction):
(TParseContext::executeInitializer):
(TParseContext::constructBuiltIn):
(TParseContext::constructStruct):
(TParseContext::addConstVectorNode):
(TParseContext::addConstMatrixNode):
(TParseContext::addConstArrayNode):
(TParseContext::addConstStruct):
(TParseContext::enterStructDeclaration):
(TParseContext::structNestingErrorCheck):
(PaParseStrings):

  • src/compiler/ParseHelper.h:

(TParseContext::TParseContext):
(TParseContext):
(TParseContext::infoSink):
(TParseContext::extensionBehavior):
(TParseContext::pragma):

  • src/compiler/PoolAlloc.cpp:

(TAllocation::checkGuardBlock):

  • src/compiler/Pragma.h: Added.

(TPragma):
(TPragma::TPragma):

  • src/compiler/RenameFunction.h: Added.

(RenameFunction):
(RenameFunction::RenameFunction):
(RenameFunction::visitAggregate):

  • src/compiler/ShHandle.h:

(TCompiler):

  • src/compiler/ShaderLang.cpp:

(getVariableInfo):

  • src/compiler/SymbolTable.cpp:

(TType::buildMangledName):

  • src/compiler/TranslatorHLSL.cpp:
  • src/compiler/UnfoldSelect.cpp: Removed.
  • src/compiler/UnfoldSelect.h: Removed.
  • src/compiler/UnfoldShortCircuit.cpp: Added.

(sh::UnfoldShortCircuit::UnfoldShortCircuit):
(sh):
(sh::UnfoldShortCircuit::traverse):
(sh::UnfoldShortCircuit::visitBinary):
(sh::UnfoldShortCircuit::visitSelection):
(sh::UnfoldShortCircuit::visitLoop):
(sh::UnfoldShortCircuit::getNextTemporaryIndex):

  • src/compiler/UnfoldShortCircuit.h: Added.

(sh):
(UnfoldShortCircuit):

  • src/compiler/ValidateLimitations.cpp:
  • src/compiler/debug.cpp:
  • src/compiler/depgraph: Added.
  • src/compiler/depgraph/DependencyGraph.cpp: Added.

(TDependencyGraph::TDependencyGraph):
(TDependencyGraph::~TDependencyGraph):
(TDependencyGraph::createArgument):
(TDependencyGraph::createFunctionCall):
(TDependencyGraph::getOrCreateSymbol):
(TDependencyGraph::createSelection):
(TDependencyGraph::createLoop):
(TDependencyGraph::createLogicalOp):
(TGraphLogicalOp::getOpString):

  • src/compiler/depgraph/DependencyGraph.h: Added.

(TGraphNode):
(TGraphNode::TGraphNode):
(TGraphNode::~TGraphNode):
(TGraphParentNode):
(TGraphParentNode::TGraphParentNode):
(TGraphParentNode::~TGraphParentNode):
(TGraphParentNode::addDependentNode):
(TGraphArgument):
(TGraphArgument::TGraphArgument):
(TGraphArgument::~TGraphArgument):
(TGraphArgument::getIntermFunctionCall):
(TGraphArgument::getArgumentNumber):
(TGraphFunctionCall):
(TGraphFunctionCall::TGraphFunctionCall):
(TGraphFunctionCall::~TGraphFunctionCall):
(TGraphFunctionCall::getIntermFunctionCall):
(TGraphSymbol):
(TGraphSymbol::TGraphSymbol):
(TGraphSymbol::~TGraphSymbol):
(TGraphSymbol::getIntermSymbol):
(TGraphSelection):
(TGraphSelection::TGraphSelection):
(TGraphSelection::~TGraphSelection):
(TGraphSelection::getIntermSelection):
(TGraphLoop):
(TGraphLoop::TGraphLoop):
(TGraphLoop::~TGraphLoop):
(TGraphLoop::getIntermLoop):
(TGraphLogicalOp):
(TGraphLogicalOp::TGraphLogicalOp):
(TGraphLogicalOp::~TGraphLogicalOp):
(TGraphLogicalOp::getIntermLogicalOp):
(TDependencyGraph):
(TDependencyGraph::begin):
(TDependencyGraph::end):
(TDependencyGraph::beginSamplerSymbols):
(TDependencyGraph::endSamplerSymbols):
(TDependencyGraph::beginUserDefinedFunctionCalls):
(TDependencyGraph::endUserDefinedFunctionCalls):
(TDependencyGraphTraverser):
(TDependencyGraphTraverser::TDependencyGraphTraverser):
(TDependencyGraphTraverser::visitSymbol):
(TDependencyGraphTraverser::visitArgument):
(TDependencyGraphTraverser::visitFunctionCall):
(TDependencyGraphTraverser::visitSelection):
(TDependencyGraphTraverser::visitLoop):
(TDependencyGraphTraverser::visitLogicalOp):
(TDependencyGraphTraverser::getDepth):
(TDependencyGraphTraverser::incrementDepth):
(TDependencyGraphTraverser::decrementDepth):
(TDependencyGraphTraverser::clearVisited):
(TDependencyGraphTraverser::markVisited):
(TDependencyGraphTraverser::isVisited):

  • src/compiler/depgraph/DependencyGraphBuilder.cpp: Added.

(TDependencyGraphBuilder::build):
(TDependencyGraphBuilder::visitAggregate):
(TDependencyGraphBuilder::visitFunctionDefinition):
(TDependencyGraphBuilder::visitFunctionCall):
(TDependencyGraphBuilder::visitAggregateChildren):
(TDependencyGraphBuilder::visitSymbol):
(TDependencyGraphBuilder::visitBinary):
(TDependencyGraphBuilder::visitAssignment):
(TDependencyGraphBuilder::visitLogicalOp):
(TDependencyGraphBuilder::visitBinaryChildren):
(TDependencyGraphBuilder::visitSelection):
(TDependencyGraphBuilder::visitLoop):
(TDependencyGraphBuilder::connectMultipleNodesToSingleNode):

  • src/compiler/depgraph/DependencyGraphBuilder.h: Added.

(TDependencyGraphBuilder):
(TNodeSetStack):
(TDependencyGraphBuilder::TNodeSetStack::TNodeSetStack):
(TDependencyGraphBuilder::TNodeSetStack::~TNodeSetStack):
(TDependencyGraphBuilder::TNodeSetStack::getTopSet):
(TDependencyGraphBuilder::TNodeSetStack::pushSet):
(TDependencyGraphBuilder::TNodeSetStack::popSet):
(TDependencyGraphBuilder::TNodeSetStack::popSetIntoNext):
(TDependencyGraphBuilder::TNodeSetStack::insertIntoTopSet):
(TDependencyGraphBuilder::TNodeSetStack::clear):
(TNodeSetMaintainer):
(TDependencyGraphBuilder::TNodeSetMaintainer::TNodeSetMaintainer):
(TDependencyGraphBuilder::TNodeSetMaintainer::~TNodeSetMaintainer):
(TNodeSetPropagatingMaintainer):
(TDependencyGraphBuilder::TNodeSetPropagatingMaintainer::TNodeSetPropagatingMaintainer):
(TDependencyGraphBuilder::TNodeSetPropagatingMaintainer::~TNodeSetPropagatingMaintainer):
(TLeftmostSymbolMaintainer):
(TDependencyGraphBuilder::TLeftmostSymbolMaintainer::TLeftmostSymbolMaintainer):
(TDependencyGraphBuilder::TLeftmostSymbolMaintainer::~TLeftmostSymbolMaintainer):
(TDependencyGraphBuilder::TDependencyGraphBuilder):
(TDependencyGraphBuilder::build):

  • src/compiler/depgraph/DependencyGraphOutput.cpp: Added.

(TDependencyGraphOutput::outputIndentation):
(TDependencyGraphOutput::visitArgument):
(TDependencyGraphOutput::visitFunctionCall):
(TDependencyGraphOutput::visitSymbol):
(TDependencyGraphOutput::visitSelection):
(TDependencyGraphOutput::visitLoop):
(TDependencyGraphOutput::visitLogicalOp):
(TDependencyGraphOutput::outputAllSpanningTrees):

  • src/compiler/depgraph/DependencyGraphOutput.h: Added.

(TDependencyGraphOutput):
(TDependencyGraphOutput::TDependencyGraphOutput):

  • src/compiler/depgraph/DependencyGraphTraverse.cpp: Added.

(TGraphNode::traverse):
(TGraphParentNode::traverse):
(TGraphArgument::traverse):
(TGraphFunctionCall::traverse):
(TGraphSymbol::traverse):
(TGraphSelection::traverse):
(TGraphLoop::traverse):
(TGraphLogicalOp::traverse):

  • src/compiler/glslang.h:
  • src/compiler/glslang.l:
  • src/compiler/glslang.y:
  • src/compiler/glslang_lex.cpp:

(yy_buffer_state):
(yyguts_t):
(yy_get_previous_state):
(yy_try_NUL_trans):
(input):
(yyensure_buffer_stack):
(yy_scan_bytes):
(yyget_leng):
(string_input):
(yyerror):
(glslang_finalize):
(glslang_scan):

  • src/compiler/glslang_tab.cpp:
  • src/compiler/intermediate.h:

(TIntermAggregate::TIntermAggregate):
(TIntermAggregate::~TIntermAggregate):
(TIntermAggregate::isUserDefined):
(TIntermAggregate):
(TIntermTraverser::~TIntermTraverser):

  • src/compiler/osinclude.h:
  • src/compiler/preprocessor/atom.c:

(FindHashLoc):
(PrintAtomTable):

  • src/compiler/preprocessor/cpp.c:

(CPPpragma):
(readCPPline):
(PredefineIntMacro):
(MacroExpand):

  • src/compiler/preprocessor/cpp.h:
  • src/compiler/preprocessor/memory.h:
  • src/compiler/preprocessor/new: Added properties allow-tabs, allow-tabs, allow-tabs, allow-tabs, allow-tabs, allow-tabs, allow-tabs, allow-tabs, allow-tabs, allow-tabs, allow-tabs, allow-tabs, allow-tabs, allow-tabs, allow-tabs, allow-tabs, allow-tabs, allow-tabs, allow-tabs, allow-tabs, allow-tabs, allow-tabs, allow-tabs, allow-tabs, allow-tabs, allow-tabs, allow-tabs, allow-tabs and allow-tabs.
  • src/compiler/preprocessor/new/Context.cpp: Removed.
  • src/compiler/preprocessor/new/Context.h: Removed.
  • src/compiler/preprocessor/new/Diagnostics.h: Added.

(pp):
(Diagnostics):

  • src/compiler/preprocessor/new/DiagnosticsBase.cpp: Added.

(pp):
(pp::Diagnostics::~Diagnostics):
(pp::Diagnostics::report):
(pp::Diagnostics::severity):

  • src/compiler/preprocessor/new/DirectiveHandler.h: Added.

(pp):
(DirectiveHandler):

  • src/compiler/preprocessor/new/DirectiveHandlerBase.cpp: Added.

(pp):
(pp::DirectiveHandler::~DirectiveHandler):

  • src/compiler/preprocessor/new/DirectiveParser.cpp: Added.

(getDirective):
(isConditionalDirective):
(isEOD):
(skipUntilEOD):
(isMacroNameReserved):
(isMacroPredefined):
(pp):
(DefinedParser):
(pp::DefinedParser::DefinedParser):
(pp::DefinedParser::lex):
(pp::DirectiveParser::DirectiveParser):
(pp::DirectiveParser::lex):
(pp::DirectiveParser::parseDirective):
(pp::DirectiveParser::parseDefine):
(pp::DirectiveParser::parseUndef):
(pp::DirectiveParser::parseIf):
(pp::DirectiveParser::parseIfdef):
(pp::DirectiveParser::parseIfndef):
(pp::DirectiveParser::parseElse):
(pp::DirectiveParser::parseElif):
(pp::DirectiveParser::parseEndif):
(pp::DirectiveParser::parseError):
(pp::DirectiveParser::parsePragma):
(pp::DirectiveParser::parseExtension):
(pp::DirectiveParser::parseVersion):
(pp::DirectiveParser::parseLine):
(pp::DirectiveParser::skipping):
(pp::DirectiveParser::parseConditionalIf):
(pp::DirectiveParser::parseExpressionIf):
(pp::DirectiveParser::parseExpressionIfdef):

  • src/compiler/preprocessor/new/DirectiveParser.h: Added.

(pp):
(DirectiveParser):
(ConditionalBlock):
(pp::DirectiveParser::ConditionalBlock::ConditionalBlock):

  • src/compiler/preprocessor/new/ExpressionParser.cpp: Added.

(yysyntax_error):
(yylex):
(yyerror):
(pp):
(pp::ExpressionParser::ExpressionParser):
(pp::ExpressionParser::parse):

  • src/compiler/preprocessor/new/ExpressionParser.h: Added.

(pp):
(ExpressionParser):

  • src/compiler/preprocessor/new/ExpressionParser.y: Added.
  • src/compiler/preprocessor/new/Input.cpp: Added property allow-tabs.

(pp::Input::Input):
(pp::Input::read):

  • src/compiler/preprocessor/new/Input.h: Added property allow-tabs.

(pp):
(Input):
(pp::Input::count):
(pp::Input::string):
(pp::Input::length):
(Location):
(pp::Input::Location::Location):
(pp::Input::readLoc):

  • src/compiler/preprocessor/new/Lexer.cpp: Added.

(pp):
(pp::Lexer::~Lexer):

  • src/compiler/preprocessor/new/Lexer.h: Added.

(pp):
(Lexer):

  • src/compiler/preprocessor/new/Macro.cpp: Added property allow-tabs.

(pp::Macro::equals):

  • src/compiler/preprocessor/new/Macro.h: Added property allow-tabs.

(pp):
(pp::Macro::Macro):
(Macro):

  • src/compiler/preprocessor/new/MacroExpander.cpp: Added.

(pp):
(TokenLexer):
(pp::TokenLexer::TokenLexer):
(pp::TokenLexer::lex):
(pp::MacroExpander::MacroExpander):
(pp::MacroExpander::~MacroExpander):
(pp::MacroExpander::lex):
(pp::MacroExpander::getToken):
(pp::MacroExpander::ungetToken):
(pp::MacroExpander::isNextTokenLeftParen):
(pp::MacroExpander::pushMacro):
(pp::MacroExpander::popMacro):
(pp::MacroExpander::expandMacro):
(pp::MacroExpander::collectMacroArgs):
(pp::MacroExpander::replaceMacroParams):

  • src/compiler/preprocessor/new/MacroExpander.h: Added.

(pp):
(MacroExpander):
(MacroContext):
(pp::MacroExpander::MacroContext::MacroContext):
(pp::MacroExpander::MacroContext::empty):
(pp::MacroExpander::MacroContext::get):
(pp::MacroExpander::MacroContext::unget):

  • src/compiler/preprocessor/new/Preprocessor.cpp: Added property allow-tabs.

(PreprocessorImpl):
(pp::PreprocessorImpl::PreprocessorImpl):
(pp):
(pp::Preprocessor::Preprocessor):
(pp::Preprocessor::~Preprocessor):
(pp::Preprocessor::init):
(pp::Preprocessor::predefineMacro):
(pp::Preprocessor::lex):

  • src/compiler/preprocessor/new/Preprocessor.h: Added property allow-tabs.

(pp):
(Preprocessor):

  • src/compiler/preprocessor/new/SourceLocation.h: Added.

(pp):
(pp::SourceLocation::SourceLocation):
(SourceLocation):
(pp::SourceLocation::equals):
(pp::operator==):
(pp::operator!=):

  • src/compiler/preprocessor/new/Token.cpp: Added property allow-tabs.

(pp::Token::reset):
(pp::Token::equals):
(pp::Token::setAtStartOfLine):
(pp::Token::setHasLeadingSpace):
(pp):
(pp::Token::setExpansionDisabled):
(pp::operator<<):

  • src/compiler/preprocessor/new/Token.h: Added property allow-tabs.

(pp::Token::Token):
(Token):
(pp::Token::atStartOfLine):
(pp::Token::hasLeadingSpace):
(pp::Token::expansionDisabled):
(pp::operator==):
(pp):
(pp::operator!=):

  • src/compiler/preprocessor/new/Tokenizer.cpp: Added.

(yy_buffer_state):
(yy_trans_info):
(yyguts_t):
(yy_get_previous_state):
(yy_try_NUL_trans):
(input):
(pprestart):
(pp_switch_to_buffer):
(pp_load_buffer_state):
(pp_create_buffer):
(pp_delete_buffer):
(pp_init_buffer):
(pp_flush_buffer):
(pppush_buffer_state):
(pppop_buffer_state):
(ppensure_buffer_stack):
(pp_scan_buffer):
(pp_scan_string):
(pp_scan_bytes):
(yy_fatal_error):
(ppget_extra):
(ppget_lineno):
(ppget_column):
(ppget_in):
(ppget_out):
(ppget_leng):
(ppget_text):
(ppset_extra):
(ppset_lineno):
(ppset_column):
(ppset_in):
(ppset_out):
(ppget_debug):
(ppset_debug):
(ppget_lval):
(ppset_lval):
(ppget_lloc):
(ppset_lloc):
(pplex_init):
(pplex_init_extra):
(yy_init_globals):
(pplex_destroy):
(yy_flex_strncpy):
(yy_flex_strlen):
(ppalloc):
(pprealloc):
(ppfree):
(pp):
(pp::Tokenizer::Tokenizer):
(pp::Tokenizer::~Tokenizer):
(pp::Tokenizer::init):
(pp::Tokenizer::setFileNumber):
(pp::Tokenizer::setLineNumber):
(pp::Tokenizer::lex):
(pp::Tokenizer::initScanner):
(pp::Tokenizer::destroyScanner):

  • src/compiler/preprocessor/new/Tokenizer.h: Added.

(pp):
(Tokenizer):
(Context):

  • src/compiler/preprocessor/new/Tokenizer.l: Added.
  • src/compiler/preprocessor/new/generate_parser.sh: Added property allow-tabs.
  • src/compiler/preprocessor/new/pp.l: Removed.
  • src/compiler/preprocessor/new/pp.y: Removed.
  • src/compiler/preprocessor/new/pp_lex.cpp: Removed.
  • src/compiler/preprocessor/new/pp_tab.cpp: Removed.
  • src/compiler/preprocessor/new/pp_tab.h: Removed.
  • src/compiler/preprocessor/new/pp_utils.h: Added.
  • src/compiler/preprocessor/new/preprocessor.vcproj: Added.
  • src/compiler/preprocessor/new/stl_utils.h: Removed.
  • src/compiler/preprocessor/new/token_type.h: Removed.
  • src/compiler/preprocessor/preprocess.h:
  • src/compiler/preprocessor/scanner.c:

(InitScannerInput):

  • src/compiler/preprocessor/scanner.h:
  • src/compiler/preprocessor/symbols.h:
  • src/compiler/preprocessor/tokens.c:

(ReadToken):
(DumpTokenStream):

  • src/compiler/preprocessor/tokens.h:
  • src/compiler/timing: Added.
  • src/compiler/timing/RestrictFragmentShaderTiming.cpp: Added.

(RestrictFragmentShaderTiming::RestrictFragmentShaderTiming):
(RestrictFragmentShaderTiming::enforceRestrictions):
(RestrictFragmentShaderTiming::validateUserDefinedFunctionCallUsage):
(RestrictFragmentShaderTiming::beginError):
(RestrictFragmentShaderTiming::isSamplingOp):
(RestrictFragmentShaderTiming::visitArgument):
(RestrictFragmentShaderTiming::visitSelection):
(RestrictFragmentShaderTiming::visitLoop):
(RestrictFragmentShaderTiming::visitLogicalOp):

  • src/compiler/timing/RestrictFragmentShaderTiming.h: Added.

(RestrictFragmentShaderTiming):
(RestrictFragmentShaderTiming::numErrors):

  • src/compiler/timing/RestrictVertexShaderTiming.cpp: Added.

(RestrictVertexShaderTiming::visitSymbol):

  • src/compiler/timing/RestrictVertexShaderTiming.h: Added.

(RestrictVertexShaderTiming):
(RestrictVertexShaderTiming::RestrictVertexShaderTiming):
(RestrictVertexShaderTiming::enforceRestrictions):
(RestrictVertexShaderTiming::numErrors):

  • src/libEGL/Display.cpp:

(egl):
(egl::Display::getDepthTextureSupport):
(egl::Display::getTexturePool):

  • src/libEGL/Display.h:

(Display):

  • src/libEGL/Surface.cpp:

(egl::Surface::Surface):
(egl::Surface::release):
(egl::Surface::resetSwapChain):
(egl::Surface::swapRect):
(egl):
(egl::Surface::swap):
(egl::Surface::postSubBuffer):

  • src/libEGL/Surface.h:

(Surface):

  • src/libEGL/libEGL.cpp:
  • src/libGLESv2/Context.cpp:

(gl::Context::makeCurrent):
(gl::Context::markDxUniformsDirty):
(gl):
(gl::Context::getIntegerv):
(gl::Context::getQueryParameterInfo):
(gl::Context::applyRenderTarget):
(gl::Context::applyState):
(gl::Context::applyShaders):
(gl::Context::applyTextures):
(gl::Context::readPixels):
(gl::Context::clear):
(gl::Context::drawArrays):
(gl::Context::drawElements):
(gl::Context::supportsDepthTextures):
(gl::Context::initExtensionString):
(gl::Context::blitFramebuffer):
(gl::VertexDeclarationCache::applyDeclaration):

  • src/libGLESv2/Context.h:

(Context):

  • src/libGLESv2/Framebuffer.cpp:

(gl::Framebuffer::~Framebuffer):
(gl):
(gl::Framebuffer::getNullColorbuffer):
(gl::Framebuffer::completeness):

  • src/libGLESv2/Framebuffer.h:

(Framebuffer):

  • src/libGLESv2/Program.cpp:

(gl):
(gl::AttributeBindings::AttributeBindings):
(gl::AttributeBindings::~AttributeBindings):
(gl::InfoLog::InfoLog):
(gl::InfoLog::~InfoLog):
(gl::InfoLog::getLength):
(gl::InfoLog::getLog):
(gl::InfoLog::appendSanitized):
(gl::InfoLog::append):
(gl::InfoLog::reset):
(gl::Program::Program):
(gl::Program::~Program):
(gl::Program::attachShader):
(gl::Program::detachShader):
(gl::Program::getAttachedShadersCount):
(gl::AttributeBindings::bindAttributeLocation):
(gl::Program::bindAttributeLocation):
(gl::Program::link):
(gl::AttributeBindings::getAttributeBinding):
(gl::Program::unlink):
(gl::Program::getProgramBinary):
(gl::Program::setProgramBinary):
(gl::Program::getInfoLogLength):
(gl::Program::getInfoLog):
(gl::Program::getActiveAttribute):
(gl::Program::getActiveAttributeCount):
(gl::Program::getActiveAttributeMaxLength):
(gl::Program::getActiveUniform):
(gl::Program::getActiveUniformCount):
(gl::Program::getActiveUniformMaxLength):
(gl::Program::validate):
(gl::Program::isValidated):

  • src/libGLESv2/Program.h:

(gl):
(AttributeBindings):
(InfoLog):
(Program):

  • src/libGLESv2/ProgramBinary.cpp: Added.

(gl::str):
(gl):
(gl::Uniform::Uniform):
(gl::Uniform::~Uniform):
(gl::Uniform::isArray):
(gl::UniformLocation::UniformLocation):
(gl::ProgramBinary::ProgramBinary):
(gl::ProgramBinary::~ProgramBinary):
(gl::ProgramBinary::getPixelShader):
(gl::ProgramBinary::getVertexShader):
(gl::ProgramBinary::getAttributeLocation):
(gl::ProgramBinary::getSemanticIndex):
(gl::ProgramBinary::getUsedSamplerRange):
(gl::ProgramBinary::getSamplerMapping):
(gl::ProgramBinary::getSamplerTextureType):
(gl::ProgramBinary::getUniformLocation):
(gl::ProgramBinary::setUniform1fv):
(gl::ProgramBinary::setUniform2fv):
(gl::ProgramBinary::setUniform3fv):
(gl::ProgramBinary::setUniform4fv):
(gl::transposeMatrix):
(gl::ProgramBinary::setUniformMatrix2fv):
(gl::ProgramBinary::setUniformMatrix3fv):
(gl::ProgramBinary::setUniformMatrix4fv):
(gl::ProgramBinary::setUniform1iv):
(gl::ProgramBinary::setUniform2iv):
(gl::ProgramBinary::setUniform3iv):
(gl::ProgramBinary::setUniform4iv):
(gl::ProgramBinary::getUniformfv):
(gl::ProgramBinary::getUniformiv):
(gl::ProgramBinary::dirtyAllUniforms):
(gl::ProgramBinary::applyUniforms):
(gl::ProgramBinary::compileToBinary):
(gl::ProgramBinary::packVaryings):
(gl::ProgramBinary::linkVaryings):
(gl::ProgramBinary::link):
(gl::ProgramBinary::linkAttributes):
(gl::ProgramBinary::linkUniforms):
(gl::ProgramBinary::defineUniform):
(gl::ProgramBinary::createUniform):
(gl::ProgramBinary::decorateAttribute):
(gl::ProgramBinary::undecorateUniform):
(gl::ProgramBinary::applyUniformnbv):
(gl::ProgramBinary::applyUniformnfv):
(gl::ProgramBinary::applyUniform1iv):
(gl::ProgramBinary::applyUniform2iv):
(gl::ProgramBinary::applyUniform3iv):
(gl::ProgramBinary::applyUniform4iv):
(gl::ProgramBinary::applyUniformniv):
(gl::ProgramBinary::isValidated):
(gl::ProgramBinary::getActiveAttribute):
(gl::ProgramBinary::getActiveAttributeCount):
(gl::ProgramBinary::getActiveAttributeMaxLength):
(gl::ProgramBinary::getActiveUniform):
(gl::ProgramBinary::getActiveUniformCount):
(gl::ProgramBinary::getActiveUniformMaxLength):
(gl::ProgramBinary::validate):
(gl::ProgramBinary::validateSamplers):
(gl::ProgramBinary::getDxDepthRangeLocation):
(gl::ProgramBinary::getDxDepthLocation):
(gl::ProgramBinary::getDxCoordLocation):
(gl::ProgramBinary::getDxHalfPixelSizeLocation):
(gl::ProgramBinary::getDxFrontCCWLocation):
(gl::ProgramBinary::getDxPointsOrLinesLocation):

  • src/libGLESv2/ProgramBinary.h: Added.

(gl):
(Uniform):
(gl::Uniform::RegisterInfo::RegisterInfo):
(RegisterInfo):
(gl::Uniform::RegisterInfo::set):
(UniformLocation):
(ProgramBinary):
(Sampler):

  • src/libGLESv2/Renderbuffer.cpp:

(gl):
(gl::RenderbufferTexture2D::RenderbufferTexture2D):
(gl::RenderbufferTexture2D::~RenderbufferTexture2D):
(gl::RenderbufferTexture2D::addProxyRef):
(gl::RenderbufferTexture2D::releaseProxy):
(gl::RenderbufferTexture2D::getRenderTarget):
(gl::RenderbufferTexture2D::getDepthStencil):
(gl::RenderbufferTexture2D::getWidth):
(gl::RenderbufferTexture2D::getHeight):
(gl::RenderbufferTexture2D::getInternalFormat):
(gl::RenderbufferTexture2D::getD3DFormat):
(gl::RenderbufferTexture2D::getSamples):
(gl::RenderbufferTexture2D::getSerial):
(gl::RenderbufferTextureCubeMap::RenderbufferTextureCubeMap):
(gl::RenderbufferTextureCubeMap::~RenderbufferTextureCubeMap):
(gl::RenderbufferTextureCubeMap::addProxyRef):
(gl::RenderbufferTextureCubeMap::releaseProxy):
(gl::RenderbufferTextureCubeMap::getRenderTarget):
(gl::RenderbufferTextureCubeMap::getDepthStencil):
(gl::RenderbufferTextureCubeMap::getWidth):
(gl::RenderbufferTextureCubeMap::getHeight):
(gl::RenderbufferTextureCubeMap::getInternalFormat):
(gl::RenderbufferTextureCubeMap::getD3DFormat):
(gl::RenderbufferTextureCubeMap::getSamples):
(gl::RenderbufferTextureCubeMap::getSerial):
(gl::DepthStencilbuffer::getDepthStencil):

  • src/libGLESv2/Renderbuffer.h:

(gl):
(RenderbufferTexture2D):
(RenderbufferTextureCubeMap):

  • src/libGLESv2/Shader.cpp:

(gl::Shader::getInfoLog):
(gl::Shader::getSourceImpl):

  • src/libGLESv2/Shader.h:

(Shader):
(VertexShader):

  • src/libGLESv2/Texture.cpp:

(gl::ConvertTextureFormatType):
(gl::IsTextureFormatRenderable):
(gl::GetTextureUsage):
(gl):
(gl::Image::createSurface):
(gl::Image::updateSurface):
(gl::Image::loadData):
(gl::Image::loadAlphaData):
(gl::Image::loadAlphaDataSSE2):
(gl::Image::loadAlphaFloatData):
(gl::Image::loadAlphaHalfFloatData):
(gl::Image::loadLuminanceData):
(gl::Image::loadLuminanceFloatData):
(gl::Image::loadLuminanceHalfFloatData):
(gl::Image::loadLuminanceAlphaData):
(gl::Image::loadLuminanceAlphaFloatData):
(gl::Image::loadLuminanceAlphaHalfFloatData):
(gl::Image::loadRGBUByteData):
(gl::Image::loadRGB565Data):
(gl::Image::loadRGBFloatData):
(gl::Image::loadRGBHalfFloatData):
(gl::Image::loadRGBAUByteDataSSE2):
(gl::Image::loadRGBAUByteData):
(gl::Image::loadRGBA4444Data):
(gl::Image::loadRGBA5551Data):
(gl::Image::loadRGBAFloatData):
(gl::Image::loadRGBAHalfFloatData):
(gl::Image::loadBGRAData):
(gl::Image::loadCompressedData):
(gl::Image::copy):
(gl::TextureStorage::TextureStorage):
(gl::TextureStorage::isRenderTarget):
(gl::TextureStorage::getUsage):
(gl::Texture::setImage):
(gl::Texture::setCompressedImage):
(gl::Texture::subImage):
(gl::Texture::subImageCompressed):
(gl::TextureStorage2D::TextureStorage2D):
(gl::Texture2D::getInternalFormat):
(gl::Texture2D::getD3DFormat):
(gl::Texture2D::copyImage):
(gl::Texture2D::copySubImage):
(gl::Texture2D::storage):
(gl::Texture2D::isSamplerComplete):
(gl::Texture2D::isCompressed):
(gl::Texture2D::isDepth):
(gl::Texture2D::createTexture):
(gl::Texture2D::convertToRenderTarget):
(gl::Texture2D::getRenderbuffer):
(gl::Texture2D::getRenderTarget):
(gl::Texture2D::getDepthStencil):
(gl::TextureStorageCubeMap::TextureStorageCubeMap):
(gl::TextureCubeMap::getWidth):
(gl::TextureCubeMap::getHeight):
(gl::TextureCubeMap::getInternalFormat):
(gl::TextureCubeMap::getD3DFormat):
(gl::TextureCubeMap::isSamplerComplete):
(gl::TextureCubeMap::isCompressed):
(gl::TextureCubeMap::createTexture):
(gl::TextureCubeMap::convertToRenderTarget):
(gl::TextureCubeMap::copyImage):
(gl::TextureCubeMap::copySubImage):
(gl::TextureCubeMap::storage):
(gl::TextureCubeMap::getRenderbuffer):

  • src/libGLESv2/Texture.h:

(Image):
(TextureStorage):
(Texture):
(TextureStorage2D):
(Texture2D):
(TextureStorageCubeMap):
(TextureCubeMap):

  • src/libGLESv2/VertexDataManager.cpp:

(gl::VertexDataManager::prepareVertexData):

  • src/libGLESv2/libGLESv2.cpp:

(checkTextureFormatType):
(validateSubImageParams2D):
(validateSubImageParamsCube):

  • src/libGLESv2/libGLESv2.vcproj:
  • src/libGLESv2/mathutil.h:

(gl):

  • src/libGLESv2/utilities.cpp:

(gl::IsDepthTexture):
(gl):
(gl::ComputePixelSize):
(gl::ExtractFormat):
(gl::ExtractType):
(es2dx::ConvertCubeFace):
(es2dx::ConvertRenderbufferFormat):
(dx2es::GetStencilSize):
(dx2es::GetDepthSize):
(dx2es::IsDepthTextureFormat):
(dx2es):
(dx2es::IsStencilTextureFormat):
(dx2es::ConvertDepthStencilFormat):

  • src/libGLESv2/utilities.h:

(gl):
(dx2es):

Source/WebCore:

No new tests. No change in behavior.

  • CMakeLists.txt:
  • GNUmakefile.list.am:
  • Target.pri:
12:47 PM Changeset in webkit [122869] by Lucas Forschler
  • 4 edits in trunk/Source

Versioning.

12:40 PM Changeset in webkit [122868] by commit-queue@webkit.org
  • 20 edits in trunk

[EFL] Replace 0 by NULL in public headers documentation
https://bugs.webkit.org/show_bug.cgi?id=91470

Patch by Christophe Dumez <Christophe Dumez> on 2012-07-17
Reviewed by Dirk Pranke.

Source/WebKit/efl:

Use NULL instead of 0 for pointer types in public
C headers.

  • ewk/ewk_contextmenu.h:
  • ewk/ewk_cookies.h:
  • ewk/ewk_frame.h:
  • ewk/ewk_intent.h:
  • ewk/ewk_intent_request.h:
  • ewk/ewk_network.h:
  • ewk/ewk_security_origin.h:
  • ewk/ewk_settings.h:
  • ewk/ewk_view.h:
  • ewk/ewk_window_features.h:

Source/WebKit2:

Use NULL instead of 0 for pointer types in public
C headers.

  • UIProcess/API/efl/ewk_intent.h:
  • UIProcess/API/efl/ewk_intent_service.h:
  • UIProcess/API/efl/ewk_url_request.h:
  • UIProcess/API/efl/ewk_url_response.h:
  • UIProcess/API/efl/ewk_view.h:
  • UIProcess/API/efl/ewk_web_resource.h:

Tools:

Fix style checking to properly detect C headers as C
files. Without this change, the style script would
complain if we use NULL (instead of 0 / null) in C
headers.

  • Scripts/webkitpy/style/checkers/cpp.py:

(_FileState.init):
(_FileState.is_c):
(_FileState.is_c_or_objective_c):

12:17 PM Changeset in webkit [122867] by schenney@chromium.org
  • 2 edits in trunk/Source/WebCore

Crash in SVGStopElement::stopColorIncludingOpacity
https://bugs.webkit.org/show_bug.cgi?id=90814

Reviewed by Dirk Schulze.

No new tests as there should be no change in functionality.

  • svg/SVGStopElement.cpp:

(WebCore::SVGStopElement::stopColorIncludingOpacity): Added a check for null
renderer and style. It is hard to see how this is happening because
the code is only invoked if the parent gradient has a renderer, and it seems
the stop element should always have a renderer when the parent has a renderer.
Still, it obviously can happen and does so frequently enough to generate multiple
Chromium crash reports per day. The fix is marked with a FIXME, as we expect to
remove this code entirely soon.

12:01 PM Changeset in webkit [122866] by wangxianzhu@chromium.org
  • 6 edits in trunk/Tools

[chromium] remove --test-shell support from DRT
https://bugs.webkit.org/show_bug.cgi?id=86927

Reviewed by Adam Barth.

Now no one use --test-shell. All of us use the standard DRT mode.

  • DumpRenderTree/chromium/DumpRenderTree.cpp: Removed support of --test-shell and --pixel-tests=filename options. (--pixel-tests without '=' is kept for DRT mode.)

(runTest):
(main):

  • DumpRenderTree/chromium/TestEventPrinter.cpp:

(TestEventPrinter::TestEventPrinter):
(TestEventPrinter::~TestEventPrinter):
(TestEventPrinter::handleTestHeader):
(TestEventPrinter::handleTimedOut):
(TestEventPrinter::handleTextHeader):
(TestEventPrinter::handleTextFooter):
(TestEventPrinter::handleAudioHeader):
(TestEventPrinter::handleAudioFooter):
(TestEventPrinter::handleImage): Removed the unused filename parameter.
(TestEventPrinter::handleTestFooter):

  • DumpRenderTree/chromium/TestEventPrinter.h:

(TestEventPrinter): Made it a concrete class because we have only one implementation.

  • DumpRenderTree/chromium/TestShell.cpp:

(TestShell::TestShell):
(TestShell::initialize):
(TestShell::dumpImage):

  • DumpRenderTree/chromium/TestShell.h:

(TestParams): Removed pixelFileName field.
(TestShell):

11:57 AM EFLWebKitCodingStyle edited by Christophe Dumez
(diff)
11:50 AM Changeset in webkit [122865] by danakj@chromium.org
  • 2 edits
    4 copies in branches/chromium/1180

Merge 122224 - Input type=range issue with events not being raised when value set in js
https://bugs.webkit.org/show_bug.cgi?id=84674

Source/WebCore:

Fix dispatching of change and click events for the input slider.
Prior to the fix, change events were not fired if the new value
matched the value at last change notification based on expected
behavior for text fields. Clicks were not fired if the thumb
element was repositioned under the cursor on mouse down.

Patch by Kevin Ellis <kevers@chromium.org> on 2012-07-10
Reviewed by Kent Tamura.

Tests: fast/events/click-range-slider.html

fast/events/onchange-range-slider.html

  • html/shadow/SliderThumbElement.cpp:

(WebCore::SliderThumbElement::setPositionFromPoint):

  • page/EventHandler.cpp:

(WebCore::EventHandler::handleMouseReleaseEvent):

LayoutTests:

Ensure that click and change events are properly triggered for range
sliders. Prior to the fix, change events were not fired if the new
value matched the value at last change notification based on expected
behavior for text fields. Clicks were not fired if the thumb element
was positioned under the cursor on mouse down.

Patch by Kevin Ellis <kevers@chromium.org> on 2012-07-10
Reviewed by Kent Tamura.

  • fast/events/click-range-slider-expected.txt: Added.
  • fast/events/click-range-slider.html: Added.
  • fast/events/onchange-range-slider-expected.txt: Added.
  • fast/events/onchange-range-slider.html: Added.

TBR=commit-queue@webkit.org
Review URL: https://chromiumcodereview.appspot.com/10783036

11:44 AM Changeset in webkit [122864] by ojan@chromium.org
  • 4 edits in trunk/LayoutTests

results.html should handle flaky tests differently
https://bugs.webkit.org/show_bug.cgi?id=90892

Reviewed by Dirk Pranke.

-Put tests that failed both runs into the main failures table.
-Put flaky passes below the list of timeout tests.

  • fast/harness/resources/results-test.js:
  • fast/harness/results-expected.txt:
  • fast/harness/results.html:
11:42 AM Changeset in webkit [122863] by ojan@chromium.org
  • 4 edits in trunk/LayoutTests

results.html doesn't hide the right data when not showing expected failures
https://bugs.webkit.org/show_bug.cgi?id=90889

Reviewed by Dirk Pranke.

-Properly hide test lists that have no unexpected items.
-Show the correct counts of tests in each test list when only showing unexpected.
-Always show tests with stderr output.
-Put tests with expected crash/timeout in the crash/timeout lists.

  • fast/harness/resources/results-test.js:
  • fast/harness/results.html:
11:27 AM Changeset in webkit [122862] by tony@chromium.org
  • 2 edits in trunk/LayoutTests

[chromium] Unreviewed, remove timeout lines for tests on snowleopard that no longer apply.

  • platform/chromium/TestExpectations:
11:22 AM Changeset in webkit [122861] by eae@chromium.org
  • 9 edits
    2 adds in trunk

Incorrect offset used for scrollWidth/Height calculation
https://bugs.webkit.org/show_bug.cgi?id=91461

Reviewed by Eric Seidel.

Source/WebCore:

Due to a different offset being used to calculate the scrollWidth/Height
and pixelSnappedClientWidth/Height the scroll value can be off by one in
same cases. This can causes scrollbars to appear even when there is no
overflow.

Test: fast/sub-pixel/block-with-margin-overflow.html

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::scrollWidth):
Change location offset passed to snapSizeToPixel to include x() to match
offset used by pixelSnappedClientWidth.

(WebCore::RenderBox::scrollHeight):
Change location offset passed to snapSizeToPixel to include y() to match
offset used by pixelSnappedClientHeight.

  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::clampScrollOffset):
Change calculation to use pixelSnappedClientWidth/Height as it is
subtracted from the pixel snapped scrollWidth/Height values.

(WebCore::RenderLayer::scrollWidth):
(WebCore::RenderLayer::scrollHeight):
Change RenderLayer versions of scrollWidth/Height to include x()/y() as
per the RenderBox versions.

LayoutTests:

Add new test ensuring that a block that shouldn't have overflow doesn't
have scrollbars.

  • fast/sub-pixel/block-with-margin-overflow-expected.html: Added.
  • fast/sub-pixel/block-with-margin-overflow.html: Added.
  • platform/chromium-win/fast/block/float/026-expected.txt:
  • platform/chromium-win/fast/block/float/028-expected.txt:
  • platform/chromium-win/fast/block/float/overhanging-tall-block-expected.txt:
  • platform/mac/fast/multicol/shrink-to-column-height-for-pagination-expected.png:
  • platform/mac/fast/multicol/shrink-to-column-height-for-pagination-expected.txt:

Update test expectations that incorrectly had overflow.

11:15 AM Changeset in webkit [122860] by tony@chromium.org
  • 2 edits in trunk/LayoutTests

[chromium] Unreviewed. Remove duplicate lines added in r122857.

  • platform/chromium/TestExpectations:
11:11 AM Changeset in webkit [122859] by tony@chromium.org
  • 2 edits in trunk/LayoutTests

[chromium] Unreviewed, stop marking all editing tests as slow.
The cause for the flakiness was determined to be hardware related.

  • platform/chromium/TestExpectations:
11:09 AM Changeset in webkit [122858] by aestes@apple.com
  • 2 edits in trunk/LayoutTests

[Mac] REGRESSION (r122494): Running platform/mac/plugins/root-object-premature-delete-crash.html results in a crash
https://bugs.webkit.org/show_bug.cgi?id=91505

Unreviewed.

  • platform/mac/TestExpectations: Mark the test as expected to crash.
11:07 AM Changeset in webkit [122857] by tony@chromium.org
  • 27 edits
    4 copies
    1 add
    4 deletes in trunk/LayoutTests

[chromium] Unreviewed gardening. These tests are in chromium's test_expectations.txt and can be rebaselined (skia change in r4600).

  • platform/chromium-linux-x86/svg/W3C-SVG-1.1/paths-data-12-t-expected.png: Removed.
  • platform/chromium-linux-x86/svg/W3C-SVG-1.1/paths-data-12-t-expected.txt: Removed.
  • platform/chromium-linux-x86/svg/hixie/perf/001-expected.png: Removed.
  • platform/chromium-linux-x86/svg/hixie/perf/001-expected.txt:
  • platform/chromium-linux-x86/svg/hixie/perf/002-expected.png: Removed.
  • platform/chromium-linux-x86/svg/hixie/perf/002-expected.txt:
  • platform/chromium-linux/svg/W3C-SVG-1.1/paths-data-12-t-expected.png:
  • platform/chromium-linux/svg/as-background-image/svg-as-background-5-expected.png:
  • platform/chromium-linux/svg/hixie/perf/001-expected.png:
  • platform/chromium-linux/svg/hixie/perf/001-expected.txt:
  • platform/chromium-linux/svg/hixie/perf/002-expected.png:
  • platform/chromium-linux/svg/hixie/perf/002-expected.txt:
  • platform/chromium-mac-snowleopard/svg/as-background-image/svg-as-background-5-expected.png:
  • platform/chromium-mac-snowleopard/svg/hixie/perf/001-expected.png:
  • platform/chromium-mac-snowleopard/svg/hixie/perf/001-expected.txt: Copied from LayoutTests/platform/chromium-mac/svg/hixie/perf/001-expected.txt.
  • platform/chromium-mac-snowleopard/svg/hixie/perf/002-expected.png:
  • platform/chromium-mac-snowleopard/svg/hixie/perf/002-expected.txt: Copied from LayoutTests/platform/chromium-mac/svg/hixie/perf/002-expected.txt.
  • platform/chromium-mac/svg/W3C-SVG-1.1/paths-data-12-t-expected.png:
  • platform/chromium-mac/svg/W3C-SVG-1.1/paths-data-12-t-expected.txt:
  • platform/chromium-mac/svg/as-background-image/svg-as-background-5-expected.png:
  • platform/chromium-mac/svg/hixie/perf/001-expected.png:
  • platform/chromium-mac/svg/hixie/perf/001-expected.txt:
  • platform/chromium-mac/svg/hixie/perf/002-expected.png:
  • platform/chromium-mac/svg/hixie/perf/002-expected.txt:
  • platform/chromium-win-xp/svg/hixie/perf/001-expected.txt: Copied from LayoutTests/platform/chromium-win/svg/hixie/perf/001-expected.txt.
  • platform/chromium-win-xp/svg/hixie/perf/002-expected.txt: Copied from LayoutTests/platform/chromium-win/svg/hixie/perf/002-expected.txt.
  • platform/chromium-win/svg/W3C-SVG-1.1/paths-data-12-t-expected.png:
  • platform/chromium-win/svg/W3C-SVG-1.1/paths-data-12-t-expected.txt:
  • platform/chromium-win/svg/as-background-image/svg-as-background-5-expected.png:
  • platform/chromium-win/svg/hixie/perf/001-expected.png:
  • platform/chromium-win/svg/hixie/perf/001-expected.txt:
  • platform/chromium-win/svg/hixie/perf/002-expected.png:
  • platform/chromium-win/svg/hixie/perf/002-expected.txt:
  • platform/chromium/TestExpectations:
11:01 AM Changeset in webkit [122856] by Lucas Forschler
  • 1 copy in tags/Safari-537.1

New Tag.

10:42 AM Changeset in webkit [122855] by wangxianzhu@chromium.org
  • 3 edits in trunk/Tools

remove ChromiumDriver from NRWT
https://bugs.webkit.org/show_bug.cgi?id=88478

Now WebKitDriver has replaced ChromiumDriver since test_shell mode is deperecated.

Reviewed by Dirk Pranke.

  • Scripts/webkitpy/layout_tests/port/chromium.py: Removed ChromiumDriver code.

(ChromiumPort._driver_class): Removed. WebKitPort._driver_class() will be used.

  • Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
10:40 AM Changeset in webkit [122854] by enne@google.com
  • 1 edit in branches/chromium/1180/Source/WebCore/page/scrolling/chromium/ScrollingCoordinatorChromium.cpp

Merge 122791 - [chromium] Turn off ScrollbarLayerChromium for Windows due to bad alpha values
https://bugs.webkit.org/show_bug.cgi?id=91438

Reviewed by Kenneth Russell.

r120509 turned on blending for scrollbar thumbs. Unfortunately for
Windows XP scrollbar thumbs, their alpha channel is bogus and so the
thumb ends up being completely transparent. This should ultimately be
fixed in Chromium theme code, but in the meantime this patch turns
off the use of ScrollbarLayerChromium.

This change makes Windows scrollbars fall back to using normal
ContentLayerChromiums and being painted all in one layer on the main
thread rather than being painted separately and composited on the
compositor thread.

  • page/scrolling/chromium/ScrollingCoordinatorChromium.cpp:

(WebCore::createScrollbarLayer):

TBR=enne@google.com
Review URL: https://chromiumcodereview.appspot.com/10704248

10:35 AM Changeset in webkit [122853] by kareng@chromium.org
  • 4 edits in branches/chromium/1180

Merge 122552 - REGRESSION(r119948): [Forms] Spin button Up/Down actions make value to zero for input type "number" when step mismatched
https://bugs.webkit.org/show_bug.cgi?id=91197

Reviewed by Kent Tamura.

Source/WebCore:

This patch fixes implementation of Decimal::ceiling() and floor().
They return wrong value for small fractional numbers.

The bug is occurred when:

  • Step-able input type, e.g. number, date, datetime, and so on.
  • Current value is step mismatched
  • Current value is smaller than step
  • Step up/down by spin button

because spin button up/down actions are implemented in InputType::setpUpFromRenderer
which calls Decimal::ceiling() and floor() for step mismatched case.

Tests: fast/forms/number/number-stepup-stepdown-from-renderer.html: Added test cases

WebKit/chromium/tests/DecimalTest.cpp: Added test cases

  • platform/Decimal.cpp:

(WebCore::Decimal::ceiling): Changed to return 1 for positive small fractional number.
(WebCore::Decimal::floor): Changed to return -1 for negative small fractional number.

Source/WebKit/chromium:

This patch adds test cases for Decimal::ceiling() and floor() of
positive/negative small fractional numbers.

  • tests/DecimalTest.cpp:

(TEST_F):

LayoutTests:

This patch adds new test cases.

  • fast/forms/number/number-stepup-stepdown-from-renderer-expected.txt: Updated for new test cases.
  • fast/forms/number/number-stepup-stepdown-from-renderer.html: Added new test cases.

TBR=yosin@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10786036

10:32 AM Changeset in webkit [122852] by noam.rosenthal@nokia.com
  • 2 edits in trunk/Tools

Unreviewed. Add QtGraphics, TextureMapper and OpenGL to watchlist.

  • Scripts/webkitpy/common/config/watchlist:
10:29 AM Changeset in webkit [122851] by tony@chromium.org
  • 2 edits in trunk/Source/WebKit/chromium

Unreviewed. Rolled DEPS.

  • DEPS:
10:19 AM Changeset in webkit [122850] by vsevik@chromium.org
  • 5 edits in trunk/Tools

Unreviewed, rolling out r122828.
http://trac.webkit.org/changeset/122828
https://bugs.webkit.org/show_bug.cgi?id=91516

DumpRenderTree crashes after printing test results. (Requested
by vsevik on #webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2012-07-17

  • DumpRenderTree/chromium/TestRunner/TestInterfaces.cpp:

(TestInterfaces::TestInterfaces):
(TestInterfaces::~TestInterfaces):
(TestInterfaces::bindTo):
(TestInterfaces::resetAll):

  • DumpRenderTree/chromium/TestRunner/TestInterfaces.h:

(TestInterfaces):

  • DumpRenderTree/chromium/TestShell.cpp:

(TestShell::initialize):
(TestShell::createMainWindow):
(TestShell::~TestShell):
(TestShell::resetTestController):
(TestShell::bindJSObjectsToWindow):

  • DumpRenderTree/chromium/TestShell.h:

(TestShell::accessibilityController):
(TestShell):

10:14 AM Changeset in webkit [122849] by tony@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed gardening. Remove tests that have been passing consistently according to the flakiness dashboard.

  • platform/chromium/TestExpectations:
9:54 AM Changeset in webkit [122848] by commit-queue@webkit.org
  • 6 edits in trunk/Source/WebCore

Rename CSS Exclusions CSSWrapShape class properties to match Exclusion shape function parameters
https://bugs.webkit.org/show_bug.cgi?id=89669

Patch by Hans Muller <hmuller@adobe.com> on 2012-07-17
Reviewed by Dirk Schulze.

Renamed left,top properties in the exclusion shape types to better match the specification
http://dev.w3.org/csswg/css3-exclusions/#shapes-from-svg-syntax:

WrapShapeRectangle, CSSWrapShapeRectangle - left,top should be x, y
WrapShapeCircle, CSSWrapShapeCircle - left,top should be centerX, centerY
WrapShapeEllipse, CSSWrapShapeEllipse - left,top should be centerX, centerY

No new tests or tests revisions were needed, the existing tests cover these APIs.

  • css/CSSParser.cpp:

(WebCore::CSSParser::parseExclusionShapeRectangle):
(WebCore::CSSParser::parseExclusionShapeCircle):
(WebCore::CSSParser::parseExclusionShapeEllipse):

  • css/CSSWrapShapes.cpp:

(WebCore::CSSWrapShapeRectangle::cssText):
(WebCore::CSSWrapShapeCircle::cssText):
(WebCore::CSSWrapShapeEllipse::cssText):

  • css/CSSWrapShapes.h:

(WebCore::CSSWrapShapeRectangle::x):
(WebCore::CSSWrapShapeRectangle::y):
(WebCore::CSSWrapShapeRectangle::setX):
(WebCore::CSSWrapShapeRectangle::setY):
(CSSWrapShapeRectangle):
(WebCore::CSSWrapShapeCircle::centerX):
(WebCore::CSSWrapShapeCircle::centerY):
(WebCore::CSSWrapShapeCircle::setCenterX):
(WebCore::CSSWrapShapeCircle::setCenterY):
(CSSWrapShapeCircle):
(WebCore::CSSWrapShapeEllipse::centerX):
(WebCore::CSSWrapShapeEllipse::centerY):
(WebCore::CSSWrapShapeEllipse::setCenterX):
(WebCore::CSSWrapShapeEllipse::setCenterY):
(CSSWrapShapeEllipse):

  • css/WrapShapeFunctions.cpp:

(WebCore::valueForWrapShape):
(WebCore::wrapShapeForValue):

  • rendering/style/WrapShapes.h:

(WebCore::WrapShapeRectangle::x):
(WebCore::WrapShapeRectangle::y):
(WebCore::WrapShapeRectangle::setX):
(WebCore::WrapShapeRectangle::setY):
(WrapShapeRectangle):
(WebCore::WrapShapeCircle::centerX):
(WebCore::WrapShapeCircle::centerY):
(WebCore::WrapShapeCircle::setCenterX):
(WebCore::WrapShapeCircle::setCenterY):
(WrapShapeCircle):
(WebCore::WrapShapeEllipse::centerX):
(WebCore::WrapShapeEllipse::centerY):
(WebCore::WrapShapeEllipse::setCenterX):
(WebCore::WrapShapeEllipse::setCenterY):
(WrapShapeEllipse):

9:32 AM Changeset in webkit [122847] by pfeldman@chromium.org
  • 29 edits in trunk

Web Inspector: implement search / replace in source files (behind experiment flag)
https://bugs.webkit.org/show_bug.cgi?id=91394

Reviewed by Vsevolod Vlasov.

Source/WebCore:

This change adds "loop" parameter to the go to next / previous search + adds a UI component
for search / replace of text in the sources panel. New UI component is behind the experiment.

  • English.lproj/localizedStrings.js:
  • inspector/front-end/ConsolePanel.js:

(WebInspector.ConsolePanel.prototype.performSearch):
(WebInspector.ConsolePanel.prototype.jumpToNextSearchResult):
(WebInspector.ConsolePanel.prototype.jumpToPreviousSearchResult):

  • inspector/front-end/ElementsPanel.js:

(WebInspector.ElementsPanel.prototype.jumpToNextSearchResult):
(WebInspector.ElementsPanel.prototype.jumpToPreviousSearchResult):

  • inspector/front-end/ExtensionPanel.js:

(WebInspector.ExtensionPanel.prototype.performSearch):
(WebInspector.ExtensionPanel.prototype.jumpToNextSearchResult):
(WebInspector.ExtensionPanel.prototype.jumpToPreviousSearchResult):

  • inspector/front-end/JavaScriptSourceFrame.js:

(WebInspector.JavaScriptSourceFrame.prototype.afterTextChanged):
(WebInspector.JavaScriptSourceFrame.prototype.beforeTextChanged):

  • inspector/front-end/NetworkPanel.js:

(WebInspector.NetworkLogView.prototype._sortItems):
(WebInspector.NetworkLogView.prototype._updateFilter):
(WebInspector.NetworkLogView.prototype.performSearch):
(WebInspector.NetworkLogView.prototype.jumpToPreviousSearchResult):
(WebInspector.NetworkLogView.prototype.jumpToNextSearchResult):
(WebInspector.NetworkPanel.prototype.performSearch):

  • inspector/front-end/Panel.js:

(WebInspector.Panel.prototype.performSearch):
(WebInspector.Panel.prototype.jumpToNextSearchResult):
(WebInspector.Panel.prototype.jumpToPreviousSearchResult):
(WebInspector.Panel.prototype.canSearchAndReplace):
(WebInspector.Panel.prototype.replaceSelectionWith):
(WebInspector.Panel.prototype.replaceAllWith):

  • inspector/front-end/ProfilesPanel.js:

(WebInspector.ProfilesPanel.prototype.jumpToNextSearchResult):
(WebInspector.ProfilesPanel.prototype.jumpToPreviousSearchResult):

  • inspector/front-end/ResourcesPanel.js:

(WebInspector.ResourcesPanel.prototype.jumpToNextSearchResult):
(WebInspector.ResourcesPanel.prototype.jumpToPreviousSearchResult):

  • inspector/front-end/ScriptsPanel.js:

(WebInspector.ScriptsPanel.prototype.performSearch.finishedCallback):
(WebInspector.ScriptsPanel.prototype.performSearch):
(WebInspector.ScriptsPanel.prototype.jumpToNextSearchResult):
(WebInspector.ScriptsPanel.prototype.jumpToPreviousSearchResult):
(WebInspector.ScriptsPanel.prototype.canSearchAndReplace):
(WebInspector.ScriptsPanel.prototype.replaceSelectionWith):
(WebInspector.ScriptsPanel.prototype.replaceAllWith):

  • inspector/front-end/SearchController.js:

(WebInspector.SearchController):
(WebInspector.SearchController.prototype.cancelSearch):
(WebInspector.SearchController.prototype.disableSearchUntilExplicitAction):
(WebInspector.SearchController.prototype.handleShortcut):
(WebInspector.SearchController.prototype.activePanelChanged.performPanelSearch):
(WebInspector.SearchController.prototype.activePanelChanged):
(WebInspector.SearchController.prototype._updateSearchNavigationButtonState):
(WebInspector.SearchController.prototype.showSearchField):
(WebInspector.SearchController.prototype._onKeyDown):
(WebInspector.SearchController.prototype._onInput):
(WebInspector.SearchController.prototype._onNextButtonSearch):
(WebInspector.SearchController.prototype._onPrevButtonSearch):
(WebInspector.SearchController.prototype._performSearch):
(WebInspector.SearchController.prototype._toggleReplaceVisibility):
(WebInspector.SearchController.prototype._replace):
(WebInspector.SearchController.prototype._replaceAll):

  • inspector/front-end/Settings.js:

(WebInspector.ExperimentsSettings):

  • inspector/front-end/SourceFrame.js:

(WebInspector.SourceFrame.createSearchRegex):
(WebInspector.SourceFrame.prototype.beforeTextChanged):
(WebInspector.SourceFrame.prototype.replaceSearchMatchWith):
(WebInspector.SourceFrame.prototype.replaceAllWith):
(WebInspector.TextEditorDelegateForSourceFrame.prototype.beforeTextChanged):
(WebInspector.TextEditorDelegateForSourceFrame.prototype.commitEditing):

  • inspector/front-end/StylesPanel.js:

(WebInspector.StyleSourceFrame.prototype.afterTextChanged):

  • inspector/front-end/TextEditor.js:

(WebInspector.TextEditor.prototype._commitEditing):

  • inspector/front-end/TextEditorModel.js:

(WebInspector.TextEditorModel.endsWithBracketRegex.):

  • inspector/front-end/inspector.css:

(.search-replace):
(.search-replace:focus):
(.toolbar-search-navigation-controls):
(.toolbar-search-navigation.enabled):
(.toolbar-search):
(.toolbar-search input[type="checkbox"]):
(.toolbar-search button):
(.toolbar-search button:active):
(.toolbar-search-control):
(.toolbar-replace-control):
(.toolbar-search-navigation.enabled:active):
(.toolbar-search-navigation.toolbar-search-navigation-prev):
(.toolbar-search-navigation.toolbar-search-navigation-prev.enabled:active):
(.toolbar-search-navigation.toolbar-search-navigation-next):
(.toolbar-search-navigation.toolbar-search-navigation-next.enabled:active):
(.drawer-header-close-button):
(.inspector-footer):

LayoutTests:

  • inspector/debugger/pause-in-inline-script.html:
  • inspector/debugger/script-formatter.html:
  • inspector/debugger/source-url-comment.html:
  • inspector/editor/indentation.html:
  • inspector/editor/text-editor-line-breaks.html:
  • inspector/editor/text-editor-model.html:
  • inspector/editor/text-editor-undo-redo.html:
8:25 AM Changeset in webkit [122846] by vsevik@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed chromium expectations fix.

  • platform/chromium/TestExpectations:
7:51 AM Changeset in webkit [122845] by commit-queue@webkit.org
  • 26 edits
    7 deletes in trunk

[Qt][V8] Remove the V8 related codepaths and configuration
https://bugs.webkit.org/show_bug.cgi?id=90863

Patch by Gabor Ballabas <gaborb@inf.u-szeged.hu> on 2012-07-17
Reviewed by Simon Hausmann.

.:

  • Source/api.pri:
  • WebKit.pro:

Source/WebCore:

No new tests because no new functionality.

  • DerivedSources.pri:
  • Target.pri:
  • WebCore.gypi:
  • WebCore.pri:
  • bindings/v8/ScriptCachedFrameData.cpp:
  • bindings/v8/ScriptCachedFrameData.h:
  • bindings/v8/ScriptController.cpp:
  • bindings/v8/ScriptController.h:

(ScriptController):

  • bindings/v8/ScriptControllerQt.cpp: Removed.
  • bindings/v8/V8GCController.cpp:

(WebCore::V8GCController::checkMemoryUsage):

  • bindings/v8/custom/V8InspectorFrontendHostCustom.cpp:

(WebCore::histogramEnumeration):
(WebCore::V8InspectorFrontendHost::recordActionTakenCallback):
(WebCore::V8InspectorFrontendHost::recordPanelShownCallback):
(WebCore::V8InspectorFrontendHost::recordSettingChangedCallback):

  • config.h:

Source/WebKit/qt:

  • Api/qwebelement.cpp:

(setupScriptContext):
(QWebElement::evaluateJavaScript):
(convertWebElementVariantToJSValue):
(QtWebElementRuntime::initialize):

  • Api/qwebframe.cpp:

(QWebFramePrivate::didClearWindowObject):
(QWebFramePrivate::addQtSenderToGlobalObject):
(QWebFrame::addToJavaScriptWindowObject):
(QWebFrame::evaluateJavaScript):

  • WebCoreSupport/DumpRenderTreeSupportQt.cpp:

(convertNodeVariantToJSValue):
(QtDRTNodeRuntime::initialize):
(DumpRenderTreeSupportQt::javaScriptObjectsCount):
(DumpRenderTreeSupportQt::garbageCollectorCollect):
(DumpRenderTreeSupportQt::garbageCollectorCollectOnAlternateThread):
(DumpRenderTreeSupportQt::evaluateScriptInIsolatedWorld):
(DumpRenderTreeSupportQt::injectInternalsObject):
(DumpRenderTreeSupportQt::resetInternalsObject):

  • WebCoreSupport/DumpRenderTreeSupportQt.h:
  • WebCoreSupport/FrameLoaderClientQt.cpp:

(WebCore::FrameLoaderClientQt::createDocumentLoader):

  • WebCoreSupport/FrameLoaderClientQt.h:

(FrameLoaderClientQt):

  • v8/ForwardingHeaders/v8-debug.h: Removed.
  • v8/ForwardingHeaders/v8-preparser.h: Removed.
  • v8/ForwardingHeaders/v8-profiler.h: Removed.
  • v8/ForwardingHeaders/v8-testing.h: Removed.
  • v8/ForwardingHeaders/v8.h: Removed.
  • v8/ForwardingHeaders/v8stdint.h: Removed.

Source/WTF:

  • WTF.pri:

Tools:

  • Scripts/build-webkit: Remove --v8 option.
7:45 AM Changeset in webkit [122844] by Carlos Garcia Campos
  • 2 edits in trunk/Source/WebKit2

[GTK] Don't use deprecated soup API in WebKit2APITests/TestResources
https://bugs.webkit.org/show_bug.cgi?id=91496

Reviewed by Martin Robinson.

soup_message_headers_get() is deprecated, use
soup_message_headers_get_one() instead.

  • UIProcess/API/gtk/tests/TestResources.cpp:

(serverCallback):

6:51 AM Changeset in webkit [122843] by commit-queue@webkit.org
  • 3 edits in trunk/LayoutTests

[EFL] Gardening of failing tests and new passes
https://bugs.webkit.org/show_bug.cgi?id=91479

Unreviewed gardening.

Patch by Thiago Marcos P. Santos <thiago.santos@intel.com> on 2012-07-17

  • platform/efl/Skipped:
  • platform/efl/TestExpectations:
6:46 AM Styling Form Controls edited by tkent@chromium.org
(diff)
6:45 AM Changeset in webkit [122842] by commit-queue@webkit.org
  • 25 edits in trunk/LayoutTests

[Qt] fast/box-{shadow,sizing} tests needs update after rebaseline and new testfonts
https://bugs.webkit.org/show_bug.cgi?id=91397

Patch by Bruno de Oliveira Abinader <Bruno de Oliveira Abinader> on 2012-07-17
Reviewed by Simon Hausmann.

Updated expected Qt results for most box-shadow/ and box-sizing layout tests,
after testfonts changes made by bug 85203.

  • platform/qt-5.0/Skipped:
  • platform/qt/fast/box-shadow/basic-shadows-expected.png:
  • platform/qt/fast/box-shadow/basic-shadows-expected.txt:
  • platform/qt/fast/box-shadow/border-radius-big-expected.png:
  • platform/qt/fast/box-shadow/border-radius-big-expected.txt:
  • platform/qt/fast/box-shadow/box-shadow-radius-expected.txt:
  • platform/qt/fast/box-shadow/box-shadow-transformed-expected.png:
  • platform/qt/fast/box-shadow/box-shadow-transformed-expected.txt:
  • platform/qt/fast/box-shadow/inset-box-shadow-radius-expected.png:
  • platform/qt/fast/box-shadow/inset-box-shadow-radius-expected.txt:
  • platform/qt/fast/box-shadow/inset-box-shadows-expected.png:
  • platform/qt/fast/box-shadow/inset-box-shadows-expected.txt:
  • platform/qt/fast/box-shadow/inset-expected.png:
  • platform/qt/fast/box-shadow/inset-expected.txt:
  • platform/qt/fast/box-shadow/scaled-box-shadow-expected.png:
  • platform/qt/fast/box-shadow/scaled-box-shadow-expected.txt:
  • platform/qt/fast/box-shadow/transform-fringing-expected.png:
  • platform/qt/fast/box-shadow/transform-fringing-expected.txt:
  • platform/qt/fast/box-sizing/box-sizing-expected.png:
  • platform/qt/fast/box-sizing/box-sizing-expected.txt:
  • platform/qt/fast/box-sizing/panels-one-expected.png:
  • platform/qt/fast/box-sizing/panels-one-expected.txt:
  • platform/qt/fast/box-sizing/panels-two-expected.png:
  • platform/qt/fast/box-sizing/panels-two-expected.txt:
6:23 AM Changeset in webkit [122841] by zoltan@webkit.org
  • 4 edits in trunk

[QT] REGRESSION (r122720): svg/filters/feSpecularLight-premultiplied.svg
https://bugs.webkit.org/show_bug.cgi?id=91390

Reviewed by Zoltan Herczeg.

Fix the regression by using the proper imagetype conversion in ImageBuffer::platformTransformColorSpace.

The test is unskipped.

Source/WebCore:

  • platform/graphics/qt/ImageBufferQt.cpp:

(WebCore::ImageBuffer::platformTransformColorSpace):

LayoutTests:

  • platform/qt/Skipped:
6:00 AM Drosera edited by wil@marrant.org
(diff)
5:30 AM Changeset in webkit [122840] by Carlos Garcia Campos
  • 2 edits in trunk/Source/WebKit2

[GTK] Fix a typo in WebKit2APITests/TestResources
https://bugs.webkit.org/show_bug.cgi?id=91495

Reviewed by Xan Lopez.

  • UIProcess/API/gtk/tests/TestResources.cpp:

(testWebResourceLoading):
(testWebResourceResponse):
(testWebResourceMimeType):
(testWebResourceActiveURI):

5:21 AM Changeset in webkit [122839] by kkristof@inf.u-szeged.hu
  • 2 edits in trunk/LayoutTests

[Qt] Unreviewed gardening after r122824.

Patch by János Badics <János Badics> on 2012-07-17

  • platform/qt/Skipped:
5:11 AM Changeset in webkit [122838] by commit-queue@webkit.org
  • 43 edits in trunk/Source

Web Inspector: refactor InspectorController::connectFrontend() to accept InspectorFrontendChannel.
https://bugs.webkit.org/show_bug.cgi?id=91196

Patch by Vivek Galatage <vivekgalatage@gmail.com> on 2012-07-17
Reviewed by Pavel Feldman.

Source/WebCore:

Refactoring InspectorClients. InspectorClient::openInspectorFrontend
now returning the InspectorFrontendChannel. Also refactored
InspectorController::connectFrontend() to receive
InspectorFrontendChannel.

No new test as code refactoring done.

  • inspector/InspectorClient.h:

(WebCore):
(InspectorClient):

  • inspector/InspectorController.cpp:

(WebCore::InspectorController::InspectorController):
(WebCore::InspectorController::connectFrontend):
(WebCore::InspectorController::show):
(WebCore::InspectorController::reconnectFrontend):

  • inspector/InspectorController.h:

(WebCore):
(InspectorController):

  • loader/EmptyClients.h:

(WebCore::EmptyInspectorClient::openInspectorFrontend):
(WebCore::EmptyInspectorClient::hideHighlight):

Source/WebKit/blackberry:

Refactoring InspectorClients. InspectorClient::openInspectorFrontend
now returning the InspectorFrontendChannel.

  • Api/WebPage.cpp:

(BlackBerry::WebKit::WebPagePrivate::WebPagePrivate):
(BlackBerry::WebKit::WebPagePrivate::init):
(BlackBerry::WebKit::WebPage::enableWebInspector):

  • Api/WebPage_p.h:

(WebPagePrivate):

  • WebCoreSupport/InspectorClientBlackBerry.cpp:

(WebCore::InspectorClientBlackBerry::openInspectorFrontend):

  • WebCoreSupport/InspectorClientBlackBerry.h:

(InspectorClientBlackBerry):

Source/WebKit/chromium:

Refactoring InspectorClients. InspectorClient::openInspectorFrontend
now returning the InspectorFrontendChannel.

  • src/InspectorClientImpl.cpp:

(WebKit::InspectorClientImpl::openInspectorFrontend):

  • src/InspectorClientImpl.h:

(InspectorClientImpl):

  • src/WebDevToolsAgentImpl.cpp:

(WebKit::WebDevToolsAgentImpl::reattach):
(WebKit::WebDevToolsAgentImpl::openInspectorFrontend):

  • src/WebDevToolsAgentImpl.h:

(WebDevToolsAgentImpl):

Source/WebKit/efl:

Refactoring InspectorClients. InspectorClient::openInspectorFrontend
now returning the InspectorFrontendChannel.

  • WebCoreSupport/InspectorClientEfl.cpp:

(WebCore::InspectorClientEfl::openInspectorFrontend):

  • WebCoreSupport/InspectorClientEfl.h:

(InspectorClientEfl):

Source/WebKit/gtk:

Refactoring InspectorClients. InspectorClient::openInspectorFrontend
now returning the InspectorFrontendChannel.

  • WebCoreSupport/InspectorClientGtk.cpp:

(WebKit::InspectorClient::openInspectorFrontend):

  • WebCoreSupport/InspectorClientGtk.h:

(InspectorClient):

Source/WebKit/mac:

Refactoring InspectorClients. InspectorClient::openInspectorFrontend
now returning the InspectorFrontendChannel.

  • WebCoreSupport/WebInspectorClient.h:

(WebInspectorClient):

  • WebCoreSupport/WebInspectorClient.mm:

(WebInspectorClient::openInspectorFrontend):

Source/WebKit/qt:

Refactoring InspectorClients. InspectorClient::openInspectorFrontend
now returning the InspectorFrontendChannel.

  • WebCoreSupport/InspectorClientQt.cpp:

(WebCore::InspectorClientQt::openInspectorFrontend):
(WebCore::InspectorClientQt::attachAndReplaceRemoteFrontend):

  • WebCoreSupport/InspectorClientQt.h:

(InspectorClientQt):

Source/WebKit/win:

Refactoring InspectorClients. InspectorClient::openInspectorFrontend
now returning the InspectorFrontendChannel.

  • WebCoreSupport/WebInspectorClient.cpp:

(WebInspectorClient::openInspectorFrontend):

  • WebCoreSupport/WebInspectorClient.h:

(WebInspectorClient):

Source/WebKit/wince:

Refactoring InspectorClients. InspectorClient::openInspectorFrontend
now returning the InspectorFrontendChannel.

  • WebCoreSupport/InspectorClientWinCE.cpp:

(WebKit::InspectorClientWinCE::openInspectorFrontend):

  • WebCoreSupport/InspectorClientWinCE.h:

(InspectorClientWinCE):

Source/WebKit/wx:

Refactoring InspectorClients. InspectorClient::openInspectorFrontend
now returning the InspectorFrontendChannel.

  • WebKitSupport/InspectorClientWx.cpp:

(WebCore::InspectorClientWx::openInspectorFrontend):

  • WebKitSupport/InspectorClientWx.h:

(InspectorClientWx):

Source/WebKit2:

Refactoring InspectorClients. InspectorClient::openInspectorFrontend
now returning the InspectorFrontendChannel.

  • WebProcess/WebCoreSupport/WebInspectorClient.cpp:

(WebKit::WebInspectorClient::openInspectorFrontend):

  • WebProcess/WebCoreSupport/WebInspectorClient.h:

(WebInspectorClient):

4:37 AM Changeset in webkit [122837] by kbalazs@webkit.org
  • 2 edits in trunk/LayoutTests

[Qt] REGRESSION(r122768, r122771) - it made ~ 160 fails on WebKit2
https://bugs.webkit.org/show_bug.cgi?id=91490

Unreviewed gardening.

Patch by János Badics <János Badics> on 2012-07-17

  • platform/qt-5.0-wk2/Skipped:
4:27 AM Changeset in webkit [122836] by kkristof@inf.u-szeged.hu
  • 25 edits
    1 copy
    6 adds in trunk

Unreviewed, rolling out r122834.
http://trac.webkit.org/changeset/122834
https://bugs.webkit.org/show_bug.cgi?id=91492

it broke the chromium (Requested by kkristof on #webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2012-07-17

.:

  • Source/api.pri:
  • WebKit.pro:

Source/WebCore:

  • DerivedSources.pri:
  • Target.pri:
  • WebCore.pri:
  • bindings/v8/ScriptCachedFrameData.cpp:

(WebCore):
(WebCore::ScriptCachedFrameData::ScriptCachedFrameData):
(WebCore::ScriptCachedFrameData::domWindow):
(WebCore::ScriptCachedFrameData::restore):
(WebCore::ScriptCachedFrameData::clear):

  • bindings/v8/ScriptCachedFrameData.h:

(WebCore):
(ScriptCachedFrameData):
(WebCore::ScriptCachedFrameData::~ScriptCachedFrameData):

  • bindings/v8/ScriptController.cpp:
  • bindings/v8/ScriptController.h:

(ScriptController):

  • bindings/v8/ScriptControllerQt.cpp: Copied from Source/WebCore/bindings/v8/ScriptCachedFrameData.cpp.

(WebCore):
(WebCore::ScriptController::qtScriptEngine):

  • bindings/v8/V8GCController.cpp:

(WebCore::V8GCController::checkMemoryUsage):

  • bindings/v8/custom/V8InspectorFrontendHostCustom.cpp:

(WebCore):
(WebCore::V8InspectorFrontendHost::recordActionTakenCallback):
(WebCore::V8InspectorFrontendHost::recordPanelShownCallback):
(WebCore::V8InspectorFrontendHost::recordSettingChangedCallback):

  • config.h:

Source/WebKit/qt:

  • Api/qwebelement.cpp:

(setupScriptContext):
(QWebElement::evaluateJavaScript):
(QtWebElementRuntime::initialize):

  • Api/qwebframe.cpp:

(QWebFramePrivate::didClearWindowObject):
(QWebFrame::addToJavaScriptWindowObject):
(QWebFrame::evaluateJavaScript):

  • WebCoreSupport/DumpRenderTreeSupportQt.cpp:

(QtDRTNodeRuntime::initialize):
(DumpRenderTreeSupportQt::javaScriptObjectsCount):
(DumpRenderTreeSupportQt::garbageCollectorCollect):
(DumpRenderTreeSupportQt::garbageCollectorCollectOnAlternateThread):
(DumpRenderTreeSupportQt::evaluateScriptInIsolatedWorld):
(DumpRenderTreeSupportQt::injectInternalsObject):
(DumpRenderTreeSupportQt::resetInternalsObject):

  • WebCoreSupport/DumpRenderTreeSupportQt.h:

(Bindings):

  • WebCoreSupport/FrameLoaderClientQt.cpp:

(WebCore):
(WebCore::FrameLoaderClientQt::didCreateScriptContext):
(WebCore::FrameLoaderClientQt::willReleaseScriptContext):
(WebCore::FrameLoaderClientQt::didCreateIsolatedScriptContext):
(WebCore::FrameLoaderClientQt::createDocumentLoader):

  • WebCoreSupport/FrameLoaderClientQt.h:

(FrameLoaderClientQt):
(WebCore::FrameLoaderClientQt::allowScriptExtension):

  • v8/ForwardingHeaders/v8-debug.h: Added.
  • v8/ForwardingHeaders/v8-preparser.h: Added.
  • v8/ForwardingHeaders/v8-profiler.h: Added.
  • v8/ForwardingHeaders/v8-testing.h: Added.
  • v8/ForwardingHeaders/v8.h: Added.
  • v8/ForwardingHeaders/v8stdint.h: Added.

Source/WTF:

  • WTF.pri:

Tools:

  • Scripts/build-webkit:
4:11 AM Changeset in webkit [122835] by Carlos Garcia Campos
  • 4 edits in trunk/Source/WebKit2

[GTK] Paste primary selection when middle clicking in X11 WebKit2
https://bugs.webkit.org/show_bug.cgi?id=91411

Reviewed by Xan Lopez.

Handle middle click events to paste primary selection as expected
in any X11 application.

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::handleMouseEvent): Call handleMousePressedEvent() for GTK+
platform.

  • WebProcess/WebPage/WebPage.h:

(WebPage): Add handleMousePressedEvent() for GTK+ platform.

  • WebProcess/WebPage/gtk/WebPageGtk.cpp:

(WebKit::WebPage::handleMousePressedEvent): Handle middle click
events to paste primary selection like we do in WebKit1.

3:58 AM Changeset in webkit [122834] by kkristof@inf.u-szeged.hu
  • 25 edits
    7 deletes in trunk

[Qt][V8] Remove the V8 related codepaths and configuration
https://bugs.webkit.org/show_bug.cgi?id=90863

Patch by Gabor Ballabas <gaborb@inf.u-szeged.hu> on 2012-07-17
Reviewed by Simon Hausmann.

.:

  • Source/api.pri:
  • WebKit.pro:

Source/WebCore:

No new tests, because there is no new functionality.

  • DerivedSources.pri:
  • Target.pri:
  • WebCore.pri:
  • bindings/v8/ScriptCachedFrameData.cpp:
  • bindings/v8/ScriptCachedFrameData.h:
  • bindings/v8/ScriptController.cpp:
  • bindings/v8/ScriptController.h:

(ScriptController):

  • bindings/v8/ScriptControllerQt.cpp: Removed.
  • bindings/v8/V8GCController.cpp:

(WebCore::V8GCController::checkMemoryUsage):

  • bindings/v8/custom/V8InspectorFrontendHostCustom.cpp:

(WebCore::histogramEnumeration):
(WebCore::V8InspectorFrontendHost::recordActionTakenCallback):
(WebCore::V8InspectorFrontendHost::recordPanelShownCallback):
(WebCore::V8InspectorFrontendHost::recordSettingChangedCallback):

  • config.h:

Source/WebKit/qt:

  • Api/qwebelement.cpp:

(setupScriptContext):
(QWebElement::evaluateJavaScript):
(convertWebElementVariantToJSValue):
(QtWebElementRuntime::initialize):

  • Api/qwebframe.cpp:

(QWebFramePrivate::didClearWindowObject):
(QWebFramePrivate::addQtSenderToGlobalObject):
(QWebFrame::addToJavaScriptWindowObject):
(QWebFrame::evaluateJavaScript):

  • WebCoreSupport/DumpRenderTreeSupportQt.cpp:

(convertNodeVariantToJSValue):
(QtDRTNodeRuntime::initialize):
(DumpRenderTreeSupportQt::javaScriptObjectsCount):
(DumpRenderTreeSupportQt::garbageCollectorCollect):
(DumpRenderTreeSupportQt::garbageCollectorCollectOnAlternateThread):
(DumpRenderTreeSupportQt::evaluateScriptInIsolatedWorld):
(DumpRenderTreeSupportQt::injectInternalsObject):
(DumpRenderTreeSupportQt::resetInternalsObject):

  • WebCoreSupport/DumpRenderTreeSupportQt.h:
  • WebCoreSupport/FrameLoaderClientQt.cpp:

(WebCore::FrameLoaderClientQt::createDocumentLoader):

  • WebCoreSupport/FrameLoaderClientQt.h:

(FrameLoaderClientQt):

  • v8/ForwardingHeaders/v8-debug.h: Removed.
  • v8/ForwardingHeaders/v8-preparser.h: Removed.
  • v8/ForwardingHeaders/v8-profiler.h: Removed.
  • v8/ForwardingHeaders/v8-testing.h: Removed.
  • v8/ForwardingHeaders/v8.h: Removed.
  • v8/ForwardingHeaders/v8stdint.h: Removed.

Source/WTF:

  • WTF.pri:

Tools:

  • Scripts/build-webkit: Remove --v8 option.
3:36 AM Changeset in webkit [122833] by kbalazs@webkit.org
  • 3 edits in trunk/Tools

[Qt] Add --use-test-fonts option to Minibrowser
https://bugs.webkit.org/show_bug.cgi?id=91402

Reviewed by Tor Arne Vestbø.

Same stuff that already exists for QtTestBrowser.

  • MiniBrowser/qt/MiniBrowser.pro:
  • MiniBrowser/qt/MiniBrowserApplication.cpp:

(MiniBrowserApplication::handleUserOptions):

3:23 AM Changeset in webkit [122832] by commit-queue@webkit.org
  • 4 edits in trunk/Source/WebKit/blackberry

[BlackBerry] Enable registerProtocolHandler for Blackberry
https://bugs.webkit.org/show_bug.cgi?id=90422

Patch by Chris Guan <chris.guan@torchmobile.com.cn> on 2012-07-17
Reviewed by George Staikos.

Implements APIs were added in Custom Scheme Handler specification
which is at http://dev.w3.org/html5/spec/Overview.html#custom-handlers.

Test cases:
fast/dom/register-protocol-handler.html
fast/dom/unregister-protocol-handler.html

  • Api/WebPageClient.h:
  • WebCoreSupport/ChromeClientBlackBerry.cpp:

(WebCore::ChromeClientBlackBerry::isProtocolHandlerRegistered):
(WebCore::ChromeClientBlackBerry::unregisterProtocolHandler):
(WebCore::ChromeClientBlackBerry::registerProtocolHandler):

  • WebCoreSupport/ChromeClientBlackBerry.h:

(ChromeClientBlackBerry):

2:59 AM Changeset in webkit [122831] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

"in body" insertion mode, "any other end tag" step 2.1 is updated
https://bugs.webkit.org/show_bug.cgi?id=91473

Patch by Kwang Yul Seo <skyul@company100.net> on 2012-07-17
Reviewed by Eric Seidel.

The HTML5 spec is updated to change the 'end tag' processing to not imply
its own end tag, since that makes no sense. Step 2.1 now says
"Generate implied end tags, except for elements with the same tag name as the token."
Modified to follow the updated spec. Also removed the first FIXME because now
ElementRecord can't be deleted by the preceeding call.

This patch does not actually change the behavior because of the previous
check (aborts if generateImpliedEndTags has already popped the node for the token),
so no new tests.

  • html/parser/HTMLTreeBuilder.cpp:

(WebCore::HTMLTreeBuilder::processAnyOtherEndTagForInBody):

2:45 AM Changeset in webkit [122830] by kbalazs@webkit.org
  • 137 edits
    12 copies
    55 adds in trunk/LayoutTests

[Qt] platfrom/qt/editing/inserting tests needs update after test font change.
https://bugs.webkit.org/show_bug.cgi?id=91378.

Unreviewed rebaseline.

Patch by Ádám Kallai <kadam@inf.u-szeged.hu> on 2012-07-16

  • platform/qt-5.0-wk1/Skipped:
  • platform/qt-5.0-wk1/editing/inserting/4960120-1-expected.png: Removed.
  • platform/qt-5.0-wk1/editing/inserting/4960120-1-expected.txt: Removed.
  • platform/qt-5.0-wk1/editing/inserting/before-after-input-element-expected.png: Removed.
  • platform/qt-5.0-wk1/editing/inserting/before-after-input-element-expected.txt: Removed.
  • platform/qt-5.0-wk2/Skipped:
  • platform/qt-5.0/Skipped:
  • platform/qt/editing/inserting/12882-expected.png: Added.
  • platform/qt/editing/inserting/12882-expected.txt:
  • platform/qt/editing/inserting/4278698-expected.png:
  • platform/qt/editing/inserting/4278698-expected.txt:
  • platform/qt/editing/inserting/4840662-expected.png: Added.
  • platform/qt/editing/inserting/4840662-expected.txt:
  • platform/qt/editing/inserting/4875189-1-expected.png: Added.
  • platform/qt/editing/inserting/4875189-1-expected.txt:
  • platform/qt/editing/inserting/4875189-2-expected.png: Added.
  • platform/qt/editing/inserting/4875189-2-expected.txt:
  • platform/qt/editing/inserting/4959067-expected.png: Added.
  • platform/qt/editing/inserting/4959067-expected.txt:
  • platform/qt/editing/inserting/4960120-1-expected.png:
  • platform/qt/editing/inserting/4960120-1-expected.txt:
  • platform/qt/editing/inserting/4960120-2-expected.png: Added.
  • platform/qt/editing/inserting/4960120-2-expected.txt:
  • platform/qt/editing/inserting/5002441-expected.png: Added.
  • platform/qt/editing/inserting/5002441-expected.txt:
  • platform/qt/editing/inserting/5058163-1-expected.png: Added.
  • platform/qt/editing/inserting/5058163-1-expected.txt:
  • platform/qt/editing/inserting/5058163-2-expected.png: Added.
  • platform/qt/editing/inserting/5058163-2-expected.txt:
  • platform/qt/editing/inserting/5156401-2-expected.png: Added.
  • platform/qt/editing/inserting/5156401-2-expected.txt:
  • platform/qt/editing/inserting/5418891-expected.png: Added.
  • platform/qt/editing/inserting/5418891-expected.txt:
  • platform/qt/editing/inserting/5510537-expected.png: Added.
  • platform/qt/editing/inserting/5510537-expected.txt:
  • platform/qt/editing/inserting/5549929-2-expected.png: Added.
  • platform/qt/editing/inserting/5549929-2-expected.txt:
  • platform/qt/editing/inserting/5549929-3-expected.png: Added.
  • platform/qt/editing/inserting/5549929-3-expected.txt:
  • platform/qt/editing/inserting/6703873-expected.png: Added.
  • platform/qt/editing/inserting/6703873-expected.txt:
  • platform/qt/editing/inserting/before-after-input-element-expected.png:
  • platform/qt/editing/inserting/before-after-input-element-expected.txt:
  • platform/qt/editing/inserting/break-blockquote-after-delete-expected.png: Added.
  • platform/qt/editing/inserting/break-blockquote-after-delete-expected.txt:
  • platform/qt/editing/inserting/editable-html-element-expected.png:
  • platform/qt/editing/inserting/editable-html-element-expected.txt:
  • platform/qt/editing/inserting/editable-inline-element-expected.png: Added.
  • platform/qt/editing/inserting/editable-inline-element-expected.txt:
  • platform/qt/editing/inserting/edited-whitespace-1-expected.png: Added.
  • platform/qt/editing/inserting/edited-whitespace-1-expected.txt:
  • platform/qt/editing/inserting/editing-empty-divs-expected.png:
  • platform/qt/editing/inserting/editing-empty-divs-expected.txt:
  • platform/qt/editing/inserting/insert-3654864-fix-expected.txt: Removed.
  • platform/qt/editing/inserting/insert-3775316-fix-expected.png: Copied from LayoutTests/platform/qt/editing/inserting/insert-text-at-tabspan-002-expected.png.
  • platform/qt/editing/inserting/insert-3775316-fix-expected.txt:
  • platform/qt/editing/inserting/insert-3778059-fix-expected.png: Added.
  • platform/qt/editing/inserting/insert-3778059-fix-expected.txt:
  • platform/qt/editing/inserting/insert-3800346-fix-expected.png: Added.
  • platform/qt/editing/inserting/insert-3800346-fix-expected.txt:
  • platform/qt/editing/inserting/insert-3851164-fix-expected.txt: Removed.
  • platform/qt/editing/inserting/insert-after-delete-001-expected.png:
  • platform/qt/editing/inserting/insert-after-delete-001-expected.txt:
  • platform/qt/editing/inserting/insert-at-end-01-expected.png: Added.
  • platform/qt/editing/inserting/insert-at-end-01-expected.txt:
  • platform/qt/editing/inserting/insert-at-end-02-expected.png: Added.
  • platform/qt/editing/inserting/insert-at-end-02-expected.txt:
  • platform/qt/editing/inserting/insert-br-001-expected.png: Copied from LayoutTests/platform/qt/editing/inserting/insert-text-at-tabspan-002-expected.png.
  • platform/qt/editing/inserting/insert-br-001-expected.txt:
  • platform/qt/editing/inserting/insert-br-002-expected.png: Added.
  • platform/qt/editing/inserting/insert-br-002-expected.txt:
  • platform/qt/editing/inserting/insert-br-003-expected.png:
  • platform/qt/editing/inserting/insert-br-003-expected.txt:
  • platform/qt/editing/inserting/insert-br-004-expected.png: Copied from LayoutTests/platform/qt/editing/inserting/insert-3851164-fix-expected.png.
  • platform/qt/editing/inserting/insert-br-004-expected.txt:
  • platform/qt/editing/inserting/insert-br-005-expected.png: Copied from LayoutTests/platform/qt/editing/inserting/insert-text-at-tabspan-002-expected.png.
  • platform/qt/editing/inserting/insert-br-005-expected.txt:
  • platform/qt/editing/inserting/insert-br-006-expected.png:
  • platform/qt/editing/inserting/insert-br-006-expected.txt:
  • platform/qt/editing/inserting/insert-br-007-expected.png:
  • platform/qt/editing/inserting/insert-br-007-expected.txt:
  • platform/qt/editing/inserting/insert-br-008-expected.png:
  • platform/qt/editing/inserting/insert-br-008-expected.txt:
  • platform/qt/editing/inserting/insert-br-009-expected.png:
  • platform/qt/editing/inserting/insert-br-009-expected.txt:
  • platform/qt/editing/inserting/insert-br-at-tabspan-001-expected.png: Copied from LayoutTests/platform/qt/editing/inserting/insert-text-at-tabspan-002-expected.png.
  • platform/qt/editing/inserting/insert-br-at-tabspan-001-expected.txt:
  • platform/qt/editing/inserting/insert-br-at-tabspan-002-expected.png:
  • platform/qt/editing/inserting/insert-br-at-tabspan-002-expected.txt:
  • platform/qt/editing/inserting/insert-br-at-tabspan-003-expected.png:
  • platform/qt/editing/inserting/insert-br-at-tabspan-003-expected.txt:
  • platform/qt/editing/inserting/insert-br-quoted-001-expected.png: Added.
  • platform/qt/editing/inserting/insert-br-quoted-001-expected.txt:
  • platform/qt/editing/inserting/insert-br-quoted-002-expected.png: Added.
  • platform/qt/editing/inserting/insert-br-quoted-002-expected.txt:
  • platform/qt/editing/inserting/insert-br-quoted-003-expected.png: Added.
  • platform/qt/editing/inserting/insert-br-quoted-003-expected.txt:
  • platform/qt/editing/inserting/insert-br-quoted-004-expected.png: Added.
  • platform/qt/editing/inserting/insert-br-quoted-004-expected.txt:
  • platform/qt/editing/inserting/insert-br-quoted-005-expected.png: Added.
  • platform/qt/editing/inserting/insert-br-quoted-005-expected.txt:
  • platform/qt/editing/inserting/insert-br-quoted-006-expected.png: Added.
  • platform/qt/editing/inserting/insert-br-quoted-006-expected.txt:
  • platform/qt/editing/inserting/insert-div-001-expected.png: Copied from LayoutTests/platform/qt/editing/inserting/insert-text-at-tabspan-002-expected.png.
  • platform/qt/editing/inserting/insert-div-001-expected.txt:
  • platform/qt/editing/inserting/insert-div-002-expected.png: Copied from LayoutTests/platform/qt/editing/inserting/insert-text-at-tabspan-002-expected.png.
  • platform/qt/editing/inserting/insert-div-002-expected.txt:
  • platform/qt/editing/inserting/insert-div-003-expected.png:
  • platform/qt/editing/inserting/insert-div-003-expected.txt:
  • platform/qt/editing/inserting/insert-div-004-expected.png: Copied from LayoutTests/platform/qt/editing/inserting/insert-after-delete-001-expected.png.
  • platform/qt/editing/inserting/insert-div-004-expected.txt:
  • platform/qt/editing/inserting/insert-div-005-expected.png: Added.
  • platform/qt/editing/inserting/insert-div-005-expected.txt:
  • platform/qt/editing/inserting/insert-div-006-expected.png:
  • platform/qt/editing/inserting/insert-div-006-expected.txt:
  • platform/qt/editing/inserting/insert-div-007-expected.png:
  • platform/qt/editing/inserting/insert-div-007-expected.txt:
  • platform/qt/editing/inserting/insert-div-008-expected.png:
  • platform/qt/editing/inserting/insert-div-008-expected.txt:
  • platform/qt/editing/inserting/insert-div-009-expected.txt: Removed.
  • platform/qt/editing/inserting/insert-div-010-expected.txt: Removed.
  • platform/qt/editing/inserting/insert-div-011-expected.png: Added.
  • platform/qt/editing/inserting/insert-div-011-expected.txt:
  • platform/qt/editing/inserting/insert-div-012-expected.png: Added.
  • platform/qt/editing/inserting/insert-div-012-expected.txt:
  • platform/qt/editing/inserting/insert-div-013-expected.png: Added.
  • platform/qt/editing/inserting/insert-div-013-expected.txt:
  • platform/qt/editing/inserting/insert-div-014-expected.png: Added.
  • platform/qt/editing/inserting/insert-div-014-expected.txt:
  • platform/qt/editing/inserting/insert-div-015-expected.png: Added.
  • platform/qt/editing/inserting/insert-div-015-expected.txt:
  • platform/qt/editing/inserting/insert-div-016-expected.png: Added.
  • platform/qt/editing/inserting/insert-div-016-expected.txt:
  • platform/qt/editing/inserting/insert-div-017-expected.png: Added.
  • platform/qt/editing/inserting/insert-div-017-expected.txt:
  • platform/qt/editing/inserting/insert-div-018-expected.png: Added.
  • platform/qt/editing/inserting/insert-div-018-expected.txt:
  • platform/qt/editing/inserting/insert-div-019-expected.png: Added.
  • platform/qt/editing/inserting/insert-div-019-expected.txt:
  • platform/qt/editing/inserting/insert-div-020-expected.png: Added.
  • platform/qt/editing/inserting/insert-div-020-expected.txt:
  • platform/qt/editing/inserting/insert-div-022-expected.png: Added.
  • platform/qt/editing/inserting/insert-div-022-expected.txt:
  • platform/qt/editing/inserting/insert-div-023-expected.png:
  • platform/qt/editing/inserting/insert-div-023-expected.txt:
  • platform/qt/editing/inserting/insert-div-024-expected.png:
  • platform/qt/editing/inserting/insert-div-024-expected.txt:
  • platform/qt/editing/inserting/insert-div-025-expected.png:
  • platform/qt/editing/inserting/insert-div-025-expected.txt:
  • platform/qt/editing/inserting/insert-div-026-expected.png: Added.
  • platform/qt/editing/inserting/insert-div-026-expected.txt:
  • platform/qt/editing/inserting/insert-div-027-expected.png: Added.
  • platform/qt/editing/inserting/insert-div-027-expected.txt:
  • platform/qt/editing/inserting/insert-paragraph-01-expected.png: Added.
  • platform/qt/editing/inserting/insert-paragraph-01-expected.txt:
  • platform/qt/editing/inserting/insert-paragraph-02-expected.png: Added.
  • platform/qt/editing/inserting/insert-paragraph-02-expected.txt:
  • platform/qt/editing/inserting/insert-paragraph-03-expected.png: Added.
  • platform/qt/editing/inserting/insert-paragraph-03-expected.txt:
  • platform/qt/editing/inserting/insert-paragraph-04-expected.png: Added.
  • platform/qt/editing/inserting/insert-paragraph-04-expected.txt:
  • platform/qt/editing/inserting/insert-paragraph-05-expected.png: Added.
  • platform/qt/editing/inserting/insert-paragraph-05-expected.txt:
  • platform/qt/editing/inserting/insert-space-in-empty-doc-expected.png:
  • platform/qt/editing/inserting/insert-space-in-empty-doc-expected.txt:
  • platform/qt/editing/inserting/insert-tab-001-expected.png: Copied from LayoutTests/platform/qt/editing/inserting/insert-after-delete-001-expected.png.
  • platform/qt/editing/inserting/insert-tab-001-expected.txt:
  • platform/qt/editing/inserting/insert-tab-002-expected.png: Copied from LayoutTests/platform/qt/editing/inserting/insert-after-delete-001-expected.png.
  • platform/qt/editing/inserting/insert-tab-002-expected.txt:
  • platform/qt/editing/inserting/insert-tab-004-expected.png: Renamed from LayoutTests/platform/qt/editing/inserting/insert-3851164-fix-expected.png.
  • platform/qt/editing/inserting/insert-tab-004-expected.txt:
  • platform/qt/editing/inserting/insert-text-at-tabspan-001-expected.png:
  • platform/qt/editing/inserting/insert-text-at-tabspan-001-expected.txt:
  • platform/qt/editing/inserting/insert-text-at-tabspan-002-expected.png:
  • platform/qt/editing/inserting/insert-text-at-tabspan-002-expected.txt:
  • platform/qt/editing/inserting/insert-text-at-tabspan-003-expected.png: Renamed from LayoutTests/platform/qt/editing/inserting/insert-3654864-fix-expected.png.
  • platform/qt/editing/inserting/insert-text-at-tabspan-003-expected.txt:
  • platform/qt/editing/inserting/insert-text-with-newlines-expected.png:
  • platform/qt/editing/inserting/insert-text-with-newlines-expected.txt:
  • platform/qt/editing/inserting/line-break-expected.png: Added.
  • platform/qt/editing/inserting/line-break-expected.txt:
  • platform/qt/editing/inserting/multiple-lines-selected-expected.png:
  • platform/qt/editing/inserting/multiple-lines-selected-expected.txt:
  • platform/qt/editing/inserting/paragraph-separator-01-expected.png: Added.
  • platform/qt/editing/inserting/paragraph-separator-01-expected.txt:
  • platform/qt/editing/inserting/paragraph-separator-02-expected.png: Added.
  • platform/qt/editing/inserting/paragraph-separator-02-expected.txt:
  • platform/qt/editing/inserting/paragraph-separator-03-expected.png:
  • platform/qt/editing/inserting/paragraph-separator-03-expected.txt:
  • platform/qt/editing/inserting/paragraph-separator-in-table-1-expected.png: Added.
  • platform/qt/editing/inserting/paragraph-separator-in-table-1-expected.txt:
  • platform/qt/editing/inserting/paragraph-separator-in-table-2-expected.png: Added.
  • platform/qt/editing/inserting/paragraph-separator-in-table-2-expected.txt:
  • platform/qt/editing/inserting/redo-expected.png:
  • platform/qt/editing/inserting/redo-expected.txt:
  • platform/qt/editing/inserting/return-key-with-selection-001-expected.png: Added.
  • platform/qt/editing/inserting/return-key-with-selection-001-expected.txt:
  • platform/qt/editing/inserting/return-key-with-selection-002-expected.png: Added.
  • platform/qt/editing/inserting/return-key-with-selection-002-expected.txt:
  • platform/qt/editing/inserting/return-key-with-selection-003-expected.png:
  • platform/qt/editing/inserting/return-key-with-selection-003-expected.txt:
  • platform/qt/editing/inserting/typing-001-expected.png:
  • platform/qt/editing/inserting/typing-001-expected.txt:
  • platform/qt/editing/inserting/typing-002-expected.png:
  • platform/qt/editing/inserting/typing-002-expected.txt:
  • platform/qt/editing/inserting/typing-003-expected.png:
  • platform/qt/editing/inserting/typing-003-expected.txt:
  • platform/qt/editing/inserting/typing-around-br-001-expected.png:
  • platform/qt/editing/inserting/typing-around-br-001-expected.txt:
  • platform/qt/editing/inserting/typing-around-image-001-expected.png:
  • platform/qt/editing/inserting/typing-around-image-001-expected.txt:
2:20 AM Changeset in webkit [122829] by vsevik@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed chromium gardening, skipped failing test.
https://bugs.webkit.org/show_bug.cgi?id=91477

  • platform/chromium/TestExpectations:
2:09 AM Changeset in webkit [122828] by abarth@webkit.org
  • 5 edits in trunk/Tools

[Chromium] TestInterfaces should be responsible for owning and binding AccessibilityController and TextInputController
https://bugs.webkit.org/show_bug.cgi?id=91459

Reviewed by Ryosuke Niwa.

Rather than having TestShell own and bind each of these JavaScript APIs
individually, TestShell should delegate that work to TestInterfaces.
This patch moves AccessibilityController and TextInputController to be
the responsibility of TestInterfaces.

  • DumpRenderTree/chromium/TestRunner/TestInterfaces.cpp:

(TestInterfaces::TestInterfaces):
(TestInterfaces::~TestInterfaces):
(TestInterfaces::setWebView):
(TestInterfaces::bindTo):
(TestInterfaces::resetAll):

  • DumpRenderTree/chromium/TestRunner/TestInterfaces.h:

(WebKit):
(TestInterfaces):
(TestInterfaces::accessibilityController):

  • DumpRenderTree/chromium/TestShell.cpp:

(TestShell::initialize):
(TestShell::createMainWindow):
(TestShell::~TestShell):
(TestShell::resetTestController):
(TestShell::bindJSObjectsToWindow):

  • DumpRenderTree/chromium/TestShell.h:

(TestShell::accessibilityController):
(TestShell):

2:05 AM Changeset in webkit [122827] by kkristof@inf.u-szeged.hu
  • 2 edits in trunk/LayoutTests

[Qt] Unreviewed gardening after r122768 or r122771.
https://bugs.webkit.org/show_bug.cgi?id=91476

Patch by Szilard Ledan <Szilárd LEDÁN> on 2012-07-17

  • platform/qt/Skipped:
1:45 AM Changeset in webkit [122826] by kkristof@inf.u-szeged.hu
  • 2 edits in trunk/LayoutTests

[Qt] Unreviewed gardening after 122816. Skipped fast/dom/shadow/shadowdom-for-media.html
because ENABLE(SHADOW_DOM) is disabled on Qt.

Patch by János Badics <János Badics> on 2012-07-17

  • platform/qt/Skipped:
1:37 AM Changeset in webkit [122825] by shinyak@chromium.org
  • 3 edits
    2 adds in trunk

[Regression] Infinite loop in document.elementFromPoint
https://bugs.webkit.org/show_bug.cgi?id=90820

Reviewed by Nikolas Zimmermann.

Source/WebCore:

Node::shadowAncestorNode returns the caller node itself for SVGElement. However,
since we have already implemented event retargeting algorithm in Shadow DOM, we don't have to
take a special care of SVGElement for Node.shadowAncestorNode() now.

This patch will removes the special care code and fixes infinite loop in document.elementFromPoint().

Test: svg/hittest/svg-use-element-from-point.html

  • dom/Node.cpp:

(WebCore::Node::shadowAncestorNode):

LayoutTests:

  • svg/hittest/svg-use-element-from-point-expected.txt: Added.
  • svg/hittest/svg-use-element-from-point.html: Added.
1:27 AM Changeset in webkit [122824] by shinyak@chromium.org
  • 26 edits
    25 adds in trunk

Shadow DOM for img element
https://bugs.webkit.org/show_bug.cgi?id=90532

Reviewed by Hajime Morita.

Source/WebCore:

This patch adds Shadow DOM support for img element.

According to the Shadow DOM spec, img element should behave like having a user agent Shadow DOM.
However, if we add Shadow DOM to img by default, it will cause performance regression and memory bloat.

So, we would like to postpone adding a Shadow DOM to img until when we really need it. In other words,
we add our User Agent Shadow DOM to img just before a user adds Author Shadow DOM.

The User Agent Shadow DOM for img has only one element, which displays an image. If img has
a Shadow DOM, img will behave like <span style="display: inline-block"> by default. The display style can
be chagned using CSS though.

This patch also adds ImageLoaderClient. The element we render an image and the element we take an argument
from were the same, however not they might be different. We would like to encapsulate the fact into
ImageLoaderClient.

Tests: fast/dom/shadow/shadowdom-for-image-alt-update.html

fast/dom/shadow/shadowdom-for-image-alt.html
fast/dom/shadow/shadowdom-for-image-content.html
fast/dom/shadow/shadowdom-for-image-dynamic.html
fast/dom/shadow/shadowdom-for-image-event-click.html
fast/dom/shadow/shadowdom-for-image-in-shadowdom.html
fast/dom/shadow/shadowdom-for-image-map.html
fast/dom/shadow/shadowdom-for-image-style.html
fast/dom/shadow/shadowdom-for-image-with-multiple-shadow.html
fast/dom/shadow/shadowdom-for-image-with-width-and-height.html
fast/dom/shadow/shadowdom-for-image.html

  • CMakeLists.txt:
  • GNUmakefile.list.am:
  • Target.pri:
  • WebCore.gypi:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.xcodeproj/project.pbxproj:
  • css/html.css:

(img):

  • html/HTMLImageElement.cpp:

(WebCore::ImageElement::setImageIfNecessary):
(WebCore):
(WebCore::ImageElement::createRendererForImage):
(WebCore::HTMLImageElement::willAddAuthorShadowRoot): When we don't have a user agent Shadow DOM yet
we add it.
(WebCore::HTMLImageElement::createShadowSubtree):
(WebCore::HTMLImageElement::imageElement):
(WebCore::HTMLImageElement::parseAttribute):
(WebCore::HTMLImageElement::createRenderer): If a user agent Shadow DOM is attached, we create
Renderer from style, instead of creating RenderImage.
(WebCore::HTMLImageElement::attach):
(WebCore::HTMLImageElement::innerElement):

  • html/HTMLImageElement.h:

(WebCore):
(ImageElement):
(HTMLImageElement):
(WebCore::HTMLImageElement::sourceElement):
(WebCore::HTMLImageElement::refSourceElement):
(WebCore::HTMLImageElement::derefSourceElement):
(WebCore::HTMLImageElement::imageRenderer):
(WebCore::HTMLImageElement::imageLoader):
(WebCore::isHTMLImageElement):
(WebCore::toHTMLImageElement):

  • html/HTMLImageLoader.cpp:

(WebCore::HTMLImageLoader::HTMLImageLoader):
(WebCore::HTMLImageLoader::dispatchLoadEvent):
(WebCore::HTMLImageLoader::sourceURI):
(WebCore::HTMLImageLoader::notifyFinished):

  • html/HTMLImageLoader.h:

(HTMLImageLoader):

  • html/HTMLInputElement.h:
  • html/HTMLObjectElement.h:
  • html/HTMLPlugInElement.h:
  • html/HTMLTagNames.in:
  • html/HTMLVideoElement.h:
  • html/shadow/ImageInnerElement.cpp: Added.

(WebCore):
(WebCore::ImageInnerElement::ImageInnerElement):
(WebCore::ImageInnerElement::hostImage):
(WebCore::ImageInnerElement::imageLoader):
(WebCore::ImageInnerElement::attach):
(WebCore::ImageInnerElement::createRenderer):

  • html/shadow/ImageInnerElement.h: Added.

(WebCore):
(ImageInnerElement):
(WebCore::ImageInnerElement::imageRenderer):
(WebCore::ImageInnerElement::create):
(WebCore::isImageInnerElement):
(WebCore::toImageInnerElement):

  • loader/ImageLoader.cpp:

(WebCore::ImageLoader::ImageLoader):
(WebCore::ImageLoader::~ImageLoader):
(WebCore):
(WebCore::ImageLoader::document):
(WebCore::ImageLoader::updateFromElement):
(WebCore::ImageLoader::notifyFinished):
(WebCore::ImageLoader::renderImageResource):
(WebCore::ImageLoader::updatedHasPendingLoadEvent):
(WebCore::ImageLoader::dispatchPendingBeforeLoadEvent):
(WebCore::ImageLoader::dispatchPendingLoadEvent):
(WebCore::ImageLoader::dispatchPendingErrorEvent):

  • loader/ImageLoader.h:

(WebCore):
(ImageLoader):
(WebCore::ImageLoader::client):

  • loader/ImageLoaderClient.h: Added.

(WebCore):
(ImageLoaderClient): Provides the necessary interfaces to ImageLoader.
(WebCore::ImageLoaderClient::~ImageLoaderClient):
(ImageLoaderClientBase):
(WebCore::ImageLoaderClientBase::sourceElement):
(WebCore::ImageLoaderClientBase::imageElement):
(WebCore::ImageLoaderClientBase::refSourceElement):
(WebCore::ImageLoaderClientBase::derefSourceElement):

  • rendering/RenderImage.cpp:

(WebCore::RenderImage::paintIntoRect):
(WebCore::RenderImage::imageMap):
(WebCore::RenderImage::updateAltText):
(WebCore::RenderImage::hostImageElement):
(WebCore):

  • rendering/RenderImage.h:

(WebCore):
(RenderImage):

  • rendering/RenderObject.cpp:

(WebCore::RenderObject::shouldRespectImageOrientation):

  • svg/SVGImageElement.h:

(SVGImageElement):

  • svg/SVGImageLoader.cpp:

(WebCore::SVGImageLoader::SVGImageLoader):
(WebCore::SVGImageLoader::dispatchLoadEvent):
(WebCore::SVGImageLoader::sourceURI):

  • svg/SVGImageLoader.h:

(SVGImageLoader):

LayoutTests:

Contains the following test cases.
(1) ShadowDOM is attached to an img element and use a shadow element
(2) ShadowDOM is attached to an img element and use a content element
(3) width and height are specified
(4) src attribute is dynamically changed
(5) multiple ShadowDOMs are attached to an img element
(6) ShadowDOM is attached to an img element in Shadow DOM
(7) event retargetting
(8) img with display: none, display: inline, display: block
(9) image map
(10) alt text
(11) alt text with dynamic update

  • fast/dom/shadow/shadowdom-for-image-alt-expected.html: Added.
  • fast/dom/shadow/shadowdom-for-image-alt-update-expected.html: Added.
  • fast/dom/shadow/shadowdom-for-image-alt-update.html: Added.
  • fast/dom/shadow/shadowdom-for-image-alt.html: Added.
  • fast/dom/shadow/shadowdom-for-image-content-expected.html: Added.
  • fast/dom/shadow/shadowdom-for-image-content.html: Added.
  • fast/dom/shadow/shadowdom-for-image-dynamic-expected.html: Added.
  • fast/dom/shadow/shadowdom-for-image-dynamic.html: Added.
  • fast/dom/shadow/shadowdom-for-image-event-click-expected.txt: Added.
  • fast/dom/shadow/shadowdom-for-image-event-click.html: Added.
  • fast/dom/shadow/shadowdom-for-image-expected.html: Added.
  • fast/dom/shadow/shadowdom-for-image-in-shadowdom-expected.html: Added.
  • fast/dom/shadow/shadowdom-for-image-in-shadowdom.html: Added.
  • fast/dom/shadow/shadowdom-for-image-map-expected.txt: Added.
  • fast/dom/shadow/shadowdom-for-image-map.html: Added.
  • fast/dom/shadow/shadowdom-for-image-style-expected.html: Added.
  • fast/dom/shadow/shadowdom-for-image-style.html: Added.
  • fast/dom/shadow/shadowdom-for-image-with-multiple-shadow-expected.html: Added.
  • fast/dom/shadow/shadowdom-for-image-with-multiple-shadow.html: Added.
  • fast/dom/shadow/shadowdom-for-image-with-width-and-height-expected.html: Added.
  • fast/dom/shadow/shadowdom-for-image-with-width-and-height.html: Added.
  • fast/dom/shadow/shadowdom-for-image.html: Added.
1:22 AM Changeset in webkit [122823] by tkent@chromium.org
  • 10 edits in trunk/Source/WebCore

Internals: Remove injectPagePopupController()
https://bugs.webkit.org/show_bug.cgi?id=91471

Reviewed by Hajime Morita.

r122558 introduced injectPagePopupController(), however we'd like to
avoid adding such JavaScript binding code. We can avoid it by exposing a
PagePopupController for a mock and injecting the following code to the
popup document:

<script>window.pagePopupController = window.internals.pagePopupController</script>

No new tests. This is a kind of refactoring.

  • testing/InternalSettings.cpp:

(WebCore::InternalSettings::pagePopupController):
Added. Accessor for PagePopupControler owned by the MockPagePopupDriver.

  • testing/InternalSettings.h:

(InternalSettings): Declare pagePopupController() for Internals::pagePopupController().

  • testing/Internals.cpp:

(WebCore::Internals::pagePopupController):
Added. This uses InternalSettings::pagePopupController().

  • testing/Internals.h:

(Internals): Declare pagePopupController() for Internals.idl.

  • testing/Internals.idl: Declare pagePopupController.
  • testing/MockPagePopupDriver.cpp:

Moved m_pagePopupController from MockPagePopup to MockPagePopupDriver.
(WebCore::MockPagePopup::MockPagePopup):
Added a script element to prepare window.pagePopupController.
Removed a callsite of injectPagePopupController().
(WebCore::MockPagePopupDriver::openPagePopup):
(WebCore::MockPagePopupDriver::closePagePopup):

  • testing/MockPagePopupDriver.h:

(WebCore::MockPagePopupDriver::pagePopupController):
Accessor for a PagePopupController object.
(MockPagePopupDriver): Add RefPtr<PagePopupController> data member.

  • testing/v8/WebCoreTestSupport.cpp: Remove injectPagePopupController().
  • testing/v8/WebCoreTestSupport.h: ditto.
1:11 AM Changeset in webkit [122822] by abarth@webkit.org
  • 2 edits
    2 moves in trunk/Tools

[Chromium] Move TextInputController into TestRunner.a
https://bugs.webkit.org/show_bug.cgi?id=91457

Reviewed by Ryosuke Niwa.

This patch is purely moving code. TextInputController is one of the
objects exposed to JavaScript and so should be in the TestRunner
library.

  • DumpRenderTree/DumpRenderTree.gypi:
  • DumpRenderTree/chromium/TestRunner/TextInputController.cpp: Renamed from Tools/DumpRenderTree/chromium/TextInputController.cpp.
  • DumpRenderTree/chromium/TestRunner/TextInputController.h: Renamed from Tools/DumpRenderTree/chromium/TextInputController.h.
1:10 AM Changeset in webkit [122821] by abarth@webkit.org
  • 4 edits in trunk/Tools

[Chromium] TextInputController shouldn't know about TestShell
https://bugs.webkit.org/show_bug.cgi?id=91455

Reviewed by Kent Tamura.

This patch uses the same pattern we used for the
AccessibilityController to remove the dependency on TestShell.

  • DumpRenderTree/chromium/TestShell.cpp:

(TestShell::initialize):
(TestShell::createMainWindow):
(TestShell::~TestShell):

  • DumpRenderTree/chromium/TextInputController.cpp:

(TextInputController::TextInputController):
(TextInputController::insertText):
(TextInputController::doCommand):
(TextInputController::setMarkedText):
(TextInputController::unmarkText):
(TextInputController::hasMarkedText):
(TextInputController::markedRange):
(TextInputController::selectedRange):
(TextInputController::firstRectForCharacterRange):
(TextInputController::validAttributesForMarkedText):
(TextInputController::setComposition):

  • DumpRenderTree/chromium/TextInputController.h:

(WebKit):
(TextInputController):
(TextInputController::setWebView):

1:02 AM Changeset in webkit [122820] by vsevik@chromium.org
  • 5 edits in trunk/LayoutTests

Unreviewed chromium tests rebaselines after r122791.

  • platform/chromium-win/platform/chromium/compositing/scrollbars/custom-composited-different-track-parts-expected.png:
  • platform/chromium-win/transforms/3d/point-mapping/3d-point-mapping-expected.png:
  • platform/chromium-win/transforms/3d/point-mapping/3d-point-mapping-origins-expected.png:
  • platform/chromium-win/transforms/3d/point-mapping/3d-point-mapping-preserve-3d-expected.png:
1:00 AM Changeset in webkit [122819] by vsevik@chromium.org
  • 29 edits
    2 copies
    7 adds in trunk/LayoutTests

Unreviewed chromium tests rebaselines after r122785.

  • platform/chromium-linux-x86/fast/borders/border-image-scaled-gradient-expected.png: Added.
  • platform/chromium-linux-x86/fast/reflections/reflection-with-zoom-expected.png: Copied from LayoutTests/platform/chromium-linux/fast/reflections/reflection-with-zoom-expected.png.
  • platform/chromium-linux/fast/borders/border-image-scaled-gradient-expected.png:
  • platform/chromium-linux/fast/css/transformed-mask-expected.png:
  • platform/chromium-linux/fast/gradients/css3-linear-angle-gradients-expected.png:
  • platform/chromium-linux/fast/gradients/css3-linear-right-angle-gradients-expected.png:
  • platform/chromium-linux/fast/gradients/css3-radial-gradients-expected.png:
  • platform/chromium-linux/fast/gradients/css3-radial-gradients2-expected.png:
  • platform/chromium-linux/fast/gradients/css3-repeating-linear-gradients-expected.png:
  • platform/chromium-linux/fast/gradients/css3-repeating-radial-gradients-expected.png:
  • platform/chromium-linux/fast/reflections/reflection-with-zoom-expected.png:
  • platform/chromium-mac-snowleopard/fast/borders/border-image-scaled-gradient-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/css/transformed-mask-expected.png:
  • platform/chromium-mac-snowleopard/fast/reflections/reflection-with-zoom-expected.png:
  • platform/chromium-mac/fast/borders/border-image-scaled-gradient-expected.png:
  • platform/chromium-mac/fast/css/transformed-mask-expected.png:
  • platform/chromium-mac/fast/gradients/border-image-gradient-sides-and-corners-expected.png:
  • platform/chromium-mac/fast/gradients/css3-linear-angle-gradients-expected.png:
  • platform/chromium-mac/fast/gradients/css3-linear-right-angle-gradients-expected.png:
  • platform/chromium-mac/fast/gradients/css3-radial-gradients-expected.png:
  • platform/chromium-mac/fast/gradients/css3-repeating-linear-gradients-expected.png:
  • platform/chromium-mac/fast/gradients/css3-repeating-radial-gradients-expected.png:
  • platform/chromium-mac/fast/reflections/reflection-with-zoom-expected.png:
  • platform/chromium-win-xp/fast/borders/border-image-scaled-gradient-expected.png: Added.
  • platform/chromium-win-xp/fast/reflections/reflection-with-zoom-expected.png: Copied from LayoutTests/platform/chromium-linux/fast/reflections/reflection-with-zoom-expected.png.
  • platform/chromium-win/fast/borders/border-image-scaled-gradient-expected.png:
  • platform/chromium-win/fast/css/transformed-mask-expected.png:
  • platform/chromium-win/fast/gradients/border-image-gradient-sides-and-corners-expected.png:
  • platform/chromium-win/fast/gradients/css3-linear-angle-gradients-expected.png:
  • platform/chromium-win/fast/gradients/css3-linear-right-angle-gradients-expected.png:
  • platform/chromium-win/fast/gradients/css3-radial-gradients-expected.png:
  • platform/chromium-win/fast/gradients/gradient-after-transparent-border-expected.png:
  • platform/chromium-win/fast/reflections/reflection-with-zoom-expected.png:
12:59 AM Changeset in webkit [122818] by rgabor@webkit.org
  • 2 edits in trunk/Source/JavaScriptCore

Unreviewed buildfix from Zoltan Herczeg after 122768.

  • dfg/DFGCCallHelpers.h:

(JSC::DFG::CCallHelpers::setupArgumentsWithExecState):
(CCallHelpers):

12:52 AM Changeset in webkit [122817] by ryuan.choi@samsung.com
  • 14 edits in trunk/Source

[EFL] Move codes related to theme setting from Widget to RenderTheme
https://bugs.webkit.org/show_bug.cgi?id=89842

Reviewed by Kenneth Rohde Christiansen.

Source/WebCore:

WebKit/Efl uses custom theme for Scrollbar, RenderTheme and Cursor.
However, theme information itself is in WidgetEfl so it is accessed by
calling recursive function.
Because theme is managed by each page, this patch moves codes related to
theme from WidgetEfl to RenderThemeEfl which is contained by page.

  • platform/Widget.h: Removed functions related to theme.
  • platform/efl/RenderThemeEfl.cpp:

(WebCore::RenderThemeEfl::setThemePath): Added to set theme path.
(WebCore::RenderThemeEfl::createEdje): Updated method to use RenderThemeEfl's theme.
(WebCore::RenderThemeEfl::RenderThemeEfl):

  • platform/efl/RenderThemeEfl.h:

(WebCore::RenderThemeEfl::themePath): Added to get theme path

  • platform/efl/ScrollbarEfl.cpp: Updated method to use RenderThemeEfl's theme.

(ScrollbarEfl::setParent):

  • platform/efl/WidgetEfl.cpp: Removed codes related theme.

(WidgetPrivate):

Source/WebKit:

  • CMakeLists.txt: Added html/shadow to WebKit_INCLUDE_DIRECTORIES.

Source/WebKit/efl:

  • ewk/ewk_frame.cpp:

(ewk_frame_view_create_for_view): Removed codes which set theme in FrameView.

  • ewk/ewk_view.cpp:

(ewk_view_theme_set): Called RenderThemeEfl::setThemePath instead of setting theme in FrameView.

Source/WebKit2:

  • CMakeLists.txt: Added html/shadow to WebKit_INCLUDE_DIRECTORIES.
  • WebProcess/WebPage/efl/WebPageEfl.cpp:

(WebKit::WebPage::setThemePath): Called RenderThemeEfl::setThemePath instead of setting theme in FrameView.

12:26 AM Changeset in webkit [122816] by shinyak@chromium.org
  • 7 edits
    2 adds in trunk

HTMLMediaElement should not use Element::ensureShadowRoot()
https://bugs.webkit.org/show_bug.cgi?id=77936

Reviewed by Hajime Morita.

Source/WebCore:

a video element and an audio element add UserAgentShadowRoot dynamically, and they assume that it's the oldest ShadowRoot.
However an AuthorShadowRoot could be added by a user before a video element and an audio element add UserAgentShadowRoot.
It breaks the assumption that the UserAgentShadowRoot is the oldest.

If the UserAgentShadowRoot is not the oldest, the AuthorShadowRoot a page author added might be ignored.
Since the timing to add UserAgentShadowRoot is not known by a user, the fact that UserAgentShadorRoot is
not the oldest will cause inconsistent behavior.

Adding AuthorShadowRoot to a video element and an audio element is allowed by this patch.

Test: fast/dom/shadow/shadowdom-for-media.html

  • dom/ShadowRoot.cpp:

(WebCore::allowsAuthorShadowRoot):

  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::createShadowSubtree):
(WebCore):
(WebCore::HTMLMediaElement::willAddAuthorShadowRoot):
(WebCore::HTMLMediaElement::createMediaControls):

  • html/HTMLMediaElement.h:

(HTMLMediaElement):

LayoutTests:

Adding Shadow DOM to a video element and an audio element is allowed now.

  • fast/dom/shadow/shadow-disable-expected.txt:
  • fast/dom/shadow/shadow-disable.html:
  • fast/dom/shadow/shadowdom-for-media-expected.txt: Added.
  • fast/dom/shadow/shadowdom-for-media.html: Added.
12:24 AM Styling Form Controls edited by tkent@chromium.org
(diff)
12:23 AM Changeset in webkit [122815] by yosin@chromium.org
  • 7 edits in trunk/LayoutTests

[Forms] Test expectations of datetime/datetime-local/time should not contain milliseconds when they aren't expected
https://bugs.webkit.org/show_bug.cgi?id=91469

Reviewed by Kent Tamura.

This patch gets rid of unexpected millisecond strings from both test
cases and expected text.

This is adaptation of behavior change caused by r119948, introducing
decimal arithmetic, which corrected the expression step mod 1000 used
in BaseDateAndTimeInputType::serialize for checking adding milliseconds
or not, which converts internal date time representation into string.

Before r119948, we used fmod(step, 1000) for this. However, it doesn't
return mathematically correct value when quotient is very large, e.g.
fmod(3.40282346e+38, 1000) returns 616 on x86 linux, although we
expect that it is 0.

  • fast/forms/datetime/datetime-stepup-stepdown-from-renderer-expected.txt: Get rid of millig seconds for big step value tests.
  • fast/forms/datetime/datetime-stepup-stepdown-from-renderer.html: ditto.
  • fast/forms/datetimelocal/datetimelocal-stepup-stepdown-from-renderer-expected.txt: ditto.
  • fast/forms/datetimelocal/datetimelocal-stepup-stepdown-from-renderer.html: ditto.
  • fast/forms/time/time-stepup-stepdown-from-renderer-expected.txt: Get rid of millig seconds for a big step value test and expected value's fractinal second is zero.
  • fast/forms/time/time-stepup-stepdown-from-renderer.html: ditto.
12:19 AM Changeset in webkit [122814] by kkristof@inf.u-szeged.hu
  • 2 edits
    3 adds in trunk/LayoutTests

[Qt] Unreviewed gardening.

  • platform/qt/Skipped:
  • platform/qt/fast/sub-pixel/selection/selection-gaps-at-fractional-offsets-expected.txt: Added.
12:18 AM Styling Form Controls edited by tkent@chromium.org
Add a section for <input type=date> (diff)
12:11 AM Changeset in webkit [122813] by commit-queue@webkit.org
  • 12 edits in trunk

Introduce ENABLE_CSS_IMAGE_ORIENTATION compile flag
https://bugs.webkit.org/show_bug.cgi?id=89055

Patch by David Barr <davidbarr@chromium.org> on 2012-07-17
Reviewed by Kent Tamura.

The css3-images module is at candidate recommendation.
http://www.w3.org/TR/2012/CR-css3-images-20120417/#the-image-orientation

Add a configuration option for CSS image-orientation support, disabling it by default.

.:

  • Source/cmake/WebKitFeatures.cmake:
  • Source/cmakeconfig.h.cmake:

Source/JavaScriptCore:

  • Configurations/FeatureDefines.xcconfig:

Source/WebKit/mac:

  • Configurations/FeatureDefines.xcconfig:

Source/WebKit2:

  • Configurations/FeatureDefines.xcconfig:

Tools:

  • Scripts/webkitperl/FeatureList.pm:
  • qmake/mkspecs/features/features.pri:
12:08 AM Changeset in webkit [122812] by dbates@webkit.org
  • 2 edits in trunk/Source/WebCore

Attempt to fix the Chromium Mac build after <http://trac.webkit.org/changeset/122802>
(https://bugs.webkit.org/show_bug.cgi?id=91451)

Remove unused private instance variable AbsoluteQuadsGeneratorContext::m_wasFixed.
This instance variable has remained unused since it was added in
<http://trac.webkit.org/changeset/116718> (https://bugs.webkit.org/show_bug.cgi?id=85725).

I'm unclear as to why the Chromium Mac build began to complain about this
unused instance variable following <http://trac.webkit.org/changeset/122802>, since this
code has been in the tree for a while and we previously instantiated AbsoluteQuadsGeneratorContext
with wasFixed (even though it wasn't used). Regardless, we should remove the unused
instance variable AbsoluteQuadsGeneratorContext::m_wasFixed.

  • rendering/RenderInline.cpp:

(WebCore): Remove AbsoluteQuadsGeneratorContext::m_wasFixed.
(WebCore::RenderInline::absoluteQuads):

Jul 16, 2012:

11:43 PM Changeset in webkit [122811] by abarth@webkit.org
  • 1 edit
    2 deletes in trunk/Source/WebKit/chromium

Unreviewed. Remove two empty directories.

  • public/linuxish: Removed.
  • src/linuxish: Removed.
11:37 PM FeatureFlags edited by davidbarr@chromium.org
(diff)
11:27 PM Changeset in webkit [122810] by gyuyoung.kim@samsung.com
  • 25 edits
    6 adds in trunk/Source

Add RegisterProtocolHandlerClient to the Modules/protocolhandler
https://bugs.webkit.org/show_bug.cgi?id=90940

Reviewed by Hajime Morita.

Source/WebCore:

As a step to let protocol handler be moved to the modules, RegisterProtocolHandlerClient needs
to be added to the Modules/protocolhandler. Because ChromeClient has some virtual functions for
protocol handlers, virtual functions should be moved to RegisterProtocolHandlerClient.

In addition, NavigatorRegisterProtocolHandler should be supplementable.

No new tests. Covered by existing tests.

  • GNUmakefile.list.am:
  • Modules/protocolhandler/NavigatorRegisterProtocolHandler.cpp:

(WebCore::NavigatorRegisterProtocolHandler::from):
(WebCore::NavigatorRegisterProtocolHandler::create):
(WebCore):
(WebCore::NavigatorRegisterProtocolHandler::registerProtocolHandler):
(WebCore::customHandlersStateString):
(WebCore::NavigatorRegisterProtocolHandler::isProtocolHandlerRegistered):
(WebCore::NavigatorRegisterProtocolHandler::unregisterProtocolHandler):
(WebCore::NavigatorRegisterProtocolHandler::supplementName):
(WebCore::provideRegisterProtocolHandlerTo):

  • Modules/protocolhandler/NavigatorRegisterProtocolHandler.h:

(WebCore):
(NavigatorRegisterProtocolHandler):
(WebCore::NavigatorRegisterProtocolHandler::NavigatorRegisterProtocolHandler):
(WebCore::NavigatorRegisterProtocolHandler::client):

  • Modules/protocolhandler/RegisterProtocolHandlerClient.h: Added.

(WebCore):
(RegisterProtocolHandlerClient):

  • WebCore.gypi:
  • loader/EmptyClients.h:
  • page/ChromeClient.h:

(ChromeClient):

  • platform/network/soup/CookieJarSoup.cpp:

(WebCore::setCookies):
(WebCore::getRawCookies):

Source/WebKit:

As a step to let protocol handler be moved to the modules, RegisterProtocolHandlerClient needs
to be added to the Modules/protocolhandler. Because ChromeClient has some virtual functions for
protocol handlers, virtual functions should be moved to RegisterProtocolHandlerClient.

  • PlatformEfl.cmake: Add RegisterProtocolHandlerEfl files and include path.

Source/WebKit/chromium:

As a step to let protocol handler be moved to the modules, RegisterProtocolHandlerClient needs
to be added to the Modules/protocolhandler. Because ChromeClient has some virtual functions for
protocol handlers, virtual functions should be moved to RegisterProtocolHandlerClient.

In order to support this, RegisterProtocolHandlerClientImpl class is added to ChromeClientImpl files.

In addition, existing functions related to protocol handler in ChromeClientImpl class are moved to
RegisterProtocolHandlerClientImpl class.

  • WebKit.gyp:
  • src/ChromeClientImpl.cpp: Implement RegisterProtocolHandlerClientImpl class.

(WebKit):
(WebKit::RegisterProtocolHandlerClientImpl::create):
(WebKit::RegisterProtocolHandlerClientImpl::RegisterProtocolHandlerClientImpl):
(WebKit::RegisterProtocolHandlerClientImpl::registerProtocolHandler):

  • src/ChromeClientImpl.h:

(ChromeClientImpl):
(RegisterProtocolHandlerClientImpl):
(WebKit::RegisterProtocolHandlerClientImpl::~RegisterProtocolHandlerClientImpl):
(WebKit):

  • src/WebViewImpl.cpp: Register RegisterProtocolHandlerClientImpl in order to support supplement.

(WebKit::WebViewImpl::WebViewImpl):

  • src/WebViewImpl.h:

Source/WebKit/efl:

As a step to let protocol handler be moved to the modules, RegisterProtocolHandlerClient needs
to be added to the Modules/protocolhandler. Because ChromeClient has some virtual functions for
protocol handlers, virtual functions should be moved to RegisterProtocolHandlerClient

In order to support this, RegisterProtocolHandlerClientEfl class is added and ewk_view registers
RegisterProtocolHandlerClientEfl. In addition, existing concrete functions in ChromeClientEfl are moved
to RegisterProtocolHandlerClientEfl.

  • WebCoreSupport/ChromeClientEfl.cpp:

(WebCore):

  • WebCoreSupport/ChromeClientEfl.h:
  • WebCoreSupport/RegisterProtocolHandlerClientEfl.cpp: Added.

(WebCore):
(WebCore::customHandlerDataCreate):
(WebCore::customHandlerDataDelete):
(WebCore::RegisterProtocolHandlerClientEfl::RegisterProtocolHandlerClientEfl):
(WebCore::RegisterProtocolHandlerClientEfl::registerProtocolHandler):
(WebCore::RegisterProtocolHandlerClientEfl::isProtocolHandlerRegistered):
(WebCore::RegisterProtocolHandlerClientEfl::unregisterProtocolHandler):

  • WebCoreSupport/RegisterProtocolHandlerClientEfl.h: Added.

(RegisterProtocolHandlerClientEfl):
(WebCore::RegisterProtocolHandlerClientEfl::~RegisterProtocolHandlerClientEfl):

  • ewk/ewk_view.cpp:

(_ewk_view_priv_new):

Source/WebKit/gtk:

As a step to let protocol handler be moved to the modules, RegisterProtocolHandlerClient needs
to be added to the Modules/protocolhandler. Because ChromeClient has some virtual functions for
protocol handlers, virtual functions should be moved to RegisterProtocolHandlerClient.

In order to support this, RegisterProtocolHandlerClientGtk class is added and webview registers
RegisterProtocolHandlerClientGtk. In addition, existing concrete functions in ChromeClientGtk are moved
to RegisterProtocolHandlerClientGtk.

  • GNUmakefile.am:
  • WebCoreSupport/ChromeClientGtk.cpp:
  • WebCoreSupport/ChromeClientGtk.h:

(ChromeClient):

  • WebCoreSupport/RegisterProtocolHandlerClientGtk.cpp: Added.

(WebKit):
(WebKit::RegisterProtocolHandlerClient::RegisterProtocolHandlerClient):
(WebKit::RegisterProtocolHandlerClient::registerProtocolHandler):

  • WebCoreSupport/RegisterProtocolHandlerClientGtk.h: Added.

(WebKit):
(RegisterProtocolHandlerClient):
(WebKit::RegisterProtocolHandlerClient::~RegisterProtocolHandlerClient):

  • webkit/webkitwebview.cpp:

(webkit_web_view_init):

Source/WebKit2:

As a step to let protocol handler be moved to the modules, RegisterProtocolHandlerClient needs
to be added to the Modules/protocolhandler. Because ChromeClient has some virtual functions for
protocol handlers, virtual functions should be moved to RegisterProtocolHandlerClient.

In order to support this, WebRegisterProtocolHandlerClient class is added. However, this is not implemented yet.
In addition, existing virtual functions in WebChromeClient are moved to WebRegisterProtocolHandlerClient.

  • WebProcess/WebCoreSupport/WebChromeClient.h:
  • WebProcess/WebCoreSupport/WebRegisterProtocolHandlerClient.h: Added.

(WebKit):
(WebRegisterProtoclHandlerClient):
(WebKit::WebRegisterProtoclHandlerClient::isProtocolHandlerRegistered):
(WebKit::WebRegisterProtoclHandlerClient::unregisterProtocolHandler):

11:27 PM Changeset in webkit [122809] by abarth@webkit.org
  • 2 edits
    2 moves in trunk/Tools

[Chromium] Move Task.(cpp|h) into TestRunner.a
https://bugs.webkit.org/show_bug.cgi?id=91446

Reviewed by Ryosuke Niwa.

Task is a dependency of EventSender, which needs to move into TestRunner.a.

  • DumpRenderTree/DumpRenderTree.gypi:
  • DumpRenderTree/chromium/TestRunner/Task.cpp: Renamed from Tools/DumpRenderTree/chromium/Task.cpp.
  • DumpRenderTree/chromium/TestRunner/Task.h: Renamed from Tools/DumpRenderTree/chromium/Task.h.
11:19 PM Changeset in webkit [122808] by abarth@webkit.org
  • 2 edits
    4 moves in trunk/Tools

[Chromium] Move AccessibilityController and AccessibilityUIElement into TestRunner.a
https://bugs.webkit.org/show_bug.cgi?id=91443

Reviewed by Tony Chang.

Purely a file move (and a sorting of #includes).

  • DumpRenderTree/DumpRenderTree.gypi:
  • DumpRenderTree/chromium/TestRunner/AccessibilityController.cpp: Renamed from Tools/DumpRenderTree/chromium/AccessibilityController.cpp.
  • DumpRenderTree/chromium/TestRunner/AccessibilityController.h: Renamed from Tools/DumpRenderTree/chromium/AccessibilityController.h.
  • DumpRenderTree/chromium/TestRunner/AccessibilityUIElement.cpp: Renamed from Tools/DumpRenderTree/chromium/AccessibilityUIElement.cpp.
  • DumpRenderTree/chromium/TestRunner/AccessibilityUIElement.h: Renamed from Tools/DumpRenderTree/chromium/AccessibilityUIElement.h.
10:11 PM Changeset in webkit [122807] by yosin@chromium.org
  • 2 edits in trunk/Source/WebKit/chromium

REGRESSION(r122552): DecimalTest tests (CeilingSmallExponent and FloorSmallExponent) started failing.
https://bugs.webkit.org/show_bug.cgi?id=91244

Reviewed by Kent Tamura.

This patch enables and updates disabled test cases of DecimalTest
caused by fixes in r122552 of Decimal::ceiling() and Decimal::floor()
for small fraction numbers and added test cases. Fixes in r122552
itself is correct however, it didn't update existing tests for very small
fraction numbers.

  • tests/DecimalTest.cpp:

(TEST_F): CeilingSmallExponent: Change expected value to 1 for ceiling(1e-1000),
ceiling rounds number toward positive infinity.
(TEST_F): FloorSmallExponent: Change expected value to -1 for floor(-1e-1000),
floor rounds number toward negative infinity.

9:37 PM Changeset in webkit [122806] by commit-queue@webkit.org
  • 17 edits
    4 adds in trunk

.: Expose an export for the iconUrl list so Internals can use it
https://bugs.webkit.org/show_bug.cgi?id=88665

Patch by Pete Williamson <petewil@google.com> on 2012-07-16
Reviewed by Kent Tamura.

  • Source/autotools/symbols.filter: export iconURLs

Source/WebCore: Changed the behavior of iconURLs to always recalculate the list.
https://bugs.webkit.org/show_bug.cgi?id=88665

Patch by Pete Williamson <petewil@google.com> on 2012-07-16
Reviewed by Kent Tamura.

As it turns out, it can contain stale URLs in the case that some script
manipulates the DOM, which breaks scripts trying to reset the favicon
URL. Also added a method in Internals to allow tests to get the list of
icon

Tests: fast/dom/icon-url-change.html

fast/dom/icon-url-list.html

  • WebCore.exp.in: export Document::iconURLs on the mac for the Internals class
  • dom/Document.cpp:

(WebCore::Document::iconURLs): Changed the method to recalculate the iconURL list every time
(WebCore::Document::addIconURL): we no longer need to add to the internal list since we recalculate it
(WebCore::Document::setUseSecureKeyboardEntryWhenActive): removed extra whitespace

  • dom/Document.h:

(Document): removed the addIconURL method which is no longer used

  • html/HTMLLinkElement.cpp:

(WebCore::HTMLLinkElement::iconType): exposed the icon type with an accessor
(WebCore):
(WebCore::HTMLLinkElement::iconSizes): exposed the icon sizes with an accessor

  • html/HTMLLinkElement.h:

(HTMLLinkElement): declared the icon type and size accessors

  • testing/Internals.cpp:

(WebCore::Internals::iconURLs): made a method to be used by unit tests for inspecting the icon URL list
(WebCore):

  • testing/Internals.h:

(Internals): declared the method for unit testing the icon URL list

  • testing/Internals.idl: exported the Document::iconURLs function

Source/WebKit2: Export the iconURL list to make it available to the Internals class for testing
https://bugs.webkit.org/show_bug.cgi?id=88665

Patch by Pete Williamson <petewil@google.com> on 2012-07-16
Reviewed by Kent Tamura.

  • win/WebKit2.def: export the DocumentL::iconURLs function

LayoutTests: Add some new unit tests to test the favicon changing dynamically
https://bugs.webkit.org/show_bug.cgi?id=88665

Patch by Pete Williamson <petewil@google.com> on 2012-07-16
Reviewed by Kent Tamura.

  • fast/dom/icon-url-change-expected.txt: Added.
  • fast/dom/icon-url-change.html: Added a new test for changing the favicon dynamically
  • fast/dom/icon-url-list-expected.txt: Added.
  • fast/dom/icon-url-list.html: Added a new test for multiple favicons in the HTML header
  • fast/dom/icon-url-property-expected.txt: update unit test expectations
  • fast/dom/icon-url-property.html: update and enable existing favicon test
  • platform/chromium/TestExpectations: reenable the url-property test
9:33 PM Changeset in webkit [122805] by commit-queue@webkit.org
  • 12 edits in trunk

WebCore needs WEBCORE_TESTING macro to mark methods being exported for testing.
https://bugs.webkit.org/show_bug.cgi?id=90764

Patch by Hajime Morrita <morrita@chromium.org> on 2012-07-16
Reviewed by Adam Barth.

.:

Removed symbols which are now covered by WEBCORE_TESTING.

  • Source/autotools/symbols.filter:

Source/WebCore:

Defined WEBCORE_TESTING based on USE(EXPORT_MACROS_FOR_TESTING) and
applied it to FrameDestructionObserver.

  • bindings/js/JSDOMGlobalObject.h: Removed conflicting symbols
  • page/FrameDestructionObserver.h: Added WEBKIT_TESTING

(FrameDestructionObserver):

  • platform/PlatformExportMacros.h:

Source/WebKit2:

Removed symbols which are now covered by WEBCORE_TESTING.

  • win/WebKit2.def:
  • win/WebKit2CFLite.def:

Source/WTF:

Added USE(EXPORT_MACROS_FOR_TESTING) and enabled it on GTK and Windows.

  • wtf/ExportMacros.h:
  • wtf/Platform.h:
9:00 PM Changeset in webkit [122804] by abarth@webkit.org
  • 4 edits in trunk/Tools

[Chromium] AccessibilityController shouldn't know anything about TestShell
https://bugs.webkit.org/show_bug.cgi?id=91441

Reviewed by Tony Chang.

This patch is a precursor to moving AccessibilityController.cpp into TestRunner.a.

  • DumpRenderTree/chromium/AccessibilityController.cpp:

(AccessibilityController::AccessibilityController):
(AccessibilityController::getFocusedElement):
(AccessibilityController::getRootElement):

  • DumpRenderTree/chromium/AccessibilityController.h:

(WebKit):
(AccessibilityController):
(AccessibilityController::setWebView):

  • DumpRenderTree/chromium/TestShell.cpp:

(TestShell::initialize):
(TestShell::createMainWindow):
(TestShell::~TestShell):

8:51 PM Changeset in webkit [122803] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit2

[EFL][WK2] Implement decidePolicyForResponse in policy client
https://bugs.webkit.org/show_bug.cgi?id=91401

Patch by Christophe Dumez <Christophe Dumez> on 2012-07-16
Reviewed by Kenneth Rohde Christiansen.

Provide implementation for decidePolicyForResponse callback
in WebKit2 EFL's policy client.

  • UIProcess/API/efl/ewk_view_policy_client.cpp:

(decidePolicyForResponseCallback):
(ewk_view_policy_client_attach):

8:26 PM Changeset in webkit [122802] by commit-queue@webkit.org
  • 5 edits
    2 adds in trunk

REGRESSION: RenderInline::absoluteQuads produces incorrect results for fixed position.
https://bugs.webkit.org/show_bug.cgi?id=91451

Patch by Kiran Muppala <cmuppala@apple.com> on 2012-07-16
Reviewed by Simon Fraser.

Source/WebCore:

RenderInline::absoluteQuads relies on copies of RenderGeometryMap,
created indirectly by passing AbsoluteQuadsGeneratorContext object by
value. These copies are unsafe because the individual transform steps
within the geometry map include a owned poitner to their respective
transform.

Modify the callee methods to take context by reference and disable
copy constructor for RenderGeometryMap.

Test: fast/inline/inline-fixed-position-boundingbox.html

  • rendering/RenderGeometryMap.h:

(WebCore::RenderGeometryMapStep::RenderGeometryMapStep): Add missing
m_offset to copy constructor initialization list.
(RenderGeometryMap): Disable copy constructor.

  • rendering/RenderInline.cpp: Pass context object by reference.

(WebCore::RenderInline::generateLineBoxRects):
(WebCore::RenderInline::generateCulledLineBoxRects):
(WebCore::RenderInline::absoluteRects):
(WebCore::RenderInline::absoluteQuads):
(WebCore::RenderInline::linesBoundingBox):
(WebCore::RenderInline::culledInlineVisualOverflowBoundingBox):
(WebCore::RenderInline::addFocusRingRects):

  • rendering/RenderInline.h:

(RenderInline::generateLineBoxRects): Update method declarations to
show pass by reference context parameter.
(RenderInline::generateCulledLineBoxRects): Ditto.

LayoutTests:

Add a regression test for boundingBox of an inline element with fixed position.

  • fast/inline/inline-fixed-position-boundingbox-expected.txt: Added.
  • fast/inline/inline-fixed-position-boundingbox.html: Added.
8:24 PM Changeset in webkit [122801] by hayato@chromium.org
  • 3 edits
    2 adds in trunk

Some events should be always stopped at shadow boundary.
https://bugs.webkit.org/show_bug.cgi?id=90436

Reviewed by Ryosuke Niwa.

Source/WebCore:

The spec is here:
https://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/shadow/index.html#events-that-are-always-stopped

Test: fast/dom/shadow/events-stopped-at-shadow-boundary.html

  • dom/EventDispatcher.cpp:

(WebCore::EventDispatcher::determineDispatchBehavior):

LayoutTests:

  • fast/dom/shadow/events-stopped-at-shadow-boundary-expected.txt: Added.
  • fast/dom/shadow/events-stopped-at-shadow-boundary.html: Added.
8:20 PM Changeset in webkit [122800] by abarth@webkit.org
  • 4 edits
    2 adds in trunk/Tools

[Chromium] Introduce TestInterfaces to hold all the JavaScript interfaces needed for LayoutTests
https://bugs.webkit.org/show_bug.cgi?id=91312

Reviewed by Ryosuke Niwa.

Looking forward to moving more objects into TestRunner.a, we're going
to need an object to own all the interfaces and to put them through
their lifecycle.

  • DumpRenderTree/DumpRenderTree.gypi:
  • DumpRenderTree/chromium/TestShell.cpp:

(TestShell::initialize):
(TestShell::resetTestController):
(TestShell::bindJSObjectsToWindow):

  • DumpRenderTree/chromium/TestShell.h:

(TestShell):

  • DumpRenderTree/chromium/TestRunner/TestInterfaces.cpp: Added.
  • DumpRenderTree/chromium/TestRunner/TestInterfaces.h: Added.
8:09 PM Changeset in webkit [122799] by ryuan.choi@samsung.com
  • 14 edits in trunk

[EFL][WK2] Add APIs to support theme.
https://bugs.webkit.org/show_bug.cgi?id=90107

Reviewed by Hajime Morita.

Source/WebKit2:

RenderThemeEfl uses edj file to render native theme of form elements.
This patch provides default theme and a way to change edj theme file for
WebKit2/Efl.

  • PlatformEfl.cmake:
  • UIProcess/API/efl/ewk_view.cpp:

(_Ewk_View_Private_Data):
(ewk_view_base_add):
(ewk_view_theme_set):
(ewk_view_theme_get):

  • UIProcess/API/efl/ewk_view.h:
  • UIProcess/WebPageProxy.h:

(WebPageProxy):

  • UIProcess/efl/WebPageProxyEfl.cpp:

(WebKit::WebPageProxy::setThemePath):

  • WebProcess/WebPage/WebPage.h:
  • WebProcess/WebPage/WebPage.messages.in:
  • WebProcess/WebPage/efl/WebPageEfl.cpp:

(WebKit::WebPage::setThemePath):

Tools:

Override default theme path for MiniBrowser and WebKitTestRunner.

  • MiniBrowser/efl/CMakeLists.txt:
  • MiniBrowser/efl/main.c:

(browserCreate):

  • WebKitTestRunner/PlatformEfl.cmake:
  • WebKitTestRunner/efl/PlatformWebViewEfl.cpp:

(WTR::PlatformWebView::PlatformWebView):

8:01 PM Changeset in webkit [122798] by ryuan.choi@samsung.com
  • 29 edits
    2 adds in trunk

[EFL][DRT] Implement dumpFrameScrollPosition
https://bugs.webkit.org/show_bug.cgi?id=87638

Reviewed by Hajime Morita.

Tools:

  • DumpRenderTree/efl/DumpRenderTree.cpp:

(dumpFrameScrollPosition): Implemented.
(shouldDumpFrameScrollPosition): Fixed wrong condition like other ports.

LayoutTests:

Updated expected results to dump scrolled position.

  • platform/efl/compositing/geometry/fixed-in-composited-expected.txt:
  • platform/efl/compositing/geometry/horizontal-scroll-composited-expected.txt:
  • platform/efl/compositing/geometry/video-fixed-scrolling-expected.txt:
  • platform/efl/compositing/overflow/fixed-position-ancestor-clip-expected.txt:
  • platform/efl/css2.1/20110323/abspos-containing-block-initial-001-expected.txt:
  • platform/efl/fast/block/positioning/rtl-fixed-positioning-expected.txt:
  • platform/efl/fast/block/positioning/vertical-rl/fixed-positioning-expected.txt:
  • platform/efl/fast/dom/focus-contenteditable-expected.txt:
  • platform/efl/fast/dom/scroll-reveal-left-overflow-expected.txt:
  • platform/efl/fast/dom/scroll-reveal-top-overflow-expected.txt:
  • platform/efl/fast/dynamic/anchor-lock-expected.txt:
  • platform/efl/fast/events/autoscroll-expected.txt:
  • platform/efl/fast/events/reveal-link-when-focused-expected.txt:
  • platform/efl/fast/layers/scroll-rect-to-visible-expected.txt:
  • platform/efl/fast/multicol/scrolling-overflow-expected.txt: Added.
  • platform/efl/fast/overflow/clip-rects-fixed-ancestor-expected.txt: Added.
  • platform/efl/fast/overflow/overflow_hidden-expected.txt:
  • platform/efl/fast/overflow/position-fixed-transform-clipping-expected.txt:
  • platform/efl/fast/overflow/scrollRevealButton-expected.txt:
  • platform/efl/fast/repaint/fixed-child-move-after-scroll-expected.txt:
  • platform/efl/fast/repaint/fixed-child-of-fixed-move-after-scroll-expected.txt:
  • platform/efl/fast/repaint/fixed-child-of-transformed-move-after-scroll-expected.txt:
  • platform/efl/fast/repaint/fixed-expected.txt:
  • platform/efl/fast/repaint/fixed-move-after-scroll-expected.txt:
  • platform/efl/fast/repaint/fixed-tranformed-expected.txt:
  • platform/efl/fast/repaint/repaint-during-scroll-expected.txt:
  • platform/efl/http/tests/navigation/postredirect-goback1-expected.txt:
  • platform/efl/transforms/2d/transform-fixed-container-expected.txt:
7:25 PM Changeset in webkit [122797] by yosin@chromium.org
  • 3 edits in trunk/Source/WebCore

REGRESSION(r119948): [Form] HTMLInputElement.valueAsNumber for input type "month" should return number of month since January 1970
https://bugs.webkit.org/show_bug.cgi?id=91211

Reviewed by Kent Tamura.

This patch changes BaseDateAndTimeInputType::valueAsDouble() to call
virtual function parseToNumber() which "month" input type overrides
instead of non-virtual function parseToDouble() which returns number
of milliseconds.

No new tests. Existing test (fast/form/month/input-valueasnumber-month.html) coverts this, although it is disabled.

  • html/BaseDateAndTimeInputType.cpp:

(WebCore::BaseDateAndTimeInputType::valueAsDouble): Changed to call parseToNumber().
(WebCore::BaseDateAndTimeInputType::parseToNumber): Changed to what parseToDouble() did.

  • html/BaseDateAndTimeInputType.h:

(BaseDateAndTimeInputType): Remove parseToDouble().

7:10 PM Changeset in webkit [122796] by eae@chromium.org
  • 3 edits in trunk/LayoutTests

Unreviewed chromium mac rebaseline of fast/text/textIteratorNilRenderer for r122769.

  • platform/chromium-mac-snowleopard/fast/text/textIteratorNilRenderer-expected.png:
  • platform/chromium-mac/fast/text/textIteratorNilRenderer-expected.png:
6:43 PM Changeset in webkit [122795] by fpizlo@apple.com
  • 9 edits in trunk/Source/JavaScriptCore

Unreviewed, roll out 122790 because it broke the Windows build. I'm not
sure what to do with exported symbols that are predicated on NDEBUG.

  • JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def:
  • bytecode/CodeBlock.cpp:

(JSC):

  • bytecode/CodeBlock.h:

(CodeBlock):

  • bytecompiler/BytecodeGenerator.cpp:

(JSC::BytecodeGenerator::generate):

  • dfg/DFGJITCompiler.cpp:

(JSC::DFG::JITCompiler::link):

  • interpreter/Interpreter.cpp:

(JSC):
(JSC::Interpreter::dumpRegisters):
(JSC::getCallerInfo):
(JSC::Interpreter::getStackTrace):
(JSC::Interpreter::retrieveCallerFromVMCode):

  • interpreter/Interpreter.h:

(Interpreter):

  • jsc.cpp:

(GlobalObject::finishCreation):

6:39 PM Changeset in webkit [122794] by eae@chromium.org
  • 29 edits
    1 delete in trunk/LayoutTests

Unreviewed chromium mac/win rebaseline for r122769.

  • platform/chromium-mac-snowleopard/css1/basic/inheritance-expected.png:
  • platform/chromium-mac-snowleopard/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png:
  • platform/chromium-mac-snowleopard/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png:
  • platform/chromium-mac-snowleopard/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.png:
  • platform/chromium-mac-snowleopard/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png:
  • platform/chromium-mac-snowleopard/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png:
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug18359-expected.png:
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug24200-expected.png:
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug28928-expected.png:
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug73321-expected.png:
  • platform/chromium-mac/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png:
  • platform/chromium-mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png:
  • platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.png:
  • platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png:
  • platform/chromium-mac/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png:
  • platform/chromium-mac/tables/mozilla/bugs/bug18359-expected.png:
  • platform/chromium-mac/tables/mozilla/bugs/bug24200-expected.png:
  • platform/chromium-mac/tables/mozilla/bugs/bug28928-expected.png:
  • platform/chromium-mac/tables/mozilla/bugs/bug73321-expected.png:
  • platform/chromium-win-xp/css1: Removed.
  • platform/chromium-win-xp/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png:
  • platform/chromium-win-xp/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png:
  • platform/chromium-win/css1/basic/inheritance-expected.png:
  • platform/chromium-win/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png:
  • platform/chromium-win/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png:
  • platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.png:
  • platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png:
  • platform/chromium-win/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug73321-expected.png:
6:38 PM Changeset in webkit [122793] by tkent@chromium.org
  • 2 edits in branches/chromium/1180

Merge 122212 -

RTL calendar picker for <input type=date> is too narrow and clipped
https://bugs.webkit.org/show_bug.cgi?id=90864

Reviewed by Kentaro Hara.

.:

  • ManualTests/forms/calendar-picker.html:
  • Add isRTL:true for the arabic setting
  • Reset the iframe size when the setting is changed.

Source/WebCore:

Tests: ManualTests/forms/calendar-picker.html

  • Resources/calendarPicker.js:

(fixWindowSize):
Checks the left edge of elemenets in RTL.
(layout): Add dir=ltr for the manual test, which re-uses the document.

TBR=tkent@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10780025

6:33 PM Changeset in webkit [122792] by tkent@chromium.org
  • 1 edit in branches/chromium/1180/Source/WebCore/html/ImageInputType.cpp

Merge 122418 -

Accessing width or height of a detached image input element causes crash
https://bugs.webkit.org/show_bug.cgi?id=90885

Reviewed by Kentaro Hara.

Source/WebCore:

Test: fast/forms/image/width-and-height-of-detached-input.html

  • html/ImageInputType.cpp:

(WebCore::ImageInputType::height): Add null check for m_imageLoader.
(WebCore::ImageInputType::width): ditto.

LayoutTests:

  • fast/forms/image/width-and-height-of-detached-input-expected.txt: Added.
  • fast/forms/image/width-and-height-of-detached-input.html: Added.

TBR=tkent@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10780024

6:24 PM Changeset in webkit [122791] by enne@google.com
  • 2 edits in trunk/Source/WebCore

[chromium] Turn off ScrollbarLayerChromium for Windows due to bad alpha values
https://bugs.webkit.org/show_bug.cgi?id=91438

Reviewed by Kenneth Russell.

r120509 turned on blending for scrollbar thumbs. Unfortunately for
Windows XP scrollbar thumbs, their alpha channel is bogus and so the
thumb ends up being completely transparent. This should ultimately be
fixed in Chromium theme code, but in the meantime this patch turns
off the use of ScrollbarLayerChromium.

This change makes Windows scrollbars fall back to using normal
ContentLayerChromiums and being painted all in one layer on the main
thread rather than being painted separately and composited on the
compositor thread.

  • page/scrolling/chromium/ScrollingCoordinatorChromium.cpp:

(WebCore::createScrollbarLayer):

6:14 PM Changeset in webkit [122790] by oliver@apple.com
  • 9 edits in trunk/Source/JavaScriptCore

dumpCallFrame is broken in ToT
https://bugs.webkit.org/show_bug.cgi?id=91444

Reviewed by Gavin Barraclough.

Various changes have been made to the SF calling convention, but
dumpCallFrame has not been updated to reflect these changes.
That resulted in both bogus information, as well as numerous
assertions of sadness.

This patch makes dumpCallFrame actually work again and adds the
wonderful feature of telling you the name of the variable that a
register reflects, or what value it contains.

  • bytecode/CodeBlock.cpp:

(JSC::CodeBlock::nameForRegister):

A really innefficient mechanism for finding the name of a local register.
This should only ever be used by debug code so this should be okay.

  • bytecode/CodeBlock.h:

(CodeBlock):

  • bytecompiler/BytecodeGenerator.cpp:

(JSC::BytecodeGenerator::generate):

Debug builds no longer throw away a functions symbol table, this allows
us to actually perform a register# to name mapping

  • dfg/DFGJITCompiler.cpp:

(JSC::DFG::JITCompiler::link):

We weren't propogating the bytecode offset here leading to assertions
in debug builds when dumping bytecode of DFG compiled code.

  • interpreter/Interpreter.cpp:

(JSC):
(JSC::Interpreter::dumpRegisters):

Rework to actually be correct.

(JSC::getCallerInfo):

Return the byteocde offset as well now, given we have to determine it
anyway.

(JSC::Interpreter::getStackTrace):
(JSC::Interpreter::retrieveCallerFromVMCode):

  • interpreter/Interpreter.h:

(Interpreter):

  • jsc.cpp:

(GlobalObject::finishCreation):
(functionDumpCallFrame):

Give debug builds of JSC a method for calling dumpCallFrame so we can
inspect a callframe without requiring us to break in a debugger.

5:57 PM Changeset in webkit [122789] by commit-queue@webkit.org
  • 1 edit
    2 adds in trunk/Tools

NRWRT Should provide a VS project to work on
https://bugs.webkit.org/show_bug.cgi?id=91436

Patch by Don Olmstead <don.olmstead@am.sony.com> on 2012-07-16
Reviewed by Dirk Pranke.

Adding VS2010 project for modifying webkitpy. Uses pytools
<http://pytools.codeplex.com> which integrates python into
Visual Studio.

  • Scripts/webkitpy/webkitpy.pyproj: Added.
  • Scripts/webkitpy/webkitpy.sln: Added.
5:57 PM Changeset in webkit [122788] by commit-queue@webkit.org
  • 6 edits
    1 add in trunk/Source

Vertical alternate glyph (GSUB) support for OpenTypeVerticalData
https://bugs.webkit.org/show_bug.cgi?id=81389

Patch by Koji Ishii <Koji Ishii> on 2012-07-16
Reviewed by Tony Chang.

Source/WebCore:

This patch adds support for reading 'GSUB' OpenType table to get
vertical alternate glyphs.
http://www.microsoft.com/typography/otspec/gsub.htm

Like bug 81326, this code isn't on any code path yet.

Tests: WebKit/chromium/tests/OpenTypeVerticalDataTest.cpp

  • platform/graphics/opentype/OpenTypeTypes.h:

(WebCore::OpenType::validateTable): Moved from OpenTypeVerticalData.cpp for unit tests.
(OpenType):
(TableBase): Ditto.
(WebCore::OpenType::TableBase::isValidEnd):
(WebCore::OpenType::TableBase::validatePtr):
(WebCore::OpenType::TableBase::validateOffset):

  • platform/graphics/opentype/OpenTypeVerticalData.cpp:

(OpenType): Added several OpenType tables used by 'GSUB' table.
(CoverageTable):
(Coverage1Table):
(Coverage2Table):
(RangeRecord):
(SubstitutionSubTable):
(WebCore::OpenType::SubstitutionSubTable::coverage):
(SingleSubstitution2SubTable):
(LookupTable):
(WebCore::OpenType::LookupTable::getSubstitutions):
(LookupList):
(WebCore::OpenType::LookupList::lookup):
(FeatureTable):
(WebCore::OpenType::FeatureTable::getGlyphSubstitutions):
(FeatureList):
(FeatureRecord):
(WebCore::OpenType::FeatureList::feature):
(LangSysTable):
(WebCore::OpenType::LangSysTable::feature):
(ScriptTable):
(LangSysRecord):
(WebCore::OpenType::ScriptTable::defaultLangSys):
(ScriptList):
(ScriptRecord):
(WebCore::OpenType::ScriptList::script):
(WebCore::OpenType::ScriptList::defaultScript):
(WebCore::OpenType::ScriptList::defaultLangSys):
(GSUBTable):
(WebCore::OpenType::GSUBTable::scriptList):
(WebCore::OpenType::GSUBTable::featureList):
(WebCore::OpenType::GSUBTable::lookupList):
(WebCore::OpenType::GSUBTable::defaultLangSys):
(WebCore::OpenType::GSUBTable::feature):
(WebCore::OpenType::GSUBTable::getVerticalGlyphSubstitutions):
(WebCore::OpenTypeVerticalData::OpenTypeVerticalData):
(WebCore::OpenTypeVerticalData::loadMetrics): Split code to load metrics from ctor.
(WebCore::OpenTypeVerticalData::loadVerticalGlyphSubstitutions): Load the vertical alternate Glyph substitution table.
(WebCore):
(WebCore::OpenTypeVerticalData::substituteWithVerticalGlyphs): Substitute Glyph IDs with vertical alternate Glyph IDs.

  • platform/graphics/opentype/OpenTypeVerticalData.h:

(OpenTypeVerticalData): Added m_verticalGlyphMap.

Source/WebKit/chromium:

Tests for pointer validations for OpenType tables.

  • WebKit.gypi:
  • tests/OpenTypeVerticalDataTest.cpp: Added.

(WebCore):
(TestTable):
(WebCore::TestTable::validateOffset):
(WebCore::TEST):

5:52 PM Changeset in webkit [122787] by scheib@chromium.org
  • 6 edits in trunk/Source/WebCore

Fix spelling of EnforceIFrameAllowFullScreenRequirement and ExemptIFrameAllowFullScreenRequirement.
https://bugs.webkit.org/show_bug.cgi?id=91437

Reviewed by Adrienne Walker.

Document contained spelling errors of 'FulScreen' instead of 'FullScreen'
for the FullScreenCheckType enumeration.

No test changes needed.

  • dom/Document.cpp:

(WebCore::Document::requestFullScreenForElement):

  • dom/Document.h:
  • dom/Element.cpp:

(WebCore::Element::webkitRequestFullscreen):
(WebCore::Element::webkitRequestFullScreen):

  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::enterFullscreen):

  • html/shadow/MediaControlElements.cpp:

(WebCore::MediaControlFullscreenButtonElement::defaultEventHandler):

5:48 PM Changeset in webkit [122786] by morrita@google.com
  • 2 edits in trunk/Source/WebCore

Comment on WebCore::HTMLMediaElement::childShouldCreateRenderer() should explain why
https://bugs.webkit.org/show_bug.cgi?id=91174

Reviewed by Kent Tamura.

Clarified the explanation.

  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::childShouldCreateRenderer):

5:46 PM Changeset in webkit [122785] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

Unreviewed, rolling out r120033.
http://trac.webkit.org/changeset/120033
https://bugs.webkit.org/show_bug.cgi?id=91454

Broke background gradients (Requested by smfr on #webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2012-07-16

  • platform/graphics/GeneratorGeneratedImage.cpp:

(WebCore::GeneratorGeneratedImage::draw):

5:44 PM Changeset in webkit [122784] by kareng@chromium.org
  • 1 edit in branches/chromium/1180/Source/WebCore/platform/graphics/GeneratorGeneratedImage.cpp

Revert 120033 - GeneratorGeneratedImage should cache images for the non-tiled case
https://bugs.webkit.org/show_bug.cgi?id=87094

Patch by Jin Yang <jin.a.yang@intel.com> on 2012-06-11
Reviewed by Simon Fraser.

Source/WebCore:

We cache the generated image if generator is not changed. By compared
with generating image on the fly, it will lose a little pixel precision
and several layout tests should be rebaselined. With this patch, the IE test
drive benchmark "Bayou" can gain about 50%.

No new tests. Performance optimization.

  • platform/graphics/GeneratorGeneratedImage.cpp:

(WebCore::GeneratorGeneratedImage::draw):

LayoutTests:

Update expectations: added failures for baselines to come.

  • platform/chromium/TestExpectations:

TBR=commit-queue@webkit.org
Review URL: https://chromiumcodereview.appspot.com/10787031

5:43 PM Changeset in webkit [122783] by abarth@webkit.org
  • 4 edits
    6 moves
    1 delete in trunk/Tools

[Chromium] Move GamepadController into TestRunner.a
https://bugs.webkit.org/show_bug.cgi?id=91311

Reviewed by Tony Chang.

GamepadController looks like a simple class to move into TestRunner.a
because it has almost zero dependence on TestShell.

  • DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
  • DumpRenderTree/DumpRenderTree.gypi:
  • DumpRenderTree/chromium/TestRunner/CppBoundClass.cpp: Renamed from Tools/DumpRenderTree/chromium/CppBoundClass.cpp.
  • DumpRenderTree/chromium/TestRunner/CppBoundClass.h: Renamed from Tools/DumpRenderTree/chromium/CppBoundClass.h.
  • DumpRenderTree/chromium/TestRunner/CppVariant.cpp: Renamed from Tools/DumpRenderTree/chromium/CppVariant.cpp.
  • DumpRenderTree/chromium/TestRunner/CppVariant.h: Renamed from Tools/DumpRenderTree/chromium/CppVariant.h.
    • GamepadController depends on these bindings helpers.
  • DumpRenderTree/chromium/TestRunner/GamepadController.cpp: Renamed from Tools/DumpRenderTree/chromium/GamepadController.cpp.
  • DumpRenderTree/chromium/TestRunner/GamepadController.h: Renamed from Tools/DumpRenderTree/chromium/GamepadController.h.
    • Just moved these files and removed the unused TestShell references.
  • DumpRenderTree/chromium/TestRunner/Stub.cpp: Removed.
    • No longer needed.
  • DumpRenderTree/chromium/TestShell.cpp:
    • Update call to constructor to avoid passing in this.
5:31 PM Changeset in webkit [122782] by jsbell@chromium.org
  • 8 edits
    3 adds in trunk

IndexedDB: Implement spec updates to IDBTransaction.error
https://bugs.webkit.org/show_bug.cgi?id=91409

Reviewed by Tony Chang.

Source/WebCore:

The Indexed DB spec was updated to resolve some edge cases around the
IDBTransaction.error attribute. It was agreed that accessing error should
never throw, error should be null if the transaction is not finished or
abort() was explicitly called, an appropriate error should be returned if
a commit failed, and a generic AbortError should be used if a request
callback throws. These cases are now handled per spec, except that a reason
is not provided for the commit failure (it's always UnknownError).

Test: storage/indexeddb/transaction-error.html

storage/indexeddb/transaction-abort.html

  • Modules/indexeddb/IDBRequest.cpp:

(WebCore::IDBRequest::dispatchEvent): Refactor some nested if() blocks; don't
re-abort the transaction if dispatching in response to an abort.
(WebCore::IDBRequest::uncaughtExceptionInEventHandler): Abort transaction
only if not already aborting, and set it's error to AbortError.

  • Modules/indexeddb/IDBTransaction.cpp:

(WebCore::IDBTransaction::onAbort): Set error if abort triggered by back end.

  • Modules/indexeddb/IDBTransaction.h:

(WebCore::IDBTransaction::db): Move impl to header file.
(WebCore::IDBTransaction::error): Move impl to header file, simplify.
(IDBTransaction):

  • Modules/indexeddb/IDBTransaction.idl: The error attribute no longer throws.

LayoutTests:

Update transaction-abort test to accomodate refinements in the spec around
IDBTransaction.error and add a dedicated test to exercise all spec behavior
for the property.

  • storage/indexeddb/resources/transaction-abort.js:

(startTest):
(firstAdd):
(secondAdd):
(transactionAborted):

  • storage/indexeddb/resources/transaction-error.js: Added.

(test.request.onsuccess.request.onsuccess.request.onsuccess):
(test.request.onsuccess.request.onsuccess):
(test.request.onsuccess):
(test):
(startTest.trans.onabort):
(startTest):
(testErrorFromRequest.request.onerror):
(testErrorFromRequest.trans.onabort):
(testErrorFromRequest):
(testErrorFromException.request.onerror):
(testErrorFromException.trans.onabort):
(testErrorFromException):

  • storage/indexeddb/transaction-abort-expected.txt:
  • storage/indexeddb/transaction-error-expected.txt: Added.
  • storage/indexeddb/transaction-error.html: Added.
5:31 PM Changeset in webkit [122781] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/chromium

[chromium] Fix WebFrameTest flakiness due to synthetic mouse events
https://bugs.webkit.org/show_bug.cgi?id=91428

Patch by Alexandre Elias <aelias@google.com> on 2012-07-16
Reviewed by Adam Barth.

Synthetic mouse move events on scrolling can cause segfaults in
WebFrameTest due to delayed callbacks on the message loop after
state destruction. This is currently only affecting
the Android port, but has the potential to affect other platforms in the
future.

We can avoid the issue by disabling the deviceSupportsMouse
setting, which shouldn't be needed by any WebFrameTest.

  • tests/FrameTestHelpers.cpp:

(WebKit::FrameTestHelpers::createWebViewAndLoad):

5:03 PM Changeset in webkit [122780] by commit-queue@webkit.org
  • 10 edits in trunk

Source/WebCore: IndexedDB: Introduce putWithIndexKeys and calculate them in the renderer
https://bugs.webkit.org/show_bug.cgi?id=90923

Patch by Alec Flett <alecflett@chromium.org> on 2012-07-16
Reviewed by Darin Fisher.

Refactor IndexWriter to depend only on IDBIndexMetadata and on
(databaseId, objectStoreId, indexId) so that it can talk directly
to the backing store, and also eventually be moved into the renderer.

This also introduces IDBObjectStoreBackendInterface::putWithIndexKeys
as a replacement for IDBObjectStoreBackendInterface::put, already
stubbed out in the chromium port. It will fully replace put()
after both chromium and webkit sides have reached alignment.

No new tests as this is just a refactor and existing tests cover
correctness.

  • Modules/indexeddb/IDBCursor.cpp:

(WebCore::IDBCursor::setValueReady):

  • Modules/indexeddb/IDBIndexBackendImpl.cpp:
  • Modules/indexeddb/IDBIndexBackendImpl.h:
  • Modules/indexeddb/IDBObjectStore.h:

(IDBObjectStore):

  • Modules/indexeddb/IDBObjectStoreBackendImpl.cpp:

(WebCore::IDBObjectStoreBackendImpl::put):
(WebCore):
(WebCore::IDBObjectStoreBackendImpl::putWithIndexKeys):
(WebCore::IDBObjectStoreBackendImpl::putInternal):
(WebCore::IDBObjectStoreBackendImpl::populateIndex):

  • Modules/indexeddb/IDBObjectStoreBackendImpl.h:

(IDBObjectStoreBackendImpl):

  • Modules/indexeddb/IDBObjectStoreBackendInterface.h:
  • Modules/indexeddb/IDBRequest.cpp:

(WebCore::IDBRequest::onSuccess):

Source/WebKit/chromium: IndexedDB: Introduce putWithIndexKeys and calculate them in the renderer
https://bugs.webkit.org/show_bug.cgi?id=90923

Patch by Alec Flett <alecflett@chromium.org> on 2012-07-16
Reviewed by Darin Fisher.

Stub out implementations of putWithIndexKeys(), already implemented
on the chromium side.

  • public/WebIDBObjectStore.h:

(WebKit::WebIDBObjectStore::putWithIndexKeys):

  • src/IDBObjectStoreBackendProxy.cpp:

(WebKit::IDBObjectStoreBackendProxy::putWithIndexKeys):
(WebKit):

  • src/IDBObjectStoreBackendProxy.h:

(IDBObjectStoreBackendProxy):

Tools: [Chromium-android] Don't use test_shell mode of DRT
https://bugs.webkit.org/show_bug.cgi?id=88542

Patch by Xianzhu Wang <wangxianzhu@chromium.org> on 2012-07-16
Reviewed by Dirk Pranke.

Test shell mode is about to be removed.
Switch to use DRT mode for chromium-android.

Summary of changes:

  1. ChromiumAndroidDriver now inherits from WebKitDriver instead of ChromiumDriver (to be deprecated).
  2. Conforms to the DRT mode protocol for input/output of DumpRenderTree.
  3. Added support for Android 'adb shell' input/output (base64, newline mode, etc.)
  • DumpRenderTree/chromium/TestEventPrinter.cpp:

(DRTPrinter::handleImage): Outputs base64 on Android.

  • DumpRenderTree/chromium/TestShellAndroid.cpp:

(platformInit): Changed err_file to err_fifo, required by python ServerProcess.

  • Scripts/webkitpy/layout_tests/port/chromium_android.py:

(ChromiumAndroidPort.init):
(ChromiumAndroidPort.create_driver): Override to create driver without DriverProxy to ensure 1 Driver per run.
(ChromiumAndroidDriver):
(ChromiumAndroidDriver.init):
(ChromiumAndroidDriver.cmd_line):
(ChromiumAndroidDriver._deadlock_detector):
(ChromiumAndroidDriver._drt_cmd_line):
(ChromiumAndroidDriver.start):
(ChromiumAndroidDriver._start):
(ChromiumAndroidDriver._start_once):
(ChromiumAndroidDriver.run_test):
(ChromiumAndroidDriver.stop):
(ChromiumAndroidDriver._command_from_driver_input):
(ChromiumAndroidDriver._read_prompt):

  • Scripts/webkitpy/layout_tests/port/chromium_android_unittest.py:

(ChromiumAndroidPortTest.test_driver_cmd_line):
(ChromiumAndroidDriverTest.test_cmd_line):
(ChromiumAndroidDriverTest):
(ChromiumAndroidDriverTest.test_drt_cmd_line):
(ChromiumAndroidDriverTest.test_read_prompt):
(ChromiumAndroidDriverTest.test_command_from_driver_input):
(ChromiumAndroidDriverTest.test_write_command_and_read_line):

  • Scripts/webkitpy/layout_tests/port/server_process.py:

(ServerProcess.init): Added universal_newlines to handle Android 'adb shell' line ends.
(ServerProcess._start):
(ServerProcess._wait_for_data_and_update_buffers_using_select): Handles unexpected EOF which indicates crash on Android.
(ServerProcess.stop): Added kill_directly parameter to kill the process without waiting it (which always timeouts for Android).
(ServerProcess.replace_outputs): Added to combine different input/output pipes into one ServerProcess.

  • Scripts/webkitpy/layout_tests/port/webkit.py:

(WebKitDriver._command_from_driver_input):
(WebKitDriver.run_test): Changed timeout origin so that slow start() on Android won't cause timeout of layout test case.

  • Scripts/webkitpy/layout_tests/port/webkit_unittest.py:

(MockServerProcess.read_stdout):
(MockServerProcess.start):
(MockServerProcess):
(MockServerProcess.stop):
(MockServerProcess.kill):
(WebKitDriverTest.test_read_block):
(WebKitDriverTest.test_read_binary_block):
(WebKitDriverTest.test_read_base64_block):

4:58 PM Changeset in webkit [122779] by commit-queue@webkit.org
  • 13 edits in trunk/Source

IndexedDB: Introduce putWithIndexKeys and calculate them in the renderer
https://bugs.webkit.org/show_bug.cgi?id=90923

Patch by Alec Flett <alecflett@chromium.org> on 2012-07-16
Reviewed by Darin Fisher.

Source/WebCore:

Refactor IndexWriter to depend only on IDBIndexMetadata and on
(databaseId, objectStoreId, indexId) so that it can talk directly
to the backing store, and also eventually be moved into the renderer.

This also introduces IDBObjectStoreBackendInterface::putWithIndexKeys
as a replacement for IDBObjectStoreBackendInterface::put, already
stubbed out in the chromium port. It will fully replace put()
after both chromium and webkit sides have reached alignment.

No new tests as this is just a refactor and existing tests cover
correctness.

  • Modules/indexeddb/IDBCursor.cpp:

(WebCore::IDBCursor::setValueReady):

  • Modules/indexeddb/IDBIndexBackendImpl.cpp:
  • Modules/indexeddb/IDBIndexBackendImpl.h:
  • Modules/indexeddb/IDBObjectStore.h:

(IDBObjectStore):

  • Modules/indexeddb/IDBObjectStoreBackendImpl.cpp:

(WebCore::IDBObjectStoreBackendImpl::put):
(WebCore):
(WebCore::IDBObjectStoreBackendImpl::putWithIndexKeys):
(WebCore::IDBObjectStoreBackendImpl::putInternal):
(WebCore::IDBObjectStoreBackendImpl::populateIndex):

  • Modules/indexeddb/IDBObjectStoreBackendImpl.h:

(IDBObjectStoreBackendImpl):

  • Modules/indexeddb/IDBObjectStoreBackendInterface.h:
  • Modules/indexeddb/IDBRequest.cpp:

(WebCore::IDBRequest::onSuccess):

Source/WebKit/chromium:

Stub out implementations of putWithIndexKeys(), already implemented
on the chromium side.

  • public/WebIDBObjectStore.h:

(WebKit::WebIDBObjectStore::putWithIndexKeys):

  • src/IDBObjectStoreBackendProxy.cpp:

(WebKit::IDBObjectStoreBackendProxy::putWithIndexKeys):
(WebKit):

  • src/IDBObjectStoreBackendProxy.h:

(IDBObjectStoreBackendProxy):

4:47 PM Changeset in webkit [122778] by wjmaclean@chromium.org
  • 2 edits in trunk/LayoutTests

[chromium] Unreviewed gardening. Layout Test plugins/embed-attributes-style.html is failing
https://bugs.webkit.org/show_bug.cgi?id=91445

Started failing around r122770

  • platform/chromium/TestExpectations:
4:46 PM Changeset in webkit [122777] by dpranke@chromium.org
  • 6 edits in trunk/Tools

nrwt: move a bunch of printing code from manager.py to printing.py
https://bugs.webkit.org/show_bug.cgi?id=91439

Reviewed by Ojan Vafai.

All of the logic that handles what gets logged should eventually
live in printing.py; this patch moves a large chunk of code that
prints all of the stuff after the run completes.

There are no functional changes, this is just moving code
around. Covered by existing tests (updated as necessary).

This code is all pretty messy and most of it should be deleted
(or extracted after the fact from results.json), but I'm saving
that for further patches. My goal is just to manager.py to a
more manageable state.

  • Scripts/webkitpy/layout_tests/controllers/manager.py:

(Manager.prepare_lists_and_print_output):
(Manager.run):
(Manager._mark_interrupted_tests_as_skipped):
(Manager._update_summary_with_result):
(Manager._num_digits):

  • Scripts/webkitpy/layout_tests/controllers/manager_unittest.py:

(ManagerTest.test_interrupt_if_at_failure_limits):
(ResultSummaryTest.summarized_results):

  • Scripts/webkitpy/layout_tests/models/result_summary.py:

(ResultSummary.init):
(ResultSummary.add):
Here we had to add a list of the slow tests to the result
summary so that we didn't need to call back into the manager and
the test expectations object to figure out if a test is SLOW.

  • Scripts/webkitpy/layout_tests/views/printing.py:

(Printer.print_results):
(Printer):
(Printer._print_timing_statistics):
(Printer._print_aggregate_test_statistics):
(Printer._print_individual_test_times):
(Printer._print_test_list_timing):
(Printer._print_directory_timings):
(Printer._print_statistics_for_test_timings):
(Printer._print_result_summary):
(Printer._print_result_summary_entry):

  • Scripts/webkitpy/layout_tests/views/printing_unittest.py:

(Testprinter.test_print_unexpected_results.get_unexpected_results):
(Testprinter):

4:45 PM Changeset in webkit [122776] by enne@google.com
  • 15 edits in trunk/Source

[chromium] Unify compositor quad transforms into content space
https://bugs.webkit.org/show_bug.cgi?id=91350

Reviewed by Kenneth Russell.

Source/WebCore:

For the purpose of simplification and as a first step towards removing
any transform that takes a centered rect, remove the ability of layers
to override the quad transform. All quads and quad transforms operate
on content space with the origin in the top left.

The gutter quads used to use the root layer (that doesn't draw
content) as the layer to create the shared quad state from. This is
now created manually as a layer without bounds should never in general
need a shared quad state created for it.

No change in functionality; tested by existing layout and unit tests.

  • platform/graphics/chromium/cc/CCIOSurfaceLayerImpl.cpp:

(WebCore::CCIOSurfaceLayerImpl::appendQuads):

  • platform/graphics/chromium/cc/CCLayerImpl.cpp:

(WebCore::CCLayerImpl::createSharedQuadState):

  • platform/graphics/chromium/cc/CCLayerImpl.h:

(CCLayerImpl):

  • platform/graphics/chromium/cc/CCRenderPass.cpp:

(WebCore::CCRenderPass::appendQuadsToFillScreen):

  • platform/graphics/chromium/cc/CCSolidColorLayerImpl.cpp:

(WebCore::CCSolidColorLayerImpl::appendQuads):

  • platform/graphics/chromium/cc/CCSolidColorLayerImpl.h:

(CCSolidColorLayerImpl):

  • platform/graphics/chromium/cc/CCTextureLayerImpl.cpp:

(WebCore::CCTextureLayerImpl::appendQuads):

  • platform/graphics/chromium/cc/CCTiledLayerImpl.cpp:
  • platform/graphics/chromium/cc/CCTiledLayerImpl.h:

(CCTiledLayerImpl):

  • platform/graphics/chromium/cc/CCVideoLayerImpl.cpp:

(WebCore::CCVideoLayerImpl::appendQuads):

Source/WebKit/chromium:

Update tests to add bounds/contentBounds properties to layers. This
exposed a bug in the quad culler tests where the draw transform was
incorrectly being set to the origin transform rather than being a
transform that operates on centered layer rects. Fixed this bug.

  • tests/CCQuadCullerTest.cpp:
  • tests/CCSolidColorLayerImplTest.cpp:

(CCLayerTestCommon::TEST):

  • tests/CCTiledLayerImplTest.cpp:

(CCLayerTestCommon::createLayer):

4:05 PM Changeset in webkit [122775] by jsbell@chromium.org
  • 7 edits in trunk

IndexedDB: Resolve test and IDL FIXMEs for a handful of landed patches
https://bugs.webkit.org/show_bug.cgi?id=91423

Reviewed by Tony Chang.

Source/WebCore:

IDBObjectStore.createIndex() had a hack to handle a null keyPath argument for the
DOMString[] overload and treat it as the string "null". Now that IDL arrays are not
nullable by default following r121817 this hack can be removed and the binding layer
will automagically coerce to DOMString.

Test: storage/indexeddb/keypath-basics.html

  • Modules/indexeddb/IDBObjectStore.cpp:

(WebCore::IDBObjectStore::createIndex): Remove special case for null in DOMString[] overload.

  • Modules/indexeddb/IDBObjectStore.idl: Remove Nullable suffix from DOMString[] overload

so that the DOMString overload will match null.

LayoutTests:

Resolve a couple of test-only FIXMEs: range deletion is now supported and
empty transactions commit.

  • storage/indexeddb/key-generator-expected.txt:
  • storage/indexeddb/resources/database-closepending-flag.js:

(testDatabaseClosingSteps): Don't need a dummy request to keep transaction alive.

  • storage/indexeddb/resources/key-generator.js: Can test a range delete now.
3:52 PM Changeset in webkit [122774] by abarth@webkit.org
  • 3 edits
    2 adds in trunk/Tools

[Chromium] Create a stub TestRunner.a target
https://bugs.webkit.org/show_bug.cgi?id=91309

Reviewed by Ryosuke Niwa.

  • DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:
  • DumpRenderTree/DumpRenderTree.gypi:
  • DumpRenderTree/chromium/TestRunner/Stub.cpp: Added.
3:48 PM Changeset in webkit [122773] by commit-queue@webkit.org
  • 13 edits
    5 adds in trunk

Resolve CSS Exclusions shapeInside, shapeOutside properties to Length based WrapShape classes
https://bugs.webkit.org/show_bug.cgi?id=89670

Patch by Bear Travis <betravis@adobe.com> on 2012-07-16
Reviewed by Dirk Schulze.

Source/WebCore:

Layout of CSS Exclusions requires length based WrapShape classes,
rather than the existing CSSValue based CSSWrapShape classes. This
patch adds length based WrapShape analogs to the CSSWrapShapes, and
modifies RenderStyle to use a WrapShape instead of a CSSWrapShape.
The translation between WrapShape and CSSWrapShape classes
is handled by helper functions in the new WrapShapeFunctions files.
StyleBuilder resolves CSSWrapShapes to WrapShapes for layout use.
CSSComputedStyleDeclaration translates WrapShapes to CSSWrapShapes
for style use.

There are existing tests that cover the style serialization / resolution
in fast/exclusions/parsing-wrap-shape-inside.html and
fast/exclusions/parsing/wrap-shape-outside.html

Test: fast/exclusions/parsing-wrap-shape-lengths.html

  • CMakeLists.txt: Build system changes for adding new files
  • GNUmakefile.list.am: Ditto
  • Target.pri: Ditto
  • WebCore.gypi: Ditto
  • WebCore.vcproj/WebCore.vcproj: Ditto
  • WebCore.xcodeproj/project.pbxproj: Ditto
  • css/CSSComputedStyleDeclaration.cpp: Translate WrapShapes back to CSSWrapShapes

(WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue):

  • css/CSSWrapShapes.h: Mostly changing functions to be const

(WebCore::CSSWrapShapeRectangle::type):
(WebCore::CSSWrapShapeCircle::type):
(WebCore::CSSWrapShapeEllipse::type):
(WebCore::CSSWrapShapePolygon::getXAt):
(WebCore::CSSWrapShapePolygon::getYAt):
(WebCore::CSSWrapShapePolygon::values):
(WebCore::CSSWrapShapePolygon::type):

  • css/StyleBuilder.cpp: Resolve CSSWrapShapes to WrapShapes

(WebCore):
(WebCore::ApplyPropertyWrapShape::setValue):
(WebCore::ApplyPropertyWrapShape::applyValue):
(WebCore::ApplyPropertyWrapShape::createHandler):

  • css/WrapShapeFunctions.cpp: Added.

(WebCore):
(WebCore::valueForWrapShape):
(WebCore::convertToLength):
(WebCore::wrapShapeForValue):

  • css/WrapShapeFunctions.h: Added.

(WebCore):

  • rendering/style/RenderStyle.h:
  • rendering/style/StyleRareNonInheritedData.h:

(StyleRareNonInheritedData):

  • rendering/style/WrapShapes.h: Added.

(WebCore):
(WrapShape):
(WebCore::WrapShape::~WrapShape):
(WebCore::WrapShape::WrapShape):
(WrapShapeRectangle):
(WebCore::WrapShapeRectangle::create):
(WebCore::WrapShapeRectangle::left):
(WebCore::WrapShapeRectangle::top):
(WebCore::WrapShapeRectangle::width):
(WebCore::WrapShapeRectangle::height):
(WebCore::WrapShapeRectangle::cornerRadiusX):
(WebCore::WrapShapeRectangle::cornerRadiusY):
(WebCore::WrapShapeRectangle::setLeft):
(WebCore::WrapShapeRectangle::setTop):
(WebCore::WrapShapeRectangle::setWidth):
(WebCore::WrapShapeRectangle::setHeight):
(WebCore::WrapShapeRectangle::setCornerRadiusX):
(WebCore::WrapShapeRectangle::setCornerRadiusY):
(WebCore::WrapShapeRectangle::type):
(WebCore::WrapShapeRectangle::WrapShapeRectangle):
(WrapShapeCircle):
(WebCore::WrapShapeCircle::create):
(WebCore::WrapShapeCircle::left):
(WebCore::WrapShapeCircle::top):
(WebCore::WrapShapeCircle::radius):
(WebCore::WrapShapeCircle::setLeft):
(WebCore::WrapShapeCircle::setTop):
(WebCore::WrapShapeCircle::setRadius):
(WebCore::WrapShapeCircle::type):
(WebCore::WrapShapeCircle::WrapShapeCircle):
(WrapShapeEllipse):
(WebCore::WrapShapeEllipse::create):
(WebCore::WrapShapeEllipse::top):
(WebCore::WrapShapeEllipse::left):
(WebCore::WrapShapeEllipse::radiusX):
(WebCore::WrapShapeEllipse::radiusY):
(WebCore::WrapShapeEllipse::setTop):
(WebCore::WrapShapeEllipse::setLeft):
(WebCore::WrapShapeEllipse::setRadiusX):
(WebCore::WrapShapeEllipse::setRadiusY):
(WebCore::WrapShapeEllipse::type):
(WebCore::WrapShapeEllipse::WrapShapeEllipse):
(WrapShapePolygon):
(WebCore::WrapShapePolygon::create):
(WebCore::WrapShapePolygon::windRule):
(WebCore::WrapShapePolygon::values):
(WebCore::WrapShapePolygon::getXAt):
(WebCore::WrapShapePolygon::getYAt):
(WebCore::WrapShapePolygon::setWindRule):
(WebCore::WrapShapePolygon::appendPoint):
(WebCore::WrapShapePolygon::type):
(WebCore::WrapShapePolygon::WrapShapePolygon):

LayoutTests:

Test that wrap shapes accept different length types
Wrap shape parsing and serialization is tested by parsing-wrap-shape-inside/outside

  • fast/exclusions/parsing-wrap-shape-lengths-expected.txt: Added.
  • fast/exclusions/parsing-wrap-shape-lengths.html: Added.
3:34 PM Changeset in webkit [122772] by ojan@chromium.org
  • 2 edits in trunk/LayoutTests

[chromium] Assign some bug numbers to failing tests.

  • platform/chromium/TestExpectations:
3:17 PM Changeset in webkit [122771] by fpizlo@apple.com
  • 1 edit
    2 adds in trunk/Source/JavaScriptCore

Unreviewed, adding forgotten files.

  • dfg/DFGRegisterSet.h: Added.

(DFG):
(RegisterSet):
(JSC::DFG::RegisterSet::RegisterSet):
(JSC::DFG::RegisterSet::asPOD):
(JSC::DFG::RegisterSet::copyInfo):
(JSC::DFG::RegisterSet::set):
(JSC::DFG::RegisterSet::setGPRByIndex):
(JSC::DFG::RegisterSet::clear):
(JSC::DFG::RegisterSet::get):
(JSC::DFG::RegisterSet::getGPRByIndex):
(JSC::DFG::RegisterSet::getFreeGPR):
(JSC::DFG::RegisterSet::setFPRByIndex):
(JSC::DFG::RegisterSet::getFPRByIndex):
(JSC::DFG::RegisterSet::setByIndex):
(JSC::DFG::RegisterSet::getByIndex):
(JSC::DFG::RegisterSet::numberOfSetGPRs):
(JSC::DFG::RegisterSet::numberOfSetFPRs):
(JSC::DFG::RegisterSet::numberOfSetRegisters):
(JSC::DFG::RegisterSet::setBit):
(JSC::DFG::RegisterSet::clearBit):
(JSC::DFG::RegisterSet::getBit):

  • dfg/DFGScratchRegisterAllocator.h: Added.

(DFG):
(ScratchRegisterAllocator):
(JSC::DFG::ScratchRegisterAllocator::ScratchRegisterAllocator):
(JSC::DFG::ScratchRegisterAllocator::lock):
(JSC::DFG::ScratchRegisterAllocator::allocateScratch):
(JSC::DFG::ScratchRegisterAllocator::allocateScratchGPR):
(JSC::DFG::ScratchRegisterAllocator::allocateScratchFPR):
(JSC::DFG::ScratchRegisterAllocator::didReuseRegisters):
(JSC::DFG::ScratchRegisterAllocator::preserveReusedRegistersByPushing):
(JSC::DFG::ScratchRegisterAllocator::restoreReusedRegistersByPopping):
(JSC::DFG::ScratchRegisterAllocator::desiredScratchBufferSize):
(JSC::DFG::ScratchRegisterAllocator::preserveUsedRegistersToScratchBuffer):
(JSC::DFG::ScratchRegisterAllocator::restoreUsedRegistersFromScratchBuffer):

3:17 PM Changeset in webkit [122770] by Simon Fraser
  • 3 edits
    2 adds in trunk

Fix compositing layers in columns when in paginated mode
https://bugs.webkit.org/show_bug.cgi?id=91425

Reviewed by Dave Hyatt.

Source/WebCore:

Enhance a hack that was added to allow composited layers to
display in columns to work for paginated mode, where the
RenderView is renderer with columns.

Test: compositing/columns/composited-in-paginated.html

  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::updateLayerPosition):

LayoutTests:

Testcase with a composited layer in a paginated document,
that dumps layers.

  • compositing/columns/composited-in-paginated-expected.txt: Added.
  • compositing/columns/composited-in-paginated.html: Added.
3:10 PM Changeset in webkit [122769] by eae@chromium.org
  • 23 edits
    2 adds in trunk

Inconsistent rounding in table layout causes background color to bleed through
https://bugs.webkit.org/show_bug.cgi?id=91410

Reviewed by Eric Seidel.

Source/WebCore:

At certain zoom levels a rounding error in the table layout code cases
the table background color to bleed through between cells. Tables layout
happens on pixel bounds however the paint offset wasn't correctly rounded.

Test: fast/sub-pixel/table-rows-no-gaps.html

  • rendering/RenderTable.cpp:

(WebCore::RenderTable::paintObject):
Round paintOffset before passing it to the paint method of the children.

LayoutTests:

Add test to ensure that the table background color doesn't bleed through
when the table and a cell are positioned on a subpixel bound.

  • fast/sub-pixel/table-rows-no-gaps-expected.html: Added.
  • fast/sub-pixel/table-rows-no-gaps.html: Added.
  • platform/chromium-linux/css1/basic/inheritance-expected.png:
  • platform/chromium-linux/plugins/embed-attributes-style-expected.png:
  • platform/chromium-linux/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png:
  • platform/chromium-linux/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png:
  • platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.png:
  • platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png:
  • platform/chromium-linux/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug73321-expected.png:

Updated expectations to match new rounding logic. The new results better
match the rendering prior to turning on subpixel layout.

  • platform/efl/Skipped:
  • platform/mac-lion/Skipped:
  • platform/mac-snowleopard/Skipped:
  • platform/mac-wk2/Skipped:
  • platform/mac/Skipped:
  • platform/qt-4.8/Skipped:
  • platform/qt/Skipped:
  • platform/win-wk2/Skipped:
  • platform/win-xp/Skipped:
  • platform/win/Skipped:
  • platform/wincairo/Skipped:
  • platform/wk2/Skipped:

Mark new test as skipped on platforms that have not enabled subpixel
layout.

3:08 PM Changeset in webkit [122768] by fpizlo@apple.com
  • 17 edits in trunk/Source/JavaScriptCore

DFG PutById transition should handle storage allocation, and inline it
https://bugs.webkit.org/show_bug.cgi?id=91337

Reviewed by Oliver Hunt.

This enables the patching of DFG PutById to handle the out-of-line storage
allocation case. Furthermore, it inlines out-of-line storage allocation (and
reallocation) into the generated stubs.

To do this, this patch adds the ability to store the relevant register
allocation state (i.e. the set of in-use registers) in the structure stub
info so that the stub generation code can more flexibly select scratch
registers: sometimes it needs none, sometimes one - or sometimes up to
three. Moreover, to make the stub generation register allocation simple and
maintainable, this patch introduces a reusable scratch register allocator
class. This register allocator understands that some registers are in use by
the main path code and so must be spilled as necessary, other registers are
locked for use in the stub itself and so cannot even be spilled, while still
others may be allocated for scratch purposes. A scratch register that is
used must be spilled. If a register is locked, it cannot be used as a
scratch register. If a register is used, it can be used as a scratch
register so long as it is spilled.

This is a sub-1% speed-up on V8 and neutral elsewhere.

  • GNUmakefile.list.am:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • assembler/MacroAssemblerCodeRef.h:

(FunctionPtr):
(JSC::FunctionPtr::FunctionPtr):

  • bytecode/StructureStubInfo.h:
  • dfg/DFGCCallHelpers.h:

(JSC::DFG::CCallHelpers::setupArgumentsWithExecState):
(CCallHelpers):

  • dfg/DFGGPRInfo.h:
  • dfg/DFGJITCompiler.cpp:

(JSC::DFG::JITCompiler::link):

  • dfg/DFGJITCompiler.h:

(JSC::DFG::PropertyAccessRecord::PropertyAccessRecord):
(PropertyAccessRecord):

  • dfg/DFGOperations.cpp:
  • dfg/DFGOperations.h:
  • dfg/DFGRegisterBank.h:

(JSC::DFG::RegisterBank::isInUse):
(RegisterBank):

  • dfg/DFGRegisterSet.h: Added.

(DFG):
(RegisterSet):
(JSC::DFG::RegisterSet::RegisterSet):
(JSC::DFG::RegisterSet::asPOD):
(JSC::DFG::RegisterSet::copyInfo):
(JSC::DFG::RegisterSet::set):
(JSC::DFG::RegisterSet::setGPRByIndex):
(JSC::DFG::RegisterSet::clear):
(JSC::DFG::RegisterSet::get):
(JSC::DFG::RegisterSet::getGPRByIndex):
(JSC::DFG::RegisterSet::getFreeGPR):
(JSC::DFG::RegisterSet::setFPRByIndex):
(JSC::DFG::RegisterSet::getFPRByIndex):
(JSC::DFG::RegisterSet::setByIndex):
(JSC::DFG::RegisterSet::getByIndex):
(JSC::DFG::RegisterSet::numberOfSetGPRs):
(JSC::DFG::RegisterSet::numberOfSetFPRs):
(JSC::DFG::RegisterSet::numberOfSetRegisters):
(JSC::DFG::RegisterSet::setBit):
(JSC::DFG::RegisterSet::clearBit):
(JSC::DFG::RegisterSet::getBit):

  • dfg/DFGRepatch.cpp:

(JSC::DFG::generateProtoChainAccessStub):
(JSC::DFG::tryCacheGetByID):
(JSC::DFG::tryBuildGetByIDList):
(JSC::DFG::emitPutReplaceStub):
(JSC::DFG::emitPutTransitionStub):
(JSC::DFG::tryCachePutByID):
(JSC::DFG::tryBuildPutByIdList):

  • dfg/DFGScratchRegisterAllocator.h: Added.

(DFG):
(ScratchRegisterAllocator):
(JSC::DFG::ScratchRegisterAllocator::ScratchRegisterAllocator):
(JSC::DFG::ScratchRegisterAllocator::lock):
(JSC::DFG::ScratchRegisterAllocator::allocateScratch):
(JSC::DFG::ScratchRegisterAllocator::allocateScratchGPR):
(JSC::DFG::ScratchRegisterAllocator::allocateScratchFPR):
(JSC::DFG::ScratchRegisterAllocator::didReuseRegisters):
(JSC::DFG::ScratchRegisterAllocator::preserveReusedRegistersByPushing):
(JSC::DFG::ScratchRegisterAllocator::restoreReusedRegistersByPopping):
(JSC::DFG::ScratchRegisterAllocator::desiredScratchBufferSize):
(JSC::DFG::ScratchRegisterAllocator::preserveUsedRegistersToScratchBuffer):
(JSC::DFG::ScratchRegisterAllocator::restoreUsedRegistersFromScratchBuffer):

  • dfg/DFGSpeculativeJIT.h:

(SpeculativeJIT):
(JSC::DFG::SpeculativeJIT::usedRegisters):

  • dfg/DFGSpeculativeJIT32_64.cpp:

(JSC::DFG::SpeculativeJIT::cachedGetById):
(JSC::DFG::SpeculativeJIT::cachedPutById):
(JSC::DFG::SpeculativeJIT::compile):

  • dfg/DFGSpeculativeJIT64.cpp:

(JSC::DFG::SpeculativeJIT::cachedGetById):
(JSC::DFG::SpeculativeJIT::cachedPutById):
(JSC::DFG::SpeculativeJIT::compile):

  • heap/CopiedAllocator.h:

(CopiedAllocator):
(JSC::CopiedAllocator::fastPathShouldSucceed):
(JSC):

2:35 PM Changeset in webkit [122767] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

Unreviewed, rolling out r122739.
http://trac.webkit.org/changeset/122739
https://bugs.webkit.org/show_bug.cgi?id=91424

Broke mac builds (Requested by rniwa on #webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2012-07-16

  • inspector/CodeGeneratorInspector.py:

(flatten_list):

2:30 PM Changeset in webkit [122766] by danakj@chromium.org
  • 11 edits in trunk/Source/WebCore

[chromium] Remove non-ephemeral data from RenderSurface as it duplicates data from the owning layer
https://bugs.webkit.org/show_bug.cgi?id=91418

Reviewed by Adrienne Walker.

This removes the filters and masks from render surfaces, and makes them
used directly from the owning layer. Also removes skipsDraw from
surfaces as it was just not used at all.

Covered by existing tests.

  • platform/graphics/chromium/LayerChromium.h:

(WebCore::LayerChromium::filters):
(WebCore::LayerChromium::backgroundFilters):
(WebCore::LayerChromium::hasMask):
(WebCore::LayerChromium::hasReplica):
(WebCore::LayerChromium::replicaHasMask):
(LayerChromium):

  • platform/graphics/chromium/RenderSurfaceChromium.cpp:

(WebCore::RenderSurfaceChromium::RenderSurfaceChromium):

  • platform/graphics/chromium/RenderSurfaceChromium.h:

(RenderSurfaceChromium):

  • platform/graphics/chromium/cc/CCLayerImpl.h:

(WebCore::CCLayerImpl::hasMask):
(WebCore::CCLayerImpl::hasReplica):
(WebCore::CCLayerImpl::replicaHasMask):
(CCLayerImpl):

  • platform/graphics/chromium/cc/CCLayerTreeHost.cpp:

(WebCore::CCLayerTreeHost::calculateMemoryForRenderSurfaces):

  • platform/graphics/chromium/cc/CCLayerTreeHostCommon.cpp:

(WebCore::calculateDrawTransformsInternal):

  • platform/graphics/chromium/cc/CCOcclusionTracker.cpp:

(WebCore::::finishedRenderTarget):
(WebCore::reduceOcclusionBelowSurface):
(WebCore::::leaveToRenderTarget):

  • platform/graphics/chromium/cc/CCRenderPass.cpp:

(WebCore::CCRenderPass::appendQuadsForRenderSurfaceLayer):

  • platform/graphics/chromium/cc/CCRenderSurface.cpp:

(WebCore::CCRenderSurface::drawableContentRect):
(WebCore::CCRenderSurface::appendQuads):

  • platform/graphics/chromium/cc/CCRenderSurface.h:

(CCRenderSurface):

2:18 PM Changeset in webkit [122765] by fpizlo@apple.com
  • 2 edits in trunk/Source/WTF

Unreviewed build fix.

  • wtf/FastMalloc.cpp:

(WTF::TCMalloc_ThreadCache::CreateCacheIfNecessary):

2:13 PM Changeset in webkit [122764] by dpranke@chromium.org
  • 6 edits in trunk/Tools

test-webkitpy: clean up logging to make it ninja-esque
https://bugs.webkit.org/show_bug.cgi?id=91297

Reviewed by Adam Barth.

This patch changes the output of test-webkitpy to be closer to
what ninja produces. Namely:

If you are running with stderr writing to a tty (and not -v), we
will no longer print '...' as tests complete. Instead, we use a
metered stream and print entries of the form:

'[X/Y] test_name passed/failed/erred'

where X is the current test # and Y is the total number of tests.

If you are running with stderr piped to a file or other non-tty
object (or with -v), you get the same output, one per line for
every test.

In addition, if tests fail or err out, you get the stack trace
immediately; you don't have to wait until the end of the run.

Lastly, this change cleans up the unit tests for test-webkitpy
itself to not confuse the logger and to work cleanly w/ multiple
processes. It looks like between this and all the clean up in
MessagePool that happened as it landed, we can now run
multiprocessing tests in parallel.

  • Scripts/webkitpy/test/finder.py:

(Finder._default_names):

  • Scripts/webkitpy/test/finder_unittest.py:

(FinderTest.setUp):
(FinderTest.tearDown):

  • Scripts/webkitpy/test/printer.py:

(Printer.init):
(Printer.configure):
(Printer.print_started_test):
(Printer.print_finished_test):
(Printer._test_line):
(Printer.print_result):

  • Scripts/webkitpy/test/runner.py:

(Runner.run):

  • Scripts/webkitpy/test/runner_unittest.py:

(RunnerTest.setUp):
(RunnerTest):
(RunnerTest.tearDown):
(RunnerTest.assert_run):
(RunnerTest.test_regular):
(RunnerTest.test_verbose):
(RunnerTest.test_timing):

2:13 PM Changeset in webkit [122763] by wjmaclean@chromium.org
  • 2 edits in trunk/LayoutTests

[chromium] Unreviewed gardening. Layout Test svg/W3C-SVG-1.1/animate-elem-39-t.svg is flaky
https://bugs.webkit.org/show_bug.cgi?id=91421

This test is flaky (crashing) on the Win7 bot and has been for some time.

  • platform/chromium/TestExpectations:
2:11 PM Changeset in webkit [122762] by mihaip@chromium.org
  • 3 edits in branches/chromium/1180/Source/WebCore/inspector

Merge 120822 - Web Inspector: don't report context ids before DidCommitLoad
https://bugs.webkit.org/show_bug.cgi?id=89567

Reviewed by Pavel Feldman.

When inspector state is restored only report existing context ids
if "did commit load" even has already been dispatched.

  • inspector/InspectorController.cpp:

(WebCore::InspectorController::InspectorController):

  • inspector/PageRuntimeAgent.cpp:

(WebCore::PageRuntimeAgent::PageRuntimeAgent):
(WebCore::PageRuntimeAgent::restore):

  • inspector/PageRuntimeAgent.h:

(WebCore):
(WebCore::PageRuntimeAgent::create):
(PageRuntimeAgent):

TBR=yurys@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10779021

2:06 PM Changeset in webkit [122761] by Beth Dakin
  • 11 edits
    4 adds in trunk

https://bugs.webkit.org/show_bug.cgi?id=91299
Paginated views should restrict available height to column height
-and corresponding-
<rdar://problem/11152108>

Reviewed by Dan Bernstein.

Source/WebCore:

Now that RenderViews can have columns, availableLogicalHeight needs to consider
that column height, much like how availableLogicalWidth already considers column
width.

availableLogicalHeight is newly virtual, like the already-virtual
availableLogicalWidth.

  • rendering/RenderBox.h:

(RenderBox):

Check with the columnHeight.

  • rendering/RenderView.cpp:

(WebCore):
(WebCore::RenderView::availableLogicalHeight):

  • rendering/RenderView.h:

setPagination now takes pageLength as an optional parameter.

  • testing/InternalSettings.cpp:

(WebCore::InternalSettings::setPagination):

  • testing/InternalSettings.h:

(WebCore::InternalSettings::setPagination):
(InternalSettings):

  • testing/InternalSettings.idl:
  • testing/Internals.cpp:

(WebCore::Internals::setPagination):

  • testing/Internals.h:

(WebCore::Internals::setPagination):
(Internals):

  • testing/Internals.idl:

LayoutTests:

New test.

  • fast/multicol/resources/big-green.png: Added.
  • fast/multicol/shrink-to-column-height-for-pagination.html: Added.
  • platform/mac/fast/multicol/shrink-to-column-height-for-pagination-expected.png: Added.
  • platform/mac/fast/multicol/shrink-to-column-height-for-pagination-expected.txt: Added.
2:06 PM Changeset in webkit [122760] by Michelangelo De Simone
  • 2 edits in trunk/Websites/planet.webkit.org

Adobe Web Platform Team Blog is missing from Planet WebKit
https://bugs.webkit.org/show_bug.cgi?id=91407

Reviewed by Andreas Kling.

Adding Adobe Web Platform Team Blog feed to Planet WebKit.

  • config.ini:
2:06 PM Changeset in webkit [122759] by dpranke@chromium.org
  • 3 edits in trunk/Tools

test-webkitpy: handle failures properly when running in parallel
https://bugs.webkit.org/show_bug.cgi?id=91416

Reviewed by Tony Chang.

It turns out that unittest.TestResults contain a handle to the
test method itself, which isn't picklable; it's sufficient to just
store the test name instead of the actual method. By doing so
we can move the test_name() method from the printer to the
runner where it belongs (so the printer is less dependent on the
unittest framework's data structures).

This change should really have a test but I don't know how to
write one that properly captures the behavior and won't cause
test-webkitpy itself to fail. I've verified the fix by hand, at
least, in the meantime.

  • Scripts/webkitpy/test/printer.py:

(Printer.init):
(Printer.print_result):

  • Scripts/webkitpy/test/runner.py:

(_test_name):
(Runner.all_test_names):
(_Worker.handle):

1:48 PM Changeset in webkit [122758] by scheib@chromium.org
  • 4 edits in trunk/LayoutTests

Fix Layout Test pointer-lock/locked-element-removed-from-dom.html flakiness.
https://bugs.webkit.org/show_bug.cgi?id=91373

Reviewed by Adrienne Walker.

pointer-lock-test-harness corrected to no longer silently allow too many
asynchronous doNextStep calls in a test. The locked-element-removed-from-dom test
generated too many events and incorrectly exited the test early.

  • platform/chromium/TestExpectations:

Re-enabled locked-element-removed-from-dom test.html

  • pointer-lock/locked-element-removed-from-dom.html:

Absorb extra doNextStep.

  • pointer-lock/resources/pointer-lock-test-harness.js:

(doNextStep.setTimeout):

Fail tests that call doNextStep too many times.

1:44 PM Changeset in webkit [122757] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/blackberry

Any webpage can crash webkit via qnx.callExtensionMethod assuming 'this' is the 'qnx' object.
https://bugs.webkit.org/show_bug.cgi?id=91419

Run the following in inspector to crash WebKit

qnx.callExtensionMethod.apply(window, []);

In the c++ that handles the function it assumes that when callExtensionMethod
is called that 'this' is the object 'qnx'. The qnx object has a hidden
variable that the code casts and uses, but when 'this' is not qnx such as the
example this will cause a crash. Any website can insert the above JavaScript
to cause the crash.

Patch by Benjamin C Meyer <bmeyer@rim.com> on 2012-07-16
Reviewed by Yong Li.

  • WebCoreSupport/ClientExtension.cpp:

(clientExtensionMethod):

1:39 PM Changeset in webkit [122756] by danakj@chromium.org
  • 23 edits in trunk/Source

[chromium] Remove targetRenderSurface concept, give layers a renderTarget which is the layer whose coordinate space they draw into
https://bugs.webkit.org/show_bug.cgi?id=91288

Reviewed by Adrienne Walker.

Source/WebCore:

Always use pointers to layers when discussing render targets instead of
pointing directly to a RenderSurface.

Covered by existing tests.

  • platform/graphics/chromium/LayerChromium.cpp:

(WebCore::LayerChromium::LayerChromium):
(WebCore::LayerChromium::createRenderSurface):

  • platform/graphics/chromium/LayerChromium.h:

(WebCore::LayerChromium::renderTarget):
(WebCore::LayerChromium::setRenderTarget):
(LayerChromium):

  • platform/graphics/chromium/RenderSurfaceChromium.cpp:
  • platform/graphics/chromium/RenderSurfaceChromium.h:
  • platform/graphics/chromium/ScrollbarLayerChromium.cpp:

(WebCore::ScrollbarLayerChromium::setTexturePriorities):

  • platform/graphics/chromium/TiledLayerChromium.cpp:

(WebCore::TiledLayerChromium::setTexturePrioritiesInRect):

  • platform/graphics/chromium/cc/CCLayerImpl.cpp:

(WebCore::CCLayerImpl::CCLayerImpl):
(WebCore::CCLayerImpl::createRenderSurface):
(WebCore::CCLayerImpl::dumpLayerProperties):

  • platform/graphics/chromium/cc/CCLayerImpl.h:

(WebCore::CCLayerImpl::renderTarget):
(WebCore::CCLayerImpl::setRenderTarget):
(CCLayerImpl):

  • platform/graphics/chromium/cc/CCLayerTreeHostCommon.cpp:

(WebCore::calculateLayerScissorRect):
(WebCore::calculateSurfaceScissorRect):
(WebCore::calculateVisibleContentRect):
(WebCore::computeScrollCompensationForThisLayer):
(WebCore::calculateDrawTransformsInternal):
(WebCore::pointIsClippedBySurfaceOrClipRect):

  • platform/graphics/chromium/cc/CCOcclusionTracker.cpp:

(WebCore::::enterLayer):
(WebCore::::leaveLayer):
(WebCore::::enterRenderTarget):
(WebCore::::finishedRenderTarget):
(WebCore):
(WebCore::reduceOcclusionBelowSurface):
(WebCore::::leaveToRenderTarget):
(WebCore::::markOccludedBehindLayer):
(WebCore::::occluded):
(WebCore::::unoccludedContentRect):
(WebCore::::unoccludedContributingSurfaceContentRect):
(WebCore::::layerScissorRectInTargetSurface):

  • platform/graphics/chromium/cc/CCOcclusionTracker.h:

(CCOcclusionTrackerBase):
(WebCore::CCOcclusionTrackerBase::StackObject::StackObject):
(StackObject):

  • platform/graphics/chromium/cc/CCQuadCuller.cpp:

(WebCore::CCQuadCuller::appendSurface):

  • platform/graphics/chromium/cc/CCRenderSurface.cpp:
  • platform/graphics/chromium/cc/CCRenderSurface.h:

(CCRenderSurface):

Source/WebKit/chromium:

  • tests/CCDamageTrackerTest.cpp:

(WebKitTests::TEST_F):

  • tests/CCLayerImplTest.cpp:

(WebCore::TEST):

  • tests/CCLayerTreeHostCommonTest.cpp:
  • tests/CCOcclusionTrackerTest.cpp:

(WebKitTests::CCOcclusionTrackerTestOverlappingSurfaceSiblings::runMyTest):
(WebKitTests::CCOcclusionTrackerTestOverlappingSurfaceSiblingsWithTwoTransforms::runMyTest):
(WebKitTests::CCOcclusionTrackerTestAnimationOpacity1OnMainThread::runMyTest):
(WebKitTests::CCOcclusionTrackerTestAnimationOpacity0OnMainThread::runMyTest):
(WebKitTests::CCOcclusionTrackerTestAnimationTranslateOnMainThread::runMyTest):
(WebKitTests::CCOcclusionTrackerTestReplicaOccluded::runMyTest):
(WebKitTests::CCOcclusionTrackerTestSurfaceWithReplicaUnoccluded::runMyTest):
(WebKitTests::CCOcclusionTrackerTestSurfaceAndReplicaOccludedDifferently::runMyTest):
(WebKitTests::CCOcclusionTrackerTestSurfaceChildOfSurface::runMyTest):
(WebKitTests::CCOcclusionTrackerTestTopmostSurfaceIsClippedToScissor::runMyTest):
(WebKitTests::CCOcclusionTrackerTestSurfaceChildOfClippingSurface::runMyTest):

  • tests/CCQuadCullerTest.cpp:
  • tests/CCTiledLayerTestCommon.cpp:

(WebKitTests::FakeTiledLayerChromium::setTexturePriorities):

  • tests/LayerChromiumTest.cpp:
1:31 PM Changeset in webkit [122755] by fmalita@chromium.org
  • 3 edits
    2 adds in trunk

SVGAnimationElement::currentValuesForValuesAnimation crash
https://bugs.webkit.org/show_bug.cgi?id=91326

Reviewed by Simon Fraser.

SVGSMILElement::progress() assumes that seekToIntervalCorrespondingToTime() always
lands inside a defined interval, but one can force arbitrary time offsets using
setCurrentTime(). This patch adds logic for handling non-interval time offsets
gracefully.

Source/WebCore:

Test: svg/animations/smil-setcurrenttime-crash.svg

  • svg/animation/SVGSMILElement.cpp:

(WebCore::SVGSMILElement::progress):

LayoutTests:

  • svg/animations/smil-setcurrenttime-crash-expected.txt: Added.
  • svg/animations/smil-setcurrenttime-crash.svg: Added.
1:29 PM Changeset in webkit [122754] by commit-queue@webkit.org
  • 12 edits in trunk/Source

[BlackBerry] Upstream WebGL Code
https://bugs.webkit.org/show_bug.cgi?id=91143

Patch by Joshua Netterfield <jnetterfield@rim.com> on 2012-07-16
Reviewed by Rob Buis.

This patch includes BlackBerry-specific fixes for anti-aliasing, logging, and shader compilation.

Source/WebCore:

No new tests, because there is no new functionality.

  • platform/graphics/GraphicsContext3D.h: Add a value for TI Imagination chipsets on BlackBerry platforms
  • platform/graphics/blackberry/GraphicsContext3DBlackBerry.cpp: Multiple downstream changes

(WebCore::GraphicsContext3D::GraphicsContext3D):
(WebCore::GraphicsContext3D::reshapeFBOs):
(WebCore):
(WebCore::GraphicsContext3D::logFrameBufferStatus):
(WebCore::GraphicsContext3D::readPixelsIMG): BlackBerry-specific fix for Imagination hardware.
(WebCore::GraphicsContext3D::paintsIntoCanvasBuffer):
(WebCore::GraphicsContext3D::platformTexture):
(WebCore::GraphicsContext3D::platformGraphicsContext3D):
(WebCore::GraphicsContext3D::paintToCanvas):

  • platform/graphics/opengl/Extensions3DOpenGL.h: Remove unnecessary whitespace.

(Extensions3DOpenGL):

  • platform/graphics/opengl/Extensions3DOpenGLCommon.cpp:

(WebCore::Extensions3DOpenGLCommon::getTranslatedShaderSourceANGLE): Hack to fix ANGLE-generated code on BlackBerry platforms.

  • platform/graphics/opengl/Extensions3DOpenGLCommon.h:

(Extensions3DOpenGLCommon):

  • platform/graphics/opengl/Extensions3DOpenGLES.cpp: I am not in a position to change system headers from correct to incorrect.

(WebCore::Extensions3DOpenGLES::renderbufferStorageMultisample):
(WebCore::Extensions3DOpenGLES::supportsExtension):

  • platform/graphics/opengl/Extensions3DOpenGLES.h: I am not in a position to change system headers from correct to incorrect.

(Extensions3DOpenGLES):

  • platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp: Add a BlackBerry-specific anti-aliasing fix.

(WebCore::GraphicsContext3D::paintRenderingResultsToCanvas):
(WebCore::GraphicsContext3D::prepareTexture):
(WebCore::GraphicsContext3D::bindFramebuffer):
(WebCore::GraphicsContext3D::compileShader):
(WebCore::GraphicsContext3D::copyTexImage2D):
(WebCore::GraphicsContext3D::copyTexSubImage2D):
(WebCore):

  • platform/graphics/opengl/GraphicsContext3DOpenGLES.cpp:

(WebCore):

Source/WebKit:

  • PlatformBlackBerry.cmake: Define WTF_USE_OPENGL_ES_2 on WebGL-enabled builds.
1:06 PM Changeset in webkit [122753] by Patrick Gansterer
  • 2 edits in trunk/Source/JavaScriptCore

Add dfg switch to create_jit_stubs script
https://bugs.webkit.org/show_bug.cgi?id=91256

Reviewed by Geoffrey Garen.

  • create_jit_stubs: Add a switch to enable or disable the generation of

stub functions in #if ENABLE(DFG_JIT) conditions.

12:55 PM Changeset in webkit [122752] by wjmaclean@chromium.org
  • 2 edits in trunk/LayoutTests

[chromium] Unreviewed gardening. Layout Test fast/frames/calculate-fixed.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=91415

Has been intermittently failing TEXT since at least r122699.

  • platform/chromium/TestExpectations:
12:50 PM Changeset in webkit [122751] by enne@google.com
  • 1 edit
    3 copies in branches/chromium/1180

Merge 122529 - [chromium] Root invalidations for RTL pages need to be in the right space
https://bugs.webkit.org/show_bug.cgi?id=91155

Reviewed by Kenneth Russell.

Source/WebKit/chromium:

The root layer has a translation on it when placed in the tree, so any
invalidations on this layer likewise need to be adjusted.

This adjustment is due to the fact that compositor layers all have the
origin in the upper left corner of the layer, but this is not always
the origin for graphics layers. Rather than making compositor layers
have to deal with a potential offset, we change the transform when
inserting the layer into the tree. Invalidations need to be similarly
transformed from document space into compositor layer space.

The need for this offset is due to the definition of the initial
containing block. RTL pages (pages with dir=RTL on the body) start
scrolled all the way to the right, and the origin is in the upper left
hand corner of this initial viewport. Thus on RTL pages with
horizontal overflow, the left of the document is in negative CSS
space.

  • src/NonCompositedContentHost.cpp:

(WebKit::NonCompositedContentHost::invalidateRect):

LayoutTests:

Add a test that demonstrates this problem. Before the code fix, the
test shows just a red square because the invalidation for the style
change repaints the wrong rect.

  • compositing/rtl/rtl-overflow-invalidation-expected.png: Added.
  • compositing/rtl/rtl-overflow-invalidation-expected.txt: Added.
  • compositing/rtl/rtl-overflow-invalidation.html: Added.

TBR=enne@google.com
Review URL: https://chromiumcodereview.appspot.com/10782018

12:37 PM Changeset in webkit [122750] by dpranke@chromium.org
  • 6 edits in trunk/Tools

test-webkitpy: run tests in parallel
https://bugs.webkit.org/show_bug.cgi?id=91294

Reviewed by Ojan Vafai.

This change adds support for running tests in parallel. This is
not yet on by default, since the logging isn't very pretty w/
parallel tests.

Also, there are some (multiprocessing-related) tests that can't be
run in parallel and so we skip them in that situation; I need to
come up with a mechanism for dealing with this, since you
apparently can't use multiprocessing as both a parent and a
child process.

  • Scripts/webkitpy/test/finder.py:

(Finder.find_names):
(Finder._default_names):

  • Scripts/webkitpy/test/main.py:

(Tester._parse_args):
(Tester.run):

  • Scripts/webkitpy/test/main_unittest.py:

(TesterTest.test_no_tests_found):

  • Scripts/webkitpy/test/runner.py:

(Runner.run):

  • Scripts/webkitpy/test/runner_unittest.py:

(RunnerTest.test_regular):
(RunnerTest.test_verbose):
(RunnerTest.test_timing):

12:35 PM Changeset in webkit [122749] by dpranke@chromium.org
  • 4 edits in trunk/Tools

test-webkitpy: use message pools
https://bugs.webkit.org/show_bug.cgi?id=91292

Reviewed by Ojan Vafai.

Restructure the test-running code to be message-driven and
use a MessagePool; note that this does not yet actually run the
tests in parallel.

Also clean up the unit tests so that the fake loader is passed
to the _Worker properly, and reduce a lot of the cut&pasted code
in the tests.

No functional changes; covered by existing tests.

  • Scripts/webkitpy/test/printer.py:

(Printer.print_started_test):
(Printer.print_finished_test):

  • Scripts/webkitpy/test/runner.py:

(Runner.init):
(Runner.run):
(Runner.handle):
(_Worker):
(_Worker.init):
(_Worker.handle):

  • Scripts/webkitpy/test/runner_unittest.py:

(RunnerTest.assert_run):
(RunnerTest.test_regular):
(RunnerTest.test_verbose):
(RunnerTest.test_timing):

12:32 PM Changeset in webkit [122748] by ojan@chromium.org
  • 6 edits
    7 adds in trunk/LayoutTests

Cleanup a bunch of invalid BUG* lines. Rebaseline tests that were straightfoward
rebaselines and update the expectations to match what's actually happening on the bots.

  • platform/chromium-linux/fast/repaint/repaint-across-writing-mode-boundary-expected.png:
  • platform/chromium-linux/http/tests/misc/slow-loading-image-in-pattern-expected.png:
  • platform/chromium-mac-snowleopard/fast/backgrounds/solid-color-context-restore-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/reflections/inline-crash-expected.png: Added.
  • platform/chromium-mac-snowleopard/http/tests/misc/slow-loading-image-in-pattern-expected.png: Added.
  • platform/chromium-mac/fast/backgrounds/solid-color-context-restore-expected.png: Added.
  • platform/chromium-mac/fast/reflections/inline-crash-expected.png: Added.
  • platform/chromium-mac/http/tests/misc/slow-loading-image-in-pattern-expected.png: Added.
  • platform/chromium-mac/transforms/2d/zoom-menulist-expected.png: Added.
  • platform/chromium-win/http/tests/misc/slow-loading-image-in-pattern-expected.png:
  • platform/chromium/TestExpectations:
  • platform/gtk/TestExpectations:
12:09 PM Changeset in webkit [122747] by tony@chromium.org
  • 7 edits
    2 adds in trunk

Position grid items by row/column index
https://bugs.webkit.org/show_bug.cgi?id=91293

Reviewed by Ojan Vafai.

Source/WebCore:

Do some initial grid positioning. Only handle the simple case where tracks are
fixed values and don't properly size the grid items. This gives us something to
work with and starts implementing the "Grid Track Sizing Algorithm":
http://dev.w3.org/csswg/css3-grid-layout/#grid-track-sizing-algorithm0

Test: fast/css-grid-layout/place-cell-by-index.html

  • rendering/RenderGrid.cpp:

(RenderGrid::GridTrack): Data structure for holding the track size. UsedBreadth matches the terminology
used in the spec.
(WebCore::RenderGrid::layoutBlock): Pull in some boiler plate code and put the
grid specific code in layoutGridItems.
(WebCore::RenderGrid::computedUsedBreadthOfGridTracks): Implement part of the grid track sizing algorithm.
(WebCore::RenderGrid::layoutGridItems): Compute the size of grid tracks, layout and position children.
(WebCore::RenderGrid::findChildLogicalPosition): Map track sizes to the actual position of the child.

  • rendering/RenderGrid.h:
  • rendering/style/RenderStyle.h: Just return a copy of Length rather than a reference to Length. This seems

more consistent with other getters that return a Length.

LayoutTests:

Add a test for grid layout in each writing mode direction. The height in vertical writing mode is incorrect for now.

  • fast/css-grid-layout/containing-block-grids-expected.html: Scope <p> around text only.
  • fast/css-grid-layout/containing-block-grids.html: Fix missing closing </div>.
  • fast/css-grid-layout/place-cell-by-index-expected.txt: Added.
  • fast/css-grid-layout/place-cell-by-index.html: Added.
12:06 PM Changeset in webkit [122746] by commit-queue@webkit.org
  • 4 edits in trunk/Source

[chromium] Only apply page scale delta to root scroll layer
https://bugs.webkit.org/show_bug.cgi?id=91374

Patch by Sami Kyostila <skyostil@chromium.org> on 2012-07-16
Reviewed by Adrienne Walker.

Source/WebCore:

When the user pinch-zooms the web page though the Chromium compositor, the
per-layer page scale delta is used to keep track of the difference between the
page scale on the compositor thread versus the main thread. On the next
commit to the main thread these values are reset to 1.

When calculating layer positions, the compositor applies a layer's page scale
delta both to the layer itself as well as all of its children. Since we are
currently updating the page scale delta on all scrollable layers, this results
in scrollable child layers getting scaled multiple times.

This patch changes the compositor to only apply the page scale delta on the
root scroll layer.

New unit test: CCLayerTreeHostImplTest.pageScaleDeltaAppliedToRootScrollLayerOnly

  • platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp:

(WebCore::CCLayerTreeHostImpl::setPageScaleFactorAndLimits):
(WebCore::CCLayerTreeHostImpl::setPageScaleDelta):

Source/WebKit/chromium:

New unit test
CCLayerTreeHostImplTest.pageScaleDeltaAppliedToRootScrollLayerOnly to verify
the transformation of child layer while pinch zooming.

  • tests/CCLayerTreeHostImplTest.cpp:
11:59 AM Changeset in webkit [122745] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/blackberry

[BlackBerry] Improve about:memory page
https://bugs.webkit.org/show_bug.cgi?id=87676

Patch by Yong Li <yoli@rim.com> on 2012-07-16
Reviewed by Rob Buis.

Add a table for process memory usage summary for easy read.

  • WebCoreSupport/AboutData.cpp:

(WebCore::memoryPage):

11:40 AM Changeset in webkit [122744] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WTF

[BlackBerry] Use newer version of platform API to implement callOnMainThread
https://bugs.webkit.org/show_bug.cgi?id=91404

Patch by Adam Treat <atreat@rim.com> on 2012-07-16
Reviewed by Yong Li.

Right now we're using an outdated API that involves a virtual function call for no reason.
Use the new API that is much more direct and to the point.

  • wtf/blackberry/MainThreadBlackBerry.cpp:

(WTF::scheduleDispatchFunctionsOnMainThread):

11:28 AM Changeset in webkit [122743] by commit-queue@webkit.org
  • 17 edits in trunk/Source

Remove setController from BatteryClient
https://bugs.webkit.org/show_bug.cgi?id=90944

Patch by Kihong Kwon <kihong.kwon@samsung.com> on 2012-07-16
Reviewed by Adam Barth.

Source/WebCore:

BatteryClient doesn't need to keep m_controller,
because BatteryController can be accessed using BatteryController::from().
Remove BatteryClient::setController function.

No new tests. Covered by existing tests.

  • Modules/battery/BatteryClient.h:
  • Modules/battery/BatteryController.cpp:

(WebCore::BatteryController::BatteryController):

Source/WebKit/blackberry:

BatteryClient doesn't need to keep m_controller,
because BatteryController can be accessed using BatteryController::from().
Remove m_controller and Add webPagePrivate to BatteryClientBlackBerry.
And change all m_controller to BatteryController::from.

  • Api/WebPage.cpp:

(BlackBerry::WebKit::WebPagePrivate::init):

  • WebCoreSupport/BatteryClientBlackBerry.cpp:

(WebCore::BatteryClientBlackBerry::BatteryClientBlackBerry):
(WebCore::BatteryClientBlackBerry::onLevelChange):
(WebCore::BatteryClientBlackBerry::onChargingChange):
(WebCore::BatteryClientBlackBerry::onChargingTimeChange):
(WebCore::BatteryClientBlackBerry::onDischargingTimeChange):

  • WebCoreSupport/BatteryClientBlackBerry.h:

(BatteryClientBlackBerry):

Source/WebKit/chromium:

Remove virtual identifier from setController because setController is removed from WebCore::BatteryClient.
In addition, BatteryController is set to instance of BatteryClientImpl in the constructor of WebViewImpl.

  • src/BatteryClientImpl.h:

(BatteryClientImpl):

  • src/WebViewImpl.cpp:

(WebKit::WebViewImpl::WebViewImpl):

Source/WebKit/efl:

BatteryClient doesn't need to keep m_controller,
because BatteryController can be accessed using BatteryController::from().
Remove m_controller and Add ewk view evas object to BatteryClientEfl.
And change all m_controller to BatteryController::from.

  • WebCoreSupport/BatteryClientEfl.cpp:

(BatteryClientEfl::BatteryClientEfl):
(BatteryClientEfl::didChangeBatteryStatus):

  • WebCoreSupport/BatteryClientEfl.h:

(BatteryClientEfl):

  • ewk/ewk_view.cpp:

(_ewk_view_priv_new):

Source/WebKit2:

Remove WebBatteryClient::setController function.

  • WebProcess/WebCoreSupport/WebBatteryClient.cpp:
  • WebProcess/WebCoreSupport/WebBatteryClient.h:

(WebBatteryClient):

11:21 AM Changeset in webkit [122742] by commit-queue@webkit.org
  • 5 edits in trunk/Source/WebKit2

[EFL][WK2] Make Ewk_Navigation_Policy_Decision ref counted
https://bugs.webkit.org/show_bug.cgi?id=91343

Patch by Christophe Dumez <Christophe Dumez> on 2012-07-16
Reviewed by Antonio Gomes.

Make Ewk_Navigation_Policy_Decision ref counted so that the
client can make navigation policy decisions asynchronously
by ref'ing the Ewk_Navigation_Policy_Decision object passed
with the "policy,*" signals.

  • UIProcess/API/efl/ewk_navigation_policy_decision.cpp:

(_Ewk_Navigation_Policy_Decision):
(_Ewk_Navigation_Policy_Decision::_Ewk_Navigation_Policy_Decision):
(_Ewk_Navigation_Policy_Decision::~_Ewk_Navigation_Policy_Decision):
(ewk_navigation_policy_decision_ref):
(ewk_navigation_policy_decision_unref):

  • UIProcess/API/efl/ewk_navigation_policy_decision.h:
  • UIProcess/API/efl/ewk_view.h:
  • UIProcess/API/efl/ewk_view_policy_client.cpp:

(decidePolicyForNavigationAction):
(decidePolicyForNewWindowAction):

11:16 AM Changeset in webkit [122741] by commit-queue@webkit.org
  • 3 edits
    2 adds
    4 deletes in trunk

Invalid script-nonce directives should block script execution.
https://bugs.webkit.org/show_bug.cgi?id=91353

Patch by Mike West <mkwst@chromium.org> on 2012-07-16
Reviewed by Adam Barth.

Source/WebCore:

If the script-nonce Content Security Policy directive contains an
invalid value, we should fail loudly, throwing a warning to the console
and denying execution of script on the page. The is in line with the
current state of the experimental CSP 1.1 Editors Draft[1].

[1]: https://dvcs.w3.org/hg/content-security-policy/raw-file/tip/csp-specification.dev.html#script-nonce--experimental

Test: http/tests/security/contentSecurityPolicy/1.1/scriptnonce-invalidnonce.html

  • page/ContentSecurityPolicy.cpp:

(WebCore::CSPDirectiveList::checkNonceAndReportViolation):

Check against null rather than empty for early exit, otherwise
only compare nonces if the stored nonce isn't empty.

(WebCore::CSPDirectiveList::parseScriptNonce):

Assign the empty string if nonce is invalid.

LayoutTests:

  • http/tests/security/contentSecurityPolicy/1.1/scriptnonce-badnonce-expected.txt: Removed.
  • http/tests/security/contentSecurityPolicy/1.1/scriptnonce-badnonce.html: Removed.
  • http/tests/security/contentSecurityPolicy/1.1/scriptnonce-emptynonce-expected.txt: Removed.
  • http/tests/security/contentSecurityPolicy/1.1/scriptnonce-emptynonce.html: Removed.

Replaced these two tests with the following.

  • http/tests/security/contentSecurityPolicy/1.1/scriptnonce-invalidnonce-expected.txt: Added.
  • http/tests/security/contentSecurityPolicy/1.1/scriptnonce-invalidnonce.html: Added.

This tests variously invalid nonces to ensure they block execution.

11:14 AM Changeset in webkit [122740] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebCore

[Android] remove RenderThemeChromiumAndroid::paintMediaFullscreenButton()
https://bugs.webkit.org/show_bug.cgi?id=91291

Patch by Min Qin <qinmin@chromium.org> on 2012-07-16
Reviewed by Adam Barth.

The recent media control refactoring added paintMediaFullscreenButton() in RenderThemeChromiumSkia.
Since RenderThemeChromiumAndroid inherits from that class, we don't need to redefine this function.
No test needed as this change just removes an unnecessary override.

  • rendering/RenderThemeChromiumAndroid.cpp:
  • rendering/RenderThemeChromiumAndroid.h:
11:10 AM Changeset in webkit [122739] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

Web Inspector: CodeGeneratorInspector.py: fix output write logic to support incremental build
https://bugs.webkit.org/show_bug.cgi?id=90642

Patch by Peter Rybin <peter.rybin@gmail.com> on 2012-07-16
Reviewed by Yury Semikhatsky.

A small intermediate writer is added. It handles comparing old and new source before actual writing.

  • inspector/CodeGeneratorInspector.py:

(flatten_list):
(SmartOutput):
(SmartOutput.init):
(SmartOutput.write):
(SmartOutput.close):

11:04 AM Changeset in webkit [122738] by wjmaclean@chromium.org
  • 2 edits in trunk/LayoutTests

[chromium] Unreviewed gardening. Layout Test storage/indexeddb/cursor-update-value-argument-required.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=91403

This test crashes occasionally, not sure how long it has been flaky.

  • platform/chromium/TestExpectations:
11:01 AM Changeset in webkit [122737] by danakj@chromium.org
  • 4 edits in trunk/Source

[chromium] Incorrect assertion: Replicas will cause a RenderPass to be removed twice
https://bugs.webkit.org/show_bug.cgi?id=91328

Reviewed by Adrienne Walker.

Source/WebCore:

We asserted that we would never attempt to remove a render pass that had
already been removed. This was incorrect as a surface with a replica has
two quads and both may cause us to attempt its removal. We must handle
this case gracefully.

Test: CCLayerTreeHostTestSurfaceNotAllocatedForLayersOutsideMemoryLimit

  • platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp:

(WebCore::CCLayerTreeHostImpl::CullRenderPassesWithNoQuads::shouldRemoveRenderPass):

Source/WebKit/chromium:

Add replicas to the surfaces in the test.

  • tests/CCLayerTreeHostTest.cpp:

(WTF::CCLayerTreeHostTestSurfaceNotAllocatedForLayersOutsideMemoryLimit::CCLayerTreeHostTestSurfaceNotAllocatedForLayersOutsideMemoryLimit):
(WTF::CCLayerTreeHostTestSurfaceNotAllocatedForLayersOutsideMemoryLimit::beginTest):
(WTF::CCLayerTreeHostTestSurfaceNotAllocatedForLayersOutsideMemoryLimit::afterTest):
(CCLayerTreeHostTestSurfaceNotAllocatedForLayersOutsideMemoryLimit):

10:56 AM UsingGitWithWebKit edited by dbates@webkit.org
Remove extraneous word "this" to make the sentence read well. (diff)
10:51 AM Changeset in webkit [122736] by kbalazs@webkit.org
  • 76 edits in trunk/LayoutTests

[Qt] platform/qt/editing/execCommand tests update after the font change.
https://bugs.webkit.org/show_bug.cgi?id=91246.

Unreviewed rebaseline.

Patch by Ádám Kallai <kadam@inf.u-szeged.hu> on 2012-07-16

  • platform/qt-5.0-wk1/Skipped:
  • platform/qt-5.0/Skipped:
  • platform/qt/editing/execCommand/4580583-1-expected.png:
  • platform/qt/editing/execCommand/4580583-1-expected.txt:
  • platform/qt/editing/execCommand/4580583-2-expected.png:
  • platform/qt/editing/execCommand/4580583-2-expected.txt:
  • platform/qt/editing/execCommand/4641880-1-expected.png:
  • platform/qt/editing/execCommand/4641880-1-expected.txt:
  • platform/qt/editing/execCommand/4641880-2-expected.png:
  • platform/qt/editing/execCommand/4641880-2-expected.txt:
  • platform/qt/editing/execCommand/4747450-expected.png:
  • platform/qt/editing/execCommand/4747450-expected.txt:
  • platform/qt/editing/execCommand/4916402-expected.png:
  • platform/qt/editing/execCommand/4916402-expected.txt:
  • platform/qt/editing/execCommand/4916541-expected.png:
  • platform/qt/editing/execCommand/4916541-expected.txt:
  • platform/qt/editing/execCommand/4924441-expected.png:
  • platform/qt/editing/execCommand/4924441-expected.txt:
  • platform/qt/editing/execCommand/5080333-1-expected.png:
  • platform/qt/editing/execCommand/5080333-1-expected.txt:
  • platform/qt/editing/execCommand/5080333-2-expected.png:
  • platform/qt/editing/execCommand/5080333-2-expected.txt:
  • platform/qt/editing/execCommand/5136770-expected.png:
  • platform/qt/editing/execCommand/5136770-expected.txt:
  • platform/qt/editing/execCommand/5138441-expected.png:
  • platform/qt/editing/execCommand/5138441-expected.txt:
  • platform/qt/editing/execCommand/5142012-1-expected.png:
  • platform/qt/editing/execCommand/5142012-1-expected.txt:
  • platform/qt/editing/execCommand/5142012-2-expected.png:
  • platform/qt/editing/execCommand/5142012-2-expected.txt:
  • platform/qt/editing/execCommand/5190926-expected.png:
  • platform/qt/editing/execCommand/5190926-expected.txt:
  • platform/qt/editing/execCommand/5481523-expected.png:
  • platform/qt/editing/execCommand/5481523-expected.txt:
  • platform/qt/editing/execCommand/5482023-expected.png:
  • platform/qt/editing/execCommand/5482023-expected.txt:
  • platform/qt/editing/execCommand/5569741-expected.png:
  • platform/qt/editing/execCommand/5569741-expected.txt:
  • platform/qt/editing/execCommand/create-list-with-hr-expected.png:
  • platform/qt/editing/execCommand/create-list-with-hr-expected.txt:
  • platform/qt/editing/execCommand/find-after-replace-expected.png:
  • platform/qt/editing/execCommand/find-after-replace-expected.txt:
  • platform/qt/editing/execCommand/findString-2-expected.png:
  • platform/qt/editing/execCommand/findString-2-expected.txt:
  • platform/qt/editing/execCommand/findString-expected.png:
  • platform/qt/editing/execCommand/findString-expected.txt:
  • platform/qt/editing/execCommand/format-block-with-trailing-br-expected.png:
  • platform/qt/editing/execCommand/format-block-with-trailing-br-expected.txt:
  • platform/qt/editing/execCommand/indent-empty-root-expected.png:
  • platform/qt/editing/execCommand/indent-empty-root-expected.txt:
  • platform/qt/editing/execCommand/indent-list-item-expected.png:
  • platform/qt/editing/execCommand/indent-list-item-expected.txt:
  • platform/qt/editing/execCommand/indent-selection-expected.png:
  • platform/qt/editing/execCommand/indent-selection-expected.txt:
  • platform/qt/editing/execCommand/insert-list-and-stitch-expected.png:
  • platform/qt/editing/execCommand/insert-list-and-stitch-expected.txt:
  • platform/qt/editing/execCommand/insertHorizontalRule-expected.png:
  • platform/qt/editing/execCommand/insertHorizontalRule-expected.txt:
  • platform/qt/editing/execCommand/insertImage-expected.png:
  • platform/qt/editing/execCommand/insertImage-expected.txt:
  • platform/qt/editing/execCommand/nsresponder-indent-expected.png:
  • platform/qt/editing/execCommand/nsresponder-indent-expected.txt:
  • platform/qt/editing/execCommand/nsresponder-outdent-expected.png:
  • platform/qt/editing/execCommand/nsresponder-outdent-expected.txt:
  • platform/qt/editing/execCommand/paste-1-expected.png:
  • platform/qt/editing/execCommand/paste-1-expected.txt:
  • platform/qt/editing/execCommand/paste-2-expected.png:
  • platform/qt/editing/execCommand/paste-2-expected.txt:
  • platform/qt/editing/execCommand/print-expected.png:
  • platform/qt/editing/execCommand/print-expected.txt:
  • platform/qt/editing/execCommand/remove-list-from-range-selection-expected.png:
  • platform/qt/editing/execCommand/remove-list-from-range-selection-expected.txt:
  • platform/qt/editing/execCommand/remove-list-item-1-expected.png:
  • platform/qt/editing/execCommand/remove-list-item-1-expected.txt:
  • platform/qt/editing/execCommand/selectAll-expected.png:
  • platform/qt/editing/execCommand/selectAll-expected.txt:
9:23 AM Changeset in webkit [122735] by loislo@chromium.org
  • 4 edits in trunk/Source/WebCore

Web Inspector: native memory: fix instrumentation for string members
https://bugs.webkit.org/show_bug.cgi?id=91384

Reviewed by Pavel Feldman.

It was possible to report a string member via addMember instead of addString.
This patch is fixing the problem and adding a link time guard.

Covered by existing inspector performance tests infrastructure.

  • dom/ElementAttributeData.h:

(WebCore::ElementAttributeData::reportMemoryUsage):

  • dom/MemoryInstrumentation.h:

(WebCore):
(WebCore::MemoryClassInfo::addString):

  • dom/QualifiedName.h:

(WebCore::QualifiedName::QualifiedNameImpl::reportMemoryUsage):

9:16 AM Changeset in webkit [122734] by rgabor@webkit.org
  • 2 edits in trunk/Source/JavaScriptCore

Unreviewed buildfix after r122729. Typo fix.

  • assembler/MacroAssemblerARM.h:

(JSC::MacroAssemblerARM::add32):

8:49 AM Changeset in webkit [122733] by abarth@webkit.org
  • 2 edits in trunk/LayoutTests

jquery/manipulation.html times out in release too.

  • platform/chromium/TestExpectations:
8:39 AM Changeset in webkit [122732] by kbalazs@webkit.org
  • 2 edits
    2 copies
    14 moves
    4 adds
    1 delete in trunk/LayoutTests

[Qt] remaining compositing tests after rebaseline for new testfonts
https://bugs.webkit.org/show_bug.cgi?id=91377

Unreviewed rebaseline.

  • platform/qt-5.0-wk2/Skipped:
  • platform/qt-5.0-wk2/compositing/overflow/theme-affects-visual-overflow-expected.txt: Removed.
  • platform/qt/compositing/backing/no-backing-for-clip-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/backing/no-backing-for-clip-expected.txt.
  • platform/qt/compositing/backing/no-backing-for-clip-overlap-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/backing/no-backing-for-clip-overlap-expected.txt.
  • platform/qt/compositing/backing/no-backing-for-perspective-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/backing/no-backing-for-perspective-expected.txt.
  • platform/qt/compositing/geometry/composited-html-size-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/composited-html-size-expected.png.
  • platform/qt/compositing/geometry/composited-html-size-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/composited-html-size-expected.txt.
  • platform/qt/compositing/geometry/composited-in-columns-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/composited-in-columns-expected.txt.
  • platform/qt/compositing/geometry/limit-layer-bounds-overflow-repaint-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/limit-layer-bounds-overflow-repaint-expected.png.
  • platform/qt/compositing/geometry/limit-layer-bounds-overflow-repaint-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/limit-layer-bounds-overflow-repaint-expected.txt.
  • platform/qt/compositing/geometry/object-clip-rects-assertion-expected.txt: Added.
  • platform/qt/compositing/geometry/preserve-3d-switching-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/preserve-3d-switching-expected.txt.
  • platform/qt/compositing/iframes/composited-iframe-scroll-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/limit-layer-bounds-overflow-repaint-expected.png.
  • platform/qt/compositing/iframes/composited-iframe-scroll-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/composited-iframe-scroll-expected.txt.
  • platform/qt/compositing/iframes/iframe-content-flipping-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/composited-html-size-expected.png.
  • platform/qt/compositing/iframes/iframe-content-flipping-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/iframe-content-flipping-expected.txt.
  • platform/qt/compositing/iframes/invisible-nested-iframe-show-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/invisible-nested-iframe-show-expected.txt.
  • platform/qt/compositing/layer-creation/no-compositing-for-preserve-3d-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/no-compositing-for-preserve-3d-expected.txt.
  • platform/qt/compositing/overflow/theme-affects-visual-overflow-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/overflow/theme-affects-visual-overflow-expected.png.
  • platform/qt/compositing/overflow/theme-affects-visual-overflow-expected.txt: Added.
8:28 AM Changeset in webkit [122731] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

[Qt] Fix Qt5 module dependencies
https://bugs.webkit.org/show_bug.cgi?id=91388

Patch by Simon Hausmann <simon.hausmann@nokia.com> on 2012-07-16
Reviewed by Laszlo Gombos.

Removed ancient qtscript and qtxmlpatterns module dependencies.

  • qmake/qt_webkit.pri:
8:25 AM Changeset in webkit [122730] by reed@google.com
  • 2 edits in trunk/LayoutTests

Update expectations : rebaseline images after skia 4600 lands
https://bugs.webkit.org/show_bug.cgi?id=91392

Reviewed by NOBODY : expectations change only

  • platform/chromium/TestExpectations:
8:05 AM Changeset in webkit [122729] by rgabor@webkit.org
  • 2 edits in trunk/Source/JavaScriptCore

Unreviewed buildfix from Zoltan Herczeg after r122677.
Implement missing add32 function to MacroAssemblerARM.

  • assembler/MacroAssemblerARM.h:

(JSC::MacroAssemblerARM::add32):
(MacroAssemblerARM):

7:56 AM Changeset in webkit [122728] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

run-webkit-test returns 254 at exit even when it succeeds
https://bugs.webkit.org/show_bug.cgi?id=91370

Patch by Thiago Marcos P. Santos <thiago.santos@intel.com> on 2012-07-16
Reviewed by Simon Hausmann.

sys.exit() is implemented by raising SystemExit which inherits from
BaseException. Since we are catching BaseException, run_webkit_tests.py
was always returning an error code.

  • Scripts/webkitpy/layout_tests/run_webkit_tests.py:
7:56 AM Changeset in webkit [122727] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/qt

[Qt] Fix inconsistent DLL linkage on Windows with WebKit1
https://bugs.webkit.org/show_bug.cgi?id=91375

Patch by Simon Hausmann <simon.hausmann@nokia.com> on 2012-07-16
Reviewed by Laszlo Gombos.

Export QWebHistoryItemPrivate as required for tests. Unfortunately we cannot use
Q_AUTOTEST_EXPORT outside of Qt.

  • Api/qwebhistory_p.h:
7:56 AM Changeset in webkit [122726] by zoltan@webkit.org
  • 7 edits in trunk/Source/WebCore

Unreviewed. Remove unnecessary executable bits after r122720.

  • platform/graphics/ImageSource.h:
  • platform/graphics/qt/ImageBufferQt.cpp:
  • platform/graphics/qt/ImageDecoderQt.cpp:
  • platform/graphics/qt/ImageQt.cpp:
  • platform/graphics/qt/StillImageQt.h:
  • platform/graphics/qt/TransparencyLayer.h:
7:54 AM Changeset in webkit [122725] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/blackberry

[BlackBerry] Text selection with touch hold does not start on text field in some cases
https://bugs.webkit.org/show_bug.cgi?id=91267

Patch by Yongxin Dai <yodai@rim.com> on 2012-07-16
Reviewed by Antonio Gomes.

Input fields host node is by spec non-editable unless the field itself has content editable enabled.
We enable selection if the shadow tree for the input field is selectable.
PR # 173450

Reviewed Internally by Mike Fenton.

  • Api/WebPage.cpp:

(BlackBerry::WebKit::WebPagePrivate::webContext):

  • Api/WebPage.cpp:

(BlackBerry::WebKit::WebPagePrivate::webContext):

7:50 AM Changeset in webkit [122724] by zoltan@webkit.org
  • 2 edits in trunk/LayoutTests

[Qt] REGRESSION (r122720): svg/filters/feSpecularLight-premultiplied.svg
https://bugs.webkit.org/show_bug.cgi?id=91390

Unreviewed gardening.

Skip until proper fix.

  • platform/qt/Skipped: Add the test to the skiplist
7:31 AM Changeset in webkit [122723] by kkristof@inf.u-szeged.hu
  • 2 edits in trunk/LayoutTests

[Qt] Unreviewed gardening. Fix TestExpectations after r122718.

Patch by Zoltan Arvai <zarvai@inf.u-szeged.hu> on 2012-07-16

  • platform/qt/TestExpectations:
7:29 AM Changeset in webkit [122722] by kbalazs@webkit.org
  • 4 edits
    24 moves
    95 adds
    70 deletes in trunk/LayoutTests

[Qt] compositing tests need rebaseline with new testfonts
https://bugs.webkit.org/show_bug.cgi?id=91234

Unreviewed rebaseline.

Rebaseline compositing tests. Move expectations from qt-5.0-wk2 to qt because these
results should not vary across Qt versions. Co-authored with Csaba Osztrogonác. Some
tests were produced uncorrect result, I keep skipped them and filed
https://bugs.webkit.org/show_bug.cgi?id=91377. Compositing tests are still skipped on
qt-4.8 and qt-5.0-wk1.

  • platform/qt-5.0-wk2/Skipped:
  • platform/qt-5.0-wk2/compositing/animation/state-at-end-event-transform-layer-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/animation/state-at-end-event-transform-layer-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/color-matching/image-color-matching-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/color-matching/pdf-image-match-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/color-matching/pdf-image-match-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/compositing-visible-descendant-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/direct-image-compositing-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/direct-image-compositing-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/generated-content-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/generated-content-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/geometry/abs-position-inside-opacity-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/geometry/clipping-foreground-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/geometry/clipping-foreground-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/geometry/fixed-in-composited-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/geometry/fixed-position-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/geometry/layer-due-to-layer-children-deep-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/geometry/layer-due-to-layer-children-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/geometry/layer-due-to-layer-children-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/geometry/outline-change-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/geometry/outline-change-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/geometry/partial-layout-update-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/geometry/root-layer-update-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/geometry/transfrom-origin-on-zero-size-layer-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/geometry/video-fixed-scrolling-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/iframes/composited-iframe-alignment-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/iframes/iframe-copy-on-scroll-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/images/direct-image-background-color-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/masks/masked-ancestor-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/overflow/fixed-position-ancestor-clip-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/overflow/overflow-compositing-descendant-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/overflow/overflow-compositing-descendant-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/overflow/overflow-positioning-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/overflow/overflow-positioning-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/overflow/overflow-scroll-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/overflow/overflow-scroll-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/overflow/parent-overflow-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/overflow/parent-overflow-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/overflow/scroll-ancestor-update-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/overflow/scrollbar-painting-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/overflow/scrollbar-painting-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/reflections/compositing-change-inside-reflection-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/reflections/masked-reflection-on-composited-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/reflections/nested-reflection-mask-change-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/reflections/nested-reflection-transformed-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/reflections/nested-reflection-transformed2-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/reflections/reflection-in-composited-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/reflections/reflection-opacity-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/reflections/reflection-ordering-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/repaint/become-overlay-composited-layer-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/repaint/become-overlay-composited-layer-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/repaint/composited-document-element-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/repaint/composited-document-element-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/repaint/layer-repaint-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/repaint/layer-repaint-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/repaint/layer-repaint-rects-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/repaint/opacity-between-absolute-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/repaint/opacity-between-absolute-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/repaint/opacity-between-absolute2-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/repaint/opacity-between-absolute2-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/self-painting-layers-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/self-painting-layers-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/shadows/shadow-drawing-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/shadows/shadow-drawing-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/sibling-positioning-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/text-on-large-layer-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/transitions/scale-transition-no-start-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/transitions/scale-transition-no-start-expected.txt: Removed.
  • platform/qt-5.0-wk2/compositing/transitions/singular-scale-transition-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/transitions/singular-scale-transition-expected.txt: Removed.
  • platform/qt/animations/3d/change-transform-in-end-event-expected.txt: Removed.
  • platform/qt/animations/3d/state-at-end-event-transform-expected.png: Added.
  • platform/qt/compositing/animation/state-at-end-event-transform-layer-expected.png: Added.
  • platform/qt/compositing/animation/state-at-end-event-transform-layer-expected.txt: Added.
  • platform/qt/compositing/color-matching/image-color-matching-expected.png: Added.
  • platform/qt/compositing/color-matching/image-color-matching-expected.txt: Added.
  • platform/qt/compositing/color-matching/pdf-image-match-expected.png: Added.
  • platform/qt/compositing/color-matching/pdf-image-match-expected.txt: Added.
  • platform/qt/compositing/compositing-visible-descendant-expected.png: Added.
  • platform/qt/compositing/compositing-visible-descendant-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/compositing-visible-descendant-expected.txt.
  • platform/qt/compositing/direct-image-compositing-expected.png: Added.
  • platform/qt/compositing/direct-image-compositing-expected.txt: Added.
  • platform/qt/compositing/generated-content-expected.png: Added.
  • platform/qt/compositing/generated-content-expected.txt: Added.
  • platform/qt/compositing/geometry/abs-position-inside-opacity-expected.png: Added.
  • platform/qt/compositing/geometry/abs-position-inside-opacity-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/abs-position-inside-opacity-expected.txt.
  • platform/qt/compositing/geometry/clipping-foreground-expected.png: Added.
  • platform/qt/compositing/geometry/clipping-foreground-expected.txt: Added.
  • platform/qt/compositing/geometry/fixed-in-composited-expected.png: Added.
  • platform/qt/compositing/geometry/fixed-in-composited-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/fixed-in-composited-expected.txt.
  • platform/qt/compositing/geometry/fixed-position-expected.png: Added.
  • platform/qt/compositing/geometry/fixed-position-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/fixed-position-expected.txt.
  • platform/qt/compositing/geometry/layer-due-to-layer-children-deep-expected.png: Added.
  • platform/qt/compositing/geometry/layer-due-to-layer-children-deep-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/layer-due-to-layer-children-deep-expected.txt.
  • platform/qt/compositing/geometry/layer-due-to-layer-children-expected.png: Added.
  • platform/qt/compositing/geometry/layer-due-to-layer-children-expected.txt: Added.
  • platform/qt/compositing/geometry/outline-change-expected.png: Added.
  • platform/qt/compositing/geometry/outline-change-expected.txt: Added.
  • platform/qt/compositing/geometry/partial-layout-update-expected.png: Added.
  • platform/qt/compositing/geometry/partial-layout-update-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/partial-layout-update-expected.txt.
  • platform/qt/compositing/geometry/root-layer-update-expected.png: Added.
  • platform/qt/compositing/geometry/root-layer-update-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/root-layer-update-expected.txt.
  • platform/qt/compositing/geometry/transfrom-origin-on-zero-size-layer-expected.png: Added.
  • platform/qt/compositing/geometry/transfrom-origin-on-zero-size-layer-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/transfrom-origin-on-zero-size-layer-expected.txt.
  • platform/qt/compositing/geometry/video-fixed-scrolling-expected.png: Added.
  • platform/qt/compositing/geometry/video-fixed-scrolling-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/video-fixed-scrolling-expected.txt.
  • platform/qt/compositing/iframes/composited-iframe-alignment-expected.png: Added.
  • platform/qt/compositing/iframes/composited-iframe-alignment-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/composited-iframe-alignment-expected.txt.
  • platform/qt/compositing/iframes/iframe-copy-on-scroll-expected.png: Added.
  • platform/qt/compositing/iframes/iframe-copy-on-scroll-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/iframe-copy-on-scroll-expected.txt.
  • platform/qt/compositing/images/direct-image-background-color-expected.png: Added.
  • platform/qt/compositing/images/direct-image-background-color-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/images/direct-image-background-color-expected.txt.
  • platform/qt/compositing/masks/direct-image-mask-expected.png: Added.
  • platform/qt/compositing/masks/direct-image-mask-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/masks/direct-image-mask-expected.txt.
  • platform/qt/compositing/masks/masked-ancestor-expected.png: Added.
  • platform/qt/compositing/masks/masked-ancestor-expected.txt: Added.
  • platform/qt/compositing/masks/multiple-masks-expected.png: Added.
  • platform/qt/compositing/masks/multiple-masks-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/masks/multiple-masks-expected.txt.
  • platform/qt/compositing/masks/simple-composited-mask-expected.png: Added.
  • platform/qt/compositing/masks/simple-composited-mask-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/masks/simple-composited-mask-expected.txt.
  • platform/qt/compositing/overflow/ancestor-overflow-expected.png:
  • platform/qt/compositing/overflow/ancestor-overflow-expected.txt:
  • platform/qt/compositing/overflow/fixed-position-ancestor-clip-expected.png: Added.
  • platform/qt/compositing/overflow/fixed-position-ancestor-clip-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/overflow/fixed-position-ancestor-clip-expected.txt.
  • platform/qt/compositing/overflow/overflow-compositing-descendant-expected.png: Added.
  • platform/qt/compositing/overflow/overflow-compositing-descendant-expected.txt: Added.
  • platform/qt/compositing/overflow/overflow-positioning-expected.png: Added.
  • platform/qt/compositing/overflow/overflow-positioning-expected.txt: Added.
  • platform/qt/compositing/overflow/overflow-scroll-expected.png: Added.
  • platform/qt/compositing/overflow/overflow-scroll-expected.txt: Added.
  • platform/qt/compositing/overflow/parent-overflow-expected.png: Added.
  • platform/qt/compositing/overflow/parent-overflow-expected.txt: Added.
  • platform/qt/compositing/overflow/scroll-ancestor-update-expected.png: Added.
  • platform/qt/compositing/overflow/scroll-ancestor-update-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/overflow/scroll-ancestor-update-expected.txt.
  • platform/qt/compositing/overflow/scrollbar-painting-expected.png: Added.
  • platform/qt/compositing/overflow/scrollbar-painting-expected.txt: Added.
  • platform/qt/compositing/reflections/compositing-change-inside-reflection-expected.png: Added.
  • platform/qt/compositing/reflections/compositing-change-inside-reflection-expected.txt: Added.
  • platform/qt/compositing/reflections/masked-reflection-on-composited-expected.png: Added.
  • platform/qt/compositing/reflections/masked-reflection-on-composited-expected.txt: Added.
  • platform/qt/compositing/reflections/nested-reflection-mask-change-expected.png: Added.
  • platform/qt/compositing/reflections/nested-reflection-mask-change-expected.txt: Added.
  • platform/qt/compositing/reflections/nested-reflection-transformed-expected.png: Added.
  • platform/qt/compositing/reflections/nested-reflection-transformed-expected.txt: Added.
  • platform/qt/compositing/reflections/nested-reflection-transformed2-expected.png: Added.
  • platform/qt/compositing/reflections/nested-reflection-transformed2-expected.txt: Added.
  • platform/qt/compositing/reflections/reflection-in-composited-expected.png: Added.
  • platform/qt/compositing/reflections/reflection-in-composited-expected.txt: Added.
  • platform/qt/compositing/reflections/reflection-on-composited-expected.png: Added.
  • platform/qt/compositing/reflections/reflection-on-composited-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/reflections/reflection-on-composited-expected.txt.
  • platform/qt/compositing/reflections/reflection-opacity-expected.png: Added.
  • platform/qt/compositing/reflections/reflection-opacity-expected.txt: Added.
  • platform/qt/compositing/reflections/reflection-ordering-expected.png: Added.
  • platform/qt/compositing/reflections/reflection-ordering-expected.txt: Added.
  • platform/qt/compositing/reflections/reflection-positioning-expected.png: Added.
  • platform/qt/compositing/reflections/reflection-positioning-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/reflections/reflection-positioning-expected.txt.
  • platform/qt/compositing/reflections/reflection-positioning2-expected.png: Added.
  • platform/qt/compositing/reflections/reflection-positioning2-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/reflections/reflection-positioning2-expected.txt.
  • platform/qt/compositing/reflections/simple-composited-reflections-expected.png: Added.
  • platform/qt/compositing/reflections/simple-composited-reflections-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/reflections/simple-composited-reflections-expected.txt.
  • platform/qt/compositing/repaint/become-overlay-composited-layer-expected.png: Added.
  • platform/qt/compositing/repaint/become-overlay-composited-layer-expected.txt: Added.
  • platform/qt/compositing/repaint/composited-document-element-expected.png: Added.
  • platform/qt/compositing/repaint/composited-document-element-expected.txt: Added.
  • platform/qt/compositing/repaint/layer-repaint-expected.png: Added.
  • platform/qt/compositing/repaint/layer-repaint-expected.txt: Added.
  • platform/qt/compositing/repaint/layer-repaint-rects-expected.png: Added.
  • platform/qt/compositing/repaint/layer-repaint-rects-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/repaint/layer-repaint-rects-expected.txt.
  • platform/qt/compositing/repaint/opacity-between-absolute-expected.png: Added.
  • platform/qt/compositing/repaint/opacity-between-absolute-expected.txt: Added.
  • platform/qt/compositing/repaint/opacity-between-absolute2-expected.png: Added.
  • platform/qt/compositing/repaint/opacity-between-absolute2-expected.txt: Added.
  • platform/qt/compositing/self-painting-layers-expected.png: Added.
  • platform/qt/compositing/self-painting-layers-expected.txt: Added.
  • platform/qt/compositing/shadows/shadow-drawing-expected.png: Added.
  • platform/qt/compositing/shadows/shadow-drawing-expected.txt: Added.
  • platform/qt/compositing/sibling-positioning-expected.png: Added.
  • platform/qt/compositing/sibling-positioning-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/sibling-positioning-expected.txt.
  • platform/qt/compositing/text-on-large-layer-expected.png: Added.
  • platform/qt/compositing/text-on-large-layer-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/text-on-large-layer-expected.txt.
  • platform/qt/compositing/transitions/scale-transition-no-start-expected.png: Added.
  • platform/qt/compositing/transitions/scale-transition-no-start-expected.txt: Added.
  • platform/qt/compositing/transitions/singular-scale-transition-expected.png: Added.
  • platform/qt/compositing/transitions/singular-scale-transition-expected.txt: Added.
7:08 AM Changeset in webkit [122721] by vsevik@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed chromium gardening, skipped failing test.
https://bugs.webkit.org/show_bug.cgi?id=91386

  • platform/chromium/TestExpectations:
6:50 AM Changeset in webkit [122720] by zoltan@webkit.org
  • 35 edits
    1 copy in trunk/Source

[Qt] Change NativeImagePtr from QPixmap* to QImage*
https://bugs.webkit.org/show_bug.cgi?id=88785

Reviewed by Simon Hausmann.

Since we use raster engine there is no difference between QPixmap and QImage, so we are going
to use QImage everywhere where it is possible. This refactoring contains the change of the
NativeImagePtr typedef from QPixmap* to QImage* and covers the related modifications.

Part of the change is similar to Viatcheslav Ostapenko's internal work.

Covered by existing tests.

Source/WebCore:

  • bridge/qt/qt_pixmapruntime.cpp:

(JSC::Bindings::QtPixmapAssignToElementMethod::invoke):
(JSC::Bindings::QtPixmapInstance::variantFromObject):

  • platform/DragImage.h:

(WebCore):

  • platform/graphics/GraphicsContext.h:

(GraphicsContext):

  • platform/graphics/Image.h:

(Image):

  • platform/graphics/ImageSource.h:

(WebCore):

  • platform/graphics/gstreamer/ImageGStreamer.h:
  • platform/graphics/gstreamer/ImageGStreamerQt.cpp:

(ImageGStreamer::ImageGStreamer):

  • platform/graphics/qt/GraphicsContext3DQt.cpp:

(WebCore::GraphicsContext3D::getImageData):

  • platform/graphics/qt/GraphicsContextQt.cpp:

(WebCore::GraphicsContext::pushTransparencyLayerInternal):
(WebCore::GraphicsContext::beginPlatformTransparencyLayer):
(WebCore::GraphicsContext::endPlatformTransparencyLayer):

  • platform/graphics/qt/ImageBufferDataQt.h:

(ImageBufferData):

  • platform/graphics/qt/ImageBufferQt.cpp:

(WebCore::ImageBufferData::ImageBufferData):
(WebCore::ImageBuffer::copyImage):
(WebCore::ImageBuffer::clip):
(WebCore::ImageBuffer::platformTransformColorSpace):
(WebCore::getImageData):
(WebCore::ImageBuffer::putByteArray):
(WebCore::encodeImage):
(WebCore::ImageBuffer::toDataURL):

  • platform/graphics/qt/ImageDecoderQt.cpp:

(WebCore::ImageFrame::asNewNativeImage):

  • platform/graphics/qt/ImageQt.cpp:

(graphics):
(loadResourceImage):
(WebCore::Image::loadPlatformResource):
(WebCore::Image::setPlatformResource):
(WebCore::Image::drawPattern):
(WebCore::BitmapImage::BitmapImage):
(WebCore::BitmapImage::draw):
(WebCore::BitmapImage::checkForSolidColor):
(WebCore::BitmapImage::create):

  • platform/graphics/qt/NativeImageQt.h: Added.

(WebCore):
(NativeImageQt):
(WebCore::NativeImageQt::defaultFormatForAlphaEnabledImages):
(WebCore::NativeImageQt::defaultFormatForOpaqueImages):

  • platform/graphics/qt/PatternQt.cpp:

(WebCore::Pattern::createPlatformPattern):

  • platform/graphics/qt/StillImageQt.cpp:

(WebCore::StillImage::StillImage):
(WebCore::StillImage::~StillImage):
(WebCore::StillImage::currentFrameHasAlpha):
(WebCore::StillImage::size):
(WebCore::StillImage::nativeImageForCurrentFrame):
(WebCore::StillImage::draw):

  • platform/graphics/qt/StillImageQt.h:

(WebCore::StillImage::create):
(WebCore::StillImage::createForRendering):
(StillImage):

  • platform/graphics/qt/TransparencyLayer.h:

(WebCore::TransparencyLayer::TransparencyLayer):
(TransparencyLayer):

  • platform/graphics/texmap/TextureMapperGL.cpp:
  • platform/graphics/surfaces/qt/GraphicsSurfaceQt.cpp:

(WebCore::GraphicsSurface::createReadOnlyImage):

  • platform/qt/ClipboardQt.cpp:

(WebCore::ClipboardQt::createDragImage):
(WebCore::ClipboardQt::declareAndWriteDragImage):

  • platform/qt/CursorQt.cpp:

(WebCore::createCustomCursor):

  • platform/qt/DragImageQt.cpp:

(WebCore::createDragImageFromImage):

  • platform/qt/PasteboardQt.cpp:

(WebCore::Pasteboard::writeImage):

Source/WebKit/qt:

  • Api/qwebframe.cpp:

(QWebHitTestResultPrivate::QWebHitTestResultPrivate):

  • Api/qwebhistory.cpp:

(QWebHistoryItem::icon):

  • Api/qwebsettings.cpp:

(QWebSettings::iconForUrl):
(QWebSettings::setWebGraphic):
(QWebSettings::webGraphic):

  • WebCoreSupport/DragClientQt.cpp:

(WebCore::DragClientQt::startDrag):

  • WebCoreSupport/InitWebCoreQt.cpp:

(WebCore::initializeWebCoreQt):

Source/WebKit2:

  • Shared/qt/ShareableBitmapQt.cpp:

(WebKit::ShareableBitmap::createImage):

  • UIProcess/qt/QtWebIconDatabaseClient.cpp:

(WebKit::QtWebIconDatabaseClient::iconImageForPageURL):

  • WebProcess/WebCoreSupport/qt/WebDragClientQt.cpp:

(WebKit::convertQImageToShareableBitmap):
(WebKit::WebDragClient::startDrag):

  • WebProcess/WebPage/LayerTreeCoordinator/LayerTreeCoordinator.cpp:

(WebKit::LayerTreeCoordinator::adoptImageBackingStore):

6:44 AM Changeset in webkit [122719] by kbalazs@webkit.org
  • 762 edits in trunk/LayoutTests

[Qt] platform/qt/tables/mozilla tests needs update after rebaseline and new testfonts
https://bugs.webkit.org/show_bug.cgi?id=91242

Unreviewed rebaseline.

Patch by Balazs Ankes <bank@inf.u-szeged.hu> on 2012-07-16

  • platform/qt-5.0-wk1/Skipped:
  • platform/qt-5.0-wk2/Skipped:
  • platform/qt-5.0/Skipped:
  • platform/qt/tables/layering/paint-test-layering-1-expected.png:
  • platform/qt/tables/layering/paint-test-layering-1-expected.txt:
  • platform/qt/tables/layering/paint-test-layering-2-expected.png:
  • platform/qt/tables/layering/paint-test-layering-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/45621-expected.png:
  • platform/qt/tables/mozilla/bugs/45621-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug10009-expected.png:
  • platform/qt/tables/mozilla/bugs/bug10009-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug100334-expected.png:
  • platform/qt/tables/mozilla/bugs/bug100334-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug10036-expected.png:
  • platform/qt/tables/mozilla/bugs/bug10036-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug10039-expected.png:
  • platform/qt/tables/mozilla/bugs/bug10039-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug101201-expected.png:
  • platform/qt/tables/mozilla/bugs/bug101201-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug101674-expected.png:
  • platform/qt/tables/mozilla/bugs/bug101674-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug10269-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug10269-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug1055-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug1055-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug10565-expected.png:
  • platform/qt/tables/mozilla/bugs/bug10565-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug106158-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug106158-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug106158-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug106158-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug10633-expected.png:
  • platform/qt/tables/mozilla/bugs/bug10633-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug106816-expected.png:
  • platform/qt/tables/mozilla/bugs/bug106816-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug108340-expected.png:
  • platform/qt/tables/mozilla/bugs/bug108340-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug109043-expected.png:
  • platform/qt/tables/mozilla/bugs/bug109043-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug11026-expected.png:
  • platform/qt/tables/mozilla/bugs/bug11026-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug110566-expected.png:
  • platform/qt/tables/mozilla/bugs/bug110566-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug113235-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug113235-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug113235-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug113235-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug113235-3-expected.png:
  • platform/qt/tables/mozilla/bugs/bug113235-3-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug113424-expected.png:
  • platform/qt/tables/mozilla/bugs/bug113424-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug11384q-expected.png:
  • platform/qt/tables/mozilla/bugs/bug11384q-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug11384s-expected.png:
  • platform/qt/tables/mozilla/bugs/bug11384s-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug1163-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug1163-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug1188-expected.png:
  • platform/qt/tables/mozilla/bugs/bug1188-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug11944-expected.png:
  • platform/qt/tables/mozilla/bugs/bug11944-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug119786-expected.png:
  • platform/qt/tables/mozilla/bugs/bug119786-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug12008-expected.png:
  • platform/qt/tables/mozilla/bugs/bug12008-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug120364-expected.png:
  • platform/qt/tables/mozilla/bugs/bug120364-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug1220-expected.png:
  • platform/qt/tables/mozilla/bugs/bug1220-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug1224-expected.png:
  • platform/qt/tables/mozilla/bugs/bug1224-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug12268-expected.png:
  • platform/qt/tables/mozilla/bugs/bug12268-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug123862-expected.png:
  • platform/qt/tables/mozilla/bugs/bug123862-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug1261-expected.png:
  • platform/qt/tables/mozilla/bugs/bug1261-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug126742-expected.png:
  • platform/qt/tables/mozilla/bugs/bug126742-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug12709-expected.png:
  • platform/qt/tables/mozilla/bugs/bug12709-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug127267-expected.png:
  • platform/qt/tables/mozilla/bugs/bug127267-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug128229-expected.png:
  • platform/qt/tables/mozilla/bugs/bug128229-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug12908-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug12908-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug12910-expected.png:
  • platform/qt/tables/mozilla/bugs/bug12910-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug1296-expected.png:
  • platform/qt/tables/mozilla/bugs/bug1296-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug1302-expected.png:
  • platform/qt/tables/mozilla/bugs/bug1302-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug131020-expected.png:
  • platform/qt/tables/mozilla/bugs/bug131020-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug131020_iframe-expected.png:
  • platform/qt/tables/mozilla/bugs/bug131020_iframe-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug13105-expected.png:
  • platform/qt/tables/mozilla/bugs/bug13105-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug13118-expected.png:
  • platform/qt/tables/mozilla/bugs/bug13118-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug1318-expected.png:
  • platform/qt/tables/mozilla/bugs/bug1318-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug13196-expected.png:
  • platform/qt/tables/mozilla/bugs/bug13196-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug133756-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug133756-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug133756-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug133756-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug13484-expected.png:
  • platform/qt/tables/mozilla/bugs/bug13484-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug13526-expected.png:
  • platform/qt/tables/mozilla/bugs/bug13526-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug138725-expected.png:
  • platform/qt/tables/mozilla/bugs/bug138725-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug139524-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug139524-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug139524-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug139524-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug139524-3-expected.png:
  • platform/qt/tables/mozilla/bugs/bug139524-3-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug139524-4-expected.png:
  • platform/qt/tables/mozilla/bugs/bug139524-4-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug14159-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug14159-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug14159-3-expected.png:
  • platform/qt/tables/mozilla/bugs/bug14159-3-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug1430-expected.png:
  • platform/qt/tables/mozilla/bugs/bug1430-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug14323-expected.png:
  • platform/qt/tables/mozilla/bugs/bug14323-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug145572-expected.png:
  • platform/qt/tables/mozilla/bugs/bug145572-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug1474-expected.png:
  • platform/qt/tables/mozilla/bugs/bug1474-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug149275-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug149275-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug149275-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug149275-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug14929-expected.png:
  • platform/qt/tables/mozilla/bugs/bug14929-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug15247-expected.png:
  • platform/qt/tables/mozilla/bugs/bug15247-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug15544-expected.png:
  • platform/qt/tables/mozilla/bugs/bug15544-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug157890-expected.png:
  • platform/qt/tables/mozilla/bugs/bug157890-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug159108-expected.png:
  • platform/qt/tables/mozilla/bugs/bug159108-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug16012-expected.png:
  • platform/qt/tables/mozilla/bugs/bug16012-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug16252-expected.png:
  • platform/qt/tables/mozilla/bugs/bug16252-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug17130-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug17130-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug17130-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug17130-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug17138-expected.png:
  • platform/qt/tables/mozilla/bugs/bug17138-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug17168-expected.png:
  • platform/qt/tables/mozilla/bugs/bug17168-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug175455-4-expected.png:
  • platform/qt/tables/mozilla/bugs/bug175455-4-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug17548-expected.png:
  • platform/qt/tables/mozilla/bugs/bug17548-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug17587-expected.png:
  • platform/qt/tables/mozilla/bugs/bug17587-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug1800-expected.png:
  • platform/qt/tables/mozilla/bugs/bug1800-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug1802-expected.png:
  • platform/qt/tables/mozilla/bugs/bug1802-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug1802s-expected.png:
  • platform/qt/tables/mozilla/bugs/bug1802s-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug1809-expected.png:
  • platform/qt/tables/mozilla/bugs/bug1809-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug1818-5-expected.png:
  • platform/qt/tables/mozilla/bugs/bug1818-5-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug1828-expected.png:
  • platform/qt/tables/mozilla/bugs/bug1828-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug18359-expected.png:
  • platform/qt/tables/mozilla/bugs/bug18359-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug18440-expected.png:
  • platform/qt/tables/mozilla/bugs/bug18440-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug18558-expected.png:
  • platform/qt/tables/mozilla/bugs/bug18558-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug18664-expected.png:
  • platform/qt/tables/mozilla/bugs/bug18664-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug18955-expected.png:
  • platform/qt/tables/mozilla/bugs/bug18955-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug19061-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug19061-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug19061-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug19061-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug19356-expected.png:
  • platform/qt/tables/mozilla/bugs/bug19356-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug194024-expected.png:
  • platform/qt/tables/mozilla/bugs/bug194024-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug19599-expected.png:
  • platform/qt/tables/mozilla/bugs/bug19599-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2050-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2050-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug20579-expected.png:
  • platform/qt/tables/mozilla/bugs/bug20579-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2065-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2065-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug20804-expected.png:
  • platform/qt/tables/mozilla/bugs/bug20804-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2123-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2123-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug21299-expected.png:
  • platform/qt/tables/mozilla/bugs/bug21299-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug215629-expected.png:
  • platform/qt/tables/mozilla/bugs/bug215629-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug21918-expected.png:
  • platform/qt/tables/mozilla/bugs/bug21918-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug22019-expected.png:
  • platform/qt/tables/mozilla/bugs/bug22019-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug220536-expected.png:
  • platform/qt/tables/mozilla/bugs/bug220536-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug22246-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug22246-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug22246-2a-expected.png:
  • platform/qt/tables/mozilla/bugs/bug22246-2a-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug22246-3-expected.png:
  • platform/qt/tables/mozilla/bugs/bug22246-3-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug22246-3a-expected.png:
  • platform/qt/tables/mozilla/bugs/bug22246-3a-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug222846-expected.png:
  • platform/qt/tables/mozilla/bugs/bug222846-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2267-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2267-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug227123-expected.png:
  • platform/qt/tables/mozilla/bugs/bug227123-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2296-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2296-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug23151-expected.png:
  • platform/qt/tables/mozilla/bugs/bug23151-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug23235-expected.png:
  • platform/qt/tables/mozilla/bugs/bug23235-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug23299-expected.png:
  • platform/qt/tables/mozilla/bugs/bug23299-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug24200-expected.png:
  • platform/qt/tables/mozilla/bugs/bug24200-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug24503-expected.png:
  • platform/qt/tables/mozilla/bugs/bug24503-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug24627-expected.png:
  • platform/qt/tables/mozilla/bugs/bug24627-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug24661-expected.png:
  • platform/qt/tables/mozilla/bugs/bug24661-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2469-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2469-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2479-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2479-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2479-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2479-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2479-3-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2479-3-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2479-4-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2479-4-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug24880-expected.png:
  • platform/qt/tables/mozilla/bugs/bug24880-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug25004-expected.png:
  • platform/qt/tables/mozilla/bugs/bug25004-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug25086-expected.png:
  • platform/qt/tables/mozilla/bugs/bug25086-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2509-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2509-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2516-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2516-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug25663-expected.png:
  • platform/qt/tables/mozilla/bugs/bug25663-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2585-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2585-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug26178-expected.png:
  • platform/qt/tables/mozilla/bugs/bug26178-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2684-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2684-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug27038-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug27038-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug27038-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug27038-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug27038-3-expected.png:
  • platform/qt/tables/mozilla/bugs/bug27038-3-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug275625-expected.png:
  • platform/qt/tables/mozilla/bugs/bug275625-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2757-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2757-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2763-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2763-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2773-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2773-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug278266-expected.png:
  • platform/qt/tables/mozilla/bugs/bug278266-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug278385-expected.png:
  • platform/qt/tables/mozilla/bugs/bug278385-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug27993-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug27993-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug28341-expected.png:
  • platform/qt/tables/mozilla/bugs/bug28341-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2886-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2886-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2886-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2886-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug28928-expected.png:
  • platform/qt/tables/mozilla/bugs/bug28928-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug29058-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug29058-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug29058-3-expected.png:
  • platform/qt/tables/mozilla/bugs/bug29058-3-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug29157-expected.png:
  • platform/qt/tables/mozilla/bugs/bug29157-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug29326-expected.png:
  • platform/qt/tables/mozilla/bugs/bug29326-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug29429-expected.png:
  • platform/qt/tables/mozilla/bugs/bug29429-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2947-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2947-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2962-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2962-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2973-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2973-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2981-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2981-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2981-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2981-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug2997-expected.png:
  • platform/qt/tables/mozilla/bugs/bug2997-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug30273-expected.png:
  • platform/qt/tables/mozilla/bugs/bug30273-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug30332-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug30332-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug30332-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug30332-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug30418-expected.png:
  • platform/qt/tables/mozilla/bugs/bug30418-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug30559-expected.png:
  • platform/qt/tables/mozilla/bugs/bug30559-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug30692-expected.png:
  • platform/qt/tables/mozilla/bugs/bug30692-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug30985-expected.png:
  • platform/qt/tables/mozilla/bugs/bug30985-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug3103-expected.png:
  • platform/qt/tables/mozilla/bugs/bug3103-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug3191-expected.png:
  • platform/qt/tables/mozilla/bugs/bug3191-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug32205-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug32205-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug32205-3-expected.png:
  • platform/qt/tables/mozilla/bugs/bug32205-3-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug32205-5-expected.png:
  • platform/qt/tables/mozilla/bugs/bug32205-5-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug3260-expected.png:
  • platform/qt/tables/mozilla/bugs/bug3260-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug3263-expected.png:
  • platform/qt/tables/mozilla/bugs/bug3263-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug32841-expected.png:
  • platform/qt/tables/mozilla/bugs/bug32841-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug3309-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug3309-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug33137-expected.png:
  • platform/qt/tables/mozilla/bugs/bug33137-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug33855-expected.png:
  • platform/qt/tables/mozilla/bugs/bug33855-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug34176-expected.png:
  • platform/qt/tables/mozilla/bugs/bug34176-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug3454-expected.png:
  • platform/qt/tables/mozilla/bugs/bug3454-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug35662-expected.png:
  • platform/qt/tables/mozilla/bugs/bug35662-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug3681-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug3681-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug3681-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug3681-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug3718-expected.png:
  • platform/qt/tables/mozilla/bugs/bug3718-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug38916-expected.png:
  • platform/qt/tables/mozilla/bugs/bug38916-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug39209-expected.png:
  • platform/qt/tables/mozilla/bugs/bug39209-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug3977-expected.png:
  • platform/qt/tables/mozilla/bugs/bug3977-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug40828-expected.png:
  • platform/qt/tables/mozilla/bugs/bug40828-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug4093-expected.png:
  • platform/qt/tables/mozilla/bugs/bug4093-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug41890-expected.png:
  • platform/qt/tables/mozilla/bugs/bug41890-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug42187-expected.png:
  • platform/qt/tables/mozilla/bugs/bug42187-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug42443-expected.png:
  • platform/qt/tables/mozilla/bugs/bug42443-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug4284-expected.png:
  • platform/qt/tables/mozilla/bugs/bug4284-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug43039-expected.png:
  • platform/qt/tables/mozilla/bugs/bug43039-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug43204-expected.png:
  • platform/qt/tables/mozilla/bugs/bug43204-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug4382-expected.png:
  • platform/qt/tables/mozilla/bugs/bug4382-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug4385-expected.png:
  • platform/qt/tables/mozilla/bugs/bug4385-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug43854-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug43854-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug43854-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug43854-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug4427-expected.png:
  • platform/qt/tables/mozilla/bugs/bug4427-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug4429-expected.png:
  • platform/qt/tables/mozilla/bugs/bug4429-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug44505-expected.png:
  • platform/qt/tables/mozilla/bugs/bug44505-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug44523-expected.png:
  • platform/qt/tables/mozilla/bugs/bug44523-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug4501-expected.png:
  • platform/qt/tables/mozilla/bugs/bug4501-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug45055-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug45055-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug45055-expected.png:
  • platform/qt/tables/mozilla/bugs/bug45055-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug4520-expected.png:
  • platform/qt/tables/mozilla/bugs/bug4520-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug4523-expected.png:
  • platform/qt/tables/mozilla/bugs/bug4523-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug4527-expected.png:
  • platform/qt/tables/mozilla/bugs/bug4527-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug45486-expected.png:
  • platform/qt/tables/mozilla/bugs/bug45486-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug4576-expected.png:
  • platform/qt/tables/mozilla/bugs/bug4576-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug46268-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug46268-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug46268-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug46268-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug46268-3-expected.png:
  • platform/qt/tables/mozilla/bugs/bug46268-3-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug46268-5-expected.png:
  • platform/qt/tables/mozilla/bugs/bug46268-5-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug46268-expected.png:
  • platform/qt/tables/mozilla/bugs/bug46268-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug46368-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug46368-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug46368-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug46368-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug46480-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug46480-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug46480-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug46480-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug46623-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug46623-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug46623-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug46623-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug46924-expected.png:
  • platform/qt/tables/mozilla/bugs/bug46924-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug46944-expected.png:
  • platform/qt/tables/mozilla/bugs/bug46944-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug4739-expected.png:
  • platform/qt/tables/mozilla/bugs/bug4739-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug47432-expected.png:
  • platform/qt/tables/mozilla/bugs/bug47432-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug48028-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug48028-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug48028-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug48028-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug4803-expected.png:
  • platform/qt/tables/mozilla/bugs/bug4803-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug4849-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug4849-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug4849-expected.png:
  • platform/qt/tables/mozilla/bugs/bug4849-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug48827-expected.png:
  • platform/qt/tables/mozilla/bugs/bug48827-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug50695-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug50695-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug51037-expected.png:
  • platform/qt/tables/mozilla/bugs/bug51037-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug51140-expected.png:
  • platform/qt/tables/mozilla/bugs/bug51140-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug51727-expected.png:
  • platform/qt/tables/mozilla/bugs/bug51727-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug5188-expected.png:
  • platform/qt/tables/mozilla/bugs/bug5188-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug52505-expected.png:
  • platform/qt/tables/mozilla/bugs/bug52505-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug52506-expected.png:
  • platform/qt/tables/mozilla/bugs/bug52506-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug53891-expected.png:
  • platform/qt/tables/mozilla/bugs/bug53891-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug54450-expected.png:
  • platform/qt/tables/mozilla/bugs/bug54450-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug5538-expected.png:
  • platform/qt/tables/mozilla/bugs/bug5538-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug55527-expected.png:
  • platform/qt/tables/mozilla/bugs/bug55527-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug55545-expected.png:
  • platform/qt/tables/mozilla/bugs/bug55545-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug55694-expected.png:
  • platform/qt/tables/mozilla/bugs/bug55694-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug56563-expected.png:
  • platform/qt/tables/mozilla/bugs/bug56563-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug57300-expected.png:
  • platform/qt/tables/mozilla/bugs/bug57300-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug57378-expected.png:
  • platform/qt/tables/mozilla/bugs/bug57378-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug57828-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug57828-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug57828-expected.png:
  • platform/qt/tables/mozilla/bugs/bug57828-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug5797-expected.png:
  • platform/qt/tables/mozilla/bugs/bug5797-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug5798-expected.png:
  • platform/qt/tables/mozilla/bugs/bug5798-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug5799-expected.png:
  • platform/qt/tables/mozilla/bugs/bug5799-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug5835-expected.png:
  • platform/qt/tables/mozilla/bugs/bug5835-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug5838-expected.png:
  • platform/qt/tables/mozilla/bugs/bug5838-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug58402-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug58402-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug59354-expected.png:
  • platform/qt/tables/mozilla/bugs/bug59354-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug60013-expected.png:
  • platform/qt/tables/mozilla/bugs/bug60013-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug60749-expected.png:
  • platform/qt/tables/mozilla/bugs/bug60749-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug60804-expected.png:
  • platform/qt/tables/mozilla/bugs/bug60804-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug60807-expected.png:
  • platform/qt/tables/mozilla/bugs/bug60807-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug60992-expected.png:
  • platform/qt/tables/mozilla/bugs/bug60992-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug6184-expected.png:
  • platform/qt/tables/mozilla/bugs/bug6184-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug625-expected.png:
  • platform/qt/tables/mozilla/bugs/bug625-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug6304-expected.png:
  • platform/qt/tables/mozilla/bugs/bug6304-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug63785-expected.png:
  • platform/qt/tables/mozilla/bugs/bug63785-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug6404-expected.png:
  • platform/qt/tables/mozilla/bugs/bug6404-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug647-expected.png:
  • platform/qt/tables/mozilla/bugs/bug647-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug650-expected.png:
  • platform/qt/tables/mozilla/bugs/bug650-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug6674-expected.png:
  • platform/qt/tables/mozilla/bugs/bug6674-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug67864-expected.png:
  • platform/qt/tables/mozilla/bugs/bug67864-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug67915-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug67915-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug68912-expected.png:
  • platform/qt/tables/mozilla/bugs/bug68912-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug68998-expected.png:
  • platform/qt/tables/mozilla/bugs/bug68998-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug69187-expected.png:
  • platform/qt/tables/mozilla/bugs/bug69187-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug69382-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug69382-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug69382-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug69382-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug709-expected.png:
  • platform/qt/tables/mozilla/bugs/bug709-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug7112-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug7112-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug7112-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug7112-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug7121-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug7121-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug72359-expected.png:
  • platform/qt/tables/mozilla/bugs/bug72359-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug727-expected.png:
  • platform/qt/tables/mozilla/bugs/bug727-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug73321-expected.png:
  • platform/qt/tables/mozilla/bugs/bug73321-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug7342-expected.png:
  • platform/qt/tables/mozilla/bugs/bug7342-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug7471-expected.png:
  • platform/qt/tables/mozilla/bugs/bug7471-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug75250-expected.png:
  • platform/qt/tables/mozilla/bugs/bug75250-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug7714-expected.png:
  • platform/qt/tables/mozilla/bugs/bug7714-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug78162-expected.png:
  • platform/qt/tables/mozilla/bugs/bug78162-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug8032-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug8032-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug80762-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug80762-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug81934-expected.png:
  • platform/qt/tables/mozilla/bugs/bug81934-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug82946-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug82946-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug82946-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug82946-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug83786-expected.png:
  • platform/qt/tables/mozilla/bugs/bug83786-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug8381-expected.png:
  • platform/qt/tables/mozilla/bugs/bug8381-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug8411-expected.png:
  • platform/qt/tables/mozilla/bugs/bug8411-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug86220-expected.png:
  • platform/qt/tables/mozilla/bugs/bug86220-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug86708-expected.png:
  • platform/qt/tables/mozilla/bugs/bug86708-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug88035-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug88035-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug88035-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug88035-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug8858-expected.png:
  • platform/qt/tables/mozilla/bugs/bug8858-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug8950-expected.png:
  • platform/qt/tables/mozilla/bugs/bug8950-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug9123-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug9123-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug9123-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug9123-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug92143-expected.png:
  • platform/qt/tables/mozilla/bugs/bug92143-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug9271-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug9271-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug9271-2-expected.png:
  • platform/qt/tables/mozilla/bugs/bug9271-2-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug92868-expected.png:
  • platform/qt/tables/mozilla/bugs/bug92868-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug93363-expected.png:
  • platform/qt/tables/mozilla/bugs/bug93363-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug963-expected.png:
  • platform/qt/tables/mozilla/bugs/bug963-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug96334-expected.png:
  • platform/qt/tables/mozilla/bugs/bug96334-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug96343-expected.png:
  • platform/qt/tables/mozilla/bugs/bug96343-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug965-expected.png:
  • platform/qt/tables/mozilla/bugs/bug965-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug97138-expected.png:
  • platform/qt/tables/mozilla/bugs/bug97138-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug9879-1-expected.png:
  • platform/qt/tables/mozilla/bugs/bug9879-1-expected.txt:
  • platform/qt/tables/mozilla/bugs/bug99923-expected.png:
  • platform/qt/tables/mozilla/bugs/bug99923-expected.txt:
  • platform/qt/tables/mozilla/collapsing_borders/bug127040-expected.png:
  • platform/qt/tables/mozilla/collapsing_borders/bug127040-expected.txt:
  • platform/qt/tables/mozilla/collapsing_borders/bug41262-3-expected.png:
  • platform/qt/tables/mozilla/collapsing_borders/bug41262-3-expected.txt:
  • platform/qt/tables/mozilla/collapsing_borders/bug41262-4-expected.png:
  • platform/qt/tables/mozilla/collapsing_borders/bug41262-4-expected.txt:
  • platform/qt/tables/mozilla/core/bloomberg-expected.png:
  • platform/qt/tables/mozilla/core/bloomberg-expected.txt:
  • platform/qt/tables/mozilla/core/borders-expected.png:
  • platform/qt/tables/mozilla/core/borders-expected.txt:
  • platform/qt/tables/mozilla/core/box_sizing-expected.png:
  • platform/qt/tables/mozilla/core/box_sizing-expected.txt:
  • platform/qt/tables/mozilla/core/captions-expected.png:
  • platform/qt/tables/mozilla/core/captions-expected.txt:
  • platform/qt/tables/mozilla/core/cell_heights-expected.png:
  • platform/qt/tables/mozilla/core/cell_heights-expected.txt:
  • platform/qt/tables/mozilla/core/col_span-expected.png:
  • platform/qt/tables/mozilla/core/col_span-expected.txt:
  • platform/qt/tables/mozilla/core/col_widths_auto_auto-expected.png:
  • platform/qt/tables/mozilla/core/col_widths_auto_auto-expected.txt:
  • platform/qt/tables/mozilla/core/col_widths_auto_autoFix-expected.png:
  • platform/qt/tables/mozilla/core/col_widths_auto_autoFix-expected.txt:
  • platform/qt/tables/mozilla/core/col_widths_auto_autoFixPer-expected.png:
  • platform/qt/tables/mozilla/core/col_widths_auto_autoFixPer-expected.txt:
  • platform/qt/tables/mozilla/core/col_widths_auto_autoPer-expected.png:
  • platform/qt/tables/mozilla/core/col_widths_auto_autoPer-expected.txt:
  • platform/qt/tables/mozilla/core/col_widths_auto_fix-expected.png:
  • platform/qt/tables/mozilla/core/col_widths_auto_fix-expected.txt:
  • platform/qt/tables/mozilla/core/col_widths_auto_fixPer-expected.png:
  • platform/qt/tables/mozilla/core/col_widths_auto_fixPer-expected.txt:
  • platform/qt/tables/mozilla/core/col_widths_auto_per-expected.png:
  • platform/qt/tables/mozilla/core/col_widths_auto_per-expected.txt:
  • platform/qt/tables/mozilla/core/col_widths_fix_auto-expected.png:
  • platform/qt/tables/mozilla/core/col_widths_fix_auto-expected.txt:
  • platform/qt/tables/mozilla/core/col_widths_fix_autoFix-expected.png:
  • platform/qt/tables/mozilla/core/col_widths_fix_autoFix-expected.txt:
  • platform/qt/tables/mozilla/core/col_widths_fix_autoPer-expected.png:
  • platform/qt/tables/mozilla/core/col_widths_fix_autoPer-expected.txt:
  • platform/qt/tables/mozilla/core/col_widths_fix_fix-expected.png:
  • platform/qt/tables/mozilla/core/col_widths_fix_fix-expected.txt:
  • platform/qt/tables/mozilla/core/col_widths_fix_fixPer-expected.png:
  • platform/qt/tables/mozilla/core/col_widths_fix_fixPer-expected.txt:
  • platform/qt/tables/mozilla/core/col_widths_fix_per-expected.png:
  • platform/qt/tables/mozilla/core/col_widths_fix_per-expected.txt:
  • platform/qt/tables/mozilla/core/margins-expected.png:
  • platform/qt/tables/mozilla/core/margins-expected.txt:
  • platform/qt/tables/mozilla/core/misc-expected.png:
  • platform/qt/tables/mozilla/core/misc-expected.txt:
  • platform/qt/tables/mozilla/core/nested1-expected.png:
  • platform/qt/tables/mozilla/core/nested1-expected.txt:
  • platform/qt/tables/mozilla/core/one_row-expected.png:
  • platform/qt/tables/mozilla/core/one_row-expected.txt:
  • platform/qt/tables/mozilla/core/row_span-expected.png:
  • platform/qt/tables/mozilla/core/row_span-expected.txt:
  • platform/qt/tables/mozilla/core/table_frame-expected.png:
  • platform/qt/tables/mozilla/core/table_frame-expected.txt:
  • platform/qt/tables/mozilla/core/table_heights-expected.png:
  • platform/qt/tables/mozilla/core/table_heights-expected.txt:
  • platform/qt/tables/mozilla/core/table_rules-expected.png:
  • platform/qt/tables/mozilla/core/table_rules-expected.txt:
  • platform/qt/tables/mozilla/core/table_widths-expected.png:
  • platform/qt/tables/mozilla/core/table_widths-expected.txt:
  • platform/qt/tables/mozilla/dom/appendCol2-expected.png:
  • platform/qt/tables/mozilla/dom/appendCol2-expected.txt:
  • platform/qt/tables/mozilla/dom/appendRowsExpand1-expected.png:
  • platform/qt/tables/mozilla/dom/appendRowsExpand1-expected.txt:
  • platform/qt/tables/mozilla/dom/appendTbodyExpand1-expected.png:
  • platform/qt/tables/mozilla/dom/appendTbodyExpand1-expected.txt:
  • platform/qt/tables/mozilla/dom/deleteCellsRebuild1-expected.png:
  • platform/qt/tables/mozilla/dom/deleteCellsRebuild1-expected.txt:
  • platform/qt/tables/mozilla/dom/deleteCellsShrink1-expected.png:
  • platform/qt/tables/mozilla/dom/deleteCellsShrink1-expected.txt:
  • platform/qt/tables/mozilla/dom/deleteCellsShrink2-expected.png:
  • platform/qt/tables/mozilla/dom/deleteCellsShrink2-expected.txt:
  • platform/qt/tables/mozilla/dom/deleteCol1-expected.png:
  • platform/qt/tables/mozilla/dom/deleteCol1-expected.txt:
  • platform/qt/tables/mozilla/dom/deleteCol2-expected.png:
  • platform/qt/tables/mozilla/dom/deleteCol2-expected.txt:
  • platform/qt/tables/mozilla/dom/deleteCol3-expected.png:
  • platform/qt/tables/mozilla/dom/deleteCol3-expected.txt:
  • platform/qt/tables/mozilla/dom/deleteColGroup1-expected.png:
  • platform/qt/tables/mozilla/dom/deleteColGroup1-expected.txt:
  • platform/qt/tables/mozilla/dom/deleteColGroup2-expected.png:
  • platform/qt/tables/mozilla/dom/deleteColGroup2-expected.txt:
  • platform/qt/tables/mozilla/dom/deleteRowsRebuild1-expected.png:
  • platform/qt/tables/mozilla/dom/deleteRowsRebuild1-expected.txt:
  • platform/qt/tables/mozilla/dom/deleteRowsShrink1-expected.png:
  • platform/qt/tables/mozilla/dom/deleteRowsShrink1-expected.txt:
  • platform/qt/tables/mozilla/dom/deleteTbodyExpand1-expected.png:
  • platform/qt/tables/mozilla/dom/deleteTbodyExpand1-expected.txt:
  • platform/qt/tables/mozilla/dom/deleteTbodyRebuild1-expected.png:
  • platform/qt/tables/mozilla/dom/deleteTbodyRebuild1-expected.txt:
  • platform/qt/tables/mozilla/dom/insertCellsExpand1-expected.png:
  • platform/qt/tables/mozilla/dom/insertCellsExpand1-expected.txt:
  • platform/qt/tables/mozilla/dom/insertCellsExpand2-expected.png:
  • platform/qt/tables/mozilla/dom/insertCellsExpand2-expected.txt:
  • platform/qt/tables/mozilla/dom/insertCellsRebuild1-expected.png:
  • platform/qt/tables/mozilla/dom/insertCellsRebuild1-expected.txt:
  • platform/qt/tables/mozilla/dom/insertCellsRebuild2-expected.png:
  • platform/qt/tables/mozilla/dom/insertCellsRebuild2-expected.txt:
  • platform/qt/tables/mozilla/dom/insertColGroups1-expected.png:
  • platform/qt/tables/mozilla/dom/insertColGroups1-expected.txt:
  • platform/qt/tables/mozilla/dom/insertColGroups2-expected.png:
  • platform/qt/tables/mozilla/dom/insertColGroups2-expected.txt:
  • platform/qt/tables/mozilla/dom/insertCols1-expected.png:
  • platform/qt/tables/mozilla/dom/insertCols1-expected.txt:
  • platform/qt/tables/mozilla/dom/insertCols2-expected.png:
  • platform/qt/tables/mozilla/dom/insertCols2-expected.txt:
  • platform/qt/tables/mozilla/dom/insertCols3-expected.png:
  • platform/qt/tables/mozilla/dom/insertCols3-expected.txt:
  • platform/qt/tables/mozilla/dom/insertCols4-expected.png:
  • platform/qt/tables/mozilla/dom/insertCols4-expected.txt:
  • platform/qt/tables/mozilla/dom/insertCols5-expected.png:
  • platform/qt/tables/mozilla/dom/insertCols5-expected.txt:
  • platform/qt/tables/mozilla/dom/insertRowsExpand1-expected.png:
  • platform/qt/tables/mozilla/dom/insertRowsExpand1-expected.txt:
  • platform/qt/tables/mozilla/dom/insertRowsRebuild1-expected.png:
  • platform/qt/tables/mozilla/dom/insertRowsRebuild1-expected.txt:
  • platform/qt/tables/mozilla/dom/tableDom-expected.png:
  • platform/qt/tables/mozilla/dom/tableDom-expected.txt:
6:37 AM EFLWebKit edited by g.czajkowski@samsung.com
(diff)
6:13 AM EFLWebKit edited by g.czajkowski@samsung.com
(diff)
5:45 AM EFLWebKit edited by g.czajkowski@samsung.com
(diff)
5:43 AM Changeset in webkit [122718] by kkristof@inf.u-szeged.hu
  • 2 edits in trunk/LayoutTests

[Qt] Unreviewed gardening. Adding flaky tests to TextExpectations.
https://bugs.webkit.org/show_bug.cgi?id=91379
https://bugs.webkit.org/show_bug.cgi?id=91376

Patch by Zoltan Arvai <zarvai@inf.u-szeged.hu> on 2012-07-16

  • platform/qt/TestExpectations:
5:42 AM Changeset in webkit [122717] by loislo@chromium.org
  • 19 edits in trunk/Source/WebCore

Web Inspector: moving forward to the better memory instrumentation API
https://bugs.webkit.org/show_bug.cgi?id=91259

Reviewed by Pavel Feldman.

I'm trying to remove unnecessary complexity of the API
reportInstrumentedObject and reportInstrumentedPointer will be replaced with addInstrumentedMember
The same will happen with reportPointer, reportObject pair.
Also info.report* will be replaced with info.add*

  • bindings/js/ScriptWrappable.h:

(WebCore::ScriptWrappable::reportMemoryUsage):

  • bindings/v8/DOMDataStore.cpp:

(WebCore::DOMDataStore::reportMemoryUsage):

  • bindings/v8/IntrusiveDOMWrapperMap.h:

(WebCore::ChunkedTable::reportMemoryUsage):

  • bindings/v8/ScriptProfiler.cpp:

(WebCore::ScriptProfiler::collectBindingMemoryInfo):

  • bindings/v8/ScriptWrappable.h:

(WebCore::ScriptWrappable::reportMemoryUsage):

  • bindings/v8/V8Binding.cpp:

(WebCore::V8BindingPerIsolateData::reportMemoryUsage):
(WebCore::StringCache::reportMemoryUsage):

  • bindings/v8/V8DOMMap.h:
  • css/StylePropertySet.h:

(WebCore::StylePropertySet::reportMemoryUsage):

  • dom/CharacterData.cpp:

(WebCore::CharacterData::reportMemoryUsage):

  • dom/ContainerNode.h:

(WebCore::ContainerNode::reportMemoryUsage):

  • dom/Document.cpp:

(WebCore::Document::reportMemoryUsage):

  • dom/Element.h:

(WebCore::Element::reportMemoryUsage):

  • dom/ElementAttributeData.h:

(WebCore::ElementAttributeData::reportMemoryUsage):

  • dom/MemoryInstrumentation.h:

(WebCore::MemoryInstrumentation::addInstrumentedMember):
(MemoryInstrumentation):
(WebCore::MemoryInstrumentation::addMember):
(WebCore::MemoryInstrumentation::OwningTraits::addInstrumentedMember):
(WebCore::MemoryInstrumentation::OwningTraits::addMember):
(WebCore::MemoryInstrumentation::addInstrumentedMemberImpl):
(WebCore::MemoryInstrumentation::addMemberImpl):
(WebCore::MemoryClassInfo::addInstrumentedMember):
(WebCore::MemoryClassInfo::addMember):
(WebCore::MemoryClassInfo::addHashMap):
(WebCore::MemoryClassInfo::addHashSet):
(WebCore::MemoryClassInfo::addListHashSet):
(WebCore::MemoryClassInfo::addVector):
(WebCore::MemoryClassInfo::addString):
(WebCore::MemoryInstrumentation::addHashMap):
(WebCore::MemoryInstrumentation::addHashSet):
(WebCore::MemoryInstrumentation::addListHashSet):
(WebCore::MemoryInstrumentation::addVector):

  • dom/Node.cpp:

(WebCore::Node::reportMemoryUsage):

  • dom/QualifiedName.h:

(WebCore::QualifiedName::QualifiedNameImpl::reportMemoryUsage):
(WebCore::QualifiedName::reportMemoryUsage):

  • inspector/InspectorMemoryAgent.cpp:

(WebCore):

  • platform/TreeShared.h:

(WebCore::TreeShared::reportMemoryUsage):

5:37 AM Changeset in webkit [122716] by kbalazs@webkit.org
  • 306 edits
    8 adds in trunk/LayoutTests

[Qt] platform/qt/editing/selection tests needs update after rebaseline and new testfonts
https://bugs.webkit.org/show_bug.cgi?id=91088

Unreviewed rebaseline.

Patch by Balazs Ankes <bank@inf.u-szeged.hu> on 2012-07-16

  • platform/qt-5.0-wk1/Skipped:
  • platform/qt-5.0-wk2/Skipped:
  • platform/qt-5.0/Skipped:
  • platform/qt/editing/selection/13804-expected.png:
  • platform/qt/editing/selection/13804-expected.txt:
  • platform/qt/editing/selection/14971-expected.png:
  • platform/qt/editing/selection/14971-expected.txt:
  • platform/qt/editing/selection/3690703-2-expected.png:
  • platform/qt/editing/selection/3690703-2-expected.txt:
  • platform/qt/editing/selection/3690703-expected.png:
  • platform/qt/editing/selection/3690703-expected.txt:
  • platform/qt/editing/selection/3690719-expected.png:
  • platform/qt/editing/selection/3690719-expected.txt:
  • platform/qt/editing/selection/4397952-expected.png:
  • platform/qt/editing/selection/4397952-expected.txt:
  • platform/qt/editing/selection/4402375-expected.png:
  • platform/qt/editing/selection/4402375-expected.txt:
  • platform/qt/editing/selection/4776665-expected.png:
  • platform/qt/editing/selection/4776665-expected.txt:
  • platform/qt/editing/selection/4818145-expected.png:
  • platform/qt/editing/selection/4818145-expected.txt:
  • platform/qt/editing/selection/4866671-expected.png:
  • platform/qt/editing/selection/4866671-expected.txt:
  • platform/qt/editing/selection/4889598-expected.png:
  • platform/qt/editing/selection/4889598-expected.txt:
  • platform/qt/editing/selection/4895428-2-expected.png:
  • platform/qt/editing/selection/4895428-2-expected.txt:
  • platform/qt/editing/selection/4895428-3-expected.png:
  • platform/qt/editing/selection/4895428-3-expected.txt:
  • platform/qt/editing/selection/4932260-1-expected.png:
  • platform/qt/editing/selection/4932260-1-expected.txt:
  • platform/qt/editing/selection/4932260-2-expected.png:
  • platform/qt/editing/selection/4932260-2-expected.txt:
  • platform/qt/editing/selection/4932260-3-expected.png:
  • platform/qt/editing/selection/4932260-3-expected.txt:
  • platform/qt/editing/selection/4947387-expected.png:
  • platform/qt/editing/selection/4947387-expected.txt:
  • platform/qt/editing/selection/4960116-expected.png:
  • platform/qt/editing/selection/4960116-expected.txt:
  • platform/qt/editing/selection/4960137-expected.png:
  • platform/qt/editing/selection/4960137-expected.txt:
  • platform/qt/editing/selection/4975120-expected.png:
  • platform/qt/editing/selection/4975120-expected.txt:
  • platform/qt/editing/selection/4983858-expected.png:
  • platform/qt/editing/selection/4983858-expected.txt:
  • platform/qt/editing/selection/5007143-2-expected.png:
  • platform/qt/editing/selection/5007143-2-expected.txt:
  • platform/qt/editing/selection/5007143-expected.png:
  • platform/qt/editing/selection/5007143-expected.txt:
  • platform/qt/editing/selection/5057506-2-expected.png:
  • platform/qt/editing/selection/5057506-2-expected.txt:
  • platform/qt/editing/selection/5057506-expected.png:
  • platform/qt/editing/selection/5057506-expected.txt:
  • platform/qt/editing/selection/5076323-1-expected.png:
  • platform/qt/editing/selection/5076323-1-expected.txt:
  • platform/qt/editing/selection/5076323-2-expected.png:
  • platform/qt/editing/selection/5076323-2-expected.txt:
  • platform/qt/editing/selection/5076323-3-expected.png:
  • platform/qt/editing/selection/5076323-3-expected.txt:
  • platform/qt/editing/selection/5081257-1-expected.png:
  • platform/qt/editing/selection/5081257-1-expected.txt:
  • platform/qt/editing/selection/5081257-2-expected.png:
  • platform/qt/editing/selection/5081257-2-expected.txt:
  • platform/qt/editing/selection/5099303-expected.png:
  • platform/qt/editing/selection/5099303-expected.txt:
  • platform/qt/editing/selection/5131716-1-expected.png:
  • platform/qt/editing/selection/5131716-1-expected.txt:
  • platform/qt/editing/selection/5131716-2-expected.png:
  • platform/qt/editing/selection/5131716-2-expected.txt:
  • platform/qt/editing/selection/5131716-3-expected.png:
  • platform/qt/editing/selection/5131716-3-expected.txt:
  • platform/qt/editing/selection/5131716-4-expected.png:
  • platform/qt/editing/selection/5131716-4-expected.txt:
  • platform/qt/editing/selection/5195166-2-expected.png:
  • platform/qt/editing/selection/5195166-2-expected.txt:
  • platform/qt/editing/selection/5234383-1-expected.png:
  • platform/qt/editing/selection/5234383-1-expected.txt:
  • platform/qt/editing/selection/5234383-2-expected.png:
  • platform/qt/editing/selection/5234383-2-expected.txt:
  • platform/qt/editing/selection/5240265-expected.png:
  • platform/qt/editing/selection/5240265-expected.txt:
  • platform/qt/editing/selection/5354455-2-expected.png:
  • platform/qt/editing/selection/5354455-2-expected.txt:
  • platform/qt/editing/selection/6476-expected.png:
  • platform/qt/editing/selection/6476-expected.txt:
  • platform/qt/editing/selection/7152-1-expected.png:
  • platform/qt/editing/selection/7152-1-expected.txt:
  • platform/qt/editing/selection/7152-2-expected.png:
  • platform/qt/editing/selection/7152-2-expected.txt:
  • platform/qt/editing/selection/addRange-expected.png:
  • platform/qt/editing/selection/addRange-expected.txt:
  • platform/qt/editing/selection/after-line-wrap-expected.png:
  • platform/qt/editing/selection/after-line-wrap-expected.txt:
  • platform/qt/editing/selection/caret-and-focus-ring-expected.png:
  • platform/qt/editing/selection/caret-and-focus-ring-expected.txt:
  • platform/qt/editing/selection/caret-before-select-expected.png:
  • platform/qt/editing/selection/caret-before-select-expected.txt:
  • platform/qt/editing/selection/clear-selection-expected.png:
  • platform/qt/editing/selection/clear-selection-expected.txt:
  • platform/qt/editing/selection/click-start-of-line-expected.png:
  • platform/qt/editing/selection/click-start-of-line-expected.txt:
  • platform/qt/editing/selection/contenteditable-click-inside-expected.png:
  • platform/qt/editing/selection/contenteditable-click-inside-expected.txt:
  • platform/qt/editing/selection/display-table-text-expected.png:
  • platform/qt/editing/selection/display-table-text-expected.txt:
  • platform/qt/editing/selection/doubleclick-crash-expected.png:
  • platform/qt/editing/selection/doubleclick-crash-expected.txt:
  • platform/qt/editing/selection/drag-in-iframe-expected.png:
  • platform/qt/editing/selection/drag-in-iframe-expected.txt:
  • platform/qt/editing/selection/drag-select-1-expected.png:
  • platform/qt/editing/selection/drag-select-1-expected.txt:
  • platform/qt/editing/selection/editable-html-element-expected.png:
  • platform/qt/editing/selection/editable-html-element-expected.txt:
  • platform/qt/editing/selection/editable-non-editable-crash-expected.png:
  • platform/qt/editing/selection/editable-non-editable-crash-expected.txt:
  • platform/qt/editing/selection/end-of-document-expected.png:
  • platform/qt/editing/selection/end-of-document-expected.txt:
  • platform/qt/editing/selection/expanding-selections-expected.png:
  • platform/qt/editing/selection/expanding-selections-expected.txt:
  • platform/qt/editing/selection/expanding-selections2-expected.png:
  • platform/qt/editing/selection/expanding-selections2-expected.txt:
  • platform/qt/editing/selection/extend-by-character-001-expected.png:
  • platform/qt/editing/selection/extend-by-character-001-expected.txt:
  • platform/qt/editing/selection/extend-by-character-002-expected.png:
  • platform/qt/editing/selection/extend-by-character-002-expected.txt:
  • platform/qt/editing/selection/extend-by-character-003-expected.png:
  • platform/qt/editing/selection/extend-by-character-003-expected.txt:
  • platform/qt/editing/selection/extend-by-character-004-expected.png:
  • platform/qt/editing/selection/extend-by-character-004-expected.txt:
  • platform/qt/editing/selection/extend-by-character-005-expected.png:
  • platform/qt/editing/selection/extend-by-character-005-expected.txt:
  • platform/qt/editing/selection/extend-by-character-006-expected.png:
  • platform/qt/editing/selection/extend-by-character-006-expected.txt:
  • platform/qt/editing/selection/extend-by-sentence-001-expected.png:
  • platform/qt/editing/selection/extend-by-sentence-001-expected.txt:
  • platform/qt/editing/selection/extend-by-word-001-expected.png:
  • platform/qt/editing/selection/extend-by-word-001-expected.txt:
  • platform/qt/editing/selection/extend-by-word-002-expected.png:
  • platform/qt/editing/selection/extend-by-word-002-expected.txt:
  • platform/qt/editing/selection/extend-inside-transforms-backward-expected.png:
  • platform/qt/editing/selection/extend-inside-transforms-backward-expected.txt:
  • platform/qt/editing/selection/extend-inside-transforms-forward-expected.png:
  • platform/qt/editing/selection/extend-inside-transforms-forward-expected.txt:
  • platform/qt/editing/selection/fake-doubleclick-expected.png:
  • platform/qt/editing/selection/fake-doubleclick-expected.txt:
  • platform/qt/editing/selection/focus-body-expected.png:
  • platform/qt/editing/selection/focus-body-expected.txt:
  • platform/qt/editing/selection/focus_editable_html-expected.png:
  • platform/qt/editing/selection/focus_editable_html-expected.txt:
  • platform/qt/editing/selection/iframe-expected.png:
  • platform/qt/editing/selection/iframe-expected.txt:
  • platform/qt/editing/selection/image-before-linebreak-expected.png:
  • platform/qt/editing/selection/image-before-linebreak-expected.txt:
  • platform/qt/editing/selection/inline-closest-leaf-child-expected.png:
  • platform/qt/editing/selection/inline-closest-leaf-child-expected.txt:
  • platform/qt/editing/selection/inline-table-expected.png:
  • platform/qt/editing/selection/inline-table-expected.txt:
  • platform/qt/editing/selection/leave-requested-block-expected.png:
  • platform/qt/editing/selection/leave-requested-block-expected.txt:
  • platform/qt/editing/selection/line-wrap-1-expected.png:
  • platform/qt/editing/selection/line-wrap-1-expected.txt:
  • platform/qt/editing/selection/line-wrap-2-expected.png:
  • platform/qt/editing/selection/line-wrap-2-expected.txt:
  • platform/qt/editing/selection/mixed-editability-1-expected.png:
  • platform/qt/editing/selection/mixed-editability-1-expected.txt:
  • platform/qt/editing/selection/mixed-editability-2-expected.png:
  • platform/qt/editing/selection/mixed-editability-2-expected.txt:
  • platform/qt/editing/selection/mixed-editability-3-expected.png:
  • platform/qt/editing/selection/mixed-editability-3-expected.txt:
  • platform/qt/editing/selection/mixed-editability-4-expected.png:
  • platform/qt/editing/selection/mixed-editability-4-expected.txt:
  • platform/qt/editing/selection/mixed-editability-5-expected.png:
  • platform/qt/editing/selection/mixed-editability-5-expected.txt:
  • platform/qt/editing/selection/mixed-editability-6-expected.png:
  • platform/qt/editing/selection/mixed-editability-6-expected.txt:
  • platform/qt/editing/selection/mixed-editability-7-expected.png:
  • platform/qt/editing/selection/mixed-editability-7-expected.txt:
  • platform/qt/editing/selection/mixed-editability-8-expected.png:
  • platform/qt/editing/selection/mixed-editability-8-expected.txt:
  • platform/qt/editing/selection/mixed-editability-9-expected.png:
  • platform/qt/editing/selection/mixed-editability-9-expected.txt:
  • platform/qt/editing/selection/move-3875618-fix-expected.png:
  • platform/qt/editing/selection/move-3875618-fix-expected.txt:
  • platform/qt/editing/selection/move-3875641-fix-expected.png:
  • platform/qt/editing/selection/move-3875641-fix-expected.txt:
  • platform/qt/editing/selection/move-backwords-by-word-001-expected.png:
  • platform/qt/editing/selection/move-backwords-by-word-001-expected.txt:
  • platform/qt/editing/selection/move-between-blocks-no-001-expected.png:
  • platform/qt/editing/selection/move-between-blocks-no-001-expected.txt:
  • platform/qt/editing/selection/move-between-blocks-yes-001-expected.png:
  • platform/qt/editing/selection/move-between-blocks-yes-001-expected.txt:
  • platform/qt/editing/selection/move-by-character-001-expected.png:
  • platform/qt/editing/selection/move-by-character-001-expected.txt:
  • platform/qt/editing/selection/move-by-character-002-expected.png:
  • platform/qt/editing/selection/move-by-character-002-expected.txt:
  • platform/qt/editing/selection/move-by-character-003-expected.png:
  • platform/qt/editing/selection/move-by-character-003-expected.txt:
  • platform/qt/editing/selection/move-by-character-004-expected.png:
  • platform/qt/editing/selection/move-by-character-004-expected.txt:
  • platform/qt/editing/selection/move-by-character-005-expected.png:
  • platform/qt/editing/selection/move-by-character-005-expected.txt:
  • platform/qt/editing/selection/move-by-character-6-expected.png:
  • platform/qt/editing/selection/move-by-character-6-expected.txt:
  • platform/qt/editing/selection/move-by-line-001-expected.png:
  • platform/qt/editing/selection/move-by-line-001-expected.txt:
  • platform/qt/editing/selection/move-by-line-002-expected.png:
  • platform/qt/editing/selection/move-by-line-002-expected.txt:
  • platform/qt/editing/selection/move-by-sentence-001-expected.png:
  • platform/qt/editing/selection/move-by-sentence-001-expected.txt:
  • platform/qt/editing/selection/move-by-sentence-linebreak-expected.png:
  • platform/qt/editing/selection/move-by-sentence-linebreak-expected.txt:
  • platform/qt/editing/selection/move-by-word-001-expected.png:
  • platform/qt/editing/selection/move-by-word-001-expected.txt:
  • platform/qt/editing/selection/node-removal-1-expected.png:
  • platform/qt/editing/selection/node-removal-1-expected.txt:
  • platform/qt/editing/selection/node-removal-2-expected.png:
  • platform/qt/editing/selection/node-removal-2-expected.txt:
  • platform/qt/editing/selection/paragraph-granularity-expected.png:
  • platform/qt/editing/selection/paragraph-granularity-expected.txt:
  • platform/qt/editing/selection/previous-line-position-expected.png:
  • platform/qt/editing/selection/previous-line-position-expected.txt:
  • platform/qt/editing/selection/range-between-block-and-inline-expected.png:
  • platform/qt/editing/selection/range-between-block-and-inline-expected.txt:
  • platform/qt/editing/selection/replace-selection-1-expected.png:
  • platform/qt/editing/selection/replace-selection-1-expected.txt:
  • platform/qt/editing/selection/replaced-boundaries-1-expected.png:
  • platform/qt/editing/selection/replaced-boundaries-1-expected.txt:
  • platform/qt/editing/selection/replaced-boundaries-2-expected.png:
  • platform/qt/editing/selection/replaced-boundaries-2-expected.txt:
  • platform/qt/editing/selection/replaced-boundaries-3-expected.png:
  • platform/qt/editing/selection/replaced-boundaries-3-expected.txt:
  • platform/qt/editing/selection/select-across-readonly-input-1-expected.png:
  • platform/qt/editing/selection/select-across-readonly-input-1-expected.txt:
  • platform/qt/editing/selection/select-across-readonly-input-2-expected.png:
  • platform/qt/editing/selection/select-across-readonly-input-2-expected.txt:
  • platform/qt/editing/selection/select-across-readonly-input-3-expected.png:
  • platform/qt/editing/selection/select-across-readonly-input-3-expected.txt:
  • platform/qt/editing/selection/select-across-readonly-input-4-expected.png:
  • platform/qt/editing/selection/select-across-readonly-input-4-expected.txt:
  • platform/qt/editing/selection/select-across-readonly-input-5-expected.png:
  • platform/qt/editing/selection/select-across-readonly-input-5-expected.txt:
  • platform/qt/editing/selection/select-all-001-expected.png:
  • platform/qt/editing/selection/select-all-001-expected.txt:
  • platform/qt/editing/selection/select-all-002-expected.png:
  • platform/qt/editing/selection/select-all-002-expected.txt:
  • platform/qt/editing/selection/select-all-003-expected.png:
  • platform/qt/editing/selection/select-all-003-expected.txt:
  • platform/qt/editing/selection/select-all-004-expected.png:
  • platform/qt/editing/selection/select-all-004-expected.txt:
  • platform/qt/editing/selection/select-all-005-expected.png:
  • platform/qt/editing/selection/select-all-005-expected.txt:
  • platform/qt/editing/selection/select-all-006-expected.png:
  • platform/qt/editing/selection/select-all-006-expected.txt:
  • platform/qt/editing/selection/select-all-iframe-expected.png:
  • platform/qt/editing/selection/select-all-iframe-expected.txt:
  • platform/qt/editing/selection/select-box-expected.png:
  • platform/qt/editing/selection/select-box-expected.txt:
  • platform/qt/editing/selection/select-element-paragraph-boundary-expected.png:
  • platform/qt/editing/selection/select-element-paragraph-boundary-expected.txt:
  • platform/qt/editing/selection/select-text-overflow-ellipsis-expected.png:
  • platform/qt/editing/selection/select-text-overflow-ellipsis-expected.txt:
  • platform/qt/editing/selection/selectNode-expected.png:
  • platform/qt/editing/selection/selectNode-expected.txt:
  • platform/qt/editing/selection/selectNodeContents-expected.png:
  • platform/qt/editing/selection/selectNodeContents-expected.txt:
  • platform/qt/editing/selection/selection-3748164-fix-expected.png:
  • platform/qt/editing/selection/selection-3748164-fix-expected.txt:
  • platform/qt/editing/selection/selection-actions-expected.png:
  • platform/qt/editing/selection/selection-actions-expected.txt:
  • platform/qt/editing/selection/selection-background-expected.png:
  • platform/qt/editing/selection/selection-background-expected.txt:
  • platform/qt/editing/selection/selection-button-text-expected.png:
  • platform/qt/editing/selection/selection-button-text-expected.txt:
  • platform/qt/editing/selection/table-caret-1-expected.png:
  • platform/qt/editing/selection/table-caret-1-expected.txt:
  • platform/qt/editing/selection/table-caret-2-expected.png:
  • platform/qt/editing/selection/table-caret-2-expected.txt:
  • platform/qt/editing/selection/table-caret-3-expected.png:
  • platform/qt/editing/selection/table-caret-3-expected.txt:
  • platform/qt/editing/selection/triple-click-in-pre-expected.png:
  • platform/qt/editing/selection/triple-click-in-pre-expected.txt:
  • platform/qt/editing/selection/unrendered-space-expected.png:
  • platform/qt/editing/selection/unrendered-space-expected.txt:
  • platform/qt/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.png: Added.
  • platform/qt/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.txt:
  • platform/qt/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.png: Added.
  • platform/qt/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.txt:
  • platform/qt/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.png: Added.
  • platform/qt/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.txt:
  • platform/qt/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.png: Added.
  • platform/qt/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.txt:
  • platform/qt/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.png: Added.
  • platform/qt/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.txt:
  • platform/qt/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.png: Added.
  • platform/qt/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.txt:
  • platform/qt/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.png: Added.
  • platform/qt/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.txt:
  • platform/qt/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.png: Added.
  • platform/qt/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.txt:
  • platform/qt/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.png:
  • platform/qt/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.txt:
  • platform/qt/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.png:
  • platform/qt/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.txt:
  • platform/qt/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.png:
  • platform/qt/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.txt:
  • platform/qt/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.png:
  • platform/qt/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.txt:
  • platform/qt/editing/selection/word-granularity-expected.png:
  • platform/qt/editing/selection/word-granularity-expected.txt:
  • platform/qt/editing/selection/wrapped-line-caret-1-expected.png:
  • platform/qt/editing/selection/wrapped-line-caret-1-expected.txt:
  • platform/qt/editing/selection/wrapped-line-caret-2-expected.png:
  • platform/qt/editing/selection/wrapped-line-caret-2-expected.txt:
5:18 AM Changeset in webkit [122715] by loislo@chromium.org
  • 19 edits in trunk/Source/WebCore

Unreviewed, rolling out r122714.
http://trac.webkit.org/changeset/122714
https://bugs.webkit.org/show_bug.cgi?id=91380

It broke mac compilation (Requested by loislo on #webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2012-07-16

  • bindings/js/ScriptWrappable.h:

(WebCore::ScriptWrappable::reportMemoryUsage):

  • bindings/v8/DOMDataStore.cpp:

(WebCore::DOMDataStore::reportMemoryUsage):

  • bindings/v8/IntrusiveDOMWrapperMap.h:

(WebCore::ChunkedTable::reportMemoryUsage):

  • bindings/v8/ScriptProfiler.cpp:

(WebCore::ScriptProfiler::collectBindingMemoryInfo):

  • bindings/v8/ScriptWrappable.h:

(WebCore::ScriptWrappable::reportMemoryUsage):

  • bindings/v8/V8Binding.cpp:

(WebCore::V8BindingPerIsolateData::reportMemoryUsage):
(WebCore::StringCache::reportMemoryUsage):

  • bindings/v8/V8DOMMap.h:
  • css/StylePropertySet.h:

(WebCore::StylePropertySet::reportMemoryUsage):

  • dom/CharacterData.cpp:

(WebCore::CharacterData::reportMemoryUsage):

  • dom/ContainerNode.h:

(WebCore::ContainerNode::reportMemoryUsage):

  • dom/Document.cpp:

(WebCore::Document::reportMemoryUsage):

  • dom/Element.h:

(WebCore::Element::reportMemoryUsage):

  • dom/ElementAttributeData.h:

(WebCore::ElementAttributeData::reportMemoryUsage):

  • dom/MemoryInstrumentation.h:

(WebCore::MemoryInstrumentation::reportObject):
(MemoryInstrumentation):
(WebCore::MemoryInstrumentation::reportPointer):
(WebCore::MemoryClassInfo::reportInstrumentedPointer):
(WebCore::MemoryClassInfo::reportInstrumentedObject):
(WebCore::MemoryClassInfo::reportPointer):
(WebCore::MemoryClassInfo::reportObject):
(WebCore::MemoryClassInfo::reportHashMap):
(WebCore::MemoryClassInfo::reportHashSet):
(WebCore::MemoryClassInfo::reportListHashSet):
(WebCore::MemoryClassInfo::reportVector):
(MemoryClassInfo):
(WebCore::MemoryClassInfo::reportString):
(WebCore):
(WebCore::MemoryInstrumentation::reportInstrumentedPointer):
(WebCore::MemoryInstrumentation::reportInstrumentedObject):
(WebCore::MemoryInstrumentation::reportHashMap):
(WebCore::MemoryInstrumentation::reportHashSet):
(WebCore::MemoryInstrumentation::reportListHashSet):
(WebCore::MemoryInstrumentation::reportVector):

  • dom/Node.cpp:

(WebCore::Node::reportMemoryUsage):

  • dom/QualifiedName.h:

(WebCore::QualifiedName::QualifiedNameImpl::reportMemoryUsage):
(WebCore::QualifiedName::reportMemoryUsage):

  • inspector/InspectorMemoryAgent.cpp:

(WebCore):

  • platform/TreeShared.h:

(WebCore::TreeShared::reportMemoryUsage):

5:00 AM Changeset in webkit [122714] by loislo@chromium.org
  • 19 edits in trunk/Source/WebCore

Web Inspector: moving forward to the better memory instrumentation API
https://bugs.webkit.org/show_bug.cgi?id=91259

Reviewed by Pavel Feldman.

I'm trying to remove unnecessary complexity of the API
reportInstrumentedObject and reportInstrumentedPointer will be replaced with addInstrumentedMember
The same will happen with reportPointer, reportObject pair.
Also info.report* will be replaced with info.add*

  • bindings/js/ScriptWrappable.h:

(WebCore::ScriptWrappable::reportMemoryUsage):

  • bindings/v8/DOMDataStore.cpp:

(WebCore::DOMDataStore::reportMemoryUsage):

  • bindings/v8/IntrusiveDOMWrapperMap.h:

(WebCore::ChunkedTable::reportMemoryUsage):

  • bindings/v8/ScriptProfiler.cpp:

(WebCore::ScriptProfiler::collectBindingMemoryInfo):

  • bindings/v8/ScriptWrappable.h:

(WebCore::ScriptWrappable::reportMemoryUsage):

  • bindings/v8/V8Binding.cpp:

(WebCore::V8BindingPerIsolateData::reportMemoryUsage):
(WebCore::StringCache::reportMemoryUsage):

  • bindings/v8/V8DOMMap.h:
  • css/StylePropertySet.h:

(WebCore::StylePropertySet::reportMemoryUsage):

  • dom/CharacterData.cpp:

(WebCore::CharacterData::reportMemoryUsage):

  • dom/ContainerNode.h:

(WebCore::ContainerNode::reportMemoryUsage):

  • dom/Document.cpp:

(WebCore::Document::reportMemoryUsage):

  • dom/Element.h:

(WebCore::Element::reportMemoryUsage):

  • dom/ElementAttributeData.h:

(WebCore::ElementAttributeData::reportMemoryUsage):

  • dom/MemoryInstrumentation.h:

(WebCore::MemoryInstrumentation::addInstrumentedMember):
(MemoryInstrumentation):
(WebCore::MemoryInstrumentation::addMember):
(WebCore::MemoryInstrumentation::OwningTraits::addInstrumentedMember):
(WebCore::MemoryInstrumentation::OwningTraits::addMember):
(WebCore::MemoryInstrumentation::addInstrumentedMemberImpl):
(WebCore::MemoryInstrumentation::addMemberImpl):
(WebCore::MemoryClassInfo::addInstrumentedMember):
(WebCore::MemoryClassInfo::addMember):
(WebCore::MemoryClassInfo::addHashMap):
(WebCore::MemoryClassInfo::addHashSet):
(WebCore::MemoryClassInfo::addListHashSet):
(WebCore::MemoryClassInfo::addVector):
(WebCore::MemoryClassInfo::addString):
(WebCore::MemoryInstrumentation::addHashMap):
(WebCore::MemoryInstrumentation::addHashSet):
(WebCore::MemoryInstrumentation::addListHashSet):
(WebCore::MemoryInstrumentation::addVector):

  • dom/Node.cpp:

(WebCore::Node::reportMemoryUsage):

  • dom/QualifiedName.h:

(WebCore::QualifiedName::QualifiedNameImpl::reportMemoryUsage):
(WebCore::QualifiedName::reportMemoryUsage):

  • inspector/InspectorMemoryAgent.cpp:

(WebCore):

  • platform/TreeShared.h:

(WebCore::TreeShared::reportMemoryUsage):

4:48 AM Changeset in webkit [122713] by loislo@chromium.org
  • 17 edits in trunk/Source/WebCore

Web Inspector: native memory instrumentation: extract instrumentation methods into MemoryClassInfo
https://bugs.webkit.org/show_bug.cgi?id=91227

Reviewed by Pavel Feldman.

void Node::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
{

MemoryClassInfo<Node> info(memoryObjectInfo, this, MemoryInstrumentation::DOM);
info.visitBaseClass<ScriptWrappable>(this);

info.addMember(m_notInstrumentedPointer); automatically detects poniter/reference
info.addInstrumentedMember(m_next);
info.addHashSet<MemoryInstrumentation::NonClass>(m_aHash);
NonClass value_type (report only size of internal template structures)
info.addHashSet<MemoryInstrumentation::NotInstrumentedClass>(m_aHashSet); not instrumented value_type (use sizeof)
info.addHashSet<MemoryInstrumentation::InstrumentedClass>(m_aHashSet);
instrumented value_type (call visit)

}

The change is covered by existing tests for native memory snapshot.

  • bindings/v8/DOMDataStore.cpp:

(WebCore::DOMDataStore::reportMemoryUsage):

  • bindings/v8/IntrusiveDOMWrapperMap.h:

(WebCore::ChunkedTable::reportMemoryUsage):

  • bindings/v8/ScriptWrappable.h:

(WebCore::ScriptWrappable::reportMemoryUsage):

  • bindings/v8/V8Binding.cpp:

(WebCore::V8BindingPerIsolateData::reportMemoryUsage):
(WebCore::StringCache::reportMemoryUsage):

  • bindings/v8/V8DOMMap.h:
  • css/StylePropertySet.h:

(WebCore::StylePropertySet::reportMemoryUsage):

  • dom/CharacterData.cpp:

(WebCore::CharacterData::reportMemoryUsage):

  • dom/ContainerNode.h:

(WebCore::ContainerNode::reportMemoryUsage):

  • dom/Document.cpp:

(WebCore::Document::reportMemoryUsage):

  • dom/Element.h:

(WebCore::Element::reportMemoryUsage):

  • dom/ElementAttributeData.h:

(WebCore::ElementAttributeData::reportMemoryUsage):

  • dom/MemoryInstrumentation.h:

(MemoryInstrumentation):
(WebCore::MemoryObjectInfo::objectType):
(WebCore::MemoryObjectInfo::objectSize):
(WebCore::MemoryObjectInfo::memoryInstrumentation):
(MemoryObjectInfo):
(WebCore::MemoryObjectInfo::reportObjectInfo):
(WebCore):
(MemoryClassInfo):
(WebCore::MemoryClassInfo::MemoryClassInfo):
(WebCore::MemoryClassInfo::visitBaseClass):
(WebCore::MemoryClassInfo::reportInstrumentedPointer):
(WebCore::MemoryClassInfo::reportInstrumentedObject):
(WebCore::MemoryClassInfo::reportPointer):
(WebCore::MemoryClassInfo::reportObject):
(WebCore::MemoryClassInfo::reportHashMap):
(WebCore::MemoryClassInfo::reportHashSet):
(WebCore::MemoryClassInfo::reportListHashSet):
(WebCore::MemoryClassInfo::reportVector):
(WebCore::MemoryClassInfo::reportString):

  • dom/Node.cpp:

(WebCore::Node::reportMemoryUsage):

  • dom/QualifiedName.h:

(WebCore::QualifiedName::QualifiedNameImpl::reportMemoryUsage):
(WebCore::QualifiedName::reportMemoryUsage):

  • platform/TreeShared.h:

(WebCore::TreeShared::reportMemoryUsage):

4:28 AM Changeset in webkit [122712] by kbalazs@webkit.org
  • 252 edits
    1 copy
    2 adds in trunk/LayoutTests

[Qt] Update test expectations. Unskip now passing tests.
https://bugs.webkit.org/show_bug.cgi?id=91085.

Patch by Ádám Kallai <kadam@inf.u-szeged.hu> on 2012-07-16
Reviewed by Csaba Osztorgonác.

  • platform/qt-5.0/Skipped:
  • platform/qt/editing/deleting/4922367-expected.png:
  • platform/qt/editing/deleting/4922367-expected.txt:
  • platform/qt/editing/deleting/5099303-expected.png:
  • platform/qt/editing/deleting/5099303-expected.txt:
  • platform/qt/editing/deleting/5126166-expected.png:
  • platform/qt/editing/deleting/5126166-expected.txt:
  • platform/qt/editing/deleting/5144139-2-expected.png:
  • platform/qt/editing/deleting/5144139-2-expected.txt:
  • platform/qt/editing/deleting/5206311-1-expected.png:
  • platform/qt/editing/deleting/5206311-1-expected.txt:
  • platform/qt/editing/deleting/5272440-expected.png:
  • platform/qt/editing/deleting/5272440-expected.txt:
  • platform/qt/editing/deleting/5369009-expected.png:
  • platform/qt/editing/deleting/5369009-expected.txt:
  • platform/qt/editing/deleting/5433862-2-expected.png:
  • platform/qt/editing/deleting/5433862-2-expected.txt:
  • platform/qt/editing/deleting/5483370-expected.png:
  • platform/qt/editing/deleting/5483370-expected.txt:
  • platform/qt/editing/deleting/collapse-whitespace-3587601-fix-expected.png:
  • platform/qt/editing/deleting/collapse-whitespace-3587601-fix-expected.txt:
  • platform/qt/editing/deleting/delete-3608445-fix-expected.png:
  • platform/qt/editing/deleting/delete-3608445-fix-expected.txt:
  • platform/qt/editing/deleting/delete-3608462-fix-expected.png:
  • platform/qt/editing/deleting/delete-3608462-fix-expected.txt:
  • platform/qt/editing/deleting/delete-3775172-fix-expected.png:
  • platform/qt/editing/deleting/delete-3775172-fix-expected.txt:
  • platform/qt/editing/deleting/delete-3800834-fix-expected.png:
  • platform/qt/editing/deleting/delete-3800834-fix-expected.txt:
  • platform/qt/editing/deleting/delete-3857753-fix-expected.png:
  • platform/qt/editing/deleting/delete-3857753-fix-expected.txt:
  • platform/qt/editing/deleting/delete-3865854-fix-expected.png:
  • platform/qt/editing/deleting/delete-3865854-fix-expected.txt:
  • platform/qt/editing/deleting/delete-3928305-fix-expected.png:
  • platform/qt/editing/deleting/delete-3928305-fix-expected.txt:
  • platform/qt/editing/deleting/delete-4083333-fix-expected.png:
  • platform/qt/editing/deleting/delete-4083333-fix-expected.txt:
  • platform/qt/editing/deleting/delete-after-span-ws-001-expected.png:
  • platform/qt/editing/deleting/delete-after-span-ws-001-expected.txt:
  • platform/qt/editing/deleting/delete-after-span-ws-002-expected.png:
  • platform/qt/editing/deleting/delete-after-span-ws-002-expected.txt:
  • platform/qt/editing/deleting/delete-after-span-ws-003-expected.png:
  • platform/qt/editing/deleting/delete-after-span-ws-003-expected.txt:
  • platform/qt/editing/deleting/delete-and-undo-expected.png:
  • platform/qt/editing/deleting/delete-and-undo-expected.txt:
  • platform/qt/editing/deleting/delete-at-paragraph-boundaries-002-expected.png:
  • platform/qt/editing/deleting/delete-at-paragraph-boundaries-002-expected.txt:
  • platform/qt/editing/deleting/delete-at-paragraph-boundaries-003-expected.png:
  • platform/qt/editing/deleting/delete-at-paragraph-boundaries-003-expected.txt:
  • platform/qt/editing/deleting/delete-at-paragraph-boundaries-004-expected.png:
  • platform/qt/editing/deleting/delete-at-paragraph-boundaries-004-expected.txt:
  • platform/qt/editing/deleting/delete-at-paragraph-boundaries-005-expected.png:
  • platform/qt/editing/deleting/delete-at-paragraph-boundaries-005-expected.txt:
  • platform/qt/editing/deleting/delete-at-paragraph-boundaries-006-expected.png:
  • platform/qt/editing/deleting/delete-at-paragraph-boundaries-006-expected.txt:
  • platform/qt/editing/deleting/delete-at-paragraph-boundaries-007-expected.png:
  • platform/qt/editing/deleting/delete-at-paragraph-boundaries-007-expected.txt:
  • platform/qt/editing/deleting/delete-at-paragraph-boundaries-008-expected.png:
  • platform/qt/editing/deleting/delete-at-paragraph-boundaries-008-expected.txt:
  • platform/qt/editing/deleting/delete-at-paragraph-boundaries-009-expected.png:
  • platform/qt/editing/deleting/delete-at-paragraph-boundaries-009-expected.txt:
  • platform/qt/editing/deleting/delete-at-paragraph-boundaries-010-expected.png:
  • platform/qt/editing/deleting/delete-at-paragraph-boundaries-010-expected.txt:
  • platform/qt/editing/deleting/delete-at-paragraph-boundaries-011-expected.png:
  • platform/qt/editing/deleting/delete-at-paragraph-boundaries-011-expected.txt:
  • platform/qt/editing/deleting/delete-at-start-or-end-expected.png:
  • platform/qt/editing/deleting/delete-at-start-or-end-expected.txt:
  • platform/qt/editing/deleting/delete-block-contents-001-expected.png:
  • platform/qt/editing/deleting/delete-block-contents-001-expected.txt:
  • platform/qt/editing/deleting/delete-block-contents-002-expected.png:
  • platform/qt/editing/deleting/delete-block-contents-002-expected.txt:
  • platform/qt/editing/deleting/delete-block-contents-003-expected.png:
  • platform/qt/editing/deleting/delete-block-contents-003-expected.txt:
  • platform/qt/editing/deleting/delete-block-merge-contents-001-expected.png:
  • platform/qt/editing/deleting/delete-block-merge-contents-001-expected.txt:
  • platform/qt/editing/deleting/delete-block-merge-contents-002-expected.png:
  • platform/qt/editing/deleting/delete-block-merge-contents-002-expected.txt:
  • platform/qt/editing/deleting/delete-block-merge-contents-003-expected.png:
  • platform/qt/editing/deleting/delete-block-merge-contents-003-expected.txt:
  • platform/qt/editing/deleting/delete-block-merge-contents-004-expected.png:
  • platform/qt/editing/deleting/delete-block-merge-contents-004-expected.txt:
  • platform/qt/editing/deleting/delete-block-merge-contents-005-expected.png:
  • platform/qt/editing/deleting/delete-block-merge-contents-005-expected.txt:
  • platform/qt/editing/deleting/delete-block-merge-contents-006-expected.png:
  • platform/qt/editing/deleting/delete-block-merge-contents-006-expected.txt:
  • platform/qt/editing/deleting/delete-block-merge-contents-007-expected.png:
  • platform/qt/editing/deleting/delete-block-merge-contents-007-expected.txt:
  • platform/qt/editing/deleting/delete-block-merge-contents-008-expected.png:
  • platform/qt/editing/deleting/delete-block-merge-contents-008-expected.txt:
  • platform/qt/editing/deleting/delete-block-merge-contents-009-expected.png:
  • platform/qt/editing/deleting/delete-block-merge-contents-009-expected.txt:
  • platform/qt/editing/deleting/delete-block-merge-contents-010-expected.png:
  • platform/qt/editing/deleting/delete-block-merge-contents-010-expected.txt:
  • platform/qt/editing/deleting/delete-block-merge-contents-011-expected.png:
  • platform/qt/editing/deleting/delete-block-merge-contents-011-expected.txt:
  • platform/qt/editing/deleting/delete-block-merge-contents-012-expected.png:
  • platform/qt/editing/deleting/delete-block-merge-contents-012-expected.txt:
  • platform/qt/editing/deleting/delete-block-merge-contents-013-expected.png:
  • platform/qt/editing/deleting/delete-block-merge-contents-013-expected.txt:
  • platform/qt/editing/deleting/delete-block-merge-contents-014-expected.png:
  • platform/qt/editing/deleting/delete-block-merge-contents-014-expected.txt:
  • platform/qt/editing/deleting/delete-block-merge-contents-015-expected.png:
  • platform/qt/editing/deleting/delete-block-merge-contents-015-expected.txt:
  • platform/qt/editing/deleting/delete-block-merge-contents-016-expected.png:
  • platform/qt/editing/deleting/delete-block-merge-contents-016-expected.txt:
  • platform/qt/editing/deleting/delete-block-merge-contents-017-expected.png:
  • platform/qt/editing/deleting/delete-block-merge-contents-017-expected.txt:
  • platform/qt/editing/deleting/delete-block-merge-contents-018-expected.png:
  • platform/qt/editing/deleting/delete-block-merge-contents-018-expected.txt:
  • platform/qt/editing/deleting/delete-block-merge-contents-019-expected.png:
  • platform/qt/editing/deleting/delete-block-merge-contents-019-expected.txt:
  • platform/qt/editing/deleting/delete-block-merge-contents-020-expected.png:
  • platform/qt/editing/deleting/delete-block-merge-contents-020-expected.txt:
  • platform/qt/editing/deleting/delete-block-merge-contents-021-expected.png:
  • platform/qt/editing/deleting/delete-block-merge-contents-021-expected.txt:
  • platform/qt/editing/deleting/delete-block-merge-contents-022-expected.png:
  • platform/qt/editing/deleting/delete-block-merge-contents-022-expected.txt:
  • platform/qt/editing/deleting/delete-block-merge-contents-023-expected.png:
  • platform/qt/editing/deleting/delete-block-merge-contents-023-expected.txt:
  • platform/qt/editing/deleting/delete-block-merge-contents-024-expected.png:
  • platform/qt/editing/deleting/delete-block-merge-contents-024-expected.txt:
  • platform/qt/editing/deleting/delete-br-001-expected.png:
  • platform/qt/editing/deleting/delete-br-001-expected.txt:
  • platform/qt/editing/deleting/delete-br-002-expected.png:
  • platform/qt/editing/deleting/delete-br-002-expected.txt:
  • platform/qt/editing/deleting/delete-br-003-expected.png:
  • platform/qt/editing/deleting/delete-br-003-expected.txt:
  • platform/qt/editing/deleting/delete-br-004-expected.png:
  • platform/qt/editing/deleting/delete-br-004-expected.txt:
  • platform/qt/editing/deleting/delete-br-005-expected.png:
  • platform/qt/editing/deleting/delete-br-005-expected.txt:
  • platform/qt/editing/deleting/delete-br-006-expected.png:
  • platform/qt/editing/deleting/delete-br-006-expected.txt:
  • platform/qt/editing/deleting/delete-br-007-expected.png:
  • platform/qt/editing/deleting/delete-br-007-expected.txt:
  • platform/qt/editing/deleting/delete-br-008-expected.png:
  • platform/qt/editing/deleting/delete-br-008-expected.txt:
  • platform/qt/editing/deleting/delete-br-009-expected.png:
  • platform/qt/editing/deleting/delete-br-009-expected.txt:
  • platform/qt/editing/deleting/delete-br-010-expected.png:
  • platform/qt/editing/deleting/delete-br-010-expected.txt:
  • platform/qt/editing/deleting/delete-br-013-expected.png:
  • platform/qt/editing/deleting/delete-br-013-expected.txt:
  • platform/qt/editing/deleting/delete-character-001-expected.png:
  • platform/qt/editing/deleting/delete-character-001-expected.txt:
  • platform/qt/editing/deleting/delete-contiguous-ws-001-expected.png:
  • platform/qt/editing/deleting/delete-contiguous-ws-001-expected.txt:
  • platform/qt/editing/deleting/delete-first-list-item-expected.png:
  • platform/qt/editing/deleting/delete-first-list-item-expected.txt:
  • platform/qt/editing/deleting/delete-hr-expected.png:
  • platform/qt/editing/deleting/delete-hr-expected.txt:
  • platform/qt/editing/deleting/delete-image-001-expected.png:
  • platform/qt/editing/deleting/delete-image-001-expected.txt:
  • platform/qt/editing/deleting/delete-image-002-expected.png:
  • platform/qt/editing/deleting/delete-image-002-expected.txt:
  • platform/qt/editing/deleting/delete-image-003-expected.png:
  • platform/qt/editing/deleting/delete-image-003-expected.txt:
  • platform/qt/editing/deleting/delete-image-004-expected.png:
  • platform/qt/editing/deleting/delete-image-004-expected.txt:
  • platform/qt/editing/deleting/delete-leading-ws-001-expected.png:
  • platform/qt/editing/deleting/delete-leading-ws-001-expected.txt:
  • platform/qt/editing/deleting/delete-line-001-expected.png:
  • platform/qt/editing/deleting/delete-line-001-expected.txt:
  • platform/qt/editing/deleting/delete-line-002-expected.png:
  • platform/qt/editing/deleting/delete-line-002-expected.txt:
  • platform/qt/editing/deleting/delete-line-003-expected.png:
  • platform/qt/editing/deleting/delete-line-003-expected.txt:
  • platform/qt/editing/deleting/delete-line-004-expected.png:
  • platform/qt/editing/deleting/delete-line-004-expected.txt:
  • platform/qt/editing/deleting/delete-line-005-expected.png:
  • platform/qt/editing/deleting/delete-line-005-expected.txt:
  • platform/qt/editing/deleting/delete-line-006-expected.png:
  • platform/qt/editing/deleting/delete-line-006-expected.txt:
  • platform/qt/editing/deleting/delete-line-007-expected.png:
  • platform/qt/editing/deleting/delete-line-007-expected.txt:
  • platform/qt/editing/deleting/delete-line-008-expected.png:
  • platform/qt/editing/deleting/delete-line-008-expected.txt:
  • platform/qt/editing/deleting/delete-line-009-expected.png:
  • platform/qt/editing/deleting/delete-line-009-expected.txt:
  • platform/qt/editing/deleting/delete-line-010-expected.png:
  • platform/qt/editing/deleting/delete-line-010-expected.txt:
  • platform/qt/editing/deleting/delete-line-011-expected.png:
  • platform/qt/editing/deleting/delete-line-011-expected.txt:
  • platform/qt/editing/deleting/delete-line-012-expected.png:
  • platform/qt/editing/deleting/delete-line-012-expected.txt:
  • platform/qt/editing/deleting/delete-line-013-expected.png:
  • platform/qt/editing/deleting/delete-line-013-expected.txt:
  • platform/qt/editing/deleting/delete-line-014-expected.png:
  • platform/qt/editing/deleting/delete-line-014-expected.txt:
  • platform/qt/editing/deleting/delete-line-015-expected.png:
  • platform/qt/editing/deleting/delete-line-015-expected.txt:
  • platform/qt/editing/deleting/delete-line-016-expected.png:
  • platform/qt/editing/deleting/delete-line-016-expected.txt:
  • platform/qt/editing/deleting/delete-line-017-expected.png:
  • platform/qt/editing/deleting/delete-line-017-expected.txt:
  • platform/qt/editing/deleting/delete-line-end-ws-001-expected.png:
  • platform/qt/editing/deleting/delete-line-end-ws-001-expected.txt:
  • platform/qt/editing/deleting/delete-line-end-ws-002-expected.png:
  • platform/qt/editing/deleting/delete-line-end-ws-002-expected.txt:
  • platform/qt/editing/deleting/delete-listitem-001-expected.png:
  • platform/qt/editing/deleting/delete-listitem-001-expected.txt:
  • platform/qt/editing/deleting/delete-listitem-002-expected.png:
  • platform/qt/editing/deleting/delete-listitem-002-expected.txt:
  • platform/qt/editing/deleting/delete-selection-001-expected.png:
  • platform/qt/editing/deleting/delete-selection-001-expected.txt:
  • platform/qt/editing/deleting/delete-to-select-table-expected.png:
  • platform/qt/editing/deleting/delete-to-select-table-expected.txt:
  • platform/qt/editing/deleting/delete-trailing-ws-001-expected.png:
  • platform/qt/editing/deleting/delete-trailing-ws-001-expected.txt:
  • platform/qt/editing/deleting/delete-trailing-ws-002-expected.png:
  • platform/qt/editing/deleting/delete-trailing-ws-002-expected.txt:
  • platform/qt/editing/deleting/delete-ws-fixup-001-expected.png:
  • platform/qt/editing/deleting/delete-ws-fixup-001-expected.txt:
  • platform/qt/editing/deleting/delete-ws-fixup-002-expected.png:
  • platform/qt/editing/deleting/delete-ws-fixup-002-expected.txt:
  • platform/qt/editing/deleting/delete-ws-fixup-003-expected.png:
  • platform/qt/editing/deleting/delete-ws-fixup-003-expected.txt:
  • platform/qt/editing/deleting/delete-ws-fixup-004-expected.png:
  • platform/qt/editing/deleting/delete-ws-fixup-004-expected.txt:
  • platform/qt/editing/deleting/deletionUI-single-instance-expected.png:
  • platform/qt/editing/deleting/deletionUI-single-instance-expected.txt:
  • platform/qt/editing/deleting/forward-delete-expected.png:
  • platform/qt/editing/deleting/forward-delete-expected.txt:
  • platform/qt/editing/deleting/list-item-1-expected.png:
  • platform/qt/editing/deleting/list-item-1-expected.txt:
  • platform/qt/editing/deleting/merge-different-styles-expected.png:
  • platform/qt/editing/deleting/merge-different-styles-expected.txt:
  • platform/qt/editing/deleting/merge-endOfParagraph-expected.png:
  • platform/qt/editing/deleting/merge-endOfParagraph-expected.txt:
  • platform/qt/editing/deleting/merge-no-br-expected.png:
  • platform/qt/editing/deleting/merge-no-br-expected.txt:
  • platform/qt/editing/deleting/merge-unrendered-space-expected.png:
  • platform/qt/editing/deleting/merge-unrendered-space-expected.txt:
  • platform/qt/editing/deleting/merge-whitespace-pre-expected.png:
  • platform/qt/editing/deleting/merge-whitespace-pre-expected.txt:
  • platform/qt/editing/deleting/move-nodes-001-expected.png:
  • platform/qt/editing/deleting/move-nodes-001-expected.txt:
  • platform/qt/editing/deleting/non-smart-delete-expected.png:
  • platform/qt/editing/deleting/non-smart-delete-expected.txt:
  • platform/qt/editing/deleting/pruning-after-merge-2-expected.png:
  • platform/qt/editing/deleting/pruning-after-merge-2-expected.txt:
  • platform/qt/editing/deleting/smart-delete-001-expected.png:
  • platform/qt/editing/deleting/smart-delete-001-expected.txt:
  • platform/qt/editing/deleting/smart-delete-002-expected.png:
  • platform/qt/editing/deleting/smart-delete-002-expected.txt:
  • platform/qt/editing/deleting/smart-delete-003-expected.png: Added.
  • platform/qt/editing/deleting/smart-delete-003-expected.txt:
  • platform/qt/editing/deleting/smart-delete-004-expected.png: Added.
  • platform/qt/editing/deleting/smart-delete-004-expected.txt:
  • platform/qt/editing/deleting/table-cells-expected.png:
  • platform/qt/editing/deleting/table-cells-expected.txt:
  • platform/qt/editing/deleting/transpose-empty-expected.png: Copied from LayoutTests/platform/qt/editing/deleting/delete-at-start-or-end-expected.png.
  • platform/qt/editing/deleting/type-delete-after-quote-expected.png:
  • platform/qt/editing/deleting/type-delete-after-quote-expected.txt:
4:04 AM Changeset in webkit [122711] by vsevik@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed chromium gardening, marked test as flaky.
https://bugs.webkit.org/show_bug.cgi?id=91373

  • platform/chromium/TestExpectations:
3:40 AM Changeset in webkit [122710] by vsevik@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed chromium gardening, skipped failing test.
https://bugs.webkit.org/show_bug.cgi?id=91372

  • platform/chromium/TestExpectations:
3:14 AM WebKitGTK/WebKit2Roadmap edited by Carlos Garcia Campos
(diff)
2:56 AM Changeset in webkit [122709] by Carlos Garcia Campos
  • 1 copy in releases/WebKitGTK/webkit-1.9.5

Tagging the WebKitGTK+ 1.9.5 release

2:43 AM Changeset in webkit [122708] by Carlos Garcia Campos
  • 4 edits in trunk

Unreviewed. Update NEWS and configure.ac for 1.9.5 release

.:

  • configure.ac: Bump version number.

Source/WebKit/gtk:

  • NEWS: Added release notes for 1.9.5.
2:38 AM Changeset in webkit [122707] by Carlos Garcia Campos
  • 7 edits in trunk

Unreviewed. Fix make distcheck.

Source/WebCore:

  • GNUmakefile.am: Add missing idl directory.
  • GNUmakefile.list.am: Add missing files to compilation.

Source/WebKit2:

  • UIProcess/API/gtk/tests/GNUmakefile.am: Add test resources to

EXTRA_DIST.

Tools:

  • GNUmakefile.am: Add missing file to compilation.
1:53 AM Changeset in webkit [122706] by caseq@chromium.org
  • 6 edits in trunk/Source/WebCore

Web Inspector: Implement message loop instrumentation for timeline
https://bugs.webkit.org/show_bug.cgi?id=88325

Patch by Eugene Klyuchnikov <eustas.big@gmail.com> on 2012-07-16
Reviewed by Pavel Feldman.

Message loop instrumentation will show when the render thread is busy.

  • inspector/front-end/Settings.js:

(WebInspector.ExperimentsSettings):
Added new experiment.

  • inspector/front-end/TimelineGrid.js:

(WebInspector.TimelineGrid.prototype.get dividersLabelBarElement):
Exposed label bar element.

  • inspector/front-end/TimelinePanel.js:

(WebInspector.TimelinePanel):
(WebInspector.TimelinePanel.prototype._resetPanel):
Cleanups recorded tasks.
(WebInspector.TimelinePanel.prototype._refresh):
Updates CPU bar.
(WebInspector.TimelinePanel.prototype._refreshRecords):
Ditto.
(WebInspector.TimelinePanel.prototype._refreshCpuBars.compareEndTime):
Ditto.
(WebInspector.TimelinePanel.prototype._refreshCpuBars):
Ditto.
(WebInspector.TimelinePanel.prototype._enableMainThreadMonitoringExperiment):
Adds CPU bar to UI.
(WebInspector.TimelinePanel.prototype._showPopover):
Fix NPE.
(WebInspector.TimelineCalculator.prototype.computeTime):
Utility for position to time conversion.
(WebInspector.TimelineCalculator.prototype.setDisplayWindow):
Remenbers clientWidth.

  • inspector/front-end/TimelinePresentationModel.js:

(WebInspector.TimelinePresentationModel.categories):
Define CPU bar colors.

  • inspector/front-end/timelinePanel.css:

(.timeline-cpu-bars):
CPU bar styles.
(.timeline-cpu-bars-label):
Ditto.

1:41 AM Changeset in webkit [122705] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

[EFL] Mark fast/forms/number/spin-button-gets-disabled-or-readonly.html as flaky
https://bugs.webkit.org/show_bug.cgi?id=91367

Unreviewed EFL gardening. Mark fast/forms/number/spin-button-gets-disabled-or-readonly.html
as flaky.

Patch by Christophe Dumez <Christophe Dumez> on 2012-07-16

  • platform/efl/TestExpectations:
1:41 AM EFLWebKitTests edited by tmpsantos@gmail.com
(diff)
1:31 AM Changeset in webkit [122704] by zandobersek@gmail.com
  • 39 edits
    2 adds in trunk/LayoutTests

Unreviewed GTK gardening, updating baselines for MathML Presentation
layout tests. The tests are currently marked as flaky so bots should
do some more iterations to see if that's still the case or those
expectations will be removed.

  • platform/gtk/mathml/presentation/attributes-expected.png:
  • platform/gtk/mathml/presentation/attributes-expected.txt:
  • platform/gtk/mathml/presentation/fenced-expected.png:
  • platform/gtk/mathml/presentation/fenced-expected.txt:
  • platform/gtk/mathml/presentation/fenced-mi-expected.png:
  • platform/gtk/mathml/presentation/fenced-mi-expected.txt:
  • platform/gtk/mathml/presentation/fractions-expected.png:
  • platform/gtk/mathml/presentation/fractions-expected.txt:
  • platform/gtk/mathml/presentation/fractions-vertical-alignment-expected.png:
  • platform/gtk/mathml/presentation/fractions-vertical-alignment-expected.txt:
  • platform/gtk/mathml/presentation/mo-expected.png:
  • platform/gtk/mathml/presentation/mo-expected.txt:
  • platform/gtk/mathml/presentation/mo-stretch-expected.png: Added.
  • platform/gtk/mathml/presentation/mo-stretch-expected.txt:
  • platform/gtk/mathml/presentation/mroot-pref-width-expected.png: Added.
  • platform/gtk/mathml/presentation/mroot-pref-width-expected.txt:
  • platform/gtk/mathml/presentation/over-expected.png:
  • platform/gtk/mathml/presentation/over-expected.txt:
  • platform/gtk/mathml/presentation/roots-expected.png:
  • platform/gtk/mathml/presentation/roots-expected.txt:
  • platform/gtk/mathml/presentation/row-alignment-expected.png:
  • platform/gtk/mathml/presentation/row-alignment-expected.txt:
  • platform/gtk/mathml/presentation/row-expected.png:
  • platform/gtk/mathml/presentation/row-expected.txt:
  • platform/gtk/mathml/presentation/style-expected.png:
  • platform/gtk/mathml/presentation/style-expected.txt:
  • platform/gtk/mathml/presentation/sub-expected.png:
  • platform/gtk/mathml/presentation/sub-expected.txt:
  • platform/gtk/mathml/presentation/subsup-expected.png:
  • platform/gtk/mathml/presentation/subsup-expected.txt:
  • platform/gtk/mathml/presentation/sup-expected.png:
  • platform/gtk/mathml/presentation/sup-expected.txt:
  • platform/gtk/mathml/presentation/tables-expected.png:
  • platform/gtk/mathml/presentation/tables-expected.txt:
  • platform/gtk/mathml/presentation/tokenElements-expected.png:
  • platform/gtk/mathml/presentation/tokenElements-expected.txt:
  • platform/gtk/mathml/presentation/under-expected.png:
  • platform/gtk/mathml/presentation/under-expected.txt:
  • platform/gtk/mathml/presentation/underover-expected.png:
  • platform/gtk/mathml/presentation/underover-expected.txt:
12:54 AM Changeset in webkit [122703] by zandobersek@gmail.com
  • 2 edits
    3 adds in trunk/LayoutTests

Unreviewed GTK gardening, generating baselines for three tests that pass
but require specific baselines. Also removing their test expectations.

  • platform/gtk/TestExpectations:
  • platform/gtk/fast/parser/nested-fragment-parser-crash-expected.txt: Added.
  • platform/gtk/fast/profiler/dead-time-expected.txt: Added.
  • platform/gtk/fast/profiler/stop-profiling-after-setTimeout-expected.txt: Added.
12:45 AM Changeset in webkit [122702] by commit-queue@webkit.org
  • 5 edits
    2 adds in trunk/Source/WebKit

Source/WebKit: Add accessible for QWebView.
https://bugs.webkit.org/show_bug.cgi?id=91073

Patch by Frederik Gladhorn <frederik.gladhorn@nokia.com> on 2012-07-16
Reviewed by Simon Hausmann.

Add classes to enable accessibility on the widget level.

  • WebKit.pri:
  • WebKit1.pro:

Source/WebKit/qt: Accessible Widget for QWebView
https://bugs.webkit.org/show_bug.cgi?id=91073

Added classes that allow navigation to the web view widget.
This is the glue to later access webkit's accessible objects
though the Qt accessibility framework.

Patch by Frederik Gladhorn <frederik.gladhorn@nokia.com> on 2012-07-16
Reviewed by Simon Hausmann.

  • Api/qwebview.cpp:

(QWebView::QWebView):

  • Api/qwebviewaccessible.cpp: Added.

(accessibleInterfaceFactory):
(QWebFrameAccessible::QWebFrameAccessible):
(QWebFrameAccessible::frame):
(QWebFrameAccessible::parent):
(QWebFrameAccessible::text):
(QWebFrameAccessible::childCount):
(QWebFrameAccessible::child):
(QWebFrameAccessible::indexOfChild):
(QWebFrameAccessible::state):
(QWebFrameAccessible::role):
(QWebFrameAccessible::navigate):
(QWebPageAccessible::QWebPageAccessible):
(QWebPageAccessible::page):
(QWebPageAccessible::text):
(QWebPageAccessible::parent):
(QWebPageAccessible::child):
(QWebPageAccessible::childCount):
(QWebPageAccessible::indexOfChild):
(QWebPageAccessible::navigate):
(QWebPageAccessible::role):
(QWebPageAccessible::state):
(QWebViewAccessible::QWebViewAccessible):
(QWebViewAccessible::view):
(QWebViewAccessible::childCount):
(QWebViewAccessible::child):

  • Api/qwebviewaccessible_p.h: Added.

(QWebFrameAccessible):
(QWebPageAccessible):
(QWebViewAccessible):

12:24 AM Changeset in webkit [122701] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

Unreviewed, rolling out r122681.
http://trac.webkit.org/changeset/122681
https://bugs.webkit.org/show_bug.cgi?id=91363

Patch introduces crashes in debug builds for GTK and EFL ports
(Requested by zdobersek on #webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2012-07-16

  • platform/ScrollableArea.cpp:

(WebCore::ScrollableArea::scrollPositionChanged):

12:11 AM Changeset in webkit [122700] by macpherson@chromium.org
  • 3 edits in trunk/Source/WebCore

Compilation failure in StyleResolver.cpp (clang)
https://bugs.webkit.org/show_bug.cgi?id=89892

Reviewed by Ryosuke Niwa.

Patch adds assertions that unreachable code is in fact not reached.

Covered by fast/css/variables tests.

  • css/CSSParser.cpp:

(WebCore::CSSParser::parseValue):

  • css/StyleResolver.cpp:

(WebCore::StyleResolver::collectMatchingRulesForList):

Jul 15, 2012:

11:50 PM Changeset in webkit [122699] by kkristof@inf.u-szeged.hu
  • 2 edits in trunk/LayoutTests

[Qt] Unreviewed gardening. Skip the new failing test.

  • platform/qt/Skipped:
11:44 PM Changeset in webkit [122698] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

[EFL] Mark a few media tests as flaky on RELEASE bot as well
https://bugs.webkit.org/show_bug.cgi?id=91361

Unreviewed EFL gardening. Mark a few media test as flaky on
the RELEASE bot as well.

Patch by Christophe Dumez <Christophe Dumez> on 2012-07-15

  • platform/efl/TestExpectations:
11:25 PM Changeset in webkit [122697] by commit-queue@webkit.org
  • 9 edits in trunk/Source/WebKit2

[EFL][WK2] Define destructors for Ewk structures
https://bugs.webkit.org/show_bug.cgi?id=91338

Patch by Christophe Dumez <Christophe Dumez> on 2012-07-15
Reviewed by Kentaro Hara.

Add destructors to Ewk structures and move
memory freeing code from *_free() or *_unref()
functions to the destructors.

  • UIProcess/API/efl/ewk_intent.cpp:

(_Ewk_Intent::_Ewk_Intent):
(_Ewk_Intent):
(_Ewk_Intent::~_Ewk_Intent):
(ewk_intent_unref):

  • UIProcess/API/efl/ewk_intent_service.cpp:

(_Ewk_Intent_Service):
(_Ewk_Intent_Service::~_Ewk_Intent_Service):
(ewk_intent_service_unref):

  • UIProcess/API/efl/ewk_navigation_policy_decision.cpp:

(_Ewk_Navigation_Policy_Decision):
(_Ewk_Navigation_Policy_Decision::~_Ewk_Navigation_Policy_Decision):
(ewk_navigation_policy_decision_free):

  • UIProcess/API/efl/ewk_url_request.cpp:

(_Ewk_Url_Request):
(_Ewk_Url_Request::~_Ewk_Url_Request):
(ewk_url_request_unref):

  • UIProcess/API/efl/ewk_url_response.cpp:

(_Ewk_Url_Response):
(_Ewk_Url_Response::~_Ewk_Url_Response):
(ewk_url_response_unref):

  • UIProcess/API/efl/ewk_view.cpp:

(_Ewk_View_Private_Data):
(_Ewk_View_Private_Data::~_Ewk_View_Private_Data):
(_ewk_view_priv_del):

  • UIProcess/API/efl/ewk_web_error.cpp:

(_Ewk_Web_Error):
(_Ewk_Web_Error::~_Ewk_Web_Error):
(ewk_web_error_free):

  • UIProcess/API/efl/ewk_web_resource.cpp:

(_Ewk_Web_Resource):
(_Ewk_Web_Resource::~_Ewk_Web_Resource):
(ewk_web_resource_unref):

11:22 PM Changeset in webkit [122696] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

[EFL] Skip css3/flexbox/flexbox-overflow-auto.html
https://bugs.webkit.org/show_bug.cgi?id=91360

Unreviewed EFL gardening. Skip css3/flexbox/flexbox-overflow-auto.html
which started failing after r122681.

Patch by Christophe Dumez <Christophe Dumez> on 2012-07-15

  • platform/efl/TestExpectations:
11:15 PM WebKitGTK/WebKit2Roadmap edited by Carlos Garcia Campos
(diff)
11:07 PM Changeset in webkit [122695] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

[EFL] Disable perf tests for DEBUG builds
https://bugs.webkit.org/show_bug.cgi?id=91358

Unreviewed EFL gardening. Disable performance tests
in DEBUG builds since they are really slow and there
are very few benefits in running them.

Patch by Christophe Dumez <Christophe Dumez> on 2012-07-15

  • platform/efl/TestExpectations:
10:32 PM EFLWebKitCodingStyle edited by eunmi15.lee@samsung.com
Add "Use "void" for empty parameter of public APIs" (diff)
10:26 PM Changeset in webkit [122694] by mikelawther@chromium.org
  • 8 edits
    2 adds in trunk

Fix calculation of rgba's alpha in CSS custom text
https://bugs.webkit.org/show_bug.cgi?id=91355

Reviewed by Ryosuke Niwa.

Source/WebCore:

Alpha values are stored as an 8 bit value. To convert this to a float in the
range [0,1], we need to divide by 255, not 256.

Test: fast/css/rgba-custom-text.html

  • css/CSSPrimitiveValue.cpp:

(WebCore::CSSPrimitiveValue::customCssText):

LayoutTests:

  • css3/calc/color-hsl-expected.txt:
  • css3/calc/color-rgb-expected.txt:
  • editing/execCommand/query-command-value-background-color-expected.txt:
  • editing/execCommand/query-command-value-background-color.html:
  • fast/css/rgba-custom-text-expected.txt: Added.
  • fast/css/rgba-custom-text.html: Added.
  • media/track/track-cue-rendering-expected.txt:
8:22 PM Changeset in webkit [122693] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebKit/efl

[EFL] Add a API for getting security origin string
https://bugs.webkit.org/show_bug.cgi?id=90936

Patch by Kihong Kwon <kihong.kwon@samsung.com> on 2012-07-15
Reviewed by Ryosuke Niwa.

Support to change from Ewk_Security_Origin to string on the API level.
Add ewk_security_origin_string_get for getting security origin string.

  • ewk/ewk_security_origin.cpp:

(_Ewk_Security_Origin):
(ewk_security_origin_string_get):
(ewk_security_origin_free):
(ewk_security_origin_new):

  • ewk/ewk_security_origin.h:
7:53 PM Changeset in webkit [122692] by jason.liu@torchmobile.com.cn
  • 3 edits in trunk/Source/WebCore

[BlackBerry] We shouldn't call didFinishLoading for the old request when a new request has been sent by notifyAuthReceived.
https://bugs.webkit.org/show_bug.cgi?id=90962

Reviewed by Rob Buis.

We start a new NetworkJob with credentials after receiving 401/407 status.
We should not release resources in webcore when the old job is closed because
they are needed by the new one.
We should do as 3XX.

No new tests. No change in behaviour.

  • platform/network/blackberry/NetworkJob.cpp:

(WebCore::NetworkJob::NetworkJob):
(WebCore::NetworkJob::notifyAuthReceived):
(WebCore::NetworkJob::shouldReleaseClientResource):
(WebCore::NetworkJob::handleRedirect):

  • platform/network/blackberry/NetworkJob.h:

(NetworkJob):

7:29 PM Changeset in webkit [122691] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/blackberry

[BlackBerry] Move icon database to application data directory.
https://bugs.webkit.org/show_bug.cgi?id=91195

Patch by Jonathan Dong <Jonathan Dong> on 2012-07-15
Reviewed by Rob Buis.

RIM PR: 156852
Create icon database in application data directory instead of
database or local storage directory, by doing this we can make
things easier when clearing database or local storage data files.

Internally reviewed by Charles Wei <charles.wei@torchmobile.com.cn>

  • WebCoreSupport/IconDatabaseClientBlackBerry.cpp:

(WebCore::IconDatabaseClientBlackBerry::initIconDatabase):

7:27 PM Changeset in webkit [122690] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

[EFL] Several media tests are flaky in DEBUG mode
https://bugs.webkit.org/show_bug.cgi?id=91347

Unreviewed EFL gardening. Add to TestExpectations a
few media tests which are flaky in DEBUG mode only.

Patch by Christophe Dumez <Christophe Dumez> on 2012-07-15

  • platform/efl/TestExpectations:
7:26 PM Changeset in webkit [122689] by rniwa@webkit.org
  • 3 edits
    2 adds in trunk

REGRESSION(r122660): Cannot iterate over HTMLCollection that contains non-child descendent nodes in some conditions
https://bugs.webkit.org/show_bug.cgi?id=91334

Reviewed by Ojan Vafai.

Source/WebCore:

The bug was caused by using lastChild() as the starting node for traversePreviousNode. Since it's the inverse of
Node::traverseNextNode(), which visits nodes in pre order, we must start our search from the last descendent node,
which is visited traverseNextNode immediately before reaching the root node.

Test: fast/dom/htmlcollection-backwards-subtree-iteration.html

  • html/HTMLCollection.cpp:

(WebCore::lastDescendent):
(WebCore):
(WebCore::itemBeforeOrAfter):

LayoutTests:

Add a regression test. Without this patch, it results in an console error in release builds and an assertion failure
in debug builds.

  • fast/dom/htmlcollection-backwards-subtree-iteration-expected.txt: Added.
  • fast/dom/htmlcollection-backwards-subtree-iteration.html: Added.
7:25 PM Changeset in webkit [122688] by gyuyoung.kim@samsung.com
  • 7 edits in trunk/Source/WebKit

[EFL] Move files guarded by #ifdef to existing file list.
https://bugs.webkit.org/show_bug.cgi?id=91336

Reviewed by Ryosuke Niwa.

Some EFL files are already guared by #ifdef. So, cmake files doesn't need to guard
them again. In addition, some files are missing #ifdef guard its header files.

Source/WebKit:

  • PlatformEfl.cmake:

Source/WebKit/efl:

  • WebCoreSupport/DeviceMotionClientEfl.h:
  • WebCoreSupport/InspectorClientEfl.h:
  • WebCoreSupport/NetworkInfoClientEfl.h:
  • WebCoreSupport/VibrationClientEfl.h:
6:41 PM Changeset in webkit [122687] by rniwa@webkit.org
  • 381 edits in trunk/LayoutTests

Use testRunner instead of layoutTestController in fast/js, layers, leaks, line-grid, lists, loader, loading, media, mediastream, multicol, and mutation tests
https://bugs.webkit.org/show_bug.cgi?id=91315

Reviewed by Adam Barth.

  • fast/js/:
  • fast/layers/add-layer-with-nested-stacking.html:
  • fast/layers/assert-RenderLayer-update-positions.html:
  • fast/layers/clip-rects-assertion.html:
  • fast/layers/clip-rects-transformed-2.html:
  • fast/layers/clip-rects-transformed.html:
  • fast/layers/generated-layer-scrollbar-crash.html:
  • fast/layers/inline-dirty-z-order-lists.html:
  • fast/layers/layer-content-visibility-change.html:
  • fast/layers/layer-visibility.html:
  • fast/layers/nested-layers-1.html:
  • fast/layers/nested-layers-2.html:
  • fast/layers/nested-layers-3.html:
  • fast/layers/nested-layers-4.html:
  • fast/layers/remove-layer-with-nested-stacking.html:
  • fast/layers/remove-only-this-layer-update.html:
  • fast/layers/removed-by-scroll-handler.html:
  • fast/layers/resize-layer-deletion-crash.html:
  • fast/layers/scroll-with-transform-composited-layer.html:
  • fast/layers/scroll-with-transform-layer.html:
  • fast/layers/scrollByLines-overflow-no-layer.html:
  • fast/layers/visible-layer-with-hidden-parent.html:
  • fast/layers/zindex-hit-test.html:
  • fast/leaks/001.html:
  • fast/leaks/002.html:
  • fast/leaks/003.html-disabled:
  • fast/line-grid/line-grid-nested.html:
  • fast/lists/alpha-boundary-values.html:
  • fast/lists/alpha-list-wrap.html:
  • fast/lists/calc-width-with-space.html:
  • fast/lists/decimal-leading-zero.html:
  • fast/lists/drag-into-marker.html:
  • fast/lists/item-not-in-list-line-wrapping.html:
  • fast/lists/li-values.html:
  • fast/lists/list-style-type-dynamic-change.html:
  • fast/lists/ol-nested-items-dynamic-insert.html:
  • fast/lists/ol-nested-items-dynamic-remove.html:
  • fast/lists/ol-nested-items.html:
  • fast/lists/ol-nested-list-dynamic-insert.html:
  • fast/lists/ol-nested-list-dynamic-remove.html:
  • fast/lists/ol-nested-list.html:
  • fast/lists/ol-reversed-dynamic-simple.html:
  • fast/lists/ol-reversed-dynamic.html:
  • fast/lists/ol-reversed-nested-items.html:
  • fast/lists/ol-reversed-nested-list.html:
  • fast/lists/ol-reversed-simple.html:
  • fast/lists/ol-reversed-simple.xhtml:
  • fast/lists/ol-start-roman.html:
  • fast/lists/parent-box-not-box-crash.html:
  • fast/lists/positioned-count-crash.html:
  • fast/lists/remove-listmarker-from-anonblock-with-continuation-crash.html:
  • fast/lists/resources/dump-list.js:

(dumpListItemAsHTML):
(testListItemMarkerEqualsListItemText):

  • fast/lists/w3-css3-list-styles-alphabetic.html:
  • fast/lists/w3-css3-list-styles-fallback-style.html:
  • fast/lists/w3-css3-list-styles-numeric.html:
  • fast/lists/w3-css3-list-styles-symbolic.html:
  • fast/lists/w3-css3-lower-armenian.html:
  • fast/lists/w3-css3-upper-armenian.html:
  • fast/lists/w3-list-styles.html:
  • fast/loader/:
  • fast/media/color-does-not-include-alpha.html:
  • fast/media/invalid-lengths.html:
  • fast/media/lifetime.html:
  • fast/media/matchmedium-query-api.html:
  • fast/media/media-query-list-01.html:
  • fast/media/media-query-list-02.html:
  • fast/media/media-query-list-03.html:
  • fast/media/media-query-list-04.html:
  • fast/media/media-query-list-05.html:
  • fast/media/media-query-list-06.html:
  • fast/media/media-query-list-07.html:
  • fast/media/media-query-list-callback.html:
  • fast/media/media-svg-crash.html:
  • fast/media/mq-pointer.html:
  • fast/media/print-restores-previous-mediatype.html:
  • fast/media/update-media-query-css-parser.html:
  • fast/media/view-mode-media-feature.html:
  • fast/multicol/:
  • fast/mutation/end-of-task-delivery.html:
  • fast/mutation/inline-event-listener.html:
  • fast/mutation/mutation-callback-non-element-crash.html:
  • platform/chromium/fast/loader/create-view-target-blank.html:
  • platform/chromium/fast/loader/resources/done.html:
  • platform/gtk/fast/loader/crash-display-local-directory.html:
  • platform/mac/fast/loader/file-url-mimetypes-2.html:
  • platform/mac/fast/loader/file-url-mimetypes-3.html:
  • platform/mac/fast/loader/file-url-mimetypes.html:
  • platform/mac/fast/loader/non-html-load-event.html:
  • platform/mac/fast/loader/webarchive-encoding-respected.html:
  • platform/qt/fast/loader/user-stylesheet-qrc-path.html:
6:13 PM Changeset in webkit [122686] by gyuyoung.kim@samsung.com
  • 2 edits in trunk/Tools

Unreviewed. Add EFLWebKit2PublicAPI, EFLWebKit2PlatformSpecific to watch list.

  • Scripts/webkitpy/common/config/watchlist:
5:36 PM Changeset in webkit [122685] by gyuyoung.kim@samsung.com
  • 2 edits in trunk/Tools

Unreviewed. Add gyuyoung.kim@samsung.com to watch list.

  • Scripts/webkitpy/common/config/watchlist:
4:01 PM Changeset in webkit [122684] by Joseph Pecoraro
  • 2 edits in trunk/Source/WebKit/mac

Fix case sensitive build issue.

Unreviewed build fix.

  • WebView/WebPreferences.mm:
2:26 PM Changeset in webkit [122683] by Joseph Pecoraro
  • 4 edits
    2 adds in trunk

Windowless WebView not firing JavaScript load event if there is a media element
https://bugs.webkit.org/show_bug.cgi?id=91331

Reviewed by Eric Carlson.

Source/WebCore:

In prepareForLoad we start deferring the load event. If we fall into this
clause where the page can not start loading media we bail, potentially
indefinitely waiting until we can start loading media. Since we can not
be certain this will ever happen, we should stop deferring the page's
load event.

Test: WebKit1.WindowlessWebViewWithMedia TestWebKitAPI test. The only
way this path was reachable right now is on the mac port.

  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::loadInternal):

Tools:

Test a windowless WebView loading a page with a media element. The load
event should happen on the next spin of the run loop, but we spin check
the page, with a timeout of 250ms.

  • TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
  • TestWebKitAPI/Tests/mac/WindowlessWebViewWithMedia.html: Added.
  • TestWebKitAPI/Tests/mac/WindowlessWebViewWithMedia.mm: Added.

(-[WindowlessWebViewWithMediaFrameLoadDelegate webView:didFinishLoadForFrame:]):
(TestWebKitAPI::spinLoop): Spin check with timeout. Runs a block each spin to early bail.
(TestWebKitAPI::TEST):

1:24 PM Changeset in webkit [122682] by benjamin@webkit.org
  • 3 edits in trunk/Source/WebKit/mac

Make WebPreferencesPrivate a simple struct
https://bugs.webkit.org/show_bug.cgi?id=91330

Reviewed by Filip Pizlo.

To avoid taking time creating a new Objective-C object for WebPreferencesPrivate, we can just make
it a simple struct.

  • WebView/WebPreferences.h:
  • WebView/WebPreferences.mm:

(WebPreferencesPrivate):
(WebPreferencesPrivate::WebPreferencesPrivate):
Replace the Objective-C WebPreferencesPrivate by a struct.
Remove IBCreatorID from the object as it is unused.
Use RetainPtr for the Objective-C attribute to avoid tracking their memory manually.

(-[WebPreferences initWithIdentifier:]):
Change the order of the initialization to avoid allocating anyting if a WebPreferences exists
for the identifier.
Both [NSObject init] and WebPreferencesPrivate allocation are moved after the fast path.

(-[WebPreferences initWithCoder:]):
(-[WebPreferences encodeWithCoder:]):
(-[WebPreferences dealloc]):
(-[WebPreferences identifier]):
(-[WebPreferences _valueForKey:]):
(-[WebPreferences _setStringValue:forKey:]):
(-[WebPreferences _setIntegerValue:forKey:]):
(-[WebPreferences _setFloatValue:forKey:]):
(-[WebPreferences _setBoolValue:forKey:]):
(-[WebPreferences _setLongLongValue:forKey:]):
(-[WebPreferences _setUnsignedLongLongValue:forKey:]):

1:15 PM Changeset in webkit [122681] by mitz@apple.com
  • 2 edits in trunk/Source/WebCore

<rdar://problem/11875795> REGRESSION (tiled drawing): Page’s scroll bars flash with each character you type in a textarea (affects Wikipedia and YouTube)
https://bugs.webkit.org/show_bug.cgi?id=91348

Reviewed by Anders Carlsson.

  • platform/ScrollableArea.cpp:

(WebCore::ScrollableArea::scrollPositionChanged): Added an early return if the scroll position
did not, in fact, change. This avoids the call to ScrollAnimator::notifyContentAreaScrolled,
which is what causes the scroll bars to flash.

8:40 AM Changeset in webkit [122680] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

[EFL] Skip fast/text/descent-clip-in-scaled-page.html
https://bugs.webkit.org/show_bug.cgi?id=91342

Unreviewed EFL gardening. Skip new test added in r122651
that fails on EFL port because our LayoutTestController
does not implement setSubpixelTextPositioning().

Patch by Christophe Dumez <Christophe Dumez> on 2012-07-15

  • platform/efl/TestExpectations:
5:10 AM Changeset in webkit [122679] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

[EFL] Skip css2.1/20110323/vertical-align-boxes-001.htm
https://bugs.webkit.org/show_bug.cgi?id=91340

Unreviewed EFL gardening. Skipping new test introduced in
r122663 which is failing on EFL port.

Patch by Christophe Dumez <Christophe Dumez> on 2012-07-15

  • platform/efl/TestExpectations:
Note: See TracTimeline for information about the timeline view.