Timeline



Aug 23, 2013:

9:07 PM Changeset in webkit [154538] by mrowe@apple.com
  • 2 edits in trunk/Source/WTF

<https://webkit.org/b/120141> Make RetainPtr work with ARC.

Have RetainPtr store the object its managing as a CFTypeRef and manage its lifetime with
CFRetain / CFRelease. This is necessary to have explicit control over the lifetime of
Objective-C objects when automatic reference counting is in use. Two helper methods are
introduced to convert between the pointer type that the RetainPtr manages and the CFTypeRef
that the pointer is stored as. For CF types and Objective-C types with ARC disabled,
these methods are simply casts. For Objective-C types under ARC they need to use the
special bridging casts to keep the compiler happy.

Reviewed by Anders Carlsson.

  • wtf/RetainPtr.h:

(WTF::RetainPtr::RetainPtr): Use the helper methods to convert to and from the storage
types when necessary.
(WTF::RetainPtr::~RetainPtr): Ditto.
(WTF::RetainPtr::get): Ditto.
(WTF::RetainPtr::operator->): Ditto.
(WTF::RetainPtr::operator PtrType): Ditto.
(WTF::::RetainPtr): Ditto.
(WTF::::clear): Ditto.
(WTF::::leakRef): Ditto.
(WTF::=): Ditto.

(WTF::RetainPtr::fromStorageTypeHelper): Use crazy template magic to determine whether to use
a bridging cast or not depending on the desired return type.
(WTF::RetainPtr::fromStorageType):
(WTF::RetainPtr::toStorageType): Overloading is sufficient here.

9:07 PM Changeset in webkit [154537] by mrowe@apple.com
  • 2 edits in trunk/Source/WTF

Revert r153637.

It didn't work with ARC like it said it would. We'll need to take a slightly different approach.

Rubber-stamped by Anders Carlsson.

  • wtf/RetainPtr.h:

(WTF::RetainPtr::RetainPtr):
(WTF::RetainPtr::~RetainPtr):
(WTF::RetainPtr::operator UnspecifiedBoolType):
(WTF::::RetainPtr):
(WTF::::clear):
(WTF::=):
(WTF::adoptCF):
(WTF::adoptNS):

5:30 PM Changeset in webkit [154536] by Brent Fulgham
  • 2 edits in trunk/WebKitLibraries

[Windows] Forgot to check in the header as well!

  • win/include/WebKitSystemInterface/WebKitSystemInterface.h:
5:30 PM Changeset in webkit [154535] by Simon Fraser
  • 5 edits in trunk/Source/WebCore

Improve scrolling behavior in iTunes
https://bugs.webkit.org/show_bug.cgi?id=120241
<rdar://problem/14825344>

Reviewed by Sam Weinig.

When vertically scrolling a page with horizontally scrollable overflow areas,
vertical scroll gestures would be interrupted when wheel events with non-zero
X deltas were intercepted by the overflow areas.

Fix by storing a small history of wheel events deltas and using
it to determine of the scroll gesture is primarily vertical or horizontal.
When this is detected, avoid dispatching scroll events on the on the
non-dominant axis.

Currently this behavior is conditionalized to only apply in iTunes.

  • page/EventHandler.cpp:

(WebCore::EventHandler::EventHandler):
(WebCore::EventHandler::recordWheelEventDelta):
(WebCore::deltaIsPredominantlyVertical):
(WebCore::EventHandler::dominantScrollGestureDirection):
(WebCore::EventHandler::handleWheelEvent):
(WebCore::EventHandler::defaultWheelEventHandler):

  • page/EventHandler.h:
  • platform/RuntimeApplicationChecks.cpp:

(WebCore::applicationIsITunes):

  • platform/RuntimeApplicationChecks.h:
5:28 PM Changeset in webkit [154534] by Brent Fulgham
  • 2 edits in trunk/WebKitLibraries

[Windows] Unreviewed build correction.

  • win/lib32/WebKitSystemInterface.lib: Update with new API for r132545.
5:13 PM Changeset in webkit [154533] by psolanki@apple.com
  • 5 edits in trunk/Source/WebCore

MediaQuery::expressions() should return a reference
<https://webkit.org/b/120215>

Reviewed by Anders Carlsson.

m_expressions is never NULL so we can just return a reference.

  • css/MediaList.cpp:

(WebCore::reportMediaQueryWarningIfNeeded):

  • css/MediaQuery.cpp:

(WebCore::MediaQuery::MediaQuery):

  • css/MediaQuery.h:

(WebCore::MediaQuery::expressions):

  • css/MediaQueryEvaluator.cpp:

(WebCore::MediaQueryEvaluator::eval):

4:57 PM Changeset in webkit [154532] by rniwa@webkit.org
  • 2 edits in trunk/Source/WebCore

Build fix after r154515.

  • dom/ElementTraversal.h:

(WebCore::Traversal<ElementType>::firstChild):
(WebCore::Traversal<ElementType>::lastChild):

4:19 PM Changeset in webkit [154531] by akling@apple.com
  • 3 edits in trunk/Source/WebCore

Simplify some Settings access where we have a Frame in reach.
<http://webkit.org/b/120239>

Reviewed by Anders Carlsson.

In three cases where we can grab at a Frame, we can reach all the way to some Settings
without having to use pointers.

  • loader/FrameLoader.cpp:

(WebCore::FrameLoader::didBeginDocument):

  • rendering/RenderLayerCompositor.cpp:

(WebCore::RenderLayerCompositor::addToOverlapMap):
(WebCore::RenderLayerCompositor::requiresCompositingForPosition):

4:15 PM Changeset in webkit [154530] by rniwa@webkit.org
  • 3 edits in trunk/LayoutTests

Rebaseline after r154518. Also fix the test to expect "0" instead of "-0".

Reviewed by Gavin Barraclough.

  • fast/js/dfg-div-by-neg1-and-then-or-zero-interesting-reg-alloc-expected.txt:
  • fast/js/script-tests/dfg-div-by-neg1-and-then-or-zero-interesting-reg-alloc.js:
4:00 PM Changeset in webkit [154529] by jer.noble@apple.com
  • 3 edits
    2 adds in trunk

REGRESSION (r150516): Media controls are messed up on right-to-left webpages
https://bugs.webkit.org/show_bug.cgi?id=120234

Reviewed by Dan Bernstein.

Source/WebCore:

Test: media/video-rtl.html

Make the media control panel explicitly direction:ltr. The captions menu and captions
display are unaffected, so rtl content will continue to appear rtl there.

  • css/mediaControls.css:

(audio::-webkit-media-controls-panel, video::-webkit-media-controls-panel):

LayoutTests:

  • media/video-rtl-expected.html: Added.
  • media/video-rtl.html: Added.
3:57 PM Changeset in webkit [154528] by Beth Dakin
  • 13 edits in trunk

REGRESSION (r132545): Some PDFs generated by WebKit are blank when viewed in
Adobe Reader
https://bugs.webkit.org/show_bug.cgi?id=120240
-and corresponding-
<rdar://problem/14634453>

Reviewed by Anders Carlsson.

Source/WebCore:

This patch makes it so that we don’t use the infinite rect for the PDF context,
and it adds WebCoreSystemInterface API to find out if the current content is the
PDF context.

  • WebCore.exp.in:
  • platform/graphics/cg/GraphicsContextCG.cpp:

(WebCore::GraphicsContext::clipOut):

  • platform/mac/WebCoreSystemInterface.h:
  • platform/mac/WebCoreSystemInterface.mm:

Source/WebKit/mac:

Hook up new WebSystemInterface API to find out if the current context is the PDF
context.

  • WebCoreSupport/WebSystemInterface.mm:

(InitWebCoreSystemInterface):

Source/WebKit2:

Hook up new WebSystemInterface API to find out if the current context is the PDF
context.

  • WebProcess/WebCoreSupport/mac/WebSystemInterface.mm:

(InitWebCoreSystemInterface):

WebKitLibraries:

  • WebKitSystemInterface.h:
  • libWebKitSystemInterfaceLion.a:
  • libWebKitSystemInterfaceMountainLion.a:
3:44 PM Changeset in webkit [154527] by eric.carlson@apple.com
  • 24 edits in trunk

[Mac] some track language tags are not recognized
https://bugs.webkit.org/show_bug.cgi?id=119643

Source/WebCore:

Reviewed by Jere Noble.

No new tests, existing tests updated.

  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::HTMLMediaElement): Initialize m_captionDisplayMode from settings

if possible.

(WebCore::HTMLMediaElement::configureTextTrackGroup): Don't enable a default track when preferences

say captions should be disabled. Don't disable an already visible track if we don't find
a match unless preferences say captions should be disabled. m_forcedOrAutomaticSubtitleTrackLanguage ->
m_subtitleTrackLanguage.

(WebCore::HTMLMediaElement::mediaPlayerCharacteristicChanged): If the language of the primary

audio track changes, only kick off a text track recalc if caption preference are set to "automatic".

  • html/HTMLMediaElement.h:
  • platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp:

(WebCore::MediaPlayerPrivateAVFoundation::MediaPlayerPrivateAVFoundation): Initialize m_characteristicsChanged

and m_delayCharacteristicsChangedNotification.

(WebCore::MediaPlayerPrivateAVFoundation::setHasVideo): Call characteristicsChanged.
(WebCore::MediaPlayerPrivateAVFoundation::setHasAudio): Ditto.
(WebCore::MediaPlayerPrivateAVFoundation::setHasClosedCaptions): Ditto.
(WebCore::MediaPlayerPrivateAVFoundation::characteristicsChanged): New, allows us to coalesce

calls to the media player when we know several characteristics may change.

(WebCore::MediaPlayerPrivateAVFoundation::setDelayCharacteristicsChangedNotification): Enable or

disable notification delay.

  • platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.h:
  • platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:

(WebCore::MediaPlayerPrivateAVFoundationObjC::tracksChanged): Always call languageOfPrimaryAudioTrack(),

a track may have changed so we may have a new language.

(WebCore::MediaPlayerPrivateAVFoundationObjC::languageOfPrimaryAudioTrack): Call [AVAssetTrack languageCode]

if [AVAssetTrack extendedLanguageTag] returns NULL in case the media file has an old
QuickTime language code.

LayoutTests:

Reviewed by Jer Noble.

Explicitly set caption mode to "Automatic" so the track 'default' attribute works.

  • media/track/text-track-cue-is-reachable.html:
  • media/track/text-track-is-reachable.html:
  • media/track/track-active-cues.html:
  • media/track/track-cue-overlap-snap-to-lines-not-set.html:
  • media/track/track-cue-rendering-horizontal.html:
  • media/track/track-cue-rendering-vertical.html:
  • media/track/track-kind.html:
  • media/track/track-large-timestamp.html:
  • media/track/track-mode.html:
  • media/track/track-text-track-cue-list.html:
  • media/track/track-webvtt-tc000-empty.html:
  • media/track/track-webvtt-tc002-bom.html:
  • media/track/track-webvtt-tc010-no-timings.html:
  • media/track/track-webvtt-tc027-empty-cue.html:
  • media/track/track-webvtt-tc028-unsupported-markup.html:
  • media/track/track-word-breaking.html:
  • media/video-test.js:

(setCaptionDisplayMode):

3:35 PM Changeset in webkit [154526] by Brent Fulgham
  • 2 edits in trunk/Source/WebCore

[Windows] Unreviewed build correction. Need to force environment variable
to be escaped when running nmake command.

  • WebCore.vcxproj/WebCoreGenerated.make:
3:00 PM Changeset in webkit [154525] by Antti Koivisto
  • 12 edits in trunk/Source

Use ElementTraversal some more
https://bugs.webkit.org/show_bug.cgi?id=120226

Reviewed by Darin Adler.

More traversal with tighter typing.

  • accessibility/AccessibilityNodeObject.cpp:

(WebCore::AccessibilityNodeObject::canvasHasFallbackContent):
(WebCore::siblingWithAriaRole):

  • accessibility/AccessibilityTable.cpp:

(WebCore::AccessibilityTable::isDataTable):

  • css/CSSFontFaceSource.cpp:

(WebCore::CSSFontFaceSource::getFontData):

  • dom/ContainerNode.cpp:

(WebCore::willRemoveChild):

  • dom/ContainerNodeAlgorithms.h:

(WebCore::ChildFrameDisconnector::ChildFrameDisconnector):
(WebCore::ChildFrameDisconnector::collectFrameOwners):
(WebCore::ChildFrameDisconnector::disconnect):

  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::selectMediaResource):
(WebCore::HTMLMediaElement::textTrackModeChanged):
(WebCore::HTMLMediaElement::cancelPendingEventsAndCallbacks):

  • html/HTMLObjectElement.cpp:

(WebCore::HTMLObjectElement::parametersForPlugin):
(WebCore::HTMLObjectElement::containsJavaApplet):

  • html/HTMLParamElement.h:

(WebCore::isHTMLParamElement):
(WebCore::HTMLParamElement):

  • html/HTMLSourceElement.h:

(WebCore::isHTMLSourceElement):
(WebCore::HTMLSourceElement):

  • svg/SVGFontFaceElement.h:

(WebCore::isSVGFontFaceElement):
(WebCore::SVGFontFaceElement):
(WebCore::toSVGFontFaceElement):

2:58 PM Changeset in webkit [154524] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebInspectorUI

Web Inspector: Fix js minification of updated CodeMirror
https://bugs.webkit.org/show_bug.cgi?id=120231

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

Workaround a jsmin issue with "return .test();" lines when
minifying JavaScript in production builds.

  • Scripts/copy-user-interface-resources.sh:
  • UserInterface/External/CodeMirror/codemirror.js:

(window.CodeMirror):

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

Versioning.

2:40 PM Changeset in webkit [154522] by Lucas Forschler
  • 1 copy in tags/Safari-537.63

New Tag.

1:50 PM Changeset in webkit [154521] by commit-queue@webkit.org
  • 4 edits in trunk/Source/JavaScriptCore

Failure building with python3
https://bugs.webkit.org/show_bug.cgi?id=106645

Patch by Laszlo Papp <lpapp@kde.org> on 2013-08-23
Reviewed by Benjamin Poulain.

Use print functions instead of python statements to be compatible with python 3.X and 2.7 as well.
Archlinux has been using python3 and that is what causes issues while packaging QtWebKit along with Qt5.

  • disassembler/udis86/itab.py:

(UdItabGenerator.genInsnTable):

  • disassembler/udis86/ud_opcode.py:

(UdOpcodeTables.print_table):

  • disassembler/udis86/ud_optable.py:

(UdOptableXmlParser.parseDef):
(UdOptableXmlParser.parse):
(printFn):

1:46 PM Changeset in webkit [154520] by Brent Fulgham
  • 2 edits in trunk/Source/WTF

[Windows] Unreviewed build correction after r154513.

  • WTF.vcxproj/build-generated-files.sh: Variable was missing '$' character.
1:43 PM Changeset in webkit [154519] by Darin Adler
  • 3 edits in trunk/Source/WTF

Cut down repeated code in RefPtr and RetainPtr by using copy/move-and-swap for assignment operators
https://bugs.webkit.org/show_bug.cgi?id=120223

Reviewed by Anders Carlsson.

  • wtf/RefPtr.h: Switch to copy-and-swap in the assignment operators. The move ones already were done

that way.

  • wtf/RetainPtr.h: Ditto, except for the move ones too.
1:40 PM Changeset in webkit [154518] by fpizlo@apple.com
  • 8 edits
    15 adds in trunk

Incorrect TypedArray#set behavior
https://bugs.webkit.org/show_bug.cgi?id=83818

Source/JavaScriptCore:

Reviewed by Oliver Hunt and Mark Hahnenberg.

This was so much fun! typedArray.set() is like a memmove on steroids, and I'm
not smart enough to figure out optimal versions for *all* of the cases. But I
did come up with optimal implementations for most of the cases, and I wrote
spec-literal code (i.e. copy via a transfer buffer) for the cases I'm not smart
enough to write optimal code for.

  • runtime/JSArrayBufferView.h:

(JSC::JSArrayBufferView::hasArrayBuffer):

  • runtime/JSArrayBufferViewInlines.h:

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

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

(JSC::::setWithSpecificType):
(JSC::::set):
(JSC::::existingBuffer):

LayoutTests:

Reviewed by Oliver Hunt and Mark Hahnenberg.

Made it possible for shouldBe() to compare typed arrays to each other and to any array-like
object.

Added a bunch of tests for different kinds of overlapping typedArray.set()'s.

For sanity, also added the reduced test case from the bug. Interestingly, though, that test
case already passed on trunk - probably by luck (we had incidentally changed the default
copy direction from one that happened to not work to one that happened to be fine, but only
for this test).

  • fast/js/jsc-test-list:
  • fast/js/resources/js-test-pre.js:

(isTypedArray):
(isResultCorrect):
(stringify):
(shouldBe):

  • fast/js/script-tests/typed-array-copy.js: Added.
  • fast/js/script-tests/typedarray-set-destination-smaller-than-source.js: Added.
  • fast/js/script-tests/typedarray-set-overlapping-elements-of-same-size.js: Added.
  • fast/js/script-tests/typedarray-set-same-type-memmove.js: Added.

(arraysEqual):

  • fast/js/script-tests/typedarray-set-source-smaller-than-destination.js: Added.
  • fast/js/typed-array-copy-expected.txt: Added.
  • fast/js/typed-array-copy.html: Added.
  • fast/js/typedarray-set-destination-smaller-than-source-expected.txt: Added.
  • fast/js/typedarray-set-destination-smaller-than-source.html: Added.
  • fast/js/typedarray-set-overlapping-elements-of-same-size-expected.txt: Added.
  • fast/js/typedarray-set-overlapping-elements-of-same-size.html: Added.
  • fast/js/typedarray-set-same-type-memmove-expected.txt: Added.
  • fast/js/typedarray-set-same-type-memmove.html: Added.
  • fast/js/typedarray-set-source-smaller-than-destination-expected.txt: Added.
  • fast/js/typedarray-set-source-smaller-than-destination.html: Added.
1:35 PM Changeset in webkit [154517] by akling@apple.com
  • 2 edits in trunk/Source/WebCore

Let Document keep its RenderView during render tree attach.
<https://webkit.org/b/120224>

Reviewed by Antti Koivisto.

Remove prehistoric code that cleared Document's renderer pointer during tree attach.

  • dom/Document.cpp:

(WebCore::Document::attach):

1:30 PM Changeset in webkit [154516] by oliver@apple.com
  • 3 edits in trunk/Source/WTF

Add more validation logic to CompressibleVector
https://bugs.webkit.org/show_bug.cgi?id=120227

Reviewed by Brent Fulgham.

Add a pile of assertions to try on catch whatever is going wrong
in the windows environment or other platforms.

  • wtf/Compression.cpp:

(WTF::GenericCompressedData::create):
(WTF::GenericCompressedData::decompress):

  • wtf/Compression.h:

(WTF::CompressedVector::decompress):

1:23 PM Changeset in webkit [154515] by Darin Adler
  • 4 edits in trunk/Source/WebCore

Reduce use of Node in HTMLTableRowsCollection, and use modern traversal idiom
https://bugs.webkit.org/show_bug.cgi?id=120222

Reviewed by Antti Koivisto.

  • html/HTMLTableRowElement.h:

(WebCore::isHTMLTableRowElement): Added.
(WebCore::isElementOfType<HTMLTableRowElement>): Added.
(WebCore::toHTMLTableRowElement): Added.

  • html/HTMLTableRowsCollection.cpp:

