Timeline



Aug 22, 2013:

11:24 PM Changeset in webkit [154474] by Carlos Garcia Campos
  • 2 edits in trunk/Source/WebKit2

[GTK] Wrong interface version used in WebKitWebPage for loader client
https://bugs.webkit.org/show_bug.cgi?id=120199

Reviewed by Gustavo Noronha Silva.

  • WebProcess/InjectedBundle/API/gtk/WebKitWebPage.cpp:

(webkitWebPageCreate): Use kWKBundlePageLoaderClientCurrentVersion
instead of kWKBundlePageResourceLoadClientCurrentVersion in loader
client initialization.

9:39 PM Changeset in webkit [154473] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit2

Need to disable FakeSYSVSHM when sandboxing is not enabled
https://bugs.webkit.org/show_bug.cgi?id=120182
<rdar://problem/14814461>

Patch by Simon Cooper <scooper@apple.com> on 2013-08-22
Reviewed by Alexey Proskuryakov.

When not in a sandbox do not enable the FakeSYSVSHIM. This
allows LocalConnection to work when Flash Player is run in
"Unsafe Mode".

  • PluginProcess/mac/PluginProcessShim.mm:

(WebKit::shim_disabled):

8:21 PM Changeset in webkit [154472] by gyuyoung.kim@samsung.com
  • 5 edits in trunk/Source/WebCore

Introduce toSVGLinearGradientElement(), and use it
https://bugs.webkit.org/show_bug.cgi?id=120154

Reviewed by Andreas Kling.

As a step to clean-up static_cast<SVGXXX>, toSVGLinearGradientElement() is added to clean-up
static_cast<SVGLinearGradientElement*>.

  • rendering/svg/RenderSVGResourceLinearGradient.cpp:

(WebCore::RenderSVGResourceLinearGradient::collectGradientAttributes):

  • rendering/svg/SVGRenderTreeAsText.cpp:

(WebCore::writeSVGResourceContainer):

  • svg/SVGLinearGradientElement.cpp:

(WebCore::SVGLinearGradientElement::collectGradientAttributes):

  • svg/SVGLinearGradientElement.h:

(WebCore::toSVGLinearGradientElement):

5:45 PM Changeset in webkit [154471] by mhahnenberg@apple.com
  • 5 edits in trunk/Source/JavaScriptCore

JSObject and JSArray code shouldn't have to tiptoe around garbage collection
https://bugs.webkit.org/show_bug.cgi?id=120179

Reviewed by Geoffrey Garen.

There are many places in the code for JSObject and JSArray where they are manipulating their
Butterfly/Structure, e.g. after expanding their out-of-line backing storage via allocating. Within
these places there are certain "critical sections" where a GC would be disastrous. Gen GC looks
like it will make this dance even more intricate. To make everybody's lives easier we should use
the DeferGC mechanism in these functions to make these GC critical sections both obvious in the
code and trivially safe. Deferring collections will usually only last marginally longer, thus we
should not incur any additional overhead.

  • heap/Heap.h:
  • runtime/JSArray.cpp:

(JSC::JSArray::unshiftCountSlowCase):

  • runtime/JSObject.cpp:

(JSC::JSObject::enterDictionaryIndexingModeWhenArrayStorageAlreadyExists):
(JSC::JSObject::createInitialUndecided):
(JSC::JSObject::createInitialInt32):
(JSC::JSObject::createInitialDouble):
(JSC::JSObject::createInitialContiguous):
(JSC::JSObject::createArrayStorage):
(JSC::JSObject::convertUndecidedToArrayStorage):
(JSC::JSObject::convertInt32ToArrayStorage):
(JSC::JSObject::convertDoubleToArrayStorage):
(JSC::JSObject::convertContiguousToArrayStorage):
(JSC::JSObject::increaseVectorLength):
(JSC::JSObject::ensureLengthSlow):

  • runtime/JSObject.h:

(JSC::JSObject::putDirectInternal):
(JSC::JSObject::setStructureAndReallocateStorageIfNecessary):
(JSC::JSObject::putDirectWithoutTransition):

5:28 PM Changeset in webkit [154470] by Simon Fraser
  • 10 edits
    2 adds in trunk

compositing/geometry/bounds-ignores-hidden-dynamic.html has incorrect initial rendering
https://bugs.webkit.org/show_bug.cgi?id=119825

Source/WebCore:

Reviewed by Tim Horton.

r137526 and some earlier commits attempted to avoid unconditionally
repainting layers when their size changes, because this was causing
TiledBacking layers to repaint when the document size changed.

However, the approach required that we have good information about
whether size changes require a repaint, which in some cases is hard
to determine, especially when RenderLayer changes affect our
decisions about which layers are composited.

Fix by pushing the decision about whether to repaint on size change
into GraphicsLayer. The default is to repaint on size change,
but GraphicsLayer provides a function that can be overridden to
modify this behavior; GraphicsLayerCA does so to avoid repaints
when layers with TiledBackings get resized.

Test: compositing/repaint/repaint-on-layer-grouping-change.html

  • WebCore.exp.in: WebKit2 needs GraphicsLayer::setSize, which is no longer inline.
  • platform/graphics/GraphicsLayer.cpp:

(WebCore::GraphicsLayer::setOffsetFromRenderer):
(WebCore::GraphicsLayer::setSize):

  • platform/graphics/GraphicsLayer.h:

(WebCore::GraphicsLayer::shouldRepaintOnSizeChange):

  • platform/graphics/ca/GraphicsLayerCA.cpp:

(WebCore::GraphicsLayerCA::shouldRepaintOnSizeChange):

  • platform/graphics/ca/GraphicsLayerCA.h:
  • rendering/RenderLayerBacking.h: No longer need m_boundsConstrainedByClipping
  • rendering/RenderLayerBacking.cpp:

(WebCore::RenderLayerBacking::RenderLayerBacking):
(WebCore::RenderLayerBacking::updateCompositedBounds):
(WebCore::RenderLayerBacking::updateGraphicsLayerGeometry): setSize takes
care of repainting for us now, so we can remove all the conditional code.

LayoutTests:

Reviewed by Tim Horton.

Test that dumps repaint rects on layers after visibility changes affect
the layer hierarchy.

  • compositing/repaint/repaint-on-layer-grouping-change-expected.txt: Added.
  • compositing/repaint/repaint-on-layer-grouping-change.html: Added.
  • compositing/repaint/resize-repaint-expected.txt: Update result.
5:28 PM Changeset in webkit [154469] by Simon Fraser
  • 2 edits in trunk/Source/WebCore

Repaint counters are sometimes not in the corner of the compositing layer
https://bugs.webkit.org/show_bug.cgi?id=120176

Reviewed by Beth Dakin.

Sometimes the repaint counters are not in the corner of the compositing layer;
they are either inset, or partially or entirely outside the layer.

Fix by making sure that we restore the CGContext before drawing
the counter, since the WebCore code may have translated the CTM.

The counter-painting code saves and restores the context itself,
so this is safe.

  • platform/graphics/mac/WebLayer.mm:

(drawLayerContents):

5:19 PM Changeset in webkit [154468] by fpizlo@apple.com
  • 9 edits
    1 add in trunk

Update LLVM binary drops and scripts to the latest version from SVN
https://bugs.webkit.org/show_bug.cgi?id=120184

Reviewed by Mark Hahnenberg.

Source/JavaScriptCore:

  • dfg/DFGPlan.cpp:

(JSC::DFG::Plan::compileInThreadImpl):

Tools:

  • ReducedFTL/build.sh:
  • Scripts/configure-llvm: Added.
  • Scripts/copy-webkitlibraries-to-product-directory:
  • Scripts/export-llvm-build:

WebKitLibraries:

Updated binary drops to r189066.

  • LLVMIncludesMountainLion.tar.bz2:
  • LLVMLibrariesMountainLion.tar.bz2:
5:15 PM Changeset in webkit [154467] by aestes@apple.com
  • 5 edits in trunk

<https://webkit.org/b/120180> Fix issues with OTHER_LDFLAGS in various .xcconfig files

Reviewed by David Kilzer.

Source/WebKit2:

Adding ld flags for ASAN overwrote the unexported symbol flags we were
previously specifying. Since the unexported symbol ld flags are only
needed for the framework target, move them to WebKit2.xcconfig where we
can add them to OTHER_LDFLAGS along with the ASAN values inherited from
DebugRelease.xcconfig (and other values).

  • Configurations/Base.xcconfig: Removed the unexported symbol ld flags.
  • Configurations/WebKit2.xcconfig: ... and moved them here.

Tools:

  • TestWebKitAPI/Configurations/Base.xcconfig: Removed the definition of

OTHER_CPLUSPLUSFLAGS since -ftemplate-depth=256 is already set in
DebugRelease.xcconfig and TestWebKitAPI isn't built in Production.

5:09 PM Changeset in webkit [154466] by barraclough@apple.com
  • 4 edits in trunk/Source/JavaScriptCore

Don't leak registers for redeclared variables
https://bugs.webkit.org/show_bug.cgi?id=120174

Reviewed by Geoff Garen.

We currently always allocate registers for new global variables, but these are wasted when the variable is being redeclared.
Only allocate new registers when necessary.

No performance impact.

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::execute):

  • runtime/Executable.cpp:

(JSC::ProgramExecutable::initializeGlobalProperties):

  • Don't allocate the register here.
  • runtime/JSGlobalObject.cpp:

(JSC::JSGlobalObject::addGlobalVar):

  • Allocate the register here instead.
3:43 PM Changeset in webkit [154465] by Lucas Forschler
  • 5 edits in branches/safari-537-branch/Source

Versioning.

3:41 PM Changeset in webkit [154464] by timothy_horton@apple.com
  • 2 edits in trunk/Source/WebCore

Unavailable plug-in indicator text is one pixel too low
https://bugs.webkit.org/show_bug.cgi?id=120177
<rdar://problem/14811951>

Reviewed by Kevin Decker.

Move the unavailable plug-in indicator text up one pixel.

  • rendering/RenderEmbeddedObject.cpp:

(WebCore::RenderEmbeddedObject::paintReplaced):

3:41 PM Changeset in webkit [154463] by Lucas Forschler
  • 1 copy in tags/Safari-537.62

New Tag.

2:58 PM Changeset in webkit [154462] by Christophe Dumez
  • 132 edits
    2 adds
    3 deletes in trunk

[SVG2] Merge SVGStyledElement and SVGElement
https://bugs.webkit.org/show_bug.cgi?id=107386

Reviewed by Andreas Kling.

Source/WebCore:

Merge SVGStyledElement into SVGElement to simplify the SVG inheritance
model and match the SVG2 specification:
https://svgwg.org/svg2-draft/single-page.html#types-InterfaceSVGElement

Test: svg/dom/svg2-inheritance.html

  • CMakeLists.txt:
  • DerivedSources.cpp:
  • DerivedSources.make:
  • DerivedSources.pri:
  • GNUmakefile.list.am:
  • Target.pri:
  • WebCore.order:
  • WebCore.vcxproj/WebCore.vcxproj:
  • WebCore.vcxproj/WebCore.vcxproj.filters:
  • WebCore.xcodeproj/project.pbxproj:
  • accessibility/AccessibilityNodeObject.cpp:

(WebCore::AccessibilityNodeObject::alternativeText):
(WebCore::AccessibilityNodeObject::accessibilityDescription):

  • css/SVGCSSStyleSelector.cpp:
  • rendering/style/SVGRenderStyle.cpp:
  • rendering/svg/RenderSVGContainer.cpp:

(WebCore::RenderSVGContainer::RenderSVGContainer):

  • rendering/svg/RenderSVGContainer.h:
  • rendering/svg/RenderSVGHiddenContainer.cpp:

(WebCore::RenderSVGHiddenContainer::RenderSVGHiddenContainer):

  • rendering/svg/RenderSVGHiddenContainer.h:
  • rendering/svg/RenderSVGModelObject.cpp:

(WebCore::RenderSVGModelObject::RenderSVGModelObject):
(WebCore::getElementCTM):

  • rendering/svg/RenderSVGModelObject.h:
  • rendering/svg/RenderSVGResourceClipper.cpp:

(WebCore::RenderSVGResourceClipper::drawContentIntoMaskImage):
(WebCore::RenderSVGResourceClipper::calculateClipContentRepaintRect):
(WebCore::RenderSVGResourceClipper::hitTestClipContent):

  • rendering/svg/RenderSVGResourceContainer.cpp:

(WebCore::RenderSVGResourceContainer::RenderSVGResourceContainer):

  • rendering/svg/RenderSVGResourceContainer.h:
  • rendering/svg/RenderSVGResourceFilter.cpp:
  • rendering/svg/RenderSVGResourceFilterPrimitive.h:
  • rendering/svg/RenderSVGResourceMarker.cpp:
  • rendering/svg/RenderSVGResourceMarker.h:
  • rendering/svg/RenderSVGResourceMasker.cpp:

(WebCore::RenderSVGResourceMasker::drawContentIntoMaskImage):
(WebCore::RenderSVGResourceMasker::calculateMaskContentRepaintRect):

  • rendering/svg/RenderSVGResourcePattern.cpp:

(WebCore::RenderSVGResourcePattern::createTileImage):

  • rendering/svg/RenderSVGRoot.cpp:

(WebCore::RenderSVGRoot::RenderSVGRoot):

  • rendering/svg/RenderSVGRoot.h:
  • rendering/svg/RenderSVGViewportContainer.cpp:

(WebCore::RenderSVGViewportContainer::RenderSVGViewportContainer):

  • rendering/svg/RenderSVGViewportContainer.h:
  • rendering/svg/SVGRenderSupport.cpp:

(WebCore::SVGRenderSupport::layoutChildren):

  • rendering/svg/SVGRenderTreeAsText.cpp:
  • rendering/svg/SVGResources.cpp:

(WebCore::registerPendingResource):

  • rendering/svg/SVGResourcesCache.cpp:
  • svg/SVGAElement.cpp:

(WebCore::SVGAElement::title):

  • svg/SVGAllInOne.cpp:
  • svg/SVGAltGlyphDefElement.h:
  • svg/SVGAltGlyphItemElement.h:
  • svg/SVGAnimateElement.cpp:
  • svg/SVGAnimatedType.cpp:

(WebCore::SVGAnimatedType::valueAsString):
(WebCore::SVGAnimatedType::setValueAsString):

  • svg/SVGAnimationElement.cpp:

(WebCore::SVGAnimationElement::isTargetAttributeCSSProperty):
(WebCore::SVGAnimationElement::computeCSSPropertyValue):
(WebCore::SVGAnimationElement::adjustForInheritance):
(WebCore::inheritsFromProperty):

  • svg/SVGComponentTransferFunctionElement.h:
  • svg/SVGCursorElement.h:
  • svg/SVGDescElement.cpp:

(WebCore::SVGDescElement::SVGDescElement):

  • svg/SVGDescElement.h:
  • svg/SVGDescElement.idl:
  • svg/SVGElement.cpp:

(WebCore::mapAttributeToCSSProperty):
(WebCore::cssPropertyToTypeMap):
(WebCore::SVGElement::SVGElement):
(WebCore::SVGElement::~SVGElement):
(WebCore::SVGElement::removedFrom):
(WebCore::SVGElement::parseAttribute):
(WebCore::SVGElement::animatedPropertyTypeForAttribute):
(WebCore::collectInstancesForSVGElement):
(WebCore::SVGElement::isAnimatableAttribute):
(WebCore::SVGElement::title):
(WebCore::SVGElement::rendererIsNeeded):
(WebCore::SVGElement::cssPropertyIdForSVGAttributeName):
(WebCore::SVGElement::isAnimatableCSSProperty):
(WebCore::SVGElement::isPresentationAttribute):
(WebCore::SVGElement::collectStyleForPresentationAttribute):
(WebCore::SVGElement::isKnownAttribute):
(WebCore::SVGElement::svgAttributeChanged):
(WebCore::SVGElement::insertedInto):
(WebCore::SVGElement::buildPendingResourcesIfNeeded):
(WebCore::SVGElement::childrenChanged):
(WebCore::SVGElement::getPresentationAttribute):
(WebCore::SVGElement::instanceUpdatesBlocked):
(WebCore::SVGElement::setInstanceUpdatesBlocked):
(WebCore::SVGElement::localCoordinateSpaceTransform):
(WebCore::SVGElement::updateRelativeLengthsInformation):
(WebCore::SVGElement::isMouseFocusable):
(WebCore::SVGElement::isKeyboardFocusable):

  • svg/SVGElement.h:

(WebCore::SVGElement::supportsMarkers):
(WebCore::SVGElement::hasRelativeLengths):
(WebCore::SVGElement::needsPendingResourceHandling):
(WebCore::SVGElement::selfHasRelativeLengths):
(WebCore::SVGElement::updateRelativeLengthsInformation):

  • svg/SVGElement.idl:
  • svg/SVGElementInstance.cpp:

(WebCore::SVGElementInstance::invalidateAllInstancesOfElement):
(WebCore::SVGElementInstance::InstanceUpdateBlocker::InstanceUpdateBlocker):

  • svg/SVGElementInstance.h:
  • svg/SVGFEBlendElement.idl:
  • svg/SVGFEColorMatrixElement.idl:
  • svg/SVGFEComponentTransferElement.idl:
  • svg/SVGFECompositeElement.idl:
  • svg/SVGFEConvolveMatrixElement.idl:
  • svg/SVGFEDiffuseLightingElement.idl:
  • svg/SVGFEDisplacementMapElement.idl:
  • svg/SVGFEDropShadowElement.idl:
  • svg/SVGFEFloodElement.idl:
  • svg/SVGFEGaussianBlurElement.idl:
  • svg/SVGFEImageElement.idl:
  • svg/SVGFELightElement.h:
  • svg/SVGFEMergeElement.idl:
  • svg/SVGFEMergeNodeElement.h:
  • svg/SVGFEMorphologyElement.idl:
  • svg/SVGFEOffsetElement.idl:
  • svg/SVGFESpecularLightingElement.idl:
  • svg/SVGFETileElement.idl:
  • svg/SVGFETurbulenceElement.idl:
  • svg/SVGFilterElement.cpp:

(WebCore::SVGFilterElement::SVGFilterElement):
(WebCore::SVGFilterElement::parseAttribute):
(WebCore::SVGFilterElement::svgAttributeChanged):
(WebCore::SVGFilterElement::childrenChanged):

  • svg/SVGFilterElement.h:
  • svg/SVGFilterElement.idl:
  • svg/SVGFilterPrimitiveStandardAttributes.cpp:

(WebCore::SVGFilterPrimitiveStandardAttributes::SVGFilterPrimitiveStandardAttributes):
(WebCore::SVGFilterPrimitiveStandardAttributes::parseAttribute):
(WebCore::SVGFilterPrimitiveStandardAttributes::svgAttributeChanged):
(WebCore::SVGFilterPrimitiveStandardAttributes::childrenChanged):
(WebCore::SVGFilterPrimitiveStandardAttributes::rendererIsNeeded):

  • svg/SVGFilterPrimitiveStandardAttributes.h:
  • svg/SVGFontElement.cpp:

(WebCore::SVGFontElement::SVGFontElement):

  • svg/SVGFontElement.h:
  • svg/SVGFontFaceElement.cpp:
  • svg/SVGFontFaceElement.h:
  • svg/SVGFontFaceFormatElement.h:
  • svg/SVGFontFaceNameElement.h:
  • svg/SVGFontFaceSrcElement.h:
  • svg/SVGFontFaceUriElement.h:
  • svg/SVGGElement.cpp:

(WebCore::SVGGElement::rendererIsNeeded):

  • svg/SVGGlyphElement.cpp:

(WebCore::SVGGlyphElement::SVGGlyphElement):
(WebCore::SVGGlyphElement::parseAttribute):
(WebCore::SVGGlyphElement::insertedInto):
(WebCore::SVGGlyphElement::removedFrom):

  • svg/SVGGlyphElement.h:
  • svg/SVGGlyphRefElement.cpp:

(WebCore::SVGGlyphRefElement::SVGGlyphRefElement):
(WebCore::SVGGlyphRefElement::parseAttribute):

  • svg/SVGGlyphRefElement.h:
  • svg/SVGGlyphRefElement.idl:
  • svg/SVGGradientElement.cpp:

(WebCore::SVGGradientElement::SVGGradientElement):
(WebCore::SVGGradientElement::parseAttribute):
(WebCore::SVGGradientElement::svgAttributeChanged):
(WebCore::SVGGradientElement::childrenChanged):

  • svg/SVGGradientElement.h:
  • svg/SVGGradientElement.idl:
  • svg/SVGGraphicsElement.cpp:

(WebCore::SVGGraphicsElement::SVGGraphicsElement):
(WebCore::SVGGraphicsElement::parseAttribute):
(WebCore::SVGGraphicsElement::svgAttributeChanged):

  • svg/SVGGraphicsElement.h:
  • svg/SVGGraphicsElement.idl:
  • svg/SVGLocatable.cpp:

(WebCore::SVGLocatable::computeCTM):

  • svg/SVGMPathElement.h:
  • svg/SVGMarkerElement.cpp:

(WebCore::SVGMarkerElement::SVGMarkerElement):
(WebCore::SVGMarkerElement::parseAttribute):
(WebCore::SVGMarkerElement::svgAttributeChanged):
(WebCore::SVGMarkerElement::childrenChanged):

  • svg/SVGMarkerElement.h:
  • svg/SVGMarkerElement.idl:
  • svg/SVGMaskElement.cpp:

(WebCore::SVGMaskElement::SVGMaskElement):
(WebCore::SVGMaskElement::parseAttribute):
(WebCore::SVGMaskElement::svgAttributeChanged):
(WebCore::SVGMaskElement::childrenChanged):

  • svg/SVGMaskElement.h:
  • svg/SVGMaskElement.idl:
  • svg/SVGMetadataElement.h:
  • svg/SVGMissingGlyphElement.cpp:

(WebCore::SVGMissingGlyphElement::SVGMissingGlyphElement):

  • svg/SVGMissingGlyphElement.h:
  • svg/SVGMissingGlyphElement.idl:
  • svg/SVGPatternElement.cpp:

(WebCore::SVGPatternElement::SVGPatternElement):
(WebCore::SVGPatternElement::parseAttribute):
(WebCore::SVGPatternElement::svgAttributeChanged):
(WebCore::SVGPatternElement::childrenChanged):

  • svg/SVGPatternElement.h:
  • svg/SVGPatternElement.idl:
  • svg/SVGScriptElement.h:
  • svg/SVGStopElement.cpp:

(WebCore::SVGStopElement::SVGStopElement):
(WebCore::SVGStopElement::parseAttribute):
(WebCore::SVGStopElement::svgAttributeChanged):

  • svg/SVGStopElement.h:
  • svg/SVGStopElement.idl:
  • svg/SVGStyleElement.h:
  • svg/SVGStyledElement.cpp: Removed.
  • svg/SVGStyledElement.h: Removed.
  • svg/SVGStyledElement.idl: Removed.
  • svg/SVGSymbolElement.cpp:

(WebCore::SVGSymbolElement::SVGSymbolElement):
(WebCore::SVGSymbolElement::parseAttribute):
(WebCore::SVGSymbolElement::svgAttributeChanged):

  • svg/SVGSymbolElement.h:
  • svg/SVGSymbolElement.idl:
  • svg/SVGTRefElement.cpp:

(WebCore::SVGTRefElement::insertedInto):
(WebCore::SVGTRefElement::removedFrom):

  • svg/SVGTitleElement.cpp:

(WebCore::SVGTitleElement::SVGTitleElement):
(WebCore::SVGTitleElement::insertedInto):

  • svg/SVGTitleElement.h:
  • svg/SVGTitleElement.idl:
  • svg/SVGTransformable.cpp:
  • svg/SVGUseElement.cpp:

(WebCore::SVGUseElement::selfHasRelativeLengths):

  • svg/SVGViewElement.cpp:

(WebCore::SVGViewElement::SVGViewElement):
(WebCore::SVGViewElement::parseAttribute):

  • svg/SVGViewElement.h:
  • svg/animation/SVGSMILElement.h:
  • svg/graphics/filters/SVGFEImage.cpp:

(WebCore::FEImage::platformApplySoftware):

LayoutTests:

Add layout test to validate the SVG2 inheritance model.

  • svg/dom/svg2-inheritance-expected.txt: Added.
  • svg/dom/svg2-inheritance.html: Added.
2:26 PM Changeset in webkit [154461] by barraclough@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

https://bugs.webkit.org/show_bug.cgi?id=120128
Remove putDirectVirtual

Unreviewed, checked in commented out code. :-(

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::execute):

  • delete commented out code
2:24 PM Changeset in webkit [154460] by barraclough@apple.com
  • 5 edits in trunk

Error.stack should not be enumerable
https://bugs.webkit.org/show_bug.cgi?id=120171

Reviewed by Oliver Hunt.

Breaks ECMA tests.

Source/JavaScriptCore:

  • runtime/ErrorInstance.cpp:

(JSC::ErrorInstance::finishCreation):

  • None -> DontEnum

LayoutTests:

  • fast/js/exception-properties-expected.txt:
  • fast/js/script-tests/exception-properties.js:
    • Update test expectations.
1:35 PM Changeset in webkit [154459] by barraclough@apple.com
  • 19 edits in trunk/Source/JavaScriptCore

https://bugs.webkit.org/show_bug.cgi?id=120128
Remove putDirectVirtual

Reviewed by Sam Weinig.

This could most generously be described as 'vestigial'.
No performance impact.

  • API/JSObjectRef.cpp:

(JSObjectSetProperty):

  • changed to use defineOwnProperty
  • debugger/DebuggerActivation.cpp:
  • debugger/DebuggerActivation.h:
    • remove putDirectVirtual
  • interpreter/Interpreter.cpp:

(JSC::Interpreter::execute):

  • changed to use defineOwnProperty
  • runtime/ClassInfo.h:
  • runtime/JSActivation.cpp:
  • runtime/JSActivation.h:
  • runtime/JSCell.cpp:
  • runtime/JSCell.h:
  • runtime/JSGlobalObject.cpp:
  • runtime/JSGlobalObject.h:
  • runtime/JSObject.cpp:
  • runtime/JSObject.h:
  • runtime/JSProxy.cpp:
  • runtime/JSProxy.h:
  • runtime/JSSymbolTableObject.cpp:
  • runtime/JSSymbolTableObject.h:
    • remove putDirectVirtual
  • runtime/PropertyDescriptor.h:

(JSC::PropertyDescriptor::PropertyDescriptor):

  • added constructor for convenience
1:27 PM Changeset in webkit [154458] by akling@apple.com
  • 15 edits in trunk/Source

FrameLoader::history() should return a reference.
<https://webkit.org/b/120163>

Reviewed by Anders Carlsson.

Rehued by Anders Carlsson.

FrameLoader::m_history is never null, so make history() return a reference.
Also made HistoryController::m_frame a reference, since HistoryController's
lifetime is tied to FrameLoader, which is tied to the Frame.

12:44 PM Changeset in webkit [154457] by commit-queue@webkit.org
  • 2 edits in trunk/Source/JavaScriptCore

errorDescriptionForValue() should not assume error value is an Object
https://bugs.webkit.org/show_bug.cgi?id=119812

Patch by Chris Curtis <chris_curtis@apple.com> on 2013-08-22
Reviewed by Geoffrey Garen.

Added a check to make sure that the JSValue was an object before casting it as an object. Also, in case the parameterized JSValue
has no type, the function now returns the empty string.

  • runtime/ExceptionHelpers.cpp:

(JSC::errorDescriptionForValue):

12:28 PM Changeset in webkit [154456] by commit-queue@webkit.org
  • 10 edits in trunk/Source/WebInspectorUI

<https://webkit.org/b/120165> Web Inspector: Update CodeMirror to 3.16.1

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2013-08-22
Reviewed by Andy Estes.

  • Tools/PrettyPrinting/codemirror.css:
  • Tools/PrettyPrinting/codemirror.js:
  • Tools/PrettyPrinting/css.js:
  • Tools/PrettyPrinting/javascript.js:
  • UserInterface/External/CodeMirror/codemirror.css:
  • UserInterface/External/CodeMirror/codemirror.js:
  • UserInterface/External/CodeMirror/css.js:
  • UserInterface/External/CodeMirror/javascript.js:
  • UserInterface/External/CodeMirror/xml.js:
11:48 AM Changeset in webkit [154455] by Simon Fraser
  • 2 edits in trunk/Source/WebCore

Reloading this video test shows garbage briefly
https://bugs.webkit.org/show_bug.cgi?id=119377

Reviewed by Anders Carlson.

RenderVideo should not claim that it's foreground is opaque
unless it has a video frame to display.

  • rendering/RenderVideo.cpp:

(WebCore::RenderVideo::foregroundIsKnownToBeOpaqueInRect):

9:59 AM Changeset in webkit [154454] by akling@apple.com
  • 2 edits in trunk/Source/WebKit/win

Another Windows build fix.

  • WebDataSource.cpp:

(WebDataSource::subresourceForURL):

9:57 AM Changeset in webkit [154453] by commit-queue@webkit.org
  • 1 edit
    2 adds in trunk/LayoutTests

[CSSRegions] Min-width and max-width for a region should support values other than length
https://bugs.webkit.org/show_bug.cgi?id=115248

Patch by Anton Obzhirov <Anton Obzhirov> on 2013-08-22
Reviewed by Alexandru Chiculita.

  • fast/regions/region-min-max-width-support-expected.txt: Added.
  • fast/regions/region-min-max-width-support.html: Added.
9:44 AM Changeset in webkit [154452] by akling@apple.com
  • 2 edits in trunk/Source/WebCore

Remove accidental cruft from r154449.

  • rendering/RenderWidget.cpp:

(WebCore::RenderWidget::destroy):

9:43 AM Changeset in webkit [154451] by akling@apple.com
  • 6 edits in trunk/Source/WebKit

Source/WebKit/efl: EFL build juice.

  • WebCoreSupport/ChromeClientEfl.cpp:

(kit):

Source/WebKit/win: Windows build juice.

  • WebDataSource.cpp:

(WebDataSource::representation):
(WebDataSource::webFrame):

  • WebElementPropertyBag.cpp:

(WebElementPropertyBag::Read):

  • WebFramePolicyListener.cpp:

(WebFramePolicyListener::receivedPolicyDecision):

9:05 AM Changeset in webkit [154450] by rniwa@webkit.org
  • 5 edits in trunk/Tools

NRWT: Add the ability to upload test results to new test results server
https://bugs.webkit.org/show_bug.cgi?id=120146

Reviewed by Andreas Kling.

For the upcoming replacement for webkit-test-results.appspot.com, new-run-webkit-tests needs to use a new JSON format
that contains the full summary of the test run including information about passed tests.

Add this ability to NRWT so that I can start testing this feature. This patch adds the following optoins to NRWT:
--build-slave
--got-revision
--results-server-host

The last option is somewhat ambigious with --test-results-server but we're intending to deprecate the old server
so we should be able to delete --test-results-server in time.

  • Scripts/webkitpy/layout_tests/controllers/manager.py:

(Manager.run):
(Manager._upload_json_files):
(Manager):
(Manager.upload_results):

  • Scripts/webkitpy/layout_tests/models/test_run_results.py:

(summarize_results):

  • Scripts/webkitpy/layout_tests/models/test_run_results_unittest.py:

(summarized_results):
(SummarizedResultsTest.test_summarized_results_wontfix):
(SummarizedResultsTest):
(SummarizedResultsTest.test_summarized_results_include_passes):

  • Scripts/webkitpy/layout_tests/run_webkit_tests.py:

(parse_args):

9:01 AM Changeset in webkit [154449] by akling@apple.com
  • 75 edits in trunk/Source

FrameLoader: frame() and client() should return references.
<https://webkit.org/b/120158>

Reviewed by Anders Carlsson.

These two are never null so change them to return references.

8:34 AM Changeset in webkit [154448] by rniwa@webkit.org
  • 2 edits in trunk/Tools

WKR build fix. Somehow tool.bugs.quips() doesn't work in WKR so work around that.

  • Scripts/webkitpy/tool/bot/irc_command.py:

(Hi.execute):

8:28 AM Changeset in webkit [154447] by abucur@adobe.com
  • 2 edits in trunk/Source/WebCore

RenderNamedFlowThread should not create NodeRenderingContext objects
https://bugs.webkit.org/show_bug.cgi?id=119923

Reviewed by Antti Koivisto.

Port of https://chromium.googlesource.com/chromium/blink/+/949d7d7e7b8685454742a55cf0ca912bb9a7b177.
Original patch by Elliott Sprehn.

RenderNamedFlowThread should not create NodeRenderingContext objects

RenderNamedFlowThread is using NodeRenderingContext to get the original
parent renderer, but should just be using NodeRenderingTraversal::parent
instead (which is what NodeRenderingContext does internally anyway).

Tests: No change in functionality. No new tests.

  • rendering/RenderNamedFlowThread.cpp:

(WebCore::RenderNamedFlowThread::isChildAllowed):

7:01 AM Changeset in webkit [154446] by rniwa@webkit.org
  • 2 edits in trunk/LayoutTests

Actually, this test is failing on Debug builds as well.
Update the test expectation accordingly.

  • platform/mac-wk2/TestExpectations:
6:55 AM Changeset in webkit [154445] by rniwa@webkit.org
  • 2 edits in trunk/LayoutTests

Add the failing test expectation to webaudio/codec-tests/mp3/128kbps-44khz.html on Lion Release WK2.
The failure is tracked by the bug 120161.

  • platform/mac-wk2/TestExpectations:
5:46 AM Changeset in webkit [154444] by allan.jensen@digia.com
  • 2 edits in trunk/Tools

[Qt] DRT bug revealed/caused by r154300
https://bugs.webkit.org/show_bug.cgi?id=120151

Reviewed by Simon Hausmann.

Since QtInstance had an implementation of getOwnPropertySlot and not getOwnPropertyDescriptor,
the behavior of getOwnPropertyDescriptor changed when it got implemented using getOwnPropertySlot
in r154300.

DRT relied on getOwnPropertyDescriptor returning undefined for JS set properties to distinguish
between native Qt methods and JSC bound methods. This patch changes the check to see if the
property is writable since the Qt methods are ReadOnly.

  • DumpRenderTree/qt/DumpRenderTreeQt.cpp:

(DumpRenderTree::initJSObjects):

5:38 AM Changeset in webkit [154443] by Christophe Dumez
  • 10 edits
    1 add in trunk/Source/WebCore

Introduce a SVGUnknownElement class for unknown SVG elements
https://bugs.webkit.org/show_bug.cgi?id=120155

Reviewed by Andreas Kling.

Introduce a SVGUnknownElement class and have it override rendererIsNeeded() to return false.
We now use SVGUnknownElement type (instead of SVGElement) for unknown SVG elements:

As a consequence, SVGElement::rendererIsNeeded() is not longer required to return false and
it will be able to behave as SVGStyledElement::rendererIsNeeded() once we merge
SVGStyledElement into SVGElement.

This is a pre-requirement to merging SVGStyledElement into SVGElement.

No new tests, no behavior change.

  • GNUmakefile.list.am:
  • Target.pri:
  • WebCore.vcxproj/WebCore.vcxproj:
  • WebCore.vcxproj/WebCore.vcxproj.filters:
  • dom/CustomElementConstructor.cpp:

(WebCore::CustomElementConstructor::createElementInternal):

  • dom/make_names.pl:

(defaultParametersHash):
(printJSElementIncludes):
(printWrapperFunctions):
(printWrapperFactoryCppFile):

  • svg/SVGElement.cpp:
  • svg/SVGElement.h:
  • svg/SVGUnknownElement.h: Added.

(WebCore::SVGUnknownElement::create):
(WebCore::SVGUnknownElement::SVGUnknownElement):

  • svg/svgtags.in:
5:37 AM Changeset in webkit [154442] by commit-queue@webkit.org
  • 2 edits in trunk/Source/JavaScriptCore

Fix P_DFGOperation_EJS call for MIPS and ARM EABI.
https://bugs.webkit.org/show_bug.cgi?id=120107

Patch by Julien Brianceau <jbrianceau@nds.com> on 2013-08-22
Reviewed by Yong Li.

EncodedJSValue parameters must be aligned to even registers for MIPS and ARM EABI.

  • dfg/DFGSpeculativeJIT.h:

(JSC::DFG::SpeculativeJIT::callOperation):

4:50 AM Changeset in webkit [154441] by rwlbuis@webkit.org
  • 3 edits
    4 adds in trunk

REGRESSION: Assertion failure !collection->hasExactlyOneItem() in WebCore::namedItemGetter
https://bugs.webkit.org/show_bug.cgi?id=118056

Reviewed by Ryosuke Niwa.

Source/WebCore:

The assert is hit in Debug mode because the DocumentOrderedMap in HTMLDocument::m_windowNamedItem
includes matched SVG elements, but the WindowNameCollection used to collect the elements does not.
This means the HTMLCollection stripped of SVG elements could end up hitting the empty or single item
assertion, which the testcase verifies.
To fix this change WindowNameCollection to include both SVG and HTML elements so it matches DocumentOrderedMap.

Tests: svg/custom/document-all-includes-svg.html

svg/custom/window-named-item-lookup.html

  • html/HTMLCollection.cpp:

(WebCore::isMatchingElement):
(WebCore::HTMLCollection::updateNameCache):

LayoutTests:

Add test to verify that SVG and HTML elements with id's are both found when using document.all or named properties.

  • svg/custom/document-all-includes-svg-expected.txt: Added.
  • svg/custom/document-all-includes-svg.html: Added.
  • svg/custom/window-named-item-lookup-expected.txt: Added.
  • svg/custom/window-named-item-lookup.html: Added.
4:43 AM Changeset in webkit [154440] by gyuyoung.kim@samsung.com
  • 5 edits in trunk/Source/WebCore

Introduce toSVGRadialGradientElement(), and use it
https://bugs.webkit.org/show_bug.cgi?id=120153

Reviewed by Andreas Kling.

As a step to clean-up static_cast<SVGXXX>, toSVGRadialGradientElement() is added to clean-up
static_cast<SVGRadialGradientElement*>.

  • rendering/svg/RenderSVGResourceRadialGradient.cpp:

(WebCore::RenderSVGResourceRadialGradient::collectGradientAttributes):

  • rendering/svg/SVGRenderTreeAsText.cpp:

(WebCore::writeSVGResourceContainer):

  • svg/SVGRadialGradientElement.cpp:

(WebCore::SVGRadialGradientElement::collectGradientAttributes):

  • svg/SVGRadialGradientElement.h:

(WebCore::toSVGRadialGradientElement):

3:14 AM Changeset in webkit [154439] by reni@webkit.org
  • 3 edits
    2 adds in trunk

ASSERTION FAILED: extractedStyle in WebCore::ApplyStyleCommand::removeInlineStyleFromElement
https://bugs.webkit.org/show_bug.cgi?id=119672

Reviewed by Darin Adler.

Source/WebCore:

The last extractedStyle parameter of removeInlineStyleFromElement() is not mandatory and it's set
to default 0. This way we have to check its existence before the usage.

Test: editing/execCommand/extracted_style_assert.html

  • editing/ApplyStyleCommand.cpp:

(WebCore::ApplyStyleCommand::removeInlineStyleFromElement):

LayoutTests:

Test with NULL extractedStyle.

  • editing/execCommand/extracted_style_assert-expected.txt: Added.
  • editing/execCommand/extracted_style_assert.html: Added.
2:28 AM Changeset in webkit [154438] by sergio@webkit.org
  • 7 edits
    1 add in trunk/LayoutTests

[CSS Grid Layout] Refactor testing code
https://bugs.webkit.org/show_bug.cgi?id=119552

Reviewed by Darin Adler.

Based on Blink r148922 & r149060 by <jchaffraix@chromium.org>

The old testing code was a huge copy&paste of big testing code
blocks. Refactor it in some new utility functions so that we could
reduce the size of the layout test file and ease the maintenance.

  • fast/css-grid-layout/grid-item-column-row-get-set-expected.txt:
  • fast/css-grid-layout/grid-item-column-row-get-set.html:
  • fast/css-grid-layout/grid-item-end-after-get-set-expected.txt:
  • fast/css-grid-layout/grid-item-end-after-get-set.html:
  • fast/css-grid-layout/grid-item-start-before-get-set-expected.txt:
  • fast/css-grid-layout/grid-item-start-before-get-set.html:
  • fast/css-grid-layout/resources/grid-item-column-row-parsing-utils.js: Added.

Aug 21, 2013:

10:02 PM Changeset in webkit [154437] by rniwa@webkit.org
  • 3 edits in trunk/LayoutTests

Update Mac test expectations.

  • platform/mac-wk2/TestExpectations:
  • platform/mac/TestExpectations:
9:40 PM Changeset in webkit [154436] by commit-queue@webkit.org
  • 24 edits in trunk

Unreviewed, rolling out r154416.
http://trac.webkit.org/changeset/154416
https://bugs.webkit.org/show_bug.cgi?id=120147

Broke Windows builds (Requested by rniwa on #webkit).

Source/JavaScriptCore:

Source/WebCore:

  • WebCore.vcxproj/WebCoreGenerated.make:
  • WebCore.vcxproj/WebCoreGeneratedWinCairo.make:
  • WebCore.vcxproj/WebCoreGeneratedWinCairoCommon.props:
  • WebCore.vcxproj/build-generated-files.sh:
  • WebCore.vcxproj/copyForwardingHeaders.cmd:
  • WebCore.vcxproj/copyWebCoreResourceFiles.cmd:

Source/WebKit:

  • WebKit.vcxproj/WebKit/WebKitPostBuild.cmd:
  • WebKit.vcxproj/WebKitExportGenerator/WebKitExportGeneratorBuildCmd.cmd:
  • WebKit.vcxproj/WebKitExportGenerator/WebKitExportGeneratorPostBuild.cmd:
  • WebKit.vcxproj/WebKitExportGenerator/WebKitExportGeneratorPreBuild.cmd:

Source/WTF:

  • WTF.vcxproj/WTFGenerated.make:
  • WTF.vcxproj/build-generated-files.sh:

WebKitLibraries:

  • win/tools/vsprops/common.props:
7:06 PM Changeset in webkit [154435] by ryuan.choi@samsung.com
  • 2 edits in trunk/Source/WebCore

[EFL] Unreviewed build fix after r154430.

  • rendering/style/StyleRareNonInheritedData.cpp:

(WebCore::StyleRareNonInheritedData::hasFilters): Added CSS_FILTERS guard.

6:04 PM Changeset in webkit [154434] by barraclough@apple.com
  • 5 edits in trunk/Source/JavaScriptCore

Clarify var/const/function declaration
https://bugs.webkit.org/show_bug.cgi?id=120144

Reviewed by Sam Weinig.

Add methods to JSGlobalObject to declare vars, consts, and functions.

  • runtime/Executable.cpp:

(JSC::ProgramExecutable::initializeGlobalProperties):

  • runtime/Executable.h:
    • Moved declaration code to JSGlobalObject
  • runtime/JSGlobalObject.cpp:

(JSC::JSGlobalObject::addGlobalVar):

  • internal implementation of addVar, addConst, addFunction
  • runtime/JSGlobalObject.h:

(JSC::JSGlobalObject::addVar):
(JSC::JSGlobalObject::addConst):
(JSC::JSGlobalObject::addFunction):

  • Added methods to declare vars, consts, and functions
6:00 PM Changeset in webkit [154433] by timothy_horton@apple.com
  • 2 edits in trunk/Source/WebKit2

Another null-deref under WebDragClient::startDrag
https://bugs.webkit.org/show_bug.cgi?id=120145
<rdar://problem/14650652>

Reviewed by Simon Fraser.

convertImageToBitmap can legitimately return null, so don't dereference it.

  • WebProcess/WebCoreSupport/mac/WebDragClientMac.mm:

(WebKit::WebDragClient::startDrag):

5:58 PM Changeset in webkit [154432] by Lucas Forschler
  • 5 edits in branches/safari-537-branch/Source

Versioning

5:48 PM Changeset in webkit [154431] by Lucas Forschler
  • 1 copy in tags/Safari-537.61

New Tag.

5:15 PM Changeset in webkit [154430] by Simon Fraser
  • 5 edits
    2 adds in trunk

Setting -webkit-filter: in :active selector causes failure to redraw
https://bugs.webkit.org/show_bug.cgi?id=120135

Source/WebCore:

Reviewed by Jer Noble.

When removing a filter on an inline child of a compositing layer,
the inline loses its RenderLayer and compositing layer, but we fail to
repaint the compositing layer that the inline is now painting into.

This worked correctly for opacity, because opacity toggles cause
layouts (which then paint the correct layer), so do the same for filters.

Test: css3/filters/remove-filter-repaint.html

  • rendering/style/RenderStyle.cpp:

(WebCore::RenderStyle::changeRequiresLayout): Return true if we toggled
between having filters and not. Drive-by cleanup, making use of new convenience
function for hasOpacity().

  • rendering/style/StyleRareNonInheritedData.cpp:

(WebCore::StyleRareNonInheritedData::hasFilters): Returns true if we have any
filters.

  • rendering/style/StyleRareNonInheritedData.h:

(WebCore::StyleRareNonInheritedData::hasOpacity): Convenience function that
returns true if opacity is < 1.

LayoutTests:

Reviewed by Jer Noble.

Ref test for removing a filter on an inline.

  • css3/filters/remove-filter-repaint-expected.html: Added.
  • css3/filters/remove-filter-repaint.html: Added.
4:34 PM Changeset in webkit [154429] by commit-queue@webkit.org
  • 3 edits
    3 adds in trunk

https://bugs.webkit.org/show_bug.cgi?id=119900
Exception in global setter doesn't unwind correctly

Patch by Yi Shen <max.hong.shen@gmail.com> on 2013-08-21
Reviewed by Geoffrey Garen.

Source/JavaScriptCore:

Call VM_THROW_EXCEPTION_AT_END in op_put_to_scope if the setter throws exception.

  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION):

LayoutTests:

Add test for calling global setter which throws exception.

  • fast/js/script-tests/throw-exception-in-global-setter.js: Added.

(g):

  • fast/js/throw-exception-in-global-setter-expected.txt: Added.
  • fast/js/throw-exception-in-global-setter.html: Added.
4:27 PM Changeset in webkit [154428] by Beth Dakin
  • 2 edits in trunk/Source/WebKit2

<https://webkit.org/b/120140> Clients expect didFirstLayout-related calls to
happen before didLayout

Reviewed by Anders Carlsson.

  • WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:

(WebKit::WebFrameLoaderClient::dispatchDidLayout):

4:18 PM Changeset in webkit [154427] by Brent Fulgham
  • 3 edits in trunk/Source/WebInspectorUI

[Windows] Clean up project file after %PlatformArchitecture% change landed.

  • WebInspectorUI.vcxproj/WebInspectorUI.vcxproj: Remove hard-coded settings covered

by our configuration files.

  • WebInspectorUI.vcxproj/WebInspectorUIPostBuild.cmd: Use the %PlatformArchitecture%

macro to support 32- and 64-bit builds.

4:10 PM Changeset in webkit [154426] by mhahnenberg@apple.com
  • 5 edits in trunk/Source/JavaScriptCore

Rename/refactor setButterfly/setStructure
https://bugs.webkit.org/show_bug.cgi?id=120138

Reviewed by Geoffrey Garen.

setButterfly becomes setStructureAndButterfly.

Also removed the Butterfly* argument from setStructure and just implicitly
used m_butterfly internally since that's what every single client of setStructure
was doing already.

  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION):

  • runtime/JSObject.cpp:

(JSC::JSObject::notifyPresenceOfIndexedAccessors):
(JSC::JSObject::createInitialUndecided):
(JSC::JSObject::createInitialInt32):
(JSC::JSObject::createInitialDouble):
(JSC::JSObject::createInitialContiguous):
(JSC::JSObject::createArrayStorage):
(JSC::JSObject::convertUndecidedToInt32):
(JSC::JSObject::convertUndecidedToDouble):
(JSC::JSObject::convertUndecidedToContiguous):
(JSC::JSObject::convertUndecidedToArrayStorage):
(JSC::JSObject::convertInt32ToDouble):
(JSC::JSObject::convertInt32ToContiguous):
(JSC::JSObject::convertInt32ToArrayStorage):
(JSC::JSObject::genericConvertDoubleToContiguous):
(JSC::JSObject::convertDoubleToArrayStorage):
(JSC::JSObject::convertContiguousToArrayStorage):
(JSC::JSObject::switchToSlowPutArrayStorage):
(JSC::JSObject::setPrototype):
(JSC::JSObject::putDirectAccessor):
(JSC::JSObject::seal):
(JSC::JSObject::freeze):
(JSC::JSObject::preventExtensions):
(JSC::JSObject::reifyStaticFunctionsForDelete):
(JSC::JSObject::removeDirect):

  • runtime/JSObject.h:

(JSC::JSObject::setStructureAndButterfly):
(JSC::JSObject::setStructure):
(JSC::JSObject::putDirectInternal):
(JSC::JSObject::setStructureAndReallocateStorageIfNecessary):
(JSC::JSObject::putDirectWithoutTransition):

  • runtime/Structure.cpp:

(JSC::Structure::flattenDictionaryStructure):

4:03 PM Changeset in webkit [154425] by ap@apple.com
  • 7 edits in trunk/LayoutTests

http/tests/cookies/simple-cookies-expired.html sometimes fails on Lion Intel Release (Tests)
https://bugs.webkit.org/show_bug.cgi?id=73694

http/tests/cookies/simple-cookies-max-age.html sometimes fails on Lion Intel Release (Tests)
https://bugs.webkit.org/show_bug.cgi?id=73695

http/tests/cookies/single-quoted-value.html intermittently fails on Mac
https://bugs.webkit.org/show_bug.cgi?id=105603

Reviewed by Dan Bernstein.

Woark around a CFNetwork issue by using Max-Age=-1 instead of Max-Age=0. Since it's
WebKit that we are testing and not the lower level networking, this does not change
test coverage.

  • http/tests/cookies/resources/clearCookies.cgi:
  • http/tests/cookies/resources/cookies-test-pre.js:
  • http/tests/cookies/simple-cookies-max-age.html:
  • http/tests/websocket/tests/hybi/httponly-cookie.pl:
  • platform/mac-wk2/TestExpectations:
  • platform/mac/TestExpectations:
3:45 PM Changeset in webkit [154424] by Brent Fulgham
  • 2 edits in trunk/LayoutTests

[Windows] Reenable some tests that pass now.

  • platform/win/TestExpectations: Renable some tests
3:34 PM Changeset in webkit [154423] by barraclough@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

https://bugs.webkit.org/show_bug.cgi?id=120127
Remove JSObject::propertyIsEnumerable

Unreviewed typo fix

  • runtime/JSObject.h:
    • fix typo
3:32 PM Changeset in webkit [154422] by barraclough@apple.com
  • 33 edits in trunk/Source

https://bugs.webkit.org/show_bug.cgi?id=120139
PropertyDescriptor argument to define methods should be const

Rubber stamped by Sam Weinig.

This should never be modified, and this way we can use rvalues.

Source/JavaScriptCore:

  • debugger/DebuggerActivation.cpp:

(JSC::DebuggerActivation::defineOwnProperty):

  • debugger/DebuggerActivation.h:
  • runtime/Arguments.cpp:

(JSC::Arguments::defineOwnProperty):

  • runtime/Arguments.h:
  • runtime/ClassInfo.h:
  • runtime/JSArray.cpp:

(JSC::JSArray::defineOwnProperty):

  • runtime/JSArray.h:
  • runtime/JSArrayBuffer.cpp:

(JSC::JSArrayBuffer::defineOwnProperty):

  • runtime/JSArrayBuffer.h:
  • runtime/JSArrayBufferView.cpp:

(JSC::JSArrayBufferView::defineOwnProperty):

  • runtime/JSArrayBufferView.h:
  • runtime/JSCell.cpp:

(JSC::JSCell::defineOwnProperty):

  • runtime/JSCell.h:
  • runtime/JSFunction.cpp:

(JSC::JSFunction::defineOwnProperty):

  • runtime/JSFunction.h:
  • runtime/JSGenericTypedArrayView.h:
  • runtime/JSGenericTypedArrayViewInlines.h:

(JSC::::defineOwnProperty):

  • runtime/JSGlobalObject.cpp:

(JSC::JSGlobalObject::defineOwnProperty):

  • runtime/JSGlobalObject.h:
  • runtime/JSObject.cpp:

(JSC::JSObject::putIndexedDescriptor):
(JSC::JSObject::defineOwnIndexedProperty):
(JSC::putDescriptor):
(JSC::JSObject::defineOwnNonIndexProperty):
(JSC::JSObject::defineOwnProperty):

  • runtime/JSObject.h:
  • runtime/JSProxy.cpp:

(JSC::JSProxy::defineOwnProperty):

  • runtime/JSProxy.h:
  • runtime/RegExpMatchesArray.h:

(JSC::RegExpMatchesArray::defineOwnProperty):

  • runtime/RegExpObject.cpp:

(JSC::RegExpObject::defineOwnProperty):

  • runtime/RegExpObject.h:
  • runtime/StringObject.cpp:

(JSC::StringObject::defineOwnProperty):

  • runtime/StringObject.h:
    • make PropertyDescriptor const

Source/WebCore:

  • bindings/js/JSDOMWindowCustom.cpp:

(WebCore::JSDOMWindow::defineOwnProperty):

  • bindings/js/JSLocationCustom.cpp:

(WebCore::JSLocation::defineOwnProperty):
(WebCore::JSLocationPrototype::defineOwnProperty):

  • bindings/scripts/CodeGeneratorJS.pm:

(GenerateHeader):

  • make PropertyDescriptor const
3:18 PM Changeset in webkit [154421] by Brent Fulgham
  • 3 edits in trunk/Source/WebKit/win

<https://webkit.org/b/120125> [Windows] Correct Tooltip Text

Reviewed by Anders Carlsson.

  • WebCoreSupport/WebChromeClient.cpp:

(WebChromeClient::runOpenPanel): Make sure valid strings are passed to the File Open
API call.

  • WebView.cpp:

(WebView::setToolTip): Correct tooltip text (avoid passing address to temporary
return value.)

2:43 PM Changeset in webkit [154420] by timothy_horton@apple.com
  • 2 edits in trunk/LayoutTests

Remove a deleted test from the global TestExpectations

It was freaking lint-test-expectations out.

2:40 PM Changeset in webkit [154419] by fpizlo@apple.com
  • 4 edits
    3 adds in trunk

REGRESSION: Crash under JITCompiler::link while loading Gmail
https://bugs.webkit.org/show_bug.cgi?id=119872

Source/JavaScriptCore:

Reviewed by Mark Hahnenberg.

Apparently, unsigned + signed = unsigned. Work around it with a cast.

  • dfg/DFGByteCodeParser.cpp:

(JSC::DFG::ByteCodeParser::parseBlock):

LayoutTests:

Reviewed by Mark Hahnenberg.

  • fast/js/dfg-switch-imm-negative-expected.txt: Added.
  • fast/js/dfg-switch-imm-negative.html: Added.
  • fast/js/jsc-test-list:
  • fast/js/script-tests/dfg-switch-imm-negative.js: Added.

(foo):

2:36 PM Changeset in webkit [154418] by zhajiang@rim.com
  • 2 edits in trunk/Source/WebCore

<https://webkit.org/b/120123> [BlackBerry] Incorrect origin of indexOfTile in LayerTiler can cause unnecessary texture jobs and waste memory

Patch by Jacky Jiang <zhajiang@blackberry.com> on 2013-08-21
Reviewed by Yong Li.
Internally reviewed by Arvid Nilsson.

JIRA 481356
The origin of indexOfTile(origin) is incorrect in these two places. For
example, if the maxXMaxYCorner of the rect is (768, 768), there can be
three other redundant indexOfTile (0, 1), (1, 0), (1, 1) which can cause
unnecessary texture jobs and waste memory.
The origin should be the top left of the bottom right pixel of a rect.

  • platform/graphics/blackberry/LayerTiler.cpp:

(WebCore::LayerTiler::updateTextureContentsIfNeeded):
(WebCore::LayerTiler::processTextureJob):

2:32 PM Changeset in webkit [154417] by Simon Fraser
  • 2 edits in trunk/Source/WebCore

<https://webkit.org/b/116901> ASSERTION FAILED: !m_visibleDescendantStatusDirty on twitter

Reviewed by Beth Dakin.

In order to make decisions about compositing, the m_hasVisibleDescendant bit on RenderLayers
needs to be up-to-date when RenderLayerCompositor::computeCompositingRequirements is recursing
over the RenderLayer tree.

However, was possible for computeCompositingRequirements() to hit a layer whose m_visibleDescendantStatusDirty
bit was set; we only clear this bit from collectLayers() (when updating z-order lists), and from styleChanged()
which requires that style changed on the layer itself.

Fix by always calling updateDescendantDependentFlags() from computeCompositingRequirements().

Wasn't able to easily get a reduced testcase.

  • rendering/RenderLayerCompositor.cpp:

(WebCore::RenderLayerCompositor::computeCompositingRequirements):

2:24 PM Changeset in webkit [154416] by achristensen@apple.com
  • 24 edits in trunk

<https://webkit.org/b/120137> Separating Win32 and Win64 builds.

Reviewed by Brent Fulgham.

Source/JavaScriptCore:

Pass PlatformArchitecture as a command line parameter to bash scripts.

Use PlatformArchitecture from command line to determine which object directory to use (obj32 or obj64).

Source/WebCore:

  • WebCore.vcxproj/WebCoreGenerated.make:
  • WebCore.vcxproj/WebCoreGeneratedWinCairo.make:

Pass PlatformArchitecture as a command line parameter to bash scripts
and use PlatformArchitecture to determine which directory to delete
while cleaning (obj32 or obj64).

  • WebCore.vcxproj/WebCoreGeneratedWinCairoCommon.props:

Export PlatformArchitecture to be used by make and cmd scripts.

  • WebCore.vcxproj/build-generated-files.sh:

Use PlatformArchitecture from command line to determine which object directory to use (obj32 or obj64).

  • WebCore.vcxproj/copyForwardingHeaders.cmd:
  • WebCore.vcxproj/copyWebCoreResourceFiles.cmd:

Use PlatformArchitecture to determine which directory to copy to (obj32 or obj64).

Source/WebKit:

  • WebKit.vcxproj/WebKit/WebKitPostBuild.cmd:
  • WebKit.vcxproj/WebKitExportGenerator/WebKitExportGeneratorBuildCmd.cmd:
  • WebKit.vcxproj/WebKitExportGenerator/WebKitExportGeneratorPostBuild.cmd:
  • WebKit.vcxproj/WebKitExportGenerator/WebKitExportGeneratorPreBuild.cmd:

Use PlatformArchitecture to determine correct object directory (obj32 or obj64).

Source/WTF:

  • WTF.vcxproj/WTFGenerated.make:

Pass PlatformArchitecture as a command line parameter to bash scripts.

  • WTF.vcxproj/build-generated-files.sh:

Use PlatformArchitecture from command line to determine which object directory to use (obj32 or obj64).

WebKitLibraries:

  • win/tools/vsprops/common.props:

Export PlatformArchitecture to be used by make and cmd scripts.
Use PlatformArchitecture to determine correct build directory
(lib32/bin32/obj32 or lib64/bin64/obj64).

2:08 PM Changeset in webkit [154415] by timothy_horton@apple.com
  • 3 edits in trunk/Source/WebCore

revalidateTiles and ensureTilesForRect can share a lot of code
https://bugs.webkit.org/show_bug.cgi?id=119282

Missed the review comments, whoops.

  • platform/graphics/ca/mac/TileController.h:
  • platform/graphics/ca/mac/TileController.mm:

(WebCore::TileController::prepopulateRect):
(WebCore::TileController::revalidateTiles):
(WebCore::TileController::ensureTilesForRect):

2:07 PM Changeset in webkit [154414] by akling@apple.com
  • 11 edits in trunk/Source/WebCore

<https://webkit.org/b/120115> SVG elements always have custom style resolve callbacks.

Reviewed by Antti Koivisto.

Simplify SVGElement construction by making them opt in to custom style resolve callbacks
by default, and removing the ability to pass a custom ConstructionType to some subclass
constructors.

  • dom/Node.h:

Add HasCustomStyleResolveCallbacksFlag to the CreateSVGElement mask.

  • svg/SVGElement.cpp:

(WebCore::SVGElement::SVGElement):

  • svg/SVGElement.h:
  • svg/SVGGElement.cpp:

(WebCore::SVGGElement::SVGGElement):

  • svg/SVGGElement.h:
  • svg/SVGGraphicsElement.cpp:

(WebCore::SVGGraphicsElement::SVGGraphicsElement):

  • svg/SVGGraphicsElement.h:
  • svg/SVGImageElement.cpp:

(WebCore::SVGImageElement::SVGImageElement):

  • svg/SVGStyledElement.cpp:

(WebCore::SVGStyledElement::SVGStyledElement):

  • svg/SVGStyledElement.h:

Remove calls to setHasCustomStyleResolveCallbacks() in SVGElement and subclasses.
Also remove unnecessary ConstructionType argument from subclasses since nobody
overrides it and everyone just uses CreateSVGElement.

2:04 PM Changeset in webkit [154413] by timothy_horton@apple.com
  • 3 edits in trunk/Source/WebCore

revalidateTiles and ensureTilesForRect can share a lot of code
https://bugs.webkit.org/show_bug.cgi?id=119282

Reviewed by Simon Fraser.

No new tests, just a refactoring.

The bodies of ensureTilesForRect and revalidateTiles are nearly equivalent.

  • platform/graphics/ca/mac/TileController.h:

Add an enum, NewTileType, to note whether the tiles created by ensureTilesForRect will
be primary coverage tiles or secondary out-of-view tiles.

  • platform/graphics/ca/mac/TileController.mm:

(WebCore::TileController::prepopulateRect):
Move the code to see if we already have the requisite tiles in the
primary coverage rect, as well as our call to updateTileCoverageMap,
out into prepopulateRect, to generalize ensureTilesForRect.

(WebCore::TileController::revalidateTiles):
Make use of ensureTilesForRect. The platformCALayerDidCreateTiles call will happen there, now.

(WebCore::TileController::ensureTilesForRect):
Make ensureTilesForRect return the rect that it created tiles for, and only put
tiles in a cohort if we're creating secondary tiles.

2:03 PM Changeset in webkit [154412] by timothy_horton@apple.com
  • 5 edits in trunk

isReplacementObscured is wrong when the indicator is clipped by an iframe
https://bugs.webkit.org/show_bug.cgi?id=120031
<rdar://problem/14606819>

Reviewed by Simon Fraser.

Hit-test for plugin obscurity in the root document. To do this, we also need
to convert the indicator rectangle into root view coordinates before
hit testing its edges.

This resolves the case where an iframe which clips its content was reporting
the indicator as not obscured, despite the fact that it was obscured from the
point of view of the user.

Updated test plugins/unavailable-plugin-indicator-obscurity.html

  • rendering/RenderEmbeddedObject.cpp:

(WebCore::RenderEmbeddedObject::isReplacementObscured):

Update the unavailable plugin indicator test to also ensure that plugins are
correctly known to be obscured when contained within and clipped by an <iframe>.

  • plugins/unavailable-plugin-indicator-obscurity-expected.txt:
  • plugins/unavailable-plugin-indicator-obscurity.html:
2:00 PM Changeset in webkit [154411] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

<https://webkit.org/b/120134> [Tools] lldb_webkit.py helpers is incorrectly printing 8bit Strings

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2013-08-21
Reviewed by Benjamin Poulain.

WTFString moved the is8bit bit by one in r152201.

  • lldb/lldb_webkit.py:

(WTFStringImplProvider.is_8bit):

1:58 PM Changeset in webkit [154410] by ap@apple.com
  • 2 edits in trunk/LayoutTests

https://bugs.webkit.org/show_bug.cgi?id=111650
REGRESSION (r143931): set-cookie-on-redirect.html still breaking subsequent tests

Reviewed by Brady Eidson.

Work around <rdar://problem/10080130> by making the cookie persistent, session
cookies are deleted in a way that confuses some code paths in CFNetwork.

I'll unskip tests later, with another cookie reliability fix.

  • http/tests/cookies/resources/set-cookie-on-redirect.php:
1:54 PM Changeset in webkit [154409] by akling@apple.com
  • 12 edits in trunk/Source

<https://webkit.org/b/120132> Frame::navigationScheduler() should return a reference.

Reviewed by Anders Carlzon.

Frame::m_navigationScheduler is an inline member, not a pointer.

1:53 PM Changeset in webkit [154408] by fpizlo@apple.com
  • 13 edits
    9 adds in trunk

Assertion failure in JSC::SlotVisitor::copyLater when marking JSDataView
https://bugs.webkit.org/show_bug.cgi?id=120099

Source/JavaScriptCore:

Reviewed by Mark Hahnenberg.

JSDataView should not store the ArrayBuffer* in the butterfly indexing header, since
JSDataView may have ordinary JS indexed properties.

  • runtime/ClassInfo.h:
  • runtime/JSArrayBufferView.cpp:

(JSC::JSArrayBufferView::ConstructionContext::ConstructionContext):
(JSC::JSArrayBufferView::finishCreation):

  • runtime/JSArrayBufferView.h:

(JSC::hasArrayBuffer):

  • runtime/JSArrayBufferViewInlines.h:

(JSC::JSArrayBufferView::buffer):
(JSC::JSArrayBufferView::neuter):
(JSC::JSArrayBufferView::byteOffset):

  • runtime/JSCell.cpp:

(JSC::JSCell::slowDownAndWasteMemory):

  • runtime/JSCell.h:
  • runtime/JSDataView.cpp:

(JSC::JSDataView::JSDataView):
(JSC::JSDataView::create):
(JSC::JSDataView::slowDownAndWasteMemory):

  • runtime/JSDataView.h:

(JSC::JSDataView::buffer):

  • runtime/JSGenericTypedArrayView.h:
  • runtime/JSGenericTypedArrayViewInlines.h:

(JSC::::visitChildren):
(JSC::::slowDownAndWasteMemory):

LayoutTests:

Reviewed by Mark Hahnenberg.

  • fast/js/regress/ArrayBuffer-DataView-alloc-large-long-lived-expected.txt: Added.
  • fast/js/regress/ArrayBuffer-DataView-alloc-large-long-lived.html: Added.
  • fast/js/regress/ArrayBuffer-DataView-alloc-long-lived-expected.txt: Added.
  • fast/js/regress/ArrayBuffer-DataView-alloc-long-lived.html: Added.
  • fast/js/regress/DataView-custom-properties-expected.txt: Added.
  • fast/js/regress/DataView-custom-properties.html: Added.
  • fast/js/regress/script-tests/ArrayBuffer-DataView-alloc-large-long-lived.js: Added.
  • fast/js/regress/script-tests/ArrayBuffer-DataView-alloc-long-lived.js: Added.
  • fast/js/regress/script-tests/DataView-custom-properties.js: Added.
  • platform/mac/TestExpectations:
1:31 PM Changeset in webkit [154407] by mhahnenberg@apple.com
  • 3 edits
    3 adds in trunk

Remove incorrect ASSERT from CopyVisitor::visitItem

Rubber stamped by Filip Pizlo.

Source/JavaScriptCore:

  • heap/CopyVisitorInlines.h:

(JSC::CopyVisitor::visitItem):

LayoutTests:

Added a new test that triggered the old ASSERT. It's a useful test to have because we create
TypedArrays with custom properties.

  • fast/js/regress/ArrayBuffer-Int8Array-alloc-large-long-lived-fragmented-expected.txt: Added.
  • fast/js/regress/ArrayBuffer-Int8Array-alloc-large-long-lived-fragmented.html: Added.
  • fast/js/regress/script-tests/ArrayBuffer-Int8Array-alloc-large-long-lived-fragmented.js: Added.
1:30 PM Changeset in webkit [154406] by timothy_horton@apple.com
  • 2 edits in trunk/Tools

Revert http://trac.webkit.org/changeset/154022, as it failed to update
a variety of scripts that depended on the old format.

See https://bugs.webkit.org/show_bug.cgi?id=120131 for one such example.

  • Scripts/prepare-ChangeLog:

(main):
(generateNewChangeLogs):

12:51 PM Changeset in webkit [154405] by barraclough@apple.com
  • 4 edits in trunk/Source/JavaScriptCore

https://bugs.webkit.org/show_bug.cgi?id=120127
Remove JSObject::propertyIsEnumerable

Reviewed by Sam Weinig.

This method is just a wart - it contains unnecessary const-casting, function call overhead, and LOC.

  • runtime/JSObject.cpp:
  • runtime/JSObject.h:
    • remove propertyIsEnumerable
  • runtime/ObjectPrototype.cpp:

(JSC::objectProtoFuncPropertyIsEnumerable):

  • Move implementation here using getOwnPropertyDescriptor directly.
12:50 PM Changeset in webkit [154404] by timothy_horton@apple.com
  • 6 edits
    2 deletes in trunk

REGRESSION(r154399): broke Mac ML debug WK1 tests > 50 crashes (Requested by thorton on #webkit).
https://bugs.webkit.org/show_bug.cgi?id=120129

Rolling out http://trac.webkit.org/changeset/154399.

  • rendering/RenderBlock.cpp:
  • rendering/RenderBlock.h:
  • rendering/RenderBlockLineLayout.cpp:

(WebCore::RenderBlock::LineBreaker::skipLeadingWhitespace):

  • rendering/RenderBox.h:
  • fast/block/margin-collapse/self-collapsing-block-with-float-descendant-expected.html: Removed.
  • fast/block/margin-collapse/self-collapsing-block-with-float-descendant.html: Removed.
12:43 PM Changeset in webkit [154403] by fpizlo@apple.com
  • 31 edits
    9 adds in trunk

DFG should inline new typedArray()
https://bugs.webkit.org/show_bug.cgi?id=120022

Source/JavaScriptCore:

Reviewed by Oliver Hunt.

Adds inlining of typed array allocations in the DFG. Any operation of the
form:

new foo(blah)


or:

foo(blah)


where 'foo' is a typed array constructor and 'blah' is exactly one argument,
is turned into the NewTypedArray intrinsic. Later, of child1 (i.e. 'blah')
is predicted integer, we generate inline code for an allocation. Otherwise
it turns into a call to an operation that behaves like the constructor would
if it was passed one argument (i.e. it may wrap a buffer or it may create a
copy or another array, or it may allocate an array of that length).

  • bytecode/SpeculatedType.cpp:

(JSC::speculationFromTypedArrayType):
(JSC::speculationFromClassInfo):

  • bytecode/SpeculatedType.h:
  • dfg/DFGAbstractInterpreterInlines.h:

(JSC::DFG::::executeEffects):

  • dfg/DFGBackwardsPropagationPhase.cpp:

(JSC::DFG::BackwardsPropagationPhase::propagate):

  • dfg/DFGByteCodeParser.cpp:

(JSC::DFG::ByteCodeParser::handleTypedArrayConstructor):
(JSC::DFG::ByteCodeParser::handleConstantInternalFunction):

  • dfg/DFGCCallHelpers.h:

(JSC::DFG::CCallHelpers::setupArgumentsWithExecState):

  • dfg/DFGCSEPhase.cpp:

(JSC::DFG::CSEPhase::putStructureStoreElimination):

  • dfg/DFGClobberize.h:

(JSC::DFG::clobberize):

  • dfg/DFGFixupPhase.cpp:

(JSC::DFG::FixupPhase::fixupNode):

  • dfg/DFGGraph.cpp:

(JSC::DFG::Graph::dump):

  • dfg/DFGNode.h:

(JSC::DFG::Node::hasTypedArrayType):
(JSC::DFG::Node::typedArrayType):

  • dfg/DFGNodeType.h:
  • dfg/DFGOperations.cpp:

(JSC::DFG::newTypedArrayWithSize):
(JSC::DFG::newTypedArrayWithOneArgument):

  • dfg/DFGOperations.h:

(JSC::DFG::operationNewTypedArrayWithSizeForType):
(JSC::DFG::operationNewTypedArrayWithOneArgumentForType):

  • dfg/DFGPredictionPropagationPhase.cpp:

(JSC::DFG::PredictionPropagationPhase::propagate):

  • dfg/DFGSafeToExecute.h:

(JSC::DFG::safeToExecute):

  • dfg/DFGSpeculativeJIT.cpp:

(JSC::DFG::SpeculativeJIT::compileNewTypedArray):

  • dfg/DFGSpeculativeJIT.h:

(JSC::DFG::SpeculativeJIT::callOperation):

  • dfg/DFGSpeculativeJIT32_64.cpp:

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

  • dfg/DFGSpeculativeJIT64.cpp:

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

  • jit/JITOpcodes.cpp:

(JSC::JIT::emit_op_new_object):

  • jit/JITOpcodes32_64.cpp:

(JSC::JIT::emit_op_new_object):

  • runtime/JSArray.h:

(JSC::JSArray::allocationSize):

  • runtime/JSArrayBufferView.h:

(JSC::JSArrayBufferView::allocationSize):

  • runtime/JSGenericTypedArrayViewConstructorInlines.h:

(JSC::constructGenericTypedArrayView):

  • runtime/JSObject.h:

(JSC::JSFinalObject::allocationSize):

  • runtime/TypedArrayType.cpp:

(JSC::constructorClassInfoForType):

  • runtime/TypedArrayType.h:

(JSC::indexToTypedArrayType):

LayoutTests:

Reviewed by Oliver Hunt.

  • fast/js/regress/Float64Array-alloc-long-lived-expected.txt: Added.
  • fast/js/regress/Float64Array-alloc-long-lived.html: Added.
  • fast/js/regress/Int16Array-alloc-long-lived-expected.txt: Added.
  • fast/js/regress/Int16Array-alloc-long-lived.html: Added.
  • fast/js/regress/Int8Array-alloc-long-lived-expected.txt: Added.
  • fast/js/regress/Int8Array-alloc-long-lived.html: Added.
  • fast/js/regress/script-tests/Float64Array-alloc-long-lived.js: Added.
  • fast/js/regress/script-tests/Int16Array-alloc-long-lived.js: Added.
  • fast/js/regress/script-tests/Int32Array-alloc-long-lived.js:
  • fast/js/regress/script-tests/Int8Array-alloc-long-lived.js: Added.
12:02 PM Changeset in webkit [154402] by timothy_horton@apple.com
  • 2 edits in trunk/LayoutTests

<https://webkit.org/b/120099> Assertion failure in JSC::SlotVisitor::copyLater when marking DataView

Mark fast/canvas/webgl/array-message-passing.html as crashing on debug, for now.

  • platform/mac/TestExpectations:
11:49 AM Changeset in webkit [154401] by akling@apple.com
  • 18 edits in trunk/Source

<https://webkit.org/b/120118> Frame::animation() should return a reference.

Reviewed by Anders Carlsson.

Frame::m_animationController is never null.
Also changed RenderObject::animation() to return a reference since it's just a wrapper
around RenderObject::frame()->animation() with no null checking of frame().

11:04 AM Changeset in webkit [154400] by Simon Fraser
  • 9 edits
    2 adds in trunk

Allow opacity to apply to custom scrollbars
https://bugs.webkit.org/show_bug.cgi?id=120104

Source/WebCore:

Reviewed by David Hyatt.

Opacity was ignored custom scrollbar pseudoelements because custom scrollbar
renderers never create layers, and opacity is normally handled by the RenderLayer code.

Fix by having RenderScrollbarTheme and RenderScrollbarPart do the transparency
layers necessary for opacity. RenderScrollbarPart handles opacity for individual
parts.

Because ScrollbarThemeComposite::paint() renders the parts on after another (with
no nesting), opacity handling for the entire scrollbar needs special-casing.
This is done by willPaintScrollbar()/didPaintScrollbar() on the theme.
RenderScrollbarTheme consults the opacity the scrollbar (which we get from
the ScrollbarBGPart renderer) to decide whether to set up a transparency layer.

Test: scrollbars/scrollbar-parts-opacity.html

  • platform/ScrollbarThemeComposite.cpp:

(WebCore::ScrollbarThemeComposite::paint):

  • platform/ScrollbarThemeComposite.h:

(WebCore::ScrollbarThemeComposite::willPaintScrollbar):
(WebCore::ScrollbarThemeComposite::didPaintScrollbar):

  • rendering/RenderScrollbar.cpp:

(WebCore::RenderScrollbar::opacity):

  • rendering/RenderScrollbar.h:
  • rendering/RenderScrollbarPart.cpp:

(WebCore::RenderScrollbarPart::paintIntoRect):

  • rendering/RenderScrollbarTheme.cpp:

(WebCore::RenderScrollbarTheme::willPaintScrollbar):
(WebCore::RenderScrollbarTheme::didPaintScrollbar):

  • rendering/RenderScrollbarTheme.h:

LayoutTests:

Reviewed by David Hyatt.

Ref test for custom scrollbars with opacity on the bar itself,
and on the thumb.

  • scrollbars/scrollbar-parts-opacity-expected.html: Added.
  • scrollbars/scrollbar-parts-opacity.html: Added.
11:03 AM Changeset in webkit [154399] by robert@webkit.org
  • 6 edits
    2 adds in trunk

REGRESSION(r127163): Respect clearance set on ancestors when placing floats
https://bugs.webkit.org/show_bug.cgi?id=119979

Reviewed by David Hyatt.

Source/WebCore:

If a float has a self-collapsing ancestor with clearance then it needs to respect
that clearance when placing itself on the line.

Test: fast/block/margin-collapse/self-collapsing-block-with-float-descendant.html

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::marginOffsetForSelfCollapsingBlock):

  • rendering/RenderBlock.h:
  • rendering/RenderBlockLineLayout.cpp:

(WebCore::RenderBlock::LineBreaker::skipLeadingWhitespace):

  • rendering/RenderBox.h:

(WebCore::RenderBox::previousInFlowSiblingBox):

LayoutTests:

  • fast/block/margin-collapse/self-collapsing-block-with-float-descendant-expected.html: Added.
  • fast/block/margin-collapse/self-collapsing-block-with-float-descendant.html: Added.
10:36 AM Changeset in webkit [154398] by Brent Fulgham
  • 2 edits in trunk/Tools

[Windows] Unreviewed gardening: WebInspector should always be enabled for WinLauncher.

  • WinLauncher/WinLauncher.cpp:

(setToDefaultPreferences): Activate Developer Extras on Release (as well as Debug) builds.

10:33 AM Changeset in webkit [154397] by Lucas Forschler
  • 2 edits in branches/safari-537-branch/Source/WebCore

Merged r154378. <rdar://problem/14765691>

10:25 AM Changeset in webkit [154396] by ap@apple.com
  • 3 edits in trunk/Source/WebKit2

REGRESSION (r145458?): WebProcess doesn't respect UI process localization
https://bugs.webkit.org/show_bug.cgi?id=120096

Reviewed by Darin Adler.

We used to get into a situation where CFBundle thought that we had no good localization,
and used one passed as default. This is never the case with mixed localizations,
so default is just ignored now.

I think that the previous behavior was a bit of a hack. As WebProcess is not localized,
it's more honest to say that we want mixed localizations, and force the language
to match UI process localization.

  • Shared/EntryPointUtilities/mac/LegacyProcess/ChildProcessEntryPoint.h: (WebKit::ChildProcessMain): Don't set default localization, it's not taken into consideration unless all other attempts to compute bundle localization fail.
  • UIProcess/Launcher/mac/ProcessLauncherMac.mm: (WebKit::createProcess): Pass UI process localization as -AppleLanguages argument, so that Core Foundation uses that instead of actual user languages. We want to match UI process localization.
10:19 AM Changeset in webkit [154395] by Brent Fulgham
  • 5 edits
    5 adds in trunk/Source

../WebInspectorUI: <http://webkit.org/b/120098> [Windows] Enable the New Web Inspector

Reviewed by Brian Weinstein.

Add a new project to copy files to the appropriate spots in the
Windows port.

  • WebInspectorUI.vcxproj: Added.
  • WebInspectorUI.vcxproj/WebInspectorUI.vcxproj: Added.
  • WebInspectorUI.vcxproj/WebInspectorUI.vcxproj.filters: Added.
  • WebInspectorUI.vcxproj/WebInspectorUIPostBuild.cmd: Added.
  • WebInspectorUI.vcxproj/WebInspectorUIPreBuild.cmd: Added.

../WebKit: <https://webkit.org/b/120098> [Windows] Enable the new Web Inspector

Reviewed by Brian Weinstein.

  • WebKit.vcxproj/WebKit.sln: Add reference to the new WebInspectorUI

project so that it will be included in new distributions.

../WebKit/win: <https://webkit.org/b/120098> [Windows] Enable the New Web Inspector

Reviewed by Brian Weinstein.

  • WebCoreSupport/WebInspectorClient.cpp:

(WebInspectorClient::openInspectorFrontend): Use the new inspector
if present in the WebKit distribution.
(WebInspectorFrontendClient::localizedStringsURL): Use the new
Web Inspector's localized strings (if present).

10:16 AM Changeset in webkit [154394] by Brent Fulgham
  • 2 edits in trunk/LayoutTests

[Windows] Unreviewed gardening. One more CSS_IMAGE_SET test can be activated.

  • platform/win/TestExpectations: We can reactivate cssom/cssvalue-comparison.html
10:15 AM Changeset in webkit [154393] by zandobersek@gmail.com
  • 2 edits in trunk/Tools

<https://webkit.org/b/120116> [GTK] Fix a typo in ActivateFontsGtk.cpp

Reviewed by Andreas Kling.

  • WebKitTestRunner/InjectedBundle/gtk/ActivateFontsGtk.cpp:

(WTR::initializeFontConfigSetting): Fix a typo - inititialize -> initialize.
(WTR::activateFonts): Ditto.

9:58 AM Changeset in webkit [154392] by Brent Fulgham
  • 2 edits in trunk/LayoutTests

<https://webkit.org/b/120113> Enable CSS_IMAGE_SET

Reviewed by Anders Carlsson.

  • platform/win/TestExpectations: Turn on two CSS_IMAGE_SET-based tests that

now pass on Windows.

9:56 AM Changeset in webkit [154391] by Brent Fulgham
  • 5 edits in trunk/Source/WebCore

<https://webkit.org/b/120113> [Windows] Enable CSS_IMAGE_SET

Reviewed by Anders Carlsson.

We can now activate:
fast/css/image-set-parsing.html
fast/css/image-set-parsing-invalid.html

  • WebCore.vcxproj/WebCore.vcxproj: Add missing image set implementation files.
  • WebCore.vcxproj/WebCore.vcxproj.filters: Ditto.
  • css/CSSAllInOne.cpp: Add missing CSSImageSetValue.cpp
  • rendering/style/StyleAllInOne.cpp: Add missing StyeCachedImageSet.cpp
9:54 AM Changeset in webkit [154390] by Brent Fulgham
  • 3 edits in trunk/WebKitLibraries

<https://webkit.org/b/120113> [Windows] Enable CSS_IMAGE_SET

Reviewed by Anders Carlsson.

  • win/tools/vsprops/FeatureDefines.props: Enable CSS_IMAGE_SET feature.
  • win/tools/vsprops/FeatureDefinesCairo.props: Ditto.
9:45 AM Changeset in webkit [154389] by robert@webkit.org
  • 3 edits in trunk/Source/WebCore

In RenderTableCell::paintCollapsedBorders() check surrounding cells using physical rather than logical direction
https://bugs.webkit.org/show_bug.cgi?id=120074

Reviewed by David Hyatt.

No new tests, covered by existing tests.

The functions cellAbove(), cellBelow() etc. check the logical rather than the physical direction but they're being
used to decide the painting of the physical borders of the cell. As we paint all four sides of every cell, and
the borders of adjoining cells twice over, this has no impact on painting currently but making the check consistent
in its treatment of physical and logical direction will help with webkit.org/b/119759 and make the code less confusing
to the next guy.

  • rendering/RenderTableCell.cpp:

(WebCore::RenderTableCell::cellAtLeft):
(WebCore::RenderTableCell::cellAtRight):
(WebCore::RenderTableCell::cellAtTop):
(WebCore::RenderTableCell::cellAtBottom):
(WebCore::RenderTableCell::paintCollapsedBorders):

  • rendering/RenderTableCell.h:
9:32 AM Changeset in webkit [154388] by commit-queue@webkit.org
  • 2 edits in trunk/Source/JavaScriptCore

<https://webkit.org/b/120106> Fix V_DFGOperation_EJPP signature in DFG.

Patch by Julien Brianceau <jbrianceau@nds.com> on 2013-08-21
Reviewed by Geoffrey Garen.

  • dfg/DFGOperations.h:
9:11 AM Changeset in webkit [154387] by commit-queue@webkit.org
  • 2 edits
    2 adds in trunk/Tools

[GTK] Suppress irrelevant or known leaks for Valgrind
https://bugs.webkit.org/show_bug.cgi?id=119448

Patch by Brian Holt <brian.holt@samsung.com> on 2013-08-21
Reviewed by Martin Robinson.

Add a suppressions file to suppress known leaks for Valgrind.
Valgrind also takes longer when using suppressions and
times out unless the driver timeout is increased.

  • Scripts/valgrind/suppressions.txt: Added.
  • Scripts/webkitpy/port/gtk.py:

(GtkPort.driver_stop_timeout):
(GtkPort.setup_environ_for_server):

9:00 AM Changeset in webkit [154386] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

<https://webkit.org/b/120109> [curl] only include WebCoreBundleWin on Windows

Patch by Róbert Sipka <sipka@inf.u-szeged.hu> on 2013-08-21
Reviewed by Brent Fulgham.

The WebCoreBundleWin is a windows specific file, it is only needed on Windows.

  • platform/network/curl/ResourceHandleManager.cpp:
7:23 AM Changeset in webkit [154385] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebCore

[Qt] Remove unused code path in PluginView
https://bugs.webkit.org/show_bug.cgi?id=113173

Patch by Jae Hyun Park <jae.park@company100.net> on 2013-08-21
Reviewed by Anders Carlsson.

m_platformLayer in PluginView has been removed in r121710, but there are
still some leftover code path related to m_platformLayer. This patch
removes unused code path.

No new tests, removing unused code paths.

  • plugins/PluginView.h:

(PluginView):

  • plugins/qt/PluginViewQt.cpp:

(WebCore::PluginView::updatePluginWidget):
(WebCore::PluginView::paint):

6:43 AM Changeset in webkit [154384] by allan.jensen@digia.com
  • 7 edits
    3 adds in trunk

Font’s fast code path doesn’t handle partial runs correctly when kerning or ligatures are enabled
https://bugs.webkit.org/show_bug.cgi?id=100050

Reviewed by Antti Koivisto.

Source/WebCore:

Always let WidthIterator iterate over an entire TextRun to avoid problems
with pixel rounding or shaping on partial runs.

This fix is necessary for Qt because the complex font-path can not disable
shaping, leading to the complex path painting slighly different from the
fast path, which messes up selection painting.

No change in functionality, no new tests.

  • platform/graphics/Font.cpp:

(WebCore::Font::drawText):
(WebCore::Font::drawEmphasisMarks):
(WebCore::Font::selectionRectForText):
(WebCore::Font::offsetForPosition):

  • platform/graphics/FontFastPath.cpp:

(WebCore::Font::getGlyphsAndAdvancesForSimpleText):
(WebCore::Font::selectionRectForSimpleText):
(WebCore::Font::offsetForPositionForSimpleText):

  • platform/graphics/GlyphBuffer.h:

(WebCore::GlyphBuffer::add):
(GlyphBuffer):

  • platform/graphics/WidthIterator.cpp:

(WebCore::WidthIterator::advanceInternal):

  • platform/graphics/WidthIterator.h:

(WidthIterator): Removed now unused advanceOneCharacter method.

LayoutTests:

  • fast/text/resources/PTS55F-webfont.ttf: Added.
  • fast/text/partial-textruns-expected.html: Added.
  • fast/text/partial-textruns.html: Added.
5:53 AM Changeset in webkit [154383] by tonikitoo@webkit.org
  • 4 edits
    2 adds in trunk

Harden RenderBox::canBeScrolledAndHasScrollableArea logic https://bugs.webkit.org/show_bug.cgi?id=104373

Reviewed by Simon Fraser.
Patch by Antonio Gomes <a1.gomes@sisa.samsung.com>

Source/WebCore:

Previously if a say div has a overflown content on 'y' but is
styled as "overflow-x: auto; overflow-y: hidden", RenderBox::canBeProgramaticallyScrolled
would still return true. It interfers, among other things, with the way
autoscroll works.

Patch fixes it by adding two helper methods to RenderBox class in order to verify a box'
scrollability in a given axis (x or y); They are used when checking if a given box is in
fact programatically scrollable.

Test: fast/events/autoscroll-overflow-hidden-longhands.html

WebKit autoscroll behavior now matches Firefox and Opera12 (pre-blink)
in that sense.

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::canBeProgramaticallyScrolled):

  • rendering/RenderBox.h:

(WebCore::RenderBox::hasScrollableOverflowX):
(WebCore::RenderBox::hasScrollableOverflowY):

LayoutTests:

Patch adds a test to ensure autoscrolling only happens on a given
axis if it is scrollable in that direction, according to its style.

  • fast/events/autoscroll-overflow-hidden-longhands-expected.txt: Added.
  • fast/events/autoscroll-overflow-hidden-longhands.html: Added.
5:52 AM Changeset in webkit [154382] by tonikitoo@webkit.org
  • 3 edits
    2 adds in trunk

Text dragging can scroll overflow:hidden boxes https://bugs.webkit.org/show_bug.cgi?id=119760

Reviewed by Darin Adler.
Patch by Antonio Gomes <a1.gomes@sisa.samsung.com>

Source/WebCore:

Consider the case of the following HTML:
<div style="overflow:hidden; width: 100px; height: 100px" >

<input id="input" type="text" size=10 value="any text here!"/>
<button style="position:relative; top: 100px; left: 100px"/>

</div>

If ones starts a text selection by dragging the mouse from within the input
field, and continues to drag beyong the outer div boundary, the latter will
be scrolled no matter its overflow:hidden style.
That happens because when the autoscroll has started, it gets propagated up
to the current layer's parent layer, instead of the to current layer's enclosing
scrollable layer.

Patch fixes the issue by hardening the way scrolling is
propagated upwards when autoscroll is being performed.

RenderLayer::enclosingScrollableLayer method also got rewritten
in terms of RenderLayer tree traversing, instead of RenderObject tree.
The rewrite adds support for cross frame upwards traversal.

Test: fast/events/autoscroll-upwards-propagation.html

  • rendering/RenderLayer.cpp:

(WebCore::parentLayerCrossFrame):
(WebCore::RenderLayer::enclosingScrollableLayer):
(WebCore::RenderLayer::scrollRectToVisible):

LayoutTests:

  • fast/events/autoscroll-upwards-propagation-expected.txt: Added.
  • fast/events/autoscroll-upwards-propagation.html: Added.
2:24 AM Changeset in webkit [154381] by allan.jensen@digia.com
  • 2 edits in trunk/Source/WTF

Disable maybe-uninitialized warning in GCC 4.8
https://bugs.webkit.org/show_bug.cgi?id=119835

Reviewed by Anders Carlsson.

Disable the maybe-uninitialized warning.

  • wtf/Compiler.h:
12:03 AM Changeset in webkit [154380] by zandobersek@gmail.com
  • 2 edits in trunk/Source/WebKit/gtk

<https://webkit.org/b/119836> [GTK] ChromeClient::paint is susceptible to system time changes

Reviewed by Martin Robinson.

Instead of using WTF::currentTime() as the value of the last display occurrence,
WTF::monotonicallyIncreasingTime() should be used. The latter is not affected by
the changes is the system's time, which can cause a halt in the display updating.

  • WebCoreSupport/ChromeClientGtk.cpp:

(WebKit::ChromeClient::paint):

Aug 20, 2013:

11:06 PM Changeset in webkit [154379] by barraclough@apple.com
  • 4 edits in trunk/LayoutTests

https://bugs.webkit.org/show_bug.cgi?id=120086
REGRESSION (r154300): http/tests/security/cross-frame-access-getOwnPropertyDescriptor is failing or crashing on the bots

Reviewed by Geoff Garen.

Previously we allowed cross-frame access to these properties, but hid the descriptors.
Now we allow access, but make them read-only, non-configurable.

  • http/tests/security/cross-frame-access-getOwnPropertyDescriptor-expected.txt:
  • http/tests/security/cross-frame-access-getOwnPropertyDescriptor.html:
  • platform/mac/TestExpectations:
    • Update test/results/expectations.
9:01 PM Changeset in webkit [154378] by jer.noble@apple.com
  • 2 edits in trunk/Source/WebCore

<https://webkit.org/b/120101> [Mac] Suspended HTMLMediaElements can still hold power assertion after playback stops.

Reviewed by Eric Carlson.

Call updateDisplaySleep() when we clear our MediaPlayer, as doing so may kill any in-flight
rateChanged() notifications.

  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::clearMediaPlayer):
(WebCore::HTMLMediaElement::stop):

4:52 PM Changeset in webkit [154377] by fpizlo@apple.com
  • 3 edits in trunk/LayoutTests

fast/js/regress/emscripten-cube2hash is failing on all the Mac bots
https://bugs.webkit.org/show_bug.cgi?id=120083

Unreviewed.

Fixed the test to work in web mode and removed the failure expectation.

  • fast/js/regress/script-tests/emscripten-cube2hash.js:

(else.Module.string_appeared_here):

  • platform/mac/TestExpectations:
4:50 PM Changeset in webkit [154376] by fpizlo@apple.com
  • 2 edits
    3 adds in trunk/LayoutTests

Add emscripten memops benchmark.

Rubber stamped by Oliver Hunt.

  • TestExpectations:
  • fast/js/regress/emscripten-memops-expected.txt: Added.
  • fast/js/regress/emscripten-memops.html: Added.
  • fast/js/regress/script-tests/emscripten-memops.js: Added.

(.Module.string_appeared_here):
(else.Module.string_appeared_here):
(else.else.Module.string_appeared_here):
(else.else):
(globalEval):
(Runtime.stackSave):
(Runtime.stackRestore):
(Runtime.forceAlign):
(Runtime.isNumberType):
(Runtime.isPointerType):
(Runtime.isStructType):
(or64):
(and64):
(xor64):
(getNativeTypeSize):
(getNativeFieldSize):
(dedup):
(.set var):
(getAlignSize):
(calculateStructAlignment):
(.else.alignment):
(generateStructInfo):
(dynCall):
(addFunction):
(removeFunction):
(warnOnce):
(.Runtime.funcWrappers.func):
(getFuncWrapper):
(UTF8Processor.this.processCChar):
(UTF8Processor.this.processJSString):
(UTF8Processor):
(stackAlloc):
(staticAlloc):
(dynamicAlloc):
(alignMemory):
(makeBigInt):
(assert):
(ccall):
(getCFunc):
(.toC):
(.fromC):
(ccallFunc):
(setValue):
(getValue):
(.set else):
(.set return):
(allocate):
(Pointer_stringify):
(alignMemoryPage):
(enlargeMemory):
(callRuntimeCallbacks):
(preRun):
(ensureInitRuntime):
(preMain):
(exitRuntime):
(postRun):
(addOnPreRun):
(addOnInit):
(addOnPreMain):
(addOnExit):
(addOnPostRun):
(intArrayFromString):
(intArrayToString):
(writeStringToMemory):
(writeArrayToMemory):
(unSign):
(reSign):
(Math.string_appeared_here):
(addRunDependency):
(removeRunDependency):
(loadMemoryInitializer.applyData):
(loadMemoryInitializer.set addOnPreRun):
(ATINIT.push):
(STATIC_BASE):
(copyTempDouble):
(_setErrNo):
(PATH.splitPath):
(PATH.normalizeArray):
(PATH.normalize.join):
(PATH.normalize):
(PATH.dirname):
(PATH.basename):
(PATH.join):
(PATH.trim):
(PATH.relative):
(TTY.register):
(TTY.stream_ops.open):
(TTY.stream_ops.close):
(TTY.stream_ops.read):
(TTY.stream_ops.write):
(TTY.default_tty_ops.get_char):
(TTY.default_tty_ops.put_char):
(TTY.default_tty1_ops.put_char):
(MEMFS.mount):
(MEMFS.create_node):
(MEMFS.node_ops.getattr):
(MEMFS.node_ops.setattr):
(MEMFS.node_ops.lookup):
(MEMFS.node_ops.mknod):
(MEMFS.node_ops.rename):
(MEMFS.node_ops.unlink):
(MEMFS.node_ops.rmdir):
(MEMFS.node_ops.readdir):
(MEMFS.node_ops.symlink):
(MEMFS.node_ops.readlink):
(MEMFS.stream_ops.set else):
(MEMFS.stream_ops.read):
(MEMFS.stream_ops.write):
(MEMFS.stream_ops.llseek):
(MEMFS.stream_ops.allocate):
(MEMFS.stream_ops.set return):
(MEMFS.stream_ops.mmap):
(_fflush):
(FS.ErrnoError):
(FS.handleFSError):
(FS.hashName):
(FS.hashAddNode):
(FS.hashRemoveNode):
(FS.lookupNode):
(FS.):
(FS.destroyNode):
(FS.isRoot):
(FS.isMountpoint):
(FS.isFile):
(FS.isDir):
(FS.isLink):
(FS.isChrdev):
(FS.isBlkdev):
(FS.isFIFO):
(FS.cwd):
(FS.var):
(FS.lookupPath):
(FS.getPath):
(FS.modeStringToFlags):
(FS.flagsToPermissionString):
(FS.nodePermissions):
(FS.mayLookup):
(FS.mayMknod):
(FS.mayCreate):
(FS.mayDelete):
(FS.mayOpen):
(FS.chrdev_stream_ops.open):
(FS.chrdev_stream_ops.llseek):
(FS.major):
(FS.minor):
(FS.makedev):
(FS.registerDevice):
(FS.getDevice):
(FS.nextfd):
(FS.getStream):
(FS.closeStream):
(FS.getMode):
(FS.joinPath):
(FS.absolutePath):
(FS.standardizePath):
(FS.findObject):
(FS.analyzePath):
(FS.createFolder):
(FS.createPath):
(FS.createFile):
(FS.createDataFile):
(FS.createDevice):
(FS.createLink):
(FS.forceLoadFile):
(FS.LazyUint8Array):
(FS.LazyUint8Array.prototype.get if):
(FS.LazyUint8Array.prototype):
(FS.LazyUint8Array.prototype.setDataGetter):
(FS.LazyUint8Array.prototype.cacheLength.doXHR):
(FS.LazyUint8Array.prototype.cacheLength):
(FS.get Object):
(FS.get var):
(FS.keys.forEach):
(FS.processData.finish):
(FS.processData):
(FS.else):
(FS.createPreloadedFile):
(FS.createDefaultDirectories):
(FS.createDefaultDevices.):
(FS.createDefaultDevices):
(FS.createStandardStreams):
(FS.staticInit):
(FS.init):
(FS.quit):
(FS.mount):
(FS.lookup):
(FS.mknod):
(FS.create):
(FS.mkdir):
(FS.mkdev):
(FS.symlink):
(FS.rename):
(FS.rmdir):
(FS.readdir):
(FS.unlink):
(FS.readlink):
(FS.stat):
(FS.lstat):
(FS.chmod):
(FS.lchmod):
(FS.fchmod):
(FS.chown):
(FS.lchown):
(FS.fchown):
(FS.truncate):
(FS.ftruncate):
(FS.utime):
(FS.open):
(FS.close):
(FS.llseek):
(FS.read):
(FS.write):
(FS.allocate):
(FS.mmap):
(_send):
(_pwrite):
(_write):
(_fwrite):
(
reallyNegative):
(.getNextArg):
(.switch.case.string_appeared_here.case.string_appeared_here.case.string_appeared_here.case.string_appeared_here.case.string_appeared_here.case.string_appeared_here.case.string_appeared_here.break):
(.switch.case.string_appeared_here.case.string_appeared_here.case.string_appeared_here.case.string_appeared_here.case.string_appeared_here.case.string_appeared_here.break):
(_fprintf):
(_printf):
(_abort):
(_errno_location):
(_sbrk.Runtime.dynamicAlloc):
(_sbrk):
(_sysconf):
(_time):
(Browser.mainLoop.pause):
(Browser.mainLoop.resume):
(Browser.mainLoop.updateStatus):
(Browser.init.imagePlugin.string_appeared_here):
(Browser.init.img.onload):
(Browser.init.img.onerror):
(Browser.init.audioPlugin.string_appeared_here):
(Browser.init.finish):
(Browser.init.fail):
(Browser.init.audio.onerror.encode64):
(Browser.init.audio.onerror):
(Browser.init.audio):
(Browser.init.else):
(Browser.init.pointerLockChange):
(Browser.init.canvas):
(Browser.init):
(Browser.destroyContext):
(Browser.fullScreenChange):
(Browser.requestFullScreen):
(Browser.requestAnimationFrame):
(Browser.safeRequestAnimationFrame):
(Browser.safeSetTimeout):
(Browser.safeSetInterval):
(Browser.getMimetype):
(Browser.getUserMedia):
(Browser.getMovementX):
(Browser.getMovementY):
(Browser.calculateMouseEvent):
(Browser.xhr.onload):
(Browser.xhrLoad):
(Browser.updateResizeListeners):
(Browser.setCanvasSize):
(Browser.setFullScreenCanvasSize):
(Browser.setWindowedCanvasSize):
(
ATINIT.unshift):
(
ATMAIN.push):
(
ATEXIT.push):
(Module.string_appeared_here):
(invoke_ii):
(invoke_v):
(invoke_iii):
(invoke_vi):
(asmPrintInt):
(asmPrintFloat):
(asm):
(Runtime.stackAlloc):
(ExitStatus):
(Module.string_appeared_here.Module.callMain.callMain.pad):
(Module.string_appeared_here.Module.callMain):
(run.doRun):
(run.else):
(run):
(exit):
(abort):

4:49 PM Changeset in webkit [154375] by gyuyoung.kim@samsung.com
  • 8 edits in trunk/Source/WebCore

<https://webkit.org/b/92330> [CSS] Pass an image orientation data to drawImage()

Reviewed by Beth Dakin.

In support of ongoing css3-images image-orientation implementation. This patch passes
an imageOrientationDescription object to drawImage() function as a argument. The drawImage()
can know information of image orientation by the argument.

Spec: http://www.w3.org/TR/2012/CR-css3-images-20120417/#the-image-orientation

  • html/HTMLCanvasElement.cpp:

(WebCore::HTMLCanvasElement::paint):

  • html/canvas/CanvasRenderingContext2D.cpp:

(WebCore::CanvasRenderingContext2D::drawImage):
(WebCore::drawImageToContext):

  • platform/graphics/ImageOrientation.h: Add setter functions.

(WebCore::ImageOrientationDescription::setRespectImageOrientation):
(WebCore::ImageOrientationDescription::setImageOrientationEnum):

  • platform/graphics/texmap/TextureMapperImageBuffer.cpp:

(WebCore::BitmapTextureImageBuffer::updateContents):

  • rendering/RenderBoxModelObject.cpp:

(WebCore::RenderBoxModelObject::paintNinePieceImage):

  • rendering/RenderImage.cpp:

(WebCore::RenderImage::paintReplaced):
(WebCore::RenderImage::paintIntoRect):

  • rendering/RenderSnapshottedPlugIn.cpp:

(WebCore::RenderSnapshottedPlugIn::paintSnapshot):

4:47 PM Changeset in webkit [154374] by Seokju Kwon
  • 2 edits in trunk/LayoutTests

Unreviewed gardening. Rebaseline after r154372.

  • platform/qt-mac/TestExpectations: fast/css/giant-stylesheet-crash.html was removed.
4:46 PM Changeset in webkit [154373] by barraclough@apple.com
  • 111 edits in trunk/Source

https://bugs.webkit.org/show_bug.cgi?id=120093
Remove getOwnPropertyDescriptor trap

Reviewed by Geoff Garen.

All implementations of this method are now called via the method table, and equivalent in behaviour.
Remove all duplicate implementations (and the method table trap), and add a single member function implementation on JSObject.

Source/JavaScriptCore:

  • API/JSCallbackObject.h:
  • API/JSCallbackObjectFunctions.h:
  • debugger/DebuggerActivation.cpp:
  • debugger/DebuggerActivation.h:
  • runtime/Arguments.cpp:
  • runtime/Arguments.h:
  • runtime/ArrayConstructor.cpp:
  • runtime/ArrayConstructor.h:
  • runtime/ArrayPrototype.cpp:
  • runtime/ArrayPrototype.h:
  • runtime/BooleanPrototype.cpp:
  • runtime/BooleanPrototype.h:
    • remove getOwnPropertyDescriptor
  • runtime/ClassInfo.h:
    • remove getOwnPropertyDescriptor from MethodTable
  • runtime/DateConstructor.cpp:
  • runtime/DateConstructor.h:
  • runtime/DatePrototype.cpp:
  • runtime/DatePrototype.h:
  • runtime/ErrorPrototype.cpp:
  • runtime/ErrorPrototype.h:
  • runtime/JSActivation.cpp:
  • runtime/JSActivation.h:
  • runtime/JSArray.cpp:
  • runtime/JSArray.h:
  • runtime/JSArrayBuffer.cpp:
  • runtime/JSArrayBuffer.h:
  • runtime/JSArrayBufferView.cpp:
  • runtime/JSArrayBufferView.h:
  • runtime/JSCell.cpp:
  • runtime/JSCell.h:
  • runtime/JSDataView.cpp:
  • runtime/JSDataView.h:
  • runtime/JSDataViewPrototype.cpp:
  • runtime/JSDataViewPrototype.h:
  • runtime/JSFunction.cpp:
  • runtime/JSFunction.h:
  • runtime/JSGenericTypedArrayView.h:
  • runtime/JSGenericTypedArrayViewInlines.h:
  • runtime/JSGlobalObject.cpp:
  • runtime/JSGlobalObject.h:
  • runtime/JSNotAnObject.cpp:
  • runtime/JSNotAnObject.h:
  • runtime/JSONObject.cpp:
  • runtime/JSONObject.h:
    • remove getOwnPropertyDescriptor
  • runtime/JSObject.cpp:

(JSC::JSObject::propertyIsEnumerable):

  • switch to call new getOwnPropertyDescriptor member function

(JSC::JSObject::getOwnPropertyDescriptor):

  • new, based on imlementation from GET_OWN_PROPERTY_DESCRIPTOR_IMPL

(JSC::JSObject::defineOwnNonIndexProperty):

  • switch to call new getOwnPropertyDescriptor member function
  • runtime/JSObject.h:
  • runtime/JSProxy.cpp:
  • runtime/JSProxy.h:
  • runtime/NamePrototype.cpp:
  • runtime/NamePrototype.h:
  • runtime/NumberConstructor.cpp:
  • runtime/NumberConstructor.h:
  • runtime/NumberPrototype.cpp:
  • runtime/NumberPrototype.h:
    • remove getOwnPropertyDescriptor
  • runtime/ObjectConstructor.cpp:

(JSC::objectConstructorGetOwnPropertyDescriptor):
(JSC::objectConstructorSeal):
(JSC::objectConstructorFreeze):
(JSC::objectConstructorIsSealed):
(JSC::objectConstructorIsFrozen):

  • switch to call new getOwnPropertyDescriptor member function
  • runtime/ObjectConstructor.h:
    • remove getOwnPropertyDescriptor
  • runtime/PropertyDescriptor.h:
    • remove GET_OWN_PROPERTY_DESCRIPTOR_IMPL
  • runtime/RegExpConstructor.cpp:
  • runtime/RegExpConstructor.h:
  • runtime/RegExpMatchesArray.cpp:
  • runtime/RegExpMatchesArray.h:
  • runtime/RegExpObject.cpp:
  • runtime/RegExpObject.h:
  • runtime/RegExpPrototype.cpp:
  • runtime/RegExpPrototype.h:
  • runtime/StringConstructor.cpp:
  • runtime/StringConstructor.h:
  • runtime/StringObject.cpp:
  • runtime/StringObject.h:
    • remove getOwnPropertyDescriptor

Source/WebCore:

  • WebCore.exp.in:
  • bindings/js/JSDOMWindowCustom.cpp:
  • bindings/scripts/CodeGeneratorJS.pm:

(GenerateHeader):
(GenerateImplementation):
(GenerateConstructorDeclaration):
(GenerateConstructorHelperMethods):

  • bindings/scripts/test/JS/JSTestActiveDOMObject.cpp:
  • bindings/scripts/test/JS/JSTestActiveDOMObject.h:
  • bindings/scripts/test/JS/JSTestCustomNamedGetter.cpp:
  • bindings/scripts/test/JS/JSTestCustomNamedGetter.h:
  • bindings/scripts/test/JS/JSTestEventConstructor.cpp:
  • bindings/scripts/test/JS/JSTestEventConstructor.h:
  • bindings/scripts/test/JS/JSTestEventTarget.cpp:
  • bindings/scripts/test/JS/JSTestEventTarget.h:
  • bindings/scripts/test/JS/JSTestException.cpp:
  • bindings/scripts/test/JS/JSTestException.h:
  • bindings/scripts/test/JS/JSTestInterface.cpp:
  • bindings/scripts/test/JS/JSTestInterface.h:
  • bindings/scripts/test/JS/JSTestMediaQueryListListener.cpp:
  • bindings/scripts/test/JS/JSTestMediaQueryListListener.h:
  • bindings/scripts/test/JS/JSTestNamedConstructor.cpp:
  • bindings/scripts/test/JS/JSTestNamedConstructor.h:
  • bindings/scripts/test/JS/JSTestNode.cpp:
  • bindings/scripts/test/JS/JSTestNode.h:
  • bindings/scripts/test/JS/JSTestObj.cpp:
  • bindings/scripts/test/JS/JSTestObj.h:
  • bindings/scripts/test/JS/JSTestOverloadedConstructors.cpp:
  • bindings/scripts/test/JS/JSTestOverloadedConstructors.h:
  • bindings/scripts/test/JS/JSTestSerializedScriptValueInterface.cpp:
  • bindings/scripts/test/JS/JSTestSerializedScriptValueInterface.h:
  • bindings/scripts/test/JS/JSTestTypedefs.cpp:
  • bindings/scripts/test/JS/JSTestTypedefs.h:
  • bridge/jsc/BridgeJSC.h:

(JSC::Bindings::Instance::getOwnPropertySlot):

  • bridge/objc/objc_runtime.h:
  • bridge/objc/objc_runtime.mm:
  • bridge/runtime_array.cpp:
  • bridge/runtime_array.h:
  • bridge/runtime_method.cpp:
  • bridge/runtime_method.h:
  • bridge/runtime_object.cpp:
  • bridge/runtime_object.h:
    • remove getOwnPropertyDescriptor

Source/WebKit2:

  • WebProcess/Plugins/Netscape/JSNPObject.cpp:
  • WebProcess/Plugins/Netscape/JSNPObject.h:
    • remove getOwnPropertyDescriptor
3:55 PM Changeset in webkit [154372] by rniwa@webkit.org
  • 1 edit
    2 deletes in trunk/LayoutTests

<https://webkit.org/b/120095> Delete fast/css/giant-stylesheet-crash.html since it flakily timeout or crash

Reviewed by Antti Koivisto.

Deleted the test. This test was added in r82054 but it has been crashing since r154242.

Since our expected behavior is to crash at the moment, this test's description doesn't even match
the expected behavior anymore. Furthermore, it intermittently times out due to DRT taking too long to
allocate memory before it can crash.

  • fast/css/giant-stylesheet-crash-expected.txt: Removed.
  • fast/css/giant-stylesheet-crash.html: Removed.
3:52 PM Changeset in webkit [154371] by Antti Koivisto
  • 63 edits in trunk/Source/WebCore

<https://webkit.org/b/120071> Replace NodeRenderingContext with Node* as childShouldCreateRenderer() argument

Reviewed by Darin Adler.

This simplifies the code. NodeRenderingContext was basically only used for getting the Node.

  • dom/ContainerNode.h:

(WebCore::ContainerNode::childShouldCreateRenderer):

  • dom/Element.cpp:

(WebCore::Element::childShouldCreateRenderer):

  • dom/Element.h:
  • dom/NodeRenderingContext.cpp:

(WebCore::NodeRenderingContext::shouldCreateRenderer):

  • dom/NodeRenderingContext.h:


Move isOnEncapsulationBoundary() to InsertionPoint.h and call it hasShadowRootOrActiveInsertionPointParent().
Move isOnUpperEncapsulationBoundary() to ShadowRoot.h and call it hasShadowRootParent().

  • dom/ShadowRoot.h:

(WebCore::hasShadowRootParent):

  • html/HTMLDetailsElement.cpp:

(WebCore::HTMLDetailsElement::childShouldCreateRenderer):

  • html/HTMLDetailsElement.h:
  • html/HTMLFormControlElement.cpp:

(WebCore::HTMLFormControlElement::validationMessageShadowTreeContains):

  • html/HTMLFormControlElement.h:
  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::childShouldCreateRenderer):

  • html/HTMLMediaElement.h:
  • html/HTMLMeterElement.cpp:

(WebCore::HTMLMeterElement::childShouldCreateRenderer):

  • html/HTMLMeterElement.h:
  • html/HTMLOptGroupElement.h:

(WebCore::isHTMLOptGroupElement):

  • html/HTMLOptionElement.h:

(WebCore::isHTMLOptionElement):

  • html/HTMLProgressElement.cpp:

(WebCore::HTMLProgressElement::childShouldCreateRenderer):

  • html/HTMLProgressElement.h:
  • html/HTMLSelectElement.cpp:

(WebCore::HTMLSelectElement::childShouldCreateRenderer):

  • html/HTMLSelectElement.h:
  • html/HTMLSummaryElement.cpp:

(WebCore::HTMLSummaryElement::childShouldCreateRenderer):

  • html/HTMLSummaryElement.h:
  • html/HTMLTextFormControlElement.cpp:

(WebCore::HTMLTextFormControlElement::childShouldCreateRenderer):
(WebCore::enclosingTextFormControl):

  • html/HTMLTextFormControlElement.h:
  • html/ValidationMessage.cpp:

(WebCore::ValidationMessage::shadowTreeContains):

  • html/ValidationMessage.h:
  • html/shadow/InsertionPoint.cpp:

(WebCore::InsertionPoint::rendererIsNeeded):

  • html/shadow/InsertionPoint.h:

(WebCore::isActiveInsertionPoint):

Remove isShadowBoundary() as it was equivalent to isActive().
Remove isLowerEncapsulationBoundary() as it was equivalent to isActiveInsertionPoint().

(WebCore::hasShadowRootOrActiveInsertionPointParent):

Moved and renamed from NodeRenderingContext::isOnEncapsulationBoundary().

  • svg/SVGAElement.cpp:

(WebCore::SVGAElement::childShouldCreateRenderer):

  • svg/SVGAElement.h:
  • svg/SVGAltGlyphElement.cpp:

(WebCore::SVGAltGlyphElement::childShouldCreateRenderer):

  • svg/SVGAltGlyphElement.h:
  • svg/SVGDocument.cpp:

(WebCore::SVGDocument::childShouldCreateRenderer):

  • svg/SVGDocument.h:
  • svg/SVGElement.cpp:

(WebCore::SVGElement::childShouldCreateRenderer):

  • svg/SVGElement.h:
  • svg/SVGFilterElement.cpp:

(WebCore::SVGFilterElement::childShouldCreateRenderer):

  • svg/SVGFilterElement.h:
  • svg/SVGFilterPrimitiveStandardAttributes.h:
  • svg/SVGForeignObjectElement.cpp:

(WebCore::SVGForeignObjectElement::childShouldCreateRenderer):

  • svg/SVGForeignObjectElement.h:
  • svg/SVGSVGElement.h:

(WebCore::toSVGSVGElement):

  • svg/SVGSwitchElement.cpp:

(WebCore::SVGSwitchElement::childShouldCreateRenderer):

  • svg/SVGSwitchElement.h:
  • svg/SVGTRefElement.cpp:

(WebCore::SVGTRefElement::childShouldCreateRenderer):

  • svg/SVGTRefElement.h:
  • svg/SVGTSpanElement.cpp:

(WebCore::SVGTSpanElement::childShouldCreateRenderer):

  • svg/SVGTSpanElement.h:
  • svg/SVGTextElement.cpp:

(WebCore::SVGTextElement::childShouldCreateRenderer):

  • svg/SVGTextElement.h:
  • svg/SVGTextPathElement.cpp:

(WebCore::SVGTextPathElement::childShouldCreateRenderer):

  • svg/SVGTextPathElement.h:
3:43 PM Changeset in webkit [154370] by benjamin@webkit.org
  • 3 edits in trunk/Source/WebCore

<https://webkit.org/b/120050> Don't bother using a Vector for the ouput of querySelector, just return the first element found

Reviewed by Ryosuke Niwa.

Simplify the case of querySelector. Instead of using the same output type as querySelectorAll,
simply use a trait to define what to do in the loop.

  • dom/SelectorQuery.cpp:

(WebCore::AllElementExtractorSelectorQueryTrait::appendOutputForElement):
(WebCore::SelectorDataList::queryAll):
(WebCore::SingleElementExtractorSelectorQueryTrait::appendOutputForElement):
(WebCore::SelectorDataList::queryFirst):
(WebCore::SelectorDataList::executeFastPathForIdSelector):
(WebCore::elementsForLocalName):
(WebCore::anyElement):
(WebCore::SelectorDataList::executeSingleTagNameSelectorData):
(WebCore::SelectorDataList::executeSingleClassNameSelectorData):
(WebCore::SelectorDataList::executeSingleSelectorData):
(WebCore::SelectorDataList::executeSingleMultiSelectorData):
(WebCore::SelectorDataList::execute):

  • dom/SelectorQuery.h:
3:37 PM Changeset in webkit [154369] by Lucas Forschler
  • 5 edits in branches/safari-537-branch/Source/WebKit2

Merged r154302. <rdar://problem/14736960>

3:32 PM Changeset in webkit [154368] by achristensen@apple.com
  • 2 edits in trunk/Tools

[Windows] Linking fix for Win64.

Rubberstamped by Brent Fulgham.

  • win/DLLLauncher/DLLLauncherMain.cpp:

(wWinMain): Corrected 64-bit linker symbol for dllLauncherEntryPoint.

3:25 PM Changeset in webkit [154367] by Brent Fulgham
  • 2 edits in trunk/Tools

<https://webkit.org/b/120090> Report better error messages from WinLauncher/DRT

Reviewed by Tim Horton.

  • win/DLLLauncher/DLLLauncherMain.cpp:

(getLastErrorString): New method to convert GetLastError to text.
(wWinMain): Use new error formatter to provide useful diagnostic text to user.

3:17 PM Changeset in webkit [154366] by mhahnenberg@apple.com
  • 5 edits in trunk/Source/JavaScriptCore

<https://webkit.org/b/120079> Flattening a dictionary can cause CopiedSpace corruption

Reviewed by Oliver Hunt.

When we flatten an object in dictionary mode, we compact its properties. If the object
had out-of-line storage in the form of a Butterfly prior to this compaction, and after
compaction its properties fit inline, the object's Structure "forgets" that the object
has a non-zero Butterfly pointer. During GC, we check the Butterfly and reportLiveBytes
with bytes = 0, which causes all sorts of badness in CopiedSpace.

Instead, after we flatten a dictionary, if properties fit inline we should clear the
Butterfly pointer so that the GC doesn't get confused later.

This patch does this clearing, and it also adds JSObject::checkStructure, which overrides
JSCell::checkStructure to add an ASSERT that makes sure that the Structure being assigned
agrees with the whether or not the object has a Butterfly. Also added an ASSERT to check
that the number of bytes reported to SlotVisitor::copyLater is non-zero.

  • heap/SlotVisitorInlines.h:

(JSC::SlotVisitor::copyLater):

  • runtime/JSObject.cpp:

(JSC::JSObject::notifyPresenceOfIndexedAccessors):
(JSC::JSObject::convertUndecidedToInt32):
(JSC::JSObject::convertUndecidedToDouble):
(JSC::JSObject::convertUndecidedToContiguous):
(JSC::JSObject::convertInt32ToDouble):
(JSC::JSObject::convertInt32ToContiguous):
(JSC::JSObject::genericConvertDoubleToContiguous):
(JSC::JSObject::switchToSlowPutArrayStorage):
(JSC::JSObject::setPrototype):
(JSC::JSObject::putDirectAccessor):
(JSC::JSObject::seal):
(JSC::JSObject::freeze):
(JSC::JSObject::preventExtensions):
(JSC::JSObject::reifyStaticFunctionsForDelete):
(JSC::JSObject::removeDirect):

  • runtime/JSObject.h:

(JSC::JSObject::setButterfly):
(JSC::JSObject::putDirectInternal):
(JSC::JSObject::setStructure):
(JSC::JSObject::setStructureAndReallocateStorageIfNecessary):

  • runtime/Structure.cpp:

(JSC::Structure::flattenDictionaryStructure):

3:16 PM Changeset in webkit [154365] by Antti Koivisto
  • 53 edits in trunk/Source/WebCore

Rollout the previous patch for landing with the correct ChangeLog.

3:12 PM Changeset in webkit [154364] by zhajiang@rim.com
  • 2 edits in trunk/Source/WebCore

013-08-20 Jacky Jiang <zhajiang@blackberry.com>

<https://webkit.org/b/120082> [BlackBerry] Remove unused previousTextureRect in LayerTiler

Patch by Jacky Jiang <zhajiang@blackberry.com> on 2013-08-20
Reviewed by Rob Buis.
Internally reviewed by Mike Lattanzio and Jakob Petsovits.

  • platform/graphics/blackberry/LayerTiler.cpp:

(WebCore::LayerTiler::updateTextureContentsIfNeeded):

3:08 PM Changeset in webkit [154363] by achristensen@apple.com
  • 2 edits in trunk/Source/WebKit

[Windows] Unreviewed build fix for Win64 after r154118.

  • WebKit.vcxproj/WebKitExportGenerator/WebKitExports.def.in:
3:03 PM Changeset in webkit [154362] by achristensen@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Compile fix for Win64 after r154156.

Rubber stamped by Oliver Hunt.

  • jit/JITStubsMSVC64.asm:

Renamed ctiVMThrowTrampolineSlowpath to ctiVMHandleException and
cti_vm_throw_slowpath to cti_vm_handle_exception.

2:58 PM Changeset in webkit [154361] by Antti Koivisto
  • 53 edits in trunk/Source/WebCore

<https://webkit.org/b/120078> Replace NodeRenderingContext with RenderStyle& as shouldCreateRenderer() argument

Reviewed by Darin Adler.

This simplifies the code. NodeRenderingContext was only used for getting the RenderStyle.

  • dom/Element.cpp:

(WebCore::Element::rendererIsNeeded):

  • dom/Element.h:
  • dom/NodeRenderingContext.cpp:

(WebCore::NodeRenderingContext::elementInsideRegionNeedsRenderer):
(WebCore::NodeRenderingContext::createRendererForElementIfNeeded):

  • dom/PseudoElement.cpp:

(WebCore::PseudoElement::rendererIsNeeded):

  • dom/PseudoElement.h:
  • html/HTMLAppletElement.cpp:

(WebCore::HTMLAppletElement::rendererIsNeeded):

  • html/HTMLAppletElement.h:
  • html/HTMLElement.cpp:

(WebCore::HTMLElement::rendererIsNeeded):

  • html/HTMLElement.h:
  • html/HTMLEmbedElement.cpp:

(WebCore::HTMLEmbedElement::rendererIsNeeded):

  • html/HTMLEmbedElement.h:
  • html/HTMLFormElement.cpp:

(WebCore::HTMLFormElement::rendererIsNeeded):

  • html/HTMLFormElement.h:
  • html/HTMLFrameElement.cpp:

(WebCore::HTMLFrameElement::rendererIsNeeded):

  • html/HTMLFrameElement.h:
  • html/HTMLFrameSetElement.cpp:

(WebCore::HTMLFrameSetElement::rendererIsNeeded):

  • html/HTMLFrameSetElement.h:
  • html/HTMLIFrameElement.cpp:

(WebCore::HTMLIFrameElement::rendererIsNeeded):

  • html/HTMLIFrameElement.h:
  • html/HTMLInputElement.cpp:

(WebCore::HTMLInputElement::rendererIsNeeded):

  • html/HTMLInputElement.h:
  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::rendererIsNeeded):

  • html/HTMLMediaElement.h:
  • html/HTMLObjectElement.cpp:

(WebCore::HTMLObjectElement::rendererIsNeeded):

  • html/HTMLObjectElement.h:
  • html/HTMLOptGroupElement.h:
  • html/HTMLOptionElement.h:
  • html/HTMLVideoElement.cpp:

(WebCore::HTMLVideoElement::rendererIsNeeded):

  • html/HTMLVideoElement.h:
  • html/shadow/DetailsMarkerControl.cpp:

(WebCore::DetailsMarkerControl::rendererIsNeeded):

  • html/shadow/DetailsMarkerControl.h:
  • html/shadow/InsertionPoint.cpp:

(WebCore::InsertionPoint::rendererIsNeeded):

  • html/shadow/InsertionPoint.h:
  • html/shadow/MeterShadowElement.cpp:

(WebCore::MeterShadowElement::rendererIsNeeded):
(WebCore::MeterInnerElement::rendererIsNeeded):

  • html/shadow/MeterShadowElement.h:
  • html/shadow/ProgressShadowElement.cpp:

(WebCore::ProgressShadowElement::rendererIsNeeded):
(WebCore::ProgressInnerElement::rendererIsNeeded):

  • html/shadow/ProgressShadowElement.h:
  • svg/SVGDescElement.h:
  • svg/SVGElement.h:

(WebCore::SVGElement::rendererIsNeeded):

  • svg/SVGFilterPrimitiveStandardAttributes.cpp:

(WebCore::SVGFilterPrimitiveStandardAttributes::rendererIsNeeded):

  • svg/SVGFilterPrimitiveStandardAttributes.h:
  • svg/SVGFontElement.h:
  • svg/SVGForeignObjectElement.cpp:

(WebCore::SVGForeignObjectElement::rendererIsNeeded):

  • svg/SVGForeignObjectElement.h:
  • svg/SVGGElement.cpp:

(WebCore::SVGGElement::rendererIsNeeded):

  • svg/SVGGElement.h:
  • svg/SVGGlyphElement.h:
  • svg/SVGGlyphRefElement.h:
  • svg/SVGHKernElement.h:
  • svg/SVGMarkerElement.h:
  • svg/SVGMissingGlyphElement.h:
  • svg/SVGSVGElement.cpp:

(WebCore::SVGSVGElement::rendererIsNeeded):

  • svg/SVGSVGElement.h:
  • svg/SVGStopElement.cpp:

(WebCore::SVGStopElement::rendererIsNeeded):

  • svg/SVGStopElement.h:
  • svg/SVGStyledElement.cpp:

(WebCore::SVGStyledElement::rendererIsNeeded):

  • svg/SVGStyledElement.h:
  • svg/SVGTRefElement.cpp:

(WebCore::SVGTRefElement::rendererIsNeeded):

  • svg/SVGTRefElement.h:
  • svg/SVGTSpanElement.cpp:

(WebCore::SVGTSpanElement::rendererIsNeeded):

  • svg/SVGTSpanElement.h:
  • svg/SVGTextPathElement.cpp:

(WebCore::SVGTextPathElement::rendererIsNeeded):

  • svg/SVGTextPathElement.h:
  • svg/SVGTitleElement.h:
  • svg/SVGVKernElement.h:
  • svg/SVGViewElement.h:
2:52 PM Changeset in webkit [154360] by dbates@webkit.org
  • 3 edits in trunk/Source/WebCore

<https://webkit.org/b/120088> Define Clipboard::hasData() only when building with drag support

Reviewed by Darin Adler.

Clipboard::hasData() is specific to drag-and-drop support. We should only define it when
such support is enabled.

  • dom/Clipboard.cpp: Move hasData() to DRAG_SUPPORT section of the file.
  • dom/Clipboard.h: Ditto.
2:44 PM Changeset in webkit [154359] by dbates@webkit.org
  • 1 edit
    3 adds in trunk/LayoutTests

<https://webkit.org/b/120032> Add DRT test to ensure that AccessibilityObject::stringValue()
of <input type="file"> is meaningful

Following <http://trac.webkit.org/changeset/154332>, add GTK-specific expected results for test
LayoutTests/accessibility/file-upload-button-stringvalue.html.

  • platform/gtk-wk2/accessibility/file-upload-button-stringvalue-expected.txt: Added; expected failure

results until we fix <https://webkit.org/b/64285>.

  • platform/gtk/accessibility/file-upload-button-stringvalue-expected.txt: Added.
2:22 PM Changeset in webkit [154358] by Antti Koivisto
  • 67 edits in trunk/Source/WebCore

<https://webkit.org/b/120078> Replace NodeRenderingContext with RenderStyle& as shouldCreateRenderer() argument

Reviewed by Darin Adler.

This simplifies the code. NodeRenderingContext was only used for getting the RenderStyle.

  • dom/Element.cpp:

(WebCore::Element::rendererIsNeeded):

  • dom/Element.h:
  • dom/NodeRenderingContext.cpp:

(WebCore::NodeRenderingContext::elementInsideRegionNeedsRenderer):
(WebCore::NodeRenderingContext::createRendererForElementIfNeeded):

  • dom/PseudoElement.cpp:

(WebCore::PseudoElement::rendererIsNeeded):

  • dom/PseudoElement.h:
  • html/HTMLAppletElement.cpp:

(WebCore::HTMLAppletElement::rendererIsNeeded):

  • html/HTMLAppletElement.h:
  • html/HTMLElement.cpp:

(WebCore::HTMLElement::rendererIsNeeded):

  • html/HTMLElement.h:
  • html/HTMLEmbedElement.cpp:

(WebCore::HTMLEmbedElement::rendererIsNeeded):

  • html/HTMLEmbedElement.h:
  • html/HTMLFormElement.cpp:

(WebCore::HTMLFormElement::rendererIsNeeded):

  • html/HTMLFormElement.h:
  • html/HTMLFrameElement.cpp:

(WebCore::HTMLFrameElement::rendererIsNeeded):

  • html/HTMLFrameElement.h:
  • html/HTMLFrameSetElement.cpp:

(WebCore::HTMLFrameSetElement::rendererIsNeeded):

  • html/HTMLFrameSetElement.h:
  • html/HTMLIFrameElement.cpp:

(WebCore::HTMLIFrameElement::rendererIsNeeded):

  • html/HTMLIFrameElement.h:
  • html/HTMLInputElement.cpp:

(WebCore::HTMLInputElement::rendererIsNeeded):

  • html/HTMLInputElement.h:
  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::rendererIsNeeded):

  • html/HTMLMediaElement.h:
  • html/HTMLObjectElement.cpp:

(WebCore::HTMLObjectElement::rendererIsNeeded):

  • html/HTMLObjectElement.h:
  • html/HTMLOptGroupElement.h:
  • html/HTMLOptionElement.h:
  • html/HTMLVideoElement.cpp:

(WebCore::HTMLVideoElement::rendererIsNeeded):

  • html/HTMLVideoElement.h:
  • html/shadow/DetailsMarkerControl.cpp:

(WebCore::DetailsMarkerControl::rendererIsNeeded):

  • html/shadow/DetailsMarkerControl.h:
  • html/shadow/InsertionPoint.cpp:

(WebCore::InsertionPoint::rendererIsNeeded):

  • html/shadow/InsertionPoint.h:
  • html/shadow/MeterShadowElement.cpp:

(WebCore::MeterShadowElement::rendererIsNeeded):
(WebCore::MeterInnerElement::rendererIsNeeded):

  • html/shadow/MeterShadowElement.h:
  • html/shadow/ProgressShadowElement.cpp:

(WebCore::ProgressShadowElement::rendererIsNeeded):
(WebCore::ProgressInnerElement::rendererIsNeeded):

  • html/shadow/ProgressShadowElement.h:
  • svg/SVGDescElement.h:
  • svg/SVGElement.h:

(WebCore::SVGElement::rendererIsNeeded):

  • svg/SVGFilterPrimitiveStandardAttributes.cpp:

(WebCore::SVGFilterPrimitiveStandardAttributes::rendererIsNeeded):

  • svg/SVGFilterPrimitiveStandardAttributes.h:
  • svg/SVGFontElement.h:
  • svg/SVGForeignObjectElement.cpp:

(WebCore::SVGForeignObjectElement::rendererIsNeeded):

  • svg/SVGForeignObjectElement.h:
  • svg/SVGGElement.cpp:

(WebCore::SVGGElement::rendererIsNeeded):

  • svg/SVGGElement.h:
  • svg/SVGGlyphElement.h:
  • svg/SVGGlyphRefElement.h:
  • svg/SVGHKernElement.h:
  • svg/SVGMarkerElement.h:
  • svg/SVGMissingGlyphElement.h:
  • svg/SVGSVGElement.cpp:

(WebCore::SVGSVGElement::rendererIsNeeded):

  • svg/SVGSVGElement.h:
  • svg/SVGStopElement.cpp:

(WebCore::SVGStopElement::rendererIsNeeded):

  • svg/SVGStopElement.h:
  • svg/SVGStyledElement.cpp:

(WebCore::SVGStyledElement::rendererIsNeeded):

  • svg/SVGStyledElement.h:
  • svg/SVGTRefElement.cpp:

(WebCore::SVGTRefElement::rendererIsNeeded):

  • svg/SVGTRefElement.h:
  • svg/SVGTSpanElement.cpp:

(WebCore::SVGTSpanElement::rendererIsNeeded):

  • svg/SVGTSpanElement.h:
  • svg/SVGTextPathElement.cpp:

(WebCore::SVGTextPathElement::rendererIsNeeded):

  • svg/SVGTextPathElement.h:
  • svg/SVGTitleElement.h:
  • svg/SVGVKernElement.h:
  • svg/SVGViewElement.h:
2:09 PM Changeset in webkit [154357] by timothy_horton@apple.com
  • 2 edits in trunk/LayoutTests

Failing test expectations for two tests

One recently regressed:
webkit.org/b/120086 http/tests/security/cross-frame-access-getOwnPropertyDescriptor.html

One was recently added in a failing state:
webkit.org/b/120083 fast/js/regress/emscripten-cube2hash.html

  • platform/mac/TestExpectations:
2:03 PM Changeset in webkit [154356] by rniwa@webkit.org
  • 2 edits in trunk/LayoutTests

<https://webkit.org/b/120087> Lion: fast/forms/submit-to-url-fragment.html intermittently crashes

Add the test expectation.

  • platform/mac/TestExpectations:
1:56 PM Changeset in webkit [154355] by rniwa@webkit.org
  • 3 edits in trunk/LayoutTests

Mac Lion rebaseline after r154072.

Also add an intermittent test failure expectation to http/tests/inspector/resource-tree/resource-tree-document-url.html

  • platform/mac/TestExpectations:
  • platform/mac-lion/fast/repaint/japanese-rl-selection-repaint-in-regions-expected.txt:
1:45 PM Changeset in webkit [154354] by achristensen@apple.com
  • 9 edits in trunk/Source

<https://webkit.org/b/120076> More work towards a Win64 build

Reviewed by Brent Fulgham.

Source/JavaScriptCore:

Use PlatformArchitecture macro instead of bin32, lib32, and obj32.

Source/WebKit:

  • WebKit.vcxproj/Interfaces/InterfacesPreBuild.cmd:

Use PlatformArchitecture macro instead of bin32, lib32, and obj32.

1:23 PM Changeset in webkit [154353] by timothy_horton@apple.com
  • 2 edits in trunk/Source/WebCore

<https://webkit.org/b/105988> [Mac] Some inspector tests intermittently assert in InspectorOverlay::paint
<rdar://problem/12958038>

Reviewed by Joseph Pecoraro.

Update the inspector overlay's layout before painting, if it is stale.

No new tests; fixes an intermittent assertion failure in some existing tests.

  • inspector/InspectorOverlay.cpp:

(WebCore::InspectorOverlay::paint):

12:41 PM Changeset in webkit [154352] by rniwa@webkit.org
  • 2 edits in trunk/LayoutTests

Mark fast/css/giant-stylesheet-crash.html as slow after r154246
since allocating 2GB of RAM takes a long time sometimes.

12:39 PM Changeset in webkit [154351] by mhahnenberg@apple.com
  • 6 edits in trunk/Source/JavaScriptCore

<https://webkit.org/b/119919> Concurrent JIT crashes in various fast/js/dfg-* tests while the main thread is setting innerHTML

Reviewed by Geoffrey Garen.

More fixes for WriteBarrier deferral during concurrent JIT-ing. This patch makes the use of DesiredWriteBarriers class and the
initializeLazyWriteBarrierFor* wrapper functions more sane.

Refactored DesiredWriteBarrier to require an owner, a type, a CodeBlock, and an index. The type indicates how to use the CodeBlock
and index when triggering the WriteBarrier at the end of compilation.

The client code of initializeLazy* is now responsible for creating the WriteBarrier that will be initialized as well as passing
in the relevant index to be used at the end of compilation. Things were kind of muddled before in that one function did a
little extra work that really shouldn't have been its responsibility.

  • dfg/DFGByteCodeParser.cpp:

(JSC::DFG::ByteCodeParser::addConstant):
(JSC::DFG::ByteCodeParser::InlineStackEntry::InlineStackEntry):

  • dfg/DFGDesiredWriteBarriers.cpp:

(JSC::DFG::DesiredWriteBarrier::DesiredWriteBarrier):
(JSC::DFG::DesiredWriteBarrier::trigger):

  • dfg/DFGDesiredWriteBarriers.h:

(JSC::DFG::DesiredWriteBarriers::add):
(JSC::DFG::initializeLazyWriteBarrierForInlineCallFrameExecutable):
(JSC::DFG::initializeLazyWriteBarrierForInlineCallFrameCallee):
(JSC::DFG::initializeLazyWriteBarrierForConstant):

  • dfg/DFGFixupPhase.cpp:

(JSC::DFG::FixupPhase::truncateConstantToInt32):

  • dfg/DFGGraph.h:

(JSC::DFG::Graph::constantRegisterForConstant):

12:33 PM Changeset in webkit [154350] by dbates@webkit.org
  • 2 edits in trunk/Source/WebCore

Build fix after <http://trac.webkit.org/changeset/154260> (https://webkit.org/b/119949);
declare Clipboard::hasData() when building with and without drag support

  • dom/Clipboard.h:
12:21 PM Changeset in webkit [154349] by hmuller@adobe.com
  • 4 edits
    7 adds in trunk

<https://webkit.org/b/119849> [CSS Shapes] Complete RasterShape::firstIncludedIntervalLogicalTop()

Reviewed by Alexandru Chiculita.

Source/WebCore:

Completed the implementation of RasterShape::firstIncludedIntervalLogicalTop(). The
method now computes first logical top location where a line segment can be laid
out within a RasterShape, i.e. a shape derived from an image valued URL resource.

A detailed description of the algorithm can be found in
http://hansmuller-webkit.blogspot.com/2013/08/first-fit-location-for-image-shapes.html.

The new tests exposed a bug in the existing getIncludedIntervals() method. A shape
with a vertical gap that spans the entire line now causes the method to short circuit
and return an empty interval list.

Tests: fast/shapes/shape-inside/shape-inside-image-003.html

fast/shapes/shape-inside/shape-inside-image-004.html
fast/shapes/shape-inside/shape-inside-image-005.html

  • rendering/shapes/RasterShape.cpp:

(WebCore::RasterShapeIntervals::firstIncludedIntervalY):
(WebCore::RasterShapeIntervals::getIncludedIntervals):
(WebCore::RasterShape::firstIncludedIntervalLogicalTop):

  • rendering/shapes/RasterShape.h:

LayoutTests:

Verify that the first fit algorithm works correctly for complex image shapes.
For this set of tests the image is specified with an SVG file.

  • fast/shapes/resources/svg-shape-001.svg: Added.
  • fast/shapes/shape-inside/shape-inside-image-003-expected.html: Added.
  • fast/shapes/shape-inside/shape-inside-image-003.html: Added.
  • fast/shapes/shape-inside/shape-inside-image-004-expected.html: Added.
  • fast/shapes/shape-inside/shape-inside-image-004.html: Added.
  • fast/shapes/shape-inside/shape-inside-image-005-expected.html: Added.
  • fast/shapes/shape-inside/shape-inside-image-005.html: Added.
11:59 AM Changeset in webkit [154348] by psolanki@apple.com
  • 31 edits in trunk/Source

<https://webkit.org/b/120029> Document::markers() should return a reference

Reviewed by Andreas Kling.

Document::m_markers is never NULL so return a reference from Document::markers(). Also mark
m_markers as const and initialize it in member initialization.

Source/WebCore:

  • dom/Document.cpp:

(WebCore::Document::Document):

  • dom/Document.h:

(WebCore::Document::markers):

  • editing/AlternativeTextController.cpp:

(WebCore::AlternativeTextController::isSpellingMarkerAllowed):
(WebCore::AlternativeTextController::applyAlternativeTextToRange):
(WebCore::AlternativeTextController::respondToUnappliedSpellCorrection):
(WebCore::AlternativeTextController::handleAlternativeTextUIResult):
(WebCore::AlternativeTextController::respondToChangedSelection):
(WebCore::AlternativeTextController::respondToAppliedEditing):
(WebCore::AlternativeTextController::respondToUnappliedEditing):
(WebCore::AlternativeTextController::markReversed):
(WebCore::AlternativeTextController::markCorrection):
(WebCore::AlternativeTextController::recordSpellcheckerResponseForModifiedCorrection):
(WebCore::AlternativeTextController::markPrecedingWhitespaceForDeletedAutocorrectionAfterCommand):
(WebCore::AlternativeTextController::processMarkersOnTextToBeReplacedByResult):
(WebCore::AlternativeTextController::applyDictationAlternative):

  • editing/CompositeEditCommand.cpp:

(WebCore::CompositeEditCommand::replaceTextInNodePreservingMarkers):

  • editing/DeleteSelectionCommand.cpp:

(WebCore::DeleteSelectionCommand::originalStringForAutocorrectionAtBeginningOfSelection):

  • editing/DictationCommand.cpp:

(WebCore::DictationMarkerSupplier::addMarkersToTextNode):

  • editing/Editor.cpp:

(WebCore::Editor::ignoreSpelling):
(WebCore::Editor::learnSpelling):
(WebCore::Editor::advanceToNextMisspelling):
(WebCore::Editor::clearMisspellingsAndBadGrammar):
(WebCore::Editor::markAndReplaceFor):
(WebCore::Editor::changeBackToReplacedString):
(WebCore::Editor::updateMarkersForWordsAffectedByEditing):
(WebCore::Editor::countMatchesForText):
(WebCore::Editor::setMarkedTextMatchesAreHighlighted):
(WebCore::Editor::respondToChangedSelection):
(WebCore::Editor::selectionStartHasMarkerFor):

  • editing/SpellChecker.cpp:

(WebCore::SpellChecker::didCheckSucceed):

  • editing/SplitTextNodeCommand.cpp:

(WebCore::SplitTextNodeCommand::doApply):
(WebCore::SplitTextNodeCommand::doUnapply):

  • editing/TextCheckingHelper.cpp:

(WebCore::TextCheckingHelper::findFirstMisspelling):
(WebCore::TextCheckingHelper::findFirstGrammarDetail):

  • page/FrameView.cpp:

(WebCore::FrameView::getTickmarks):
(WebCore::FrameView::paintContents):

  • page/Page.cpp:

(WebCore::Page::unmarkAllTextMatches):

  • rendering/HitTestResult.cpp:

(WebCore::HitTestResult::spellingToolTip):
(WebCore::HitTestResult::replacedString):
(WebCore::HitTestResult::dictationAlternatives):

  • rendering/InlineTextBox.cpp:

(WebCore::InlineTextBox::paintDocumentMarkers):

  • rendering/svg/SVGInlineFlowBox.cpp:

(WebCore::SVGInlineFlowBox::computeTextMatchMarkerRectForRenderer):

  • testing/Internals.cpp:

(WebCore::Internals::markerCountForNode):
(WebCore::Internals::markerAt):
(WebCore::Internals::addTextMatchMarker):

Source/WebKit/blackberry:

  • WebKitSupport/InPageSearchManager.cpp:

(BlackBerry::WebKit::InPageSearchManager::findAndMarkText):
(BlackBerry::WebKit::InPageSearchManager::setActiveMatchAndMarker):
(BlackBerry::WebKit::InPageSearchManager::scopeStringMatches):

  • WebKitSupport/InputHandler.cpp:

(BlackBerry::WebKit::InputHandler::shouldRequestSpellCheckingOptionsForPoint):
(BlackBerry::WebKit::InputHandler::addAttributedTextMarker):
(BlackBerry::WebKit::InputHandler::removeAttributedTextMarker):

Source/WebKit/efl:

  • ewk/ewk_frame.cpp:

(ewk_frame_text_matches_unmark_all):
(ewk_frame_text_matches_nth_pos_get):

Source/WebKit/mac:

  • WebView/WebFrame.mm:

(-[WebFrame _unmarkAllBadGrammar]):
(-[WebFrame _unmarkAllMisspellings]):

  • WebView/WebHTMLView.mm:

(-[WebHTMLView unmarkAllTextMatches]):
(-[WebHTMLView rectsForTextMatches]):

Source/WebKit/win:

  • WebFrame.cpp:

(WebFrame::unmarkAllMisspellings):
(WebFrame::unmarkAllBadGrammar):

  • WebView.cpp:

(WebView::rectsForTextMatches):

Source/WebKit2:

  • WebProcess/WebPage/FindController.cpp:

(WebKit::FindController::rectsForTextMatches):

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::unmarkAllMisspellings):
(WebKit::WebPage::unmarkAllBadGrammar):

11:50 AM Changeset in webkit [154347] by psolanki@apple.com
  • 2 edits in trunk/Source/WebCore

<https://webkit.org/b/119875> localeToScriptCodeForFontSelection should use hash tables with larger default capacity

Reviewed by Darin Adler.

The two static hash tables used in this file have 106 and 198 entries. Set a minimumTableSize for
these hash tables so we don't have to expand them during initialization.

No new tests because no functional changes.

  • platform/text/LocaleToScriptMappingDefault.cpp:

(WebCore::scriptNameToCode):
(WebCore::localeToScriptCodeForFontSelection):

11:47 AM Changeset in webkit [154346] by msaboff@apple.com
  • 3 edits
    3 adds in trunk

https://bugs.webkit.org/show_bug.cgi?id=120075
REGRESSION (r128400): BBC4 website not displaying pictures

Reviewed by Oliver Hunt.

Source/JavaScriptCore:

  • runtime/RegExpMatchesArray.h:

(JSC::RegExpMatchesArray::createStructure): Changed the array IndexingType to be ArrayWithSlowPutArrayStorage
so that the match results will be reified before any other modification to the results array.

LayoutTests:

Added regression tests for fix.

  • fast/js/regress/regexp-match-reify-before-putbyval-expected.txt: Added.
  • fast/js/regress/regexp-match-reify-before-putbyval.html: Added.
  • fast/js/regress/script-tests/regexp-match-reify-before-putbyval.js: Added.
11:24 AM Changeset in webkit [154345] by eric.carlson@apple.com
  • 2 edits in trunk/Source/WebCore

<https://webkit.org/b/120068> Media controls can be attached lazily

Reviewed by Jer Noble.

Merge https://chromium.googlesource.com/chromium/blink/+/28a995486a675992f2e72f81bfabdfff05688a31.

  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::createMediaControls): Add AttachLazily to appendChild().

11:22 AM Changeset in webkit [154344] by fpizlo@apple.com
  • 4 edits
    8 adds in trunk

Incorrect behavior on emscripten-compiled cube2hash
https://bugs.webkit.org/show_bug.cgi?id=120033

Source/JavaScriptCore:

Reviewed by Mark Hahnenberg.

If PutClosureVar is may-aliased to another PutClosureVar or GetClosureVar
then we should bail attempts to CSE.

  • dfg/DFGCSEPhase.cpp:

(JSC::DFG::CSEPhase::scopedVarLoadElimination):
(JSC::DFG::CSEPhase::scopedVarStoreElimination):

LayoutTests:

Reviewed by Mark Hahnenberg.

Add the test that actually failed as a JSRegress test. We should track its
performance anyway.

Add a regression test for the actual failure.

Add .html and -expected.txt files for a JSRegress test that is already in
the repo.

  • fast/js/dfg-get-closure-var-put-closure-var-interference.html: Added.
  • fast/js/dfg-get-closure-var-put-closure-var-interference-expected.txt: Added.
  • fast/js/regress/array-nonarray-polymorhpic-access-expected.txt: Added.
  • fast/js/regress/array-nonarray-polymorhpic-access.html: Added.
  • fast/js/regress/emscripten-cube2hash-expected.txt: Added.
  • fast/js/regress/emscripten-cube2hash.html: Added.
  • fast/js/regress/script-tests/emscripten-cube2hash.js: Added.

(.Module.string_appeared_here):
(else.Module.string_appeared_here):
(else.else.Module.string_appeared_here):
(else.else):
(globalEval):
(Runtime.stackSave):
(Runtime.stackRestore):
(Runtime.forceAlign):
(Runtime.isNumberType):
(Runtime.isPointerType):
(Runtime.isStructType):
(or64):
(and64):
(xor64):
(getNativeTypeSize):
(getNativeFieldSize):
(dedup):
(.set var):
(getAlignSize):
(calculateStructAlignment):
(.else.alignment):
(generateStructInfo):
(dynCall):
(addFunction):
(removeFunction):
(warnOnce):
(.Runtime.funcWrappers.func):
(getFuncWrapper):
(UTF8Processor.this.processCChar):
(UTF8Processor.this.processJSString):
(UTF8Processor):
(stackAlloc):
(staticAlloc):
(dynamicAlloc):
(alignMemory):
(makeBigInt):
(assert):
(ccall):
(getCFunc):
(.toC):
(.fromC):
(ccallFunc):
(setValue):
(getValue):
(.set else):
(.set return):
(allocate):
(Pointer_stringify):
(alignMemoryPage):
(enlargeMemory):
(callRuntimeCallbacks):
(preRun):
(ensureInitRuntime):
(preMain):
(exitRuntime):
(postRun):
(addOnPreRun):
(addOnInit):
(addOnPreMain):
(addOnExit):
(addOnPostRun):
(intArrayFromString):
(intArrayToString):
(writeStringToMemory):
(writeArrayToMemory):
(unSign):
(reSign):
(Math.string_appeared_here):
(addRunDependency):
(removeRunDependency):
(loadMemoryInitializer.applyData):
(loadMemoryInitializer.set addOnPreRun):
(ATINIT.push):
(STATIC_BASE):
(copyTempDouble):
(_setErrNo):
(PATH.splitPath):
(PATH.normalizeArray):
(PATH.normalize.join):
(PATH.normalize):
(PATH.dirname):
(PATH.basename):
(PATH.join):
(PATH.trim):
(PATH.relative):
(TTY.register):
(TTY.stream_ops.open):
(TTY.stream_ops.close):
(TTY.stream_ops.read):
(TTY.stream_ops.write):
(TTY.default_tty_ops.get_char):
(TTY.default_tty_ops.put_char):
(TTY.default_tty1_ops.put_char):
(MEMFS.mount):
(MEMFS.create_node):
(MEMFS.node_ops.getattr):
(MEMFS.node_ops.setattr):
(MEMFS.node_ops.lookup):
(MEMFS.node_ops.mknod):
(MEMFS.node_ops.rename):
(MEMFS.node_ops.unlink):
(MEMFS.node_ops.rmdir):
(MEMFS.node_ops.readdir):
(MEMFS.node_ops.symlink):
(MEMFS.node_ops.readlink):
(MEMFS.stream_ops.set else):
(MEMFS.stream_ops.read):
(MEMFS.stream_ops.write):
(MEMFS.stream_ops.llseek):
(MEMFS.stream_ops.allocate):
(MEMFS.stream_ops.set return):
(MEMFS.stream_ops.mmap):
(_fflush):
(FS.ErrnoError):
(FS.handleFSError):
(FS.hashName):
(FS.hashAddNode):
(FS.hashRemoveNode):
(FS.lookupNode):
(FS.):
(FS.destroyNode):
(FS.isRoot):
(FS.isMountpoint):
(FS.isFile):
(FS.isDir):
(FS.isLink):
(FS.isChrdev):
(FS.isBlkdev):
(FS.isFIFO):
(FS.cwd):
(FS.var):
(FS.lookupPath):
(FS.getPath):
(FS.modeStringToFlags):
(FS.flagsToPermissionString):
(FS.nodePermissions):
(FS.mayLookup):
(FS.mayMknod):
(FS.mayCreate):
(FS.mayDelete):
(FS.mayOpen):
(FS.chrdev_stream_ops.open):
(FS.chrdev_stream_ops.llseek):
(FS.major):
(FS.minor):
(FS.makedev):
(FS.registerDevice):
(FS.getDevice):
(FS.nextfd):
(FS.getStream):
(FS.closeStream):
(FS.getMode):
(FS.joinPath):
(FS.absolutePath):
(FS.standardizePath):
(FS.findObject):
(FS.analyzePath):
(FS.createFolder):
(FS.createPath):
(FS.createFile):
(FS.createDataFile):
(FS.createDevice):
(FS.createLink):
(FS.forceLoadFile):
(FS.LazyUint8Array):
(FS.LazyUint8Array.prototype.get if):
(FS.LazyUint8Array.prototype):
(FS.LazyUint8Array.prototype.setDataGetter):
(FS.LazyUint8Array.prototype.cacheLength.doXHR):
(FS.LazyUint8Array.prototype.cacheLength):
(FS.get Object):
(FS.get var):
(FS.keys.forEach):
(FS.processData.finish):
(FS.processData):
(FS.else):
(FS.createPreloadedFile):
(FS.createDefaultDirectories):
(FS.createDefaultDevices.):
(FS.createDefaultDevices):
(FS.createStandardStreams):
(FS.staticInit):
(FS.init):
(FS.quit):
(FS.mount):
(FS.lookup):
(FS.mknod):
(FS.create):
(FS.mkdir):
(FS.mkdev):
(FS.symlink):
(FS.rename):
(FS.rmdir):
(FS.readdir):
(FS.unlink):
(FS.readlink):
(FS.stat):
(FS.lstat):
(FS.chmod):
(FS.lchmod):
(FS.fchmod):
(FS.chown):
(FS.lchown):
(FS.fchown):
(FS.truncate):
(FS.ftruncate):
(FS.utime):
(FS.open):
(FS.close):
(FS.llseek):
(FS.read):
(FS.write):
(FS.allocate):
(FS.mmap):
(_send):
(_pwrite):
(_write):
(_fwrite):
(
reallyNegative):
(.getNextArg):
(.switch.case.string_appeared_here.case.string_appeared_here.case.string_appeared_here.case.string_appeared_here.case.string_appeared_here.case.string_appeared_here.case.string_appeared_here.break):
(.switch.case.string_appeared_here.case.string_appeared_here.case.string_appeared_here.case.string_appeared_here.case.string_appeared_here.case.string_appeared_here.break):
(_fprintf):
(_printf):
(_fputs):
(_fputc):
(_puts):
(_abort):
(_errno_location):
(_sbrk.Runtime.dynamicAlloc):
(_sbrk):
(_sysconf):
(_time):
(Browser.mainLoop.pause):
(Browser.mainLoop.resume):
(Browser.mainLoop.updateStatus):
(Browser.init.imagePlugin.string_appeared_here):
(Browser.init.img.onload):
(Browser.init.img.onerror):
(Browser.init.audioPlugin.string_appeared_here):
(Browser.init.finish):
(Browser.init.fail):
(Browser.init.audio.onerror.encode64):
(Browser.init.audio.onerror):
(Browser.init.audio):
(Browser.init.else):
(Browser.init.pointerLockChange):
(Browser.init.canvas):
(Browser.init):
(Browser.destroyContext):
(Browser.fullScreenChange):
(Browser.requestFullScreen):
(Browser.requestAnimationFrame):
(Browser.safeRequestAnimationFrame):
(Browser.safeSetTimeout):
(Browser.safeSetInterval):
(Browser.getMimetype):
(Browser.getUserMedia):
(Browser.getMovementX):
(Browser.getMovementY):
(Browser.calculateMouseEvent):
(Browser.xhr.onload):
(Browser.xhrLoad):
(Browser.updateResizeListeners):
(Browser.setCanvasSize):
(Browser.setFullScreenCanvasSize):
(Browser.setWindowedCanvasSize):
(
ATINIT.unshift):
(
ATMAIN.push):
(
ATEXIT.push):
(Module.string_appeared_here):
(invoke_ii):
(invoke_v):
(invoke_iii):
(invoke_vi):
(asmPrintInt):
(asmPrintFloat):
(asm):
(Runtime.stackAlloc):
(i64Math):
(i64Math.):
(Module.string_appeared_here.Module.callMain.callMain.pad):
(Module.string_appeared_here.Module.callMain):
(run.doRun):
(run.else):
(run):
(exit):
(abort):

  • fast/js/script-tests/dfg-get-closure-var-put-closure-var-interference.js: Added.

(foo):
(thingy.return.bar):
(thingy.return.baz):
(thingy):
(runIt):

11:13 AM Changeset in webkit [154343] by dbates@webkit.org
  • 3 edits in trunk/Source/WebCore

<https://webkit.org/b/120072> Use nullAtom instead of defining static local in
Accessibility{Object, RenderObject}::actionVerb()

Reviewed by Chris Fleizach.

  • accessibility/AccessibilityObject.cpp:

(WebCore::AccessibilityObject::actionVerb):

  • accessibility/AccessibilityRenderObject.cpp:

(WebCore::AccessibilityRenderObject::actionVerb):

11:12 AM Changeset in webkit [154342] by Lucas Forschler
  • 5 edits in branches/safari-537.60-branch/Source

Versioning.

10:45 AM Changeset in webkit [154341] by Lucas Forschler
  • 1 copy in branches/safari-537.60-branch

New Branch.

10:40 AM Changeset in webkit [154340] by barraclough@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

https://bugs.webkit.org/show_bug.cgi?id=120073
Remove use of GOPD from JSFunction::defineProperty

Reviewed by Oliver Hunt.

Call getOwnPropertySlot to check for existing properties instead.

  • runtime/JSFunction.cpp:

(JSC::JSFunction::defineOwnProperty):

  • getOwnPropertyDescriptor -> getOwnPropertySlot
10:31 AM Changeset in webkit [154339] by dbates@webkit.org
  • 8 edits in trunk/Source/WebCore

<https://webkit.org/b/119914> [iOS] Upstream changes to WebCore/accessibility

Reviewed by Darin Adler and Chris Fleizach.

  • accessibility/AccessibilityMenuList.cpp:

(WebCore::AccessibilityMenuList::press):
(WebCore::AccessibilityMenuList::isCollapsed):

  • accessibility/AccessibilityObject.cpp:

(WebCore::AccessibilityObject::headingElementForNode):
(WebCore::AccessibilityObject::actionVerb):

  • accessibility/AccessibilityObject.h:
  • accessibility/AccessibilityRenderObject.cpp:

(WebCore::AccessibilityRenderObject::boundsForVisiblePositionRange):
(WebCore::AccessibilityRenderObject::actionVerb):

  • accessibility/AccessibilityTableColumn.cpp:

(WebCore::AccessibilityTableColumn::computeAccessibilityIsIgnored):

  • accessibility/AccessibilityTableHeaderContainer.cpp:

(WebCore::AccessibilityTableHeaderContainer::computeAccessibilityIsIgnored):

  • accessibility/ios/WebAccessibilityObjectWrapperIOS.mm:
10:17 AM Changeset in webkit [154338] by Bruno de Oliveira Abinader
  • 8 edits
    4 adds in trunk

[css3-text] Implement CSS3 text-decoration shorthand
https://bugs.webkit.org/show_bug.cgi?id=92000

Implements the text-decoration shorthand (with -webkit- prefix), as specified by the CSS3 Text Decoration specification:
http://dev.w3.org/csswg/css-text-decor-3/#text-decoration-property

Backported from Blink:
https://src.chromium.org/viewvc/blink?revision=156266&view=revision

10:12 AM Changeset in webkit [154337] by barraclough@apple.com
  • 6 edits in trunk/Source/JavaScriptCore

https://bugs.webkit.org/show_bug.cgi?id=120067
Remove getPropertyDescriptor

Reviewed by Oliver Hunt.

This is used by lookupGetter/lookupSetter - this can easily bee replaced by getPropertySlot.
Since we'll be getting the GetterSetter from the slot in the setter case, rename isGetter() to isAccessor().

  • runtime/JSObject.cpp:
  • runtime/JSObject.h:
    • remove getPropertyDescriptor
  • runtime/ObjectPrototype.cpp:

(JSC::objectProtoFuncLookupGetter):
(JSC::objectProtoFuncLookupSetter):

  • replace call to getPropertyDescriptor with getPropertySlot
  • runtime/PropertyDescriptor.h:
  • runtime/PropertySlot.h:

(JSC::PropertySlot::isAccessor):
(JSC::PropertySlot::isCacheableGetter):
(JSC::PropertySlot::getterSetter):

  • rename isGetter() to isAccessor()
10:09 AM Changeset in webkit [154336] by barraclough@apple.com
  • 5 edits in trunk/Source

https://bugs.webkit.org/show_bug.cgi?id=120054
Remove some dead code following getOwnPropertyDescriptor cleanup

Reviewed by Oliver Hunt.

../JavaScriptCore:

  • runtime/Lookup.h:

(JSC::getStaticFunctionSlot):

  • remove getStaticPropertyDescriptor, getStaticFunctionDescriptor, getStaticValueDescriptor.

../WebCore:

  • bindings/js/JSPluginElementFunctions.cpp:
  • bindings/js/JSPluginElementFunctions.h:
    • remove runtimeObjectCustomGetOwnPropertyDescriptor, pluginElementCustomGetOwnPropertyDescriptor
10:08 AM Changeset in webkit [154335] by barraclough@apple.com
  • 2 edits in trunk/Source/WebKit2

https://bugs.webkit.org/show_bug.cgi?id=120053
Remove custom getOwnPropertyDescriptor for JSNPObject

Reviewed by Oliver Hunt.

Think this is the last one!

  • WebProcess/Plugins/Netscape/JSNPObject.cpp:
    • Remove custom getOwnPropertyDescriptor implementation.
10:07 AM Changeset in webkit [154334] by barraclough@apple.com
  • 3 edits in trunk/Source/JavaScriptCore

https://bugs.webkit.org/show_bug.cgi?id=120052
Remove custom getOwnPropertyDescriptor for JSProxy

Reviewed by Geoff Garen.

GET_OWN_PROPERTY_DESCRIPTOR_IMPL runs afoul with JSProxy due to the workaround for JSDOMWindow's broken behavior.
Because the window object incorrectly searches the prototype chain in getOwnPropertySlot we check that the base
object matches, but in the case of JSProxy we can end up comparing the window object to the window shell & falsely
assuming this is a prototype property. Add toThis conversion to correctly identify proxied own access. I've kept
the original slotBase check as a fast case, and also so that direct access on JSDOMWindow still works.

  • runtime/JSProxy.cpp:
    • Remove custom getOwnPropertyDescriptor implementation.
  • runtime/PropertyDescriptor.h:
    • Modify own property access check to perform toThis conversion.
10:00 AM Changeset in webkit [154333] by achristensen@apple.com
  • 29 edits in trunk/Source

Use PlatformArchitecture to distinguish between 32-bit and 64-bit builds on Windows.
https://bugs.webkit.org/show_bug.cgi?id=119512

Reviewed by Brent Fulgham.

Source/JavaScriptCore:

Replaced obj32, bin32, and lib32 with macros for 64-bit build.

Source/ThirdParty:

  • gtest/msvc/gtest-md.vcxproj:

Replaced obj32, bin32, and lib32 with macros for 64-bit build.

Source/WebCore:

  • WebCore.vcxproj/WebCore.vcxproj:
  • WebCore.vcxproj/WebCore.vcxproj.filters:
  • WebCore.vcxproj/WebCoreCommon.props:
  • WebCore.vcxproj/WebCoreGeneratedCommon.props:
  • WebCore.vcxproj/WebCoreTestSupport.vcxproj:
  • WebCore.vcxproj/WebCoreTestSupport.vcxproj.filters:

Replaced obj32, bin32, and lib32 with macros for 64-bit build.

Source/WebKit:

  • WebKit.vcxproj/Interfaces/InterfacesCommon.props:
  • WebKit.vcxproj/WebKit/WebKit.vcxproj:
  • WebKit.vcxproj/WebKit/WebKit.vcxproj.filters:
  • WebKit.vcxproj/WebKit/WebKitCommon.props:
  • WebKit.vcxproj/WebKitExportGenerator/WebKitExportGenerator.vcxproj:
  • WebKit.vcxproj/WebKitExportGenerator/WebKitExportGenerator.vcxproj.filters:
  • WebKit.vcxproj/WebKitGUID/WebKitGUID.vcxproj:
  • WebKit.vcxproj/WebKitGUID/WebKitGUID.vcxproj.filters:
  • WebKit.vcxproj/WebKitGUID/WebKitGUIDCommon.props:

Replaced obj32, bin32, and lib32 with macros for 64-bit build.

Source/WTF:

  • WTF.vcxproj/WTFGeneratedCommon.props:

Replaced obj32, bin32, and lib32 with macros for 64-bit build.

9:50 AM Changeset in webkit [154332] by dbates@webkit.org
  • 1 edit
    3 adds in trunk/LayoutTests

<https://webkit.org/b/120032> Add DRT test to ensure that AccessibilityObject::stringValue()
of <input type="file"> is meaningful

Reviewed by Chris Fleizach.

Adds a DRT test to ensure that AccessibilityObject::stringValue() returns a meaningful string
for a single file- and multiple files-file upload control.

  • accessibility/file-upload-button-stringvalue.html: Added.
  • platform/mac-wk2/accessibility/file-upload-button-stringvalue-expected.txt: Added.
  • platform/mac/accessibility/file-upload-button-stringvalue-expected.txt: Added.
9:42 AM Changeset in webkit [154331] by jberlin@webkit.org
  • 2 edits in trunk/Source/WebCore

Remove a string no longer used after r154251.

Rubber-stamped by Brady Eidson.

  • English.lproj/Localizable.strings:
9:12 AM Changeset in webkit [154330] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

[BlackBerry] Avoid an assertion from calling releaseBufferDrawable(nullptr)
https://bugs.webkit.org/show_bug.cgi?id=119862
JIRA 470760

Patch by Jakob Petsovits <jpetsovits@blackberry.com> on 2013-08-20
Reviewed by Antonio Gomes.

destroyBuffer() finds a null pointer valid but
releaseBufferDrawable() does not. Fix by adding a
null pointer check.

No new tests, caught by existing layout test runs.

  • platform/graphics/blackberry/ImageBufferBlackBerry.cpp:

(WebCore::ImageBuffer::~ImageBuffer):

8:57 AM Changeset in webkit [154329] by commit-queue@webkit.org
  • 4 edits in trunk/Source/WebKit2

<https://webkit.org/b/119487> [Gtk] Cancel authentication on load failed

Patch by Anton Obzhirov <Anton Obzhirov> on 2013-08-20
Reviewed by Martin Robinson.

Added callback to handle load-failed event in default authentication dialog.
Authentication request gets cancelled and the dialog widget gets destroyed.

  • UIProcess/API/gtk/WebKitAuthenticationDialog.cpp:

(pageLoadFailed):
(webkitAuthenticationDialogInitialize):
(webkitAuthenticationDialogDispose):
(webkit_authentication_dialog_class_init):
(webkitAuthenticationDialogNew):

  • UIProcess/API/gtk/WebKitAuthenticationDialog.h:
  • UIProcess/API/gtk/WebKitWebView.cpp:

(webkitWebViewAuthenticate):

8:52 AM Changeset in webkit [154328] by kov@webkit.org
  • 5 edits in trunk

<https://webkit.org/b/120048> [GTK] Add stubs for APIs that went missing in the DOM bindings

Reviewed by Martin Robinson.

Source/WebCore:

No new tests, these are just stubs for the DOM bindings API.

  • bindings/gobject/WebKitDOMCustom.cpp:

(webkit_dom_bar_info_get_property):
(webkit_dom_bar_info_class_init):
(webkit_dom_bar_info_init):
(webkit_dom_bar_info_get_visible):
(webkit_dom_console_get_memory):
(webkit_dom_css_style_declaration_get_property_css_value):
(webkit_dom_document_get_webkit_hidden):
(webkit_dom_document_get_webkit_visibility_state):
(webkit_dom_html_document_open):
(webkit_dom_html_element_set_item_id):
(webkit_dom_html_element_get_item_id):
(webkit_dom_html_element_get_item_ref):
(webkit_dom_html_element_get_item_prop):
(webkit_dom_html_element_set_item_scope):
(webkit_dom_html_element_get_item_scope):
(webkit_dom_html_element_get_item_type):
(webkit_dom_html_properties_collection_get_property):
(webkit_dom_html_properties_collection_class_init):
(webkit_dom_html_properties_collection_init):
(webkit_dom_html_properties_collection_item):
(webkit_dom_html_properties_collection_named_item):
(webkit_dom_html_properties_collection_get_length):
(webkit_dom_html_properties_collection_get_names):
(webkit_dom_node_get_attributes):
(webkit_dom_node_has_attributes):
(webkit_dom_memory_info_get_property):
(webkit_dom_memory_info_class_init):
(webkit_dom_memory_info_init):
(webkit_dom_memory_info_get_total_js_heap_size):
(webkit_dom_memory_info_get_used_js_heap_size):
(webkit_dom_memory_info_get_js_heap_size_limit):
(webkit_dom_micro_data_item_value_class_init):
(webkit_dom_micro_data_item_value_init):
(webkit_dom_performance_get_memory):
(webkit_dom_property_node_list_get_property):
(webkit_dom_property_node_list_class_init):
(webkit_dom_property_node_list_init):
(webkit_dom_property_node_list_item):
(webkit_dom_property_node_list_get_length):

  • bindings/gobject/WebKitDOMCustom.h:

Tools:

  • Scripts/webkitpy/style/checker.py: add the bindings custom implementation files to be exempt

from naming/enum_casing rules, since it needs to provide GObject-style APIs.

8:27 AM Changeset in webkit [154327] by Antti Koivisto
  • 14 edits in trunk/Source/WebCore

<https://webkit.org/b/120017> Remove NodeRenderingTraversal::ParentDetails

Reviewed by Andreas Kling.

Remove this oddly factored type that is used to optionally collect some data during ComposedShadowTreeWalker parent traversal.

Also removed support for reset-style-inheritance attribute in InsertionPoint. We don't use or expose it.

  • css/StyleResolver.cpp:

(WebCore::StyleResolver::State::initForStyleResolve):
(WebCore::StyleResolver::styleForElement):

  • css/StyleResolver.h:

(WebCore::StyleResolver::State::State):
(WebCore::StyleResolver::State::elementLinkState):

Remove m_distributedToInsertionPoint State field. We never hit the cases where it was used.

  • dom/ComposedShadowTreeWalker.cpp:

(WebCore::ComposedShadowTreeWalker::traverseSiblingOrBackToInsertionPoint):
(WebCore::ComposedShadowTreeWalker::traverseNodeEscapingFallbackContents):
(WebCore::ComposedShadowTreeWalker::traverseParent):

Return null instead of setting childWasOutOfComposition to details object. That's what would happen anyway in the caller.

(WebCore::ComposedShadowTreeWalker::traverseParentInCurrentTree):
(WebCore::ComposedShadowTreeWalker::traverseParentBackToShadowRootOrHost):

  • dom/ComposedShadowTreeWalker.h:
  • dom/Node.cpp:

(WebCore::Node::insertionParentForBinding):

  • dom/NodeRenderingContext.cpp:

(WebCore::NodeRenderingContext::NodeRenderingContext):
(WebCore::NodeRenderingContext::isOnEncapsulationBoundary):

Make this look up InsertionPoint directly intead of relying it being populated in m_parentDetails. The function is used only in
a few non-performance critical places.

(WebCore::NodeRenderingContext::resetStyleInheritance):

Return parent ShadowRoots resetStyleInheritance() flag instead of using m_parentDetails.

  • dom/NodeRenderingContext.h:
  • dom/NodeRenderingTraversal.cpp:

(WebCore::NodeRenderingTraversal::parentSlow):

  • dom/NodeRenderingTraversal.h:

(WebCore::NodeRenderingTraversal::parent):

Remove ParentDetails.

  • html/HTMLAttributeNames.in:
  • html/shadow/InsertionPoint.cpp:


Remove unused resetStyleInheritance attribute.

(WebCore::InsertionPoint::removedFrom):
(WebCore::findInsertionPointOf):

Renamed for clarity.

  • html/shadow/InsertionPoint.h:
  • testing/Internals.cpp:

(WebCore::Internals::includerFor):

8:25 AM Changeset in webkit [154326] by Antti Koivisto
  • 8 edits in trunk

<https://webkit.org/b/120025> REGRESSION (r154254): fast/frames/frameset-frameborder-inheritance.html failing on Apple MountainLion Debug WK1 (Tests)

Reviewed by Anders Carlsson.

Source/WebCore:

  • html/HTMLDocument.cpp:

(WebCore::HTMLDocument::isFrameSet):

  • html/HTMLFrameElement.cpp:

(WebCore::HTMLFrameElement::didAttachRenderers):

Make helper public in HTMLFrameSetElement.

  • html/HTMLFrameSetElement.cpp:

(WebCore::HTMLFrameSetElement::findContaining):

Static function for finding containing frameset, if any.

(WebCore::HTMLFrameSetElement::willAttachRenderers):

This broke in refactoring. We should exit the loop when the first containing frameset is found. Fix by refactoring more.

  • html/HTMLFrameSetElement.h:

(WebCore::isHTMLFrameSetElement):
(WebCore::toHTMLFrameSetElement):

Add casting functions.

  • rendering/RenderFrameSet.cpp:

(WebCore::RenderFrameSet::frameSet):

LayoutTests:

  • platform/mac/TestExpectations: Unskip.
7:29 AM WebKitGTK/StartHacking edited by simon.pena@samsung.com
Update the link to build Epiphany with upstream WebKit (diff)
7:17 AM Changeset in webkit [154325] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WTF

<https://webkit.org/b/120056> [GTK][ARM] enable DFG_JIT

Patch by Víctor Manuel Jáquez Leal <vjaquez@igalia.com> on 2013-08-20
Reviewed by Martin Robinson.

Enable DFG_JIT in GTK+ platform for ARM/Thumb architecture

  • wtf/Platform.h:
6:38 AM Changeset in webkit [154324] by commit-queue@webkit.org
  • 2 edits in trunk/Source/JavaScriptCore

<https://webkit.org/b/120062> Missing ensureSpace call in sh4 baseline JIT.

Patch by Julien Brianceau <jbrianceau@nds.com> on 2013-08-20
Reviewed by Allan Sandfeld Jensen.

branchPtrWithPatch() of baseline JIT must ensure that space is available for its
instructions and two constants now DFG is enabled for sh4 architecture.
These missing ensureSpace calls lead to random crashes.

  • assembler/MacroAssemblerSH4.h:

(JSC::MacroAssemblerSH4::branchPtrWithPatch):

5:47 AM Changeset in webkit [154323] by Antti Koivisto
  • 4 edits in trunk

<https://webkit.org/b/120023> REGRESSION(r154257): svg/custom/bug78807.svg and svg/custom/use-invalid-style.svg failing

Source/WebCore:

Reviewed by Andreas Kling.

  • xml/XMLErrors.cpp:

(WebCore::XMLErrors::insertErrorMessageBlock): "reattach" had accidentally turned into "detach" in refactoring.

LayoutTests:

Reviewed by by Andreas Kling.

4:00 AM Changeset in webkit [154322] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

<https://webkit.org/b/120009> [GTK] Stop button should be added to MiniBrowser

Patch by Anton Obzhirov <Anton Obzhirov> on 2013-08-20
Reviewed by Martin Robinson.

Added stop button in MiniBrowser

  • MiniBrowser/gtk/BrowserWindow.c:

(reloadOrStopCallback): Callback to handle stop or reload button click.
(webViewLoadProgressChanged): Update reload or stop button icon.
(browser_window_init): Save button pointer for further icon updates.

3:44 AM Changeset in webkit [154321] by allan.jensen@digia.com
  • 2 edits in trunk/Source/WebKit2

[Qt][WK2] Doesn't build without Plugin-process
https://bugs.webkit.org/show_bug.cgi?id=120060

Reviewed by Jocelyn Turcotte.

Disable netscape plugin api in WebKit2 when the plugin architecture is unsupported for WebKit2.

  • Target.pri:
3:13 AM Changeset in webkit [154320] by Antti Koivisto
  • 3 edits
    2 adds in trunk

<https://webkit.org/b/119969> REGRESSION (r154232): Crash on the japantimes.co.jp

Source/WebCore:

Reviewed by Andreas Kling.

PseudoElement no longer has parent and calling Element::insertedInto for them crashes as it tries to access it.

Normally there are no pseudo elements when Element::insertedInto() is invoked as they get detached and attached
along with rendering. However in this case the page inserts a <style> that uses ::before along with an element
that it applies to. Stylesheet insertion triggers synchronous style recalc that attaches rendering to all newly
insered elements. Later Element::insertedInto gets called for the element that has pseudo element and we crash.

Test: fast/css-generated-content/insert-stylesheet-and-pseudo-crash.html

  • dom/Element.cpp:

(WebCore::Element::insertedInto):
(WebCore::Element::removedFrom):

Remove calls to insertedInto/removedFrom for pseudo elements. They are not considered to be in document.
When they are added normally during render tree attach these calls don't happen either.

LayoutTests:

Reviewed by Andreas Kling.

  • fast/css-generated-content/insert-stylesheet-and-pseudo-crash-expected.txt: Added.
  • fast/css-generated-content/insert-stylesheet-and-pseudo-crash.html: Added.
2:00 AM Changeset in webkit [154319] by simon.pena@samsung.com
  • 2 edits in trunk

Added missing Reviewed By line.

1:50 AM Changeset in webkit [154318] by simon.pena@samsung.com
  • 5 edits in trunk

<https://webkit.org/b/117584> [GTK][WK1] http/tests/loading/unfinished-load-back-to-cached-page-callbacks.html is failing

Update DumpRenderTree to handle the WEBKIT_LOAD_FAILED status,
printing didFailLoadWithError.

Tools:

Behave like other ports, and handle WEBKIT_LOAD_FAILED status in
DumpRenderTree, printing didFailLoadWithError.

  • DumpRenderTree/gtk/DumpRenderTree.cpp:

(webFrameLoadStatusNotified):

LayoutTests:

Adding that print makes
http/tests/loading/unfinished-load-back-to-cached-page-callbacks.html
and
http/tests/loading/unfinished-main-resource-back-to-cached-page-callbacks.html,
although it requires to modify the expected results for
http/tests/loading/pdf-commit-load-callbacks.html.

  • platform/gtk-wk1/TestExpectations: Unskip

http/tests/loading/unfinished-load-back-to-cached-page-callbacks.html
and
http/tests/loading/unfinished-main-resource-back-to-cached-page-callbacks.html

  • platform/gtk/http/tests/loading/pdf-commit-load-callbacks-expected.txt:

Update the expected results.

12:27 AM Changeset in webkit [154317] by rniwa@webkit.org
  • 2 edits in trunk/Source/WebCore

Windows build fix after r154314.

  • platform/graphics/cg/PathCG.cpp:

(WebCore::Path::platformAddPathForRoundedRect):

Aug 19, 2013:

11:48 PM Changeset in webkit [154316] by commit-queue@webkit.org
  • 3 edits
    2 adds in trunk

[Cairo] Canvas putImageData is not working as expected
https://bugs.webkit.org/show_bug.cgi?id=119992

Patch by Hurnjoo Lee <hurnjoo.lee@samsung.com> on 2013-08-19
Reviewed by Darin Adler.

Source/WebCore:

ImageBufferCairo::putImageArray didn't perform pre-multiply in case of zero alpha value.
If the alpha value is not 255, image data should always be pre-multiplied.

Test: fast/canvas/canvas-putImageData-zero-alpha.html

  • platform/graphics/cairo/ImageBufferCairo.cpp:

(WebCore::ImageBuffer::putByteArray):

LayoutTests:

Add a ref test that ensures that putImageData of canvas with zero alpha work correctly.

  • fast/canvas/canvas-putImageData-zero-alpha-expected.html: Added.
  • fast/canvas/canvas-putImageData-zero-alpha.html: Added.
11:35 PM Changeset in webkit [154315] by commit-queue@webkit.org
  • 4 edits in trunk/Source/WebCore

<https://webkit.org/b/119991> change usage of calculateUTCOffset()/calculateDSTOffset to calculateLocalTimeOffset

Patch by Santosh Mahto <santosh.ma@samsung.com> on 2013-08-19
Reviewed by Darin Adler.

Resolving code error.

  • html/BaseDateAndTimeInputType.cpp:

(WebCore::BaseDateAndTimeInputType::defaultValueForStepUp):

  • html/MonthInputType.cpp:

(WebCore::MonthInputType::defaultValueForStepUp):

  • html/TimeInputType.cpp:

(WebCore::TimeInputType::defaultValueForStepUp):

11:12 PM Changeset in webkit [154314] by rniwa@webkit.org
  • 60 edits
    2 deletes in trunk

<https://webkit.org/b/120049> Delete code for Snow Leopard

Reviewed by Benjamin Poulain.

Source/WebCore:

Delete all the code for Mac OS 10.6. Nobody builds on Snow Leopard at this point.

  • WebCore.exp.in:
  • WebCore.xcodeproj/project.pbxproj:
  • editing/mac/EditorMac.mm:

(WebCore::Editor::pasteWithPasteboard):

  • page/ContextMenuController.cpp:

(WebCore::ContextMenuController::populate):

  • platform/LocalizedStrings.cpp:

(WebCore::truncatedStringForLookupMenuItem):
(WebCore::contextMenuItemTagSearchWeb):
(WebCore::contextMenuItemTagLookUpInDictionary):

  • platform/MemoryPressureHandler.cpp:
  • platform/audio/mac/AudioBusMac.mm:

(WebCore::AudioBus::loadPlatformResource):

  • platform/graphics/ca/GraphicsLayerCA.cpp:

(WebCore::GraphicsLayerCA::createTransformAnimationsFromKeyframes):

  • platform/graphics/ca/PlatformCALayer.h:
  • platform/graphics/ca/mac/PlatformCALayerMac.mm:

(PlatformCALayer::acceleratesDrawing):
(PlatformCALayer::setAcceleratesDrawing):
(PlatformCALayer::contentsScale):
(PlatformCALayer::setContentsScale):
(PlatformCALayer::synchronouslyDisplayTilesInRect):

  • platform/graphics/ca/mac/TileController.mm:

(WebCore::TileController::setScale):
(WebCore::TileController::setAcceleratesDrawing):
(WebCore::TileController::createTileLayer):

  • platform/graphics/cg/ImageBufferDataCG.cpp:

(WebCore::ImageBufferData::getData):
(WebCore::ImageBufferData::putData):

  • platform/graphics/cg/ImageBufferDataCG.h:
  • platform/graphics/cg/PathCG.cpp:

(WebCore::Path::platformAddPathForRoundedRect):

  • platform/graphics/cocoa/FontPlatformDataCocoa.mm:

(WebCore::FontPlatformData::FontPlatformData):
(WebCore::FontPlatformData::setFont):

  • platform/graphics/mac/FontMac.mm:

(WebCore::showGlyphsWithAdvances):

  • platform/graphics/mac/GraphicsContextMac.mm:

(WebCore::GraphicsContext::drawLineForDocumentMarker):

  • platform/graphics/mac/MediaPlayerPrivateQTKit.mm:

(WebCore::MediaPlayerPrivateQTKit::createQTMovie):
(WebCore::MediaPlayerPrivateQTKit::layerHostChanged):

  • platform/graphics/mac/WebLayer.mm:

(drawLayerContents):

  • platform/mac/CursorMac.mm:

(WebCore::Cursor::ensurePlatformCursor):

  • platform/mac/EmptyProtocolDefinitions.h: Removed.
  • platform/mac/MemoryPressureHandlerMac.mm:

(WebCore::MemoryPressureHandler::releaseMemory):

  • platform/mac/NSScrollerImpDetails.h:
  • platform/mac/PlatformEventFactoryMac.mm:

(WebCore::momentumPhaseForEvent):
(WebCore::phaseForEvent):

  • platform/mac/ScrollAnimatorMac.mm:
  • platform/mac/SharedTimerMac.mm:
  • platform/mac/WebCoreSystemInterface.h:
  • platform/mac/WebCoreSystemInterface.mm:
  • platform/network/mac/ResourceHandleMac.mm:
  • platform/network/mac/ResourceRequestMac.mm:

(WebCore::ResourceRequest::doUpdateResourceRequest):
(WebCore::ResourceRequest::doUpdatePlatformRequest):

  • platform/text/cf/HyphenationCF.cpp:
  • platform/text/mac/HyphenationMac.mm: Removed.
  • rendering/RenderLayerBacking.cpp:

(WebCore::RenderLayerBacking::containsPaintedContent):

  • rendering/RenderThemeMac.mm:

(WebCore::RenderThemeMac::shouldShowPlaceholderWhenFocused):

Source/WebKit/mac:

  • DefaultDelegates/WebDefaultContextMenuDelegate.mm:

(-[WebDefaultUIDelegate menuItemWithTag:target:representedObject:]):
(-[WebDefaultUIDelegate webView:contextMenuItemsForElement:defaultMenuItems:]):

  • Misc/WebNSControlExtras.m:

(-[NSControl sizeToFitAndAdjustWindowHeight]):

  • Misc/WebNSFileManagerExtras.mm:
  • WebCoreSupport/WebEditorClient.mm:

(WebEditorClient::shouldEraseMarkersAfterChangeSelection):
(WebEditorClient::getGuessesForWord):

  • WebCoreSupport/WebFrameLoaderClient.mm:

(WebFrameLoaderClient::dispatchDidLayout):
(WebFrameLoaderClient::provisionalLoadStarted):

  • WebCoreSupport/WebSystemInterface.mm:

(InitWebCoreSystemInterface):

  • WebKitPrefix.h:
  • WebView/WebDynamicScrollBarsView.mm:

(-[WebDynamicScrollBarsView scrollWheel:]):

  • WebView/WebFullScreenController.mm:

(convertRectToScreen):
(-[WebFullScreenController finishedEnterFullScreenAnimation:]):
(-[WebFullScreenController exitFullScreen]):

  • WebView/WebHTMLView.mm:

(-[WebHTMLView _pasteWithPasteboard:allowPlainText:]):
(-[WebHTMLView removeMouseMovedObserver]):
(-[WebHTMLView windowDidBecomeKey:]):
(-[WebHTMLView windowDidResignKey:]):

  • WebView/WebView.mm:

(-[WebView _deviceScaleFactor]):

Source/WebKit2:

  • NetworkProcess/mac/NetworkProcessMac.mm:

(WebKit::overrideSystemProxies):
(WebKit::NetworkProcess::platformInitializeNetworkProcess):

  • WebKit2Prefix.h:

Source/WTF:

  • wtf/FastMalloc.cpp:

(WTF::TCMalloc_ThreadCache::CreateCacheIfNecessary):

  • wtf/FeatureDefines.h:
  • wtf/Platform.h:

Tools:

  • DumpRenderTree/mac/CheckedMalloc.cpp:

(protectionOfRegion):
(makeLargeMallocFailSilently):

  • DumpRenderTree/mac/DumpRenderTree.mm:

(resetDefaultsToConsistentValues):

  • DumpRenderTree/mac/DumpRenderTreeDraggingInfo.mm:

(-[DumpRenderTreeDraggingInfo enumerateDraggingItemsWithOptions:forView:classes:searchOptions:usingBlock:]):

  • DumpRenderTree/mac/FrameLoadDelegate.mm:

(testPathFromURL):
(-[FrameLoadDelegate webView:didStartProvisionalLoadForFrame:]):

  • DumpRenderTree/mac/LayoutTestHelper.m:
  • DumpRenderTree/mac/TestRunnerMac.mm:
  • WebKitTestRunner/InjectedBundle/mac/InjectedBundleMac.mm:

(WTR::InjectedBundle::platformInitialize):

  • WebKitTestRunner/InjectedBundle/mac/InjectedBundlePageMac.mm:

(WTR::testPathFromURL):
(WTR::InjectedBundlePage::platformDidStartProvisionalLoadForFrame):

10:47 PM Changeset in webkit [154313] by barraclough@apple.com
  • 7 edits in trunk/Source

Source/JavaScriptCore: https://bugs.webkit.org/show_bug.cgi?id=120034
Remove custom getOwnPropertyDescriptor for global objects

Reviewed by Geoff Garen.

Fix attributes of JSC SynbolTableObject entries, ensure that cross frame access is safe, and suppress prototype chain walk.

  • runtime/JSGlobalObject.cpp:
    • Remove custom getOwnPropertyDescriptor implementation.
  • runtime/JSSymbolTableObject.h:

(JSC::symbolTableGet):

  • The symbol table does not store the DontDelete attribute, we should be adding it back in.
  • runtime/PropertyDescriptor.h:
    • JSDOMWindow walks the prototype chain on own access. This is bad, but for now workaround for the getOwnPropertyDescriptor case.
  • runtime/PropertySlot.h:

(JSC::PropertySlot::setUndefined):

  • This is used by WebCore when blocking access to properties on cross-frame access. Mark blocked properties as read-only, non-configurable to prevent defineProperty.

Source/WebCore: <https://webkit.org/b/120041> Remove superfluous min calls in RenderBlock::computeOverflow

Patch by Ryosuke Niwa <rniwa@webkit.org> on 2013-08-19
Reviewed by Simon Fraser.

Merge https://chromium.googlesource.com/chromium/blink/+/29cad35d6b4642804e6b7c1a30f0b4435dd7a71d

They are contained in an "if" statement that ensures that textIndent < 0 and so the min will never be 0.

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::computeOverflow):

10:34 PM Changeset in webkit [154312] by rniwa@webkit.org
  • 4 edits in trunk/Source/WebKit/mac

<https://webkit.org/b/120051> Remove the Mail thread workaround

Reviewed by Sam Weinig.

Remove the workaround for a very old version of Mail added in r39455.

  • WebView/WebArchive.mm:

(-[WebArchive initWithMainResource:subresources:subframeArchives:]):
(-[WebArchive mainResource]):
(-[WebArchive subresources]):
(-[WebArchive subframeArchives]):

  • WebView/WebFrameView.mm:

(-[WebFrameView initWithFrame:]):

  • WebView/WebResource.mm:

(-[WebResource data]):
(-[WebResource URL]):
(-[WebResource MIMEType]):
(-[WebResource textEncodingName]):
(-[WebResource frameName]):
(-[WebResource _ignoreWhenUnarchiving]):
(-[WebResource _initWithData:URL:MIMEType:textEncodingName:frameName:response:copyData:]):
(-[WebResource _suggestedFilename]):
(-[WebResource _response]):
(-[WebResource _stringValue]):

9:49 PM Changeset in webkit [154311] by rniwa@webkit.org
  • 2 edits in trunk/Source/WebCore

<https://webkit.org/b/120041> Remove superfluous min calls in RenderBlock::computeOverflow

Reviewed by Simon Fraser.

Merge https://chromium.googlesource.com/chromium/blink/+/29cad35d6b4642804e6b7c1a30f0b4435dd7a71d

They are contained in an "if" statement that ensures that textIndent < 0 and so the min will never be 0.

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::computeOverflow):

6:31 PM Changeset in webkit [154310] by commit-queue@webkit.org
  • 4 edits in trunk/Source/WebInspectorUI

<https://webkit.org/b/118106> Web Inspector: AX: Add additional contextual labels for Error/Warnings/Logs that will be spoken for screen readers

Patch by James Craig <james@cookiecrook.com> on 2013-08-19
Reviewed by Joseph Pecoraro.

Changed general console "Output" string to more specific "Error", "Warning", etc for accessibility.

  • Localizations/en.lproj/localizedStrings.js:
  • UserInterface/ConsoleCommandResult.js:
  • UserInterface/ConsoleMessageImpl.js:
5:53 PM Changeset in webkit [154309] by commit-queue@webkit.org
  • 3 edits in trunk/LayoutTests

<https://webkit.org/b/118754> AX: aria-required.html needs to test @required vs @aria-required mismatch reconciliation

Patch by James Craig <james@cookiecrook.com> on 2013-08-19
Reviewed by Chris Fleizach.

More thorough testing of @required and @aria-required, especially regarding conflict resolution.
Found https://webkit.org/b/119988 as a result of the updated test.

  • accessibility/aria-required-expected.txt:
  • accessibility/aria-required.html:
5:02 PM Changeset in webkit [154308] by rniwa@webkit.org
  • 3 edits
    2 adds in trunk

<https://webkit.org/b/119930> input[type=range]: Fix a crash by changing input type in 'input' event handler

Reviewed by Kent Tamura.

Source/WebCore:

Merge https://chromium.googlesource.com/chromium/blink/+/99afc9b55ce176b4f5fe053070e19dbebc1891a5

In SliderThumbElement::setPositionFromPoint, renderer() can be NULL after HTMLInputElement::setValueFromRenderer,
which dispatches 'input' event. Also, make a local vairable 'input' a RefPtr just in case.

Also add null-poinetr checks for the host element as SliderThumbElement only weakly holds onto the host element.

Test: fast/forms/range/range-type-change-oninput.html

  • html/shadow/SliderThumbElement.cpp:

(WebCore::SliderThumbElement::isDisabledFormControl):
(WebCore::SliderThumbElement::matchesReadOnlyPseudoClass):
(WebCore::SliderThumbElement::matchesReadWritePseudoClass):
(WebCore::SliderThumbElement::setPositionFromPoint):
(WebCore::SliderThumbElement::hostInput):

LayoutTests:

Add a regresion test from https://chromium.googlesource.com/chromium/blink/+/99afc9b55ce176b4f5fe053070e19dbebc1891a5

  • fast/forms/range/range-type-change-oninput-expected.txt: Added.
  • fast/forms/range/range-type-change-oninput.html: Added.
5:02 PM Changeset in webkit [154307] by Joseph Pecoraro
  • 4 edits in trunk/Source/WTF

<https://webkit.org/b/120036> [iOS] Upstream Source/WTF Xcode project for iOS

Reviewed by David Kilzer.

Include iOS only WebCoreThread.* files in an ios group, and clean up
the included files a bit.

  • WTF.xcodeproj/project.pbxproj:
  • wtf/ios/WebCoreThread.cpp:
  • wtf/ios/WebCoreThread.h:
4:41 PM Changeset in webkit [154306] by ap@apple.com
  • 4 edits
    3 adds in trunk

https://bugs.webkit.org/show_bug.cgi?id=120028
ASSERTION FAILED: m_history->provisionalItem() == m_requestedHistoryItem.get()
when navigating to an uncached subframe

Reviewed by Brady Eidson.

Source/WebCore:

Test: http/tests/navigation/post-frames-goback1-uncached.html

  • loader/FrameLoader.cpp: (WebCore::FrameLoader::loadURLIntoChildFrame):

Set m_requestedHistoryItem in a code path that doesn't go through FrameLoader::loadItem.

  • loader/HistoryController.cpp: (WebCore::HistoryController::restoreDocumentState):

Now that we always set m_requestedHistoryItem, there is no need to traverse frame
tree to see if this document is being loaded as part of b/f navigation (which was
add in bug 90870).

LayoutTests:

Added a nearly identical version of http/tests/navigation/post-frames-goback1.html
that checks what happens when navigating back to an uncached main resource.

  • http/tests/navigation/post-frames-goback1-uncached-expected.txt: Added.
  • http/tests/navigation/post-frames-goback1-uncached.html: Copied from LayoutTests/http/tests/navigation/post-frames-goback1.html.
  • http/tests/navigation/resources/form-target-uncached.pl: Copied from LayoutTests/http/tests/navigation/resources/form-target.pl.
4:16 PM Changeset in webkit [154305] by fpizlo@apple.com
  • 20 edits
    6 adds in trunk

DFG should inline typedArray.byteOffset
https://bugs.webkit.org/show_bug.cgi?id=119962

Source/JavaScriptCore:

Reviewed by Oliver Hunt.

This adds a new node, GetTypedArrayByteOffset, which inlines
typedArray.byteOffset.

Also, I improved a bunch of the clobbering logic related to typed arrays
and clobbering in general. For example, PutByOffset/PutStructure are not
clobber-world so they can be handled by most default cases in CSE. Also,
It's better to use the 'Class_field' notation for typed arrays now that
they no longer involve magical descriptor thingies.

  • bytecode/SpeculatedType.h:
  • dfg/DFGAbstractHeap.h:
  • dfg/DFGAbstractInterpreterInlines.h:

(JSC::DFG::::executeEffects):

  • dfg/DFGArrayMode.h:

(JSC::DFG::neverNeedsStorage):

  • dfg/DFGCSEPhase.cpp:

(JSC::DFG::CSEPhase::getByValLoadElimination):
(JSC::DFG::CSEPhase::getByOffsetLoadElimination):
(JSC::DFG::CSEPhase::getPropertyStorageLoadElimination):
(JSC::DFG::CSEPhase::checkArrayElimination):
(JSC::DFG::CSEPhase::getIndexedPropertyStorageLoadElimination):
(JSC::DFG::CSEPhase::getTypedArrayByteOffsetLoadElimination):
(JSC::DFG::CSEPhase::performNodeCSE):

  • dfg/DFGClobberize.h:

(JSC::DFG::clobberize):

  • dfg/DFGFixupPhase.cpp:

(JSC::DFG::FixupPhase::fixupNode):
(JSC::DFG::FixupPhase::attemptToMakeGetTypedArrayByteLength):
(JSC::DFG::FixupPhase::convertToGetArrayLength):
(JSC::DFG::FixupPhase::attemptToMakeGetTypedArrayByteOffset):

  • dfg/DFGNodeType.h:
  • dfg/DFGPredictionPropagationPhase.cpp:

(JSC::DFG::PredictionPropagationPhase::propagate):

  • dfg/DFGSafeToExecute.h:

(JSC::DFG::safeToExecute):

  • dfg/DFGSpeculativeJIT.cpp:

(JSC::DFG::SpeculativeJIT::compileGetTypedArrayByteOffset):

  • dfg/DFGSpeculativeJIT.h:
  • dfg/DFGSpeculativeJIT32_64.cpp:

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

  • dfg/DFGSpeculativeJIT64.cpp:

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

  • dfg/DFGTypeCheckHoistingPhase.cpp:

(JSC::DFG::TypeCheckHoistingPhase::identifyRedundantStructureChecks):

  • runtime/ArrayBuffer.h:

(JSC::ArrayBuffer::offsetOfData):

  • runtime/Butterfly.h:

(JSC::Butterfly::offsetOfArrayBuffer):

  • runtime/IndexingHeader.h:

(JSC::IndexingHeader::offsetOfArrayBuffer):

LayoutTests:

Reviewed by Oliver Hunt.

  • fast/js/dfg-byteOffset-neuter.html: Added.
  • fast/js/dfg-byteOffset-neuter-expected.txt: Added.
  • fast/js/regress/ArrayBuffer-Int32Array-byteOffset-expected.txt: Added.
  • fast/js/regress/ArrayBuffer-Int32Array-byteOffset.html: Added.
  • fast/js/regress/script-tests/ArrayBuffer-Int32Array-byteOffset.js: Added.
  • fast/js/script-tests/dfg-byteOffset-neuter.js: Added.

(foo):

3:40 PM Changeset in webkit [154304] by fpizlo@apple.com
  • 3 edits
    3 adds in trunk

<https://webkit.org/b/119994> DFG new Array() inlining could get confused about global objects

Reviewed by Geoffrey Garen.

Source/JavaScriptCore:

  • dfg/DFGByteCodeParser.cpp:

(JSC::DFG::ByteCodeParser::handleConstantInternalFunction):

LayoutTests:

  • fast/js/dfg-cross-global-object-new-array.html: Added.
  • fast/js/dfg-cross-global-object-new-array-expected.txt: Added.
  • fast/js/script-tests/dfg-cross-global-object-new-array.js: Added.

(foo):
(runTest):
(doit):

3:36 PM Changeset in webkit [154303] by msaboff@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

https://bugs.webkit.org/show_bug.cgi?id=119995
Start removing custom implementations of getOwnPropertyDescriptor

Patch by Gavin Barraclough <barraclough@apple.com> on 2013-08-18
Reviewed by Oliver Hunt.

This can now typically implemented in terms of getOwnPropertySlot.
Add a macro to PropertyDescriptor to define an implementation of GOPD in terms of GOPS.
Switch over most classes in JSC & the WebCore bindings generator to use this.

  • API/JSCallbackObjectFunctions.h:
  • debugger/DebuggerActivation.cpp:
  • runtime/Arguments.cpp:
  • runtime/ArrayConstructor.cpp:
  • runtime/ArrayPrototype.cpp:
  • runtime/BooleanPrototype.cpp:
  • runtime/DateConstructor.cpp:
  • runtime/DatePrototype.cpp:
  • runtime/ErrorPrototype.cpp:
  • runtime/JSActivation.cpp:
  • runtime/JSArray.cpp:
  • runtime/JSArrayBuffer.cpp:
  • runtime/JSArrayBufferView.cpp:
  • runtime/JSCell.cpp:
  • runtime/JSDataView.cpp:
  • runtime/JSDataViewPrototype.cpp:
  • runtime/JSFunction.cpp:
  • runtime/JSGenericTypedArrayViewInlines.h:
  • runtime/JSNotAnObject.cpp:
  • runtime/JSONObject.cpp:
  • runtime/JSObject.cpp:
  • runtime/NamePrototype.cpp:
  • runtime/NumberConstructor.cpp:
  • runtime/NumberPrototype.cpp:
  • runtime/ObjectConstructor.cpp:
    • Implement getOwnPropertySlot in terms of GET_OWN_PROPERTY_DESCRIPTOR_IMPL.
  • runtime/PropertyDescriptor.h:
    • Added GET_OWN_PROPERTY_DESCRIPTOR_IMPL macro.
  • runtime/PropertySlot.h:

(JSC::PropertySlot::isValue):
(JSC::PropertySlot::isGetter):
(JSC::PropertySlot::isCustom):
(JSC::PropertySlot::isCacheableValue):
(JSC::PropertySlot::isCacheableGetter):
(JSC::PropertySlot::isCacheableCustom):
(JSC::PropertySlot::attributes):
(JSC::PropertySlot::getterSetter):

  • Add accessors necessary to convert PropertySlot to descriptor.
  • runtime/RegExpConstructor.cpp:
  • runtime/RegExpMatchesArray.cpp:
  • runtime/RegExpMatchesArray.h:
  • runtime/RegExpObject.cpp:
  • runtime/RegExpPrototype.cpp:
  • runtime/StringConstructor.cpp:
  • runtime/StringObject.cpp:
    • Implement getOwnPropertySlot in terms of GET_OWN_PROPERTY_DESCRIPTOR_IMPL.
2:54 PM Changeset in webkit [154302] by Beth Dakin
  • 5 edits in trunk/Source/WebKit2

<https://webkit.org/b/120027> AXObjectCache's
accessibilityEnhancedUserInterfaceEnabled should be initialized on process
creation

Reviewed by Sam Weinig.

Right now we only call AXObjectCache::setEnhancedAccessibility() when AppKit sends
us a notification indicating that the value has changed. We should not have to
rely on that to properly initialize this value. It should be done with the
WebProcessCreationParamters.

  • Shared/WebProcessCreationParameters.cpp:

(WebKit::WebProcessCreationParameters::encode):
(WebKit::WebProcessCreationParameters::decode):

  • Shared/WebProcessCreationParameters.h:
  • UIProcess/mac/WebContextMac.mm:

(WebKit::WebContext::platformInitializeWebProcess):

  • WebProcess/mac/WebProcessMac.mm:

(WebKit::WebProcess::platformInitializeWebProcess):

2:54 PM Changeset in webkit [154301] by ap@apple.com
  • 4 edits in trunk

https://bugs.webkit.org/show_bug.cgi?id=119915
REGRESSION(r154144): ASSERTION FAILED: m_history->provisionalItem() == m_requestedHistoryItem.get()

Reviewed by Darin Adler.

Tools:

The issue was that we ended up having no CFNetwork cache in the testing session due
to an incorrect cache model. There is a number of things not implemented when it
comes to dynamically changing cache model as attempted by WebKitTestRunner, but
the easiest way to get this going is to initialize it to correct value upfront.

  • WebKitTestRunner/TestController.cpp: (WTR::TestController::initialize):

LayoutTests:

  • platform/mac-wk2/TestExpectations: Unskipping the failing test.
2:44 PM Changeset in webkit [154300] by barraclough@apple.com
  • 63 edits in trunk

https://bugs.webkit.org/show_bug.cgi?id=119995
Start removing custom implementations of getOwnPropertyDescriptor

Reviewed by Sam Weinig.

This can now typically implemented in terms of getOwnPropertySlot.
Add a macro to PropertyDescriptor to define an implementation of GOPD in terms of GOPS.
Switch over most classes in JSC & the WebCore bindings generator to use this.

Source/JavaScriptCore:

  • API/JSCallbackObjectFunctions.h:
  • debugger/DebuggerActivation.cpp:
  • runtime/Arguments.cpp:
  • runtime/ArrayConstructor.cpp:
  • runtime/ArrayPrototype.cpp:
  • runtime/BooleanPrototype.cpp:
  • runtime/DateConstructor.cpp:
  • runtime/DatePrototype.cpp:
  • runtime/ErrorPrototype.cpp:
  • runtime/JSActivation.cpp:
  • runtime/JSArray.cpp:
  • runtime/JSArrayBuffer.cpp:
  • runtime/JSArrayBufferView.cpp:
  • runtime/JSCell.cpp:
  • runtime/JSDataView.cpp:
  • runtime/JSDataViewPrototype.cpp:
  • runtime/JSFunction.cpp:
  • runtime/JSGenericTypedArrayViewInlines.h:
  • runtime/JSNotAnObject.cpp:
  • runtime/JSONObject.cpp:
  • runtime/JSObject.cpp:
  • runtime/NamePrototype.cpp:
  • runtime/NumberConstructor.cpp:
  • runtime/NumberPrototype.cpp:
  • runtime/ObjectConstructor.cpp:
    • Implement getOwnPropertySlot in terms of GET_OWN_PROPERTY_DESCRIPTOR_IMPL.
  • runtime/PropertyDescriptor.h:
    • Added GET_OWN_PROPERTY_DESCRIPTOR_IMPL macro.
  • runtime/PropertySlot.h:

(JSC::PropertySlot::isValue):
(JSC::PropertySlot::isGetter):
(JSC::PropertySlot::isCustom):
(JSC::PropertySlot::isCacheableValue):
(JSC::PropertySlot::isCacheableGetter):
(JSC::PropertySlot::isCacheableCustom):
(JSC::PropertySlot::attributes):
(JSC::PropertySlot::getterSetter):

  • Add accessors necessary to convert PropertySlot to descriptor.
  • runtime/RegExpConstructor.cpp:
  • runtime/RegExpMatchesArray.cpp:
  • runtime/RegExpMatchesArray.h:
  • runtime/RegExpObject.cpp:
  • runtime/RegExpPrototype.cpp:
  • runtime/StringConstructor.cpp:
  • runtime/StringObject.cpp:
    • Implement getOwnPropertySlot in terms of GET_OWN_PROPERTY_DESCRIPTOR_IMPL.

Source/WebCore:

  • bindings/js/JSCSSStyleDeclarationCustom.cpp:
  • bindings/js/JSHTMLAppletElementCustom.cpp:
  • bindings/js/JSHTMLEmbedElementCustom.cpp:
  • bindings/js/JSHTMLObjectElementCustom.cpp:
  • bindings/js/JSHistoryCustom.cpp:

(WebCore::JSHistory::getOwnPropertySlotDelegate):

  • bindings/js/JSLocationCustom.cpp:

(WebCore::JSLocation::getOwnPropertySlotDelegate):

  • bindings/js/JSWorkerGlobalScopeCustom.cpp:
    • Remove getOwnPropertyDescriptorDelegate methods, Change attributes of cross-frame access properties in JSHistory/JSLocation to prevent properties from being redefined.
  • bindings/scripts/CodeGeneratorJS.pm:

(GenerateHeader):
(GenerateImplementation):
(GenerateConstructorHelperMethods):

  • Implement getOwnPropertySlot in terms of GET_OWN_PROPERTY_DESCRIPTOR_IMPL.
  • bindings/scripts/test/JS/JSTestActiveDOMObject.cpp:
  • bindings/scripts/test/JS/JSTestCustomNamedGetter.cpp:
  • bindings/scripts/test/JS/JSTestEventConstructor.cpp:
  • bindings/scripts/test/JS/JSTestEventTarget.cpp:
  • bindings/scripts/test/JS/JSTestException.cpp:
  • bindings/scripts/test/JS/JSTestInterface.cpp:
  • bindings/scripts/test/JS/JSTestMediaQueryListListener.cpp:
  • bindings/scripts/test/JS/JSTestNamedConstructor.cpp:
  • bindings/scripts/test/JS/JSTestNode.cpp:
  • bindings/scripts/test/JS/JSTestObj.cpp:
  • bindings/scripts/test/JS/JSTestOverloadedConstructors.cpp:
  • bindings/scripts/test/JS/JSTestSerializedScriptValueInterface.cpp:
  • bindings/scripts/test/JS/JSTestTypedefs.cpp:
    • Update test expectations.

LayoutTests:

  • http/tests/security/xss-DENIED-defineProperty-expected.txt:
    • Remove erroneous error messages - cross frame access to reload is allowed - it's just read-only, non-configurable.
2:39 PM Changeset in webkit [154299] by benjamin@webkit.org
  • 5 edits in trunk/Source/WebCore

<https://webkit.org/b/119936> Fix some encapsulation issues of RuleSet

Reviewed by Darin Adler.

None of the attributes of RuleSet should be modified directly.

  • css/DocumentRuleSets.cpp:

(WebCore::DocumentRuleSets::initUserStyle):

  • css/ElementRuleCollector.cpp:

(WebCore::ElementRuleCollector::collectMatchingRulesForRegion):

  • css/RuleSet.h:

(WebCore::RuleSet::RuleSetSelectorPair::RuleSetSelectorPair):
(WebCore::RuleSet::regionSelectorsAndRuleSets):
(WebCore::RuleSet::ruleCount):

  • css/StyleResolver.cpp:

(WebCore::StyleResolver::checkRegionStyle):

2:26 PM Changeset in webkit [154298] by msaboff@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

https://bugs.webkit.org/show_bug.cgi?id=120020 Change Set 154207 causes wrong register to be used for 32 bit tests

Reviewed by Benjamin Poulain.

Change branshTest32 to only use the byte for 8 bit test on the lower 4 registers.
Registers 4 through 7 as byte regisers are ah, ch, dh and bh instead of sp, bp, si and di.

  • assembler/MacroAssemblerX86Common.h:

(JSC::MacroAssemblerX86Common::branchTest32):

  • dfg/DFGSpeculativeJIT32_64.cpp:

(JSC::DFG::SpeculativeJIT::fillSpeculateCell):

2:09 PM Changeset in webkit [154297] by benjamin@webkit.org
  • 3 edits in trunk/Source/WebCore

<https://webkit.org/b/119937> Remove ElementRuleCollector's m_behaviorAtBoundary

Reviewed by Darin Adler.

The value DoesNotCrossBoundary is the default behavior boundary of SelectorChecker,
and it is never changed by ElementRuleCollector.

  • css/ElementRuleCollector.cpp:

(WebCore::ElementRuleCollector::collectMatchingRules):
(WebCore::ElementRuleCollector::ruleMatches):

  • css/ElementRuleCollector.h:

(WebCore::ElementRuleCollector::ElementRuleCollector):

2:07 PM Changeset in webkit [154296] by benjamin@webkit.org
  • 2 edits in trunk/Source/WebCore

<https://webkit.org/b/119934> Remove a repeated "private:" from ElementRuleCollector

Reviewed by Darin Adler.

  • css/ElementRuleCollector.h:
1:49 PM Changeset in webkit [154295] by jer.noble@apple.com
  • 2 edits in trunk/LayoutTests

<https://bugs.webkit.org/show_bug.cgi?id=120025> REGRESSION (r154254): fast/frames/frameset-frameborder-inheritance.html failing on Apple MountainLion Debug WK1 (Tests)

Unreviewed gardening. Add failing test to TestExpectations.

  • platform/mac/TestExpectations:
1:38 PM Changeset in webkit [154294] by Joseph Pecoraro
  • 13 edits in trunk/Source/WTF

<https://webkit.org/b/119905> [iOS] Upstream Source/WTF

Reviewed by Benjamin Poulain.

Upstream iOS WebKit Source/WTF.

  • Configurations/Base.xcconfig:

JavaScriptCore.framework is a public framework.

  • wtf/Assertions.h:

Define an export macro for iOS projects just including <wtf/Assertions.h>.

  • wtf/Platform.h:
  • wtf/FeatureDefines.h:

iOS ENABLE and USE defines.

  • wtf/MainThread.h:
  • wtf/mac/MainThreadMac.mm:

(WTF::initializeApplicationUIThreadIdentifier):
(WTF::initializeWebThreadIdentifier):
(WTF::canAccessThreadLocalDataForThread):

  • wtf/WeakPtr.h:

(WTF::WeakReference::get):
(WTF::WeakReference::clear):
Shared WebThread and MainThread access to thread local data.

  • wtf/WTFThreadData.cpp:

(WTF::WTFThreadData::WTFThreadData):
Shared WebThread and MainThread identifier tables.

  • wtf/ThreadSpecific.h:

(WTF::::replace):
Used later on so that WebThread can share the MainThread's thread global data.

  • wtf/text/StringStatics.cpp:

(WTF::AtomicString::init):
When USE(WEB_THREAD) assert AtomicString::init is initialized on the realMainThread.

  • wtf/unicode/CharacterNames.h:
  • wtf/unicode/icu/UnicodeIcu.h:

(WTF::Unicode::hasLineBreakingPropertyComplexContextOrIdeographic):
Minor iOS constants and functions used later by WebCore.

1:33 PM Changeset in webkit [154293] by Antti Koivisto
  • 2 edits in trunk/LayoutTests

Skip these failing tests pending fix:

svg/custom/bug78807.svg
svg/custom/use-invalid-style.svg

1:24 PM Changeset in webkit [154292] by jer.noble@apple.com
  • 2 edits in trunk/LayoutTests

Unreviewed gardening. Partial revert of r154283 which caused test failures on all Mac ports.

  • platform/mac/accessibility/lists-expected.txt:
12:43 PM Changeset in webkit [154291] by psolanki@apple.com
  • 5 edits in trunk/Source/WebCore

<https://webkit.org/b/120019> Document::visitedLinkState() should return a reference

Reviewed by Andreas Kling.

Document::m_visitedLinkState is never NULL so we can just return a reference. Also make it a const.

  • css/StyleResolver.cpp:

(WebCore::StyleResolver::State::initElement):

  • dom/Document.h:

(WebCore::Document::visitedLinkState):

  • history/CachedPage.cpp:

(WebCore::CachedPage::restore):

  • page/Page.cpp:

(WebCore::Page::allVisitedStateChanged):
(WebCore::Page::visitedStateChanged):

12:40 PM Changeset in webkit [154290] by oliver@apple.com
  • 15 edits
    3 adds in trunk

<https://webkit.org/b/119860> Crash during exception unwinding

Reviewed by Filip Pizlo.

Source/JavaScriptCore:

Add an "Unreachable" NodeType, and then rearrange op_throw and op_throw_reference_error
to plant Throw or ThrowReferenceError followed by a flush and then the Unreachable node.

We need this so that Throw and ThrowReferenceError no longer need to be treated as
terminals and the subsequent flush keeps the activation (and other registers) live.

  • dfg/DFGAbstractInterpreterInlines.h:

(JSC::DFG::::executeEffects):

  • dfg/DFGByteCodeParser.cpp:

(JSC::DFG::ByteCodeParser::parseBlock):

  • dfg/DFGClobberize.h:

(JSC::DFG::clobberize):

  • dfg/DFGFixupPhase.cpp:

(JSC::DFG::FixupPhase::fixupNode):

  • dfg/DFGNode.h:

(JSC::DFG::Node::isTerminal):

  • dfg/DFGNodeType.h:
  • dfg/DFGPredictionPropagationPhase.cpp:

(JSC::DFG::PredictionPropagationPhase::propagate):

  • dfg/DFGSafeToExecute.h:

(JSC::DFG::safeToExecute):

  • dfg/DFGSpeculativeJIT32_64.cpp:

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

  • dfg/DFGSpeculativeJIT64.cpp:

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

LayoutTests:

Add a test

  • fast/js/dfg-activation-register-overwritten-in-throw-expected.txt: Added.
  • fast/js/dfg-activation-register-overwritten-in-throw.html: Added.
  • fast/js/script-tests/dfg-activation-register-overwritten-in-throw.js: Added.

(g):

12:34 PM Changeset in webkit [154289] by rniwa@webkit.org
  • 2 edits in trunk/Source/WebCore
ASSERTION FAILED: !node
node->isShadowRoot() in WebCore::EventRetargeter::eventTargetRespectingTargetRules

https://bugs.webkit.org/show_bug.cgi?id=119720

Reviewed by Andy Estes.

Merge https://chromium.googlesource.com/chromium/blink/+/4ce9bfbf54410179cd0f18b3d1a912045fc0ec3d

  • dom/EventRetargeter.h:

(WebCore::EventRetargeter::eventTargetRespectingTargetRules):

12:11 PM Changeset in webkit [154288] by Darin Adler
  • 2 edits in trunk/Source/WebCore

<https://webkit.org/b/120013> Tighten up logic in HTMLTableRowsCollection

Reviewed by Andy Estes.

I was looking for incorrect uses of hasLocalName in places where hasTagName should be used.
The use in HTMLTableRowsCollection looked like that kind of mistake, but when I tried to
make a test case to show the mistake, I found I could not. So I wrote assertions to restate
what I learned, and removed an unneeded null check and tightened up the code a bit. This
should make code size slightly smaller.

  • html/HTMLTableRowsCollection.cpp:

(WebCore::assertRowIsInTable): Added. Asserts that the row's position in the table is consistent
with the invariants of how the collection class works. A row that is processed here would have
to be an immediate child of the table, or an immediate child of a table section that in turn is
an immediate child of the table.
(WebCore::isInSection): Added. Replaces the three more-specific helper functions. Unlike those,
this does not do a null check.
(WebCore::HTMLTableRowsCollection::rowAfter): Changed to use the two new functions.

11:28 AM Changeset in webkit [154287] by commit-queue@webkit.org
  • 7 edits in trunk/Source/JavaScriptCore

<https://webkit.org/b/120008> [GTK][ARM] javascriptcore compilation is broken

Patch by Víctor Manuel Jáquez Leal <vjaquez@igalia.com> on 2013-08-19
Reviewed by Oliver Hunt.

Guard the compilation of these files only if DFG_JIT is enabled.

  • dfg/DFGDesiredTransitions.cpp:
  • dfg/DFGDesiredTransitions.h:
  • dfg/DFGDesiredWeakReferences.cpp:
  • dfg/DFGDesiredWeakReferences.h:
  • dfg/DFGDesiredWriteBarriers.cpp:
  • dfg/DFGDesiredWriteBarriers.h:
11:09 AM Changeset in webkit [154286] by psolanki@apple.com
  • 103 edits in trunk/Source

<https://webkit.org/b/119918> Frame::selection() should return a reference

Reviewed by Darin Adler.

m_selection is never NULL so return a reference from Frame::selection(). Also removed some
unnecessary null checks and assert diff ts exposed as a result.

Source/WebCore:

  • accessibility/AccessibilityRenderObject.cpp:

(WebCore::AccessibilityRenderObject::selection):
(WebCore::AccessibilityRenderObject::setSelectedTextRange):
(WebCore::AccessibilityRenderObject::isFocused):
(WebCore::AccessibilityRenderObject::setSelectedVisiblePositionRange):
(WebCore::AccessibilityRenderObject::handleActiveDescendantChanged):

  • accessibility/ios/WebAccessibilityObjectWrapperIOS.mm:

(-[WebAccessibilityObjectWrapper accessibilityModifySelection:increase:]):
(-[WebAccessibilityObjectWrapper accessibilityMoveSelectionToMarker:]):
(-[WebAccessibilityObjectWrapper _convertToNSRange:]):
(-[WebAccessibilityObjectWrapper _convertToDOMRange:]):

  • accessibility/mac/WebAccessibilityObjectWrapperMac.mm:

(-[WebAccessibilityObjectWrapper accessibilitySetValue:forAttribute:]):

  • css/SelectorChecker.cpp:

(WebCore::SelectorChecker::isFrameFocused):

  • dom/CharacterData.cpp:

(WebCore::CharacterData::setDataAndUpdate):

  • dom/Document.cpp:

(WebCore::Document::nodeChildrenWillBeRemoved):
(WebCore::Document::nodeWillBeRemoved):

  • dom/Element.cpp:

(WebCore::Element::updateFocusAppearance):

  • editing/AlternativeTextController.cpp:

(WebCore::AlternativeTextController::stopPendingCorrection):
(WebCore::AlternativeTextController::applyAlternativeTextToRange):
(WebCore::AlternativeTextController::applyAutocorrectionBeforeTypingIfAppropriate):
(WebCore::AlternativeTextController::respondToUnappliedSpellCorrection):
(WebCore::AlternativeTextController::timerFired):
(WebCore::AlternativeTextController::respondToChangedSelection):

  • editing/DeleteButtonController.cpp:

(WebCore::DeleteButtonController::respondToChangedSelection):
(WebCore::DeleteButtonController::enable):
(WebCore::DeleteButtonController::deleteTarget):

  • editing/DeleteSelectionCommand.cpp:

(WebCore::DeleteSelectionCommand::calculateTypingStyleAfterDelete):

  • editing/DictationCommand.cpp:

(WebCore::DictationCommand::insertText):

  • editing/EditCommand.cpp:

(WebCore::EditCommand::EditCommand):

  • editing/EditingStyle.cpp:

(WebCore::EditingStyle::mergeTypingStyle):

  • editing/Editor.cpp:

(WebCore::Editor::selectionForCommand):
(WebCore::Editor::canEdit):
(WebCore::Editor::canEditRichly):
(WebCore::Editor::canDHTMLCut):
(WebCore::Editor::canDHTMLCopy):
(WebCore::Editor::canCopy):
(WebCore::Editor::canDelete):
(WebCore::Editor::canSmartCopyOrDelete):
(WebCore::Editor::deleteWithDirection):
(WebCore::Editor::deleteSelectionWithSmartDelete):
(WebCore::Editor::replaceSelectionWithFragment):
(WebCore::Editor::selectedRange):
(WebCore::Editor::tryDHTMLCopy):
(WebCore::Editor::tryDHTMLCut):
(WebCore::Editor::hasBidiSelection):
(WebCore::Editor::selectionUnorderedListState):
(WebCore::Editor::selectionOrderedListState):
(WebCore::Editor::increaseSelectionListLevel):
(WebCore::Editor::increaseSelectionListLevelOrdered):
(WebCore::Editor::increaseSelectionListLevelUnordered):
(WebCore::Editor::decreaseSelectionListLevel):
(WebCore::Editor::findEventTargetFromSelection):
(WebCore::Editor::applyStyle):
(WebCore::Editor::applyParagraphStyle):
(WebCore::Editor::applyStyleToSelection):
(WebCore::Editor::applyParagraphStyleToSelection):
(WebCore::Editor::selectionStartHasStyle):
(WebCore::Editor::selectionHasStyle):
(WebCore::Editor::selectionStartCSSPropertyValue):
(WebCore::Editor::appliedEditing):
(WebCore::Editor::insertTextWithoutSendingTextEvent):
(WebCore::Editor::insertLineBreak):
(WebCore::Editor::insertParagraphSeparator):
(WebCore::Editor::cut):
(WebCore::Editor::copy):
(WebCore::Editor::paste):
(WebCore::Editor::baseWritingDirectionForSelectionStart):
(WebCore::Editor::selectComposition):
(WebCore::Editor::setComposition):
(WebCore::Editor::ignoreSpelling):
(WebCore::Editor::learnSpelling):
(WebCore::Editor::advanceToNextMisspelling):
(WebCore::Editor::misspelledWordAtCaretOrRange):
(WebCore::Editor::isSelectionUngrammatical):
(WebCore::Editor::guessesForMisspelledOrUngrammatical):
(WebCore::Editor::markMisspellingsAfterTypingToWord):
(WebCore::Editor::isSpellCheckingEnabledInFocusedNode):
(WebCore::Editor::markAndReplaceFor):
(WebCore::Editor::updateMarkersForWordsAffectedByEditing):
(WebCore::Editor::revealSelectionAfterEditingOperation):
(WebCore::Editor::getCompositionSelection):
(WebCore::Editor::transpose):
(WebCore::Editor::changeSelectionAfterCommand):
(WebCore::Editor::selectedText):
(WebCore::Editor::computeAndSetTypingStyle):
(WebCore::Editor::findString):
(WebCore::Editor::respondToChangedSelection):
(WebCore::Editor::selectionStartHasMarkerFor):
(WebCore::Editor::toggleOverwriteModeEnabled):

  • editing/EditorCommand.cpp:

(WebCore::executeToggleStyleInList):
(WebCore::expandSelectionToGranularity):
(WebCore::stateTextWritingDirection):
(WebCore::executeDelete):
(WebCore::executeDeleteToMark):
(WebCore::executeMoveBackward):
(WebCore::executeMoveBackwardAndModifySelection):
(WebCore::executeMoveDown):
(WebCore::executeMoveDownAndModifySelection):
(WebCore::executeMoveForward):
(WebCore::executeMoveForwardAndModifySelection):
(WebCore::executeMoveLeft):
(WebCore::executeMoveLeftAndModifySelection):
(WebCore::executeMovePageDown):
(WebCore::executeMovePageDownAndModifySelection):
(WebCore::executeMovePageUp):
(WebCore::executeMovePageUpAndModifySelection):
(WebCore::executeMoveRight):
(WebCore::executeMoveRightAndModifySelection):
(WebCore::executeMoveToBeginningOfDocument):
(WebCore::executeMoveToBeginningOfDocumentAndModifySelection):
(WebCore::executeMoveToBeginningOfLine):
(WebCore::executeMoveToBeginningOfLineAndModifySelection):
(WebCore::executeMoveToBeginningOfParagraph):
(WebCore::executeMoveToBeginningOfParagraphAndModifySelection):
(WebCore::executeMoveToBeginningOfSentence):
(WebCore::executeMoveToBeginningOfSentenceAndModifySelection):
(WebCore::executeMoveToEndOfDocument):
(WebCore::executeMoveToEndOfDocumentAndModifySelection):
(WebCore::executeMoveToEndOfSentence):
(WebCore::executeMoveToEndOfSentenceAndModifySelection):
(WebCore::executeMoveToEndOfLine):
(WebCore::executeMoveToEndOfLineAndModifySelection):
(WebCore::executeMoveToEndOfParagraph):
(WebCore::executeMoveToEndOfParagraphAndModifySelection):
(WebCore::executeMoveParagraphBackwardAndModifySelection):
(WebCore::executeMoveParagraphForwardAndModifySelection):
(WebCore::executeMoveUp):
(WebCore::executeMoveUpAndModifySelection):
(WebCore::executeMoveWordBackward):
(WebCore::executeMoveWordBackwardAndModifySelection):
(WebCore::executeMoveWordForward):
(WebCore::executeMoveWordForwardAndModifySelection):
(WebCore::executeMoveWordLeft):
(WebCore::executeMoveWordLeftAndModifySelection):
(WebCore::executeMoveWordRight):
(WebCore::executeMoveWordRightAndModifySelection):
(WebCore::executeMoveToLeftEndOfLine):
(WebCore::executeMoveToLeftEndOfLineAndModifySelection):
(WebCore::executeMoveToRightEndOfLine):
(WebCore::executeMoveToRightEndOfLineAndModifySelection):
(WebCore::executeSelectAll):
(WebCore::executeSelectToMark):
(WebCore::executeSetMark):
(WebCore::executeSwapWithMark):
(WebCore::executeUnselect):
(WebCore::enabledInRichlyEditableText):
(WebCore::enabledRangeInEditableText):
(WebCore::enabledRangeInRichlyEditableText):
(WebCore::valueFormatBlock):

  • editing/FrameSelection.cpp:

(WebCore::FrameSelection::setSelection):
(WebCore::FrameSelection::selectFrameElementInParentIfFullySelected):

  • editing/InsertLineBreakCommand.cpp:

(WebCore::InsertLineBreakCommand::doApply):

  • editing/InsertTextCommand.cpp:

(WebCore::InsertTextCommand::doApply):

  • editing/ModifySelectionListLevel.cpp:

(WebCore::IncreaseSelectionListLevelCommand::canIncreaseSelectionListLevel):
(WebCore::DecreaseSelectionListLevelCommand::canDecreaseSelectionListLevel):

  • editing/RemoveFormatCommand.cpp:

(WebCore::RemoveFormatCommand::doApply):

  • editing/ReplaceSelectionCommand.cpp:

(WebCore::ReplaceSelectionCommand::doApply):

  • editing/SetSelectionCommand.cpp:

(WebCore::SetSelectionCommand::doApply):
(WebCore::SetSelectionCommand::doUnapply):

  • editing/SpellingCorrectionCommand.cpp:

(WebCore::SpellingCorrectionCommand::doApply):

  • editing/TextInsertionBaseCommand.cpp:

(WebCore::TextInsertionBaseCommand::applyTextInsertionCommand):

  • editing/TypingCommand.cpp:

(WebCore::TypingCommand::deleteSelection):
(WebCore::TypingCommand::updateSelectionIfDifferentFromCurrentSelection):
(WebCore::TypingCommand::insertText):
(WebCore::TypingCommand::deleteKeyPressed):
(WebCore::TypingCommand::forwardDeleteKeyPressed):

  • editing/ios/EditorIOS.mm:

(WebCore::Editor::setTextAlignmentForChangedBaseWritingDirection):
(WebCore::styleForSelectionStart):
(WebCore::Editor::fontForSelection):

  • editing/mac/EditorMac.mm:

(WebCore::styleForSelectionStart):
(WebCore::Editor::fontForSelection):
(WebCore::Editor::canCopyExcludingStandaloneImages):
(WebCore::Editor::readSelectionFromPasteboard):

  • html/HTMLAnchorElement.cpp:

(WebCore::HTMLAnchorElement::defaultEventHandler):
(WebCore::HTMLAnchorElement::setActive):

  • html/HTMLInputElement.cpp:

(WebCore::HTMLInputElement::updateFocusAppearance):

  • html/HTMLTextAreaElement.cpp:

(WebCore::HTMLTextAreaElement::updateFocusAppearance):
(WebCore::HTMLTextAreaElement::handleBeforeTextInsertedEvent):

  • html/HTMLTextFormControlElement.cpp:

(WebCore::HTMLTextFormControlElement::setSelectionRange):
(WebCore::HTMLTextFormControlElement::computeSelectionStart):
(WebCore::HTMLTextFormControlElement::computeSelectionEnd):
(WebCore::HTMLTextFormControlElement::computeSelectionDirection):
(WebCore::HTMLTextFormControlElement::selectionChanged):

  • html/TextFieldInputType.cpp:

(WebCore::TextFieldInputType::handleBeforeTextInsertedEvent):

  • loader/FrameLoader.cpp:

(WebCore::FrameLoader::clear):

  • loader/archive/cf/LegacyWebArchive.cpp:

(WebCore::LegacyWebArchive::createFromSelection):

  • page/ContextMenuController.cpp:

(WebCore::insertUnicodeCharacter):
(WebCore::ContextMenuController::contextMenuItemSelected):
(WebCore::selectionContainsPossibleWord):
(WebCore::ContextMenuController::populate):
(WebCore::ContextMenuController::checkOrEnableIfNeeded):

  • page/DOMSelection.cpp:

(WebCore::selectionShadowAncestor):
(WebCore::DOMSelection::visibleSelection):
(WebCore::DOMSelection::isCollapsed):
(WebCore::DOMSelection::type):
(WebCore::DOMSelection::rangeCount):
(WebCore::DOMSelection::collapse):
(WebCore::DOMSelection::collapseToEnd):
(WebCore::DOMSelection::collapseToStart):
(WebCore::DOMSelection::empty):
(WebCore::DOMSelection::setBaseAndExtent):
(WebCore::DOMSelection::setPosition):
(WebCore::DOMSelection::modify):
(WebCore::DOMSelection::extend):
(WebCore::DOMSelection::getRangeAt):
(WebCore::DOMSelection::removeAllRanges):
(WebCore::DOMSelection::addRange):
(WebCore::DOMSelection::deleteFromDocument):
(WebCore::DOMSelection::containsNode):
(WebCore::DOMSelection::toString):

  • page/DragController.cpp:

(WebCore::DragController::dragIsMove):
(WebCore::setSelectionToDragCaret):
(WebCore::DragController::concludeEditDrag):
(WebCore::DragController::draggableElement):
(WebCore::selectElement):
(WebCore::dragLocForSelectionDrag):
(WebCore::DragController::startDrag):

  • page/DragController.h:
  • page/EventHandler.cpp:

(WebCore::setSelectionIfNeeded):
(WebCore::EventHandler::updateSelectionForMouseDownDispatchingSelectStart):
(WebCore::EventHandler::handleMousePressEventDoubleClick):
(WebCore::EventHandler::handleMousePressEventSingleClick):
(WebCore::EventHandler::updateSelectionForMouseDrag):
(WebCore::EventHandler::lostMouseCapture):
(WebCore::EventHandler::handleMouseReleaseEvent):
(WebCore::nodeIsNotBeingEdited):
(WebCore::EventHandler::selectCursor):
(WebCore::EventHandler::handleMousePressEvent):
(WebCore::EventHandler::handleMouseDoubleClickEvent):
(WebCore::EventHandler::dispatchMouseEvent):
(WebCore::EventHandler::sendContextMenuEvent):
(WebCore::EventHandler::sendContextMenuEventForKey):
(WebCore::handleKeyboardSelectionMovement):
(WebCore::EventHandler::handleDrag):

  • page/FocusController.cpp:

(WebCore::FocusController::setFocusedFrame):
(WebCore::FocusController::setFocused):
(WebCore::FocusController::advanceFocusInDocumentOrder):
(WebCore::clearSelectionIfNeeded):
(WebCore::FocusController::setActive):

  • page/Frame.cpp:

(WebCore::Frame::dragImageForSelection):

  • page/Frame.h:

(WebCore::Frame::selection):

  • page/FrameView.cpp:

(WebCore::FrameView::performPostLayoutTasks):
(WebCore::FrameView::paintContentsForSnapshot):

  • page/Page.cpp:

(WebCore::Page::findString):
(WebCore::Page::findStringMatchingRanges):
(WebCore::Page::selection):

  • page/mac/FrameMac.mm:

(WebCore::Frame::dragImageForSelection):

  • page/mac/FrameSnapshottingMac.mm:

(WebCore::selectionImage):

  • page/win/FrameWin.cpp:

(WebCore::imageFromSelection):
(WebCore::Frame::dragImageForSelection):

  • platform/ios/PasteboardIOS.mm:

(WebCore::Pasteboard::documentFragmentForPasteboardItemAtIndex):

  • rendering/HitTestResult.cpp:

(WebCore::HitTestResult::isSelected):

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::paintCaret):

  • rendering/RenderImage.cpp:

(WebCore::RenderImage::paintAreaElementFocusRing):

  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::scrollTo):

  • rendering/RenderListBox.cpp:

(WebCore::RenderListBox::paintItemForeground):
(WebCore::RenderListBox::paintItemBackground):

  • rendering/RenderObject.cpp:

(WebCore::RenderObject::selectionBackgroundColor):
(WebCore::RenderObject::selectionColor):

  • rendering/RenderTextControlSingleLine.cpp:

(WebCore::RenderTextControlSingleLine::capsLockStateMayHaveChanged):

  • rendering/RenderTheme.cpp:

(WebCore::RenderTheme::isFocused):

  • rendering/RenderThemeWin.cpp:

(WebCore::RenderThemeWin::adjustSearchFieldStyle):

  • rendering/RenderTreeAsText.cpp:

(WebCore::writeSelection):

  • rendering/RenderView.cpp:

(WebCore::RenderView::setSelection):

  • svg/SVGSVGElement.cpp:

(WebCore::SVGSVGElement::deselectAll):

  • svg/SVGTextContentElement.cpp:

(WebCore::SVGTextContentElement::selectSubString):

  • testing/Internals.cpp:

(WebCore::Internals::absoluteCaretBounds):
(WebCore::Internals::selectionBounds):

Source/WebKit/blackberry:

  • Api/InRegionScroller.cpp:

(BlackBerry::WebKit::InRegionScrollerPrivate::setLayerScrollPosition):

  • WebKitSupport/DatePickerClient.cpp:

(BlackBerry::WebKit::DatePickerClient::setValueAndClosePopup):

  • WebKitSupport/InPageSearchManager.cpp:

(BlackBerry::WebKit::InPageSearchManager::findNextString):
(BlackBerry::WebKit::InPageSearchManager::clearTextMatches):

  • WebKitSupport/InputHandler.cpp:

(BlackBerry::WebKit::InputHandler::focusedNodeChanged):
(BlackBerry::WebKit::InputHandler::requestSpellingCheckingOptions):
(BlackBerry::WebKit::InputHandler::setElementUnfocused):
(BlackBerry::WebKit::InputHandler::setInputModeEnabled):
(BlackBerry::WebKit::InputHandler::setElementFocused):
(BlackBerry::WebKit::InputHandler::openDatePopup):
(BlackBerry::WebKit::InputHandler::ensureFocusTextElementVisible):
(BlackBerry::WebKit::InputHandler::selectionPosition):
(BlackBerry::WebKit::InputHandler::setSelection):
(BlackBerry::WebKit::InputHandler::deleteSelection):
(BlackBerry::WebKit::InputHandler::setRelativeCursorPosition):

  • WebKitSupport/SelectionHandler.cpp:

(BlackBerry::WebKit::SelectionHandler::cancelSelection):
(BlackBerry::WebKit::SelectionHandler::shouldUpdateSelectionOrCaretForPoint):
(BlackBerry::WebKit::SelectionHandler::setCaretPosition):
(BlackBerry::WebKit::SelectionHandler::extendSelectionToFieldBoundary):
(BlackBerry::WebKit::SelectionHandler::updateOrHandleInputSelection):
(BlackBerry::WebKit::SelectionHandler::setSelection):
(BlackBerry::WebKit::SelectionHandler::startCaretViewportRect):
(BlackBerry::WebKit::SelectionHandler::selectNextParagraph):
(BlackBerry::WebKit::SelectionHandler::expandSelectionToGranularity):
(BlackBerry::WebKit::SelectionHandler::selectObject):
(BlackBerry::WebKit::directionOfEnclosingBlock):
(BlackBerry::WebKit::SelectionHandler::selectionPositionChanged):
(BlackBerry::WebKit::SelectionHandler::notifyCaretPositionChangedIfNeeded):
(BlackBerry::WebKit::SelectionHandler::caretPositionChanged):
(BlackBerry::WebKit::SelectionHandler::selectionContains):

  • WebKitSupport/SpellingHandler.cpp:

(BlackBerry::WebKit::SpellingHandler::spellCheckTextBlock):

Source/WebKit/efl:

  • WebCoreSupport/DumpRenderTreeSupportEfl.cpp:

(DumpRenderTreeSupportEfl::selectionRectangle):
(DumpRenderTreeSupportEfl::firstRectForCharacterRange):
(DumpRenderTreeSupportEfl::selectedRange):

  • WebCoreSupport/EditorClientEfl.cpp:

(WebCore::EditorClientEfl::handleEditingKeyboardEvent):

  • ewk/ewk_frame.cpp:

(ewk_frame_text_selection_type_get):

Source/WebKit/gtk:

  • WebCoreSupport/ChromeClientGtk.cpp:

(WebKit::ChromeClient::paint):

  • WebCoreSupport/DumpRenderTreeSupportGtk.cpp:

(DumpRenderTreeSupportGtk::firstRectForCharacterRange):
(DumpRenderTreeSupportGtk::selectedRange):
(DumpRenderTreeSupportGtk::rectangleForSelection):

  • WebCoreSupport/EditorClientGtk.cpp:

(WebKit::collapseSelection):
(WebKit::setSelectionPrimaryClipboardIfNeeded):

  • webkit/webkitwebframe.cpp:

(webkit_web_frame_get_range_for_word_around_caret):

  • webkit/webkitwebview.cpp:

(getLocationForKeyboardGeneratedContextMenu):

Source/WebKit/mac:

  • Plugins/WebPluginController.mm:
  • WebView/WebFrame.mm:

(-[WebFrame _hasSelection]):
(-[WebFrame _rangeByAlteringCurrentSelection:FrameSelection::direction:granularity:]):
(-[WebFrame _selectionGranularity]):
(-[WebFrame _convertToNSRange:]):
(-[WebFrame _convertToDOMRange:]):
(-[WebFrame _insertParagraphSeparatorInQuotedContent]):
(-[WebFrame _typingStyle]):
(-[WebFrame _selectedNSRange]):
(-[WebFrame _selectNSRange:]):
(-[WebFrame _replaceSelectionWithFragment:selectReplacement:smartReplace:matchStyle:]):
(-[WebFrame _replaceSelectionWithText:selectReplacement:smartReplace:]):

  • WebView/WebHTMLRepresentation.mm:

(-[WebHTMLRepresentation currentForm]):

  • WebView/WebHTMLView.mm:

(-[WebHTMLView readSelectionFromPasteboard:]):
(-[WebHTMLView _selectedRange]):
(-[WebHTMLView _hasSelection]):
(-[WebHTMLView _hasSelectionOrInsertionPoint]):
(-[WebHTMLView _hasInsertionPoint]):
(-[WebHTMLView _isEditable]):
(-[WebHTMLView jumpToSelection:]):
(-[WebHTMLView validateUserInterfaceItemWithoutDelegate:]):
(-[WebHTMLView maintainsInactiveSelection]):
(isTextInput):
(isInPasswordField):
(-[WebHTMLView centerSelectionInVisibleArea:]):
(-[WebHTMLView _canSmartCopyOrDelete]):
(-[WebHTMLView _lookUpInDictionaryFromMenu:]):
(-[WebHTMLView _updateSelectionForInputManager]):
(-[WebHTMLView selectionRect]):
(-[WebHTMLView selectionTextRects]):
(-[WebHTMLView selectionImageRect]):
(-[WebHTMLView selectAll]):
(-[WebHTMLView deselectAll]):
(-[WebHTMLView selectedAttributedString]):

  • WebView/WebTextCompletionController.mm:

(-[WebTextCompletionController doCompletion]):

  • WebView/WebView.mm:

(-[WebView setSelectedDOMRange:affinity:]):
(-[WebView selectedDOMRange]):
(-[WebView selectionAffinity]):
(-[WebView setEditable:]):
(-[WebView _selectionIsCaret]):
(-[WebView _selectionIsAll]):

Source/WebKit/qt:

  • WebCoreSupport/DumpRenderTreeSupportQt.cpp:

(DumpRenderTreeSupportQt::selectedRange):
(DumpRenderTreeSupportQt::firstRectForCharacterRange):

  • WebCoreSupport/EditorClientQt.cpp:

(WebCore::EditorClientQt::respondToChangedSelection):
(WebCore::EditorClientQt::handleKeyboardEvent):

  • WebCoreSupport/QWebPageAdapter.cpp:

(QWebPageAdapter::hasSelection):
(QWebPageAdapter::selectedText):
(QWebPageAdapter::findText):
(QWebPageAdapter::inputMethodEvent):
(QWebPageAdapter::inputMethodQuery):

Source/WebKit/win:

  • WebFrame.cpp:

(WebFrame::currentForm):

  • WebView.cpp:

(WebView::updateFocusedAndActiveState):
(WebView::selectionRect):
(WebView::centerSelectionInVisibleArea):
(WebView::hasSelectedRange):
(WebView::replaceSelectionWithText):
(WebView::clearSelection):
(WebView::prepareCandidateWindow):
(WebView::onIMERequestCharPosition):
(WebView::onIMERequestReconvertString):
(WebView::firstRectForCharacterRangeForTesting):
(WebView::selectedRangeForTesting):

Source/WebKit/wince:

  • WebCoreSupport/EditorClientWinCE.cpp:

(WebKit::EditorClientWinCE::handleEditingKeyboardEvent):

Source/WebKit2:

  • WebProcess/WebCoreSupport/WebEditorClient.cpp:

(WebKit::WebEditorClient::updateGlobalSelection):

  • WebProcess/WebCoreSupport/gtk/WebEditorClientGtk.cpp:

(WebKit::collapseSelection):
(WebKit::WebEditorClient::updateGlobalSelection):

  • WebProcess/WebCoreSupport/mac/WebContextMenuClientMac.mm:

(WebKit::WebContextMenuClient::lookUpInDictionary):
(WebKit::WebContextMenuClient::searchWithSpotlight):

  • WebProcess/WebPage/FindController.cpp:

(WebKit::frameWithSelection):
(WebKit::FindController::updateFindUIAfterPageScroll):
(WebKit::FindController::getFindIndicatorBitmapAndRect):
(WebKit::FindController::getImageForFindMatch):
(WebKit::FindController::selectFindMatch):
(WebKit::FindController::updateFindIndicator):
(WebKit::FindController::drawRect):

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::editorState):
(WebKit::WebPage::scaledSnapshotWithOptions):
(WebKit::WebPage::centerSelectionInVisibleArea):
(WebKit::frameWithSelection):
(WebKit::WebPage::clearSelection):
(WebKit::WebPage::confirmComposition):
(WebKit::WebPage::setComposition):
(WebKit::WebPage::currentSelectionAsRange):

  • WebProcess/WebPage/mac/WebPageMac.mm:

(WebKit::WebPage::setComposition):
(WebKit::WebPage::insertText):
(WebKit::WebPage::insertDictatedText):
(WebKit::WebPage::getMarkedRange):
(WebKit::WebPage::getSelectedRange):
(WebKit::WebPage::getAttributedSubstringFromRange):
(WebKit::WebPage::characterIndexForPoint):
(WebKit::convertToRange):
(WebKit::WebPage::performDictionaryLookupAtLocation):
(WebKit::WebPage::readSelectionFromPasteboard):
(WebKit::WebPage::getStringSelectionForPasteboard):
(WebKit::WebPage::getDataSelectionForPasteboard):

10:51 AM Changeset in webkit [154285] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

<https://webkit.org/b/119679> Remove the cast-align warnings for ARM

Patch by Víctor Manuel Jáquez Leal <vjaquez@igalia.com> on 2013-08-19
Reviewed by Darin Adler.

While compiling WebKitGTK+ for ARM a lot of warnings of this form
where shown (gcc 4.7.3):

../../Source/WebCore/css/StylePropertySet.h: In member function 'const WebCore::StylePropertyMetadata* WebCore::ImmutableStylePropertySet::metadataArray() const':

10:42 AM Changeset in webkit [154284] by Antti Koivisto
  • 2 edits in trunk/Source/WebCore

<https://webkit.org/b/120014> REGRESSION(r154268): Some stylesheet media attribute tests failing

Reviewed by Dan Bernstein.

  • html/HTMLStyleElement.cpp:

(WebCore::HTMLStyleElement::parseAttribute): Always set the media on InlineStyleSheetOwner.

10:31 AM Changeset in webkit [154283] by Chris Fleizach
  • 23 edits in trunk

<https://webkit.org/b/119916> AX: WebKit is not exposing AXLanguage correctly

Reviewed by Darin Adler.

Source/WebCore:

Expose the AXLanguage attribute for all objects.

  • accessibility/mac/WebAccessibilityObjectWrapperMac.mm:

(-[WebAccessibilityObjectWrapper accessibilityAttributeNames]):

LayoutTests:

  • accessibility/transformed-element-expected.txt:
  • platform/mac/accessibility/aria-columnrowheaders-expected.txt:
  • platform/mac/accessibility/bounds-for-range-expected.txt:
  • platform/mac/accessibility/document-attributes-expected.txt:
  • platform/mac/accessibility/document-links-expected.txt:
  • platform/mac/accessibility/image-link-expected.txt:
  • platform/mac/accessibility/image-map2-expected.txt:
  • platform/mac/accessibility/internal-link-anchors-expected.txt:
  • platform/mac/accessibility/internal-link-anchors2-expected.txt:
  • platform/mac/accessibility/lists-expected.txt:
  • platform/mac/accessibility/plugin-expected.txt:
  • platform/mac/accessibility/radio-button-group-members-expected.txt:
  • platform/mac/accessibility/table-attributes-expected.txt:
  • platform/mac/accessibility/table-cell-spans-expected.txt:
  • platform/mac/accessibility/table-cells-expected.txt:
  • platform/mac/accessibility/table-detection-expected.txt:
  • platform/mac/accessibility/table-one-cell-expected.txt:
  • platform/mac/accessibility/table-sections-expected.txt:
  • platform/mac/accessibility/table-with-aria-role-expected.txt:
  • platform/mac/accessibility/table-with-rules-expected.txt:
10:08 AM Changeset in webkit [154282] by Brent Fulgham
  • 3 edits in trunk/Source/WebCore

[Windows] Unreviewed gardening.

  • WebCore.vcxproj/WebCore.vcxproj: Add missing header for easy access/editing.
  • WebCore.vcxproj/WebCore.vcxproj.filters: Ditto.
9:14 AM Changeset in webkit [154281] by Darin Adler
  • 348 edits in trunk/LayoutTests

Fix HTML executable bits

8:27 AM Changeset in webkit [154280] by allan.jensen@digia.com
  • 3 edits in trunk/Tools

REGRESSION(r154275): webkitpy tests failing
https://bugs.webkit.org/show_bug.cgi?id=120010

Reviewed by Jocelyn Turcotte.

Update unit-tests to tests the new search-path structure,
but reverting the architecture search path addition.

  • Scripts/webkitpy/port/qt.py:

(QtPort):
(QtPort.init):
(QtPort._generate_all_test_configurations):
(QtPort.qt_architecture):

  • Scripts/webkitpy/port/qt_unittest.py:

(QtPortTest):
(QtPortTest._assert_search_path):
(QtPortTest._assert_expectations_files):
(QtPortTest._qt_version):

6:59 AM Changeset in webkit [154279] by allan.jensen@digia.com
  • 2 edits in trunk/Tools

[Qt] Keep the qt-5.0-wk2 search path until the expectation migration is completed

Unreviewed meta gardening.

We need to keep using the qt-5.0-wk2 path until it is fully migrated.

  • Scripts/webkitpy/port/qt.py:

(QtPort._search_paths):

6:53 AM Changeset in webkit [154278] by allan.jensen@digia.com
  • 1 edit
    732 copies
    10 adds
    1 delete in trunk/LayoutTests

Moving expectations from Qt 5.0 WK2 to Qt WK2 - Part 3

Unreviewed gardening.

  • platform/qt-wk2/css3/compositing/effect-background-blend-mode-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/compositing/effect-background-blend-mode-expected.png.
  • platform/qt-wk2/css3/compositing/effect-background-blend-mode-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/compositing/effect-background-blend-mode-expected.txt.
  • platform/qt-wk2/css3/compositing/effect-background-blend-mode-stacking-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/compositing/effect-background-blend-mode-stacking-expected.png.
  • platform/qt-wk2/css3/compositing/should-have-compositing-layer-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/compositing/should-have-compositing-layer-expected.txt.
  • platform/qt-wk2/css3/css3-modsel-33-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/css3-modsel-33-expected.png.
  • platform/qt-wk2/css3/css3-modsel-35-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/css3-modsel-35-expected.png.
  • platform/qt-wk2/css3/css3-modsel-36-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/css3-modsel-36-expected.png.
  • platform/qt-wk2/css3/css3-modsel-37-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/css3-modsel-37-expected.png.
  • platform/qt-wk2/css3/filters/composited-during-animation-layertree-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/filters/composited-during-animation-layertree-expected.txt.
  • platform/qt-wk2/css3/filters/composited-during-transition-layertree-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/filters/composited-during-transition-layertree-expected.txt.
  • platform/qt-wk2/css3/filters/composited-reflected-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/filters/composited-reflected-expected.png.
  • platform/qt-wk2/css3/filters/composited-reflected-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/filters/composited-reflected-expected.txt.
  • platform/qt-wk2/css3/filters/custom/custom-filter-composite-source-atop-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/filters/custom/custom-filter-composite-source-atop-expected.png.
  • platform/qt-wk2/css3/filters/custom/missing-custom-filter-shader-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/filters/custom/missing-custom-filter-shader-expected.png.
  • platform/qt-wk2/css3/filters/filter-change-repaint-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/filters/filter-change-repaint-expected.png.
  • platform/qt-wk2/css3/filters/filter-repaint-blur-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/filters/filter-repaint-blur-expected.png.
  • platform/qt-wk2/css3/filters/filter-repaint-child-layers-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/filters/filter-repaint-child-layers-expected.png.
  • platform/qt-wk2/css3/filters/filter-repaint-shadow-clipped-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/filters/filter-repaint-shadow-clipped-expected.png.
  • platform/qt-wk2/css3/filters/filter-repaint-shadow-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/filters/filter-repaint-shadow-expected.png.
  • platform/qt-wk2/css3/filters/filter-repaint-shadow-rotated-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/filters/filter-repaint-shadow-rotated-expected.png.
  • platform/qt-wk2/css3/filters/filtered-compositing-descendant-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/filters/filtered-compositing-descendant-expected.txt.
  • platform/qt-wk2/css3/filters/multiple-filters-invalidation-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/filters/multiple-filters-invalidation-expected.png.
  • platform/qt-wk2/css3/filters/multiple-filters-invalidation-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/filters/multiple-filters-invalidation-expected.txt.
  • platform/qt-wk2/css3/flexbox/button-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/flexbox/button-expected.png.
  • platform/qt-wk2/css3/flexbox/flexbox-baseline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/flexbox/flexbox-baseline-expected.png.
  • platform/qt-wk2/css3/flexbox/flexbox-baseline-margins-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/flexbox/flexbox-baseline-margins-expected.png.
  • platform/qt-wk2/css3/flexbox/repaint-during-resize-no-flex-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/flexbox/repaint-during-resize-no-flex-expected.png.
  • platform/qt-wk2/css3/flexbox/repaint-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/flexbox/repaint-expected.png.
  • platform/qt-wk2/css3/flexbox/repaint-rtl-column-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/flexbox/repaint-rtl-column-expected.png.
  • platform/qt-wk2/css3/images/cross-fade-background-size-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/images/cross-fade-background-size-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-1-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-10-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-10-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-11-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-11-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-13-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-13-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-14-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-14-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-144-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-144-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-148-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-148-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-149-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-149-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-149b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-149b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-14b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-14b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-14c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-14c-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-14e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-14e-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-15-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-15-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-150-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-150-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-151-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-151-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-152-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-152-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-154-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-154-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-155-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-155-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-155a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-155a-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-155b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-155b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-155c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-155c-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-155d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-155d-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-156-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-156-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-156b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-156b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-156c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-156c-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-157-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-157-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-158-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-158-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-159-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-159-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-15b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-15b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-16-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-16-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-160-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-160-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-161-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-161-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-166-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-166-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-166a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-166a-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-167-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-167-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-167a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-167a-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-168-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-168-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-168a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-168a-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-169-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-169-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-169a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-169a-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-17-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-17-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-176-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-176-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-177a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-177a-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-18-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-18-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-181-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-181-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-183-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-183-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-184a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-184a-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-184b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-184b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-184c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-184c-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-184d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-184d-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-184e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-184e-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-184f-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-184f-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-18a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-18a-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-18b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-18b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-18c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-18c-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-19-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-19-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-19b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-19b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-2-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-20-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-20-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-21-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-21-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-21b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-21b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-21c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-21c-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-22-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-22-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-23-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-23-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-24-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-24-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-25-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-25-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-27-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-27-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-27a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-27a-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-27b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-27b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-28-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-28-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-28b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-28b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-29-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-29-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-29b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-29b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-30-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-30-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-31-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-31-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-32-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-32-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-33-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-33-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-34-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-34-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-35-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-35-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-36-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-36-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-37-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-37-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-38-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-38-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-39-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-39-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-39a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-39a-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-39b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-39b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-39c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-39c-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-3a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-3a-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-4-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-4-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-41-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-41-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-41a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-41a-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-42-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-42-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-42a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-42a-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-43-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-43-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-43b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-43b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-44-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-44-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-44b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-44b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-44c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-44c-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-44d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-44d-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-45-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-45-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-45b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-45b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-45c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-45c-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-46-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-46-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-46b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-46b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-5-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-5-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-54-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-54-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-55-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-55-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-56-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-56-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-59-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-59-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-6-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-6-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-60-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-60-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-61-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-61-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-62-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-62-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-63-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-63-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-64-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-64-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-65-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-65-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-66-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-66-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-66b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-66b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-67-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-67-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-68-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-68-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-69-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-69-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-7-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-7-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-70-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-70-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-72-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-72-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-72b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-72b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-73-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-73-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-73b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-73b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-74-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-74-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-74b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-74b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-75-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-75-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-75b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-75b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-76-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-76-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-76b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-76b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-77-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-77-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-77b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-77b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-78-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-78-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-78b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-78b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-79-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-79-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-7b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-7b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-8-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-8-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-80-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-80-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-81-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-81-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-81b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-81b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-82-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-82-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-82b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-82b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-83-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-83-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-87-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-87-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-87b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-87b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-88-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-88-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-88b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-88b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-9-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-9-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-90-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-90-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-90b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-90b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-d1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-d1-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-d1b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-d1b-expected.png.
  • platform/qt-wk2/css3/selectors3/html/css3-modsel-d2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-d2-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-1-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-10-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-10-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-100-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-100-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-100b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-100b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-101-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-101-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-101b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-101b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-102-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-102-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-102b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-102b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-103-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-103-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-103b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-103b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-104-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-104-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-104b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-104b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-105-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-105-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-105b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-105b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-106-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-106-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-106b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-106b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-107-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-107-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-107b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-107b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-108-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-108-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-108b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-108b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-109-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-109-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-109b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-109b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-11-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-11-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-110-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-110-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-110b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-110b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-111-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-111-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-111b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-111b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-112-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-112-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-112b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-112b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-113-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-113-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-113b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-113b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-114-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-114-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-114b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-114b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-115-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-115-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-115b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-115b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-116-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-116-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-116b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-116b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-117-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-117-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-117b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-117b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-118-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-118-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-119-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-119-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-120-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-120-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-121-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-121-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-122-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-122-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-123-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-123-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-123b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-123b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-124-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-124-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-124b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-124b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-125-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-125-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-125b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-125b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-126-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-126-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-126b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-126b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-127-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-127-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-127b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-127b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-128-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-128-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-128b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-128b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-129-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-129-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-129b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-129b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-13-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-13-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-130-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-130-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-130b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-130b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-131-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-131-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-131b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-131b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-132-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-132-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-132b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-132b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-133-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-133-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-133b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-133b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-134-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-134-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-134b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-134b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-135-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-135-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-135b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-135b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-136-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-136-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-136b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-136b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-137-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-137-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-137b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-137b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-138-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-138-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-138b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-138b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-139-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-139-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-139b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-139b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-14-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-14-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-140-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-140-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-140b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-140b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-141-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-141-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-141b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-141b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-142-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-142-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-142b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-142b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-143-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-143-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-143b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-143b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-144-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-144-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-145a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-145a-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-145b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-145b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-146a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-146a-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-146b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-146b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-147a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-147a-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-147b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-147b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-148-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-148-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-149-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-149-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-149b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-149b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-14b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-14b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-14c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-14c-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-14e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-14e-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-15-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-15-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-150-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-150-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-151-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-151-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-152-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-152-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-153-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-153-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-154-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-154-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-155-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-155-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-155a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-155a-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-155b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-155b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-155c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-155c-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-155d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-155d-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-156-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-156-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-156b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-156b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-156c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-156c-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-157-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-157-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-158-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-158-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-159-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-159-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-15b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-15b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-16-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-16-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-160-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-160-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-161-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-161-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-166-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-166-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-166a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-166a-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-167-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-167-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-167a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-167a-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-168-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-168-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-168a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-168a-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-169-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-169-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-169a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-169a-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-17-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-17-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-172a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-172a-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-172b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-172b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-173a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-173a-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-173b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-173b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-174a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-174a-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-174b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-174b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-176-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-176-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-177a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-177a-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-18-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-18-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-181-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-181-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-183-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-183-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-184a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-184a-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-184b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-184b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-184c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-184c-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-184d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-184d-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-184e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-184e-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-184f-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-184f-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-18a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-18a-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-18b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-18b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-18c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-18c-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-19-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-19-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-19b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-19b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-2-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-20-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-20-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-21-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-21-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-21b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-21b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-21c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-21c-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-22-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-22-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-23-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-23-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-24-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-24-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-25-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-25-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-27-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-27-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-27a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-27a-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-27b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-27b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-28-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-28-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-28b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-28b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-29-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-29-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-29b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-29b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-3-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-30-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-30-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-31-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-31-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-32-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-32-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-33-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-33-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-34-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-34-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-35-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-35-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-36-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-36-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-37-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-37-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-38-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-38-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-39-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-39-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-39a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-39a-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-39b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-39b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-39c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-39c-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-3a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-3a-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-4-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-4-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-41-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-41-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-41a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-41a-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-42-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-42-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-42a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-42a-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-43-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-43-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-43b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-43b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-44-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-44-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-44b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-44b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-44c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-44c-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-44d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-44d-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-45-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-45-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-45b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-45b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-45c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-45c-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-46-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-46-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-46b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-46b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-47-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-47-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-48-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-48-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-49-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-49-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-5-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-5-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-50-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-50-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-51-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-51-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-52-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-52-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-53-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-53-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-54-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-54-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-55-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-55-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-56-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-56-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-57-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-57-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-57b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-57b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-59-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-59-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-6-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-6-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-60-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-60-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-61-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-61-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-62-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-62-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-63-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-63-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-64-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-64-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-65-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-65-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-66-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-66-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-66b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-66b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-67-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-67-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-68-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-68-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-69-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-69-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-7-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-7-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-70-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-70-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-72-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-72-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-72b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-72b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-73-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-73-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-73b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-73b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-74-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-74-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-74b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-74b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-75-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-75-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-75b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-75b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-76-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-76-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-76b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-76b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-77-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-77-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-77b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-77b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-78-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-78-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-78b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-78b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-79-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-79-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-7b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-7b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-8-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-8-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-80-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-80-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-81-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-81-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-81b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-81b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-82-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-82-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-82b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-82b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-83-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-83-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-87-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-87-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-87b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-87b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-88-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-88-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-88b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-88b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-9-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-9-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-90-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-90-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-90b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-90b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-91-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-91-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-92-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-92-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-93-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-93-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-94-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-94-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-94b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-94b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-95-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-95-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-96-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-96-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-96b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-96b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-97-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-97-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-97b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-97b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-98-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-98-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-98b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-98b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-99-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-99-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-99b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-99b-expected.png.
  • platform/qt-wk2/css3/selectors3/xhtml/css3-modsel-d4-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-d4-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-1-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-10-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-10-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-100-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-100-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-100b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-100b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-101-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-101-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-101b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-101b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-102-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-102-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-102b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-102b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-103-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-103-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-103b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-103b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-104-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-104-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-104b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-104b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-105-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-105-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-105b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-105b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-106-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-106-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-106b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-106b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-107-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-107-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-107b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-107b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-108-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-108-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-108b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-108b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-109-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-109-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-109b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-109b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-11-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-11-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-110-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-110-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-110b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-110b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-111-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-111-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-111b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-111b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-112-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-112-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-112b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-112b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-113-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-113-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-113b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-113b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-114-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-114-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-114b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-114b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-115-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-115-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-115b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-115b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-116-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-116-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-116b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-116b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-117-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-117-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-117b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-117b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-118-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-118-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-119-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-119-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-120-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-120-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-121-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-121-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-122-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-122-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-123-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-123-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-123b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-123b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-124-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-124-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-124b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-124b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-125-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-125-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-125b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-125b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-126-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-126-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-126b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-126b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-127-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-127-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-127b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-127b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-128-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-128-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-128b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-128b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-129-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-129-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-129b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-129b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-13-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-13-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-130-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-130-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-130b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-130b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-131-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-131-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-131b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-131b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-132-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-132-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-132b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-132b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-133-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-133-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-133b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-133b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-134-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-134-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-134b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-134b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-135-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-135-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-135b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-135b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-136-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-136-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-136b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-136b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-137-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-137-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-137b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-137b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-138-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-138-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-138b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-138b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-139-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-139-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-139b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-139b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-14-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-14-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-140-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-140-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-140b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-140b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-141-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-141-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-141b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-141b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-142-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-142-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-142b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-142b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-143-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-143-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-143b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-143b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-144-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-144-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-145a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-145a-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-145b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-145b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-146a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-146a-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-146b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-146b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-147a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-147a-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-147b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-147b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-148-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-148-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-149-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-149-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-149b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-149b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-14b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-14b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-14c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-14c-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-14e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-14e-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-15-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-15-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-150-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-150-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-151-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-151-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-152-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-152-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-153-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-153-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-154-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-154-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-155-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-155-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-155a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-155a-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-155b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-155b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-155c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-155c-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-155d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-155d-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-156-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-156-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-156b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-156b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-156c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-156c-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-157-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-157-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-158-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-158-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-159-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-159-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-15b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-15b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-16-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-16-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-160-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-160-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-161-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-161-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-166-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-166-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-166a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-166a-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-167-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-167-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-167a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-167a-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-168-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-168-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-168a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-168a-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-169-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-169-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-169a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-169a-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-17-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-17-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-172a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-172a-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-172b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-172b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-173a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-173a-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-173b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-173b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-174a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-174a-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-174b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-174b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-176-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-176-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-177a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-177a-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-18-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-18-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-181-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-181-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-183-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-183-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-184a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-184a-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-184b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-184b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-184c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-184c-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-184d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-184d-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-184e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-184e-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-184f-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-184f-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-18a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-18a-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-18b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-18b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-18c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-18c-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-19-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-19-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-19b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-19b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-2-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-20-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-20-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-21-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-21-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-21b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-21b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-21c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-21c-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-22-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-22-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-23-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-23-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-24-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-24-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-25-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-25-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-27-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-27-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-27a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-27a-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-27b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-27b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-28-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-28-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-28b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-28b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-29-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-29-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-29b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-29b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-3-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-30-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-30-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-31-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-31-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-32-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-32-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-33-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-33-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-34-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-34-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-35-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-35-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-36-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-36-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-37-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-37-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-38-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-38-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-39-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-39-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-39a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-39a-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-39b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-39b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-39c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-39c-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-3a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-3a-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-4-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-4-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-41-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-41-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-41a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-41a-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-42-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-42-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-42a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-42a-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-43-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-43-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-43b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-43b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-44-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-44-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-44b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-44b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-44c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-44c-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-44d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-44d-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-45-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-45-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-45b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-45b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-45c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-45c-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-46-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-46-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-46b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-46b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-47-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-47-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-48-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-48-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-49-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-49-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-5-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-5-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-50-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-50-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-51-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-51-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-52-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-52-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-53-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-53-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-54-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-54-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-55-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-55-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-56-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-56-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-57-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-57-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-57b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-57b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-59-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-59-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-6-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-6-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-60-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-60-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-61-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-61-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-62-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-62-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-63-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-63-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-64-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-64-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-65-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-65-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-66-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-66-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-66b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-66b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-67-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-67-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-68-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-68-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-69-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-69-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-7-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-7-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-70-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-70-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-72-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-72-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-72b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-72b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-73-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-73-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-73b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-73b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-74-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-74-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-74b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-74b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-75-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-75-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-75b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-75b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-76-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-76-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-76b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-76b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-77-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-77-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-77b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-77b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-78-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-78-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-78b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-78b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-79-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-79-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-7b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-7b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-8-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-8-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-80-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-80-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-81-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-81-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-81b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-81b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-82-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-82-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-82b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-82b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-83-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-83-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-87-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-87-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-87b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-87b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-88-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-88-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-88b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-88b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-9-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-9-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-90-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-90-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-90b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-90b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-91-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-91-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-92-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-92-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-93-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-93-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-94-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-94-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-94b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-94b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-95-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-95-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-96-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-96-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-96b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-96b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-97-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-97-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-97b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-97b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-98-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-98-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-98b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-98b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-99-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-99-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-99b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-99b-expected.png.
  • platform/qt-wk2/css3/selectors3/xml/css3-modsel-d4-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-d4-expected.png.
  • platform/qt-wk2/css3/unicode-bidi-isolate-basic-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css3/unicode-bidi-isolate-basic-expected.png.
6:22 AM Changeset in webkit [154277] by allan.jensen@digia.com
  • 1 edit
    633 copies
    2 adds
    1 delete in trunk/LayoutTests

Moving expectations from Qt 5.0 WK2 to Qt WK2 - Part 2

Unreviewed gardening.

  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-height-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-height-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-height-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-height-003-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-height-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-height-004-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-height-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-height-005-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-height-006-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-height-006-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-height-007-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-height-007-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-height-008-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-height-008-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-height-009-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-height-009-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-height-010-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-height-010-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-height-011-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-height-011-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-height-012-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-height-012-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-max-height-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-max-height-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-max-height-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-max-height-002-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-max-height-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-max-height-003-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-max-height-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-max-height-004-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-max-height-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-max-height-005-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-max-height-006-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-max-height-006-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-max-height-007-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-max-height-007-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-max-height-008-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-max-height-008-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-max-height-009-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-max-height-009-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-max-height-010-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-max-height-010-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-max-height-011-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-max-height-011-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-max-height-012-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-max-height-012-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-width-015-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-width-015-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-width-017-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-width-017-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-width-018-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-width-018-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-width-019-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-width-019-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-width-020-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-width-020-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-width-021-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-width-021-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-width-022-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-width-022-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-width-023-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-width-023-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-non-replaced-width-024-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-width-024-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-002-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-003-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-004-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-005-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-007-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-007-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-008-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-008-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-009-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-009-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-010-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-010-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-011-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-011-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-012-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-012-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-014-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-014-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-016-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-016-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-017-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-017-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-018-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-018-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-019-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-019-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-021-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-021-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-022-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-022-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-023-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-023-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-024-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-024-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-025-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-025-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-026-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-026-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-028-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-028-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-029-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-029-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-030-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-030-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-031-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-031-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-032-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-032-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-033-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-033-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-height-035-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-035-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-width-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-width-006-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-006-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-width-008-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-008-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-width-013-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-013-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-width-015-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-015-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-width-020-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-020-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-width-022-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-022-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-width-027-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-027-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-width-029-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-029-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-width-034-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-034-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-width-036-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-036-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-width-041-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-041-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-width-043-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-043-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-width-048-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-048-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-width-050-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-050-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-width-055-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-055-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-width-057-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-057-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-width-062-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-062-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-width-064-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-064-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-width-069-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-069-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-width-071-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-071-expected.png.
  • platform/qt-wk2/css2.1/20110323/absolute-replaced-width-076-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-076-expected.png.
  • platform/qt-wk2/css2.1/20110323/abspos-containing-block-initial-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/abspos-containing-block-initial-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/abspos-containing-block-initial-007-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/abspos-containing-block-initial-007-expected.png.
  • platform/qt-wk2/css2.1/20110323/abspos-non-replaced-width-margin-000-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/abspos-non-replaced-width-margin-000-expected.png.
  • platform/qt-wk2/css2.1/20110323/abspos-replaced-width-margin-000-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/abspos-replaced-width-margin-000-expected.png.
  • platform/qt-wk2/css2.1/20110323/background-intrinsic-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/background-intrinsic-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/background-intrinsic-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/background-intrinsic-002-expected.png.
  • platform/qt-wk2/css2.1/20110323/background-intrinsic-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/background-intrinsic-003-expected.png.
  • platform/qt-wk2/css2.1/20110323/background-intrinsic-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/background-intrinsic-004-expected.png.
  • platform/qt-wk2/css2.1/20110323/background-intrinsic-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/background-intrinsic-005-expected.png.
  • platform/qt-wk2/css2.1/20110323/background-intrinsic-006-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/background-intrinsic-006-expected.png.
  • platform/qt-wk2/css2.1/20110323/background-intrinsic-007-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/background-intrinsic-007-expected.png.
  • platform/qt-wk2/css2.1/20110323/background-intrinsic-008-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/background-intrinsic-008-expected.png.
  • platform/qt-wk2/css2.1/20110323/background-intrinsic-009-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/background-intrinsic-009-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-non-replaced-height-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-non-replaced-height-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-002-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-non-replaced-height-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-003-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-non-replaced-height-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-004-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-non-replaced-height-007-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-007-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-non-replaced-height-008-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-008-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-non-replaced-height-009-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-009-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-non-replaced-height-010-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-010-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-non-replaced-height-011-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-011-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-non-replaced-height-012-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-012-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-non-replaced-height-013-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-013-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-non-replaced-height-014-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-014-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-non-replaced-height-015-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-015-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-non-replaced-height-016-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-016-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-non-replaced-width-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-width-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-non-replaced-width-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-width-002-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-non-replaced-width-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-width-003-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-non-replaced-width-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-width-004-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-non-replaced-width-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-width-005-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-non-replaced-width-006-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-width-006-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-non-replaced-width-008-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-width-008-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-replaced-height-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-replaced-height-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-replaced-height-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-replaced-height-002-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-replaced-height-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-replaced-height-003-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-replaced-height-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-replaced-height-004-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-replaced-height-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-replaced-height-005-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-replaced-height-007-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-replaced-height-007-expected.png.
  • platform/qt-wk2/css2.1/20110323/block-replaced-width-006-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/block-replaced-width-006-expected.png.
  • platform/qt-wk2/css2.1/20110323/border-conflict-style-079-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/border-conflict-style-079-expected.png.
  • platform/qt-wk2/css2.1/20110323/border-conflict-style-088-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/border-conflict-style-088-expected.png.
  • platform/qt-wk2/css2.1/20110323/border-spacing-applies-to-015-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/border-spacing-applies-to-015-expected.png.
  • platform/qt-wk2/css2.1/20110323/c543-txt-decor-000-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/c543-txt-decor-000-expected.png.
  • platform/qt-wk2/css2.1/20110323/empty-inline-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/empty-inline-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/empty-inline-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/empty-inline-002-expected.png.
  • platform/qt-wk2/css2.1/20110323/empty-inline-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/empty-inline-003-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-non-replaced-height-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-non-replaced-height-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-non-replaced-width-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-non-replaced-width-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-non-replaced-width-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-non-replaced-width-002-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-non-replaced-width-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-non-replaced-width-003-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-non-replaced-width-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-non-replaced-width-004-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-non-replaced-width-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-non-replaced-width-005-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-non-replaced-width-007-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-non-replaced-width-007-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-non-replaced-width-008-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-non-replaced-width-008-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-non-replaced-width-009-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-non-replaced-width-009-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-non-replaced-width-010-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-non-replaced-width-010-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-non-replaced-width-011-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-non-replaced-width-011-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-non-replaced-width-012-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-non-replaced-width-012-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-replaced-height-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-replaced-height-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-replaced-height-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-replaced-height-002-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-replaced-height-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-replaced-height-003-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-replaced-height-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-replaced-height-004-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-replaced-height-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-replaced-height-005-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-replaced-height-007-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-replaced-height-007-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-replaced-width-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-replaced-width-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-replaced-width-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-replaced-width-002-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-replaced-width-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-replaced-width-003-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-replaced-width-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-replaced-width-004-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-replaced-width-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-replaced-width-005-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-replaced-width-006-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-replaced-width-006-expected.png.
  • platform/qt-wk2/css2.1/20110323/float-replaced-width-011-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/float-replaced-width-011-expected.png.
  • platform/qt-wk2/css2.1/20110323/floating-replaced-height-008-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/floating-replaced-height-008-expected.png.
  • platform/qt-wk2/css2.1/20110323/height-width-inline-table-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/height-width-inline-table-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/height-width-table-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/height-width-table-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-block-non-replaced-height-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-block-non-replaced-height-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-block-non-replaced-height-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-block-non-replaced-height-002-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-block-non-replaced-width-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-block-non-replaced-width-003-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-block-non-replaced-width-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-block-non-replaced-width-004-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-block-replaced-height-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-block-replaced-height-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-block-replaced-height-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-block-replaced-height-002-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-block-replaced-height-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-block-replaced-height-003-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-block-replaced-height-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-block-replaced-height-004-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-block-replaced-height-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-block-replaced-height-005-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-block-replaced-height-007-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-block-replaced-height-007-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-block-replaced-height-008-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-block-replaced-height-008-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-block-replaced-width-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-block-replaced-width-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-block-replaced-width-006-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-block-replaced-width-006-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-non-replaced-width-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-non-replaced-width-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-non-replaced-width-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-non-replaced-width-002-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-replaced-height-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-height-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-replaced-height-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-height-002-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-replaced-height-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-height-003-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-replaced-height-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-height-004-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-replaced-height-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-height-005-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-replaced-height-007-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-height-007-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-replaced-height-008-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-height-008-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-replaced-width-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-width-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-replaced-width-006-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-width-006-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-replaced-width-011-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-width-011-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-replaced-width-012-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-width-012-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-replaced-width-013-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-width-013-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-replaced-width-014-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-width-014-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-replaced-width-015-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-width-015-expected.png.
  • platform/qt-wk2/css2.1/20110323/inline-table-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/inline-table-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/margin-applies-to-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/margin-applies-to-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-002-expected.png.
  • platform/qt-wk2/css2.1/20110323/margin-applies-to-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-003-expected.png.
  • platform/qt-wk2/css2.1/20110323/margin-applies-to-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-004-expected.png.
  • platform/qt-wk2/css2.1/20110323/margin-applies-to-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-005-expected.png.
  • platform/qt-wk2/css2.1/20110323/margin-applies-to-006-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-006-expected.png.
  • platform/qt-wk2/css2.1/20110323/margin-applies-to-007-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-007-expected.png.
  • platform/qt-wk2/css2.1/20110323/margin-applies-to-008-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-008-expected.png.
  • platform/qt-wk2/css2.1/20110323/margin-applies-to-009-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-009-expected.png.
  • platform/qt-wk2/css2.1/20110323/margin-applies-to-010-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-010-expected.png.
  • platform/qt-wk2/css2.1/20110323/margin-applies-to-012-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-012-expected.png.
  • platform/qt-wk2/css2.1/20110323/margin-applies-to-013-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-013-expected.png.
  • platform/qt-wk2/css2.1/20110323/margin-applies-to-014-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-014-expected.png.
  • platform/qt-wk2/css2.1/20110323/margin-applies-to-015-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-015-expected.png.
  • platform/qt-wk2/css2.1/20110323/outline-color-applies-to-008-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/outline-color-applies-to-008-expected.png.
  • platform/qt-wk2/css2.1/20110323/replaced-elements-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/replaced-elements-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/replaced-intrinsic-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/replaced-intrinsic-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/replaced-intrinsic-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/replaced-intrinsic-002-expected.png.
  • platform/qt-wk2/css2.1/20110323/replaced-intrinsic-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/replaced-intrinsic-003-expected.png.
  • platform/qt-wk2/css2.1/20110323/replaced-intrinsic-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/replaced-intrinsic-004-expected.png.
  • platform/qt-wk2/css2.1/20110323/replaced-intrinsic-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/replaced-intrinsic-005-expected.png.
  • platform/qt-wk2/css2.1/20110323/replaced-intrinsic-ratio-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/replaced-intrinsic-ratio-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/replaced-min-max-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/replaced-min-max-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/table-caption-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/table-caption-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/table-caption-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/table-caption-002-expected.png.
  • platform/qt-wk2/css2.1/20110323/table-caption-horizontal-alignment-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/table-caption-horizontal-alignment-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/table-caption-margins-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/table-caption-margins-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/table-caption-optional-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/table-caption-optional-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/table-caption-optional-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/table-caption-optional-002-expected.png.
  • platform/qt-wk2/css2.1/20110323/table-height-algorithm-023-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/table-height-algorithm-023-expected.png.
  • platform/qt-wk2/css2.1/20110323/table-height-algorithm-024-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/table-height-algorithm-024-expected.png.
  • platform/qt-wk2/css2.1/20110323/width-non-replaced-inline-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/width-non-replaced-inline-001-expected.png.
  • platform/qt-wk2/css2.1/20110323/width-replaced-element-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/20110323/width-replaced-element-001-expected.png.
  • platform/qt-wk2/css2.1/t010403-shand-border-00-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t010403-shand-border-00-c-expected.png.
  • platform/qt-wk2/css2.1/t010403-shand-font-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t010403-shand-font-00-b-expected.png.
  • platform/qt-wk2/css2.1/t010403-shand-font-01-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t010403-shand-font-01-b-expected.png.
  • platform/qt-wk2/css2.1/t010403-shand-font-02-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t010403-shand-font-02-b-expected.png.
  • platform/qt-wk2/css2.1/t010403-shand-font-03-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t010403-shand-font-03-b-expected.png.
  • platform/qt-wk2/css2.1/t040102-keywords-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040102-keywords-00-b-expected.png.
  • platform/qt-wk2/css2.1/t040102-keywords-01-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040102-keywords-01-b-expected.png.
  • platform/qt-wk2/css2.1/t040103-case-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-case-00-b-expected.png.
  • platform/qt-wk2/css2.1/t040103-case-01-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-case-01-c-expected.png.
  • platform/qt-wk2/css2.1/t040103-escapes-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-escapes-00-b-expected.png.
  • platform/qt-wk2/css2.1/t040103-escapes-01-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-escapes-01-b-expected.png.
  • platform/qt-wk2/css2.1/t040103-escapes-02-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-escapes-02-d-expected.png.
  • platform/qt-wk2/css2.1/t040103-escapes-03-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-escapes-03-b-expected.png.
  • platform/qt-wk2/css2.1/t040103-escapes-04-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-escapes-04-b-expected.png.
  • platform/qt-wk2/css2.1/t040103-escapes-05-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-escapes-05-c-expected.png.
  • platform/qt-wk2/css2.1/t040103-escapes-06-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-escapes-06-b-expected.png.
  • platform/qt-wk2/css2.1/t040103-escapes-07-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-escapes-07-b-expected.png.
  • platform/qt-wk2/css2.1/t040103-escapes-08-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-escapes-08-b-expected.png.
  • platform/qt-wk2/css2.1/t040103-ident-00-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-ident-00-c-expected.png.
  • platform/qt-wk2/css2.1/t040103-ident-01-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-ident-01-c-expected.png.
  • platform/qt-wk2/css2.1/t040103-ident-02-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-ident-02-c-expected.png.
  • platform/qt-wk2/css2.1/t040103-ident-03-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-ident-03-c-expected.png.
  • platform/qt-wk2/css2.1/t040103-ident-04-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-ident-04-c-expected.png.
  • platform/qt-wk2/css2.1/t040103-ident-05-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-ident-05-c-expected.png.
  • platform/qt-wk2/css2.1/t040103-ident-06-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-ident-06-c-expected.png.
  • platform/qt-wk2/css2.1/t040103-ident-07-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-ident-07-c-expected.png.
  • platform/qt-wk2/css2.1/t040103-ident-08-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-ident-08-c-expected.png.
  • platform/qt-wk2/css2.1/t040103-ident-09-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-ident-09-c-expected.png.
  • platform/qt-wk2/css2.1/t040103-ident-10-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-ident-10-c-expected.png.
  • platform/qt-wk2/css2.1/t040103-ident-11-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-ident-11-c-expected.png.
  • platform/qt-wk2/css2.1/t040103-ident-12-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-ident-12-c-expected.png.
  • platform/qt-wk2/css2.1/t040103-ident-13-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040103-ident-13-c-expected.png.
  • platform/qt-wk2/css2.1/t040105-import-10-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040105-import-10-b-expected.png.
  • platform/qt-wk2/css2.1/t040109-c17-comments-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040109-c17-comments-00-b-expected.png.
  • platform/qt-wk2/css2.1/t040109-c17-comments-01-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040109-c17-comments-01-b-expected.png.
  • platform/qt-wk2/css2.1/t0402-c71-fwd-parsing-00-f-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0402-c71-fwd-parsing-00-f-expected.png.
  • platform/qt-wk2/css2.1/t0402-c71-fwd-parsing-01-f-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0402-c71-fwd-parsing-01-f-expected.png.
  • platform/qt-wk2/css2.1/t0402-c71-fwd-parsing-02-f-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0402-c71-fwd-parsing-02-f-expected.png.
  • platform/qt-wk2/css2.1/t0402-c71-fwd-parsing-03-f-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0402-c71-fwd-parsing-03-f-expected.png.
  • platform/qt-wk2/css2.1/t0402-c71-fwd-parsing-04-f-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0402-c71-fwd-parsing-04-f-expected.png.
  • platform/qt-wk2/css2.1/t040302-c61-ex-len-00-b-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040302-c61-ex-len-00-b-a-expected.png.
  • platform/qt-wk2/css2.1/t040302-c61-phys-len-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040302-c61-phys-len-00-b-expected.png.
  • platform/qt-wk2/css2.1/t040302-c61-rel-len-00-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040302-c61-rel-len-00-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t040303-c62-percent-00-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040303-c62-percent-00-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t040304-c64-uri-00-a-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040304-c64-uri-00-a-g-expected.png.
  • platform/qt-wk2/css2.1/t040306-c63-color-00-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040306-c63-color-00-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t040306-syntax-01-f-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t040306-syntax-01-f-expected.png.
  • platform/qt-wk2/css2.1/t050201-c12-grouping-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t050201-c12-grouping-00-b-expected.png.
  • platform/qt-wk2/css2.1/t0505-c16-descendant-00-e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0505-c16-descendant-00-e-expected.png.
  • platform/qt-wk2/css2.1/t0505-c16-descendant-01-e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0505-c16-descendant-01-e-expected.png.
  • platform/qt-wk2/css2.1/t050803-c14-classes-00-e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t050803-c14-classes-00-e-expected.png.
  • platform/qt-wk2/css2.1/t0509-c15-ids-00-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0509-c15-ids-00-a-expected.png.
  • platform/qt-wk2/css2.1/t0509-c15-ids-01-e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0509-c15-ids-01-e-expected.png.
  • platform/qt-wk2/css2.1/t0510-c25-pseudo-elmnt-00-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0510-c25-pseudo-elmnt-00-c-expected.png.
  • platform/qt-wk2/css2.1/t0511-c21-pseud-anch-00-e-i-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0511-c21-pseud-anch-00-e-i-expected.png.
  • platform/qt-wk2/css2.1/t0511-c21-pseud-link-00-e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0511-c21-pseud-link-00-e-expected.png.
  • platform/qt-wk2/css2.1/t0511-c21-pseud-link-01-e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0511-c21-pseud-link-01-e-expected.png.
  • platform/qt-wk2/css2.1/t0511-c21-pseud-link-02-e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0511-c21-pseud-link-02-e-expected.png.
  • platform/qt-wk2/css2.1/t0511-c21-pseud-link-03-e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0511-c21-pseud-link-03-e-expected.png.
  • platform/qt-wk2/css2.1/t051103-c21-activ-ln-00-e-i-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t051103-c21-activ-ln-00-e-i-expected.png.
  • platform/qt-wk2/css2.1/t051103-c21-focus-ln-00-e-i-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t051103-c21-focus-ln-00-e-i-expected.png.
  • platform/qt-wk2/css2.1/t051103-c21-hover-ln-00-e-i-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t051103-c21-hover-ln-00-e-i-expected.png.
  • platform/qt-wk2/css2.1/t051103-dom-hover-01-c-io-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t051103-dom-hover-01-c-io-expected.png.
  • platform/qt-wk2/css2.1/t051103-dom-hover-02-c-io-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t051103-dom-hover-02-c-io-expected.png.
  • platform/qt-wk2/css2.1/t051201-c23-first-line-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t051201-c23-first-line-00-b-expected.png.
  • platform/qt-wk2/css2.1/t051202-c24-first-lttr-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t051202-c24-first-lttr-00-b-expected.png.
  • platform/qt-wk2/css2.1/t051202-c26-psudo-nest-00-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t051202-c26-psudo-nest-00-c-expected.png.
  • platform/qt-wk2/css2.1/t0602-c13-inh-underlin-00-e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0602-c13-inh-underlin-00-e-expected.png.
  • platform/qt-wk2/css2.1/t0602-c13-inheritance-00-e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0602-c13-inheritance-00-e-expected.png.
  • platform/qt-wk2/css2.1/t0602-inherit-bdr-pad-b-00-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0602-inherit-bdr-pad-b-00-expected.png.
  • platform/qt-wk2/css2.1/t0603-c11-import-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0603-c11-import-00-b-expected.png.
  • platform/qt-wk2/css2.1/t060401-c32-cascading-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t060401-c32-cascading-00-b-expected.png.
  • platform/qt-wk2/css2.1/t060402-c31-important-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t060402-c31-important-00-b-expected.png.
  • platform/qt-wk2/css2.1/t060403-c21-pseu-cls-00-e-i-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t060403-c21-pseu-cls-00-e-i-expected.png.
  • platform/qt-wk2/css2.1/t060403-c21-pseu-id-00-e-i-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t060403-c21-pseu-id-00-e-i-expected.png.
  • platform/qt-wk2/css2.1/t0801-c412-hz-box-00-b-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0801-c412-hz-box-00-b-a-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5502-mrgn-r-02-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5502-mrgn-r-02-c-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5502-mrgn-r-03-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5502-mrgn-r-03-c-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5504-mrgn-l-02-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5504-mrgn-l-02-c-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5504-mrgn-l-03-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5504-mrgn-l-03-c-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5505-imrgn-00-a-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5505-imrgn-00-a-ag-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5505-mrgn-00-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5505-mrgn-00-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t0803-c5505-mrgn-02-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0803-c5505-mrgn-02-c-expected.png.
  • platform/qt-wk2/css2.1/t080301-c411-vt-mrgn-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t080301-c411-vt-mrgn-00-b-expected.png.
  • platform/qt-wk2/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.png.
  • platform/qt-wk2/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.png.
  • platform/qt-wk2/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.png.
  • platform/qt-wk2/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t0804-c5507-padn-r-00-c-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0804-c5507-padn-r-00-c-ag-expected.png.
  • platform/qt-wk2/css2.1/t0804-c5507-padn-r-02-f-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0804-c5507-padn-r-02-f-expected.png.
  • platform/qt-wk2/css2.1/t0804-c5507-padn-r-03-f-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0804-c5507-padn-r-03-f-expected.png.
  • platform/qt-wk2/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.png.
  • platform/qt-wk2/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.png.
  • platform/qt-wk2/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.png.
  • platform/qt-wk2/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.png.
  • platform/qt-wk2/css2.1/t0804-c5509-padn-l-00-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0804-c5509-padn-l-00-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t0804-c5509-padn-l-02-f-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0804-c5509-padn-l-02-f-expected.png.
  • platform/qt-wk2/css2.1/t0804-c5509-padn-l-03-f-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0804-c5509-padn-l-03-f-g-expected.png.
  • platform/qt-wk2/css2.1/t0804-c5510-ipadn-00-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0804-c5510-ipadn-00-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t0804-c5510-padn-02-f-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0804-c5510-padn-02-f-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5511-brdr-tw-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5511-brdr-tw-00-b-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5511-brdr-tw-02-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5511-brdr-tw-02-b-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5511-brdr-tw-03-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5511-brdr-tw-03-b-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5512-brdr-rw-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5512-brdr-rw-00-b-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5512-brdr-rw-02-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5512-brdr-rw-02-b-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5512-brdr-rw-03-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5512-brdr-rw-03-b-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5513-brdr-bw-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5513-brdr-bw-00-b-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5513-brdr-bw-01-b-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5513-brdr-bw-01-b-g-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5513-brdr-bw-02-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5513-brdr-bw-02-b-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5513-brdr-bw-03-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5513-brdr-bw-03-b-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5513-ibrdr-bw-00-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5513-ibrdr-bw-00-a-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5514-brdr-lw-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5514-brdr-lw-00-b-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5514-brdr-lw-01-b-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5514-brdr-lw-01-b-g-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5514-brdr-lw-02-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5514-brdr-lw-02-b-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5514-brdr-lw-03-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5514-brdr-lw-03-b-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5514-ibrdr-lw-00-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5514-ibrdr-lw-00-a-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5515-brdr-w-00-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5515-brdr-w-00-a-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5515-brdr-w-01-b-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5515-brdr-w-01-b-g-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5515-brdr-w-02-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5515-brdr-w-02-b-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5515-ibrdr-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5515-ibrdr-00-b-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5516-brdr-c-00-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5516-brdr-c-00-a-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5516-ibrdr-c-00-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5516-ibrdr-c-00-a-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5517-brdr-s-00-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5517-brdr-s-00-c-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5517-ibrdr-s-00-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5517-ibrdr-s-00-a-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5518-brdr-t-00-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5518-brdr-t-00-a-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5518-brdr-t-01-e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5518-brdr-t-01-e-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5519-brdr-r-02-e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5519-brdr-r-02-e-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5519-ibrdr-r-00-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5519-ibrdr-r-00-a-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5520-brdr-b-00-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5520-brdr-b-00-a-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5520-brdr-b-01-e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5520-brdr-b-01-e-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5520-ibrdr-b-00-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5520-ibrdr-b-00-a-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5521-brdr-l-00-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5521-brdr-l-00-a-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5521-brdr-l-01-e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5521-brdr-l-01-e-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5521-brdr-l-02-e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5521-brdr-l-02-e-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5521-ibrdr-l-00-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5521-ibrdr-l-00-a-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5522-brdr-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5522-brdr-00-b-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5522-brdr-01-b-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5522-brdr-01-b-g-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5522-brdr-02-e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5522-brdr-02-e-expected.png.
  • platform/qt-wk2/css2.1/t0805-c5522-ibrdr-00-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0805-c5522-ibrdr-00-a-expected.png.
  • platform/qt-wk2/css2.1/t09-c5526c-display-00-e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t09-c5526c-display-00-e-expected.png.
  • platform/qt-wk2/css2.1/t090402-c42-ibx-pad-00-d-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t090402-c42-ibx-pad-00-d-ag-expected.png.
  • platform/qt-wk2/css2.1/t0905-c414-flt-01-d-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0905-c414-flt-01-d-g-expected.png.
  • platform/qt-wk2/css2.1/t0905-c414-flt-02-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0905-c414-flt-02-c-expected.png.
  • platform/qt-wk2/css2.1/t0905-c414-flt-03-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0905-c414-flt-03-c-expected.png.
  • platform/qt-wk2/css2.1/t0905-c414-flt-04-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0905-c414-flt-04-c-expected.png.
  • platform/qt-wk2/css2.1/t0905-c414-flt-fit-00-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0905-c414-flt-fit-00-d-expected.png.
  • platform/qt-wk2/css2.1/t0905-c414-flt-fit-01-d-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0905-c414-flt-fit-01-d-g-expected.png.
  • platform/qt-wk2/css2.1/t0905-c414-flt-wrap-00-e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0905-c414-flt-wrap-00-e-expected.png.
  • platform/qt-wk2/css2.1/t0905-c414-flt-wrap-01-d-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0905-c414-flt-wrap-01-d-g-expected.png.
  • platform/qt-wk2/css2.1/t0905-c5525-fltblck-01-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0905-c5525-fltblck-01-d-expected.png.
  • platform/qt-wk2/css2.1/t0905-c5525-fltclr-00-c-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0905-c5525-fltclr-00-c-ag-expected.png.
  • platform/qt-wk2/css2.1/t0905-c5525-fltcont-00-d-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0905-c5525-fltcont-00-d-g-expected.png.
  • platform/qt-wk2/css2.1/t0905-c5525-flthw-00-c-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0905-c5525-flthw-00-c-g-expected.png.
  • platform/qt-wk2/css2.1/t0905-c5525-fltinln-00-c-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0905-c5525-fltinln-00-c-ag-expected.png.
  • platform/qt-wk2/css2.1/t0905-c5525-fltmrgn-00-c-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0905-c5525-fltmrgn-00-c-ag-expected.png.
  • platform/qt-wk2/css2.1/t0905-c5525-fltmult-00-d-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0905-c5525-fltmult-00-d-g-expected.png.
  • platform/qt-wk2/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png.
  • platform/qt-wk2/css2.1/t0905-c5525-fltwidth-01-c-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0905-c5525-fltwidth-01-c-g-expected.png.
  • platform/qt-wk2/css2.1/t0905-c5525-fltwidth-02-c-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0905-c5525-fltwidth-02-c-g-expected.png.
  • platform/qt-wk2/css2.1/t0905-c5525-fltwidth-03-c-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0905-c5525-fltwidth-03-c-g-expected.png.
  • platform/qt-wk2/css2.1/t0905-c5525-fltwrap-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0905-c5525-fltwrap-00-b-expected.png.
  • platform/qt-wk2/css2.1/t0905-c5526-fltclr-00-c-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0905-c5526-fltclr-00-c-ag-expected.png.
  • platform/qt-wk2/css2.1/t0905-c5526-flthw-00-c-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t0905-c5526-flthw-00-c-g-expected.png.
  • platform/qt-wk2/css2.1/t090501-c414-flt-00-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t090501-c414-flt-00-d-expected.png.
  • platform/qt-wk2/css2.1/t090501-c414-flt-01-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t090501-c414-flt-01-b-expected.png.
  • platform/qt-wk2/css2.1/t090501-c414-flt-ln-00-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t090501-c414-flt-ln-00-d-expected.png.
  • platform/qt-wk2/css2.1/t090501-c414-flt-ln-02-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t090501-c414-flt-ln-02-d-expected.png.
  • platform/qt-wk2/css2.1/t090501-c414-flt-ln-03-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t090501-c414-flt-ln-03-d-expected.png.
  • platform/qt-wk2/css2.1/t090501-c5525-flt-l-00-b-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t090501-c5525-flt-l-00-b-g-expected.png.
  • platform/qt-wk2/css2.1/t090501-c5525-flt-r-00-b-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t090501-c5525-flt-r-00-b-g-expected.png.
  • platform/qt-wk2/css2.1/t1001-abs-pos-cb-01-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1001-abs-pos-cb-01-b-expected.png.
  • platform/qt-wk2/css2.1/t1001-abs-pos-cb-02-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1001-abs-pos-cb-02-b-expected.png.
  • platform/qt-wk2/css2.1/t1001-abs-pos-cb-03-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1001-abs-pos-cb-03-b-expected.png.
  • platform/qt-wk2/css2.1/t1001-abs-pos-cb-04-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1001-abs-pos-cb-04-b-expected.png.
  • platform/qt-wk2/css2.1/t1001-abs-pos-cb-05-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1001-abs-pos-cb-05-b-expected.png.
  • platform/qt-wk2/css2.1/t1001-abs-pos-cb-06-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1001-abs-pos-cb-06-b-expected.png.
  • platform/qt-wk2/css2.1/t1001-abs-pos-cb-07-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1001-abs-pos-cb-07-b-expected.png.
  • platform/qt-wk2/css2.1/t1001-abs-pos-cb-08-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1001-abs-pos-cb-08-b-expected.png.
  • platform/qt-wk2/css2.1/t1001-abs-pos-cb-09-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1001-abs-pos-cb-09-b-expected.png.
  • platform/qt-wk2/css2.1/t1002-c5523-width-00-b-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1002-c5523-width-00-b-g-expected.png.
  • platform/qt-wk2/css2.1/t1002-c5523-width-01-b-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1002-c5523-width-01-b-g-expected.png.
  • platform/qt-wk2/css2.1/t1002-c5523-width-02-b-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1002-c5523-width-02-b-g-expected.png.
  • platform/qt-wk2/css2.1/t100303-c412-blockw-00-d-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t100303-c412-blockw-00-d-ag-expected.png.
  • platform/qt-wk2/css2.1/t1004-c43-rpl-bbx-00-d-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1004-c43-rpl-bbx-00-d-ag-expected.png.
  • platform/qt-wk2/css2.1/t1004-c5524-width-00-b-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1004-c5524-width-00-b-g-expected.png.
  • platform/qt-wk2/css2.1/t1005-c5524-width-00-b-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1005-c5524-width-00-b-g-expected.png.
  • platform/qt-wk2/css2.1/t1005-c5524-width-01-b-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1005-c5524-width-01-b-g-expected.png.
  • platform/qt-wk2/css2.1/t1008-c44-ln-box-00-d-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1008-c44-ln-box-00-d-ag-expected.png.
  • platform/qt-wk2/css2.1/t1008-c44-ln-box-01-d-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1008-c44-ln-box-01-d-ag-expected.png.
  • platform/qt-wk2/css2.1/t1008-c44-ln-box-03-d-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1008-c44-ln-box-03-d-ag-expected.png.
  • platform/qt-wk2/css2.1/t100801-c42-ibx-ht-00-d-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t100801-c42-ibx-ht-00-d-a-expected.png.
  • platform/qt-wk2/css2.1/t100801-c544-valgn-00-a-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t100801-c544-valgn-00-a-ag-expected.png.
  • platform/qt-wk2/css2.1/t100801-c544-valgn-02-d-agi-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t100801-c544-valgn-02-d-agi-expected.png.
  • platform/qt-wk2/css2.1/t100801-c544-valgn-03-d-agi-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t100801-c544-valgn-03-d-agi-expected.png.
  • platform/qt-wk2/css2.1/t100801-c544-valgn-04-d-agi-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t100801-c544-valgn-04-d-agi-expected.png.
  • platform/qt-wk2/css2.1/t100801-c548-leadin-00-d-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t100801-c548-leadin-00-d-a-expected.png.
  • platform/qt-wk2/css2.1/t100801-c548-ln-ht-00-c-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t100801-c548-ln-ht-00-c-a-expected.png.
  • platform/qt-wk2/css2.1/t100801-c548-ln-ht-03-d-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t100801-c548-ln-ht-03-d-ag-expected.png.
  • platform/qt-wk2/css2.1/t100801-c548-ln-ht-04-d-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t100801-c548-ln-ht-04-d-ag-expected.png.
  • platform/qt-wk2/css2.1/t1202-counter-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counter-00-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counter-01-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counter-01-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counter-02-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counter-02-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counter-03-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counter-03-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counter-04-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counter-04-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counter-05-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counter-05-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counter-06-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counter-06-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counter-07-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counter-07-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counter-08-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counter-08-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counter-11-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counter-11-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counter-12-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counter-12-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counter-13-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counter-13-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counter-14-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counter-14-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counter-16-f-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counter-16-f-expected.png.
  • platform/qt-wk2/css2.1/t1202-counters-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counters-00-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counters-01-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counters-01-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counters-02-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counters-02-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counters-03-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counters-03-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counters-05-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counters-05-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counters-06-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counters-06-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counters-07-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counters-07-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counters-08-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counters-08-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counters-11-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counters-11-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counters-12-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counters-12-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counters-13-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counters-13-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counters-14-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counters-14-b-expected.png.
  • platform/qt-wk2/css2.1/t1202-counters-16-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counters-16-c-expected.png.
  • platform/qt-wk2/css2.1/t1202-counters-17-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counters-17-d-expected.png.
  • platform/qt-wk2/css2.1/t1202-counters-18-f-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1202-counters-18-f-expected.png.
  • platform/qt-wk2/css2.1/t1204-implied-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1204-implied-00-b-expected.png.
  • platform/qt-wk2/css2.1/t1204-implied-01-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1204-implied-01-c-expected.png.
  • platform/qt-wk2/css2.1/t1204-implied-02-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1204-implied-02-d-expected.png.
  • platform/qt-wk2/css2.1/t1204-multiple-00-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1204-multiple-00-c-expected.png.
  • platform/qt-wk2/css2.1/t1204-multiple-01-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1204-multiple-01-c-expected.png.
  • platform/qt-wk2/css2.1/t1204-order-00-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1204-order-00-c-expected.png.
  • platform/qt-wk2/css2.1/t1204-order-01-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1204-order-01-d-expected.png.
  • platform/qt-wk2/css2.1/t1204-root-e-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1204-root-e-expected.png.
  • platform/qt-wk2/css2.1/t120401-scope-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t120401-scope-00-b-expected.png.
  • platform/qt-wk2/css2.1/t120401-scope-01-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t120401-scope-01-c-expected.png.
  • platform/qt-wk2/css2.1/t120401-scope-02-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t120401-scope-02-c-expected.png.
  • platform/qt-wk2/css2.1/t120401-scope-03-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t120401-scope-03-c-expected.png.
  • platform/qt-wk2/css2.1/t120401-scope-04-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t120401-scope-04-d-expected.png.
  • platform/qt-wk2/css2.1/t120403-content-none-00-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t120403-content-none-00-c-expected.png.
  • platform/qt-wk2/css2.1/t120403-display-none-00-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t120403-display-none-00-c-expected.png.
  • platform/qt-wk2/css2.1/t120403-visibility-00-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t120403-visibility-00-c-expected.png.
  • platform/qt-wk2/css2.1/t1205-c561-list-displ-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1205-c561-list-displ-00-b-expected.png.
  • platform/qt-wk2/css2.1/t1205-c563-list-type-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1205-c563-list-type-00-b-expected.png.
  • platform/qt-wk2/css2.1/t1205-c563-list-type-01-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1205-c563-list-type-01-b-expected.png.
  • platform/qt-wk2/css2.1/t1205-c564-list-img-00-b-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1205-c564-list-img-00-b-g-expected.png.
  • platform/qt-wk2/css2.1/t1205-c565-list-pos-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1205-c565-list-pos-00-b-expected.png.
  • platform/qt-wk2/css2.1/t1205-c566-list-stl-00-e-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1205-c566-list-stl-00-e-ag-expected.png.
  • platform/qt-wk2/css2.1/t1205-c566-list-stl-01-c-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1205-c566-list-stl-01-c-g-expected.png.
  • platform/qt-wk2/css2.1/t1401-c531-color-00-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1401-c531-color-00-a-expected.png.
  • platform/qt-wk2/css2.1/t1402-c45-bg-canvas-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1402-c45-bg-canvas-00-b-expected.png.
  • platform/qt-wk2/css2.1/t140201-c532-bgcolor-00-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t140201-c532-bgcolor-00-a-expected.png.
  • platform/qt-wk2/css2.1/t140201-c533-bgimage-00-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t140201-c533-bgimage-00-a-expected.png.
  • platform/qt-wk2/css2.1/t140201-c534-bgre-00-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t140201-c534-bgre-00-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t140201-c534-bgre-01-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t140201-c534-bgre-01-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t140201-c535-bg-fixd-00-b-g-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t140201-c535-bg-fixd-00-b-g-expected.png.
  • platform/qt-wk2/css2.1/t140201-c536-bgpos-00-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t140201-c536-bgpos-00-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t140201-c536-bgpos-01-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t140201-c536-bgpos-01-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t140201-c537-bgfxps-00-c-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t140201-c537-bgfxps-00-c-ag-expected.png.
  • platform/qt-wk2/css2.1/t1503-c522-font-family-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1503-c522-font-family-00-b-expected.png.
  • platform/qt-wk2/css2.1/t1504-c523-font-style-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1504-c523-font-style-00-b-expected.png.
  • platform/qt-wk2/css2.1/t1505-c524-font-var-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1505-c524-font-var-00-b-expected.png.
  • platform/qt-wk2/css2.1/t1506-c525-font-wt-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1506-c525-font-wt-00-b-expected.png.
  • platform/qt-wk2/css2.1/t1507-c526-font-sz-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1507-c526-font-sz-00-b-expected.png.
  • platform/qt-wk2/css2.1/t1507-c526-font-sz-01-b-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1507-c526-font-sz-01-b-a-expected.png.
  • platform/qt-wk2/css2.1/t1507-c526-font-sz-02-b-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1507-c526-font-sz-02-b-a-expected.png.
  • platform/qt-wk2/css2.1/t1507-c526-font-sz-03-f-a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1507-c526-font-sz-03-f-a-expected.png.
  • platform/qt-wk2/css2.1/t1508-c527-font-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1508-c527-font-00-b-expected.png.
  • platform/qt-wk2/css2.1/t1508-c527-font-01-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1508-c527-font-01-b-expected.png.
  • platform/qt-wk2/css2.1/t1508-c527-font-02-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1508-c527-font-02-b-expected.png.
  • platform/qt-wk2/css2.1/t1508-c527-font-03-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1508-c527-font-03-b-expected.png.
  • platform/qt-wk2/css2.1/t1508-c527-font-04-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1508-c527-font-04-b-expected.png.
  • platform/qt-wk2/css2.1/t1508-c527-font-05-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1508-c527-font-05-b-expected.png.
  • platform/qt-wk2/css2.1/t1508-c527-font-06-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1508-c527-font-06-b-expected.png.
  • platform/qt-wk2/css2.1/t1508-c527-font-07-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1508-c527-font-07-b-expected.png.
  • platform/qt-wk2/css2.1/t1508-c527-font-08-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1508-c527-font-08-b-expected.png.
  • platform/qt-wk2/css2.1/t1508-c527-font-09-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1508-c527-font-09-b-expected.png.
  • platform/qt-wk2/css2.1/t1508-c527-font-10-c-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1508-c527-font-10-c-expected.png.
  • platform/qt-wk2/css2.1/t1601-c547-indent-01-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1601-c547-indent-01-d-expected.png.
  • platform/qt-wk2/css2.1/t1602-c546-txt-align-00-b-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1602-c546-txt-align-00-b-expected.png.
  • platform/qt-wk2/css2.1/t1606-c562-white-sp-00-b-ag-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t1606-c562-white-sp-00-b-ag-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-00-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-00-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-01-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-01-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-02-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-02-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-03-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-03-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-04-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-04-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-05-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-05-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-06-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-06-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-07-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-07-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-08-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-08-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-09-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-09-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-10-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-10-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-11-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-11-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-12-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-12-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-13-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-13-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-14-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-14-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-15-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-15-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-16-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-16-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-17-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-17-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-18-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-18-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-19-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-19-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-20-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-20-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-21-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-21-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-22-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-22-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-23-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-23-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-24-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-24-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-25-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-25-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-26-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-26-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-27-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-27-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-28-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-28-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-29-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-29-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-30-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-30-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-31-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-31-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-32-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-32-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-33-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-33-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-34-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-34-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-35-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-35-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-36-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-36-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-37-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-37-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-38-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-38-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-39-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-39-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-40-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-40-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-41-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-41-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-42-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-42-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-43-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-43-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-44-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-44-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-45-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-45-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-46-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-46-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-47-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-47-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-48-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-48-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-49-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-49-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-50-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-50-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-51-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-51-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-52-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-52-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-53-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-53-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-54-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-54-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-55-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-55-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-56-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-56-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-57-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-57-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-58-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-58-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-59-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-59-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-60-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-60-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-61-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-61-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-62-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-62-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-63-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-63-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-64-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-64-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-65-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-65-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-66-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-66-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-67-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-67-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-68-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-68-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-69-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-69-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-70-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-70-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-71-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-71-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-72-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-72-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-73-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-73-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-74-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-74-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-75-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-75-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-76-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-76-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-77-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-77-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-78-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-78-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-79-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-79-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-80-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-80-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-81-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-81-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-82-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-82-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-83-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-83-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-84-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-84-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-85-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-85-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-86-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-86-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-87-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-87-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-88-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-88-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-89-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-89-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-90-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-90-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-91-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-91-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-92-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-92-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-93-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-93-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-94-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-94-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-95-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-95-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-96-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-96-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-97-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-97-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-98-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-98-d-expected.png.
  • platform/qt-wk2/css2.1/t170602-bdr-conflct-w-99-d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-99-d-expected.png.
6:20 AM WebKitGTK/2.0.x edited by zandobersek@gmail.com
Add r147345 as a proposed merge to remove enormous amount of warnings … (diff)
5:54 AM Changeset in webkit [154276] by allan.jensen@digia.com
  • 1 edit
    347 copies
    1 move
    41 adds
    3 deletes in trunk/LayoutTests

Moving expectations from Qt 5.0 WK2 to Qt WK2

Unreviewed gardening.

  • platform/qt-wk2/TestExpectations: Renamed from LayoutTests/platform/qt-5.0-wk2/TestExpectations.
  • platform/qt-wk2/animations/3d/change-transform-in-end-event-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/animations/3d/change-transform-in-end-event-expected.png.
  • platform/qt-wk2/animations/3d/replace-filling-transform-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/animations/3d/replace-filling-transform-expected.png.
  • platform/qt-wk2/animations/3d/state-at-end-event-transform-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/animations/3d/state-at-end-event-transform-expected.png.
  • platform/qt-wk2/animations/cross-fade-border-image-source-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/animations/cross-fade-border-image-source-expected.png.
  • platform/qt-wk2/animations/cross-fade-list-style-image-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/animations/cross-fade-list-style-image-expected.png.
  • platform/qt-wk2/animations/cross-fade-webkit-mask-image-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/animations/cross-fade-webkit-mask-image-expected.png.
  • platform/qt-wk2/animations/state-at-end-event-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/animations/state-at-end-event-expected.png.
  • platform/qt-wk2/compositing/absolute-inside-out-of-view-fixed-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/absolute-inside-out-of-view-fixed-expected.txt.
  • platform/qt-wk2/compositing/animation/busy-indicator-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/animation/busy-indicator-expected.png.
  • platform/qt-wk2/compositing/animation/state-at-end-event-transform-layer-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/animation/state-at-end-event-transform-layer-expected.png.
  • platform/qt-wk2/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-wk2/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-wk2/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-wk2/compositing/bounds-in-flipped-writing-mode-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/bounds-in-flipped-writing-mode-expected.txt.
  • platform/qt-wk2/compositing/checkerboard-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/checkerboard-expected.png.
  • platform/qt-wk2/compositing/clip-child-by-non-stacking-ancestor-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/clip-child-by-non-stacking-ancestor-expected.txt.
  • platform/qt-wk2/compositing/color-matching/image-color-matching-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/color-matching/image-color-matching-expected.png.
  • platform/qt-wk2/compositing/columns/composited-in-paginated-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/columns/composited-in-paginated-expected.txt.
  • platform/qt-wk2/compositing/compositing-visible-descendant-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/compositing-visible-descendant-expected.png.
  • platform/qt-wk2/compositing/contents-opaque/background-clip-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/contents-opaque/background-clip-expected.txt.
  • platform/qt-wk2/compositing/contents-opaque/background-color-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/contents-opaque/background-color-expected.txt.
  • platform/qt-wk2/compositing/contents-opaque/control-layer-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/contents-opaque/control-layer-expected.txt.
  • platform/qt-wk2/compositing/contents-opaque/filter-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/contents-opaque/filter-expected.txt.
  • platform/qt-wk2/compositing/contents-opaque/hidden-with-visible-child-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/contents-opaque/hidden-with-visible-child-expected.txt.
  • platform/qt-wk2/compositing/contents-opaque/hidden-with-visible-text-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/contents-opaque/hidden-with-visible-text-expected.txt.
  • platform/qt-wk2/compositing/contents-opaque/layer-opacity-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/contents-opaque/layer-opacity-expected.txt.
  • platform/qt-wk2/compositing/contents-opaque/layer-transform-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/contents-opaque/layer-transform-expected.txt.
  • platform/qt-wk2/compositing/contents-opaque/overflow-hidden-child-layers-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/contents-opaque/overflow-hidden-child-layers-expected.txt.
  • platform/qt-wk2/compositing/contents-opaque/visibility-hidden-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/contents-opaque/visibility-hidden-expected.txt.
  • platform/qt-wk2/compositing/culling/clear-fixed-iframe-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/culling/clear-fixed-iframe-expected.png.
  • platform/qt-wk2/compositing/culling/filter-occlusion-blur-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/culling/filter-occlusion-blur-expected.png.
  • platform/qt-wk2/compositing/culling/filter-occlusion-blur-large-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/culling/filter-occlusion-blur-large-expected.png.
  • platform/qt-wk2/compositing/culling/scrolled-within-boxshadow-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/culling/scrolled-within-boxshadow-expected.png.
  • platform/qt-wk2/compositing/culling/translated-boxshadow-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/culling/translated-boxshadow-expected.png.
  • platform/qt-wk2/compositing/culling/unscrolled-within-boxshadow-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/culling/unscrolled-within-boxshadow-expected.png.
  • platform/qt-wk2/compositing/direct-image-compositing-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/direct-image-compositing-expected.png.
  • platform/qt-wk2/compositing/filters/sw-layer-overlaps-hw-shadow-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/filters/sw-layer-overlaps-hw-shadow-expected.txt.
  • platform/qt-wk2/compositing/filters/sw-nested-shadow-overlaps-hw-nested-shadow-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/filters/sw-nested-shadow-overlaps-hw-nested-shadow-expected.txt.
  • platform/qt-wk2/compositing/filters/sw-shadow-overlaps-hw-layer-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/filters/sw-shadow-overlaps-hw-layer-expected.txt.
  • platform/qt-wk2/compositing/filters/sw-shadow-overlaps-hw-shadow-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/filters/sw-shadow-overlaps-hw-shadow-expected.txt.
  • platform/qt-wk2/compositing/fixed-position-scroll-offset-history-restore-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/fixed-position-scroll-offset-history-restore-expected.png.
  • platform/qt-wk2/compositing/framesets/composited-frame-alignment-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/framesets/composited-frame-alignment-expected.png.
  • platform/qt-wk2/compositing/generated-content-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/generated-content-expected.png.
  • platform/qt-wk2/compositing/geometry/abs-position-inside-opacity-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/abs-position-inside-opacity-expected.png.
  • platform/qt-wk2/compositing/geometry/bounds-clipped-composited-child-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/bounds-clipped-composited-child-expected.txt.
  • platform/qt-wk2/compositing/geometry/bounds-ignores-hidden-composited-descendant-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/bounds-ignores-hidden-composited-descendant-expected.txt.
  • platform/qt-wk2/compositing/geometry/bounds-ignores-hidden-dynamic-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/bounds-ignores-hidden-dynamic-expected.txt.
  • platform/qt-wk2/compositing/geometry/bounds-ignores-hidden-dynamic-negzindex-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/bounds-ignores-hidden-dynamic-negzindex-expected.txt.
  • platform/qt-wk2/compositing/geometry/bounds-ignores-hidden-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/bounds-ignores-hidden-expected.txt.
  • platform/qt-wk2/compositing/geometry/clip-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/clip-expected.txt.
  • platform/qt-wk2/compositing/geometry/clip-inside-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/clip-inside-expected.txt.
  • platform/qt-wk2/compositing/geometry/clipping-foreground-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/clipping-foreground-expected.png.
  • platform/qt-wk2/compositing/geometry/composited-in-columns-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/composited-in-columns-expected.txt.
  • platform/qt-wk2/compositing/geometry/fixed-in-composited-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/fixed-in-composited-expected.png.
  • platform/qt-wk2/compositing/geometry/fixed-in-composited-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/fixed-in-composited-expected.txt.
  • platform/qt-wk2/compositing/geometry/fixed-position-composited-page-scale-down-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/fixed-position-composited-page-scale-down-expected.png.
  • platform/qt-wk2/compositing/geometry/fixed-position-composited-page-scale-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/fixed-position-composited-page-scale-expected.png.
  • platform/qt-wk2/compositing/geometry/fixed-position-iframe-composited-page-scale-down-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/fixed-position-iframe-composited-page-scale-down-expected.png.
  • platform/qt-wk2/compositing/geometry/fixed-position-iframe-composited-page-scale-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/fixed-position-iframe-composited-page-scale-expected.png.
  • platform/qt-wk2/compositing/geometry/fixed-position-transform-composited-page-scale-down-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/fixed-position-transform-composited-page-scale-down-expected.png.
  • platform/qt-wk2/compositing/geometry/fixed-position-transform-composited-page-scale-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/fixed-position-transform-composited-page-scale-expected.png.
  • platform/qt-wk2/compositing/geometry/flipped-writing-mode-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/flipped-writing-mode-expected.txt.
  • platform/qt-wk2/compositing/geometry/foreground-layer-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/foreground-layer-expected.png.
  • platform/qt-wk2/compositing/geometry/foreground-layer-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/foreground-layer-expected.txt.
  • platform/qt-wk2/compositing/geometry/horizontal-scroll-composited-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/horizontal-scroll-composited-expected.png.
  • platform/qt-wk2/compositing/geometry/horizontal-scroll-composited-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/horizontal-scroll-composited-expected.txt.
  • platform/qt-wk2/compositing/geometry/layer-due-to-layer-children-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/layer-due-to-layer-children-expected.png.
  • platform/qt-wk2/compositing/geometry/layer-due-to-layer-children-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/layer-due-to-layer-children-expected.txt.
  • platform/qt-wk2/compositing/geometry/outline-change-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/outline-change-expected.png.
  • platform/qt-wk2/compositing/geometry/partial-layout-update-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/partial-layout-update-expected.png.
  • platform/qt-wk2/compositing/geometry/preserve-3d-switching-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/preserve-3d-switching-expected.txt.
  • platform/qt-wk2/compositing/geometry/repaint-foreground-layer-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/repaint-foreground-layer-expected.png.
  • platform/qt-wk2/compositing/geometry/root-layer-update-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/root-layer-update-expected.png.
  • platform/qt-wk2/compositing/geometry/transfrom-origin-on-zero-size-layer-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/transfrom-origin-on-zero-size-layer-expected.png.
  • platform/qt-wk2/compositing/geometry/vertical-scroll-composited-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/vertical-scroll-composited-expected.png.
  • platform/qt-wk2/compositing/geometry/vertical-scroll-composited-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/vertical-scroll-composited-expected.txt.
  • platform/qt-wk2/compositing/geometry/video-fixed-scrolling-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/video-fixed-scrolling-expected.png.
  • platform/qt-wk2/compositing/geometry/video-fixed-scrolling-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/video-fixed-scrolling-expected.txt.
  • platform/qt-wk2/compositing/geometry/video-opacity-overlay-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/video-opacity-overlay-expected.png.
  • platform/qt-wk2/compositing/geometry/video-opacity-overlay-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/geometry/video-opacity-overlay-expected.txt.
  • platform/qt-wk2/compositing/iframes/become-composited-nested-iframes-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/become-composited-nested-iframes-expected.txt.
  • platform/qt-wk2/compositing/iframes/become-overlapped-iframe-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/become-overlapped-iframe-expected.txt.
  • platform/qt-wk2/compositing/iframes/composited-iframe-alignment-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/composited-iframe-alignment-expected.png.
  • platform/qt-wk2/compositing/iframes/composited-parent-iframe-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/composited-parent-iframe-expected.txt.
  • platform/qt-wk2/compositing/iframes/connect-compositing-iframe-delayed-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/connect-compositing-iframe-delayed-expected.txt.
  • platform/qt-wk2/compositing/iframes/connect-compositing-iframe-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/connect-compositing-iframe-expected.txt.
  • platform/qt-wk2/compositing/iframes/connect-compositing-iframe2-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/connect-compositing-iframe2-expected.txt.
  • platform/qt-wk2/compositing/iframes/connect-compositing-iframe3-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/connect-compositing-iframe3-expected.txt.
  • platform/qt-wk2/compositing/iframes/enter-compositing-iframe-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/enter-compositing-iframe-expected.txt.
  • platform/qt-wk2/compositing/iframes/fixed-position-iframe-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/fixed-position-iframe-expected.png.
  • platform/qt-wk2/compositing/iframes/iframe-copy-on-scroll-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/iframe-copy-on-scroll-expected.png.
  • platform/qt-wk2/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-wk2/compositing/iframes/iframe-in-composited-layer-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/iframe-in-composited-layer-expected.png.
  • platform/qt-wk2/compositing/iframes/iframe-in-composited-layer-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/iframe-in-composited-layer-expected.txt.
  • platform/qt-wk2/compositing/iframes/iframe-resize-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/iframe-resize-expected.txt.
  • platform/qt-wk2/compositing/iframes/iframe-size-to-zero-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/iframe-size-to-zero-expected.txt.
  • platform/qt-wk2/compositing/iframes/invisible-nested-iframe-hide-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/invisible-nested-iframe-hide-expected.txt.
  • platform/qt-wk2/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-wk2/compositing/iframes/leave-compositing-iframe-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/leave-compositing-iframe-expected.txt.
  • platform/qt-wk2/compositing/iframes/nested-iframe-scrolling-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/nested-iframe-scrolling-expected.png.
  • platform/qt-wk2/compositing/iframes/overlapped-iframe-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/overlapped-iframe-expected.txt.
  • platform/qt-wk2/compositing/iframes/overlapped-iframe-iframe-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/overlapped-iframe-iframe-expected.txt.
  • platform/qt-wk2/compositing/iframes/overlapped-nested-iframes-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/overlapped-nested-iframes-expected.txt.
  • platform/qt-wk2/compositing/iframes/page-cache-layer-tree-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/page-cache-layer-tree-expected.txt.
  • platform/qt-wk2/compositing/iframes/resizer-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/resizer-expected.png.
  • platform/qt-wk2/compositing/iframes/resizer-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/resizer-expected.txt.
  • platform/qt-wk2/compositing/iframes/scroll-fixed-transformed-element-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/scroll-fixed-transformed-element-expected.png.
  • platform/qt-wk2/compositing/iframes/scrolling-iframe-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/iframes/scrolling-iframe-expected.txt.
  • platform/qt-wk2/compositing/images/clip-on-directly-composited-image-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/images/clip-on-directly-composited-image-expected.txt.
  • platform/qt-wk2/compositing/images/content-image-change-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/images/content-image-change-expected.png.
  • platform/qt-wk2/compositing/images/direct-image-background-color-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/images/direct-image-background-color-expected.png.
  • platform/qt-wk2/compositing/layer-creation/animation-overlap-with-children-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/animation-overlap-with-children-expected.txt.
  • platform/qt-wk2/compositing/layer-creation/fixed-position-and-transform-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/fixed-position-and-transform-expected.png.
  • platform/qt-wk2/compositing/layer-creation/fixed-position-and-transform-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/fixed-position-and-transform-expected.txt.
  • platform/qt-wk2/compositing/layer-creation/fixed-position-change-out-of-view-in-view-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/fixed-position-change-out-of-view-in-view-expected.txt.
  • platform/qt-wk2/compositing/layer-creation/fixed-position-out-of-view-scaled-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/fixed-position-out-of-view-scaled-expected.txt.
  • platform/qt-wk2/compositing/layer-creation/fixed-position-out-of-view-scaled-scroll-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/fixed-position-out-of-view-scaled-scroll-expected.txt.
  • platform/qt-wk2/compositing/layer-creation/fixed-position-scroll-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/fixed-position-scroll-expected.png.
  • platform/qt-wk2/compositing/layer-creation/fixed-position-scroll-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/fixed-position-scroll-expected.txt.
  • platform/qt-wk2/compositing/layer-creation/fixed-position-under-transform-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/fixed-position-under-transform-expected.png.
  • platform/qt-wk2/compositing/layer-creation/fixed-position-under-transform-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/fixed-position-under-transform-expected.txt.
  • platform/qt-wk2/compositing/layer-creation/no-compositing-for-fixed-position-under-transform-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/no-compositing-for-fixed-position-under-transform-expected.txt.
  • platform/qt-wk2/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-wk2/compositing/layer-creation/no-compositing-for-sticky-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/no-compositing-for-sticky-expected.txt.
  • platform/qt-wk2/compositing/layer-creation/overlap-animation-clipping-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/overlap-animation-clipping-expected.txt.
  • platform/qt-wk2/compositing/layer-creation/overlap-animation-container-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/overlap-animation-container-expected.txt.
  • platform/qt-wk2/compositing/layer-creation/overlap-animation-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/overlap-animation-expected.txt.
  • platform/qt-wk2/compositing/layer-creation/overlap-child-layer-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/overlap-child-layer-expected.txt.
  • platform/qt-wk2/compositing/layer-creation/overlap-clipping-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/overlap-clipping-expected.txt.
  • platform/qt-wk2/compositing/layer-creation/overlap-transformed-3d-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/overlap-transformed-3d-expected.txt.
  • platform/qt-wk2/compositing/layer-creation/overlap-transformed-and-clipped-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/overlap-transformed-and-clipped-expected.txt.
  • platform/qt-wk2/compositing/layer-creation/overlap-transformed-layer-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/overlap-transformed-layer-expected.txt.
  • platform/qt-wk2/compositing/layer-creation/overlap-transformed-preserved-3d-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/overlap-transformed-preserved-3d-expected.txt.
  • platform/qt-wk2/compositing/layer-creation/overlap-transforms-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/overlap-transforms-expected.txt.
  • platform/qt-wk2/compositing/layer-creation/rotate3d-overlap-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/rotate3d-overlap-expected.txt.
  • platform/qt-wk2/compositing/layer-creation/spanOverlapsCanvas-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/spanOverlapsCanvas-expected.png.
  • platform/qt-wk2/compositing/layer-creation/stacking-context-overlap-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/stacking-context-overlap-expected.txt.
  • platform/qt-wk2/compositing/layer-creation/stacking-context-overlap-nested-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/stacking-context-overlap-nested-expected.txt.
  • platform/qt-wk2/compositing/layer-creation/translatez-overlap-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layer-creation/translatez-overlap-expected.txt.
  • platform/qt-wk2/compositing/layers-inside-overflow-scroll-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layers-inside-overflow-scroll-expected.png.
  • platform/qt-wk2/compositing/layers-inside-overflow-scroll-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/layers-inside-overflow-scroll-expected.txt.
  • platform/qt-wk2/compositing/masks/direct-image-mask-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/masks/direct-image-mask-expected.png.
  • platform/qt-wk2/compositing/masks/mask-layer-size-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/masks/mask-layer-size-expected.txt.
  • platform/qt-wk2/compositing/masks/mask-of-clipped-layer-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/masks/mask-of-clipped-layer-expected.png.
  • platform/qt-wk2/compositing/masks/masked-ancestor-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/masks/masked-ancestor-expected.png.
  • platform/qt-wk2/compositing/masks/masked-ancestor-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/masks/masked-ancestor-expected.txt.
  • platform/qt-wk2/compositing/masks/multiple-masks-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/masks/multiple-masks-expected.png.
  • platform/qt-wk2/compositing/masks/multiple-masks-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/masks/multiple-masks-expected.txt.
  • platform/qt-wk2/compositing/masks/simple-composited-mask-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/masks/simple-composited-mask-expected.png.
  • platform/qt-wk2/compositing/masks/simple-composited-mask-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/masks/simple-composited-mask-expected.txt.
  • platform/qt-wk2/compositing/overflow-trumps-transform-style-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/overflow-trumps-transform-style-expected.txt.
  • platform/qt-wk2/compositing/overflow/ancestor-overflow-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/overflow/ancestor-overflow-expected.png.
  • platform/qt-wk2/compositing/overflow/composited-scrolling-paint-phases-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/overflow/composited-scrolling-paint-phases-expected.txt.
  • platform/qt-wk2/compositing/overflow/content-gains-scrollbars-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/overflow/content-gains-scrollbars-expected.txt.
  • platform/qt-wk2/compositing/overflow/content-loses-scrollbars-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/overflow/content-loses-scrollbars-expected.txt.
  • platform/qt-wk2/compositing/overflow/nested-scrolling-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/overflow/nested-scrolling-expected.png.
  • platform/qt-wk2/compositing/overflow/overflow-compositing-descendant-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/overflow/overflow-compositing-descendant-expected.png.
  • platform/qt-wk2/compositing/overflow/overflow-positioning-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/overflow/overflow-positioning-expected.png.
  • platform/qt-wk2/compositing/overflow/overflow-scaled-descendant-overlapping-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/overflow/overflow-scaled-descendant-overlapping-expected.png.
  • platform/qt-wk2/compositing/overflow/overflow-scroll-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/overflow/overflow-scroll-expected.png.
  • platform/qt-wk2/compositing/overflow/overflow-scroll-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/overflow/overflow-scroll-expected.txt.
  • platform/qt-wk2/compositing/overflow/overflow-scrollbar-layers-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/overflow/overflow-scrollbar-layers-expected.txt.
  • platform/qt-wk2/compositing/overflow/parent-overflow-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/overflow/parent-overflow-expected.png.
  • platform/qt-wk2/compositing/overflow/remove-overflow-crash2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/overflow/remove-overflow-crash2-expected.png.
  • platform/qt-wk2/compositing/overflow/resize-painting-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/overflow/resize-painting-expected.txt.
  • platform/qt-wk2/compositing/overflow/scroll-ancestor-update-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/overflow/scroll-ancestor-update-expected.png.
  • platform/qt-wk2/compositing/overflow/scroll-ancestor-update-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/overflow/scroll-ancestor-update-expected.txt.
  • platform/qt-wk2/compositing/overflow/scrollbar-painting-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/overflow/scrollbar-painting-expected.png.
  • platform/qt-wk2/compositing/overflow/scrollbar-painting-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/overflow/scrollbar-painting-expected.txt.
  • platform/qt-wk2/compositing/overflow/zero-size-overflow-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/overflow/zero-size-overflow-expected.png.
  • platform/qt-wk2/compositing/plugins/composited-plugin-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/plugins/composited-plugin-expected.png.
  • platform/qt-wk2/compositing/plugins/composited-plugin-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/plugins/composited-plugin-expected.txt.
  • platform/qt-wk2/compositing/reflections/compositing-change-inside-reflection-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/reflections/compositing-change-inside-reflection-expected.png.
  • platform/qt-wk2/compositing/reflections/nested-reflection-mask-change-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/reflections/nested-reflection-mask-change-expected.png.
  • platform/qt-wk2/compositing/reflections/nested-reflection-transformed-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/reflections/nested-reflection-transformed-expected.png.
  • platform/qt-wk2/compositing/reflections/nested-reflection-transformed2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/reflections/nested-reflection-transformed2-expected.png.
  • platform/qt-wk2/compositing/reflections/reflection-in-composited-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/reflections/reflection-in-composited-expected.png.
  • platform/qt-wk2/compositing/reflections/reflection-on-composited-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/reflections/reflection-on-composited-expected.png.
  • platform/qt-wk2/compositing/reflections/reflection-opacity-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/reflections/reflection-opacity-expected.png.
  • platform/qt-wk2/compositing/reflections/reflection-ordering-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/reflections/reflection-ordering-expected.png.
  • platform/qt-wk2/compositing/reflections/reflection-positioning-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/reflections/reflection-positioning-expected.png.
  • platform/qt-wk2/compositing/reflections/reflection-positioning2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/reflections/reflection-positioning2-expected.png.
  • platform/qt-wk2/compositing/reflections/simple-composited-reflections-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/reflections/simple-composited-reflections-expected.png.
  • platform/qt-wk2/compositing/repaint/become-overlay-composited-layer-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/repaint/become-overlay-composited-layer-expected.png.
  • platform/qt-wk2/compositing/repaint/composited-document-element-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/repaint/composited-document-element-expected.png.
  • platform/qt-wk2/compositing/repaint/content-into-overflow-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/repaint/content-into-overflow-expected.png.
  • platform/qt-wk2/compositing/repaint/content-into-overflow-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/repaint/content-into-overflow-expected.txt.
  • platform/qt-wk2/compositing/repaint/fixed-background-scroll-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/repaint/fixed-background-scroll-expected.txt.
  • platform/qt-wk2/compositing/repaint/layer-repaint-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/repaint/layer-repaint-expected.png.
  • platform/qt-wk2/compositing/repaint/layer-repaint-rects-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/repaint/layer-repaint-rects-expected.png.
  • platform/qt-wk2/compositing/repaint/newly-composited-on-scroll-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/repaint/newly-composited-on-scroll-expected.png.
  • platform/qt-wk2/compositing/repaint/newly-composited-on-scroll-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/repaint/newly-composited-on-scroll-expected.txt.
  • platform/qt-wk2/compositing/repaint/newly-composited-repaint-rect-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/repaint/newly-composited-repaint-rect-expected.png.
  • platform/qt-wk2/compositing/repaint/opacity-between-absolute-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/repaint/opacity-between-absolute-expected.png.
  • platform/qt-wk2/compositing/repaint/opacity-between-absolute2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/repaint/opacity-between-absolute2-expected.png.
  • platform/qt-wk2/compositing/repaint/overflow-into-content-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/repaint/overflow-into-content-expected.png.
  • platform/qt-wk2/compositing/repaint/overflow-into-content-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/repaint/overflow-into-content-expected.txt.
  • platform/qt-wk2/compositing/repaint/page-scale-repaint-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/repaint/page-scale-repaint-expected.png.
  • platform/qt-wk2/compositing/repaint/positioned-movement-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/repaint/positioned-movement-expected.txt.
  • platform/qt-wk2/compositing/repaint/requires-backing-repaint-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/repaint/requires-backing-repaint-expected.png.
  • platform/qt-wk2/compositing/repaint/same-size-invalidation-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/repaint/same-size-invalidation-expected.png.
  • platform/qt-wk2/compositing/repaint/shrink-layer-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/repaint/shrink-layer-expected.png.
  • platform/qt-wk2/compositing/rtl/rtl-absolute-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-absolute-expected.png.
  • platform/qt-wk2/compositing/rtl/rtl-absolute-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-absolute-expected.txt.
  • platform/qt-wk2/compositing/rtl/rtl-absolute-overflow-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-absolute-overflow-expected.png.
  • platform/qt-wk2/compositing/rtl/rtl-absolute-overflow-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-absolute-overflow-expected.txt.
  • platform/qt-wk2/compositing/rtl/rtl-fixed-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-fixed-expected.png.
  • platform/qt-wk2/compositing/rtl/rtl-fixed-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-fixed-expected.txt.
  • platform/qt-wk2/compositing/rtl/rtl-fixed-overflow-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-fixed-overflow-expected.png.
  • platform/qt-wk2/compositing/rtl/rtl-fixed-overflow-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-fixed-overflow-expected.txt.
  • platform/qt-wk2/compositing/rtl/rtl-fixed-overflow-scrolled-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-fixed-overflow-scrolled-expected.png.
  • platform/qt-wk2/compositing/rtl/rtl-fixed-overflow-scrolled-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-fixed-overflow-scrolled-expected.txt.
  • platform/qt-wk2/compositing/rtl/rtl-iframe-absolute-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-iframe-absolute-expected.txt.
  • platform/qt-wk2/compositing/rtl/rtl-iframe-absolute-overflow-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-iframe-absolute-overflow-expected.txt.
  • platform/qt-wk2/compositing/rtl/rtl-iframe-absolute-overflow-scrolled-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-iframe-absolute-overflow-scrolled-expected.txt.
  • platform/qt-wk2/compositing/rtl/rtl-iframe-fixed-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-iframe-fixed-expected.txt.
  • platform/qt-wk2/compositing/rtl/rtl-iframe-fixed-overflow-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-iframe-fixed-overflow-expected.txt.
  • platform/qt-wk2/compositing/rtl/rtl-iframe-fixed-overflow-scrolled-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-iframe-fixed-overflow-scrolled-expected.txt.
  • platform/qt-wk2/compositing/rtl/rtl-iframe-relative-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-iframe-relative-expected.txt.
  • platform/qt-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-wk2/compositing/rtl/rtl-relative-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-relative-expected.txt.
  • platform/qt-wk2/compositing/scaling/tiled-layer-recursion-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/scaling/tiled-layer-recursion-expected.png.
  • platform/qt-wk2/compositing/self-painting-layers-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/self-painting-layers-expected.png.
  • platform/qt-wk2/compositing/self-painting-layers-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/self-painting-layers-expected.txt.
  • platform/qt-wk2/compositing/shadows/shadow-drawing-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/shadows/shadow-drawing-expected.png.
  • platform/qt-wk2/compositing/sibling-positioning-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/sibling-positioning-expected.png.
  • platform/qt-wk2/compositing/text-on-large-layer-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/text-on-large-layer-expected.png.
  • platform/qt-wk2/compositing/tiled-layers-hidpi-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/tiled-layers-hidpi-expected.txt.
  • platform/qt-wk2/compositing/tiling/backface-preserve-3d-tiled-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/tiling/backface-preserve-3d-tiled-expected.txt.
  • platform/qt-wk2/compositing/tiling/crash-reparent-tiled-layer-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/tiling/crash-reparent-tiled-layer-expected.txt.
  • platform/qt-wk2/compositing/tiling/huge-layer-add-remove-child-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/tiling/huge-layer-add-remove-child-expected.txt.
  • platform/qt-wk2/compositing/tiling/huge-layer-img-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/tiling/huge-layer-img-expected.txt.
  • platform/qt-wk2/compositing/tiling/huge-layer-with-layer-children-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/tiling/huge-layer-with-layer-children-expected.txt.
  • platform/qt-wk2/compositing/tiling/huge-layer-with-layer-children-resize-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/tiling/huge-layer-with-layer-children-resize-expected.txt.
  • platform/qt-wk2/compositing/tiling/tiled-layer-resize-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/tiling/tiled-layer-resize-expected.txt.
  • platform/qt-wk2/compositing/transitions/singular-scale-transition-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/transitions/singular-scale-transition-expected.png.
  • platform/qt-wk2/compositing/video/video-background-color-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/video/video-background-color-expected.png.
  • platform/qt-wk2/compositing/video/video-background-color-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/video/video-background-color-expected.txt.
  • platform/qt-wk2/compositing/visibility/visibility-composited-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/visibility/visibility-composited-expected.txt.
  • platform/qt-wk2/compositing/visibility/visibility-composited-transforms-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/visibility/visibility-composited-transforms-expected.txt.
  • platform/qt-wk2/compositing/visibility/visibility-image-layers-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/visibility/visibility-image-layers-expected.png.
  • platform/qt-wk2/compositing/visibility/visibility-simple-video-layer-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/visibility/visibility-simple-video-layer-expected.png.
  • platform/qt-wk2/compositing/z-order/negative-z-index-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/compositing/z-order/negative-z-index-expected.png.
  • platform/qt-wk2/css1/basic/containment-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/basic/containment-expected.png.
  • platform/qt-wk2/css1/basic/contextual_selectors-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/basic/contextual_selectors-expected.png.
  • platform/qt-wk2/css1/basic/grouping-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/basic/grouping-expected.png.
  • platform/qt-wk2/css1/basic/id_as_selector-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/basic/id_as_selector-expected.png.
  • platform/qt-wk2/css1/basic/inheritance-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/basic/inheritance-expected.png.
  • platform/qt-wk2/css1/box_properties/acid_test-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/acid_test-expected.png.
  • platform/qt-wk2/css1/box_properties/border-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/border-expected.png.
  • platform/qt-wk2/css1/box_properties/border_bottom-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/border_bottom-expected.png.
  • platform/qt-wk2/css1/box_properties/border_bottom_inline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/border_bottom_inline-expected.png.
  • platform/qt-wk2/css1/box_properties/border_bottom_width-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/border_bottom_width-expected.png.
  • platform/qt-wk2/css1/box_properties/border_bottom_width_inline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/border_bottom_width_inline-expected.png.
  • platform/qt-wk2/css1/box_properties/border_color-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/border_color-expected.png.
  • platform/qt-wk2/css1/box_properties/border_color_inline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/border_color_inline-expected.png.
  • platform/qt-wk2/css1/box_properties/border_inline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/border_inline-expected.png.
  • platform/qt-wk2/css1/box_properties/border_left-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/border_left-expected.png.
  • platform/qt-wk2/css1/box_properties/border_left_inline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/border_left_inline-expected.png.
  • platform/qt-wk2/css1/box_properties/border_left_width-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/border_left_width-expected.png.
  • platform/qt-wk2/css1/box_properties/border_left_width_inline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/border_left_width_inline-expected.png.
  • platform/qt-wk2/css1/box_properties/border_right-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/border_right-expected.png.
  • platform/qt-wk2/css1/box_properties/border_right_inline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/border_right_inline-expected.png.
  • platform/qt-wk2/css1/box_properties/border_right_width-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/border_right_width-expected.png.
  • platform/qt-wk2/css1/box_properties/border_right_width_inline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/border_right_width_inline-expected.png.
  • platform/qt-wk2/css1/box_properties/border_style-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/border_style-expected.png.
  • platform/qt-wk2/css1/box_properties/border_style_inline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/border_style_inline-expected.png.
  • platform/qt-wk2/css1/box_properties/border_top-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/border_top-expected.png.
  • platform/qt-wk2/css1/box_properties/border_top_inline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/border_top_inline-expected.png.
  • platform/qt-wk2/css1/box_properties/border_top_width-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/border_top_width-expected.png.
  • platform/qt-wk2/css1/box_properties/border_top_width_inline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/border_top_width_inline-expected.png.
  • platform/qt-wk2/css1/box_properties/border_width-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/border_width-expected.png.
  • platform/qt-wk2/css1/box_properties/border_width_inline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/border_width_inline-expected.png.
  • platform/qt-wk2/css1/box_properties/clear-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/clear-expected.png.
  • platform/qt-wk2/css1/box_properties/clear_float-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/clear_float-expected.png.
  • platform/qt-wk2/css1/box_properties/float-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/float-expected.png.
  • platform/qt-wk2/css1/box_properties/float_elements_in_series-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/float_elements_in_series-expected.png.
  • platform/qt-wk2/css1/box_properties/float_margin-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/float_margin-expected.png.
  • platform/qt-wk2/css1/box_properties/float_on_text_elements-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/float_on_text_elements-expected.png.
  • platform/qt-wk2/css1/box_properties/height-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/height-expected.png.
  • platform/qt-wk2/css1/box_properties/margin-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/margin-expected.png.
  • platform/qt-wk2/css1/box_properties/margin_bottom-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/margin_bottom-expected.png.
  • platform/qt-wk2/css1/box_properties/margin_bottom_inline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/margin_bottom_inline-expected.png.
  • platform/qt-wk2/css1/box_properties/margin_inline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/margin_inline-expected.png.
  • platform/qt-wk2/css1/box_properties/margin_left-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/margin_left-expected.png.
  • platform/qt-wk2/css1/box_properties/margin_left_inline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/margin_left_inline-expected.png.
  • platform/qt-wk2/css1/box_properties/margin_right-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/margin_right-expected.png.
  • platform/qt-wk2/css1/box_properties/margin_right_inline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/margin_right_inline-expected.png.
  • platform/qt-wk2/css1/box_properties/margin_top-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/margin_top-expected.png.
  • platform/qt-wk2/css1/box_properties/margin_top_inline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/margin_top_inline-expected.png.
  • platform/qt-wk2/css1/box_properties/padding-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/padding-expected.png.
  • platform/qt-wk2/css1/box_properties/padding_bottom-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/padding_bottom-expected.png.
  • platform/qt-wk2/css1/box_properties/padding_bottom_inline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/padding_bottom_inline-expected.png.
  • platform/qt-wk2/css1/box_properties/padding_inline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/padding_inline-expected.png.
  • platform/qt-wk2/css1/box_properties/padding_left-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/padding_left-expected.png.
  • platform/qt-wk2/css1/box_properties/padding_left_inline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/padding_left_inline-expected.png.
  • platform/qt-wk2/css1/box_properties/padding_right-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/padding_right-expected.png.
  • platform/qt-wk2/css1/box_properties/padding_right_inline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/padding_right_inline-expected.png.
  • platform/qt-wk2/css1/box_properties/padding_top-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/padding_top-expected.png.
  • platform/qt-wk2/css1/box_properties/padding_top_inline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/padding_top_inline-expected.png.
  • platform/qt-wk2/css1/box_properties/width-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/box_properties/width-expected.png.
  • platform/qt-wk2/css1/cascade/cascade_order-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/cascade/cascade_order-expected.png.
  • platform/qt-wk2/css1/cascade/important-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/cascade/important-expected.png.
  • platform/qt-wk2/css1/classification/display-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/classification/display-expected.png.
  • platform/qt-wk2/css1/classification/list_style-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/classification/list_style-expected.png.
  • platform/qt-wk2/css1/classification/list_style_image-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/classification/list_style_image-expected.png.
  • platform/qt-wk2/css1/classification/list_style_position-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/classification/list_style_position-expected.png.
  • platform/qt-wk2/css1/classification/list_style_type-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/classification/list_style_type-expected.png.
  • platform/qt-wk2/css1/classification/white_space-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/classification/white_space-expected.png.
  • platform/qt-wk2/css1/color_and_background/background-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/color_and_background/background-expected.png.
  • platform/qt-wk2/css1/color_and_background/background_attachment-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/color_and_background/background_attachment-expected.png.
  • platform/qt-wk2/css1/color_and_background/background_color-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/color_and_background/background_color-expected.png.
  • platform/qt-wk2/css1/color_and_background/background_image-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/color_and_background/background_image-expected.png.
  • platform/qt-wk2/css1/color_and_background/background_position-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/color_and_background/background_position-expected.png.
  • platform/qt-wk2/css1/color_and_background/background_repeat-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/color_and_background/background_repeat-expected.png.
  • platform/qt-wk2/css1/color_and_background/color-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/color_and_background/color-expected.png.
  • platform/qt-wk2/css1/conformance/forward_compatible_parsing-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/conformance/forward_compatible_parsing-expected.png.
  • platform/qt-wk2/css1/font_properties/font-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/font_properties/font-expected.png.
  • platform/qt-wk2/css1/font_properties/font_family-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/font_properties/font_family-expected.png.
  • platform/qt-wk2/css1/font_properties/font_size-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/font_properties/font_size-expected.png.
  • platform/qt-wk2/css1/font_properties/font_style-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/font_properties/font_style-expected.png.
  • platform/qt-wk2/css1/font_properties/font_variant-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/font_properties/font_variant-expected.png.
  • platform/qt-wk2/css1/font_properties/font_weight-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/font_properties/font_weight-expected.png.
  • platform/qt-wk2/css1/formatting_model/canvas-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/formatting_model/canvas-expected.png.
  • platform/qt-wk2/css1/formatting_model/floating_elements-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/formatting_model/floating_elements-expected.png.
  • platform/qt-wk2/css1/formatting_model/height_of_lines-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/formatting_model/height_of_lines-expected.png.
  • platform/qt-wk2/css1/formatting_model/horizontal_formatting-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/formatting_model/horizontal_formatting-expected.png.
  • platform/qt-wk2/css1/formatting_model/inline_elements-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/formatting_model/inline_elements-expected.png.
  • platform/qt-wk2/css1/formatting_model/replaced_elements-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/formatting_model/replaced_elements-expected.png.
  • platform/qt-wk2/css1/formatting_model/vertical_formatting-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/formatting_model/vertical_formatting-expected.png.
  • platform/qt-wk2/css1/pseudo/anchor-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/pseudo/anchor-expected.png.
  • platform/qt-wk2/css1/pseudo/firstletter-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/pseudo/firstletter-expected.png.
  • platform/qt-wk2/css1/pseudo/firstline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/pseudo/firstline-expected.png.
  • platform/qt-wk2/css1/pseudo/multiple_pseudo_elements-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/pseudo/multiple_pseudo_elements-expected.png.
  • platform/qt-wk2/css1/pseudo/pseudo_elements_in_selectors-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/pseudo/pseudo_elements_in_selectors-expected.png.
  • platform/qt-wk2/css1/text_properties/letter_spacing-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/text_properties/letter_spacing-expected.png.
  • platform/qt-wk2/css1/text_properties/line_height-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/text_properties/line_height-expected.png.
  • platform/qt-wk2/css1/text_properties/text_align-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/text_properties/text_align-expected.png.
  • platform/qt-wk2/css1/text_properties/text_decoration-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/text_properties/text_decoration-expected.png.
  • platform/qt-wk2/css1/text_properties/text_indent-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/text_properties/text_indent-expected.png.
  • platform/qt-wk2/css1/text_properties/text_transform-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/text_properties/text_transform-expected.png.
  • platform/qt-wk2/css1/text_properties/vertical_align-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/text_properties/vertical_align-expected.png.
  • platform/qt-wk2/css1/text_properties/word_spacing-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/text_properties/word_spacing-expected.png.
  • platform/qt-wk2/css1/units/color_units-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/units/color_units-expected.png.
  • platform/qt-wk2/css1/units/length_units-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/units/length_units-expected.png.
  • platform/qt-wk2/css1/units/percentage_units-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/units/percentage_units-expected.png.
  • platform/qt-wk2/css1/units/urls-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/css1/units/urls-expected.png.
5:35 AM Changeset in webkit [154275] by allan.jensen@digia.com
  • 3 edits
    90 copies
    39 adds
    2 deletes in trunk

Restructure Qt test expectations

Unreviewed meta gardening.

Removed 5.0 name from WK1 and WK2 results and made it possible to set
expectations by both Qt version and mayor architectures.

Tools:

  • Scripts/webkitpy/port/qt.py:

(QtPort._wk2_port_name):
(QtPort.init):
(QtPort.qt_version):
(QtPort.architecture):
(QtPort._search_paths):
(QtPort._port_specific_expectations_files):

LayoutTests:

Qt-5.0-WK2 will be moved later due to its size.

  • platform/qt-mac-wk2/TestExpectations: Renamed from LayoutTests/platform/qt-5.0-mac-wk2/TestExpectations.
  • platform/qt-wk1/TestExpectations: Renamed from LayoutTests/platform/qt-5.0-wk1/TestExpectations.
  • platform/qt-wk1/compositing/backing/no-backing-for-clip-overhang-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/backing/no-backing-for-clip-overhang-expected.txt.
  • platform/qt-wk1/compositing/geometry/bounds-ignores-hidden-composited-descendant-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/geometry/bounds-ignores-hidden-composited-descendant-expected.txt.
  • platform/qt-wk1/compositing/geometry/fixed-in-composited-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/geometry/fixed-in-composited-expected.png.
  • platform/qt-wk1/compositing/geometry/fixed-in-composited-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/geometry/fixed-in-composited-expected.txt.
  • platform/qt-wk1/compositing/geometry/layer-due-to-layer-children-deep-switch-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/geometry/layer-due-to-layer-children-deep-switch-expected.txt.
  • platform/qt-wk1/compositing/geometry/layer-due-to-layer-children-switch-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/geometry/layer-due-to-layer-children-switch-expected.txt.
  • platform/qt-wk1/compositing/geometry/limit-layer-bounds-clipping-ancestor-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/geometry/limit-layer-bounds-clipping-ancestor-expected.txt.
  • platform/qt-wk1/compositing/geometry/limit-layer-bounds-fixed-positioned-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/geometry/limit-layer-bounds-fixed-positioned-expected.txt.
  • platform/qt-wk1/compositing/geometry/limit-layer-bounds-opacity-transition-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/geometry/limit-layer-bounds-opacity-transition-expected.txt.
  • platform/qt-wk1/compositing/geometry/limit-layer-bounds-overflow-root-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/geometry/limit-layer-bounds-overflow-root-expected.txt.
  • platform/qt-wk1/compositing/geometry/limit-layer-bounds-positioned-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/geometry/limit-layer-bounds-positioned-expected.txt.
  • platform/qt-wk1/compositing/geometry/limit-layer-bounds-positioned-transition-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/geometry/limit-layer-bounds-positioned-transition-expected.txt.
  • platform/qt-wk1/compositing/geometry/limit-layer-bounds-transformed-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/geometry/limit-layer-bounds-transformed-expected.txt.
  • platform/qt-wk1/compositing/geometry/limit-layer-bounds-transformed-overflow-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/geometry/limit-layer-bounds-transformed-overflow-expected.txt.
  • platform/qt-wk1/compositing/geometry/video-fixed-scrolling-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/geometry/video-fixed-scrolling-expected.png.
  • platform/qt-wk1/compositing/geometry/video-fixed-scrolling-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/geometry/video-fixed-scrolling-expected.txt.
  • platform/qt-wk1/compositing/iframes/iframe-copy-on-scroll-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/iframes/iframe-copy-on-scroll-expected.png.
  • platform/qt-wk1/compositing/iframes/iframe-copy-on-scroll-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/iframes/iframe-copy-on-scroll-expected.txt.
  • platform/qt-wk1/compositing/iframes/iframe-size-from-zero-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/iframes/iframe-size-from-zero-expected.txt.
  • platform/qt-wk1/compositing/layer-creation/scroll-partial-update-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/layer-creation/scroll-partial-update-expected.txt.
  • platform/qt-wk1/compositing/layer-creation/spanOverlapsCanvas-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/layer-creation/spanOverlapsCanvas-expected.png.
  • platform/qt-wk1/compositing/layer-creation/spanOverlapsCanvas-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/layer-creation/spanOverlapsCanvas-expected.txt.
  • platform/qt-wk1/compositing/overflow/overflow-auto-with-touch-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/overflow/overflow-auto-with-touch-expected.txt.
  • platform/qt-wk1/compositing/overflow/overflow-auto-with-touch-toggle-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/overflow/overflow-auto-with-touch-toggle-expected.txt.
  • platform/qt-wk1/compositing/overflow/overflow-overlay-with-touch-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/overflow/overflow-overlay-with-touch-expected.txt.
  • platform/qt-wk1/compositing/overflow/scroll-ancestor-update-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/overflow/scroll-ancestor-update-expected.png.
  • platform/qt-wk1/compositing/overflow/scroll-ancestor-update-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/overflow/scroll-ancestor-update-expected.txt.
  • platform/qt-wk1/compositing/overflow/scrolling-content-clip-to-viewport-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/overflow/scrolling-content-clip-to-viewport-expected.txt.
  • platform/qt-wk1/compositing/overflow/scrolling-without-painting-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/overflow/scrolling-without-painting-expected.txt.
  • platform/qt-wk1/compositing/overflow/textarea-scroll-touch-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/overflow/textarea-scroll-touch-expected.txt.
  • platform/qt-wk1/compositing/overflow/updating-scrolling-content-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/overflow/updating-scrolling-content-expected.txt.
  • platform/qt-wk1/compositing/plugins/no-backing-store-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/plugins/no-backing-store-expected.txt.
  • platform/qt-wk1/compositing/plugins/small-to-large-composited-plugin-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/plugins/small-to-large-composited-plugin-expected.txt.
  • platform/qt-wk1/compositing/repaint/invalidations-on-composited-layers-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/repaint/invalidations-on-composited-layers-expected.txt.
  • platform/qt-wk1/compositing/self-painting-layers-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/self-painting-layers-expected.png.
  • platform/qt-wk1/compositing/self-painting-layers-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/self-painting-layers-expected.txt.
  • platform/qt-wk1/compositing/video/video-poster-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/compositing/video/video-poster-expected.txt.
  • platform/qt-wk1/editing/deleting/delete-by-word-002-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/editing/deleting/delete-by-word-002-expected.txt.
  • platform/qt-wk1/editing/deleting/delete-cell-contents-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/editing/deleting/delete-cell-contents-expected.txt.
  • platform/qt-wk1/editing/execCommand/button-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/editing/execCommand/button-expected.txt.
  • platform/qt-wk1/editing/execCommand/createLink-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/editing/execCommand/createLink-expected.txt.
  • platform/qt-wk1/editing/execCommand/indent-pre-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/editing/execCommand/indent-pre-expected.txt.
  • platform/qt-wk1/editing/execCommand/unlink-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/editing/execCommand/unlink-expected.txt.
  • platform/qt-wk1/editing/input/emacs-ctrl-o-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/editing/input/emacs-ctrl-o-expected.txt.
  • platform/qt-wk1/editing/inserting/insert-before-link-1-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/editing/inserting/insert-before-link-1-expected.txt.
  • platform/qt-wk1/editing/pasteboard/display-block-on-spans-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/editing/pasteboard/display-block-on-spans-expected.txt.
  • platform/qt-wk1/editing/pasteboard/emacs-cntl-y-001-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/editing/pasteboard/emacs-cntl-y-001-expected.txt.
  • platform/qt-wk1/editing/pasteboard/merge-end-list-2-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/editing/pasteboard/merge-end-list-2-expected.txt.
  • platform/qt-wk1/editing/pasteboard/merge-end-table-2-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/editing/pasteboard/merge-end-table-2-expected.txt.
  • platform/qt-wk1/editing/pasteboard/page-zoom-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/editing/pasteboard/page-zoom-expected.txt.
  • platform/qt-wk1/editing/selection/extend-selection-word-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/editing/selection/extend-selection-word-expected.txt.
  • platform/qt-wk1/editing/style/apply-through-end-of-document-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/editing/style/apply-through-end-of-document-expected.txt.
  • platform/qt-wk1/editing/style/remove-underline-across-paragraph-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/editing/style/remove-underline-across-paragraph-expected.txt.
  • platform/qt-wk1/editing/style/remove-underline-across-paragraph-in-bold-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/editing/style/remove-underline-across-paragraph-in-bold-expected.txt.
  • platform/qt-wk1/editing/style/remove-underline-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/editing/style/remove-underline-expected.txt.
  • platform/qt-wk1/editing/style/remove-underline-from-stylesheet-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/editing/style/remove-underline-from-stylesheet-expected.txt.
  • platform/qt-wk1/editing/style/remove-underline-in-bold-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/editing/style/remove-underline-in-bold-expected.txt.
  • platform/qt-wk1/editing/style/unbold-in-bold-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/editing/style/unbold-in-bold-expected.txt.
  • platform/qt-wk1/editing/undo/replace-text-in-node-preserving-markers-crash-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/editing/undo/replace-text-in-node-preserving-markers-crash-expected.txt.
  • platform/qt-wk1/fast/css3-text/css3-text-decoration/repaint/repaint-text-decoration-style-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk1/fast/css3-text/css3-text-decoration/repaint/repaint-text-decoration-style-expected.png.
  • platform/qt-wk1/fast/css3-text/css3-text-decoration/text-decoration-style-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk1/fast/css3-text/css3-text-decoration/text-decoration-style-expected.png.
  • platform/qt-wk1/fast/history/history-back-initial-vs-final-url-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/fast/history/history-back-initial-vs-final-url-expected.txt.
  • platform/qt-wk1/fast/loader/main-document-url-for-non-http-loads-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/fast/loader/main-document-url-for-non-http-loads-expected.txt.
  • platform/qt-wk1/fast/loader/show-only-one-beforeunload-dialog-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/fast/loader/show-only-one-beforeunload-dialog-expected.txt.
  • platform/qt-wk1/fast/loader/willsendrequest-returns-null-for-memory-cache-load-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/fast/loader/willsendrequest-returns-null-for-memory-cache-load-expected.txt.
  • platform/qt-wk1/fast/text/whitespace/028-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk1/fast/text/whitespace/028-expected.png.
  • platform/qt-wk1/fast/text/whitespace/028-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/fast/text/whitespace/028-expected.txt.
  • platform/qt-wk1/http/tests/cache/iframe-304-crash-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/http/tests/cache/iframe-304-crash-expected.txt.
  • platform/qt-wk1/http/tests/loading/307-after-303-after-post-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/http/tests/loading/307-after-303-after-post-expected.txt.
  • platform/qt-wk1/http/tests/loading/redirect-methods-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/http/tests/loading/redirect-methods-expected.txt.
  • platform/qt-wk1/http/tests/misc/favicon-loads-with-images-disabled-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/http/tests/misc/favicon-loads-with-images-disabled-expected.txt.
  • platform/qt-wk1/http/tests/misc/iframe-beforeunload-dialog-matching-ancestor-securityorigin-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/http/tests/misc/iframe-beforeunload-dialog-matching-ancestor-securityorigin-expected.txt.
  • platform/qt-wk1/http/tests/misc/object-embedding-svg-delayed-size-negotiation-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk1/http/tests/misc/object-embedding-svg-delayed-size-negotiation-2-expected.png.
  • platform/qt-wk1/http/tests/misc/object-embedding-svg-delayed-size-negotiation-2-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/http/tests/misc/object-embedding-svg-delayed-size-negotiation-2-expected.txt.
  • platform/qt-wk1/http/tests/navigation/forward-and-cancel-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/http/tests/navigation/forward-and-cancel-expected.txt.
  • platform/qt-wk1/http/tests/navigation/postredirect-frames-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/http/tests/navigation/postredirect-frames-expected.txt.
  • platform/qt-wk1/http/tests/navigation/postredirect-goback2-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/http/tests/navigation/postredirect-goback2-expected.txt.
  • platform/qt-wk1/http/tests/security/XFrameOptions/x-frame-options-allowall-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/http/tests/security/XFrameOptions/x-frame-options-allowall-expected.txt.
  • platform/qt-wk1/http/tests/security/XFrameOptions/x-frame-options-deny-meta-tag-parent-same-origin-allow-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/http/tests/security/XFrameOptions/x-frame-options-deny-meta-tag-parent-same-origin-allow-expected.txt.
  • platform/qt-wk1/http/tests/security/XFrameOptions/x-frame-options-invalid-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/http/tests/security/XFrameOptions/x-frame-options-invalid-expected.txt.
  • platform/qt-wk1/http/tests/security/XFrameOptions/x-frame-options-multiple-headers-sameorigin-allow-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/http/tests/security/XFrameOptions/x-frame-options-multiple-headers-sameorigin-allow-expected.txt.
  • platform/qt-wk1/http/tests/security/XFrameOptions/x-frame-options-parent-same-origin-allow-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/http/tests/security/XFrameOptions/x-frame-options-parent-same-origin-allow-expected.txt.
  • platform/qt-wk1/http/tests/security/contentSecurityPolicy/object-src-none-allowed-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/http/tests/security/contentSecurityPolicy/object-src-none-allowed-expected.txt.
  • platform/qt-wk1/loader/go-back-cached-main-resource-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/loader/go-back-cached-main-resource-expected.txt.
  • platform/qt-wk1/scrollingcoordinator/non-fast-scrollable-region-scaled-iframe-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk1/scrollingcoordinator/non-fast-scrollable-region-scaled-iframe-expected.png.
  • platform/qt-wk1/scrollingcoordinator/non-fast-scrollable-region-scaled-iframe-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/scrollingcoordinator/non-fast-scrollable-region-scaled-iframe-expected.txt.
  • platform/qt-wk1/scrollingcoordinator/non-fast-scrollable-region-transformed-iframe-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk1/scrollingcoordinator/non-fast-scrollable-region-transformed-iframe-expected.png.
  • platform/qt-wk1/scrollingcoordinator/non-fast-scrollable-region-transformed-iframe-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk1/scrollingcoordinator/non-fast-scrollable-region-transformed-iframe-expected.txt.
4:12 AM Changeset in webkit [154274] by commit-queue@webkit.org
  • 3 edits
    2 adds in trunk

<https://webkit.org/b/119882> Speed up moving cursor/selection up or down past non-rendered elements.

Patch by Mario Sanchez Prada <mario.prada@samsung.com> on 2013-08-19
Reviewed by Darin Adler.

This is a port from Blink originally written by Dominic Mazzoni:
https://src.chromium.org/viewvc/blink?revision=154977&view=revision

Source/WebCore:

From the original commit:

Skips calling firstPositionInOrBeforeNode when a node doesn't have a
renderer, since there couldn't possibly be a visible position there.
This was particularly wasteful when trying to move the cursor up when at
the beginning of a document, as it did a O(n2) scan through the document head.

Test: editing/execCommand/move-up-down-should-skip-hidden-elements.html

  • editing/VisibleUnits.cpp:

(WebCore::previousRootInlineBoxCandidatePosition): Updated.
(WebCore::nextRootInlineBoxCandidatePosition): Updates.

LayoutTests:

  • editing/execCommand/move-up-down-should-skip-hidden-elements-expected.txt: Added.
  • editing/execCommand/move-up-down-should-skip-hidden-elements.html: Added.
4:00 AM Changeset in webkit [154273] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/qt

<https://webkit.org/b/119933> [Qt] Fix tst_QObjectBridge::connectAndDisconnect() fail

Patch by Arunprasad Rajkumar <arurajku@cisco.com> on 2013-08-19
Reviewed by Allan Sandfeld Jensen.

Latest version of JSC has unquoted undefined in exception messages. So replaced 'undefined' with undefined.

  • tests/qobjectbridge/tst_qobjectbridge.cpp:

(tst_QObjectBridge::connectAndDisconnect):

3:56 AM Changeset in webkit [154272] by akling@apple.com
  • 54 edits in trunk/Source

<https://webkit.org/b/120000> Chrome::client() should return a reference.

Reviewed by Antti Koivisto.

Chrome::m_client should never be null.

3:36 AM Changeset in webkit [154271] by Antti Koivisto
  • 11 edits
    2 moves in trunk/Source/WebCore

<https://webkit.org/b/120004> Rename StyleElement to InlineStyleSheetOwner and stop inheriting from it

Reviewed by Andreas Kling.

Saner names and class relations.

  • CMakeLists.txt:
  • GNUmakefile.list.am:
  • Target.pri:
  • WebCore.vcxproj/WebCore.vcxproj:
  • WebCore.xcodeproj/project.pbxproj:
  • dom/DOMAllInOne.cpp:
  • dom/InlineStyleSheetOwner.cpp: Copied from Source/WebCore/dom/StyleElement.cpp.

(WebCore::InlineStyleSheetOwner::InlineStyleSheetOwner):
(WebCore::InlineStyleSheetOwner::~InlineStyleSheetOwner):
(WebCore::InlineStyleSheetOwner::insertedIntoDocument):
(WebCore::InlineStyleSheetOwner::removedFromDocument):
(WebCore::InlineStyleSheetOwner::clearDocumentData):
(WebCore::InlineStyleSheetOwner::childrenChanged):
(WebCore::InlineStyleSheetOwner::finishParsingChildren):
(WebCore::InlineStyleSheetOwner::createSheetFromTextContents):
(WebCore::InlineStyleSheetOwner::clearSheet):
(WebCore::InlineStyleSheetOwner::createSheet):
(WebCore::InlineStyleSheetOwner::isLoading):
(WebCore::InlineStyleSheetOwner::sheetLoaded):
(WebCore::InlineStyleSheetOwner::startLoadingDynamicSheet):

  • dom/InlineStyleSheetOwner.h: Copied from Source/WebCore/dom/StyleElement.h.
  • dom/StyleElement.cpp: Removed.
  • dom/StyleElement.h: Removed.
  • html/HTMLStyleElement.cpp:

(WebCore::HTMLStyleElement::HTMLStyleElement):
(WebCore::HTMLStyleElement::~HTMLStyleElement):
(WebCore::HTMLStyleElement::parseAttribute):
(WebCore::HTMLStyleElement::finishParsingChildren):
(WebCore::HTMLStyleElement::insertedInto):
(WebCore::HTMLStyleElement::removedFrom):
(WebCore::HTMLStyleElement::childrenChanged):

  • html/HTMLStyleElement.h:
  • svg/SVGStyleElement.cpp:

(WebCore::SVGStyleElement::SVGStyleElement):
(WebCore::SVGStyleElement::~SVGStyleElement):
(WebCore::SVGStyleElement::parseAttribute):
(WebCore::SVGStyleElement::finishParsingChildren):
(WebCore::SVGStyleElement::insertedInto):
(WebCore::SVGStyleElement::removedFrom):
(WebCore::SVGStyleElement::childrenChanged):

  • svg/SVGStyleElement.h:
3:19 AM Changeset in webkit [154270] by allan.jensen@digia.com
  • 6 edits in trunk/Source/WebCore

[Qt] QtWebKit (using the Arora browser) displays the border radii (radius) of a button very ugly
https://bugs.webkit.org/show_bug.cgi?id=28113

Reviewed by Jocelyn Turcotte.

StylePainter::init() was called twice making it clobber the previous antialiasing setting.

This patch cleans up the construction so we only have one constructor with init inlined.

  • platform/qt/RenderThemeQStyle.cpp:

(WebCore::StylePainterQStyle::StylePainterQStyle):
(WebCore::StylePainterQStyle::setupStyleOption):

  • platform/qt/RenderThemeQStyle.h:
  • platform/qt/RenderThemeQt.cpp:

(WebCore::StylePainter::StylePainter):

  • platform/qt/RenderThemeQt.h:
  • platform/qt/RenderThemeQtMobile.cpp:

(WebCore::StylePainterMobile::StylePainterMobile):

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

<https://webkit.org/b/119998> [Qt] Build fix (broken since r154257).

Patch by Julien Brianceau <jbrianceau@nds.com> on 2013-08-19
Reviewed by Andreas Kling.

Element::attach() doesn't exist anymore since r154257.

  • xml/parser/XMLDocumentParserQt.cpp:

(WebCore::XMLDocumentParser::parseStartElement):

1:56 AM Changeset in webkit [154268] by Antti Koivisto
  • 9 edits in trunk/Source/WebCore

<https://webkit.org/b/120001> Clean up StyleElement

Reviewed by Andreas Kling.

  • Make it non-virtual so we don't use virtual multiple inheritance
  • Improve names
  • Improve code clarity
  • dom/StyleElement.cpp:

(WebCore::StyleElement::StyleElement):
(WebCore::StyleElement::insertedIntoDocument):
(WebCore::StyleElement::clearDocumentData):
(WebCore::StyleElement::childrenChanged):
(WebCore::StyleElement::finishParsingChildren):
(WebCore::StyleElement::createSheetFromTextContents):
(WebCore::isValidCSSContentType):
(WebCore::StyleElement::createSheet):
(WebCore::StyleElement::isLoading):

  • dom/StyleElement.h:

(WebCore::StyleElement::setStyleSheetContentType):
(WebCore::StyleElement::setStyleSheetMedia):

  • html/HTMLStyleElement.cpp:

(WebCore::HTMLStyleElement::parseAttribute):

  • html/HTMLStyleElement.h:
  • svg/SVGStyleElement.cpp:

(WebCore::SVGStyleElement::isSupportedAttribute):
(WebCore::SVGStyleElement::parseAttribute):

  • svg/SVGStyleElement.h:
1:44 AM Changeset in webkit [154267] by gyuyoung.kim@samsung.com
  • 2 edits in trunk/Source/WebCore

<https://webkit.org/b/119990> Add toSVGStopElement(Node* node) to clean-up a static_cast<SVGStopElement*>

Reviewed by Darin Adler.

Clean up remained static_cast<SVGStopElement*> using toSVGStopElement(toSVGElement()).

  • rendering/svg/SVGRenderTreeAsText.cpp:

(WebCore::writeSVGGradientStop):

1:32 AM Changeset in webkit [154266] by gyuyoung.kim@samsung.com
  • 4 edits in trunk/Source/WebCore

<https://webkit.org/b/119996> Introduce toSVGAnimateElement(), and use it

Reviewed by Andreas Kling.

As a step to clean-up static_cast<SVGXXX>, static_cast<SVGAnimateElement*> also can be changed
with toSVGAnimateElement().

  • svg/SVGAnimateElement.cpp:

(WebCore::SVGAnimateElement::calculateAnimatedValue):

  • svg/SVGAnimateElement.h:

(WebCore::toSVGAnimateElement):

  • svg/SVGAnimationElement.cpp:

(WebCore::SVGAnimationElement::currentValuesForValuesAnimation):

1:24 AM Changeset in webkit [154265] by akling@apple.com
  • 23 edits in trunk/Source

<https://webkit.org/b/119997> Page::progress() should return a reference.

Reviewed by Antti Koivisto.

Page::m_progress is never null.

Aug 18, 2013:

11:40 PM Changeset in webkit [154264] by Darin Adler
  • 12 edits in trunk/Source

<https://webkit.org/b/119989> Make use of Node::ownerDocument a compile time error

Reviewed by Sam Weinig.

Source/WebCore:

  • dom/Element.h: Deleted the ownerDocument function. For compilers that don't support

deleted functions, it is instead overrides the base class function with one that is
private and not defined, which accomplishes almost the same thing: An error, either
at compile time or link time.

  • bindings/js/JSHTMLElementCustom.cpp:

(WebCore::JSHTMLElement::pushEventHandlerScope): Use document instead of ownerDocument.

  • dom/Document.cpp:

(WebCore::Document::~Document): Added a comment about this clearly-incorrect code.

  • inspector/InspectorInstrumentation.h:

(WebCore::InspectorInstrumentation::didPushShadowRoot): Use document instead of ownerDocument.
(WebCore::InspectorInstrumentation::willPopShadowRoot): Ditto.

  • inspector/InspectorStyleSheet.cpp:

(WebCore::InspectorStyleSheetForInlineStyle::setStyleText): Ditto.

  • plugins/PluginView.cpp:

(WebCore::getFrame): Removed ineffective call to ownerDocument after document when it
returns 0. It will never return anything other than 0 in that case.

  • rendering/RenderVideo.cpp:

(WebCore::RenderVideo::calculateIntrinsicSize): Use document instead of ownerDocument.
Did not remove the null check at this time, although I'm pretty sure it's bogus. We can
fix that when/if we change the return type of Element::document to a reference.

  • svg/SVGFEImageElement.cpp:

(WebCore::SVGFEImageElement::requestImageResource): Use document instead of ownerDocument.

Source/WebKit2:

  • WebProcess/Plugins/PDF/PDFPluginChoiceAnnotation.mm:

(WebKit::PDFPluginChoiceAnnotation::createAnnotationElement): Use document instead of
ownerDocument.

  • WebProcess/Plugins/PDF/PDFPluginTextAnnotation.mm:

(WebKit::PDFPluginTextAnnotation::createAnnotationElement): Ditto.

11:37 PM Changeset in webkit [154263] by Seokju Kwon
  • 5 edits in trunk/LayoutTests

Unreviewed gardening after r154135

fast/js/array-sort-modifying-tostring.html was removed.

  • platform/qt-mac/TestExpectations:
  • platform/qt/TestExpectations:
  • platform/win/TestExpectations:
  • platform/wincairo/TestExpectations:
10:25 PM Changeset in webkit [154262] by Darin Adler
  • 11 edits
    4 deletes in trunk/Source/WebCore

<https://webkit.org/b/119993> Remove most remaining platform-specific code from Clipboard class

Reviewed by Sam Weinig.

  • GNUmakefile.list.am: Removed ClipboardGtk.cpp.
  • PlatformEfl.cmake: Removed ClipboardEfl.cpp.
  • PlatformGTK.cmake: Removed ClipboardGtk.cpp.
  • PlatformWinCE.cmake: Removed ClipboardWin.cpp.
  • Target.pri: Removed ClipboardQt.cpp.
  • WebCore.vcxproj/WebCore.vcxproj: Removed ClipboardWin.cpp and ClipboardWin.h.
  • WebCore.vcxproj/WebCore.vcxproj.filters: Removed ClipboardWin.cpp and ClipboardWin.h.
  • dom/Clipboard.cpp:

(WebCore::Clipboard::createDragImage): Added. Version that works for all platforms
other than Mac, identical to the old one used in GTK and Qt, and close to the one used
on Windows.

  • platform/mac/ClipboardMac.mm: Trimmed includes down, and added a FIXME about next steps.
  • platform/qt/DataTransferItemListQt.h: Removed "friend class ClipboardQt", which refers

to a now-nonexistent class.

  • platform/efl/ClipboardEfl.cpp: Removed.
  • platform/gtk/ClipboardGtk.cpp: Removed.
  • platform/qt/ClipboardQt.cpp: Removed.
  • platform/win/ClipboardWin.cpp: Removed.
9:46 PM Changeset in webkit [154261] by fpizlo@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

REGRESSION(r154218): DFG::FixupPhase no longer turns GetById's child1 into CellUse
https://bugs.webkit.org/show_bug.cgi?id=119961

Reviewed by Mark Hahnenberg.

  • dfg/DFGFixupPhase.cpp:

(JSC::DFG::FixupPhase::fixupNode):

9:18 PM Changeset in webkit [154260] by Darin Adler
  • 6 edits in trunk/Source/WebCore

<https://webkit.org/b/119949> Factor Clipboard into drag and non-drag parts

Reviewed by Sam Weinig.

  • dom/Clipboard.cpp:

(WebCore::Clipboard::Clipboard): Move the ClipboardType argument to go after the pasteboard.
Initialize strings more efficiently. Put drag-specific data members inside an if statement.
Replace m_clipboardType with m_forDrag.
(WebCore::Clipboard::createForCopyAndPaste): Moved function up to be close to constructor.
Removed explicit clipboard type since constructor now defaults to copy and paste style.
(WebCore::Clipboard::setAccessPolicy): Tweaked comment.
(WebCore::Clipboard::getData): Put drag-specific code inside #if ENABLE(DRAG_SUPPORT).
(WebCore::Clipboard::setData): Ditto.
(WebCore::Clipboard::files): Ditto.
(WebCore::Clipboard::dropEffect): Added trivial non-drag versions of these functions to
be used when !ENABLE(DRAG_SUPPORT).
(WebCore::Clipboard::setDropEffect): Ditto.
(WebCore::Clipboard::effectAllowed): Ditto.
(WebCore::Clipboard::setEffectAllowed): Ditto.
(WebCore::Clipboard::createForDragAndDrop): Renamed Clipboard::create that takes DragData
to this, and kep the overload that does not as well. Made the DragData argument a const&.
(WebCore::Clipboard::canSetDragImage): Moved down here since it is drag-specific.
(WebCore::Clipboard::updateDragImage): Use m_shouldUpdateDragImage directly insted of
calling a dragStarted function.
(WebCore::dragOpFromIEOp): Moved this function down here to the drag-specific section.
(WebCore::IEOpFromDragOp): Ditto.
(WebCore::Clipboard::sourceOperation): Ditto.
(WebCore::Clipboard::destinationOperation): Ditto.
(WebCore::Clipboard::setSourceOperation): Ditto.
(WebCore::Clipboard::setDestinationOperation): Ditto.

  • dom/Clipboard.h: Removed unneeded include of "Node.h" and added and removed forward

class declarations as required. Removed non-helpful comment. Made ClipboardType a private
implementation detail. Moved functions that are not part of the DOM API down to a separate
section lower down in the class, and sorted the functions to match the order they appear
in the IDL file. Removed isForCopyAndPaste and isForDragAndDrop. Changed dropEffect and
effectAllowed to not be inlined. Moved the long comment before canSetDragImage into the
implementation since it's an implementation detail. Since this class is no longer polymorphic,
use only private, not protected. Make m_dragImageElement an Element, not a Node.

  • dom/Clipboard.idl: Removed flags to tell bindings how to deal with null strings, since

these string properties can never return null strings anyway.

  • page/DragController.cpp:

(WebCore::DragController::dragExited): Updated to call the new createForDragAndDrop function.
(WebCore::DragController::performDrag): Ditto.
(WebCore::DragController::tryDHTMLDrag): Ditto.

  • platform/mac/ClipboardMac.mm: Added now-needed include of Element.h since Clipboard.h no

longer includes it.

8:05 PM Changeset in webkit [154259] by ddkilzer@apple.com
  • 4 edits in trunk/Source/WebCore

WebCore fails to build with trunk clang: error: 'register' storage class specifier is deprecated [-Werror,-Wdeprecated-register]
<http://webkit.org/b/119932>
<rdar://problem/14764085>

Reviewed by Darin Adler.

Add pragma statements to ignore -Wdeprecated-register warnings
in generated code. Also ignore -Wunknown-pragmas so this
doesn't cause a build failure in older versions of clang.

  • css/makeprop.pl:

(WebCore::findProperty): Remove register hints from parameters.

  • css/makevalues.pl:

(WebCore::findValue): Ditto.

  • platform/ColorData.gperf:

(WebCore::findColor): Ditto.

4:56 PM Changeset in webkit [154258] by Seokju Kwon
  • 2 edits in trunk/LayoutTests

Unreviewed gardening.

  • platform/efl/TestExpectations: fast/js/array-sort-modifying-tostring.html was removed after r154135.
4:26 PM Changeset in webkit [154257] by Antti Koivisto
  • 26 edits in trunk/Source/WebCore

<https://webkit.org/b/119987> Make Element::attach standalone function

Reviewed by Andreas Kling.

This patch turns Element::attach() and the related functions into standalone functions.

  • dom/ContainerNode.cpp:

(WebCore::attachChild):
(WebCore::detachChild):

  • dom/ContainerNode.h:
  • dom/Document.cpp:

(WebCore::Document::attach):
(WebCore::Document::detach):

  • dom/Element.cpp:

(WebCore::Element::~Element):
(WebCore::Element::lazyReattach):
(WebCore::Element::removeShadowRoot):

Shadow root should be detached by now. Remove the detach call.

(WebCore::Element::updateFocusAppearanceAfterAttachIfNeeded):
(WebCore::Element::updatePseudoElement):
(WebCore::Element::clearStyleDerivedDataBeforeDetachingRenderer):
(WebCore::Element::clearHoverAndActiveStatusBeforeDetachingRenderer):

Factor some parts of former Element::attach/detach() into member functions.

  • dom/Element.h:
  • dom/ElementRareData.h:

(WebCore::ElementRareData::releasePseudoElement):

  • dom/NodeRenderingContext.cpp:

(WebCore::NodeRenderingContext::NodeRenderingContext):

  • dom/NodeRenderingContext.h:
  • dom/ShadowRoot.cpp:
  • dom/ShadowRoot.h:
  • html/HTMLDetailsElement.cpp:

(WebCore::HTMLDetailsElement::parseAttribute):

  • html/HTMLInputElement.cpp:

(WebCore::HTMLInputElement::updateType):
(WebCore::HTMLInputElement::parseAttribute):

  • html/HTMLObjectElement.cpp:

(WebCore::HTMLObjectElement::renderFallbackContent):

  • html/HTMLPlugInImageElement.cpp:

(WebCore::HTMLPlugInImageElement::willRecalcStyle):
(WebCore::HTMLPlugInImageElement::restartSnapshottedPlugIn):

  • html/HTMLSelectElement.cpp:

(WebCore::HTMLSelectElement::parseAttribute):
(WebCore::HTMLSelectElement::parseMultipleAttribute):

  • html/HTMLViewSourceDocument.cpp:

(WebCore::HTMLViewSourceDocument::createContainingTable):
(WebCore::HTMLViewSourceDocument::addSpanWithClassName):
(WebCore::HTMLViewSourceDocument::addLine):
(WebCore::HTMLViewSourceDocument::finishLine):
(WebCore::HTMLViewSourceDocument::addBase):
(WebCore::HTMLViewSourceDocument::addLink):

  • html/parser/HTMLConstructionSite.cpp:

(WebCore::executeTask):

  • html/parser/HTMLTreeBuilder.cpp:

(WebCore::HTMLTreeBuilder::callTheAdoptionAgency):

  • html/shadow/InsertionPoint.cpp:

(WebCore::InsertionPoint::willAttachRenderers):
(WebCore::InsertionPoint::willDetachRenderers):

  • loader/PlaceholderDocument.cpp:

(WebCore::PlaceholderDocument::attach):

  • style/StyleResolveTree.cpp:

(WebCore::Style::createRendererIfNeeded):

From Element::createRendererIfNeeded()

(WebCore::Style::attachShadowRoot):

From ShadowRoot::attach()

(WebCore::Style::childAttachedAllowedWhenAttachingChildren):
(WebCore::Style::attachChildren):

From Element::attachChildren()

(WebCore::Style::attachRenderTree):

From Element::attach()

(WebCore::Style::detachShadowRoot):

From ShadowRoot::detach()

(WebCore::Style::detachChildren):

From Element::detachChildren()

(WebCore::Style::detachRenderTree):

From Element::deatach()

(WebCore::Style::reattachRenderTree):

From Element::reattach()

(WebCore::Style::resolveLocal):

  • style/StyleResolveTree.h:

(WebCore::Style::AttachContext::AttachContext):

From Element::AttachContext

  • svg/SVGTests.cpp:

(WebCore::SVGTests::handleAttributeChange):

  • xml/XMLErrors.cpp:

(WebCore::XMLErrors::insertErrorMessageBlock):

  • xml/parser/XMLDocumentParserLibxml2.cpp:

(WebCore::XMLDocumentParser::startElementNs):

4:06 PM Changeset in webkit [154256] by mitz@apple.com
  • 2 edits in trunk/Source/WebKit2

Fix clean engineering builds after r154251.

  • WebKit2.xcodeproj/project.pbxproj: Removed references to the OfflineStorage XPC services

from the “Copy XPC services for engineering builds” build phase.

4:05 PM Changeset in webkit [154255] by Antti Koivisto
  • 2 edits in trunk/Source/WebCore

Fix crashing plugin tests caused by a logic error in the previous patch.

Not reviewed.

  • html/HTMLPlugInImageElement.cpp:

(WebCore::HTMLPlugInImageElement::willDetachRenderers):

1:01 PM Changeset in webkit [154254] by Antti Koivisto
  • 52 edits in trunk/Source/WebCore

<https://webkit.org/b/119982> Make Element::attach non-virtual

Reviewed by Andreas Kling.

This will give us more future refactoring options.

  • dom/Element.cpp:

(WebCore::Element::attach):
(WebCore::Element::detach):

Make non-virtual. Call element type specific custom functions as needed.

(WebCore::Element::styleForRenderer):
(WebCore::Element::willRecalcStyle):
(WebCore::Element::didRecalcStyle):
(WebCore::Element::willAttachRenderers):
(WebCore::Element::didAttachRenderers):
(WebCore::Element::willDetachRenderers):
(WebCore::Element::didDetachRenderers):

Add virtual custom callbacks.

(WebCore::Element::customStyleForRenderer):

  • dom/Element.h:
  • dom/Node.h:

(WebCore::Node::pseudoId):
(WebCore::Node::hasCustomStyleResolveCallbacks):
(WebCore::Node::setHasCustomStyleResolveCallbacks):

Use the existing bit as it largely overlaps. Rename for clarity.

(WebCore::Node::customPseudoId):

  • dom/PseudoElement.cpp:

(WebCore::PseudoElement::PseudoElement):
(WebCore::PseudoElement::didAttachRenderers):

  • dom/PseudoElement.h:
  • html/HTMLCanvasElement.cpp:

(WebCore::HTMLCanvasElement::HTMLCanvasElement):
(WebCore::HTMLCanvasElement::willAttachRenderers):

  • html/HTMLCanvasElement.h:
  • html/HTMLFormControlElement.cpp:

(WebCore::HTMLFormControlElement::HTMLFormControlElement):
(WebCore::HTMLFormControlElement::didAttachRenderers):

  • html/HTMLFormControlElement.h:
  • html/HTMLFrameElement.cpp:

(WebCore::HTMLFrameElement::HTMLFrameElement):
(WebCore::HTMLFrameElement::didAttachRenderers):

  • html/HTMLFrameElement.h:
  • html/HTMLFrameElementBase.cpp:

(WebCore::HTMLFrameElementBase::HTMLFrameElementBase):
(WebCore::HTMLFrameElementBase::didAttachRenderers):

  • html/HTMLFrameElementBase.h:
  • html/HTMLFrameSetElement.cpp:

(WebCore::HTMLFrameSetElement::HTMLFrameSetElement):
(WebCore::HTMLFrameSetElement::willAttachRenderers):

  • html/HTMLFrameSetElement.h:
  • html/HTMLIFrameElement.cpp:

(WebCore::HTMLIFrameElement::HTMLIFrameElement):

  • html/HTMLImageElement.cpp:

(WebCore::HTMLImageElement::HTMLImageElement):
(WebCore::HTMLImageElement::didAttachRenderers):

  • html/HTMLImageElement.h:
  • html/HTMLInputElement.cpp:

(WebCore::HTMLInputElement::HTMLInputElement):
(WebCore::HTMLInputElement::willAttachRenderers):
(WebCore::HTMLInputElement::didAttachRenderers):
(WebCore::HTMLInputElement::didDetachRenderers):

  • html/HTMLInputElement.h:
  • html/HTMLLIElement.cpp:

(WebCore::HTMLLIElement::HTMLLIElement):
(WebCore::HTMLLIElement::didAttachRenderers):

  • html/HTMLLIElement.h:
  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::HTMLMediaElement):
(WebCore::HTMLMediaElement::willAttachRenderers):
(WebCore::HTMLMediaElement::didAttachRenderers):

  • html/HTMLMediaElement.h:
  • html/HTMLOptGroupElement.cpp:

(WebCore::HTMLOptGroupElement::HTMLOptGroupElement):
(WebCore::HTMLOptGroupElement::didAttachRenderers):
(WebCore::HTMLOptGroupElement::willDetachRenderers):

  • html/HTMLOptGroupElement.h:
  • html/HTMLOptionElement.cpp:

(WebCore::HTMLOptionElement::HTMLOptionElement):
(WebCore::HTMLOptionElement::didAttachRenderers):
(WebCore::HTMLOptionElement::willDetachRenderers):

  • html/HTMLOptionElement.h:
  • html/HTMLPlugInElement.cpp:

(WebCore::HTMLPlugInElement::HTMLPlugInElement):
(WebCore::HTMLPlugInElement::willDetachRenderers):

  • html/HTMLPlugInElement.h:
  • html/HTMLPlugInImageElement.cpp:

(WebCore::HTMLPlugInImageElement::HTMLPlugInImageElement):
(WebCore::HTMLPlugInImageElement::didAttachRenderers):
(WebCore::HTMLPlugInImageElement::willDetachRenderers):

  • html/HTMLPlugInImageElement.h:
  • html/HTMLProgressElement.cpp:

(WebCore::HTMLProgressElement::HTMLProgressElement):
(WebCore::HTMLProgressElement::didAttachRenderers):

  • html/HTMLProgressElement.h:
  • html/HTMLTextAreaElement.cpp:

(WebCore::HTMLTextAreaElement::HTMLTextAreaElement):
(WebCore::HTMLTextAreaElement::didAttachRenderers):

  • html/HTMLTextAreaElement.h:
  • html/HTMLVideoElement.cpp:

(WebCore::HTMLVideoElement::HTMLVideoElement):
(WebCore::HTMLVideoElement::didAttachRenderers):

  • html/HTMLVideoElement.h:
  • html/shadow/InsertionPoint.cpp:

(WebCore::InsertionPoint::InsertionPoint):
(WebCore::InsertionPoint::willAttachRenderers):
(WebCore::InsertionPoint::willDetachRenderers):

  • html/shadow/InsertionPoint.h:
  • html/shadow/SliderThumbElement.cpp:

(WebCore::SliderThumbElement::SliderThumbElement):
(WebCore::SliderThumbElement::willDetachRenderers):

  • html/shadow/SliderThumbElement.h:
  • html/shadow/SpinButtonElement.cpp:

(WebCore::SpinButtonElement::SpinButtonElement):
(WebCore::SpinButtonElement::willDetachRenderers):

  • html/shadow/SpinButtonElement.h:
  • html/shadow/TextControlInnerElements.cpp:

(WebCore::TextControlInnerElement::TextControlInnerElement):
(WebCore::TextControlInnerTextElement::TextControlInnerTextElement):
(WebCore::SearchFieldCancelButtonElement::SearchFieldCancelButtonElement):
(WebCore::SearchFieldCancelButtonElement::willDetachRenderers):
(WebCore::InputFieldSpeechButtonElement::InputFieldSpeechButtonElement):
(WebCore::InputFieldSpeechButtonElement::willAttachRenderers):
(WebCore::InputFieldSpeechButtonElement::willDetachRenderers):

  • html/shadow/TextControlInnerElements.h:
  • style/StyleResolveTree.cpp:

(WebCore::Style::resolveTree):

  • svg/SVGElement.cpp:

(WebCore::SVGElement::SVGElement):

  • svg/SVGImageElement.cpp:

(WebCore::SVGImageElement::SVGImageElement):
(WebCore::SVGImageElement::didAttachRenderers):

  • svg/SVGImageElement.h:
  • svg/SVGUseElement.cpp:

(WebCore::SVGUseElement::SVGUseElement):

12:29 PM Changeset in webkit [154253] by barraclough@apple.com
  • 33 edits in trunk/Source

https://bugs.webkit.org/show_bug.cgi?id=119972
Add attributes field to PropertySlot

Reviewed by Geoff Garen.

For all JSC types, this makes getOwnPropertyDescriptor redundant.
There will be a bit more hacking required in WebCore to remove GOPD whilst maintaining current behaviour.
(Current behaviour is in many ways broken, particularly in that GOPD & GOPS are inconsistent, but we should fix incrementally).

Source/JavaScriptCore:

No performance impact.

  • runtime/PropertySlot.h:

(JSC::PropertySlot::setValue):
(JSC::PropertySlot::setCustom):
(JSC::PropertySlot::setCacheableCustom):
(JSC::PropertySlot::setCustomIndex):
(JSC::PropertySlot::setGetterSlot):
(JSC::PropertySlot::setCacheableGetterSlot):

  • These mathods now all require 'attributes'.
  • runtime/JSObject.h:

(JSC::JSObject::getDirect):
(JSC::JSObject::getDirectOffset):
(JSC::JSObject::inlineGetOwnPropertySlot):

  • Added variants of getDirect, getDirectOffset that return the attributes.
  • API/JSCallbackObjectFunctions.h:

(JSC::::getOwnPropertySlot):

  • runtime/Arguments.cpp:

(JSC::Arguments::getOwnPropertySlotByIndex):
(JSC::Arguments::getOwnPropertySlot):

  • runtime/JSActivation.cpp:

(JSC::JSActivation::symbolTableGet):
(JSC::JSActivation::getOwnPropertySlot):

  • runtime/JSArray.cpp:

(JSC::JSArray::getOwnPropertySlot):

  • runtime/JSArrayBuffer.cpp:

(JSC::JSArrayBuffer::getOwnPropertySlot):

  • runtime/JSArrayBufferView.cpp:

(JSC::JSArrayBufferView::getOwnPropertySlot):

  • runtime/JSDataView.cpp:

(JSC::JSDataView::getOwnPropertySlot):

  • runtime/JSFunction.cpp:

(JSC::JSFunction::getOwnPropertySlot):

  • runtime/JSGenericTypedArrayViewInlines.h:

(JSC::::getOwnPropertySlot):
(JSC::::getOwnPropertySlotByIndex):

  • runtime/JSObject.cpp:

(JSC::JSObject::getOwnPropertySlotByIndex):
(JSC::JSObject::fillGetterPropertySlot):

  • runtime/JSString.h:

(JSC::JSString::getStringPropertySlot):

  • runtime/JSSymbolTableObject.h:

(JSC::symbolTableGet):

  • runtime/Lookup.cpp:

(JSC::setUpStaticFunctionSlot):

  • runtime/Lookup.h:

(JSC::getStaticPropertySlot):
(JSC::getStaticPropertyDescriptor):
(JSC::getStaticValueSlot):
(JSC::getStaticValueDescriptor):

  • runtime/RegExpObject.cpp:

(JSC::RegExpObject::getOwnPropertySlot):

  • runtime/SparseArrayValueMap.cpp:

(JSC::SparseArrayEntry::get):

  • Pass attributes to PropertySlot::set* methods.

Source/WebCore:

  • bindings/js/JSCSSStyleDeclarationCustom.cpp:

(WebCore::JSCSSStyleDeclaration::getOwnPropertySlotDelegate):

  • bindings/js/JSDOMWindowCustom.cpp:

(WebCore::JSDOMWindow::getOwnPropertySlot):
(WebCore::JSDOMWindow::getOwnPropertySlotByIndex):
(WebCore::JSDOMWindow::getOwnPropertyDescriptor):

  • bindings/js/JSHistoryCustom.cpp:

(WebCore::JSHistory::getOwnPropertySlotDelegate):
(WebCore::JSHistory::getOwnPropertyDescriptorDelegate):

  • bindings/js/JSLocationCustom.cpp:

(WebCore::JSLocation::getOwnPropertySlotDelegate):
(WebCore::JSLocation::getOwnPropertyDescriptorDelegate):

  • bindings/js/JSPluginElementFunctions.cpp:

(WebCore::runtimeObjectCustomGetOwnPropertySlot):
(WebCore::runtimeObjectCustomGetOwnPropertyDescriptor):

  • bindings/scripts/CodeGeneratorJS.pm:

(GenerateGetOwnPropertySlotBody):
(GenerateGetOwnPropertyDescriptorBody):
(GenerateImplementation):

  • bridge/runtime_array.cpp:

(JSC::RuntimeArray::getOwnPropertySlot):
(JSC::RuntimeArray::getOwnPropertyDescriptor):
(JSC::RuntimeArray::getOwnPropertySlotByIndex):

  • bridge/runtime_method.cpp:

(JSC::RuntimeMethod::getOwnPropertySlot):
(JSC::RuntimeMethod::getOwnPropertyDescriptor):

  • bridge/runtime_object.cpp:

(JSC::Bindings::RuntimeObject::getOwnPropertySlot):
(JSC::Bindings::RuntimeObject::getOwnPropertyDescriptor):

  • Pass attributes to PropertySlot::set* methods.

Source/WebKit2:

  • WebProcess/Plugins/Netscape/JSNPObject.cpp:

(WebKit::JSNPObject::getOwnPropertySlot):
(WebKit::JSNPObject::getOwnPropertyDescriptor):

  • Pass attributes to PropertySlot::set* methods.
11:54 AM Changeset in webkit [154252] by rniwa@webkit.org
  • 3 edits
    2 adds in trunk

<https://webkit.org/b/119917> Pasting multiple lines into a textarea can introduce extra new lines

Reviewed by Darin Adler.

Source/WebCore:

Inspired by https://chromium.googlesource.com/chromium/blink/+/6152a12f7ace27beea4d284ff8416631e8aa5217.

The bug was caused by createFragmentFromText's falsely assuming that the newline were not preserved
if the first node's renderer didn't exist.

Fixed the bug by obtaining the renderer of the container of the first visible position in the context.

Test: editing/pasteboard/paste-into-textarea-with-new-line.html

  • editing/markup.cpp:

(WebCore::contextPreservesNewline):
(WebCore::createFragmentFromText):

LayoutTests:

Add a regression test.

  • editing/pasteboard/paste-into-textarea-with-new-line-expected.txt: Added.
  • editing/pasteboard/paste-into-textarea-with-new-line.html: Added.
11:44 AM Changeset in webkit [154251] by weinig@apple.com
  • 4 edits
    5 deletes in trunk/Source/WebKit2

<https://webkit.org/b/119911> Remove the unused OfflineStorageProcess

Reviewed by Darin Adler.

  • Configurations/OfflineStorageProcess.xcconfig: Removed.
  • Configurations/OfflineStorageService.Development.xcconfig: Removed.
  • Configurations/OfflineStorageService.xcconfig: Removed.
  • DerivedSources.make:
  • OfflineStorageProcess: Removed.
  • OfflineStorageProcess/EntryPoint: Removed.
  • OfflineStorageProcess/EntryPoint/mac: Removed.
  • OfflineStorageProcess/EntryPoint/mac/LegacyProcess: Removed.
  • OfflineStorageProcess/EntryPoint/mac/LegacyProcess/Info.plist: Removed.
  • OfflineStorageProcess/EntryPoint/mac/LegacyProcess/OfflineStorageProcessMain.mm: Removed.
  • OfflineStorageProcess/EntryPoint/mac/XPCService: Removed.
  • OfflineStorageProcess/EntryPoint/mac/XPCService/OfflineStorageService: Removed.
  • OfflineStorageProcess/EntryPoint/mac/XPCService/OfflineStorageService.Development: Removed.
  • OfflineStorageProcess/EntryPoint/mac/XPCService/OfflineStorageService.Development/Info.plist: Removed.
  • OfflineStorageProcess/EntryPoint/mac/XPCService/OfflineStorageService/Info.plist: Removed.
  • OfflineStorageProcess/EntryPoint/mac/XPCService/OfflineStorageServiceEntryPoint.mm: Removed.
  • OfflineStorageProcess/OfflineStorageProcess.cpp: Removed.
  • OfflineStorageProcess/OfflineStorageProcess.h: Removed.
  • OfflineStorageProcess/OfflineStorageProcess.messages.in: Removed.
  • OfflineStorageProcess/mac: Removed.
  • OfflineStorageProcess/mac/OfflineStorageProcessMac.mm: Removed.
  • OfflineStorageProcess/mac/com.apple.WebKit.OfflineStorage.sb: Removed.
  • Scripts/webkit2/messages.py:
  • Shared/OfflineStorage: Removed.
  • Shared/OfflineStorage/OfflineStorageProcessCreationParameters.cpp: Removed.
  • Shared/OfflineStorage/OfflineStorageProcessCreationParameters.h: Removed.
  • WebKit2.xcodeproj/project.pbxproj:

Remove.

10:15 AM Changeset in webkit [154250] by akling@apple.com
  • 2 edits in trunk/Source/WebCore

<https://webkit.org/b/119983> Add two missing RefPtr::release() in HTMLLinkElement.

Reviewed by Antti Koivisto.

  • html/HTMLLinkElement.cpp:

(WebCore::HTMLLinkElement::setCSSStyleSheet):

9:01 AM Changeset in webkit [154249] by akling@apple.com
  • 8 edits
    2 adds in trunk/Source/WebCore

<https://webkit.org/b/119981> Move ElementData & co to their own files.

Reviewed by Antti Koivisto.

I like to move it move it.

7:39 AM Changeset in webkit [154248] by ddkilzer@apple.com
  • 2 edits in trunk/Source/WebCore

BUILD FIX (r153990): Add UNUSED_PARAM for heightChanged when CSS_SHAPES is disabled

Fixes the following build failure:

WebCore/rendering/RenderBlock.cpp:1529:53: error: unused parameter 'heightChanged' [-Werror,-Wunused-parameter]
void RenderBlock::updateShapesAfterBlockLayout(bool heightChanged)


1 error generated.

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::updateShapesAfterBlockLayout): Add
UNUSED_PARAM(heightChanged) when CSS_SHAPES is disabled.

7:16 AM Changeset in webkit [154247] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

[EFL] minor method name fix for the textTrackOffMenuItemText method
https://bugs.webkit.org/show_bug.cgi?id=119978

the method textTrackOffMenuItemText was renamed in
https://bugs.webkit.org/show_bug.cgi?id=113822

Patch by Danilo Cesar Lemes de Paula <danilo.cesar@collabora.co.uk> on 2013-08-18
Reviewed by Christophe Dumez.

  • platform/efl/LocalizedStringsEfl.cpp:

(WebCore::textTrackOffMenuItemText):

4:06 AM Changeset in webkit [154246] by Antti Koivisto
  • 2 edits in trunk/LayoutTests

<https://webkit.org/b/119963> Use TextNodeTraversal for getting sheet text in StyleElement

Reviewed by Andreas Kling.

As a follow-up, mark as crashing a test that is now expected to crash in controlled manner (CRASH()).

Note that the test only ever passed because the amount of data was huge enough (>4GB) for it to take
the special do-nothing code path. With slightly less data the test would hit CRASH() in fastRealloc() like
it does now.


Mark fast/css/giant-stylesheet-crash.html as crashing.

Note: See TracTimeline for information about the timeline view.