(WebCore::assertRowIsInTable): Refactored a bit. Changed #if as Andy Estes
requested during rewview and got rid of local variables.
(WebCore::HTMLTableRowsCollection::rowAfter): Moved a ocmment in here.
Changed code to traverse elements instead of nodes, and used the Traversal<>
template to eliminate some loops entirely.
(WebCore::HTMLTableRowsCollection::lastRow): Ditto.
(WebCore::HTMLTableRowsCollection::HTMLTableRowsCollection): Changed argument
type from Node to HTMLTableElement.
(WebCore::HTMLTableRowsCollection::create): Added an assertion for the value
of the collection type argument, and added the typecast here needed for the
change above.
(WebCore::HTMLTableRowsCollection::virtualItemAfter): Removed the assertion
here that was a subset of the assertion we now have inside the rowAfter function.

  • html/HTMLTableRowsCollection.h: Added FINAL. Made single-argument constructor

explicit.

1:23 PM Changeset in webkit [154514] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

LayoutTests/http/tests/media/video-throttled-load.cgi issue on range support
https://bugs.webkit.org/show_bug.cgi?id=120219

Patch by Andre Moreira Magalhaes <Andre Moreira Magalhaes> on 2013-08-23
Reviewed by Eric Carlson.

Properly count bytes when handling range requests.

  • http/tests/media/video-throttled-load.cgi:
1:16 PM Changeset in webkit [154513] by alex.christensen@flexsim.com
  • 24 edits in trunk

Re-separating Win32 and Win64 builds.
https://bugs.webkit.org/show_bug.cgi?id=120178

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).

1:14 PM Changeset in webkit [154512] by ap@apple.com
  • 3 edits in trunk/LayoutTests

http/tests/cache/partitioned-cache.html breaks subsequent cookie tests
https://bugs.webkit.org/show_bug.cgi?id=120212

Updating test results for a last minute change that moved lines.

  • http/tests/cache/partitioned-cache-expected.txt:
  • platform/qt/http/tests/cache/partitioned-cache-expected.txt:
1:08 PM Changeset in webkit [154511] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

Move TestWebKitAPI_LIBRARIES before platform specific cmake include
https://bugs.webkit.org/show_bug.cgi?id=120220

Patch by Thiago de Barros Lacerda <thiago.lacerda@openbossa.org> on 2013-08-23
Reviewed by Martin Robinson.

  • TestWebKitAPI/CMakeLists.txt:
1:00 PM Changeset in webkit [154510] by Lucas Forschler
  • 2 edits in branches/safari-537.60-branch/Source/WebCore

Merged r153909. <rdar://problem/14814372>

12:41 PM Changeset in webkit [154509] by fpizlo@apple.com
  • 9 edits in trunk

build-jsc --ftl-jit should work
https://bugs.webkit.org/show_bug.cgi?id=120194

Reviewed by Oliver Hunt.

Source/JavaScriptCore:

  • Configurations/Base.xcconfig: CPPFLAGS should include FEATURE_DEFINES
  • Configurations/JSC.xcconfig: The 'jsc' tool includes headers where field layout may depend on FEATURE_DEFINES
  • Configurations/ToolExecutable.xcconfig: All other tools include headers where field layout may depend on FEATURE_DEFINES
  • ftl/FTLLowerDFGToLLVM.cpp: Build fix

(JSC::FTL::LowerDFGToLLVM::compilePutStructure):
(JSC::FTL::LowerDFGToLLVM::compilePhantomPutStructure):

Source/WTF:

  • wtf/LLVMHeaders.h: I don't know what went wrong here. If HAVE(LLVM), then we need those headers!

Tools:

  • Scripts/build-jsc: Need to pass the feature flag to xcodebuild
12:31 PM Changeset in webkit [154508] by Brent Fulgham
  • 8 edits in trunk/Source/WebKit/win

[Windows] Refactor WebFrame to compose with WebFrameLoaderClient
https://bugs.webkit.org/show_bug.cgi?id=120092

Reviewed by Anders Carlsson.

Revise WebFrame implementation on Windows to no longer subclass from
WebFrameLoaderClient, instead using a fully-functional WebFrameLoaderClient
as a helper object to perform the tasks, as is done in the other
ports. This is a step towards completing
https://bugs.webkit.org/show_bug.cgi?id=119964.

  • WebCoreSupport/WebFrameLoaderClient.cpp: Add a new 'private data'

object to house the policy delegate and function.
(WebFrameLoaderClient::WebFramePolicyListenerPrivate::WebFramePolicyListenerPrivate):
Create the new private data object.
(WebFrameLoaderClient::WebFramePolicyListenerPrivate::~WebFramePolicyListenerPrivate):
Destroy the new private data object.
(WebFrameLoaderClient::WebFrameLoaderClient): Moved from WebFrame.cpp
(WebFrameLoaderClient::frameLoaderDestroyed): Ditto
(WebFrameLoaderClient::makeRepresentation): Ditto
(WebFrameLoaderClient::forceLayoutForNonHTML): Ditto
(WebFrameLoaderClient::setCopiesOnScroll): Ditto
(WebFrameLoaderClient::detachedFromParent2): Ditto
(WebFrameLoaderClient::detachedFromParent3): Ditto
(WebFrameLoaderClient::convertMainResourceLoadToDownload): Ditto
(WebFrameLoaderClient::dispatchDidLoadResourceFromMemoryCache): Ditto
(WebFrameLoaderClient::dispatchDidFailProvisionalLoad): Ditto
(WebFrameLoaderClient::dispatchDidFailLoad): Ditto
(WebFrameLoaderClient::dispatchDecidePolicyForResponse): Ditto
(WebFrameLoaderClient::dispatchDecidePolicyForNewWindowAction): Ditto
(WebFrameLoaderClient::dispatchDecidePolicyForNavigationAction): Ditto
(WebFrameLoaderClient::dispatchUnableToImplementPolicy): Ditto
(WebFrameLoaderClient::dispatchWillSendSubmitEvent): Ditto
(WebFrameLoaderClient::dispatchWillSubmitForm): Ditto
(WebFrameLoaderClient::startDownload): Ditto
(WebFrameLoaderClient::willChangeTitle): Ditto
(WebFrameLoaderClient::didChangeTitle): Ditto
(WebFrameLoaderClient::cancelledError): Ditto
(WebFrameLoaderClient::blockedError): Ditto
(WebFrameLoaderClient::cannotShowURLError): Ditto
(WebFrameLoaderClient::interruptedForPolicyChangeError): Ditto
(WebFrameLoaderClient::cannotShowMIMETypeError): Ditto
(WebFrameLoaderClient::fileDoesNotExistError): Ditto
(WebFrameLoaderClient::pluginWillHandleLoadError): Ditto
(WebFrameLoaderClient::shouldFallBack): Ditto
(WebFrameLoaderClient::canHandleRequest): Ditto
(WebFrameLoaderClient::canShowMIMEType): Ditto
(WebFrameLoaderClient::canShowMIMETypeAsHTML): Ditto
(WebFrameLoaderClient::representationExistsForURLScheme): Ditto
(WebFrameLoaderClient::generatedMIMETypeForURLScheme): Ditto
(WebFrameLoaderClient::frameLoadCompleted): Ditto
(WebFrameLoaderClient::saveViewStateToItem): Ditto
(WebFrameLoaderClient::restoreViewState): Ditto
(WebFrameLoaderClient::provisionalLoadStarted): Ditto
(WebFrameLoaderClient::didFinishLoad): Ditto
(WebFrameLoaderClient::prepareForDataSourceReplacement): Ditto
(WebFrameLoaderClient::userAgent): Ditto
(WebFrameLoaderClient::objectContentType): Ditto
(WebFrameLoaderClient::createJavaAppletWidget): Ditto
(WebFrameLoaderClient::overrideMediaType): Ditto
(WebFrameLoaderClient::documentElementAvailable): Ditto
(WebFrameLoaderClient::dispatchDidClearWindowObjectInWorld): Ditto
(WebFrameLoaderClient::registerForIconNotification): Ditto
(WebFrameLoaderClient::didPerformFirstNavigation): Ditto
(WebFrameLoaderClient::createNetworkingContext): Ditto
(WebFrameLoaderClient::shouldAlwaysUsePluginDocument): Ditto
(WebFrameLoaderClient::revertToProvisionalState): Ditto
(WebFrameLoaderClient::setMainFrameDocumentReady): Ditto
(WebFrameLoaderClient::cancelPolicyCheck): Ditto
(WebFrameLoaderClient::setUpPolicyListener): Ditto
(WebFrameLoaderClient::receivedPolicyDecision): Ditto

  • WebCoreSupport/WebFrameLoaderClient.h:

(WebFrameLoaderClient::webFrame): Add accessor method

  • WebDataSource.cpp:

(WebDataSource::representation): Loader client is now
a WebFrameLoaderClient (not a WebFrame).
(WebDataSource::webFrame): Ditto

  • WebElementPropertyBag.cpp:

(WebElementPropertyBag::Read): Loader client is now
a WebFrameLoaderClient (not a WebFrame)

  • WebFrame.cpp:

(kit): Revise for WebFrameLoaderClient use.
(WebFrame::WebFramePrivate::WebFramePrivate): Remove
WebFramePolicyListener and FramePolicyFunction, since
they are no longer needed here. They were moved to
the WebFrameLoaderClient object.
(WebFrame::WebFrame): No longer inheriting from
WebFramePolicyListener.
(WebFrame::init): Frame::create now needs to be supplied
with a new WebFramePolicyListener, rather than 'this'

  • WebFrame.h:
  • WebFramePolicyListener.cpp:

(WebFramePolicyListener::receivedPolicyDecision): Loader
client is now a WebFramePolicyClient, not a WebFrame.

12:31 PM Changeset in webkit [154507] by Brent Fulgham
  • 3 edits in trunk/Source/WTF

[Windows] Unreviewed build correction after r154498.

  • WTF.vcxproj/WTF.vcxproj.filters: Adjust files so they show up

in the proper folders.

  • WTF.vcxproj/WTFCommon.props: Add search path for zlib header and

include link directive.

12:31 PM Changeset in webkit [154506] by msaboff@apple.com
  • 1 edit
    2 moves
    1 add
    1 delete in trunk/LayoutTests

regexp-match-reify-before-putbyval is not a JSRegress test
https://bugs.webkit.org/show_bug.cgi?id=120181

Reviewed by Geoffrey Garen.

Moved and re-baselined regexp-match-reify-before-putbyval test into fast/js.

  • fast/js/regexp-match-reify-before-putbyval-expected.txt: Copied from LayoutTests/fast/js/regress/regexp-match-reify-before-putbyval-expected.txt.
  • fast/js/regexp-match-reify-before-putbyval.html: Copied from LayoutTests/fast/js/regress/regexp-match-reify-before-putbyval.html.
  • fast/js/regress/regexp-match-reify-before-putbyval-expected.txt: Removed.
  • fast/js/regress/regexp-match-reify-before-putbyval.html: Removed.
  • fast/js/regress/script-tests/regexp-match-reify-before-putbyval.js: Removed.
  • fast/js/script-tests/regexp-match-reify-before-putbyval.js: Copied from LayoutTests/fast/js/regress/script-tests/regexp-match-reify-before-putbyval.js.
12:17 PM Changeset in webkit [154505] by ap@apple.com
  • 5 edits
    1 add
    1 delete in trunk/LayoutTests

http/tests/cache/partitioned-cache.html breaks subsequent cookie tests
https://bugs.webkit.org/show_bug.cgi?id=120212

Reviewed by Tim Horton.

The test never deleted its localhost cookie, so subsequent third party cookie
relaxing tests saw the existing cookie and failed.

There is no need to use cookies in this test, and it's actually slightly incorrect,
as the network layer may refuse to use a cached result simply because cookies changed,
and then we wouldn't test 3rd party data blocking.

  • platform/qt/http/tests/cache/partitioned-cache-expected.txt:
  • http/tests/cache/partitioned-cache-expected.txt: Updated results. It took me a long time to understand what the test was doing, so made it a bit more self-descriptive.
  • http/tests/cache/partitioned-cache.html: Tabs to spaces.
  • http/tests/cache/resources/echo-cookie.cgi: Removed.
  • http/tests/cache/resources/partitioned-cache-echo-state.php: Added.
  • http/tests/cache/resources/partitioned-cache-loader.html: Changed to use a local file on the server to modify resource content.
12:04 PM WebKitGTK/2.0.x edited by dsd@laptop.org
(diff)
12:02 PM Changeset in webkit [154504] by akling@apple.com
  • 15 edits in trunk/Source/WebCore

RenderView::compositor() should return a reference.
<https://webkit.org/b/120217>

Reviewed by Beth Dakin.

The RenderLayerCompositor is lazily constructed by compositor() and never returns null.

11:41 AM Changeset in webkit [154503] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

Unreviewed, rolling out r153534.
http://trac.webkit.org/changeset/153534
https://bugs.webkit.org/show_bug.cgi?id=120216

Too many tests failing just WinEWS bots (Requested by rfong on
#webkit).

  • Scripts/webkitpy/common/config/ews.json:
11:34 AM Changeset in webkit [154502] by alex.christensen@flexsim.com
  • 2 edits in trunk/Tools

Unreviewed. Added my webkit.org email address.

Patch by Alex Christensen <alex.christensen@flexsim.com> on 2013-08-23

  • Scripts/webkitpy/common/config/contributors.json:
11:26 AM Changeset in webkit [154501] by oliver@apple.com
  • 2 edits in trunk/Source/WTF

Attempt to appease windows bot.

11:10 AM Changeset in webkit [154500] by betravis@adobe.com
  • 105 edits in trunk/LayoutTests

<https://webkit.org/b/119864> [CSS Shapes] Remove extraneous window.internals calls in layout tests

Reviewed by Alexandru Chiculita.

Removing calls to window.internals.settings.setCSSShapesEnabled from these files, as
CSS Shapes is enabled by default in test builds.

  • fast/regions/shape-inside/shape-inside-on-additional-regions.html:
  • fast/regions/shape-inside/shape-inside-on-first-region-block-content.html:
  • fast/regions/shape-inside/shape-inside-on-first-region-inline-content.html:
  • fast/regions/shape-inside/shape-inside-on-regions-block-content-basic-overflow-shape-top-offset.html:
  • fast/regions/shape-inside/shape-inside-on-regions-block-content-overflow-bottom-positioned-multiple-shapes.html:
  • fast/regions/shape-inside/shape-inside-on-regions-block-content-overflow-multiple-shapes.html:
  • fast/regions/shape-inside/shape-inside-on-regions-block-content-polygon-with-adjustment-expected.html:
  • fast/regions/shape-inside/shape-inside-on-regions-block-content-polygon-with-adjustment.html:
  • fast/regions/shape-inside/shape-inside-on-regions-expected.html:
  • fast/regions/shape-inside/shape-inside-on-regions-inline-content-basic-overflow-shape-top-offset.html:
  • fast/regions/shape-inside/shape-inside-on-regions-inline-content-overflow-bottom-positioned-multiple-shapes.html:
  • fast/regions/shape-inside/shape-inside-on-regions-inline-content-overflow-multiple-shapes.html:
  • fast/regions/shape-inside/shape-inside-on-regions-inline-content-polygon-with-adjustment-expected.html:
  • fast/regions/shape-inside/shape-inside-on-regions-inline-content-polygon-with-adjustment.html:
  • fast/regions/shape-inside/shape-inside-on-regions-inline-content.html:
  • fast/regions/shape-inside/shape-inside-on-regions.html:
  • fast/regions/shape-inside/shape-inside-on-second-region-block-content.html:
  • fast/regions/shape-inside/shape-inside-on-second-region-inline-content.html:
  • fast/regions/shape-inside/shape-inside-recursive-layout.html:
  • fast/regions/shape-inside/shape-inside-with-region-borders.html:
  • fast/regions/shape-inside/shape-inside-with-region-padding.html:
  • fast/shapes/css-shapes-disabled.html:
  • fast/shapes/parsing/script-tests/parsing-shape-inside.js:
  • fast/shapes/parsing/script-tests/parsing-shape-lengths.js:
  • fast/shapes/parsing/script-tests/parsing-shape-margin.js:
  • fast/shapes/parsing/script-tests/parsing-shape-outside.js:
  • fast/shapes/parsing/script-tests/parsing-shape-padding.js:
  • fast/shapes/resources/multi-segment-polygon.js:
  • fast/shapes/resources/simple-polygon.js:
  • fast/shapes/resources/simple-rectangle.js:
  • fast/shapes/shape-inside/shape-inside-animation.html:
  • fast/shapes/shape-inside/shape-inside-bottom-edge.html:
  • fast/shapes/shape-inside/shape-inside-box-sizing.html:
  • fast/shapes/shape-inside/shape-inside-circle-padding.html:
  • fast/shapes/shape-inside/shape-inside-circle.html:
  • fast/shapes/shape-inside/shape-inside-coincident-vertices-expected.html:
  • fast/shapes/shape-inside/shape-inside-coincident-vertices.html:
  • fast/shapes/shape-inside/shape-inside-collinear-vertices-expected.html:
  • fast/shapes/shape-inside/shape-inside-collinear-vertices.html:
  • fast/shapes/shape-inside/shape-inside-counterclockwise-polygon-expected.html:
  • fast/shapes/shape-inside/shape-inside-counterclockwise-polygon.html:
  • fast/shapes/shape-inside/shape-inside-dynamic-nested-expected.html:
  • fast/shapes/shape-inside/shape-inside-dynamic-nested.html:
  • fast/shapes/shape-inside/shape-inside-dynamic-shape.html:
  • fast/shapes/shape-inside/shape-inside-dynamic-text.html:
  • fast/shapes/shape-inside/shape-inside-ellipse-padding.html:
  • fast/shapes/shape-inside/shape-inside-ellipse.html:
  • fast/shapes/shape-inside/shape-inside-empty.html:
  • fast/shapes/shape-inside/shape-inside-first-fit-001-horizontal.html:
  • fast/shapes/shape-inside/shape-inside-first-fit-001-vertical.html:
  • fast/shapes/shape-inside/shape-inside-first-fit-002.html:
  • fast/shapes/shape-inside/shape-inside-first-fit-003.html:
  • fast/shapes/shape-inside/shape-inside-first-fit-004-expected.html:
  • fast/shapes/shape-inside/shape-inside-first-fit-004.html:
  • fast/shapes/shape-inside/shape-inside-first-fit-reflex.html:
  • fast/shapes/shape-inside/shape-inside-inline-elements.html:
  • fast/shapes/shape-inside/shape-inside-multiple-blocks-vertical.html:
  • fast/shapes/shape-inside/shape-inside-multiple-blocks.html:
  • fast/shapes/shape-inside/shape-inside-on-nested-container-with-unresolved-height.html:
  • fast/shapes/shape-inside/shape-inside-overflow-fixed-dimensions-block-content.html:
  • fast/shapes/shape-inside/shape-inside-overflow-fixed-dimensions.html:
  • fast/shapes/shape-inside/shape-inside-overflow.html:
  • fast/shapes/shape-inside/shape-inside-partial-fill-001.html:
  • fast/shapes/shape-inside/shape-inside-partial-fill-002.html:
  • fast/shapes/shape-inside/shape-inside-percentage-auto.html:
  • fast/shapes/shape-inside/shape-inside-percentage.html:
  • fast/shapes/shape-inside/shape-inside-polygon-layout.html:
  • fast/shapes/shape-inside/shape-inside-polygon-padding-001.html:
  • fast/shapes/shape-inside/shape-inside-polygon-padding-002.html:
  • fast/shapes/shape-inside/shape-inside-polygon-padding-003.html:
  • fast/shapes/shape-inside/shape-inside-polygon-rectangle.html:
  • fast/shapes/shape-inside/shape-inside-polygon-zoom.html:
  • fast/shapes/shape-inside/shape-inside-rectangle-padding.html:
  • fast/shapes/shape-inside/shape-inside-rectilinear-polygon-001-expected.html:
  • fast/shapes/shape-inside/shape-inside-rectilinear-polygon-001.html:
  • fast/shapes/shape-inside/shape-inside-rectilinear-polygon-002-expected.html:
  • fast/shapes/shape-inside/shape-inside-rectilinear-polygon-002.html:
  • fast/shapes/shape-inside/shape-inside-rectilinear-polygon-003-expected.html:
  • fast/shapes/shape-inside/shape-inside-rectilinear-polygon-003.html:
  • fast/shapes/shape-inside/shape-inside-rectilinear-polygon-004-expected.html:
  • fast/shapes/shape-inside/shape-inside-rectilinear-polygon-004.html:
  • fast/shapes/shape-inside/shape-inside-regular-polygon16-expected.html:
  • fast/shapes/shape-inside/shape-inside-regular-polygon16.html:
  • fast/shapes/shape-inside/shape-inside-regular-polygon8-expected.html:
  • fast/shapes/shape-inside/shape-inside-regular-polygon8.html:
  • fast/shapes/shape-inside/shape-inside-rounded-rectangle-001.html:
  • fast/shapes/shape-inside/shape-inside-rounded-rectangle-fit-001-expected.html:
  • fast/shapes/shape-inside/shape-inside-rounded-rectangle-fit-001.html:
  • fast/shapes/shape-inside/shape-inside-rounded-rectangle-fit-002-expected.html:
  • fast/shapes/shape-inside/shape-inside-rounded-rectangle-fit-002.html:
  • fast/shapes/shape-inside/shape-inside-rounded-rectangle-fit-003-expected.html:
  • fast/shapes/shape-inside/shape-inside-rounded-rectangle-fit-003.html:
  • fast/shapes/shape-inside/shape-inside-rounded-rectangle-large-radius-expected.html:
  • fast/shapes/shape-inside/shape-inside-rounded-rectangle-large-radius.html:
  • fast/shapes/shape-inside/shape-inside-rounded-rectangle-padding.html:
  • fast/shapes/shape-inside/shape-inside-shape-logical-top.html:
  • fast/shapes/shape-inside/shape-inside-sibling-block-dimension-change-needs-relayout-expected.html:
  • fast/shapes/shape-inside/shape-inside-sibling-block-dimension-change-needs-relayout.html:
  • fast/shapes/shape-inside/shape-inside-text.html:
  • fast/shapes/shape-inside/shape-inside-vertical-text.html:
  • fast/shapes/shape-outside-floats/shape-outside-floats-diamond-margin-polygon.html:
  • fast/shapes/shape-outside-floats/shape-outside-floats-ellipse-margin-bottom.html:
  • fast/shapes/shape-outside-floats/shape-outside-floats-ellipse-margin-left.html:
  • fast/shapes/shape-outside-floats/shape-outside-floats-ellipse-margin-right.html:
11:01 AM Changeset in webkit [154499] by oliver@apple.com
  • 4 edits in trunk/Source

Re-sort xcode project file

10:53 AM Changeset in webkit [154498] by oliver@apple.com
  • 14 edits
    2 adds in trunk/Source

Support in memory compression of rarely used data
https://bugs.webkit.org/show_bug.cgi?id=120143

Reviewed by Gavin Barraclough.

Source/JavaScriptCore:

Include zlib in LD_FLAGS and make UnlinkedCodeBlock make use of CompressibleVector. This saves ~200k on google maps.

  • Configurations/JavaScriptCore.xcconfig:
  • bytecode/UnlinkedCodeBlock.cpp:

(JSC::UnlinkedCodeBlock::expressionRangeForBytecodeOffset):
(JSC::UnlinkedCodeBlock::addExpressionInfo):

  • bytecode/UnlinkedCodeBlock.h:

Source/WTF:

Adds a set of utility functions to wrap the use of zlib over a generic
type or a Vector<> as well as adding CompressibleVector that wraps
either a Vector<> or compressed data.

  • GNUmakefile.list.am:
  • WTF.pro:
  • WTF.vcxproj/WTF.vcxproj:
  • WTF.xcodeproj/project.pbxproj:
  • wtf/CMakeLists.txt:
  • wtf/CheckedArithmetic.h:
  • wtf/Compression.cpp: Added.

(WTF::zAlloc):
(WTF::zFree):
(WTF::GenericCompressedData::create):
(WTF::GenericCompressedData::decompress):

  • wtf/Compression.h: Added.

(WTF::GenericCompressedData::compressedSize):
(WTF::GenericCompressedData::originalSize):
(WTF::GenericCompressedData::GenericCompressedData):
(WTF::CompressedVector::create):
(WTF::CompressedVector::decompress):
(WTF::CompressedVector::size):
(WTF::CompressibleVector::CompressibleVector):
(WTF::CompressibleVector::shrinkToFit):
(WTF::CompressibleVector::size):
(WTF::CompressibleVector::operator[]):
(WTF::CompressibleVector::at):
(WTF::CompressibleVector::begin):
(WTF::CompressibleVector::end):
(WTF::CompressibleVector::data):
(WTF::CompressibleVector::decompressIfNecessary):

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

Fix srcset's image candidate algorithm when DPR exceeds all candidates
https://bugs.webkit.org/show_bug.cgi?id=120168

Source/WebCore:

When the DPR exceeded the 'x' qualifier of all image candidates, none was chosen.

From the srcset spec: "If there are any entries in candidates that have an associated pixel density that is less than a
user-agent-defined value giving the nominal pixel density of the display, then remove them, unless that would remove all the
entries, in which case remove only the entries whose associated pixel density is less than the greatest such pixel density."

Fixed by returning the last one in the list of candidates sorted by their qualifier, in case none of them is equal or greater than
DPR.

Patch by Yoav Weiss <yoav@yoav.ws> on 2013-08-23
Reviewed by Andreas Kling.

Test: fast/hidpi/image-srcset-fraction.html

  • html/parser/HTMLParserIdioms.cpp:

(WebCore::bestFitSourceForImageAttributes):

LayoutTests:

From the srcset spec: "If there are any entries in candidates that have an associated pixel density that is less than a
user-agent-defined value giving the nominal pixel density of the display, then remove them, unless that would remove all the
entries, in which case remove only the entries whose associated pixel density is less than the greatest such pixel density."

This test verifies that when all the candidates' qualifiers are smaller than the DPR, the highest one is returned.

Patch by Yoav Weiss <yoav@yoav.ws> on 2013-08-23
Reviewed by Andreas Kling.

  • fast/hidpi/image-srcset-fraction-expected.txt: Added.
  • fast/hidpi/image-srcset-fraction.html: Added.
10:24 AM Changeset in webkit [154496] by Chris Fleizach
  • 3 edits
    2 adds in trunk

<https://webkit.org/b/113895> Webkit exposes aria-expanded="undefined" as aria-expanded="false" (AXExpanded = NO)

Reviewed by Darin Adler.

Source/WebCore:

Don't support the ARIA expanded attribute unless the value is one of the defined ARIA values (true/false).

Test: platform/mac/accessibility/aria-expanded-not-exposed-when-undefined.html

  • accessibility/AccessibilityObject.cpp:

(WebCore::AccessibilityObject::supportsARIAExpanded):

LayoutTests:

  • platform/mac/accessibility/aria-expanded-not-exposed-when-undefined-expected.txt: Added.
  • platform/mac/accessibility/aria-expanded-not-exposed-when-undefined.html: Added.
10:20 AM Changeset in webkit [154495] by Darin Adler
  • 2 edits in trunk/Source/WebCore

<https://webkit.org/b/119945> Some cleanup for PasteboardIOS

Reviewed by Andreas Kling.

  • platform/ios/PasteboardIOS.mm:

(WebCore::Pasteboard::setFrame): Moved this function up near the
create functions and constructors.
(WebCore::documentFragmentWithRTF): Tweaked formatting.
(WebCore::Pasteboard::documentFragmentForPasteboardItemAtIndex):
Ditto.
(WebCore::utiTypeFromCocoaType): Changed to use early return and removed
an unneeded local variable.
(WebCore::cocoaTypeFromHTMLClipboardType): Renamed the quaint qType and
pbType local variables, and tweaked formatting.
(WebCore::Pasteboard::clear): Tweaked comment.
(WebCore::Pasteboard::readString): Tweaked formatting.
(WebCore::addHTMLClipboardTypesForCocoaType): Tweaked formatting.
(WebCore::Pasteboard::writeString): Streamlined logic and tweaked formatting
(WebCore::Pasteboard::types): Renamed pbType to just type.

9:58 AM Changeset in webkit [154494] by Bem Jones-Bey
  • 3 edits in trunk/Source/WebCore

Attempt to make it more clear what FloatIntervalSearchAdaptor::collectIfNeeded is doing
https://bugs.webkit.org/show_bug.cgi?id=119816

Reviewed by David Hyatt.

This is a port from Blink of
https://src.chromium.org/viewvc/blink?revision=155885&view=revision
Original Patch by Eric Seidel

Original comments:

"It seemed to me that template specifications would be clearer than an
if. They also allow for compile-time error checking were a 3rd type
of float to come into existance in CSS4. :p

For any unfamiliar with this method, this the object used for
performing a search on a RedBlackTree in WTF.

We create one of these adaptors, specifying that we want to search for
values in a specific (logical) Y interval, and this adaptor is called
back for any values in the RBTree cooresponding to that interval
range.

The job of this adaptor is to collect the various values we care
about, including the left or right-most offset of the floats in that
Y-range as well as what the last (document order) float seen in that
range.

It also collects the remaining available height for the block but I'm
less clear on how that parameter is used."

Note that in addition to the original change, I have made the
updateOffsetIfNeeded and rangesIntersect methods inline, as this was
shown to be a performance win in
https://src.chromium.org/viewvc/blink?revision=156064&view=revision
and it seemed a rather trivial change to be subject to a separate
patch when porting.

No new tests, no behavior change.

  • rendering/RenderBlock.cpp:

(WebCore::::updateOffsetIfNeeded):
(WebCore::::collectIfNeeded):

  • rendering/RenderBlock.h:
9:56 AM Changeset in webkit [154493] by ddkilzer@apple.com
  • 3 edits in trunk/Source/WebCore

WebCore fails to link due to changes in Objective-C++ ABI in trunk clang
<http://webkit.org/b/120183>
<rdar://problem/14764114>

Reviewed by Eric Carlson.

The trunk version of clang made an ABI change for Objective-C++
parameters that caused WebCore to fail to link. The short-term
fix is to change the parameter type from id<protocol> to just id
and add an ASSERT that the parameter still conforms to the
protocol.

  • platform/DragData.h:

(DragDataRef): Change typedef from id<NSDragInfo> to id.

  • platform/mac/DragDataMac.mm:

(WebCore::DragData::DragData): Add ASSERT that checks that the
DragDataRef object implements the NSDragInfo protocol.

9:56 AM Changeset in webkit [154492] by Lucas Forschler
  • 2 edits in branches/safari-537-branch/Source/WebKit2

Merged r154473. <rdar://problem/14814461>

9:54 AM Changeset in webkit [154491] by Lucas Forschler
  • 2 edits in branches/safari-537-branch/Source/WebKit2

Merged r154433. <rdar://problem/14650652>

9:51 AM Changeset in webkit [154490] by ap@apple.com
  • 4 edits in trunk/Source/WebKit2

[WK2] Assertion failures when loading XSL stylesheets with NetworkProcess
https://bugs.webkit.org/show_bug.cgi?id=120186
<rdar://problem/14080273>

Reviewed by Brady Eidson.

Covered by many existing tests.

  • WebProcess/WebCoreSupport/WebPlatformStrategies.cpp:

(WebKit::WebPlatformStrategies::loadResourceSynchronously): Pass frame ID and page ID.
They are mostly needed for authentication, which is not supported with sync requests,
but it will be supported some day.

  • WebProcess/WebCoreSupport/mac/WebFrameNetworkingContext.h:
  • WebProcess/WebCoreSupport/mac/WebFrameNetworkingContext.mm:

(WebKit::WebFrameNetworkingContext::webFrameLoaderClient):
Added a way to get frame loader client from WebKit NetworkingContext subclass.

9:50 AM Changeset in webkit [154489] by akling@apple.com
  • 4 edits in trunk/Source/WebCore

RenderLayerCompositor::m_renderView should be a reference.
<https://webkit.org/b/120210>

Reviewed by Antti Koivisto.

The RenderLayerCompositor is always created by a RenderView passing itself to the constructor.
By making m_renderView a reference, we flush out some unnecessary null checks.
We also gain a pointer-free path to Settings through m_renderView.frameView().frame().settings()
so we don't have to make those blocks conditional anymore, reducing ambiguity.

  • rendering/RenderLayerCompositor.cpp:
  • rendering/RenderLayerCompositor.h:
  • rendering/RenderView.cpp:

(WebCore::RenderView::compositor):

9:34 AM Changeset in webkit [154488] by akling@apple.com
  • 25 edits in trunk/Source

RenderView::frameView() should return a reference.
<https://webkit.org/b/120208>

Reviewed by Antti Koivisto.

A RenderView should always have a corresponding FrameView, so make frameView()
return a reference. Also remove a myriad of now-impossible null checks.

8:01 AM Changeset in webkit [154487] by allan.jensen@digia.com
  • 1 edit
    802 moves
    16 adds in trunk/LayoutTests

Moving expectations from Qt 5.0 WK2 to Qt WK2 - Part 7

Unreviewed gardening.

  • platform/qt-wk2/tables/layering/paint-test-layering-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/layering/paint-test-layering-1-expected.png.
  • platform/qt-wk2/tables/layering/paint-test-layering-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/layering/paint-test-layering-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/45621-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/45621-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug10009-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug10009-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug100334-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug100334-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug10036-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug10036-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug101201-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug101201-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug101674-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug101674-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug102145-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug102145-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug102145-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug102145-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug102145-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug102145-3-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug102145-4-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug102145-4-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug10269-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug10269-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug10296-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug10296-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug1055-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug1055-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug10565-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug10565-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug106158-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug106158-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug10633-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug10633-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug106816-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug106816-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug109043-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug109043-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug11026-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug11026-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug110566-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug110566-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug113235-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug113235-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug113235-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug113235-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug113235-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug113235-3-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug113424-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug113424-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug11384q-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug11384q-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug11384s-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug11384s-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug1163-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug1163-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug1188-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug1188-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug11944-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug11944-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug119786-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug119786-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug12008-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug12008-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug120364-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug120364-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug1224-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug1224-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug12268-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug12268-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug12384-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug12384-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug123862-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug123862-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug1261-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug1261-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug126742-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug126742-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug12709-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug12709-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug127267-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug127267-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug128229-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug128229-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug12908-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug12908-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug12910-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug12910-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug1296-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug1296-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug1302-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug1302-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug131020-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug131020-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug131020_iframe-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug131020_iframe-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug13105-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug13105-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug13118-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug13118-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug1318-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug1318-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug13196-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug13196-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug133756-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug133756-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug133756-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug133756-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug13484-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug13484-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug137388-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug137388-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug139524-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug139524-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug14159-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug14159-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug14159-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug14159-3-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug1430-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug1430-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug14323-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug14323-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug149275-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug149275-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug14929-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug14929-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug15247-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug15247-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug15544-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug15544-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug157890-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug157890-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug16012-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug16012-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug16252-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug16252-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug17130-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug17130-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug17130-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug17130-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug17138-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug17138-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug17168-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug17168-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug17587-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug17587-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug1800-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug1800-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug1802-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug1802-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug1802s-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug1802s-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug1809-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug1809-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug1828-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug1828-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug18359-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug18359-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug18558-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug18558-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug18664-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug18664-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug18955-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug18955-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug19061-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug19061-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug19061-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug19061-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug19356-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug19356-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug194024-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug194024-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug19599-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug19599-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug2050-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug2050-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug20579-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug20579-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug20804-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug20804-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug2123-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug2123-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug21299-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug21299-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug215629-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug215629-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug22019-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug22019-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug220536-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug220536-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug22246-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug22246-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug22246-2a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug22246-2a-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug22246-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug22246-3-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug22246-3a-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug22246-3a-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug222846-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug222846-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug2267-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug2267-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug227123-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug227123-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug23151-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug23151-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug23235-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug23235-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug23299-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug23299-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug24200-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug24200-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug24503-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug24503-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug24627-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug24627-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug24661-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug24661-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug2469-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug2469-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug2479-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug2479-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug2479-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug2479-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug2479-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug2479-3-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug2479-4-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug2479-4-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug24880-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug24880-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug25004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug25004-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug25086-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug25086-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug2509-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug2509-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug25663-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug25663-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug2684-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug2684-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug27038-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug27038-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug27038-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug27038-3-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug275625-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug275625-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug2757-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug2757-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug2763-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug2763-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug2773-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug2773-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug278266-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug278266-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug27993-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug27993-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug28341-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug28341-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug2886-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug2886-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug2886-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug2886-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug28928-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug28928-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug29058-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug29058-3-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug29157-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug29157-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug29314-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug29314-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug29429-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug29429-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug2947-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug2947-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug2962-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug2962-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug2973-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug2973-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug2981-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug2981-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug2981-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug2981-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug2997-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug2997-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug30273-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug30273-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug30332-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug30332-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug30332-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug30332-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug30418-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug30418-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug30559-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug30559-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug30692-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug30692-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug30985-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug30985-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug3103-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug3103-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug3191-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug3191-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug32205-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug32205-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug32205-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug32205-3-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug3260-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug3260-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug32841-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug32841-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug3309-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug3309-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug33137-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug33137-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug33855-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug33855-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug3454-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug3454-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug35662-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug35662-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug3681-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug3681-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug3681-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug3681-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug38916-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug38916-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug39209-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug39209-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug3977-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug3977-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug40828-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug40828-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug4093-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug4093-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug41890-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug41890-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug42187-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug42187-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug42443-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug42443-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug4284-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug4284-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug43039-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug43039-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug43204-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug43204-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug4382-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug4382-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug4385-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug4385-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug43854-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug43854-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug43854-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug43854-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug4427-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug4427-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug44505-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug44505-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug44523-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug44523-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug4501-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug4501-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug45055-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug45055-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug45055-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug45055-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug4523-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug4523-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug45486-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug45486-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug4576-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug4576-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug46268-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug46268-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug46268-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug46268-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug46268-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug46268-3-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug46268-5-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug46268-5-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug46268-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug46268-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug46368-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug46368-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug46368-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug46368-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug46480-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug46480-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug46480-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug46480-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug46623-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug46623-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug46623-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug46623-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug46924-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug46924-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug47432-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug47432-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug48028-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug48028-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug48028-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug48028-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug4803-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug4803-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug4849-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug4849-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug4849-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug4849-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug48827-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug48827-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug50695-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug50695-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug51037-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug51037-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug51140-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug51140-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug51727-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug51727-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug5188-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug5188-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug52505-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug52505-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug52506-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug52506-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug53891-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug53891-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug54450-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug54450-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug5538-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug5538-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug55527-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug55527-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug55694-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug55694-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug56405-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug56405-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug56563-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug56563-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug57300-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug57300-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug57378-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug57378-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug57828-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug57828-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug57828-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug57828-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug5797-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug5797-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug5798-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug5798-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug5799-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug5799-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug5835-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug5835-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug5838-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug5838-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug58402-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug58402-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug59354-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug59354-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug60013-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug60013-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug60749-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug60749-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug60804-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug60804-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug60807-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug60807-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug60992-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug60992-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug6184-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug6184-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug625-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug625-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug6304-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug6304-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug63785-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug63785-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug6404-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug6404-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug647-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug647-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug650-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug650-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug6674-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug6674-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug67864-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug67864-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug67915-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug67915-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug68912-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug68912-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug68998-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug68998-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug69187-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug69187-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug69382-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug69382-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug69382-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug69382-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug709-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug709-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug7112-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug7112-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug7112-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug7112-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug7121-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug7121-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug72359-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug72359-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug727-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug727-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug73321-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug73321-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug7342-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug7342-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug7471-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug7471-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug75250-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug75250-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug7714-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug7714-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug78162-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug78162-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug8032-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug8032-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug80762-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug80762-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug81934-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug81934-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug82946-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug82946-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug82946-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug82946-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug83786-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug83786-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug8381-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug8381-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug8411-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug8411-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug86708-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug86708-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug88035-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug88035-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug88035-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug88035-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug8858-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug8858-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug8950-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug8950-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug9123-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug9123-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug9123-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug9123-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug92143-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug92143-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug9271-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug9271-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug9271-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug9271-2-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug92868-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug92868-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug93363-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug93363-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug963-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug963-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug96334-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug96334-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug96343-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug96343-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug965-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug965-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug97138-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug97138-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug97383-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug97383-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug9879-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug9879-1-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug99923-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug99923-expected.png.
  • platform/qt-wk2/tables/mozilla/bugs/bug99948-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/bugs/bug99948-expected.png.
  • platform/qt-wk2/tables/mozilla/collapsing_borders/bug127040-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/collapsing_borders/bug127040-expected.png.
  • platform/qt-wk2/tables/mozilla/collapsing_borders/bug41262-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/collapsing_borders/bug41262-3-expected.png.
  • platform/qt-wk2/tables/mozilla/collapsing_borders/bug41262-4-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/collapsing_borders/bug41262-4-expected.png.
  • platform/qt-wk2/tables/mozilla/core/bloomberg-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/bloomberg-expected.png.
  • platform/qt-wk2/tables/mozilla/core/borders-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/borders-expected.png.
  • platform/qt-wk2/tables/mozilla/core/captions-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/captions-expected.png.
  • platform/qt-wk2/tables/mozilla/core/cell_heights-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/cell_heights-expected.png.
  • platform/qt-wk2/tables/mozilla/core/col_span-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/col_span-expected.png.
  • platform/qt-wk2/tables/mozilla/core/col_widths_auto_autoFix-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/col_widths_auto_autoFix-expected.png.
  • platform/qt-wk2/tables/mozilla/core/col_widths_auto_autoFixPer-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/col_widths_auto_autoFixPer-expected.png.
  • platform/qt-wk2/tables/mozilla/core/col_widths_auto_autoPer-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/col_widths_auto_autoPer-expected.png.
  • platform/qt-wk2/tables/mozilla/core/col_widths_auto_fix-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/col_widths_auto_fix-expected.png.
  • platform/qt-wk2/tables/mozilla/core/col_widths_auto_fixPer-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/col_widths_auto_fixPer-expected.png.
  • platform/qt-wk2/tables/mozilla/core/col_widths_auto_per-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/col_widths_auto_per-expected.png.
  • platform/qt-wk2/tables/mozilla/core/col_widths_fix_auto-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/col_widths_fix_auto-expected.png.
  • platform/qt-wk2/tables/mozilla/core/col_widths_fix_autoFix-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/col_widths_fix_autoFix-expected.png.
  • platform/qt-wk2/tables/mozilla/core/col_widths_fix_autoPer-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/col_widths_fix_autoPer-expected.png.
  • platform/qt-wk2/tables/mozilla/core/col_widths_fix_fix-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/col_widths_fix_fix-expected.png.
  • platform/qt-wk2/tables/mozilla/core/col_widths_fix_fixPer-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/col_widths_fix_fixPer-expected.png.
  • platform/qt-wk2/tables/mozilla/core/col_widths_fix_per-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/col_widths_fix_per-expected.png.
  • platform/qt-wk2/tables/mozilla/core/margins-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/margins-expected.png.
  • platform/qt-wk2/tables/mozilla/core/misc-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/misc-expected.png.
  • platform/qt-wk2/tables/mozilla/core/nested1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/nested1-expected.png.
  • platform/qt-wk2/tables/mozilla/core/one_row-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/one_row-expected.png.
  • platform/qt-wk2/tables/mozilla/core/row_span-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/row_span-expected.png.
  • platform/qt-wk2/tables/mozilla/core/table_frame-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/table_frame-expected.png.
  • platform/qt-wk2/tables/mozilla/core/table_rules-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/table_rules-expected.png.
  • platform/qt-wk2/tables/mozilla/core/table_widths-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/core/table_widths-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/appendCol2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/appendCol2-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/appendRowsExpand1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/appendRowsExpand1-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/appendTbodyExpand1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/appendTbodyExpand1-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/deleteCellsRebuild1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/deleteCellsRebuild1-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/deleteCellsShrink1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/deleteCellsShrink1-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/deleteCellsShrink2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/deleteCellsShrink2-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/deleteCol1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/deleteCol1-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/deleteCol2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/deleteCol2-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/deleteCol3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/deleteCol3-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/deleteColGroup1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/deleteColGroup1-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/deleteColGroup2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/deleteColGroup2-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/deleteRowsRebuild1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/deleteRowsRebuild1-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/deleteRowsShrink1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/deleteRowsShrink1-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/deleteTbodyExpand1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/deleteTbodyExpand1-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/deleteTbodyRebuild1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/deleteTbodyRebuild1-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/insertCellsExpand1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/insertCellsExpand1-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/insertCellsExpand2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/insertCellsExpand2-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/insertCellsRebuild1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/insertCellsRebuild1-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/insertCellsRebuild2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/insertCellsRebuild2-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/insertColGroups1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/insertColGroups1-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/insertColGroups2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/insertColGroups2-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/insertCols1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/insertCols1-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/insertCols2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/insertCols2-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/insertCols3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/insertCols3-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/insertCols4-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/insertCols4-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/insertCols5-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/insertCols5-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/insertRowsExpand1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/insertRowsExpand1-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/insertRowsRebuild1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/insertRowsRebuild1-expected.png.
  • platform/qt-wk2/tables/mozilla/dom/tableDom-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/dom/tableDom-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/backgr_index-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/backgr_index-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/backgr_index-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/backgr_index-expected.txt.
  • platform/qt-wk2/tables/mozilla/marvin/backgr_layers-opacity-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/backgr_layers-opacity-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/backgr_position-table-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/backgr_position-table-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/backgr_simple-table-cell-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/backgr_simple-table-cell-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/backgr_simple-table-column-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/backgr_simple-table-column-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/backgr_simple-table-column-group-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/backgr_simple-table-column-group-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/backgr_simple-table-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/backgr_simple-table-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/backgr_simple-table-row-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/backgr_simple-table-row-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/backgr_simple-table-row-group-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/backgr_simple-table-row-group-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/body_col-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/body_col-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/body_tbody-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/body_tbody-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/body_tfoot-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/body_tfoot-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/body_thead-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/body_thead-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/col_span-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/col_span-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/colgroup_align_center-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/colgroup_align_center-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/colgroup_align_justify-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/colgroup_align_justify-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/colgroup_align_left-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/colgroup_align_left-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/colgroup_align_right-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/colgroup_align_right-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/colgroup_span-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/colgroup_span-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/colgroup_valign_baseline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/colgroup_valign_baseline-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/colgroup_valign_bottom-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/colgroup_valign_bottom-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/colgroup_valign_middle-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/colgroup_valign_middle-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/colgroup_valign_top-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/colgroup_valign_top-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/colgroup_width_pct-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/colgroup_width_pct-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/colgroup_width_px-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/colgroup_width_px-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/table_frame_border-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/table_frame_border-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/table_frame_box-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/table_frame_box-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/table_row_align_center-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/table_row_align_center-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/table_row_align_left-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/table_row_align_left-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/table_row_align_right-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/table_row_align_right-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/table_rules_all-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/table_rules_all-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/table_rules_groups-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/table_rules_groups-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/table_rules_none-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/table_rules_none-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_align_center-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_align_center-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_align_left-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_align_left-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_align_right-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_align_right-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_aqua-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_aqua-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_aqua_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_aqua_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_black-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_black-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_black_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_black_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_blue-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_blue-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_blue_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_blue_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_fuchsia-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_fuchsia-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_fuchsia_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_fuchsia_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_gray-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_gray-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_gray_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_gray_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_green-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_green-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_green_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_green_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_lime-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_lime-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_lime_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_lime_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_maroon-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_maroon-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_maroon_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_maroon_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_navy-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_navy-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_navy_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_navy_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_olive-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_olive-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_olive_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_olive_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_purple-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_purple-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_purple_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_purple_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_red-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_red-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_red_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_red_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_silver-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_silver-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_silver_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_silver_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_teal-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_teal-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_teal_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_teal_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_white-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_white-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_white_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_white_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_yellow-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_yellow-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_bgcolor_yellow_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_yellow_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_border_0-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_border_0-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_border_1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_border_1-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_border_2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_border_2-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_border_3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_border_3-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_caption_align_bot-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_caption_align_bot-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_caption_align_top-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_caption_align_top-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_cellpadding-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_cellpadding-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_cellpadding_pct-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_cellpadding_pct-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_cellspacing-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_cellspacing-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_class-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_class-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_default-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_default-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_id-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_id-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_row_th_nowrap-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_row_th_nowrap-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_style-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_style-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_td_align_center-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_td_align_center-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_td_align_left-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_td_align_left-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_td_align_right-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_td_align_right-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_td_colspan-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_td_colspan-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_td_height-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_td_height-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_td_nowrap-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_td_nowrap-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_td_rowspan-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_td_rowspan-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_td_width-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_td_width-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_th_align_center-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_th_align_center-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_th_align_left-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_th_align_left-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_th_align_right-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_th_align_right-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_th_colspan-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_th_colspan-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_th_height-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_th_height-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_th_rowspan-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_th_rowspan-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_th_width-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_th_width-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_width_percent-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_width_percent-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tables_width_px-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tables_width_px-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tbody_align_center-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tbody_align_center-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tbody_align_char-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tbody_align_char-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tbody_align_justify-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tbody_align_justify-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tbody_align_left-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tbody_align_left-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tbody_align_right-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tbody_align_right-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tbody_char-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tbody_char-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tbody_valign_baseline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tbody_valign_baseline-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tbody_valign_bottom-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tbody_valign_bottom-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tbody_valign_middle-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tbody_valign_middle-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tbody_valign_top-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tbody_valign_top-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/td_valign_baseline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/td_valign_baseline-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/td_valign_bottom-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/td_valign_bottom-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/td_valign_middle-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/td_valign_middle-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/td_valign_top-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/td_valign_top-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tfoot_align_center-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tfoot_align_center-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tfoot_align_char-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tfoot_align_char-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tfoot_align_justify-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tfoot_align_justify-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tfoot_align_left-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tfoot_align_left-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tfoot_align_right-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tfoot_align_right-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tfoot_char-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tfoot_char-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tfoot_valign_baseline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tfoot_valign_baseline-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tfoot_valign_bottom-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tfoot_valign_bottom-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tfoot_valign_middle-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tfoot_valign_middle-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tfoot_valign_top-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tfoot_valign_top-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/th_valign_baseline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/th_valign_baseline-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/th_valign_bottom-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/th_valign_bottom-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/th_valign_middle-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/th_valign_middle-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/th_valign_top-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/th_valign_top-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/thead_align_center-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/thead_align_center-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/thead_align_char-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/thead_align_char-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/thead_align_justify-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/thead_align_justify-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/thead_align_left-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/thead_align_left-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/thead_align_right-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/thead_align_right-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/thead_char-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/thead_char-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/thead_valign_baseline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/thead_valign_baseline-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/thead_valign_bottom-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/thead_valign_bottom-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/thead_valign_middle-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/thead_valign_middle-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/thead_valign_top-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/thead_valign_top-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_aqua_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_aqua_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_black-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_black-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_black_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_black_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_blue-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_blue-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_blue_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_blue_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_fuchsia-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_fuchsia-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_fuchsia_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_fuchsia_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_gray-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_gray-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_gray_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_gray_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_green-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_green-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_green_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_green_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_lime-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_lime-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_lime_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_lime_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_maroon-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_maroon-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_maroon_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_maroon_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_navy-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_navy-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_navy_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_navy_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_olive-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_olive-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_olive_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_olive_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_purple-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_purple-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_purple_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_purple_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_red-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_red-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_red_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_red_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_silver-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_silver-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_silver_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_silver_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_teal-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_teal-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_teal_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_teal_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_white-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_white-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_white_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_white_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_yellow-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_yellow-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_bgcolor_yellow_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_yellow_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_valign_baseline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_valign_baseline-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_valign_bottom-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_valign_bottom-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_valign_middle-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_valign_middle-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/tr_valign_top-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/tr_valign_top-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_caption_align_bottom-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_caption_align_bottom-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_caption_align_top-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_caption_align_top-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_caption_class-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_caption_class-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_caption_id-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_caption_id-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_caption_style-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_caption_style-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_col_align_center-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_align_center-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_col_align_char-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_align_char-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_col_align_justify-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_align_justify-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_col_align_left-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_align_left-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_col_align_right-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_align_right-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_col_span-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_span-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_col_valign_baseline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_valign_baseline-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_col_valign_bottom-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_valign_bottom-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_col_valign_middle-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_valign_middle-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_col_valign_top-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_valign_top-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_col_width_pct-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_width_pct-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_col_width_px-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_width_px-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_col_width_rel-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_width_rel-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_colgroup_align_center-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_colgroup_align_center-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_colgroup_align_char-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_colgroup_align_char-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_colgroup_align_justify-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_colgroup_align_justify-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_colgroup_align_left-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_colgroup_align_left-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_colgroup_align_right-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_colgroup_align_right-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_colgroup_span-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_colgroup_span-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_colgroup_valign_middle-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_colgroup_valign_middle-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_colgroup_valign_top-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_colgroup_valign_top-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_colgroup_width_pct-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_colgroup_width_pct-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_colgroup_width_rel-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_colgroup_width_rel-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_table-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_table-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_table_align_center-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_align_center-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_table_align_left-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_align_left-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_table_align_right-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_align_right-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_table_bgcolor_name-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_bgcolor_name-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_table_border-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_border-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_table_border_none-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_border_none-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_table_border_px-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_border_px-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_table_cellpadding-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_cellpadding-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_table_cellpadding_pct-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_cellpadding_pct-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_table_cellspacing-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_cellspacing-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_table_cellspacing_pct-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_cellspacing_pct-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_table_class-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_class-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_table_frame_void-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_frame_void-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_table_id-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_id-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_table_rules_groups-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_rules_groups-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_table_rules_none-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_rules_none-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_table_style-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_style-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_table_width_pct-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_width_pct-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_table_width_px-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_width_px-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tbody_align_center-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tbody_align_center-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tbody_align_char-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tbody_align_char-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tbody_align_justify-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tbody_align_justify-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tbody_align_left-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tbody_align_left-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tbody_align_right-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tbody_align_right-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tbody_class-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tbody_class-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tbody_id-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tbody_id-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tbody_style-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tbody_style-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tbody_valign_baseline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tbody_valign_baseline-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tbody_valign_bottom-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tbody_valign_bottom-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tbody_valign_middle-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tbody_valign_middle-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tbody_valign_top-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tbody_valign_top-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_td_align_center-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_align_center-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_td_align_char-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_align_char-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_td_align_justify-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_align_justify-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_td_align_left-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_align_left-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_td_align_right-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_align_right-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_td_bgcolor_name-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_bgcolor_name-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_td_class-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_class-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_td_colspan-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_colspan-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_td_height-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_height-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_td_id-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_id-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_td_nowrap-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_nowrap-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_td_rowspan-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_rowspan-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_td_style-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_style-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_td_valign_baseline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_valign_baseline-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_td_valign_bottom-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_valign_bottom-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_td_valign_middle-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_valign_middle-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_td_valign_top-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_valign_top-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_td_width-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_width-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tfoot_align_center-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tfoot_align_center-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tfoot_align_char-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tfoot_align_char-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tfoot_align_justify-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tfoot_align_justify-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tfoot_align_left-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tfoot_align_left-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tfoot_align_right-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tfoot_align_right-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tfoot_class-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tfoot_class-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tfoot_id-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tfoot_id-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tfoot_style-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tfoot_style-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tfoot_valign_middle-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tfoot_valign_middle-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tfoot_valign_top-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tfoot_valign_top-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_th_align_center-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_align_center-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_th_align_char-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_align_char-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_th_align_justify-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_align_justify-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_th_align_left-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_align_left-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_th_align_right-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_align_right-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_th_bgcolor_name-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_bgcolor_name-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_th_class-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_class-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_th_colspan-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_colspan-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_th_height-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_height-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_th_id-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_id-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_th_nowrap-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_nowrap-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_th_rowspan-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_rowspan-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_th_style-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_style-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_th_valign_baseline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_valign_baseline-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_th_valign_bottom-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_valign_bottom-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_th_valign_middle-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_valign_middle-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_th_valign_top-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_valign_top-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_th_width-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_width-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_thead_align_center-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_thead_align_center-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_thead_align_char-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_thead_align_char-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_thead_align_justify-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_thead_align_justify-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_thead_align_left-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_thead_align_left-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_thead_align_right-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_thead_align_right-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_thead_class-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_thead_class-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_thead_id-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_thead_id-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_thead_style-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_thead_style-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_thead_valign_baseline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_thead_valign_baseline-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_thead_valign_bottom-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_thead_valign_bottom-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_thead_valign_middle-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_thead_valign_middle-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_thead_valign_top-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_thead_valign_top-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tr_align_center-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_align_center-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tr_align_char-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_align_char-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tr_align_justify-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_align_justify-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tr_align_left-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_align_left-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tr_align_right-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_align_right-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tr_bgcolor_name-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_bgcolor_name-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tr_class-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_class-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tr_id-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_id-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tr_style-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_style-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tr_valign_baseline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_valign_baseline-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tr_valign_bottom-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_valign_bottom-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tr_valign_middle-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_valign_middle-expected.png.
  • platform/qt-wk2/tables/mozilla/marvin/x_tr_valign_top-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_valign_top-expected.png.
  • platform/qt-wk2/tables/mozilla/other/body_col-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/other/body_col-expected.png.
  • platform/qt-wk2/tables/mozilla/other/cell_widths-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/other/cell_widths-expected.png.
  • platform/qt-wk2/tables/mozilla/other/cellspacing-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/other/cellspacing-expected.png.
  • platform/qt-wk2/tables/mozilla/other/move_row-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/other/move_row-expected.png.
  • platform/qt-wk2/tables/mozilla/other/ms-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/other/ms-expected.png.
  • platform/qt-wk2/tables/mozilla/other/nested2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/other/nested2-expected.png.
  • platform/qt-wk2/tables/mozilla/other/nestedTables-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/other/nestedTables-expected.png.
  • platform/qt-wk2/tables/mozilla/other/padding-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/other/padding-expected.png.
  • platform/qt-wk2/tables/mozilla/other/test3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/other/test3-expected.png.
  • platform/qt-wk2/tables/mozilla/other/test6-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/other/test6-expected.png.
  • platform/qt-wk2/tables/mozilla/other/wa_table_thtd_rowspan-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/other/wa_table_thtd_rowspan-expected.png.
  • platform/qt-wk2/tables/mozilla/other/wa_table_tr_align-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla/other/wa_table_tr_align-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/97619-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/97619-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug1010-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug1010-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug10140-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug10140-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug101759-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug101759-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug10216-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug10216-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug104898-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug104898-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug1055-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug1055-2-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug106966-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug106966-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug1128-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug1128-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug11331-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug11331-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug1164-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug1164-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug11945-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug11945-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug131020-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug131020-3-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug14007-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug14007-1-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug14159-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug14159-2-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug14489-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug14489-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug1725-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug1725-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug17826-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug17826-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug18770-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug18770-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug19526-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug19526-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug21518-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug21518-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug220653-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug220653-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug22122-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug22122-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug24880-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug24880-1-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug25707-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug25707-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug27993-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug27993-2-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug3166-12-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug3166-12-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug3166-18-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug3166-18-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug3166-5-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug3166-5-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug3166-6-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug3166-6-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug3166-7-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug3166-7-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug3166-8-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug3166-8-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug3166-9-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug3166-9-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug32205-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug32205-1-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug32205-4-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug32205-4-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug42043-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug42043-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug4294-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug4294-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug46268-4-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug46268-4-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug47163-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug47163-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug51000-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug51000-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug56024-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug56024-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug58402-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug58402-2-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug59252-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug59252-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug61042-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug61042-1-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug61042-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug61042-2-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug65372-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug65372-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug67915-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug67915-2-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug6933-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug6933-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug7121-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug7121-2-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug72393-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug72393-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug7243-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug7243-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug73629-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug73629-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug80762-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug80762-2-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug89315-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug89315-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug91057-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug91057-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug92868_1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug92868_1-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/bugs/bug9879-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug9879-1-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/collapsing_borders/bug41262-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/collapsing_borders/bug41262-1-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/core/backgrounds-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/core/backgrounds-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/core/captions1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/core/captions1-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/core/captions2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/core/captions2-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/core/captions3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/core/captions3-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/core/col_span2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/core/col_span2-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/core/cols1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/core/cols1-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/core/columns-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/core/columns-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/core/conflicts-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/core/conflicts-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/core/standards1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/core/standards1-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/dom/appendCells1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/dom/appendCells1-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/dom/appendCellsRebuild1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/dom/appendCellsRebuild1-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/dom/appendCol1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/dom/appendCol1-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/dom/appendColGroup1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/dom/appendColGroup1-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/dom/insertTbodyExpand1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/dom/insertTbodyExpand1-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/dom/insertTbodyRebuild1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/dom/insertTbodyRebuild1-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/table_frame_above-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_frame_above-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/table_frame_below-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_frame_below-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/table_frame_void-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_frame_void-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.txt.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/x_colgroup_width_px-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_colgroup_width_px-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/other/empty_cells-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/other/empty_cells-expected.png.
  • platform/qt-wk2/tables/mozilla_expected_failures/other/test4-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/tables/mozilla_expected_failures/other/test4-expected.png.
6:57 AM Changeset in webkit [154486] by allan.jensen@digia.com
  • 1 edit
    109 copies
    28 adds
    4 deletes in trunk/LayoutTests

Moving expectations from Qt 5.0 WK2 to Qt WK2 - Part 6

Unreviewed gardening.

  • platform/qt-wk2/http/tests/cache/cancel-multiple-post-xhrs-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/cache/cancel-multiple-post-xhrs-expected.txt.
  • platform/qt-wk2/http/tests/loading/simple-subframe-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/loading/simple-subframe-expected.png.
  • platform/qt-wk2/http/tests/local/file-url-sent-as-referer-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/local/file-url-sent-as-referer-expected.png.
  • platform/qt-wk2/http/tests/misc/acid2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/misc/acid2-expected.png.
  • platform/qt-wk2/http/tests/misc/acid3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/misc/acid3-expected.png.
  • platform/qt-wk2/http/tests/misc/error404-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/misc/error404-expected.png.
  • platform/qt-wk2/http/tests/misc/favicon-as-image-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/misc/favicon-as-image-expected.png.
  • platform/qt-wk2/http/tests/misc/frame-access-during-load-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/misc/frame-access-during-load-expected.png.
  • platform/qt-wk2/http/tests/misc/iframe404-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/misc/iframe404-expected.png.
  • platform/qt-wk2/http/tests/misc/object-embedding-svg-delayed-size-negotiation-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/misc/object-embedding-svg-delayed-size-negotiation-expected.png.
  • platform/qt-wk2/http/tests/misc/slow-loading-image-in-pattern-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/misc/slow-loading-image-in-pattern-expected.png.
  • platform/qt-wk2/http/tests/misc/will-send-request-returns-null-on-redirect-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/misc/will-send-request-returns-null-on-redirect-expected.txt.
  • platform/qt-wk2/http/tests/misc/window-dot-stop-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/misc/window-dot-stop-expected.txt.
  • platform/qt-wk2/http/tests/navigation/error404-basic-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/navigation/error404-basic-expected.png.
  • platform/qt-wk2/http/tests/navigation/error404-goback-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/navigation/error404-goback-expected.png.
  • platform/qt-wk2/http/tests/navigation/javascriptlink-frames-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/navigation/javascriptlink-frames-expected.png.
  • platform/qt-wk2/http/tests/navigation/postredirect-basic-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/navigation/postredirect-basic-expected.png.
  • platform/qt-wk2/http/tests/navigation/postredirect-basic-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/navigation/postredirect-basic-expected.txt.
  • platform/qt-wk2/http/tests/navigation/postredirect-goback1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/navigation/postredirect-goback1-expected.png.
  • platform/qt-wk2/http/tests/navigation/postredirect-goback1-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/navigation/postredirect-goback1-expected.txt.
  • platform/qt-wk2/http/tests/security/XFrameOptions/x-frame-options-deny-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/security/XFrameOptions/x-frame-options-deny-expected.txt.
  • platform/qt-wk2/http/tests/security/XFrameOptions/x-frame-options-deny-meta-tag-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/security/XFrameOptions/x-frame-options-deny-meta-tag-expected.txt.
  • platform/qt-wk2/http/tests/security/XFrameOptions/x-frame-options-deny-meta-tag-in-body-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/security/XFrameOptions/x-frame-options-deny-meta-tag-in-body-expected.txt.
  • platform/qt-wk2/http/tests/security/XFrameOptions/x-frame-options-deny-meta-tag-parent-same-origin-deny-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/security/XFrameOptions/x-frame-options-deny-meta-tag-parent-same-origin-deny-expected.txt.
  • platform/qt-wk2/http/tests/security/XFrameOptions/x-frame-options-multiple-headers-conflict-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/security/XFrameOptions/x-frame-options-multiple-headers-conflict-expected.txt.
  • platform/qt-wk2/http/tests/security/XFrameOptions/x-frame-options-multiple-headers-sameorigin-deny-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/security/XFrameOptions/x-frame-options-multiple-headers-sameorigin-deny-expected.txt.
  • platform/qt-wk2/http/tests/security/XFrameOptions/x-frame-options-parent-same-origin-deny-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/security/XFrameOptions/x-frame-options-parent-same-origin-deny-expected.txt.
  • platform/qt-wk2/http/tests/uri/css-href-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/uri/css-href-expected.png.
  • platform/qt-wk2/http/tests/websocket/tests/hybi/bad-sub-protocol-non-ascii-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/websocket/tests/hybi/bad-sub-protocol-non-ascii-expected.txt.
  • platform/qt-wk2/http/tests/xmlhttprequest/abort-should-cancel-load-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/http/tests/xmlhttprequest/abort-should-cancel-load-expected.txt.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/background-attachment-local-scrolling-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/background-attachment-local-scrolling-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/background-color-applied-to-rounded-inline-element-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/background-color-applied-to-rounded-inline-element-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/background-color-border-box-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/background-color-border-box-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/background-size-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/background-size-002-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/background-size-applies-to-block-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/background-size-applies-to-block-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/background-size-aspect-ratio-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/background-size-aspect-ratio-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/background_color_padding_box-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/background_color_padding_box-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/background_position_three_four_values-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/background_position_three_four_values-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/background_properties_greater_than_images-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/background_properties_greater_than_images-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/background_repeat_space_border_box-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/background_repeat_space_border_box-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/background_repeat_space_content_box-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/background_repeat_space_content_box-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-001-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-002-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-003-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-004-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-005-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-006-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-006-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-007-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-007-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-008-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-008-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-009-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-009-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-010-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-010-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-011-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-011-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-012-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-012-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-013-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-013-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-014-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-014-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-015-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-015-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-016-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-016-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-017-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-017-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-clip-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-clip-001-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-clip-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-clip-002-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-content-edge-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-content-edge-001-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-different-width-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-different-width-001-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-initial-value-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-initial-value-001-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-not-inherited-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-not-inherited-001-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-shorthand-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-shorthand-001-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-style-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-style-003-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-style-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-style-004-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-style-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-style-005-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-001-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-002-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-with-three-values-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-with-three-values-001-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-with-two-values-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-with-two-values-001-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-001-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-002-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-003-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-004-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/border-top-right-radius-values-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-top-right-radius-values-004-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/box-shadow-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/box-shadow-001-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/box-shadow-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/box-shadow-002-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/box-shadow-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/box-shadow-003-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/box-shadow-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/box-shadow-004-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/color-behind-images-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/color-behind-images-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/none-as-image-layer-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/none-as-image-layer-expected.png.
  • platform/qt-wk2/ietestcenter/css3/bordersbackgrounds/order-of-images-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/order-of-images-expected.png.
  • platform/qt-wk2/ietestcenter/css3/text/textshadow-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/text/textshadow-001-expected.png.
  • platform/qt-wk2/ietestcenter/css3/text/textshadow-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/text/textshadow-003-expected.png.
  • platform/qt-wk2/ietestcenter/css3/text/textshadow-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/text/textshadow-004-expected.png.
  • platform/qt-wk2/ietestcenter/css3/text/textshadow-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/text/textshadow-005-expected.png.
  • platform/qt-wk2/ietestcenter/css3/text/textshadow-006-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/text/textshadow-006-expected.png.
  • platform/qt-wk2/ietestcenter/css3/text/textshadow-007-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/text/textshadow-007-expected.png.
  • platform/qt-wk2/ietestcenter/css3/text/textshadow-008-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/text/textshadow-008-expected.png.
  • platform/qt-wk2/ietestcenter/css3/text/textshadow-009-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/text/textshadow-009-expected.png.
  • platform/qt-wk2/ietestcenter/css3/text/textshadow-010-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/ietestcenter/css3/text/textshadow-010-expected.png.
  • platform/qt-wk2/platform/qt/fast/forms/button-line-break-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/platform/qt/fast/forms/button-line-break-expected.png.
  • platform/qt-wk2/transforms/2d/compound-transforms-vs-containers-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/transforms/2d/compound-transforms-vs-containers-expected.png.
  • platform/qt-wk2/transforms/2d/transform-borderbox-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/transforms/2d/transform-borderbox-expected.png.
  • platform/qt-wk2/transforms/2d/transform-fixed-container-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/transforms/2d/transform-fixed-container-expected.png.
  • platform/qt-wk2/transforms/2d/transform-origin-borderbox-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/transforms/2d/transform-origin-borderbox-expected.png.
  • platform/qt-wk2/transforms/2d/zoom-menulist-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/transforms/2d/zoom-menulist-expected.png.
  • platform/qt-wk2/transforms/3d/general/matrix-with-zoom-3d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/transforms/3d/general/matrix-with-zoom-3d-expected.png.
  • platform/qt-wk2/transforms/3d/hit-testing/backface-hit-test-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/transforms/3d/hit-testing/backface-hit-test-expected.png.
  • platform/qt-wk2/transforms/3d/hit-testing/backface-no-transform-hit-test-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/transforms/3d/hit-testing/backface-no-transform-hit-test-expected.png.
  • platform/qt-wk2/transforms/3d/point-mapping/3d-point-mapping-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/transforms/3d/point-mapping/3d-point-mapping-3-expected.png.
  • platform/qt-wk2/transforms/3d/point-mapping/3d-point-mapping-coplanar-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/transforms/3d/point-mapping/3d-point-mapping-coplanar-expected.png.
  • platform/qt-wk2/transforms/3d/point-mapping/3d-point-mapping-deep-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/transforms/3d/point-mapping/3d-point-mapping-deep-expected.png.
  • platform/qt-wk2/transforms/3d/point-mapping/3d-point-mapping-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/transforms/3d/point-mapping/3d-point-mapping-expected.png.
  • platform/qt-wk2/transforms/3d/point-mapping/3d-point-mapping-overlapping-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/transforms/3d/point-mapping/3d-point-mapping-overlapping-expected.png.
  • platform/qt-wk2/transforms/3d/point-mapping/3d-point-mapping-preserve-3d-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/transforms/3d/point-mapping/3d-point-mapping-preserve-3d-expected.png.
  • platform/qt-wk2/transforms/svg-vs-css-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/transforms/svg-vs-css-expected.png.
6:47 AM Changeset in webkit [154485] by allan.jensen@digia.com
  • 1 edit
    34 copies
    8 adds
    8 deletes in trunk/LayoutTests

Moving expectations from Qt 5.0 WK2 to Qt WK2 - Part 5

Unreviewed gardening.

  • platform/qt-wk2/fonts/cursive-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/fonts/cursive-expected.png.
  • platform/qt-wk2/fonts/default-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/fonts/default-expected.png.
  • platform/qt-wk2/fonts/fantasy-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/fonts/fantasy-expected.png.
  • platform/qt-wk2/fonts/monospace-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/fonts/monospace-expected.png.
  • platform/qt-wk2/fonts/sans-serif-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/fonts/sans-serif-expected.png.
  • platform/qt-wk2/fonts/serif-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/fonts/serif-expected.png.
  • platform/qt-wk2/fullscreen/full-screen-iframe-zIndex-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/fullscreen/full-screen-iframe-zIndex-expected.png.
  • platform/qt-wk2/fullscreen/full-screen-placeholder-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/fullscreen/full-screen-placeholder-expected.txt.
  • platform/qt-wk2/fullscreen/full-screen-remove-ancestor-after-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/fullscreen/full-screen-remove-ancestor-after-expected.png.
  • platform/qt-wk2/fullscreen/full-screen-render-inline-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/fullscreen/full-screen-render-inline-expected.txt.
  • platform/qt-wk2/fullscreen/full-screen-stacking-context-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/fullscreen/full-screen-stacking-context-expected.png.
  • platform/qt-wk2/fullscreen/full-screen-zIndex-after-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/fullscreen/full-screen-zIndex-after-expected.png.
  • platform/qt-wk2/fullscreen/full-screen-zIndex-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/fullscreen/full-screen-zIndex-expected.png.
  • platform/qt-wk2/fullscreen/parent-flow-inline-with-block-child-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/fullscreen/parent-flow-inline-with-block-child-expected.txt.
  • platform/qt-wk2/loader/go-back-cached-main-resource-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/loader/go-back-cached-main-resource-expected.txt.
  • platform/qt-wk2/plugins/netscape-dom-access-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/plugins/netscape-dom-access-expected.txt.
  • platform/qt-wk2/printing/return-from-printing-mode-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/printing/return-from-printing-mode-expected.png.
  • platform/qt-wk2/scrollbars/basic-scrollbar-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/scrollbars/basic-scrollbar-expected.png.
  • platform/qt-wk2/scrollbars/custom-scrollbar-with-incomplete-style-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/scrollbars/custom-scrollbar-with-incomplete-style-expected.png.
  • platform/qt-wk2/scrollbars/disabled-scrollbar-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/scrollbars/disabled-scrollbar-expected.png.
  • platform/qt-wk2/scrollbars/listbox-scrollbar-combinations-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/scrollbars/listbox-scrollbar-combinations-expected.png.
  • platform/qt-wk2/scrollbars/overflow-scrollbar-combinations-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/scrollbars/overflow-scrollbar-combinations-expected.png.
  • platform/qt-wk2/scrollbars/scrollbar-buttons-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/scrollbars/scrollbar-buttons-expected.png.
  • platform/qt-wk2/scrollbars/scrollbar-orientation-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/scrollbars/scrollbar-orientation-expected.png.
  • platform/qt-wk2/scrollbars/scrollbars-on-positioned-content-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/scrollbars/scrollbars-on-positioned-content-expected.png.
  • platform/qt-wk2/scrollingcoordinator/non-fast-scrollable-region-scaled-iframe-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/scrollingcoordinator/non-fast-scrollable-region-scaled-iframe-expected.png.
  • platform/qt-wk2/scrollingcoordinator/non-fast-scrollable-region-scaled-iframe-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/scrollingcoordinator/non-fast-scrollable-region-scaled-iframe-expected.txt.
  • platform/qt-wk2/scrollingcoordinator/non-fast-scrollable-region-transformed-iframe-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/scrollingcoordinator/non-fast-scrollable-region-transformed-iframe-expected.png.
  • platform/qt-wk2/scrollingcoordinator/non-fast-scrollable-region-transformed-iframe-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/scrollingcoordinator/non-fast-scrollable-region-transformed-iframe-expected.txt.
  • platform/qt-wk2/transitions/cross-fade-background-image-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/transitions/cross-fade-background-image-expected.png.
  • platform/qt-wk2/transitions/cross-fade-border-image-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/transitions/cross-fade-border-image-expected.png.
  • platform/qt-wk2/transitions/move-after-transition-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/transitions/move-after-transition-expected.png.
  • platform/qt-wk2/transitions/suspend-transform-transition-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/transitions/suspend-transform-transition-expected.png.
  • platform/qt-wk2/transitions/svg-text-shadow-transition-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/transitions/svg-text-shadow-transition-expected.png.
6:12 AM Changeset in webkit [154484] by allan.jensen@digia.com
  • 1 edit
    499 copies
    11 adds
    1 delete in trunk/LayoutTests

Moving expectations from Qt 5.0 WK2 to Qt WK2 - Part 4

Unreviewed gardening.

  • platform/qt-wk2/editing/deleting/4922367-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/4922367-expected.png.
  • platform/qt-wk2/editing/deleting/5099303-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/5099303-expected.png.
  • platform/qt-wk2/editing/deleting/5126166-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/5126166-expected.png.
  • platform/qt-wk2/editing/deleting/5144139-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/5144139-2-expected.png.
  • platform/qt-wk2/editing/deleting/5206311-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/5206311-1-expected.png.
  • platform/qt-wk2/editing/deleting/5272440-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/5272440-expected.png.
  • platform/qt-wk2/editing/deleting/5369009-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/5369009-expected.png.
  • platform/qt-wk2/editing/deleting/5433862-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/5433862-2-expected.png.
  • platform/qt-wk2/editing/deleting/5483370-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/5483370-expected.png.
  • platform/qt-wk2/editing/deleting/delete-3608445-fix-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-3608445-fix-expected.png.
  • platform/qt-wk2/editing/deleting/delete-3608462-fix-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-3608462-fix-expected.png.
  • platform/qt-wk2/editing/deleting/delete-3857753-fix-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-3857753-fix-expected.png.
  • platform/qt-wk2/editing/deleting/delete-3865854-fix-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-3865854-fix-expected.png.
  • platform/qt-wk2/editing/deleting/delete-3928305-fix-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-3928305-fix-expected.png.
  • platform/qt-wk2/editing/deleting/delete-after-span-ws-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-after-span-ws-001-expected.png.
  • platform/qt-wk2/editing/deleting/delete-after-span-ws-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-after-span-ws-002-expected.png.
  • platform/qt-wk2/editing/deleting/delete-after-span-ws-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-after-span-ws-003-expected.png.
  • platform/qt-wk2/editing/deleting/delete-and-undo-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-and-undo-expected.png.
  • platform/qt-wk2/editing/deleting/delete-at-paragraph-boundaries-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-at-paragraph-boundaries-002-expected.png.
  • platform/qt-wk2/editing/deleting/delete-at-paragraph-boundaries-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-at-paragraph-boundaries-003-expected.png.
  • platform/qt-wk2/editing/deleting/delete-at-paragraph-boundaries-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-at-paragraph-boundaries-004-expected.png.
  • platform/qt-wk2/editing/deleting/delete-at-paragraph-boundaries-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-at-paragraph-boundaries-005-expected.png.
  • platform/qt-wk2/editing/deleting/delete-at-paragraph-boundaries-006-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-at-paragraph-boundaries-006-expected.png.
  • platform/qt-wk2/editing/deleting/delete-at-paragraph-boundaries-007-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-at-paragraph-boundaries-007-expected.png.
  • platform/qt-wk2/editing/deleting/delete-at-paragraph-boundaries-008-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-at-paragraph-boundaries-008-expected.png.
  • platform/qt-wk2/editing/deleting/delete-at-paragraph-boundaries-009-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-at-paragraph-boundaries-009-expected.png.
  • platform/qt-wk2/editing/deleting/delete-at-paragraph-boundaries-010-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-at-paragraph-boundaries-010-expected.png.
  • platform/qt-wk2/editing/deleting/delete-at-paragraph-boundaries-011-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-at-paragraph-boundaries-011-expected.png.
  • platform/qt-wk2/editing/deleting/delete-block-contents-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-block-contents-003-expected.png.
  • platform/qt-wk2/editing/deleting/delete-block-merge-contents-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-002-expected.png.
  • platform/qt-wk2/editing/deleting/delete-block-merge-contents-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-003-expected.png.
  • platform/qt-wk2/editing/deleting/delete-block-merge-contents-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-004-expected.png.
  • platform/qt-wk2/editing/deleting/delete-block-merge-contents-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-005-expected.png.
  • platform/qt-wk2/editing/deleting/delete-block-merge-contents-006-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-006-expected.png.
  • platform/qt-wk2/editing/deleting/delete-block-merge-contents-007-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-007-expected.png.
  • platform/qt-wk2/editing/deleting/delete-block-merge-contents-008-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-008-expected.png.
  • platform/qt-wk2/editing/deleting/delete-block-merge-contents-009-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-009-expected.png.
  • platform/qt-wk2/editing/deleting/delete-block-merge-contents-010-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-010-expected.png.
  • platform/qt-wk2/editing/deleting/delete-block-merge-contents-011-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-011-expected.png.
  • platform/qt-wk2/editing/deleting/delete-block-merge-contents-012-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-012-expected.png.
  • platform/qt-wk2/editing/deleting/delete-block-merge-contents-013-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-013-expected.png.
  • platform/qt-wk2/editing/deleting/delete-block-merge-contents-014-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-014-expected.png.
  • platform/qt-wk2/editing/deleting/delete-block-merge-contents-015-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-015-expected.png.
  • platform/qt-wk2/editing/deleting/delete-block-merge-contents-016-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-016-expected.png.
  • platform/qt-wk2/editing/deleting/delete-block-merge-contents-017-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-017-expected.png.
  • platform/qt-wk2/editing/deleting/delete-block-merge-contents-018-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-018-expected.png.
  • platform/qt-wk2/editing/deleting/delete-block-merge-contents-019-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-019-expected.png.
  • platform/qt-wk2/editing/deleting/delete-block-merge-contents-020-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-020-expected.png.
  • platform/qt-wk2/editing/deleting/delete-block-merge-contents-021-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-021-expected.png.
  • platform/qt-wk2/editing/deleting/delete-block-merge-contents-022-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-022-expected.png.
  • platform/qt-wk2/editing/deleting/delete-block-merge-contents-023-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-023-expected.png.
  • platform/qt-wk2/editing/deleting/delete-block-merge-contents-024-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-024-expected.png.
  • platform/qt-wk2/editing/deleting/delete-br-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-br-001-expected.png.
  • platform/qt-wk2/editing/deleting/delete-br-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-br-002-expected.png.
  • platform/qt-wk2/editing/deleting/delete-br-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-br-003-expected.png.
  • platform/qt-wk2/editing/deleting/delete-br-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-br-004-expected.png.
  • platform/qt-wk2/editing/deleting/delete-br-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-br-005-expected.png.
  • platform/qt-wk2/editing/deleting/delete-br-006-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-br-006-expected.png.
  • platform/qt-wk2/editing/deleting/delete-br-007-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-br-007-expected.png.
  • platform/qt-wk2/editing/deleting/delete-br-013-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-br-013-expected.png.
  • platform/qt-wk2/editing/deleting/delete-first-list-item-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-first-list-item-expected.png.
  • platform/qt-wk2/editing/deleting/delete-hr-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-hr-expected.png.
  • platform/qt-wk2/editing/deleting/delete-image-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-image-001-expected.png.
  • platform/qt-wk2/editing/deleting/delete-image-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-image-002-expected.png.
  • platform/qt-wk2/editing/deleting/delete-line-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-line-001-expected.png.
  • platform/qt-wk2/editing/deleting/delete-line-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-line-002-expected.png.
  • platform/qt-wk2/editing/deleting/delete-line-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-line-003-expected.png.
  • platform/qt-wk2/editing/deleting/delete-line-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-line-004-expected.png.
  • platform/qt-wk2/editing/deleting/delete-line-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-line-005-expected.png.
  • platform/qt-wk2/editing/deleting/delete-line-006-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-line-006-expected.png.
  • platform/qt-wk2/editing/deleting/delete-line-007-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-line-007-expected.png.
  • platform/qt-wk2/editing/deleting/delete-line-008-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-line-008-expected.png.
  • platform/qt-wk2/editing/deleting/delete-line-009-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-line-009-expected.png.
  • platform/qt-wk2/editing/deleting/delete-line-010-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-line-010-expected.png.
  • platform/qt-wk2/editing/deleting/delete-line-011-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-line-011-expected.png.
  • platform/qt-wk2/editing/deleting/delete-line-012-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-line-012-expected.png.
  • platform/qt-wk2/editing/deleting/delete-line-013-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-line-013-expected.png.
  • platform/qt-wk2/editing/deleting/delete-line-014-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-line-014-expected.png.
  • platform/qt-wk2/editing/deleting/delete-line-015-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-line-015-expected.png.
  • platform/qt-wk2/editing/deleting/delete-line-016-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-line-016-expected.png.
  • platform/qt-wk2/editing/deleting/delete-line-017-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-line-017-expected.png.
  • platform/qt-wk2/editing/deleting/delete-line-end-ws-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-line-end-ws-001-expected.png.
  • platform/qt-wk2/editing/deleting/delete-line-end-ws-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-line-end-ws-002-expected.png.
  • platform/qt-wk2/editing/deleting/delete-listitem-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-listitem-001-expected.png.
  • platform/qt-wk2/editing/deleting/delete-listitem-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-listitem-002-expected.png.
  • platform/qt-wk2/editing/deleting/delete-ws-fixup-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-ws-fixup-001-expected.png.
  • platform/qt-wk2/editing/deleting/delete-ws-fixup-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/delete-ws-fixup-002-expected.png.
  • platform/qt-wk2/editing/deleting/forward-delete-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/forward-delete-expected.png.
  • platform/qt-wk2/editing/deleting/list-item-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/list-item-1-expected.png.
  • platform/qt-wk2/editing/deleting/merge-different-styles-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/merge-different-styles-expected.png.
  • platform/qt-wk2/editing/deleting/merge-endOfParagraph-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/merge-endOfParagraph-expected.png.
  • platform/qt-wk2/editing/deleting/merge-no-br-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/merge-no-br-expected.png.
  • platform/qt-wk2/editing/deleting/merge-unrendered-space-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/merge-unrendered-space-expected.png.
  • platform/qt-wk2/editing/deleting/merge-whitespace-pre-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/merge-whitespace-pre-expected.png.
  • platform/qt-wk2/editing/deleting/move-nodes-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/move-nodes-001-expected.png.
  • platform/qt-wk2/editing/deleting/non-smart-delete-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/non-smart-delete-expected.png.
  • platform/qt-wk2/editing/deleting/pruning-after-merge-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/pruning-after-merge-2-expected.png.
  • platform/qt-wk2/editing/deleting/smart-delete-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/smart-delete-001-expected.png.
  • platform/qt-wk2/editing/deleting/smart-delete-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/smart-delete-002-expected.png.
  • platform/qt-wk2/editing/deleting/smart-delete-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/smart-delete-003-expected.png.
  • platform/qt-wk2/editing/deleting/smart-delete-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/smart-delete-004-expected.png.
  • platform/qt-wk2/editing/deleting/table-cells-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/table-cells-expected.png.
  • platform/qt-wk2/editing/deleting/type-delete-after-quote-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/deleting/type-delete-after-quote-expected.png.
  • platform/qt-wk2/editing/execCommand/4580583-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/4580583-1-expected.png.
  • platform/qt-wk2/editing/execCommand/4580583-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/4580583-2-expected.png.
  • platform/qt-wk2/editing/execCommand/4641880-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/4641880-1-expected.png.
  • platform/qt-wk2/editing/execCommand/4641880-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/4641880-2-expected.png.
  • platform/qt-wk2/editing/execCommand/4747450-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/4747450-expected.png.
  • platform/qt-wk2/editing/execCommand/4916402-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/4916402-expected.png.
  • platform/qt-wk2/editing/execCommand/4916541-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/4916541-expected.png.
  • platform/qt-wk2/editing/execCommand/4924441-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/4924441-expected.png.
  • platform/qt-wk2/editing/execCommand/5080333-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/5080333-1-expected.png.
  • platform/qt-wk2/editing/execCommand/5080333-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/5080333-2-expected.png.
  • platform/qt-wk2/editing/execCommand/5136770-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/5136770-expected.png.
  • platform/qt-wk2/editing/execCommand/5138441-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/5138441-expected.png.
  • platform/qt-wk2/editing/execCommand/5142012-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/5142012-1-expected.png.
  • platform/qt-wk2/editing/execCommand/5142012-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/5142012-2-expected.png.
  • platform/qt-wk2/editing/execCommand/5190926-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/5190926-expected.png.
  • platform/qt-wk2/editing/execCommand/5481523-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/5481523-expected.png.
  • platform/qt-wk2/editing/execCommand/5482023-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/5482023-expected.png.
  • platform/qt-wk2/editing/execCommand/5569741-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/5569741-expected.png.
  • platform/qt-wk2/editing/execCommand/create-list-with-hr-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/create-list-with-hr-expected.png.
  • platform/qt-wk2/editing/execCommand/findString-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/findString-2-expected.png.
  • platform/qt-wk2/editing/execCommand/findString-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/findString-expected.png.
  • platform/qt-wk2/editing/execCommand/indent-empty-root-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/indent-empty-root-expected.png.
  • platform/qt-wk2/editing/execCommand/indent-list-item-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/indent-list-item-expected.png.
  • platform/qt-wk2/editing/execCommand/indent-selection-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/indent-selection-expected.png.
  • platform/qt-wk2/editing/execCommand/insert-list-and-stitch-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/insert-list-and-stitch-expected.png.
  • platform/qt-wk2/editing/execCommand/insertHorizontalRule-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/insertHorizontalRule-expected.png.
  • platform/qt-wk2/editing/execCommand/insertImage-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/insertImage-expected.png.
  • platform/qt-wk2/editing/execCommand/nsresponder-indent-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/nsresponder-indent-expected.png.
  • platform/qt-wk2/editing/execCommand/nsresponder-outdent-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/nsresponder-outdent-expected.png.
  • platform/qt-wk2/editing/execCommand/paste-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/paste-1-expected.png.
  • platform/qt-wk2/editing/execCommand/print-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/print-expected.png.
  • platform/qt-wk2/editing/execCommand/remove-list-from-range-selection-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/remove-list-from-range-selection-expected.png.
  • platform/qt-wk2/editing/execCommand/remove-list-item-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/remove-list-item-1-expected.png.
  • platform/qt-wk2/editing/execCommand/selectAll-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/execCommand/selectAll-expected.png.
  • platform/qt-wk2/editing/input/caret-at-the-edge-of-input-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/input/caret-at-the-edge-of-input-expected.png.
  • platform/qt-wk2/editing/input/reveal-caret-of-multiline-input-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/input/reveal-caret-of-multiline-input-expected.png.
  • platform/qt-wk2/editing/input/scroll-to-edge-if-line-break-at-end-of-document-contenteditable-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/input/scroll-to-edge-if-line-break-at-end-of-document-contenteditable-expected.txt.
  • platform/qt-wk2/editing/inserting/12882-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/12882-expected.png.
  • platform/qt-wk2/editing/inserting/4278698-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/4278698-expected.png.
  • platform/qt-wk2/editing/inserting/4840662-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/4840662-expected.png.
  • platform/qt-wk2/editing/inserting/4875189-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/4875189-1-expected.png.
  • platform/qt-wk2/editing/inserting/4875189-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/4875189-2-expected.png.
  • platform/qt-wk2/editing/inserting/4959067-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/4959067-expected.png.
  • platform/qt-wk2/editing/inserting/4960120-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/4960120-1-expected.png.
  • platform/qt-wk2/editing/inserting/4960120-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/4960120-2-expected.png.
  • platform/qt-wk2/editing/inserting/5002441-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/5002441-expected.png.
  • platform/qt-wk2/editing/inserting/5058163-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/5058163-1-expected.png.
  • platform/qt-wk2/editing/inserting/5058163-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/5058163-2-expected.png.
  • platform/qt-wk2/editing/inserting/5156401-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/5156401-2-expected.png.
  • platform/qt-wk2/editing/inserting/5418891-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/5418891-expected.png.
  • platform/qt-wk2/editing/inserting/5510537-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/5510537-expected.png.
  • platform/qt-wk2/editing/inserting/5549929-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/5549929-2-expected.png.
  • platform/qt-wk2/editing/inserting/5549929-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/5549929-3-expected.png.
  • platform/qt-wk2/editing/inserting/6703873-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/6703873-expected.png.
  • platform/qt-wk2/editing/inserting/before-after-input-element-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/before-after-input-element-expected.png.
  • platform/qt-wk2/editing/inserting/editable-html-element-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/editable-html-element-expected.png.
  • platform/qt-wk2/editing/inserting/editable-inline-element-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/editable-inline-element-expected.png.
  • platform/qt-wk2/editing/inserting/edited-whitespace-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/edited-whitespace-1-expected.png.
  • platform/qt-wk2/editing/inserting/editing-empty-divs-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/editing-empty-divs-expected.png.
  • platform/qt-wk2/editing/inserting/insert-3778059-fix-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-3778059-fix-expected.png.
  • platform/qt-wk2/editing/inserting/insert-3800346-fix-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-3800346-fix-expected.png.
  • platform/qt-wk2/editing/inserting/insert-at-end-01-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-at-end-01-expected.png.
  • platform/qt-wk2/editing/inserting/insert-at-end-02-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-at-end-02-expected.png.
  • platform/qt-wk2/editing/inserting/insert-br-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-br-002-expected.png.
  • platform/qt-wk2/editing/inserting/insert-br-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-br-005-expected.png.
  • platform/qt-wk2/editing/inserting/insert-br-009-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-br-009-expected.png.
  • platform/qt-wk2/editing/inserting/insert-br-quoted-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-br-quoted-001-expected.png.
  • platform/qt-wk2/editing/inserting/insert-br-quoted-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-br-quoted-002-expected.png.
  • platform/qt-wk2/editing/inserting/insert-br-quoted-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-br-quoted-003-expected.png.
  • platform/qt-wk2/editing/inserting/insert-br-quoted-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-br-quoted-004-expected.png.
  • platform/qt-wk2/editing/inserting/insert-br-quoted-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-br-quoted-005-expected.png.
  • platform/qt-wk2/editing/inserting/insert-br-quoted-006-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-br-quoted-006-expected.png.
  • platform/qt-wk2/editing/inserting/insert-div-011-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-div-011-expected.png.
  • platform/qt-wk2/editing/inserting/insert-div-012-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-div-012-expected.png.
  • platform/qt-wk2/editing/inserting/insert-div-013-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-div-013-expected.png.
  • platform/qt-wk2/editing/inserting/insert-div-014-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-div-014-expected.png.
  • platform/qt-wk2/editing/inserting/insert-div-015-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-div-015-expected.png.
  • platform/qt-wk2/editing/inserting/insert-div-016-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-div-016-expected.png.
  • platform/qt-wk2/editing/inserting/insert-div-017-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-div-017-expected.png.
  • platform/qt-wk2/editing/inserting/insert-div-018-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-div-018-expected.png.
  • platform/qt-wk2/editing/inserting/insert-div-019-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-div-019-expected.png.
  • platform/qt-wk2/editing/inserting/insert-div-020-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-div-020-expected.png.
  • platform/qt-wk2/editing/inserting/insert-div-022-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-div-022-expected.png.
  • platform/qt-wk2/editing/inserting/insert-div-023-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-div-023-expected.png.
  • platform/qt-wk2/editing/inserting/insert-div-024-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-div-024-expected.png.
  • platform/qt-wk2/editing/inserting/insert-div-025-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-div-025-expected.png.
  • platform/qt-wk2/editing/inserting/insert-div-026-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-div-026-expected.png.
  • platform/qt-wk2/editing/inserting/insert-div-027-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-div-027-expected.png.
  • platform/qt-wk2/editing/inserting/insert-paragraph-01-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-paragraph-01-expected.png.
  • platform/qt-wk2/editing/inserting/insert-paragraph-02-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-paragraph-02-expected.png.
  • platform/qt-wk2/editing/inserting/insert-paragraph-03-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-paragraph-03-expected.png.
  • platform/qt-wk2/editing/inserting/insert-paragraph-04-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-paragraph-04-expected.png.
  • platform/qt-wk2/editing/inserting/insert-paragraph-05-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-paragraph-05-expected.png.
  • platform/qt-wk2/editing/inserting/insert-text-with-newlines-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/insert-text-with-newlines-expected.png.
  • platform/qt-wk2/editing/inserting/line-break-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/line-break-expected.png.
  • platform/qt-wk2/editing/inserting/paragraph-separator-01-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/paragraph-separator-01-expected.png.
  • platform/qt-wk2/editing/inserting/paragraph-separator-02-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/paragraph-separator-02-expected.png.
  • platform/qt-wk2/editing/inserting/paragraph-separator-03-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/paragraph-separator-03-expected.png.
  • platform/qt-wk2/editing/inserting/paragraph-separator-in-table-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/paragraph-separator-in-table-1-expected.png.
  • platform/qt-wk2/editing/inserting/paragraph-separator-in-table-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/paragraph-separator-in-table-2-expected.png.
  • platform/qt-wk2/editing/inserting/redo-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/redo-expected.png.
  • platform/qt-wk2/editing/inserting/return-key-with-selection-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/return-key-with-selection-001-expected.png.
  • platform/qt-wk2/editing/inserting/return-key-with-selection-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/return-key-with-selection-002-expected.png.
  • platform/qt-wk2/editing/inserting/return-key-with-selection-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/return-key-with-selection-003-expected.png.
  • platform/qt-wk2/editing/inserting/typing-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/typing-001-expected.png.
  • platform/qt-wk2/editing/inserting/typing-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/typing-002-expected.png.
  • platform/qt-wk2/editing/inserting/typing-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/typing-003-expected.png.
  • platform/qt-wk2/editing/inserting/typing-around-br-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/typing-around-br-001-expected.png.
  • platform/qt-wk2/editing/inserting/typing-around-image-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/inserting/typing-around-image-001-expected.png.
  • platform/qt-wk2/editing/pasteboard/3976872-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/3976872-expected.png.
  • platform/qt-wk2/editing/pasteboard/4076267-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/4076267-2-expected.png.
  • platform/qt-wk2/editing/pasteboard/4076267-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/4076267-3-expected.png.
  • platform/qt-wk2/editing/pasteboard/4076267-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/4076267-expected.png.
  • platform/qt-wk2/editing/pasteboard/4242293-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/4242293-expected.png.
  • platform/qt-wk2/editing/pasteboard/4631972-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/4631972-expected.png.
  • platform/qt-wk2/editing/pasteboard/4641033-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/4641033-expected.png.
  • platform/qt-wk2/editing/pasteboard/4806874-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/4806874-expected.png.
  • platform/qt-wk2/editing/pasteboard/4944770-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/4944770-1-expected.png.
  • platform/qt-wk2/editing/pasteboard/4944770-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/4944770-2-expected.png.
  • platform/qt-wk2/editing/pasteboard/4989774-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/4989774-expected.png.
  • platform/qt-wk2/editing/pasteboard/5006779-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/5006779-expected.png.
  • platform/qt-wk2/editing/pasteboard/5028447-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/5028447-expected.png.
  • platform/qt-wk2/editing/pasteboard/5032095-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/5032095-expected.png.
  • platform/qt-wk2/editing/pasteboard/5071074-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/5071074-2-expected.png.
  • platform/qt-wk2/editing/pasteboard/5071074-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/5071074-expected.png.
  • platform/qt-wk2/editing/pasteboard/5075944-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/5075944-expected.png.
  • platform/qt-wk2/editing/pasteboard/5134759-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/5134759-expected.png.
  • platform/qt-wk2/editing/pasteboard/5156401-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/5156401-1-expected.png.
  • platform/qt-wk2/editing/pasteboard/5387578-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/5387578-expected.png.
  • platform/qt-wk2/editing/pasteboard/5478250-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/5478250-expected.png.
  • platform/qt-wk2/editing/pasteboard/5601583-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/5601583-1-expected.png.
  • platform/qt-wk2/editing/pasteboard/8145-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/8145-1-expected.png.
  • platform/qt-wk2/editing/pasteboard/8145-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/8145-2-expected.png.
  • platform/qt-wk2/editing/pasteboard/8145-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/8145-3-expected.png.
  • platform/qt-wk2/editing/pasteboard/bad-placeholder-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/bad-placeholder-expected.png.
  • platform/qt-wk2/editing/pasteboard/displaced-generic-placeholder-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/displaced-generic-placeholder-expected.png.
  • platform/qt-wk2/editing/pasteboard/displaced-placeholder-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/displaced-placeholder-expected.png.
  • platform/qt-wk2/editing/pasteboard/innerText-inline-table-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/innerText-inline-table-expected.png.
  • platform/qt-wk2/editing/pasteboard/input-field-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/input-field-1-expected.png.
  • platform/qt-wk2/editing/pasteboard/merge-after-delete-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/merge-after-delete-1-expected.png.
  • platform/qt-wk2/editing/pasteboard/merge-after-delete-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/merge-after-delete-2-expected.png.
  • platform/qt-wk2/editing/pasteboard/merge-end-blockquote-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/merge-end-blockquote-expected.png.
  • platform/qt-wk2/editing/pasteboard/merge-end-borders-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/merge-end-borders-expected.png.
  • platform/qt-wk2/editing/pasteboard/merge-start-blockquote-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/merge-start-blockquote-expected.png.
  • platform/qt-wk2/editing/pasteboard/merge-start-list-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/merge-start-list-expected.png.
  • platform/qt-wk2/editing/pasteboard/paste-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/paste-2-expected.png.
  • platform/qt-wk2/editing/pasteboard/paste-4038267-fix-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/paste-4038267-fix-expected.png.
  • platform/qt-wk2/editing/pasteboard/paste-blockquote-after-blockquote-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/paste-blockquote-after-blockquote-expected.png.
  • platform/qt-wk2/editing/pasteboard/paste-blockquote-into-blockquote-4-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/paste-blockquote-into-blockquote-4-expected.png.
  • platform/qt-wk2/editing/pasteboard/paste-line-endings-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/paste-line-endings-001-expected.png.
  • platform/qt-wk2/editing/pasteboard/paste-line-endings-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/paste-line-endings-002-expected.png.
  • platform/qt-wk2/editing/pasteboard/paste-line-endings-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/paste-line-endings-003-expected.png.
  • platform/qt-wk2/editing/pasteboard/paste-line-endings-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/paste-line-endings-004-expected.png.
  • platform/qt-wk2/editing/pasteboard/paste-line-endings-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/paste-line-endings-005-expected.png.
  • platform/qt-wk2/editing/pasteboard/paste-line-endings-006-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/paste-line-endings-006-expected.png.
  • platform/qt-wk2/editing/pasteboard/paste-line-endings-007-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/paste-line-endings-007-expected.png.
  • platform/qt-wk2/editing/pasteboard/paste-line-endings-008-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/paste-line-endings-008-expected.png.
  • platform/qt-wk2/editing/pasteboard/paste-line-endings-009-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/paste-line-endings-009-expected.png.
  • platform/qt-wk2/editing/pasteboard/paste-line-endings-010-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/paste-line-endings-010-expected.png.
  • platform/qt-wk2/editing/pasteboard/paste-match-style-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/paste-match-style-001-expected.png.
  • platform/qt-wk2/editing/pasteboard/paste-match-style-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/paste-match-style-002-expected.png.
  • platform/qt-wk2/editing/pasteboard/paste-text-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/paste-text-004-expected.png.
  • platform/qt-wk2/editing/pasteboard/paste-text-008-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/paste-text-008-expected.png.
  • platform/qt-wk2/editing/pasteboard/paste-text-009-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/paste-text-009-expected.png.
  • platform/qt-wk2/editing/pasteboard/paste-text-013-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/paste-text-013-expected.png.
  • platform/qt-wk2/editing/pasteboard/paste-text-014-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/paste-text-014-expected.png.
  • platform/qt-wk2/editing/pasteboard/paste-text-016-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/paste-text-016-expected.png.
  • platform/qt-wk2/editing/pasteboard/paste-text-019-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/paste-text-019-expected.png.
  • platform/qt-wk2/editing/pasteboard/pasting-object-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/pasting-object-expected.png.
  • platform/qt-wk2/editing/pasteboard/quirks-mode-br-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/quirks-mode-br-1-expected.png.
  • platform/qt-wk2/editing/pasteboard/smart-paste-007-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/smart-paste-007-expected.png.
  • platform/qt-wk2/editing/pasteboard/smart-paste-008-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/smart-paste-008-expected.png.
  • platform/qt-wk2/editing/pasteboard/styled-element-markup-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/styled-element-markup-expected.png.
  • platform/qt-wk2/editing/pasteboard/undoable-fragment-removes-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/undoable-fragment-removes-expected.png.
  • platform/qt-wk2/editing/pasteboard/unrendered-br-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/pasteboard/unrendered-br-expected.png.
  • platform/qt-wk2/editing/selection/13804-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/13804-expected.png.
  • platform/qt-wk2/editing/selection/3690703-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/3690703-2-expected.png.
  • platform/qt-wk2/editing/selection/3690703-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/3690703-expected.png.
  • platform/qt-wk2/editing/selection/3690719-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/3690719-expected.png.
  • platform/qt-wk2/editing/selection/4397952-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/4397952-expected.png.
  • platform/qt-wk2/editing/selection/4402375-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/4402375-expected.png.
  • platform/qt-wk2/editing/selection/4776665-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/4776665-expected.png.
  • platform/qt-wk2/editing/selection/4818145-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/4818145-expected.png.
  • platform/qt-wk2/editing/selection/4866671-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/4866671-expected.png.
  • platform/qt-wk2/editing/selection/4889598-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/4889598-expected.png.
  • platform/qt-wk2/editing/selection/4895428-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/4895428-2-expected.png.
  • platform/qt-wk2/editing/selection/4895428-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/4895428-3-expected.png.
  • platform/qt-wk2/editing/selection/4932260-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/4932260-1-expected.png.
  • platform/qt-wk2/editing/selection/4932260-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/4932260-2-expected.png.
  • platform/qt-wk2/editing/selection/4932260-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/4932260-3-expected.png.
  • platform/qt-wk2/editing/selection/4947387-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/4947387-expected.png.
  • platform/qt-wk2/editing/selection/4960116-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/4960116-expected.png.
  • platform/qt-wk2/editing/selection/4960137-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/4960137-expected.png.
  • platform/qt-wk2/editing/selection/4975120-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/4975120-expected.png.
  • platform/qt-wk2/editing/selection/4983858-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/4983858-expected.png.
  • platform/qt-wk2/editing/selection/5007143-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/5007143-2-expected.png.
  • platform/qt-wk2/editing/selection/5007143-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/5007143-expected.png.
  • platform/qt-wk2/editing/selection/5057506-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/5057506-2-expected.png.
  • platform/qt-wk2/editing/selection/5057506-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/5057506-expected.png.
  • platform/qt-wk2/editing/selection/5076323-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/5076323-1-expected.png.
  • platform/qt-wk2/editing/selection/5076323-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/5076323-2-expected.png.
  • platform/qt-wk2/editing/selection/5076323-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/5076323-3-expected.png.
  • platform/qt-wk2/editing/selection/5081257-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/5081257-1-expected.png.
  • platform/qt-wk2/editing/selection/5081257-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/5081257-2-expected.png.
  • platform/qt-wk2/editing/selection/5099303-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/5099303-expected.png.
  • platform/qt-wk2/editing/selection/5131716-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/5131716-1-expected.png.
  • platform/qt-wk2/editing/selection/5131716-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/5131716-2-expected.png.
  • platform/qt-wk2/editing/selection/5131716-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/5131716-3-expected.png.
  • platform/qt-wk2/editing/selection/5131716-4-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/5131716-4-expected.png.
  • platform/qt-wk2/editing/selection/5195166-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/5195166-2-expected.png.
  • platform/qt-wk2/editing/selection/5234383-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/5234383-1-expected.png.
  • platform/qt-wk2/editing/selection/5234383-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/5234383-2-expected.png.
  • platform/qt-wk2/editing/selection/5240265-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/5240265-expected.png.
  • platform/qt-wk2/editing/selection/6476-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/6476-expected.png.
  • platform/qt-wk2/editing/selection/7152-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/7152-1-expected.png.
  • platform/qt-wk2/editing/selection/7152-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/7152-2-expected.png.
  • platform/qt-wk2/editing/selection/addRange-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/addRange-expected.png.
  • platform/qt-wk2/editing/selection/after-line-wrap-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/after-line-wrap-expected.png.
  • platform/qt-wk2/editing/selection/caret-ltr-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/caret-ltr-2-expected.png.
  • platform/qt-wk2/editing/selection/caret-ltr-2-left-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/caret-ltr-2-left-expected.png.
  • platform/qt-wk2/editing/selection/caret-ltr-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/caret-ltr-expected.png.
  • platform/qt-wk2/editing/selection/caret-ltr-right-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/caret-ltr-right-expected.png.
  • platform/qt-wk2/editing/selection/caret-rtl-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/caret-rtl-2-expected.png.
  • platform/qt-wk2/editing/selection/caret-rtl-2-left-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/caret-rtl-2-left-expected.png.
  • platform/qt-wk2/editing/selection/caret-rtl-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/caret-rtl-expected.png.
  • platform/qt-wk2/editing/selection/caret-rtl-right-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/caret-rtl-right-expected.png.
  • platform/qt-wk2/editing/selection/caret-rtl-right-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/caret-rtl-right-expected.txt.
  • platform/qt-wk2/editing/selection/clear-selection-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/clear-selection-expected.png.
  • platform/qt-wk2/editing/selection/click-start-of-line-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/click-start-of-line-expected.png.
  • platform/qt-wk2/editing/selection/contenteditable-click-inside-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/contenteditable-click-inside-expected.png.
  • platform/qt-wk2/editing/selection/display-table-text-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/display-table-text-expected.png.
  • platform/qt-wk2/editing/selection/drag-select-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/drag-select-1-expected.png.
  • platform/qt-wk2/editing/selection/editable-html-element-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/editable-html-element-expected.png.
  • platform/qt-wk2/editing/selection/editable-non-editable-crash-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/editable-non-editable-crash-expected.png.
  • platform/qt-wk2/editing/selection/end-of-document-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/end-of-document-expected.png.
  • platform/qt-wk2/editing/selection/expanding-selections-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/expanding-selections-expected.png.
  • platform/qt-wk2/editing/selection/expanding-selections2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/expanding-selections2-expected.png.
  • platform/qt-wk2/editing/selection/extend-by-character-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/extend-by-character-002-expected.png.
  • platform/qt-wk2/editing/selection/extend-by-character-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/extend-by-character-003-expected.png.
  • platform/qt-wk2/editing/selection/extend-by-character-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/extend-by-character-004-expected.png.
  • platform/qt-wk2/editing/selection/extend-by-character-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/extend-by-character-005-expected.png.
  • platform/qt-wk2/editing/selection/extend-by-sentence-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/extend-by-sentence-001-expected.png.
  • platform/qt-wk2/editing/selection/extend-by-word-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/extend-by-word-002-expected.png.
  • platform/qt-wk2/editing/selection/extend-inside-transforms-backward-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/extend-inside-transforms-backward-expected.png.
  • platform/qt-wk2/editing/selection/extend-inside-transforms-forward-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/extend-inside-transforms-forward-expected.png.
  • platform/qt-wk2/editing/selection/extend-selection-bidi-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/extend-selection-bidi-expected.png.
  • platform/qt-wk2/editing/selection/fake-doubleclick-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/fake-doubleclick-expected.png.
  • platform/qt-wk2/editing/selection/focus-body-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/focus-body-expected.png.
  • platform/qt-wk2/editing/selection/focus_editable_html-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/focus_editable_html-expected.png.
  • platform/qt-wk2/editing/selection/iframe-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/iframe-expected.png.
  • platform/qt-wk2/editing/selection/image-before-linebreak-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/image-before-linebreak-expected.png.
  • platform/qt-wk2/editing/selection/inline-closest-leaf-child-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/inline-closest-leaf-child-expected.png.
  • platform/qt-wk2/editing/selection/inline-table-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/inline-table-expected.png.
  • platform/qt-wk2/editing/selection/leave-requested-block-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/leave-requested-block-expected.png.
  • platform/qt-wk2/editing/selection/line-wrap-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/line-wrap-1-expected.png.
  • platform/qt-wk2/editing/selection/line-wrap-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/line-wrap-2-expected.png.
  • platform/qt-wk2/editing/selection/mixed-editability-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/mixed-editability-1-expected.png.
  • platform/qt-wk2/editing/selection/mixed-editability-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/mixed-editability-2-expected.png.
  • platform/qt-wk2/editing/selection/mixed-editability-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/mixed-editability-3-expected.png.
  • platform/qt-wk2/editing/selection/mixed-editability-4-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/mixed-editability-4-expected.png.
  • platform/qt-wk2/editing/selection/mixed-editability-5-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/mixed-editability-5-expected.png.
  • platform/qt-wk2/editing/selection/mixed-editability-6-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/mixed-editability-6-expected.png.
  • platform/qt-wk2/editing/selection/mixed-editability-7-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/mixed-editability-7-expected.png.
  • platform/qt-wk2/editing/selection/mixed-editability-8-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/mixed-editability-8-expected.png.
  • platform/qt-wk2/editing/selection/mixed-editability-9-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/mixed-editability-9-expected.png.
  • platform/qt-wk2/editing/selection/move-3875618-fix-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/move-3875618-fix-expected.png.
  • platform/qt-wk2/editing/selection/move-3875641-fix-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/move-3875641-fix-expected.png.
  • platform/qt-wk2/editing/selection/move-backwords-by-word-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/move-backwords-by-word-001-expected.png.
  • platform/qt-wk2/editing/selection/move-between-blocks-no-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/move-between-blocks-no-001-expected.png.
  • platform/qt-wk2/editing/selection/move-between-blocks-yes-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/move-between-blocks-yes-001-expected.png.
  • platform/qt-wk2/editing/selection/move-by-character-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/move-by-character-002-expected.png.
  • platform/qt-wk2/editing/selection/move-by-character-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/move-by-character-003-expected.png.
  • platform/qt-wk2/editing/selection/move-by-character-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/move-by-character-004-expected.png.
  • platform/qt-wk2/editing/selection/move-by-character-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/move-by-character-005-expected.png.
  • platform/qt-wk2/editing/selection/move-by-character-6-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/move-by-character-6-expected.png.
  • platform/qt-wk2/editing/selection/move-by-line-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/move-by-line-001-expected.png.
  • platform/qt-wk2/editing/selection/move-by-line-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/move-by-line-002-expected.png.
  • platform/qt-wk2/editing/selection/move-by-sentence-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/move-by-sentence-001-expected.png.
  • platform/qt-wk2/editing/selection/move-by-sentence-linebreak-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/move-by-sentence-linebreak-expected.png.
  • platform/qt-wk2/editing/selection/move-past-trailing-space-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/move-past-trailing-space-expected.png.
  • platform/qt-wk2/editing/selection/node-removal-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/node-removal-1-expected.png.
  • platform/qt-wk2/editing/selection/node-removal-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/node-removal-2-expected.png.
  • platform/qt-wk2/editing/selection/paragraph-granularity-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/paragraph-granularity-expected.png.
  • platform/qt-wk2/editing/selection/previous-line-position-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/previous-line-position-expected.png.
  • platform/qt-wk2/editing/selection/range-between-block-and-inline-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/range-between-block-and-inline-expected.png.
  • platform/qt-wk2/editing/selection/replace-selection-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/replace-selection-1-expected.png.
  • platform/qt-wk2/editing/selection/replaced-boundaries-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/replaced-boundaries-1-expected.png.
  • platform/qt-wk2/editing/selection/replaced-boundaries-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/replaced-boundaries-2-expected.png.
  • platform/qt-wk2/editing/selection/replaced-boundaries-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/replaced-boundaries-3-expected.png.
  • platform/qt-wk2/editing/selection/select-across-readonly-input-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/select-across-readonly-input-1-expected.png.
  • platform/qt-wk2/editing/selection/select-across-readonly-input-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/select-across-readonly-input-2-expected.png.
  • platform/qt-wk2/editing/selection/select-across-readonly-input-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/select-across-readonly-input-3-expected.png.
  • platform/qt-wk2/editing/selection/select-across-readonly-input-4-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/select-across-readonly-input-4-expected.png.
  • platform/qt-wk2/editing/selection/select-across-readonly-input-5-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/select-across-readonly-input-5-expected.png.
  • platform/qt-wk2/editing/selection/select-all-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/select-all-001-expected.png.
  • platform/qt-wk2/editing/selection/select-all-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/select-all-002-expected.png.
  • platform/qt-wk2/editing/selection/select-all-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/select-all-003-expected.png.
  • platform/qt-wk2/editing/selection/select-all-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/select-all-004-expected.png.
  • platform/qt-wk2/editing/selection/select-all-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/select-all-005-expected.png.
  • platform/qt-wk2/editing/selection/select-all-006-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/select-all-006-expected.png.
  • platform/qt-wk2/editing/selection/select-all-iframe-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/select-all-iframe-expected.png.
  • platform/qt-wk2/editing/selection/select-box-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/select-box-expected.png.
  • platform/qt-wk2/editing/selection/select-element-paragraph-boundary-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/select-element-paragraph-boundary-expected.png.
  • platform/qt-wk2/editing/selection/select-text-overflow-ellipsis-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/select-text-overflow-ellipsis-expected.png.
  • platform/qt-wk2/editing/selection/selectNode-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/selectNode-expected.png.
  • platform/qt-wk2/editing/selection/selectNodeContents-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/selectNodeContents-expected.png.
  • platform/qt-wk2/editing/selection/selection-actions-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/selection-actions-expected.png.
  • platform/qt-wk2/editing/selection/selection-button-text-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/selection-button-text-expected.png.
  • platform/qt-wk2/editing/selection/table-caret-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/table-caret-1-expected.png.
  • platform/qt-wk2/editing/selection/table-caret-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/table-caret-2-expected.png.
  • platform/qt-wk2/editing/selection/table-caret-3-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/table-caret-3-expected.png.
  • platform/qt-wk2/editing/selection/unrendered-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/unrendered-001-expected.png.
  • platform/qt-wk2/editing/selection/unrendered-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/unrendered-002-expected.png.
  • platform/qt-wk2/editing/selection/unrendered-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/unrendered-003-expected.png.
  • platform/qt-wk2/editing/selection/unrendered-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/unrendered-004-expected.png.
  • platform/qt-wk2/editing/selection/unrendered-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/unrendered-005-expected.png.
  • platform/qt-wk2/editing/selection/unrendered-space-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/unrendered-space-expected.png.
  • platform/qt-wk2/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.png.
  • platform/qt-wk2/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.png.
  • platform/qt-wk2/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.png.
  • platform/qt-wk2/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.png.
  • platform/qt-wk2/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.png.
  • platform/qt-wk2/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.png.
  • platform/qt-wk2/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.png.
  • platform/qt-wk2/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.png.
  • platform/qt-wk2/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.png.
  • platform/qt-wk2/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.png.
  • platform/qt-wk2/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.png.
  • platform/qt-wk2/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.png.
  • platform/qt-wk2/editing/selection/word-granularity-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/word-granularity-expected.png.
  • platform/qt-wk2/editing/selection/wrapped-line-caret-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/wrapped-line-caret-1-expected.png.
  • platform/qt-wk2/editing/selection/wrapped-line-caret-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/selection/wrapped-line-caret-2-expected.png.
  • platform/qt-wk2/editing/spelling/grammar-markers-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/spelling/grammar-markers-expected.png.
  • platform/qt-wk2/editing/spelling/grammar-markers-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/spelling/grammar-markers-expected.txt.
  • platform/qt-wk2/editing/spelling/grammar-markers-hidpi-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/spelling/grammar-markers-hidpi-expected.png.
  • platform/qt-wk2/editing/spelling/grammar-markers-hidpi-expected.txt: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/spelling/grammar-markers-hidpi-expected.txt.
  • platform/qt-wk2/editing/style/4916887-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/4916887-expected.png.
  • platform/qt-wk2/editing/style/5017613-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/5017613-1-expected.png.
  • platform/qt-wk2/editing/style/5017613-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/5017613-2-expected.png.
  • platform/qt-wk2/editing/style/5046875-1-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/5046875-1-expected.png.
  • platform/qt-wk2/editing/style/5046875-2-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/5046875-2-expected.png.
  • platform/qt-wk2/editing/style/5065910-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/5065910-expected.png.
  • platform/qt-wk2/editing/style/5084241-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/5084241-expected.png.
  • platform/qt-wk2/editing/style/5228141-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/5228141-expected.png.
  • platform/qt-wk2/editing/style/5279521-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/5279521-expected.png.
  • platform/qt-wk2/editing/style/apple-style-editable-mix-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/apple-style-editable-mix-expected.png.
  • platform/qt-wk2/editing/style/block-style-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/block-style-001-expected.png.
  • platform/qt-wk2/editing/style/block-style-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/block-style-002-expected.png.
  • platform/qt-wk2/editing/style/block-style-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/block-style-003-expected.png.
  • platform/qt-wk2/editing/style/block-styles-007-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/block-styles-007-expected.png.
  • platform/qt-wk2/editing/style/create-block-for-style-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/create-block-for-style-001-expected.png.
  • platform/qt-wk2/editing/style/create-block-for-style-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/create-block-for-style-002-expected.png.
  • platform/qt-wk2/editing/style/create-block-for-style-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/create-block-for-style-003-expected.png.
  • platform/qt-wk2/editing/style/create-block-for-style-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/create-block-for-style-004-expected.png.
  • platform/qt-wk2/editing/style/create-block-for-style-005-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/create-block-for-style-005-expected.png.
  • platform/qt-wk2/editing/style/create-block-for-style-006-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/create-block-for-style-006-expected.png.
  • platform/qt-wk2/editing/style/create-block-for-style-007-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/create-block-for-style-007-expected.png.
  • platform/qt-wk2/editing/style/create-block-for-style-008-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/create-block-for-style-008-expected.png.
  • platform/qt-wk2/editing/style/create-block-for-style-009-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/create-block-for-style-009-expected.png.
  • platform/qt-wk2/editing/style/create-block-for-style-010-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/create-block-for-style-010-expected.png.
  • platform/qt-wk2/editing/style/create-block-for-style-011-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/create-block-for-style-011-expected.png.
  • platform/qt-wk2/editing/style/create-block-for-style-012-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/create-block-for-style-012-expected.png.
  • platform/qt-wk2/editing/style/create-block-for-style-013-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/create-block-for-style-013-expected.png.
  • platform/qt-wk2/editing/style/designmode-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/designmode-expected.png.
  • platform/qt-wk2/editing/style/font-family-with-space-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/font-family-with-space-expected.png.
  • platform/qt-wk2/editing/style/highlight-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/highlight-expected.png.
  • platform/qt-wk2/editing/style/relative-font-size-change-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/relative-font-size-change-001-expected.png.
  • platform/qt-wk2/editing/style/relative-font-size-change-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/relative-font-size-change-002-expected.png.
  • platform/qt-wk2/editing/style/relative-font-size-change-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/relative-font-size-change-003-expected.png.
  • platform/qt-wk2/editing/style/relative-font-size-change-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/relative-font-size-change-004-expected.png.
  • platform/qt-wk2/editing/style/style-3681552-fix-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/style-3681552-fix-001-expected.png.
  • platform/qt-wk2/editing/style/style-3681552-fix-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/style-3681552-fix-002-expected.png.
  • platform/qt-wk2/editing/style/style-3998892-fix-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/style-3998892-fix-expected.png.
  • platform/qt-wk2/editing/style/style-boundary-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/style-boundary-001-expected.png.
  • platform/qt-wk2/editing/style/style-boundary-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/style-boundary-002-expected.png.
  • platform/qt-wk2/editing/style/style-boundary-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/style-boundary-003-expected.png.
  • platform/qt-wk2/editing/style/style-boundary-004-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/style-boundary-004-expected.png.
  • platform/qt-wk2/editing/style/typing-style-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/typing-style-001-expected.png.
  • platform/qt-wk2/editing/style/typing-style-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/typing-style-002-expected.png.
  • platform/qt-wk2/editing/style/unbold-in-bold-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-wk2/editing/undo/4063751-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/undo/4063751-expected.png.
  • platform/qt-wk2/editing/undo/undo-combined-delete-boundary-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/undo/undo-combined-delete-boundary-expected.png.
  • platform/qt-wk2/editing/undo/undo-combined-delete-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/undo/undo-combined-delete-expected.png.
  • platform/qt-wk2/editing/undo/undo-delete-boundary-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/undo/undo-delete-boundary-expected.png.
  • platform/qt-wk2/editing/undo/undo-delete-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/undo/undo-delete-expected.png.
  • platform/qt-wk2/editing/undo/undo-forward-delete-boundary-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/undo/undo-forward-delete-boundary-expected.png.
  • platform/qt-wk2/editing/undo/undo-forward-delete-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/undo/undo-forward-delete-expected.png.
  • platform/qt-wk2/editing/unsupported-content/list-delete-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/unsupported-content/list-delete-001-expected.png.
  • platform/qt-wk2/editing/unsupported-content/list-delete-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/unsupported-content/list-delete-003-expected.png.
  • platform/qt-wk2/editing/unsupported-content/list-type-after-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/unsupported-content/list-type-after-expected.png.
  • platform/qt-wk2/editing/unsupported-content/list-type-before-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/unsupported-content/list-type-before-expected.png.
  • platform/qt-wk2/editing/unsupported-content/table-delete-001-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/unsupported-content/table-delete-001-expected.png.
  • platform/qt-wk2/editing/unsupported-content/table-delete-002-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/unsupported-content/table-delete-002-expected.png.
  • platform/qt-wk2/editing/unsupported-content/table-delete-003-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/unsupported-content/table-delete-003-expected.png.
  • platform/qt-wk2/editing/unsupported-content/table-type-after-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/unsupported-content/table-type-after-expected.png.
  • platform/qt-wk2/editing/unsupported-content/table-type-before-expected.png: Renamed from LayoutTests/platform/qt-5.0-wk2/editing/unsupported-content/table-type-before-expected.png.
5:48 AM Changeset in webkit [154483] by abucur@adobe.com
  • 1 edit
    2 adds in trunk/LayoutTests

[CSS Regions] Can't scroll to see content overflowing last region
https://bugs.webkit.org/show_bug.cgi?id=74737

Reviewed by Antti Koivisto.

Add a test to verify region content overflowing the view is reachable.

  • fast/regions/frame-view-overflow-scroll-expected.html: Added.
  • fast/regions/frame-view-overflow-scroll.html: Added.
5:47 AM Changeset in webkit [154482] by allan.jensen@digia.com
  • 2 edits in trunk/Source/WebCore

REGRESSION(r153939) Fix typo in Qt build-files

Reviewed by Antti Koivisto.

Fix simple typo in Target.pri introduced in r153939.

  • Target.pri:
5:40 AM Changeset in webkit [154481] by Antti Koivisto
  • 41 edits in trunk/Source/WebCore

<https://webkit.org/b/120166> Add Traversal<ElementType> template

Reviewed by Andreas Kling.

It is common to traverse through a subtree looking for elements of specific type and then casting to the type. This pattern can be generalized.

This patch adds a new Traversal<typename ElementType> template. It works like ElementTraversal except that the traversal is limited to the specified type.
The patch also uses the template in a bunch of applicable places.

  • WebCore.exp.in:
  • accessibility/AccessibilityRenderObject.cpp:

(WebCore::AccessibilityRenderObject::addImageMapChildren):

  • dom/Document.cpp:

(WebCore::Document::removeTitle):
(WebCore::Document::updateBaseURL):
(WebCore::Document::processBaseElement):

  • dom/Element.h:
  • dom/ElementTraversal.h:

(WebCore::::firstChildTemplate):
(WebCore::::firstWithinTemplate):
(WebCore::::lastChildTemplate):
(WebCore::::lastWithinTemplate):
(WebCore::::nextTemplate):
(WebCore::::previousTemplate):
(WebCore::::nextSiblingTemplate):
(WebCore::::previousSiblingTemplate):
(WebCore::::nextSkippingChildrenTemplate):
(WebCore::::firstChild):
(WebCore::::lastChild):
(WebCore::::firstWithin):
(WebCore::::lastWithin):
(WebCore::::next):
(WebCore::::previous):
(WebCore::::nextSibling):
(WebCore::::previousSibling):
(WebCore::::nextSkippingChildren):
(WebCore::ElementTraversal::previousIncludingPseudo):
(WebCore::ElementTraversal::nextIncludingPseudo):
(WebCore::ElementTraversal::nextIncludingPseudoSkippingChildren):
(WebCore::ElementTraversal::pseudoAwarePreviousSibling):

  • dom/Node.cpp:

(WebCore::Node::numberOfScopedHTMLStyleChildren):

  • dom/NodeIterator.cpp:

(WebCore::NodeIterator::NodeIterator):

  • dom/NodeIterator.h:
  • dom/Traversal.cpp:

(WebCore::NodeIteratorBase::NodeIteratorBase):
(WebCore::NodeIteratorBase::acceptNode):

  • dom/Traversal.h:


Renamed existing class called Traversal to less generic NodeIteratorBase.

  • dom/TreeScope.cpp:

(WebCore::TreeScope::labelElementForId):
(WebCore::TreeScope::findAnchor):

  • dom/TreeWalker.cpp:

(WebCore::TreeWalker::TreeWalker):

  • dom/TreeWalker.h:
  • editing/FrameSelection.cpp:

(WebCore::scanForForm):

  • editing/markup.cpp:

(WebCore::createContextualFragment):

  • html/HTMLAnchorElement.h:

(WebCore::isHTMLAnchorElement):
(WebCore::HTMLAnchorElement):

  • html/HTMLAreaElement.h:

(WebCore::isHTMLAreaElement):
(WebCore::HTMLAreaElement):

  • html/HTMLBaseElement.h:

(WebCore::isHTMLBaseElement):
(WebCore::HTMLBaseElement):

  • html/HTMLElement.h:

(WebCore::HTMLElement):

  • html/HTMLFieldSetElement.cpp:

(WebCore::HTMLFieldSetElement::invalidateDisabledStateUnder):
(WebCore::HTMLFieldSetElement::childrenChanged):
(WebCore::HTMLFieldSetElement::legend):

  • html/HTMLFormControlElement.h:

(WebCore::toHTMLFormControlElement):
(WebCore::HTMLFormControlElement):

  • html/HTMLLabelElement.cpp:

(WebCore::nodeAsSupportedLabelableElement):
(WebCore::HTMLLabelElement::control):

  • html/HTMLLabelElement.h:

(WebCore::isHTMLLabelElement):
(WebCore::HTMLLabelElement):

  • html/HTMLLegendElement.h:

(WebCore::isHTMLLegendElement):
(WebCore::HTMLLegendElement):

  • html/HTMLMapElement.cpp:

(WebCore::HTMLMapElement::mapMouseEvent):

  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::finishParsingChildren):

  • html/HTMLStyleElement.h:

(WebCore::isHTMLStyleElement):
(WebCore::HTMLStyleElement):

  • html/HTMLTitleElement.h:

(WebCore::HTMLTitleElement):

  • html/HTMLTrackElement.h:

(WebCore::isHTMLTrackElement):
(WebCore::HTMLTrackElement):

  • html/LabelableElement.h:

(WebCore::isLabelableElement):
(WebCore::LabelableElement):

  • rendering/FilterEffectRenderer.cpp:

(WebCore::FilterEffectRenderer::buildReferenceFilter):

  • svg/SVGElement.h:

(WebCore::SVGElement):

  • svg/SVGForeignObjectElement.h:

(WebCore::isSVGForeignObjectElement):
(WebCore::SVGForeignObjectElement):

  • svg/SVGSVGElement.cpp:

(WebCore::SVGSVGElement::collectIntersectionOrEnclosureList):
(WebCore::SVGSVGElement::getElementById):

  • svg/SVGStyledElement.cpp:

(WebCore::SVGStyledElement::title):

  • svg/SVGTitleElement.h:

(WebCore::SVGTitleElement):

  • svg/animation/SMILTimeContainer.cpp:

(WebCore::SMILTimeContainer::updateDocumentOrderIndexes):

  • svg/animation/SVGSMILElement.cpp:

(WebCore::SVGSMILElement::isSMILElement):

  • svg/animation/SVGSMILElement.h:

(WebCore::SVGSMILElement):

  • svg/graphics/SVGImage.cpp:

(WebCore::SVGImage::hasSingleSecurityOrigin):

5:36 AM Changeset in webkit [154480] by allan.jensen@digia.com
  • 2 edits in trunk/Source/WebKit/qt

[Qt] Update outdated source-paths in documentation
https://bugs.webkit.org/show_bug.cgi?id=120206

Reviewed by Anders Carlsson.

  • docs/qtwebkit.qdoc:
4:38 AM Changeset in webkit [154479] by a.bah@samsung.com
  • 10 edits
    2 adds in trunk

<br> does not get deleted when inlined after some non-textual content.
https://bugs.webkit.org/show_bug.cgi?id=120006

Patch by Arpita Bahuguna <a.bah@samsung.com> on 2013-08-23
Reviewed by Ryosuke Niwa.

Source/WebCore:

deleteSelectionCommand does not handle the case when a <br> element is
inlined after some non-textual content (input controls, image etc.).

When doing a back-delete at the start of a line following such a <br>
the two contiguous lines should merge and the <br> should get deleted.
Currently, even though the <br> is deleted, another placeholder <br>
is incorrectly inserted at the same point, thus effectively there is no
change.

We are incorrectly computing the inline <br> to be at the start of an
empty line even though the line is not empty.

Test: editing/deleting/delete-inline-br.html

  • editing/DeleteSelectionCommand.cpp:

(WebCore::DeleteSelectionCommand::handleSpecialCaseBRDelete):
Adding a check to verify that the inline <br> is not on an empty line
if the end node is not a <br> element itself and it's previous sibling
is the start <br> element.

Basically we check whether there is another node (end node) following
the <br>, that the node is not a <br> itself, and that the end node's
previous node is the start <br>.

LayoutTests:

  • editing/deleting/delete-inline-br-expected.txt: Added.
  • editing/deleting/delete-inline-br.html: Added.

Added a testcase that verifies that the caret is placed at the correct
position after performing a back-delete operation.

  • editing/deleting/delete-before-block-image-2-expected.txt:
  • platform/mac/editing/deleting/delete-br-004-expected.txt:
  • platform/mac/editing/deleting/delete-br-005-expected.txt:
  • platform/mac/editing/deleting/delete-br-006-expected.txt:
  • platform/qt/editing/deleting/delete-br-004-expected.txt:
  • platform/qt/editing/deleting/delete-br-005-expected.txt:
  • platform/qt/editing/deleting/delete-br-006-expected.txt:

Rebaselining existing tests. No visual change in behavior for these tests.

4:18 AM Changeset in webkit [154478] by Csaba Osztrogonác
  • 4 edits in trunk

[WTR] Should dump as text when the mimetype is text/plain
https://bugs.webkit.org/show_bug.cgi?id=118306

Patch by Peter Gal <galpeter@inf.u-szeged.hu> on 2013-08-23
Reviewed by Christophe Dumez.

Tools:

Check for the text/plain mimetype and if true then mark it as
text dump.

  • WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:

(WTR::InjectedBundlePage::dump):

LayoutTests:

Unskipping http/tests/multipart/load-last-non-html-frame.php.
Now the result should match the expectation.

  • platform/wk2/TestExpectations:
3:33 AM Changeset in webkit [154477] by simon.pena@samsung.com
  • 2 edits in trunk/LayoutTests

[GTK] Unreviewed gardening. Update test expectations.

  • platform/gtk/TestExpectations:
3:03 AM WebKitGTK/2.0.x edited by zandobersek@gmail.com
Add another proposed merge for the 2.0 branch that improves … (diff)
1:28 AM Changeset in webkit [154476] by reni@webkit.org
  • 3 edits
    2 adds in trunk

Missing null-check in HTMLFormElement::rendererIsNeeded()
https://bugs.webkit.org/show_bug.cgi?id=120159

Reviewed by Ryosuke Niwa.

Source/WebCore:

Null-check parentRenderer in HTMLFormElement::rendererIsNeeded()
and early return.

Test: fast/forms/missing-parentrenderer-crash.html

  • html/HTMLFormElement.cpp:

(WebCore::HTMLFormElement::rendererIsNeeded):

LayoutTests:

Test for the handling of null parentRederer.

  • fast/forms/missing-parentrenderer-crash-expected.txt: Added.
  • fast/forms/missing-parentrenderer-crash.html: Added.
12:19 AM Changeset in webkit [154475] by Alan Bujtas
  • 4 edits
    2 adds in trunk

MathML: ASSERTION FAILED: !isPreferredLogicalHeightDirty() in RenderMathMLBlock::preferredLogicalHeight() const
https://bugs.webkit.org/show_bug.cgi?id=120157

Reviewed by Antti Koivisto.

RenderListMarker needs to be inserted to the render tree before
we start computing the preferred logical widths for the associated
RenderListItem.

Source/WebCore:

Test: mathml/mn-as-list-item-assert.html

  • rendering/RenderListItem.cpp:

(WebCore::RenderListItem::insertOrMoveMarkerRendererIfNeeded):
(WebCore::RenderListItem::layout):
(WebCore::RenderListItem::computePreferredLogicalWidths):

  • rendering/RenderListItem.h:

LayoutTests:

  • mathml/mn-as-list-item-assert-expected.txt: Added.
  • mathml/mn-as-list-item-assert.html: Added.

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.

Note: See TracTimeline for information about the timeline view.