Timeline



Feb 19, 2017:

10:36 PM Changeset in webkit [212625] by Chris Dumez
  • 8 edits
    6 adds in trunk

onbeforeunload event return value coercion is not per-spec
https://bugs.webkit.org/show_bug.cgi?id=168382

Reviewed by Darin Adler.

LayoutTests/imported/w3c:

Import test coverage from web-platform-tests. We were failing half the checks
before this patch.

  • resources/resource-files.json:
  • web-platform-tests/html/browsers/browsing-the-web/unloading-documents/MANIFEST:
  • web-platform-tests/html/browsers/browsing-the-web/unloading-documents/beforeunload-canceling-1.html: Added.
  • web-platform-tests/html/browsers/browsing-the-web/unloading-documents/beforeunload-canceling-expected.txt: Added.
  • web-platform-tests/html/browsers/browsing-the-web/unloading-documents/beforeunload-canceling.html: Added.
  • web-platform-tests/html/browsers/browsing-the-web/unloading-documents/w3c-import.log:

Source/WebCore:

Update handling of value returned by onbeforeunload event listeners
to match Firefox and the specification:

Namely, the following changes were made:

  • Only set the event's returnValue attribute to the returned value if the attribute value is the empty string (so as to not override the attribute value if it has explicitly been set by JS).
  • Cancel the event when the return value is not null by calling preventDefault().

Additionally, the following changes were made:

  • Ask the user to confirm the navigation if the event was canceled, not just if the returnValue attribute was set to a non-empty string.

as per:

Tests: fast/events/before-unload-return-string-conversion.html

imported/w3c/web-platform-tests/html/browsers/browsing-the-web/unloading-documents/beforeunload-canceling.html

  • bindings/js/JSEventListener.cpp:

(WebCore::handleBeforeUnloadEventReturnValue):
(WebCore::JSEventListener::handleEvent):

  • loader/FrameLoader.cpp:

(WebCore::shouldAskForNavigationConfirmation):
(WebCore::FrameLoader::dispatchBeforeUnloadEvent):

LayoutTests:

Add test case to check that the value returned by a beforeunload event handler
is already converted to a string, even if the returnValue attribute is also
set on the BeforeUnloadEvent. The existing code did not handle this properly
and it has been fixed in this patch.

  • fast/events/before-unload-return-string-conversion-expected.txt: Added.
  • fast/events/before-unload-return-string-conversion.html: Added.
  • fast/events/resources/before-unload-return-string-conversion-frame.html: Added.
10:34 PM Changeset in webkit [212624] by commit-queue@webkit.org
  • 3 edits in trunk/Source/JavaScriptCore

Unreviewed, rolling out r212472.
https://bugs.webkit.org/show_bug.cgi?id=168584

Broke CLoop builds when r212466 was rolled out in r212616
(Requested by rniwa on #webkit).

Reverted changeset:

"Unreviewed, fix cloop build."
http://trac.webkit.org/changeset/212472

10:30 PM Changeset in webkit [212623] by Carlos Garcia Campos
  • 2 edits in trunk/Source/WebCore

[SOUP] Call SoupNetworkSession::setShouldIgnoreTLSErrors when testRunner.setAllowsAnySSLCertificate() is called
https://bugs.webkit.org/show_bug.cgi?id=168571

Reviewed by Michael Catanzaro.

Fixes: http/tests/ssl/upgrade-origin-usage.html

  • testing/InternalSettings.cpp:

(WebCore::InternalSettings::setAllowsAnySSLCertificate):

10:29 PM Changeset in webkit [212622] by Carlos Garcia Campos
  • 2 edits in trunk/Source/WTF

[GTK] Test fast/events/message-port-postMessage-recursive.html times out
https://bugs.webkit.org/show_bug.cgi?id=168570

Reviewed by Michael Catanzaro.

This has recently been added and the patch is good. It's just revealing a problem with our timers. The test is
posting a message recursively, and also starts a timeout timer to finish the test. The timeout timer is never
fired for us, because WebCore timers have lower priority than the one used by
postMessage. ScriptExecutionContext uses Document::postTask, that uses scheduleOnMainThread, that uses
RunLoop::dispatch(). We are not setting any priority for the timer used by RunLoop::dispatch, so it's using the
default. RunLoop::dispatch is normally used to schedule tasks between threads, or just to ensure something is
run in a different run loop iteration, but in general nothing urgent as a graphics redraw or something like
that. It's quite common to use g_idle_add to schedule tasks between threads, so I think it makes sense to use
G_PRIORITY_DEFAULT_IDLE for the RunLoop timer.

  • wtf/glib/RunLoopGLib.cpp:

(WTF::RunLoop::RunLoop):

10:22 PM Changeset in webkit [212621] by rniwa@webkit.org
  • 6 edits
    6 adds in trunk

REGRESSION(r212218): Assertion failures in and after parserRemoveChild
https://bugs.webkit.org/show_bug.cgi?id=168458

Reviewed by Antti Koivisto.

Source/WebCore:

The bug was caused by parserRemoveChild not preceeding to remove oldChild even when
oldChild had been inserted elsewhere during unload evnets of the disconnected frames.
Fixed the bug by checking this condition and exiting early.

Also fixed various callers of parserRemoveChild to not call parserAppendChild when
the removed node had already been inserted elsewhere by scripts.

Tests: fast/parser/adoption-agency-unload-iframe-3.html

fast/parser/adoption-agency-unload-iframe-4.html
fast/parser/xml-error-unload-iframe.html

  • dom/ContainerNode.cpp:

(WebCore::ContainerNode::parserRemoveChild): Exit early when the node had been
inserted elsewhere while firing unload events. Also moved the call to
notifyRemovePendingSheetIfNeeded outside NoEventDispatchAssertion since it can
synchrnously fire a focus event.
(WebCore::ContainerNode::parserAppendChild): Moved adoptNode call to inside
NoEventDispatchAssertion since adoptNode call here should never mutate DOM.

  • html/parser/HTMLConstructionSite.cpp:

(WebCore::executeReparentTask): Added an early exit when the node had already been
inserted elsewhere.
(WebCore::executeInsertAlreadyParsedChildTask): Ditto.

  • xml/XMLErrors.cpp:

(WebCore::XMLErrors::insertErrorMessageBlock): Ditto.

  • xml/parser/XMLDocumentParser.cpp:

(WebCore::XMLDocumentParser::end): Fixed a crash unveiled by one of the test cases.
Exit early when insertErrorMessageBlock detached the parser (by author scripts).
(WebCore::XMLDocumentParser::finish): Keep the parser alive until we exit.

LayoutTests:

Add tests to make sure parserAppendChild aren't called when a node removed by parserRemoveChild
had already been been inserted elsewhere by scripts.

  • fast/parser/adoption-agency-unload-iframe-3-expected.txt: Added.
  • fast/parser/adoption-agency-unload-iframe-3.html: Added.
  • fast/parser/adoption-agency-unload-iframe-4-expected.txt: Added.
  • fast/parser/adoption-agency-unload-iframe-4.html: Added.
  • fast/parser/xml-error-unload-iframe-expected.txt: Added.
  • fast/parser/xml-error-unload-iframe.html: Added.
7:59 PM Changeset in webkit [212620] by mark.lam@apple.com
  • 3 edits in trunk/Source/JavaScriptCore

functionTestWasmModuleFunctions() should use a MarkedArgumentBuffer for storing args instead of a Vector.
https://bugs.webkit.org/show_bug.cgi?id=168574

Reviewed by Filip Pizlo.

  • jsc.cpp:

(callWasmFunction):
(functionTestWasmModuleFunctions):

  • runtime/ArgList.h:
6:38 PM Changeset in webkit [212619] by Chris Dumez
  • 11 edits
    2 adds in trunk/Source/WebKit2

[WK2] Support termination of unresponsive WebContent processes that are in the background
https://bugs.webkit.org/show_bug.cgi?id=168479
<rdar://problem/30558745>

Reviewed by Antti Koivisto.

Support termination of unresponsive WebContent processes that are in the background.
This protects us against cases where a background tab is unresponsive and has high CPU
usage, thus draining the battery without the user knowing about it (e.g.
<rdar://problem/29808005>).

The feature works as follows:

  • If a WebProcessProxy has pages but none of them are visible, then it will check regularly if its associated WebContent process is still responsive.
  • Every time we find that the WebContent process is responsive, we exponentially back off the timer to avoid waking up the process too often. The timer initially uses a 20 seconds interval and can back off up to 8 hours.
  • If the WebContent process is unresponsive, then we terminate it. No notification is shown to the user and the termination is not immediately observable since the tab is not visible and its title remains. The tab is not immediately reloaded so as to avoid getting back into a bad state in the background (and have a yo-yo effect).
  • If the user switches to a tab that was previously killed for being unresponsive while in the background, we will then reload the tab in a fresh WebContent process. The crash banner will only be shown if the tab has ever been visible. If it wasn't ever visible (e.g. session restore case), then it will look as if the tab loads for the first time when the user switches to it.

The functionality is disabled by default and can be enabled by the client via the new
WKContextSetUnresponsiveBackgroundProcessesTerminationEnabled() private API.

  • CMakeLists.txt:
  • UIProcess/API/APIProcessPoolConfiguration.cpp:

(API::ProcessPoolConfiguration::copy):

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

(WKContextSetUnresponsiveBackgroundProcessesTerminationEnabled):

  • UIProcess/API/C/WKContextPrivate.h:
  • UIProcess/UnresponsiveWebProcessTerminator.cpp: Added.

(WebKit::UnresponsiveWebProcessTerminator::UnresponsiveWebProcessTerminator):
(WebKit::UnresponsiveWebProcessTerminator::updateState):
(WebKit::pagesCopy):
(WebKit::UnresponsiveWebProcessTerminator::timerFired):

  • UIProcess/UnresponsiveWebProcessTerminator.h: Added.

(WebKit::UnresponsiveWebProcessTerminator::shouldBeActive):

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::reattachToWebProcess):
(WebKit::WebPageProxy::reloadAfterBeingKilledInBackground):
(WebKit::WebPageProxy::dispatchActivityStateChange):
(WebKit::WebPageProxy::terminateProcess):
(WebKit::WebPageProxy::resetStateAfterProcessExited):

  • UIProcess/WebPageProxy.h:
  • UIProcess/WebProcessProxy.cpp:

(WebKit::WebProcessProxy::WebProcessProxy):
(WebKit::m_backgroundResponsivenessTimer):
(WebKit::WebProcessProxy::createWebPage):
(WebKit::WebProcessProxy::addExistingWebPage):
(WebKit::WebProcessProxy::removeWebPage):
(WebKit::WebProcessProxy::updateBackgroundResponsivenessTimer):

  • UIProcess/WebProcessProxy.h:

(WebKit::WebProcessProxy::visiblePageCount):

  • WebKit2.xcodeproj/project.pbxproj:
5:46 PM Changeset in webkit [212618] by mark.lam@apple.com
  • 13 edits
    1 add in trunk/Source

CachedCall should let GC know to keep its arguments alive.
https://bugs.webkit.org/show_bug.cgi?id=168567
<rdar://problem/30475767>

Reviewed by Saam Barati.

Source/JavaScriptCore:

We fix this by having CachedCall use a MarkedArgumentBuffer to store its
arguments instead of a Vector.

Also declared CachedCall, MarkedArgumentBuffer, and ProtoCallFrame as
WTF_FORBID_HEAP_ALLOCATION because they rely on being stack allocated for
correctness.

  • interpreter/CachedCall.h:

(JSC::CachedCall::CachedCall):
(JSC::CachedCall::call):
(JSC::CachedCall::clearArguments):
(JSC::CachedCall::appendArgument):
(JSC::CachedCall::setArgument): Deleted.

  • interpreter/CallFrame.h:

(JSC::ExecState::emptyList):

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::prepareForRepeatCall):

  • interpreter/Interpreter.h:
  • interpreter/ProtoCallFrame.h:
  • runtime/ArgList.cpp:

(JSC::MarkedArgumentBuffer::expandCapacity):

  • runtime/ArgList.h:

(JSC::MarkedArgumentBuffer::ensureCapacity):

  • runtime/StringPrototype.cpp:

(JSC::replaceUsingRegExpSearch):

  • runtime/VM.cpp:

(JSC::VM::VM):

  • runtime/VM.h:

Source/WTF:

Added a WTF_FORBID_HEAP_ALLOCATION that will cause a compilation failure if
a class declared with it is malloced.

While this doesn't prevent that class declared WTF_FORBID_HEAP_ALLOCATION from
being embedded in another class that is heap allocated, it does at minimum
document the intent and gives the users of this class a chance to do the
right thing.

  • WTF.xcodeproj/project.pbxproj:
  • wtf/ForbidHeapAllocation.h: Added.
4:46 PM Changeset in webkit [212617] by Chris Dumez
  • 5 edits
    4 adds in trunk

<input type=color readonly> doesn't act per spec
https://bugs.webkit.org/show_bug.cgi?id=168421
<rdar://problem/30593185>

Reviewed by Ryosuke Niwa.

Source/WebCore:

The 'readonly' attribute should not apply to <input type=color> as per the
HTML specification:

Chrome / Firefox and Edge already behave as per the specification.

Tests: fast/forms/color/input-color-disabled.html

fast/forms/color/input-color-readonly.html

  • html/ColorInputType.cpp:

(WebCore::ColorInputType::handleDOMActivateEvent):
(WebCore::ColorInputType::didChooseColor):

LayoutTests:

Add layout test coverage.

  • fast/forms/color/input-color-disabled-expected.txt: Added.
  • fast/forms/color/input-color-disabled.html: Added.
  • fast/forms/color/input-color-readonly-expected.txt: Added.
  • fast/forms/color/input-color-readonly.html: Added.
2:07 PM Changeset in webkit [212616] by commit-queue@webkit.org
  • 45 edits
    2 moves
    1 add
    16 deletes in trunk

Unreviewed, rolling out r212466.
https://bugs.webkit.org/show_bug.cgi?id=168577

causes crashes on AArch64 on linux, maybe it's causing crashes
on iOS too (Requested by pizlo on #webkit).

Reverted changeset:

"The collector thread should only start when the mutator
doesn't have heap access"
https://bugs.webkit.org/show_bug.cgi?id=167737
http://trac.webkit.org/changeset/212466

8:24 AM Changeset in webkit [212615] by Alan Bujtas
  • 12 edits in trunk/Source/WebCore

Simple line layout: Implement positionForPoint.
https://bugs.webkit.org/show_bug.cgi?id=168565
<rdar://problem/30593370>

Reviewed by Antti Koivisto.

With this patch, now we don't need to switch over to line box tree anymore when positionForPoint()
is called on a single RenderText content (which is the majority of the simple line content).
This patch also adds a new positionForPoint method which returns a Position object instead of VisiblePosition.
Some of the positionForPoint() callsites are only interested in the Position object so constructing a VisiblePosition
(which could potentially kick off a layout) is a waste. At this point the non-simple line layout codepath still constructs
a VisiblePosition and that should be addresses as part of webkit.org/b/168566.

Covered by existing tests.

  • dom/Document.cpp:

(WebCore::Document::caretRangeFromPoint):

  • rendering/RenderBlockFlow.cpp:

(WebCore::RenderBlockFlow::positionForPoint):

  • rendering/RenderBlockFlow.h:
  • rendering/RenderObject.cpp:

(WebCore::RenderObject::positionForPoint):

  • rendering/RenderObject.h:
  • rendering/RenderText.cpp:

(WebCore::RenderText::positionForPoint):

  • rendering/RenderText.h:
  • rendering/SimpleLineLayoutFunctions.cpp:

(WebCore::SimpleLineLayout::positionForPoint):

  • rendering/SimpleLineLayoutFunctions.h:
  • rendering/SimpleLineLayoutResolver.cpp:

(WebCore::SimpleLineLayout::RunResolver::runForPoint):

  • rendering/SimpleLineLayoutResolver.h:

(WebCore::SimpleLineLayout::RunResolver::Run::logicalLeft):
(WebCore::SimpleLineLayout::RunResolver::Run::logicalRight):

4:12 AM Changeset in webkit [212614] by Antti Koivisto
  • 15 edits in trunk/Source/WebCore

Execute pending scripts asynchronously after stylesheet loads complete
https://bugs.webkit.org/show_bug.cgi?id=168367
rdar://problem/30561379

Reviewed by Andreas Kling.

The current synchronous execution is fragile and creates various problems.

  • css/StyleSheetContents.cpp:

(WebCore::StyleSheetContents::checkLoaded):

  • dom/ContainerNode.cpp:

(WebCore::ContainerNode::takeAllChildrenFrom):
(WebCore::ContainerNode::notifyChildInserted):
(WebCore::ContainerNode::removeChild):
(WebCore::ContainerNode::parserRemoveChild):
(WebCore::ContainerNode::removeChildren):

Remove various places where we would trigger delayed synchronous execution.

  • dom/Document.cpp:

(WebCore::Document::Document):
(WebCore::Document::recalcStyle):

Trigger scroll to anchor at the end of style resolution instead of when style sheet load completes.

(WebCore::Document::didRemoveAllPendingStylesheet):

Call asynchronous script execution function.

  • dom/Document.h:

(WebCore::Document::setNeedsNotifyRemoveAllPendingStylesheet): Deleted.
(WebCore::Document::notifyRemovePendingSheetIfNeeded): Deleted.

  • dom/ScriptableDocumentParser.cpp:

(WebCore::ScriptableDocumentParser::ScriptableDocumentParser):
(WebCore::ScriptableDocumentParser::executeScriptsWaitingForStylesheetsSoon):
(WebCore::ScriptableDocumentParser::scriptsWaitingForStylesheetsExecutionTimerFired):

Add a timer for executing pending scripts.

(WebCore::ScriptableDocumentParser::detach):

  • dom/ScriptableDocumentParser.h:

(WebCore::ScriptableDocumentParser::executeScriptsWaitingForStylesheets):

  • html/HTMLLinkElement.cpp:

(WebCore::HTMLLinkElement::removedFrom):
(WebCore::HTMLLinkElement::removePendingSheet):

  • html/HTMLLinkElement.h:
  • html/parser/HTMLDocumentParser.cpp:

(WebCore::HTMLDocumentParser::detach):

  • loader/DocumentLoader.cpp:

(WebCore::DocumentLoader::isLoadingInAPISense):

Stay in loading state if we have a pending script. This matches existing behavior.

  • style/StyleScope.cpp:

(WebCore::Style::Scope::removePendingSheet):

  • style/StyleScope.h:
3:54 AM Changeset in webkit [212613] by Carlos Garcia Campos
  • 2 edits in trunk/LayoutTests

Unreviewed GTK+ gardening. Rebaseline fast/visual-viewport/rubberbanding-viewport-rects-extended-background.html again.

This matches what bots expect now.

  • platform/gtk/fast/visual-viewport/rubberbanding-viewport-rects-extended-background-expected.txt:
3:39 AM Changeset in webkit [212612] by Carlos Garcia Campos
  • 1 edit
    1 add in trunk/LayoutTests

Unreviewed GTK+ gardening. Rebaseline http/tests/loading/server-redirect-for-provisional-load-caching.html.

I think we are just setting the FirstPartyForCookies to our request a bit earlier when redirecting.

  • platform/gtk/http/tests/loading/server-redirect-for-provisional-load-caching-expected.txt: Added.
3:14 AM Changeset in webkit [212611] by Carlos Garcia Campos
  • 2 edits
    2 adds in trunk/LayoutTests

Unreviewed GTK+ gardening. Update expectations of a few more tests and rebaseline fast/visual-viewport/rubberbanding-viewport-rects-extended-background.html.

  • platform/gtk/TestExpectations:
  • platform/gtk/fast/visual-viewport/rubberbanding-viewport-rects-extended-background-expected.txt: Added.

Feb 18, 2017:

11:22 PM Changeset in webkit [212610] by Chris Dumez
  • 10 edits in trunk

<input type=range readonly> doesn't act per spec
https://bugs.webkit.org/show_bug.cgi?id=168422
<rdar://problem/30593189>

Reviewed by Ryosuke Niwa.

Source/WebCore:

'readonly' attribute should not apply to <input type=range> as per the HTML
specification:

Firefox and Edge already behave as per the specification.

No new tests, updated existing tests.

  • html/RangeInputType.cpp:

(WebCore::RangeInputType::handleMouseDownEvent):
(WebCore::RangeInputType::handleTouchEvent):
(WebCore::RangeInputType::handleKeydownEvent):

  • html/shadow/SliderThumbElement.cpp:

(WebCore::SliderThumbElement::defaultEventHandler):
(WebCore::SliderThumbElement::willRespondToMouseMoveEvents):
(WebCore::SliderThumbElement::willRespondToMouseClickEvents):

LayoutTests:

Update / rebaseline existing tests to reflect behavior change.

  • fast/forms/range/range-drag-expected.txt:
  • fast/forms/range/range-drag-when-toggled-disabled-expected.txt:
  • fast/forms/range/range-drag-when-toggled-disabled.html:
  • fast/forms/range/range-drag.html:
  • fast/forms/range/range-keyoperation-expected.txt:
  • fast/forms/range/range-keyoperation.html:
3:58 PM Changeset in webkit [212609] by Chris Dumez
  • 8 edits
    2 adds in trunk

Recursive MessagePort.postMessage() calls causes tab to become unresponsive
https://bugs.webkit.org/show_bug.cgi?id=168548
<rdar://problem/29808005>

Reviewed by Darin Adler.

Source/WebCore:

MessagePort::dispatchMessages() was getting messages one by one of the
channel's MessageQueue and firing the MessageEvent for each of them.
The issue is that we can get stuck in an infinite loop if the
MessageEvent handler posts a message on the same post.

To address the issue, we now takes all messages from the queue before
iterating over them to fire the event. This way, if new messages are
added to the queue in one of the MessageEvent handlers, they will not
be processed until the next event loop iteration, as is expected.

Test: fast/events/message-port-postMessage-recursive.html

  • dom/MessagePort.cpp:

(WebCore::MessagePort::dispatchMessages):

  • dom/MessagePortChannel.h:

(WebCore::MessagePortChannel::EventData::EventData):

  • dom/default/PlatformMessagePortChannel.cpp:

(WebCore::MessagePortChannel::postMessageToRemote):

  • dom/default/PlatformMessagePortChannel.h:

(WebCore::PlatformMessagePortChannel::MessagePortQueue::takeMessage):
(WebCore::PlatformMessagePortChannel::MessagePortQueue::takeAllMessages):
(WebCore::PlatformMessagePortChannel::MessagePortQueue::appendAndCheckEmpty):

Source/WTF:

Add API to retrieve all messages in the queue at once.

  • wtf/MessageQueue.h:

LayoutTests:

Add layout test coverage. The test used to time out, it now passes.
The test also passes on Firefox and Chrome.

  • fast/events/message-port-postMessage-recursive-expected.txt: Added.
  • fast/events/message-port-postMessage-recursive.html: Added.
3:08 PM Changeset in webkit [212608] by Michael Catanzaro
  • 24 edits
    5 deletes in trunk/Source

Remove COORDINATED_GRAPHICS_MULTIPROCESS
https://bugs.webkit.org/show_bug.cgi?id=168514

Reviewed by Darin Adler.

Source/WebCore:

  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp:
  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.h:

Source/WebKit2:

  • Shared/DrawingAreaInfo.h:
  • UIProcess/API/C/CoordinatedGraphics/WKView.cpp:

(WKViewFindZoomableAreaForRect):

  • UIProcess/AcceleratedDrawingAreaProxy.cpp:

(WebKit::AcceleratedDrawingAreaProxy::AcceleratedDrawingAreaProxy):

  • UIProcess/AcceleratedDrawingAreaProxy.h:

(WebKit::AcceleratedDrawingAreaProxy::coordinatedLayerTreeHostProxy): Deleted.

  • UIProcess/CoordinatedGraphics/CoordinatedLayerTreeHostProxy.cpp: Removed.
  • UIProcess/CoordinatedGraphics/CoordinatedLayerTreeHostProxy.h: Removed.
  • UIProcess/CoordinatedGraphics/CoordinatedLayerTreeHostProxy.messages.in: Removed.
  • UIProcess/CoordinatedGraphics/PageViewportController.cpp:

(WebKit::PageViewportController::pageTransitionViewportReady):

  • UIProcess/CoordinatedGraphics/WebPageProxyCoordinatedGraphics.cpp: Removed.
  • UIProcess/DrawingAreaProxy.h:
  • UIProcess/PageClient.h:
  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::pageDidRequestScroll): Deleted.
(WebKit::WebPageProxy::pageTransitionViewportReady): Deleted.
(WebKit::WebPageProxy::didRenderFrame): Deleted.
(WebKit::WebPageProxy::commitPageTransitionViewport): Deleted.

  • UIProcess/WebPageProxy.h:
  • UIProcess/WebPageProxy.messages.in:
  • WebProcess/WebPage/AcceleratedDrawingArea.cpp:

(WebKit::AcceleratedDrawingArea::AcceleratedDrawingArea):
(WebKit::AcceleratedDrawingArea::updateBackingStoreState):
(WebKit::AcceleratedDrawingArea::didReceiveCoordinatedLayerTreeHostMessage): Deleted.

  • WebProcess/WebPage/AcceleratedDrawingArea.h:
  • WebProcess/WebPage/CoordinatedGraphics/CoordinatedLayerTreeHost.cpp:

(WebKit::CoordinatedLayerTreeHost::CoordinatedLayerTreeHost):
(WebKit::CoordinatedLayerTreeHost::commitSceneState):
(WebKit::CoordinatedLayerTreeHost::createCoordinatedSurface):

  • WebProcess/WebPage/CoordinatedGraphics/CoordinatedLayerTreeHost.h:
  • WebProcess/WebPage/CoordinatedGraphics/WebPageCoordinatedGraphics.cpp: Removed.
  • WebProcess/WebPage/DrawingArea.cpp:

(WebKit::DrawingArea::create):

  • WebProcess/WebPage/DrawingArea.h:
  • WebProcess/WebPage/LayerTreeHost.cpp:

(WebKit::LayerTreeHost::create):

  • WebProcess/WebPage/LayerTreeHost.h:
  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::~WebPage):
(WebKit::WebPage::pageDidRequestScroll):
(WebKit::WebPage::didCompletePageTransition):
(WebKit::WebPage::didReceiveMessage):
(WebKit::WebPage::commitPageTransitionViewport): Deleted.

  • WebProcess/WebPage/WebPage.h:
  • WebProcess/WebPage/WebPage.messages.in:
2:30 AM Changeset in webkit [212607] by Carlos Garcia Campos
  • 2 edits in trunk/LayoutTests

Unreviewed GTK+ gardening. Update expectations of a few more tests that are failing.

  • platform/gtk/TestExpectations:
2:17 AM Changeset in webkit [212606] by Carlos Garcia Campos
  • 1 edit
    5 adds in trunk/LayoutTests

Unreviewed GTK+ gardening. Rebaseline imported/w3c/web-platform-tests/html/semantics/forms/textfieldselection/selection-not-application-textarea.html.

Selection is always directional for us.

  • platform/gtk/imported/w3c/web-platform-tests/html/semantics/forms/textfieldselection/selection-not-application-textarea-expected.txt: Added.
2:01 AM Changeset in webkit [212605] by Michael Catanzaro
  • 2 edits in trunk/Source/WebKit2

[GTK] Cannot paste primary selection into web view in Wayland
https://bugs.webkit.org/show_bug.cgi?id=166949

Reviewed by Carlos Garcia Campos.

Once upon a time, primary selection (middle-click paste) was not supported in Wayland. At
the time, I changed this function to report that primary selection was unsupported. But
nowadays, primary selection works fine in all GTK+ applications except WebKit. All we have
to do to make it work in WebKit is change this return value.

  • WebProcess/WebCoreSupport/WebEditorClient.cpp:

(WebKit::WebEditorClient::supportsGlobalSelection):

1:44 AM Changeset in webkit [212604] by Carlos Garcia Campos
  • 2 edits in trunk/LayoutTests

Unreviewed GTK+ gardening. Update expectations of several tests.

  • platform/gtk/TestExpectations:

Feb 17, 2017:

10:57 PM Changeset in webkit [212603] by Nikita Vasilyev
  • 2 edits in trunk/Source/WebInspectorUI

Web Inspector: Use Maps in FrameResourceManager instead of objects
https://bugs.webkit.org/show_bug.cgi?id=168549
<rdar://problem/30590110>

Reviewed by Joseph Pecoraro.

Use Map for _frameIdentifierMap and _resourceRequestIdentifierMap.

  • UserInterface/Controllers/FrameResourceManager.js:

(WebInspector.FrameResourceManager.prototype.initialize):
(WebInspector.FrameResourceManager.prototype.get frames):
(WebInspector.FrameResourceManager.prototype.frameForIdentifier):
(WebInspector.FrameResourceManager.prototype.frameDidDetach):
(WebInspector.FrameResourceManager.prototype.resourceRequestWillBeSent):
(WebInspector.FrameResourceManager.prototype.markResourceRequestAsServedFromMemoryCache):
(WebInspector.FrameResourceManager.prototype.resourceRequestWasServedFromMemoryCache):
(WebInspector.FrameResourceManager.prototype.resourceRequestDidReceiveResponse):
(WebInspector.FrameResourceManager.prototype.resourceRequestDidReceiveData):
(WebInspector.FrameResourceManager.prototype.resourceRequestDidFinishLoading):
(WebInspector.FrameResourceManager.prototype.resourceRequestDidFailLoading):
(WebInspector.FrameResourceManager.prototype._addNewResourceToFrameOrTarget):
(WebInspector.FrameResourceManager.prototype._processMainFrameResourceTreePayload):
(WebInspector.FrameResourceManager.prototype._createFrame):

10:41 PM Changeset in webkit [212602] by Simon Fraser
  • 3 edits in trunk/Source/WebCore

Allow properties in CSSProperties.json that don't trigger code generation
https://bugs.webkit.org/show_bug.cgi?id=168535

Reviewed by Sam Weinig.

In order to track the development of CSS properties that we have not yet implemented,
support '"skip-codegen" : true' in "codegen-properties".

Test by adding a few fill-related properties with this attribute.

  • css/CSSProperties.json:
  • css/makeprop.pl:

(isPropertyEnabled):
(addProperty):

5:13 PM Changeset in webkit [212601] by matthew_hanson@apple.com
  • 4 edits in branches/safari-603-branch/Source/WebCore

Merge r212554. rdar://problem/30339638

5:12 PM Changeset in webkit [212600] by matthew_hanson@apple.com
  • 4 edits
    2 adds in branches/safari-603-branch

Merge r212354. rdar://problem/30450371

5:12 PM Changeset in webkit [212599] by matthew_hanson@apple.com
  • 10 edits
    2 adds in branches/safari-603-branch

Merge r212265. rdar://problem/30231732

5:12 PM Changeset in webkit [212598] by matthew_hanson@apple.com
  • 5 edits
    6 adds in branches/safari-603-branch

Merge r212218. rdar://problem/30339793

4:40 PM Changeset in webkit [212597] by BJ Burg
  • 16 edits
    1 add in trunk/Source

Web Inspector: RTL: Inspector window should dock to the left when using RTL layout direction
https://bugs.webkit.org/show_bug.cgi?id=168273
<rdar://problem/29949325>

Reviewed by Matt Baker.

Add the ability to dock Web Inspector to the left of the inspected view.
The frontend decides whether the Dock to Side button docks left or right
based on the current layout direction.

Source/WebCore:

  • inspector/InspectorFrontendClient.h:
  • inspector/InspectorFrontendClientLocal.cpp:

(WebCore::InspectorFrontendClientLocal::setAttachedWindow):

  • inspector/InspectorFrontendHost.cpp:

(WebCore::InspectorFrontendHost::requestSetDockSide):

Source/WebInspectorUI:

  • Localizations/en.lproj/localizedStrings.js:
  • UserInterface/Base/Main.js:

(WebInspector.contentLoaded):
Rename the "Dock to Right" button to "Dock to Side" instead. It's easier to just
have one button than to try and conditionally hide one or the other based on
the layout direction. Change the dock callback and the icon used for the button
depending on layout direction.

(WebInspector.resolvedLayoutDirection):
Refactor getLayoutDirection() to resolvedLayoutDirection() so callers get back
either "ltr" or "rtl".

Flip the dock side if layout direction changes while docked to the side.

Adjust various code paths to account for the existing of left docking. In particular,
resize rejection needs special-casing for resizing leftward from beyond the right side
of the Inspector view when it is docked to the left. Improve related comments since it
took me an unbelievable amount of time to understand what this code is supposed to do.

  • UserInterface/Views/Main.css:

(body.docked.right):
(body.docked.left #docked-resizer):
(body.docked:matches(.right, .left) #navigation-sidebar.collapsed > .resizer):
(body.docked.right #navigation-sidebar.collapsed > .resizer): Deleted.
Add .docked.left analogues to rules for .docked.right.

Source/WebKit2:

  • UIProcess/WebInspectorProxy.cpp:

(WebKit::WebInspectorProxy::attachLeft):
(WebKit::WebInspectorProxy::attach):
(WebKit::WebInspectorProxy::createInspectorPage):

  • UIProcess/WebInspectorProxy.h:
  • UIProcess/WebInspectorProxy.messages.in:

Add plumbing for new dock configuration.

  • UIProcess/mac/WebInspectorProxyMac.mm:

(WebKit::WebInspectorProxy::platformCreateInspectorPage):
(WebKit::WebInspectorProxy::inspectedViewFrameDidChange):
(WebKit::WebInspectorProxy::platformAttach):
Adapt existing sizing logic to work for docking to left.

  • WebProcess/WebPage/WebInspectorUI.cpp:

(WebKit::WebInspectorUI::requestSetDockSide):
(WebKit::WebInspectorUI::setDockSide):

  • WebProcess/WebPage/WebInspectorUI.h:

(WebKit::WebInspectorUI::attachedLeft):

  • WebProcess/WebPage/WebInspectorUI.messages.in:

Add plumbing for new dock configuration.

4:28 PM Changeset in webkit [212596] by matthew_hanson@apple.com
  • 5 edits
    1 add in branches/safari-603-branch

Merge r212177. rdar://problem/30205880

4:10 PM Changeset in webkit [212595] by matthew_hanson@apple.com
  • 16 edits
    16 adds in branches/safari-603-branch

Merge r212035. rdar://problem/30433204

3:59 PM Changeset in webkit [212594] by matthew_hanson@apple.com
  • 3 edits in branches/safari-603-branch/Source/JavaScriptCore

Merge r212146. rdar://problem/28656664

3:52 PM Changeset in webkit [212593] by matthew_hanson@apple.com
  • 8 edits in branches/safari-603-branch/Source/WebKit2

Merge r212244. rdar://problem/23676252

3:52 PM Changeset in webkit [212592] by msaboff@apple.com
  • 3 edits in trunk/Source/JavaScriptCore

Improve ARM64 disassembler handling of pseudo ops, unsupported opcodes and zero reg
https://bugs.webkit.org/show_bug.cgi?id=168527

Reviewed by Filip Pizlo.

Added support for data processing 1 source instructions like rbit, rev, clz and cls.
Added support for the FP conditional select instruction, fcsel. Consolidated the
two classes for handling dmb instructions into one class. Fixed the instruction
selection mask in the integer conditional select class, A64DOpcodeConditionalSelect.
Fixed the processing of extract instruction (extr) including the rotate right (ror)
pseudo instruction. Changed the printing of x31 and w31 to xzr and wzr as operands
according to the spec. Added support for common pseudo instructions. This includes:

  • mvn x1, X2 in place of orn x1, xzr, x2
  • lsl x3, x4, #count in place of ubfiz x3, x4, #count, #count
  • smull x5, w6, w7 in place of smaddl x5, w6, w7, XZR
  • More understandable mov x8, #-304 in place of movn x8, #0x12f
  • Eliminated xzr from register index loads and stores, outputing ldr x10, [x11] instead of ldr x10, [x11, xzr]

Changed the move wide instructions to use hex literals for movz and movk.
This makes it much easier to decifer sequences of wide moves for large literals.

Before After

movz x17, #26136 movz x17, #0x6618
movk x17, #672, lsl #16 movk x17, #0x2a0, lsl #16
movk x17, #1, lsl #32 movk x17, #0x1, lsl #32

Verified that all instructions currently generated by the JSC stress tests are
disassembled.

  • disassembler/ARM64/A64DOpcode.cpp:

(JSC::ARM64Disassembler::A64DOpcodeBitfield::format):
(JSC::ARM64Disassembler::A64DOpcodeDataProcessing1Source::format):
(JSC::ARM64Disassembler::A64DOpcodeDataProcessing2Source::format):
(JSC::ARM64Disassembler::A64DOpcodeDataProcessing3Source::format):
(JSC::ARM64Disassembler::A64DOpcodeExtract::format):
(JSC::ARM64Disassembler::A64DOpcodeFloatingPointConditionalSelect::format):
(JSC::ARM64Disassembler::A64DOpcodeFloatingPointIntegerConversions::format):
(JSC::ARM64Disassembler::A64DOpcodeDmb::format):
(JSC::ARM64Disassembler::A64DOpcodeLoadStoreImmediate::format):
(JSC::ARM64Disassembler::A64DOpcodeLoadStoreRegisterOffset::format):
(JSC::ARM64Disassembler::A64DOpcodeLoadStoreRegisterPair::format):
(JSC::ARM64Disassembler::A64DOpcodeLoadStoreUnsignedImmediate::format):
(JSC::ARM64Disassembler::A64DOpcodeLogicalShiftedRegister::format):
(JSC::ARM64Disassembler::A64DOpcodeMoveWide::format):
(JSC::ARM64Disassembler::A64DOpcodeDmbIsh::format): Deleted.
(JSC::ARM64Disassembler::A64DOpcodeDmbIshSt::format): Deleted.

  • disassembler/ARM64/A64DOpcode.h:

(JSC::ARM64Disassembler::A64DOpcode::appendSignedImmediate64):
(JSC::ARM64Disassembler::A64DOpcode::appendUnsignedHexImmediate):
(JSC::ARM64Disassembler::A64DOpcodeDataProcessing1Source::opName):
(JSC::ARM64Disassembler::A64DOpcodeDataProcessing1Source::sBit):
(JSC::ARM64Disassembler::A64DOpcodeDataProcessing1Source::opCode):
(JSC::ARM64Disassembler::A64DOpcodeDataProcessing1Source::opCode2):
(JSC::ARM64Disassembler::A64DOpcodeDataProcessing1Source::opNameIndex):
(JSC::ARM64Disassembler::A64DOpcodeDataProcessing3Source::opName):
(JSC::ARM64Disassembler::A64DOpcodeFloatingPointConditionalSelect::opName):
(JSC::ARM64Disassembler::A64DOpcodeFloatingPointConditionalSelect::condition):
(JSC::ARM64Disassembler::A64DOpcodeDmb::option):
(JSC::ARM64Disassembler::A64DOpcodeDmb::crM):
(JSC::ARM64Disassembler::A64DOpcodeLogicalShiftedRegister::isMov):
(JSC::ARM64Disassembler::A64DOpcodeDmbIsh::opName): Deleted.
(JSC::ARM64Disassembler::A64DOpcodeDmbIshSt::opName): Deleted.

3:49 PM Changeset in webkit [212591] by aakash_jain@apple.com
  • 2 edits in trunk/Tools

Fix failure from r212579.

Unreviewed build-fix.

  • Scripts/webkitpy/tool/steps/checkpatchrelevance.py:

(CheckPatchRelevance._changes_are_relevant): Return true for all groups others than jsc for now.

3:41 PM Changeset in webkit [212590] by Simon Fraser
  • 27 edits
    4 adds in trunk

Allow PlatformCALayers to specify that they want deep color backing store
https://bugs.webkit.org/show_bug.cgi?id=168495

Reviewed by Tim Horton.
Source/WebCore:

Currently capable iOS devices get deep color backing store by virtue of a supports
check in PlatformCALayerCocoa::PlatformCALayerCocoa(), and LegacyTileGridTile.

Future work will make layer contents format selection more complex, so express the need
for deep color on PlatformCALayer, and have the creators of PlatformCALayer (mainly the
flavors of GraphicsLayerCA) choose for them to support deep color. A bit of special-casing
is needed to propagte the state to TileControllers.

The deep-colorness now propagates from PlatformCALayerRemote to RemoteLayerBackingStore,
instead of RemoteLayerBackingStore looking at the properties of the screen directly.

Remove PlatformCALayer::LayerTypeWebTiledLayer which was only used for the old CATiledLayers
that we no longer use.

An iphone7 test verifies that page tiles, normal layers and tiled layers get the deep
color state set on them.

Test: tiled-drawing/ios/iphone7/compositing-layers-deep-color.html

  • platform/graphics/ca/GraphicsLayerCA.cpp:

(WebCore::GraphicsLayerCA::createPlatformCALayer):
(WebCore::GraphicsLayerCA::dumpAdditionalProperties):

  • platform/graphics/ca/GraphicsLayerCA.h:
  • platform/graphics/ca/PlatformCALayer.cpp:

(WebCore::PlatformCALayer::canHaveBackingStore):
(WebCore::operator<<):

  • platform/graphics/ca/PlatformCALayer.h:
  • platform/graphics/ca/TileController.cpp:

(WebCore::TileController::setZoomedOutContentsScale):
(WebCore::TileController::setAcceleratesDrawing):
(WebCore::TileController::setWantsDeepColorBackingStore):
(WebCore::TileController::createTileLayer):

  • platform/graphics/ca/TileController.h:
  • platform/graphics/ca/TileGrid.cpp:

(WebCore::TileGrid::updateTileLayerProperties):

  • platform/graphics/ca/cocoa/PlatformCALayerCocoa.h:
  • platform/graphics/ca/cocoa/PlatformCALayerCocoa.mm:

(PlatformCALayerCocoa::PlatformCALayerCocoa):
(PlatformCALayerCocoa::commonInit):
(PlatformCALayerCocoa::wantsDeepColorBackingStore):
(PlatformCALayerCocoa::setWantsDeepColorBackingStore):
(layerContentsFormat):
(PlatformCALayerCocoa::updateContentsFormat):

  • platform/graphics/ca/cocoa/WebTiledBackingLayer.h:
  • platform/graphics/ca/cocoa/WebTiledBackingLayer.mm:

(-[WebTiledBackingLayer setWantsDeepColorBackingStore:]):
(-[WebTiledBackingLayer wantsDeepColorBackingStore]):

  • platform/graphics/ca/win/PlatformCALayerWin.cpp:

(PlatformCALayerWin::wantsDeepColorBackingStore):
(PlatformCALayerWin::setWantsDeepColorBackingStore):
(printLayer):

  • platform/graphics/ca/win/PlatformCALayerWin.h:
  • platform/spi/cocoa/QuartzCoreSPI.h:

Source/WebKit2:

Currently capable iOS devices get deep color backing store by virtue of a supports
check in PlatformCALayerCocoa::PlatformCALayerCocoa(), and LegacyTileGridTile.

Future work will make layer contents format selection more complex, so express the need
for deep color on PlatformCALayer, and have the creators of PlatformCALayer (mainly the
flavors of GraphicsLayerCA) choose for them to support deep color. A bit of special-casing
is needed to propagte the state to TileControllers.

The deep-colorness now propagates from PlatformCALayerRemote to RemoteLayerBackingStore,
instead of RemoteLayerBackingStore looking at the properties of the screen directly.

Remove PlatformCALayer::LayerTypeWebTiledLayer which was only used for the old CATiledLayers
that we no longer use.

  • Shared/mac/RemoteLayerBackingStore.h:
  • Shared/mac/RemoteLayerBackingStore.mm:

(WebKit::RemoteLayerBackingStore::ensureBackingStore):
(WebKit::RemoteLayerBackingStore::bytesPerPixel):
(WebKit::RemoteLayerBackingStore::swapToValidFrontBuffer):
(WebKit::RemoteLayerBackingStore::drawInContext):
(WebKit::RemoteLayerBackingStore::surfaceBufferFormat):
(WebKit::bufferFormat): Deleted.

  • WebProcess/WebPage/mac/GraphicsLayerCARemote.cpp:

(WebKit::GraphicsLayerCARemote::createPlatformCALayer):

  • WebProcess/WebPage/mac/GraphicsLayerCARemote.h:
  • WebProcess/WebPage/mac/PlatformCALayerRemote.cpp:

(WebKit::PlatformCALayerRemote::PlatformCALayerRemote):
(WebKit::PlatformCALayerRemote::updateBackingStore):
(WebKit::PlatformCALayerRemote::wantsDeepColorBackingStore):
(WebKit::PlatformCALayerRemote::setWantsDeepColorBackingStore):

  • WebProcess/WebPage/mac/PlatformCALayerRemote.h:
  • WebProcess/WebPage/mac/PlatformCALayerRemoteTiledBacking.cpp:

(WebKit::PlatformCALayerRemoteTiledBacking::wantsDeepColorBackingStore):
(WebKit::PlatformCALayerRemoteTiledBacking::setWantsDeepColorBackingStore):

  • WebProcess/WebPage/mac/PlatformCALayerRemoteTiledBacking.h:

LayoutTests:

  • platform/ios-simulator-wk2/TestExpectations:
  • platform/mac-wk2/TestExpectations:
  • tiled-drawing/ios/iphone7/compositing-layers-deep-color-expected.txt: Added.
  • tiled-drawing/ios/iphone7/compositing-layers-deep-color.html: Added.
3:39 PM Changeset in webkit [212589] by matthew_hanson@apple.com
  • 7 edits in branches/safari-603-branch

Roll out r211501 via r212488. rdar://problem/29904368

3:39 PM Changeset in webkit [212588] by matthew_hanson@apple.com
  • 2 edits in branches/safari-603-branch/LayoutTests

Roll out r212168 via r212498. rdar://problem/29904368

3:39 PM Changeset in webkit [212587] by matthew_hanson@apple.com
  • 41 edits in branches/safari-603-branch

Roll out r212173 via r212500. rdar://problem/29904368

3:39 PM Changeset in webkit [212586] by matthew_hanson@apple.com
  • 2 edits in branches/safari-603-branch/Source/WebCore

Roll out r212174 via r212501. rdar://problem/29904368

3:39 PM Changeset in webkit [212585] by matthew_hanson@apple.com
  • 2 edits in branches/safari-603-branch/Source/WebKit/win

Roll out r212175 via r212502. rdar://problem/29904368

3:39 PM Changeset in webkit [212584] by matthew_hanson@apple.com
  • 3 edits in branches/safari-603-branch/Source/JavaScriptCore

Revert "rdar://problem/30553220"

This reverts commit d49f396c122789d495a54a97f49787b0cd4308cd.

3:36 PM Changeset in webkit [212583] by matthew_hanson@apple.com
  • 5 edits in branches/safari-603-branch/Source

Versioning.

2:54 PM Changeset in webkit [212582] by BJ Burg
  • 4 edits in trunk/Source/WebInspectorUI

Web Inspector: RTL: add TabBar support for RTL layout
https://bugs.webkit.org/show_bug.cgi?id=168446

Reviewed by Matt Baker.

There are two types of changes needed:

  • Flip leading and trailing borders and margins for the tab items.
  • Enumerate tabs in reverse order when performing manual layout.

Along the way, I added some color variables local to TabBar.css to
reduce the number of redundant border-style and color declarations.

  • UserInterface/Base/Main.js:

Change this to resolvedLayoutDirection(), and resolve "System" to "ltr" or "rtl".
This makes it suitable for use in manual layout without worrying about "System".
Fix the one existing use-site to not do its own resolution of "System".

  • UserInterface/Views/TabBar.css:

Define commonly used colors and border styles and adopt var() usages.
Flip borders that should vary in RTL vs LTR, but not all of them. In
many cases, the border is not direction-dependent and looks the same
on both sides. Also, no need to swap animated properties as all manual
layout is done from the left edge.

(.tab-bar):
(body.window-inactive .tab-bar):
(.tab-bar > .top-border):
(body.window-inactive .tab-bar > .top-border):
(.tab-bar > .item):
(body[dir=ltr] .tab-bar > :nth-child(n + 2 of .item),):
(body[dir=rtl] .tab-bar > :nth-child(n + 2 of .item),):
(.tab-bar:not(.animating) > .item:not(.selected, .disabled):hover):
(body[dir=ltr] .tab-bar:not(.animating) > .item:not(.selected, .disabled):hover,):
(body[dir=rtl] .tab-bar:not(.animating) > .item:not(.selected, .disabled):hover,):
(body.window-inactive .tab-bar > .item):
(body[dir=ltr].window-inactive .tab-bar > .item):
(body[dir=rtl].window-inactive .tab-bar > .item):
(.tab-bar > .item > .close):
(body[dir=ltr] .tab-bar > .item > .close):
(body[dir=rtl] .tab-bar > .item > .close):
(.tab-bar > .item:not(.pinned) > .flex-space:last-child):
(body[dir=ltr] .tab-bar > .item:not(.pinned) > .flex-space:last-child):
(body[dir=rtl] .tab-bar > .item:not(.pinned) > .flex-space:last-child):
(.tab-bar > .item > .title):
(body[dir=ltr] .tab-bar > .item > .title):
(body[dir=rtl] .tab-bar > .item > .title):
(.tab-bar.collapsed > .item > .close):
(body[dir=ltr] .tab-bar.collapsed > .item > .close):
(body[dir=rtl] .tab-bar.collapsed > .item > .close):

  • UserInterface/Views/TabBar.js:

When doing manual layout, keep doing calculations with respect to the left edge
and keep the list of tab items in logical (LTR) order, as in the DOM. But, when
manually positioning tab items for RTL layout direction, reverse the tab items
so that it matches the screen/layout order of the flipped flexbox items.

(WebInspector.TabBar.prototype.insertTabBarItem):
(WebInspector.TabBar.prototype.removeTabBarItem.animateTabs):
In RTL, put extra space after closing a tab to the left of normal tabs. This
matches the behavior of LTR, but requires some additional measurement since we
still position tabs using left and can't simply infer the leftover space.

(WebInspector.TabBar.prototype._tabBarItemsFromLeftToRight): Added.
(WebInspector.TabBar.prototype._handleMouseMoved):
(WebInspector.TabBar.prototype._handleMouseUp):

2:51 PM Changeset in webkit [212581] by jer.noble@apple.com
  • 7 edits in trunk/Source/WebCore

Refactoring: Make sure to unprepare WebAudioSourceProviderAVFObjC when its owner is destroyed.
https://bugs.webkit.org/show_bug.cgi?id=168532

Reviewed by Youenn Fablet.

Because WebAudioSourceProviderAVFObjC has a back-pointer to the object which creted it, make
sure that back-pointer is invalidated once the creating object is destroyed by calling
WebAudioSOurceProviderAVFObjC::unprepare().

Drive-by Fix: In WebAudioSourceProviderAVFObjC::audioSamplesAvailable(), PlatformAudioData will
always be of the WebAudioBufferList type. If this ever becomes untrue, an invalid downcast will
be caught by downcast<>, so just remove the is<> check.

  • platform/mediastream/mac/AVAudioCaptureSource.mm:

(WebCore::AVAudioCaptureSource::~AVAudioCaptureSource):

  • platform/mediastream/mac/MockRealtimeAudioSourceMac.h:
  • platform/mediastream/mac/MockRealtimeAudioSourceMac.mm:

(WebCore::MockRealtimeAudioSourceMac::~MockRealtimeAudioSourceMac):

  • platform/mediastream/mac/RealtimeIncomingAudioSource.cpp:

(WebCore::RealtimeIncomingAudioSource::~RealtimeIncomingAudioSource):

  • platform/mediastream/mac/RealtimeIncomingAudioSource.h:
  • platform/mediastream/mac/WebAudioSourceProviderAVFObjC.mm:

(WebCore::WebAudioSourceProviderAVFObjC::~WebAudioSourceProviderAVFObjC):
(WebCore::WebAudioSourceProviderAVFObjC::setClient):
(WebCore::WebAudioSourceProviderAVFObjC::unprepare):
(WebCore::WebAudioSourceProviderAVFObjC::audioSamplesAvailable):

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

Web Inspector: Zoom level UI out of sync with setting value
https://bugs.webkit.org/show_bug.cgi?id=168522

Patch by Devin Rousso <Devin Rousso> on 2017-02-17
Reviewed by Brian Burg.

  • UserInterface/Views/SettingsTabContentView.js:

(WebInspector.SettingsTabContentView):
Trigger a layout whenever the zoomFactor setting is changed. This is needed since the
zoomFactor setting can also be modified by global keyboard shortcuts.

2:41 PM Changeset in webkit [212579] by commit-queue@webkit.org
  • 26 edits
    6 adds in trunk/Tools

EWS should run JavaScriptCore tests
https://bugs.webkit.org/show_bug.cgi?id=162458

Patch by Srinivasan Vijayaraghavan <svijayaraghavan@apple.com> on 2017-02-17
Reviewed by Alexey Proskuryakov.

  • QueueStatusServer/config/queues.py: Add jsc-ews queue.
  • QueueStatusServer/model/queuestatus.py:

(QueueStatus.did_skip): Returns whether patch was skipped, based on status.

  • QueueStatusServer/handlers/statusbubble.py:

(StatusBubble._should_show_bubble_for): Add logic to hide jsc-ews bubble if the patch does not touch jsc.

  • Scripts/webkitpy/common/checkout/scm/scm_mock.py:

(MockSCM.init): Add _mockChangedFiles variable.
(MockSCM.changed_files): Change to use _mockChangedFiles variables.

  • Scripts/webkitpy/common/config/ews.json: Add config info for JSC EWS.
  • Scripts/webkitpy/common/config/ports.py: Add support for JSC EWS in Mac Port.

(DeprecatedPort._append_build_style_flag): Helper function to append build_style to a command.
(DeprecatedPort.build_jsc_command): Added - command to build JSC only (quicker than building all of WebKit).
(DeprecatedPort.run_javascriptcore_tests_command): Allow JSC EWS to only run JSC tests.
(MacPort.run_webkit_tests_command): Check for JSC.

  • Scripts/webkitpy/common/config/ports_mock.py:

(MockPort.run_javascriptcore_tests_command): Add build_style argument.

  • Scripts/webkitpy/common/config/ports_unittest.py:

(DeprecatedPortTest.test_mac_port): Add unit tests for build-jsc shell command.

  • Scripts/webkitpy/common/net/abstracttestresults.py: Added.

(AbstractTestResults): Abstract superclass of JSCTestResults and JSCTestResults.
(AbstractTestResults.test_results): Stub.
(AbstractTestResults.failing_tests): Stub.
(AbstractTestResults.did_exceed_test_failure_limit): Stub.

  • Scripts/webkitpy/common/net/jsctestresults.py: Added.

(JSCTestResults): Added.
(JSCTestResults.intersection): Return a JSCTestResults object with failures common to both input objects.
(JSCTestResults.results_from_string): Use json library to parse results.
(JSCTestResults.init): Initialize members.
(JSCTestResults.equals): This enables unit testing.
(JSCTestResults.is_subset): Checks if one set of failures is a subset of another.
(JSCTestResults.all_passed): Getter.
(JSCTestResults.failing_tests): Getter.
(JSCTestResults.did_exceed_test_failure_limit): Getter.

  • Scripts/webkitpy/common/net/jsctestresults_unittest.py: Added.

(JSCTestResultsTest): Class to test JSCTestResults.
(JSCTestResultsTest.test_results_from_string): Tests parsing.
(JSCTestResultsTest.test_intersection_api_tests): Unit test for intersection() class method.
(JSCTestResultsTest.test_intersection_stress_tests): Unit test for intersection() class method.
(JSCTestResultsTest.test_intersection_general_case): Unit test for intersection() class method.

  • Scripts/webkitpy/port/base.py:

(Port.jsc_results_directory): Returns the directory for the JSC test results JSON file.

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

(EarlyWarningSystemTask.run): Add check_patch_relevance step.

  • Scripts/webkitpy/tool/bot/jscews_unittest.py: Added.

(MockPatchAnalysisTask): Mocked-out version of PatchAnalysisTask that doesn't run commands.
(MockPatchAnalysisTask.init): Sets attributes.
(MockPatchAnalysisTask._test): Override to not run command.
(MockPatchAnalysisTask._build_and_test_without_patch): Override to not run command.
(MockPatchAnalysisTask.validate): Assume mocked patch is valid for purposes of testing retry logic.
(MockPatchAnalysisTask.test_run_count): Specific to the mocked version, to test retry logic.
(MockJSCEarlyWarningSystem): Mocked-out version of AbstarctEarlyWarningSystem so we can provide test results.
(MockJSCEarlyWarningSystem.init): Sets attributes, also sets group to jsc.
(MockJSCEarlyWarningSystem.test_results): Returns test results provided by us, instead of using a JSON reader.
(JSCEarlyWarningSystemTest): Class to test retry logic in below situations.
(JSCEarlyWarningSystemTest._create_task): Helper function to abstract out common code.
(JSCEarlyWarningSystemTest._results_indicate_all_passed): False if input is None or has failures, else True.
(JSCEarlyWarningSystemTest.test_success_case): Clean patch on clean tree.
(JSCEarlyWarningSystemTest.test_test_failure): Failed patch on clean tree.
(JSCEarlyWarningSystemTest.test_fix): Patch that fixes all tree redness.
(JSCEarlyWarningSystemTest.test_ineffective_patch): Patch that has same failures as tree.
(JSCEarlyWarningSystemTest.test_partially_effective_patch): Patch fixes some failures but adds no new failures.
(JSCEarlyWarningSystemTest.test_different_test_failures_in_patch_and_tree): Patch has some failures not in tree.
(JSCEarlyWarningSystemTest.test_first_results_could_not_be_read): Patch results not readable.
(JSCEarlyWarningSystemTest.test_second_results_could_not_be_read): Patch results not readable on second run.
(JSCEarlyWarningSystemTest.test_clean_results_could_not_be_read): Results from clean tree not readable.
(JSCEarlyWarningSystemTest.test_flaky_results_on_clean_tree_pass): Patch has one flake and no failures.
(JSCEarlyWarningSystemTest.test_flaky_results_on_clean_tree_pass_v2): Patch has one flake and no failures.
(JSCEarlyWarningSystemTest.test_flaky_results_on_clean_tree_failure): Patch has flakes and failed tests.
(JSCEarlyWarningSystemTest.test_flaky_results_on_red_tree_pass): Patch has same failures as tree, plus a flake.

  • Scripts/webkitpy/tool/bot/jsctestresultsreader.py: Added.

(JSCTestResultsReader): Reads results file.
(JSCTestResultsReader.init): Sets attributes.
(JSCTestResultsReader._read_file_contents): Reads file.
(JSCTestResultsReader.results): Reads the results file and returns a JSCTestResults object.

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

(PatchIsNotApplicable): Exception for when patch doesn't have relevant changes.
(PatchAnalysisTask._check_patch_relevance): Added.
(PatchAnalysisTask._build): Check for JSC.
(PatchAnalysisTask._build_without_patch): Check for JSC.
(PatchAnalysisTask._test): Check for JSC.
(PatchAnalysisTask._build_and_test_without_patch): Check for JSC.
(PatchAnalysisTask._retry_jsc_tests): Retry logic for JSC EWS.
(PatchAnalysisTask._retry_layout_tests): Retry logic for layout tests EWS.
(PatchAnalysisTask._test_patch): Add retry logic for JSC.

  • Scripts/webkitpy/tool/commands/download.py:

(CheckPatchRelevance): Add check-patch-relevance command.

  • Scripts/webkitpy/tool/commands/earlywarningsystem.py:

(AbstractEarlyWarningSystem._create_task): Abstract out to enable mocking.
(AbstractEarlyWarningSystem.begin_work_queue): Use JSCTestResultsReader not LayoutTestResultsReader in JSC EWS.
(AbstractEarlyWarningSystem.review_patch): Handle PatchIsApplicable.
(AbstractEarlyWarningSystem.test_results): _layout_test_results_reader -> _test_results_reader.
(AbstractEarlyWarningSystem.archive_last_test_results): _layout_test_results_reader -> _test_results_reader.
(AbstractEarlyWarningSystem.group): This attribute determines the type of EWS (eg. JSC).
(AbstractEarlyWarningSystem.load_ews_classes): Add _group, and make classes of type cls to enable mocking.

  • Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:

(TestEWS): Sample layout test EWS class used for unit testing.
(TestJSCEWS): Sample JSC EWS class used for unit testing.
(AbstractEarlyWarningSystemTest.test_failing_tests_message.TestEWS): Add _group.
(AbstractEarlyWarningSystemTest.test_failing_jsc_tests_message.TestEWS): Added test for jsc failures message.
(AbstractEarlyWarningSystemTest): Add _group variable.
(EarlyWarningSystemTest._default_expected_logs): Add check-patch-relevance step, inconclusive logs, and group.
(EarlyWarningSystemTest._test_ews): Add logs_are_conclusive option to pass through to default_expected_logs().
(EarlyWarningSystemTest.test_inconclusive_test_results): Test not removing patch from queue if not conclusive.
(MockAbstractEarlyWarningSystemForInconclusiveJSCResults): Added.
(MockAbstractEarlyWarningSystemForInconclusiveJSCResults._test_patch): Simulates running tests but not getting a conclusive result.
(MockEarlyWarningSystemTaskForInconclusiveJSCResults): Added.
(MockEarlyWarningSystemTaskForInconclusiveJSCResults._create_task): Use MockEarlyWarningSystemTask (not EarlyWarningSystemTask).

  • Scripts/webkitpy/tool/steps/init.py: Add CheckPatchRelevance import.
  • Scripts/webkitpy/tool/steps/build.py:

(Build.options): Check for JSC.
(Build.build): Check for JSC.
(Build.run): Check for JSC.

  • Scripts/webkitpy/tool/steps/checkpatchrelevance.py: Added.

(CheckPatchRelevance): Added.
(CheckPatchRelevance._does_contain_change_in_paths): Abstract function to perform regex matching.
(CheckPatchRelevance.run): Check if changed files in patch belong in certain folders.

  • Scripts/webkitpy/tool/steps/options.py:

(Options): Add --group command line option.

  • Scripts/webkitpy/tool/steps/runtests.py:

(RunTests.options): Add group.
(RunTests.run): Check for JSC.
(RunTests._run_webkit_tests): Check for JSC.
(RunTests): Add _group attribute.
(RunTests._run_javascriptcore_tests): New.

  • Scripts/webkitpy/tool/steps/steps_unittest.py: Unit tests.
2:39 PM Changeset in webkit [212578] by BJ Burg
  • 2 edits in trunk/Source/WebInspectorUI

Web Inspector: Loc: Zoom level in Settings tab needs to use localized formatting
https://bugs.webkit.org/show_bug.cgi?id=168465

Reviewed by Matt Baker.

  • UserInterface/Views/SettingsTabContentView.js:

(WebInspector.SettingsTabContentView.prototype.layout):
(WebInspector.SettingsTabContentView):

2:20 PM Changeset in webkit [212577] by BJ Burg
  • 2 edits in trunk/Source/WebInspectorUI

Web Inspector: RTL: CodeMirror text editor instances have scrollbars on left and right
https://bugs.webkit.org/show_bug.cgi?id=168274

Reviewed by Matt Baker.

CodeMirror doesn't draw its own scrollbar correctly when content is in RTL,
so it draws an extra scrollbar on the right side. And, for the majority of
cases, we don't want to view CSS / JS content aligned to the right.

Manually set the "dir" attribute for all CodeMirror editor instances to "ltr".
Clients can override this if custom RTL layout is available in a particular case.

  • UserInterface/Views/CodeMirrorEditor.js:

(WebInspector.CodeMirrorEditor.create):
(WebInspector.CodeMirrorEditor):

1:57 PM Changeset in webkit [212576] by Ryan Haddad
  • 2 edits in branches/safari-603-branch/LayoutTests

Fix expected.txt file for tiled-drawing/tiled-backing-in-window.html.

Unreviewed test gardening.

  • tiled-drawing/tiled-backing-in-window-expected.txt:
1:48 PM Changeset in webkit [212575] by graouts@webkit.org
  • 8 edits
    2 adds in trunk

[Modern Media Controls] Improve handling of <video> with only audio tracks
https://bugs.webkit.org/show_bug.cgi?id=167836
<rdar://problem/30255812>

Reviewed by Dean Jackson.

Source/WebCore:

We now check for the availability of video tracks before considering a <video>
element is displaying an actual video file and turning auto-hide on. We also
check that we have video tracks before enabling the fullscreen button. This
brings the behavior of a <video> pointing to a resource with no video tracks
to be the same as an <audio> element.

Test: media/modern-media-controls/media-controller/media-controller-video-with-only-audio.html

  • Modules/modern-media-controls/media/controls-visibility-support.js:

(ControlsVisibilitySupport.prototype.get tracksToMonitor):
(ControlsVisibilitySupport.prototype._updateControls):
(ControlsVisibilitySupport):

  • Modules/modern-media-controls/media/fullscreen-support.js:

(FullscreenSupport.prototype.syncControl):
(FullscreenSupport):

LayoutTests:

Add a new test to check that a <video> with a resource that only has audio tracks
does not auto-hide nor show the fullscreen button. We also rebaseline a few existing
tests for this change of behavior.

  • media/modern-media-controls/controls-visibility-support/controls-visibility-support-controls-on-expected.txt:
  • media/modern-media-controls/controls-visibility-support/controls-visibility-support-controls-on.html:
  • media/modern-media-controls/controls-visibility-support/controls-visibility-support-controls-toggle-expected.txt:
  • media/modern-media-controls/controls-visibility-support/controls-visibility-support-controls-toggle.html:
  • media/modern-media-controls/media-controller/media-controller-video-with-only-audio-expected.txt: Added.
  • media/modern-media-controls/media-controller/media-controller-video-with-only-audio.html: Added.
1:43 PM Changeset in webkit [212574] by Wenson Hsieh
  • 4 edits in trunk/Source/WebKit2

[WK2] Action sheet should not dismiss when a DDAction with user interface is being presented
https://bugs.webkit.org/show_bug.cgi?id=168528
<rdar://problem/30515324>

Reviewed by Beth Dakin.

After r211643, -[WKActionSheet doneWithSheet] now dismisses the presenting view controller. This is called when
interaction with the sheet is finished and is a reasonable thing to do in most cases. However, when using data
detectors, we don't want to dismiss the presenting view controller, since DataDetector handles dismissing on its
own and expects that its completion handler will be invoked.

To fix this, we add a parameter to doneWithSheet: to indicate whether or not we should additionally dismiss the
presenting view controller, and pass in NO in the case where we are handing control over to DataDetector.

  • UIProcess/ios/WKActionSheet.h:
  • UIProcess/ios/WKActionSheet.mm:

(-[WKActionSheet doneWithSheet:]):
(-[WKActionSheet doneWithSheet]): Deleted.

  • UIProcess/ios/WKActionSheetAssistant.mm:

(-[WKActionSheetAssistant showDataDetectorsSheet]):
(-[WKActionSheetAssistant cleanupSheet]):

1:40 PM Changeset in webkit [212573] by graouts@webkit.org
  • 10 edits
    6 adds in trunk

[Modern Media Controls] Toggle playback when clicking on the video on macOS
https://bugs.webkit.org/show_bug.cgi?id=168515
<rdar://problem/30577441>

Reviewed by Dean Jackson.

Source/WebCore:

Listen to click events on the macOS media controls. Detect any clicks that were on the
background instead of the controls widgets themselves, and tell the delegate (MediaController)
about them.

Tests: media/modern-media-controls/media-controller/media-controller-click-on-video-background-should-pause.html

media/modern-media-controls/media-controller/media-controller-click-on-video-background-to-dismiss-tracks-panel-should-not-toggle-playback.html
media/modern-media-controls/media-controller/media-controller-click-on-video-controls-should-not-pause.html

  • Modules/modern-media-controls/controls/macos-fullscreen-media-controls.js:

(MacOSFullscreenMediaControls.prototype._handleMousedown):

  • Modules/modern-media-controls/controls/macos-inline-media-controls.js:

(MacOSInlineMediaControls.prototype.handleEvent):

  • Modules/modern-media-controls/controls/macos-media-controls.js:

(MacOSMediaControls.prototype.handleEvent):
(MacOSMediaControls):

  • Modules/modern-media-controls/media/media-controller.js:

(MediaController.prototype.togglePlayback):
(MediaController.prototype.macOSControlsBackgroundWasClicked):
(MediaController.prototype._updateControlsIfNeeded):

  • Modules/modern-media-controls/media/playback-support.js:

(PlaybackSupport.prototype.buttonWasPressed):

LayoutTests:

  • media/modern-media-controls/media-controller/media-controller-click-on-video-background-should-pause-expected.txt: Added.
  • media/modern-media-controls/media-controller/media-controller-click-on-video-background-should-pause.html: Added.
  • media/modern-media-controls/media-controller/media-controller-click-on-video-background-to-dismiss-tracks-panel-should-not-toggle-playback-expected.txt: Added.
  • media/modern-media-controls/media-controller/media-controller-click-on-video-background-to-dismiss-tracks-panel-should-not-toggle-playback.html: Added.
  • media/modern-media-controls/media-controller/media-controller-click-on-video-controls-should-not-pause-expected.txt: Added.
  • media/modern-media-controls/media-controller/media-controller-click-on-video-controls-should-not-pause.html: Added.
  • media/modern-media-controls/media-documents/click-on-video-should-not-pause-expected.txt:
  • media/modern-media-controls/media-documents/click-on-video-should-not-pause.html:
  • platform/ios-simulator/TestExpectations:
1:33 PM Changeset in webkit [212572] by jer.noble@apple.com
  • 14 edits
    2 deletes in trunk/Source/WebCore

Refactoring: Remove AudioSourceObserverObjC and AudioCaptureSourceProviderObjC
https://bugs.webkit.org/show_bug.cgi?id=168520

Reviewed by Youenn Fablet.

Having AudioCaptureSourceProviderObjC as the type provided to WebAudioSourceProviderAVFObjC
(and only ever to WebAudioSourceProviderAVFObjC) makes it impossible for that class to add
an observer on RealtimeMediaSource, of which all classes inheriting from
WebAudioSourceProviderAVFObjC are subclasses. There is no need to treat
WebAudioSourceProviderAVFObjC as an "observer", since the only thing it will ever observe is
the object which created it and hold an explicit reference to it. So replace all instances
of the "observer" pattern with direct calls to the necessary (newly non-virtual) methods.
This allows WebAudioSourceProviderAVFObjC to register as an observer directly on
RealtimeMediaSource, to listen for audioSamplesAvailable() instead of process(), and remove
a lot of unnecessary conversion code and observer duplication.

  • WebCore.xcodeproj/project.pbxproj:
  • platform/mediastream/RealtimeMediaSource.h:

(WebCore::RealtimeMediaSource::Observer::sourceStopped):
(WebCore::RealtimeMediaSource::Observer::sourceMutedChanged):
(WebCore::RealtimeMediaSource::Observer::sourceEnabledChanged):
(WebCore::RealtimeMediaSource::Observer::sourceSettingsChanged):
(WebCore::RealtimeMediaSource::Observer::preventSourceFromStopping):

  • platform/mediastream/mac/AVAudioCaptureSource.h:
  • platform/mediastream/mac/AVAudioCaptureSource.mm:

(WebCore::AVAudioCaptureSource::shutdownCaptureSession):
(WebCore::AVAudioCaptureSource::captureOutputDidOutputSampleBufferFromConnection):
(WebCore::AVAudioCaptureSource::addObserver): Deleted.
(WebCore::AVAudioCaptureSource::removeObserver): Deleted.
(WebCore::AVAudioCaptureSource::start): Deleted.

  • platform/mediastream/mac/AudioCaptureSourceProviderObjC.h: Removed.
  • platform/mediastream/mac/AudioSourceObserverObjC.h: Removed.
  • platform/mediastream/mac/AudioTrackPrivateMediaStreamCocoa.h:
  • platform/mediastream/mac/MockRealtimeAudioSourceMac.h:
  • platform/mediastream/mac/MockRealtimeAudioSourceMac.mm:

(WebCore::MockRealtimeAudioSourceMac::emitSampleBuffers):
(WebCore::MockRealtimeAudioSourceMac::reconfigure):
(WebCore::MockRealtimeAudioSourceMac::audioSourceProvider):
(WebCore::MockRealtimeAudioSourceMac::addObserver): Deleted.
(WebCore::MockRealtimeAudioSourceMac::removeObserver): Deleted.
(WebCore::MockRealtimeAudioSourceMac::start): Deleted.

  • platform/mediastream/mac/RealtimeIncomingAudioSource.cpp:

(WebCore::RealtimeIncomingAudioSource::audioSourceProvider):
(WebCore::RealtimeIncomingAudioSource::addObserver): Deleted.
(WebCore::RealtimeIncomingAudioSource::removeObserver): Deleted.
(WebCore::RealtimeIncomingAudioSource::start): Deleted.

  • platform/mediastream/mac/RealtimeIncomingAudioSource.h:
  • platform/mediastream/mac/RealtimeOutgoingAudioSource.h:
  • platform/mediastream/mac/RealtimeOutgoingVideoSource.h:
  • platform/mediastream/mac/WebAudioSourceProviderAVFObjC.h:
  • platform/mediastream/mac/WebAudioSourceProviderAVFObjC.mm:

(WebCore::WebAudioSourceProviderAVFObjC::create):
(WebCore::WebAudioSourceProviderAVFObjC::WebAudioSourceProviderAVFObjC):
(WebCore::WebAudioSourceProviderAVFObjC::setClient):
(WebCore::WebAudioSourceProviderAVFObjC::audioSamplesAvailable):
(WebCore::WebAudioSourceProviderAVFObjC::process): Deleted.

1:32 PM Changeset in webkit [212571] by graouts@webkit.org
  • 5 edits in trunk

REGRESSION: Subtitles menu in media controls allows multiple items to be selected
https://bugs.webkit.org/show_bug.cgi?id=168168
<rdar://problem/30488605>

Reviewed by Dean Jackson.

Source/WebCore:

Ensure that only a single audio track and a single text track can be selected
in the tracks panel at any given point.

  • Modules/modern-media-controls/media/tracks-support.js:

(TracksSupport.prototype.tracksPanelSelectionDidChange):
(TracksSupport.prototype._sortedTrackList):
(TracksSupport):

LayoutTests:

Enhance the interactive track selection test to select a second track and check
that only a single track is selected at once.

  • media/modern-media-controls/tracks-support/tracks-support-click-track-in-panel-expected.txt:
  • media/modern-media-controls/tracks-support/tracks-support-click-track-in-panel.html:
1:30 PM Changeset in webkit [212570] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebInspectorUI

Web Inspector: Timeline DataGridNodes are lacking detail in title
https://bugs.webkit.org/show_bug.cgi?id=168529
<rdar://problem/30579959>

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2017-02-17
Reviewed by Brian Burg.

  • UserInterface/Views/TimelineDataGridNode.js:

(WebInspector.TimelineDataGridNode.prototype.displayName):
Include detailed information for DataGridNode display names, since we
want to show maximum detail for records in the DataGrid.

1:18 PM Changeset in webkit [212569] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Update TestExpectations for fast/css/appearance-apple-pay-button.html.

Unreviewed test gardening.

1:06 PM Changeset in webkit [212568] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

Invalidate WebAVSampleBufferStatusChangeListener when MediaPlayerPrivateMediaStreamAVFObjC is deallocated.
https://bugs.webkit.org/show_bug.cgi?id=168488

Patch by Jeremy Jones <jeremyj@apple.com> on 2017-02-17
Reviewed by Jer Noble.

Fixes periodically crashing test: fast/mediastream/MediaStream-video-element-track-stop.html

WebAVSampleBufferStatusChangeListener has an unretained referecne to MediaPlayerPrivateMediaStreamAVFObjC
that must be invaldated when MediaPlayerPrivateMediaStreamAVFObjC is deallocated.

  • platform/graphics/avfoundation/objc/MediaPlayerPrivateMediaStreamAVFObjC.mm:

(WebCore::MediaPlayerPrivateMediaStreamAVFObjC::~MediaPlayerPrivateMediaStreamAVFObjC):

12:54 PM Changeset in webkit [212567] by matthew_hanson@apple.com
  • 5 edits in branches/safari-603-branch/Source

Versioning.

12:54 PM Changeset in webkit [212566] by matthew_hanson@apple.com
  • 3 edits in branches/safari-603-branch/Source/JavaScriptCore

rdar://problem/30553220

12:38 PM Changeset in webkit [212565] by matthew_hanson@apple.com
  • 1 copy in tags/Safari-603.1.30

Tag Safari-603.1.30.

12:37 PM Changeset in webkit [212564] by commit-queue@webkit.org
  • 16 edits
    1 copy
    1 add in trunk

[Modern Media Controls] Improve handling of live broadcast video
https://bugs.webkit.org/show_bug.cgi?id=168506
<rdar://problem/30432094>

Patch by Antoine Quint <Antoine Quint> on 2017-02-17
Reviewed by Dean Jackson.

Source/WebCore:

We improve the handling of live broadcast video by:

  • checking that we have a media source before deciding to show the controls bar and start button
  • support a mode where neither the status text nor the scrubber is visible in case we're still waiting on sufficient data to determine the video time and we haven't really started loading data yet
  • not showing time labels when we have an infinite duration
  • ensuring the status label is left-aligned

Test: media/modern-media-controls/status-label/status-label-text-align.html

  • Modules/modern-media-controls/controls/macos-inline-media-controls.js:

(MacOSInlineMediaControls.prototype.layout):

  • Modules/modern-media-controls/controls/status-label.css:

(.status-label):

  • Modules/modern-media-controls/controls/status-label.js:

(StatusLabel.prototype.get enabled):
(StatusLabel.prototype.set enabled):

  • Modules/modern-media-controls/media/controls-visibility-support.js:

(ControlsVisibilitySupport.prototype._updateControls):
(ControlsVisibilitySupport):

  • Modules/modern-media-controls/media/status-support.js:

(StatusSupport.prototype.syncControl):
(StatusSupport):

  • Modules/modern-media-controls/media/time-labels-support.js:

(TimeLabelsSupport.prototype.syncControl):
(TimeLabelsSupport):

LayoutTests:

Rebase existing tests to match new, correct behavior and add a new test to explicitly
check the text-align property on the status label.

  • media/modern-media-controls/controls-visibility-support/controls-visibility-support-controls-on-audio-expected.txt:
  • media/modern-media-controls/controls-visibility-support/controls-visibility-support-controls-on-audio.html:
  • media/modern-media-controls/ios-inline-media-controls/ios-inline-media-controls-audio-background-expected.txt:
  • media/modern-media-controls/ios-inline-media-controls/ios-inline-media-controls-audio-background.html:
  • media/modern-media-controls/macos-inline-media-controls/macos-inline-media-controls-status-label-expected.txt:
  • media/modern-media-controls/macos-inline-media-controls/macos-inline-media-controls-status-label.html:
  • media/modern-media-controls/status-label/status-label-font.html:
  • media/modern-media-controls/status-label/status-label-text-align-expected.txt: Added.
  • media/modern-media-controls/status-label/status-label-text-align.html: Added.
  • media/modern-media-controls/status-label/status-label-text-selection.html:
12:02 PM Changeset in webkit [212563] by andersca@apple.com
  • 3 edits
    5 adds in trunk/Source/WebCore

Begin overhauling the pasteboard implementation
https://bugs.webkit.org/show_bug.cgi?id=168525

Reviewed by Tim Horton.

Add a new PasteboardWriterData object. This object will hold data that is going
to be written to the pasteboard at some point. Currently it only supports plain text.

Also add a Mac-only PasteboardWriter class which can convert a PasteboardWriterDataObject
into an object that conforms to NSPasteboardWriting.

The basic idea is that instead of doing a bunch of pasteboard operations,
we'll just package all the pasteboard data up into an object and ship it over to WebKit.

This code is currently unused but will be adopted by a new drag implementation (in an upcoming patch).

  • WebCore.xcodeproj/project.pbxproj:
  • platform/PasteboardWriterData.cpp: Added.

(WebCore::PasteboardWriterData::PasteboardWriterData):
(WebCore::PasteboardWriterData::~PasteboardWriterData):
(WebCore::PasteboardWriterData::isEmpty):
(WebCore::PasteboardWriterData::setPlainText):

  • platform/PasteboardWriterData.h: Added.
  • platform/mac/PasteboardWriter.h: Added.
  • platform/mac/PasteboardWriter.mm: Added.

(WebCore::createPasteboardWriting):

  • platform/spi/mac/NSPasteboardSPI.h: Added.
11:34 AM Changeset in webkit [212562] by pvollan@apple.com
  • 25 edits
    8 adds in trunk

Apply SVG styles paint-order, stroke-linejoin, and stroke-linecap on DOM text.
https://bugs.webkit.org/show_bug.cgi?id=168044
Source/WebCore:

rdar://problem/30165746

Reviewed by Simon Fraser.

This patch moves these styles out of svg, and sets the properties on video cues.

Tests: fast/css/parsing-paint-order.html

fast/css/parsing-stroke-linecap.html
fast/css/parsing-stroke-linejoin.html
fast/css/parsing-stroke-width.html

  • css/CSSComputedStyleDeclaration.cpp:

(WebCore::paintOrder):
(WebCore::ComputedStyleExtractor::propertyValue):

  • css/CSSProperties.json:
  • css/SVGCSSComputedStyleDeclaration.cpp:

(WebCore::ComputedStyleExtractor::svgPropertyValue):
(WebCore::paintOrder): Deleted.

  • css/StyleResolver.cpp:

(WebCore::StyleResolver::isValidCueStyleProperty):

  • page/CaptionUserPreferencesMediaAF.cpp:

(WebCore::CaptionUserPreferencesMediaAF::cssPropertyWithTextEdgeColor):

  • rendering/style/RenderStyle.cpp:

(WebCore::RenderStyle::diff):
(WebCore::RenderStyle::paintTypesForPaintOrder):

  • rendering/style/RenderStyle.h:

(WebCore::RenderStyle::setPaintOrder):
(WebCore::RenderStyle::paintOrder):
(WebCore::RenderStyle::initialPaintOrder):
(WebCore::RenderStyle::setCapStyle):
(WebCore::RenderStyle::capStyle):
(WebCore::RenderStyle::initialCapStyle):
(WebCore::RenderStyle::setJoinStyle):
(WebCore::RenderStyle::joinStyle):
(WebCore::RenderStyle::initialJoinStyle):
(WebCore::RenderStyle::strokeWidth):
(WebCore::RenderStyle::setStrokeWidth):
(WebCore::RenderStyle::hasVisibleStroke):
(WebCore::RenderStyle::setStrokeOpacity):

  • rendering/style/SVGRenderStyle.cpp:

(WebCore::SVGRenderStyle::diff):
(WebCore::SVGRenderStyle::paintTypesForPaintOrder): Deleted.

  • rendering/style/SVGRenderStyle.h:

(WebCore::SVGRenderStyle::initialBufferedRendering):
(WebCore::SVGRenderStyle::initialFillRule):
(WebCore::SVGRenderStyle::initialMaskType):
(WebCore::SVGRenderStyle::setBufferedRendering):
(WebCore::SVGRenderStyle::setFillRule):
(WebCore::SVGRenderStyle::setMaskType):
(WebCore::SVGRenderStyle::bufferedRendering):
(WebCore::SVGRenderStyle::fillRule):
(WebCore::SVGRenderStyle::strokeMiterLimit):
(WebCore::SVGRenderStyle::maskType):
(WebCore::SVGRenderStyle::hasStroke):
(WebCore::SVGRenderStyle::setBitDefaults):
(WebCore::SVGRenderStyle::InheritedFlags::operator==):
(WebCore::SVGRenderStyle::initialCapStyle): Deleted.
(WebCore::SVGRenderStyle::initialJoinStyle): Deleted.
(WebCore::SVGRenderStyle::initialPaintOrder): Deleted.
(WebCore::SVGRenderStyle::setCapStyle): Deleted.
(WebCore::SVGRenderStyle::setJoinStyle): Deleted.
(WebCore::SVGRenderStyle::setPaintOrder): Deleted.
(WebCore::SVGRenderStyle::capStyle): Deleted.
(WebCore::SVGRenderStyle::joinStyle): Deleted.
(WebCore::SVGRenderStyle::strokeWidth): Deleted.
(WebCore::SVGRenderStyle::paintOrder): Deleted.
(WebCore::SVGRenderStyle::hasVisibleStroke): Deleted.
(WebCore::SVGRenderStyle::setStrokeWidth): Deleted.

  • rendering/style/SVGRenderStyleDefs.cpp:

(WebCore::StyleStrokeData::StyleStrokeData):
(WebCore::StyleStrokeData::operator==):

  • rendering/style/SVGRenderStyleDefs.h:
  • rendering/style/StyleRareInheritedData.cpp:

(WebCore::StyleRareInheritedData::StyleRareInheritedData):
(WebCore::StyleRareInheritedData::operator==):

  • rendering/style/StyleRareInheritedData.h:
  • rendering/svg/RenderSVGEllipse.cpp:

(WebCore::RenderSVGEllipse::strokeShape):

  • rendering/svg/RenderSVGPath.cpp:

(WebCore::RenderSVGPath::strokeShape):
(WebCore::RenderSVGPath::shapeDependentStrokeContains):
(WebCore::RenderSVGPath::shouldStrokeZeroLengthSubpath):
(WebCore::RenderSVGPath::zeroLengthLinecapPath):

  • rendering/svg/RenderSVGRect.cpp:

(WebCore::RenderSVGRect::strokeShape):

  • rendering/svg/RenderSVGShape.cpp:

(WebCore::RenderSVGShape::strokeShape):
(WebCore::RenderSVGShape::fillStrokeMarkers):
(WebCore::RenderSVGShape::strokeWidth):
(WebCore::RenderSVGShape::hasSmoothStroke):

  • rendering/svg/RenderSVGText.cpp:

(WebCore::RenderSVGText::strokeBoundingBox):

  • rendering/svg/SVGInlineTextBox.cpp:

(WebCore::SVGInlineTextBox::paint):
(WebCore::SVGInlineTextBox::paintDecoration):

  • rendering/svg/SVGRenderSupport.cpp:

(WebCore::SVGRenderSupport::applyStrokeStyleToContext):

  • rendering/svg/SVGRenderTreeAsText.cpp:

(WebCore::writeStyle):

LayoutTests:

Reviewed by Simon Fraser.

  • fast/css/parsing-paint-order-expected.txt: Added.
  • fast/css/parsing-paint-order.html: Added.
  • fast/css/parsing-stroke-linecap-expected.txt: Added.
  • fast/css/parsing-stroke-linecap.html: Added.
  • fast/css/parsing-stroke-linejoin-expected.txt: Added.
  • fast/css/parsing-stroke-linejoin.html: Added.
  • fast/css/parsing-stroke-width-expected.txt: Added.
  • fast/css/parsing-stroke-width.html: Added.
  • media/track/track-css-stroke-cues-expected.txt:
  • media/track/track-css-stroke-cues.html:
11:13 AM Changeset in webkit [212561] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

[SOUP] Handle Settings::allowsAnySSLCertificate() in SSL sockets
https://bugs.webkit.org/show_bug.cgi?id=168521

Patch by Carlos Garcia Campos <cgarcia@igalia.com> on 2017-02-17
Reviewed by Michael Catanzaro.

When Settings::allowsAnySSLCertificate() is enabled, connect to accept-certificate signal of the GTlsConnection
to always accept the certificates.

Fixes: http/tests/websocket/tests/hybi/simple-wss.html

  • platform/network/soup/SocketStreamHandleImplSoup.cpp:

(WebCore::wssConnectionAcceptCertificateCallback):
(WebCore::wssSocketClientEventCallback):
(WebCore::SocketStreamHandleImpl::create):

11:13 AM Changeset in webkit [212560] by achristensen@apple.com
  • 2 edits in trunk/Source/ThirdParty/libwebrtc

Fix iOS ASAN build after r212401
https://bugs.webkit.org/show_bug.cgi?id=168398

  • libwebrtc.xcodeproj/project.pbxproj:

libwebrtc.dylib needs some symbols from CFNetwork,
like CFNetworkCopySystemProxySettings

11:11 AM Changeset in webkit [212559] by Simon Fraser
  • 10 edits
    3 copies
    1 add in trunk

Fixed elements bounce when rubber-banding at the bottom of the page
https://bugs.webkit.org/show_bug.cgi?id=168493
rdar://problem/30567713

Reviewed by Tim Horton.

Source/WebCore:

FrameView::visibleDocumentRect() was computing a bad visible rect when bottom-rubber-banding,
by adding rubberBandBottom which is negative, rather than subtracting.

Log some more scrolling stuff.

Ironically, the existing test didn't test stick-to-viewport fixed position because
backgroundShouldExtendBeyondPage() is off by default in WTR, so clone it to a test
that sets this, to test both behaviors.

This also revealed that dynamic changes to backgroundShouldExtendBeyondPage() need
to be propagated to the scrolling tree, which is fixed in AsyncScrollingCoordinator::frameViewLayoutUpdated().

Test: fast/visual-viewport/rubberbanding-viewport-rects-extended-background.html

  • page/FrameView.cpp:

(WebCore::FrameView::updateLayoutViewport):
(WebCore::FrameView::visibleDocumentRect):

  • page/scrolling/AsyncScrollingCoordinator.cpp:

(WebCore::AsyncScrollingCoordinator::frameViewLayoutUpdated):

  • page/scrolling/ScrollingStateFrameScrollingNode.cpp:

(WebCore::ScrollingStateFrameScrollingNode::dumpProperties):

  • page/scrolling/ScrollingTreeFrameScrollingNode.cpp:

(WebCore::ScrollingTreeFrameScrollingNode::layoutViewportForScrollPosition):

  • page/scrolling/mac/ScrollingCoordinatorMac.mm:

(WebCore::ScrollingCoordinatorMac::scheduleTreeStateCommit):
(WebCore::ScrollingCoordinatorMac::commitTreeState):

LayoutTests:

  • fast/visual-viewport/rubberbanding-viewport-rects-expected.txt:
  • fast/visual-viewport/rubberbanding-viewport-rects-extended-background-expected.txt: Copied from LayoutTests/fast/visual-viewport/rubberbanding-viewport-rects-expected.txt.
  • fast/visual-viewport/rubberbanding-viewport-rects-extended-background.html: Copied from LayoutTests/fast/visual-viewport/rubberbanding-viewport-rects.html.
  • fast/visual-viewport/rubberbanding-viewport-rects.html:
  • platform/ios-simulator-wk2/fast/visual-viewport/rubberbanding-viewport-rects-expected.txt:
  • platform/ios-simulator-wk2/fast/visual-viewport/rubberbanding-viewport-rects-extended-background-expected.txt: Copied from LayoutTests/platform/ios-simulator-wk2/fast/visual-viewport/rubberbanding-viewport-rects-expected.txt.
  • platform/mac-wk1/fast/visual-viewport/rubberbanding-viewport-rects-extended-background-expected.txt: Added.
11:11 AM Changeset in webkit [212558] by Simon Fraser
  • 5 edits
    2 adds in trunk

REGRESSION (209396): Apple Pay buttons do not render
https://bugs.webkit.org/show_bug.cgi?id=168523
rdar://problem/30451563

Reviewed by Geoffrey Garen.
Source/WebCore:

The new CSS parser mistakenly converted -apple-pay-button values to
-webkit-pay-button, breaking -webkit-appearance: -apple-pay-button.

Fix by excluding "-apple-pay" prefixed values from the conversion.

Test: fast/css/appearance-apple-pay-button.html

  • css/parser/CSSPropertyParser.cpp:

(WebCore::isAppleLegacyCssValueKeyword):

LayoutTests:

Ref test that masks out the middle and corners of the buttons.

  • fast/css/appearance-apple-pay-button-expected.html: Added.
  • fast/css/appearance-apple-pay-button.html: Added.
11:10 AM Changeset in webkit [212557] by Michael Catanzaro
  • 36 edits
    1 delete in trunk/Source/WebKit2

Remove EFL from WebKit2
https://bugs.webkit.org/show_bug.cgi?id=168511

Reviewed by Alex Christensen.

  • Platform/IPC/unix/ConnectionUnix.cpp:

(IPC::Connection::platformInvalidate):
(IPC::Connection::open):

  • Platform/Module.h:
  • PlatformEfl.cmake: Removed.
  • PluginProcess/unix/PluginProcessMainUnix.cpp:
  • Shared/API/APIObject.h:
  • Shared/API/c/WKBase.h:
  • Shared/API/c/WKSharedAPICast.h:

(WebKit::toAPI):
(WebKit::toImpl):

  • Shared/NativeWebKeyboardEvent.h:

(WebKit::NativeWebKeyboardEvent::isFakeEventForComposition):
(WebKit::NativeWebKeyboardEvent::isFiltered): Deleted.

  • Shared/NativeWebMouseEvent.h:

(WebKit::NativeWebMouseEvent::nativeEvent):
(WebKit::NativeWebMouseEvent::NativeWebMouseEvent): Deleted.

  • Shared/NativeWebTouchEvent.h:

(WebKit::NativeWebTouchEvent::nativeEvent):

  • Shared/NativeWebWheelEvent.h:

(WebKit::NativeWebWheelEvent::nativeEvent):

  • Shared/Plugins/Netscape/x11/NetscapePluginModuleX11.cpp:

(WebKit::NetscapePluginModule::determineQuirks):

  • Shared/WebPreferencesDefinitions.h:
  • UIProcess/API/APIWebsiteDataStore.cpp:
  • UIProcess/API/C/WKAPICast.h:
  • UIProcess/API/C/WKTextChecker.cpp:
  • UIProcess/API/C/WKTextChecker.h:
  • UIProcess/ChildProcessProxy.cpp:

(WebKit::ChildProcessProxy::getLaunchOptions):

  • UIProcess/CoordinatedGraphics/PageViewportController.cpp:

(WebKit::PageViewportController::pixelAlignedFloatPoint):

  • UIProcess/InspectorServer/WebInspectorServer.h:
  • UIProcess/Launcher/ProcessLauncher.h:
  • UIProcess/Network/CustomProtocols/soup/CustomProtocolManagerProxySoup.cpp:
  • UIProcess/PageClient.h:
  • UIProcess/Plugins/unix/PluginProcessProxyUnix.cpp:

(WebKit::PluginProcessProxy::scanPlugin):

  • UIProcess/WebInspectorProxy.h:
  • UIProcess/WebPageProxy.h:
  • WebKit2.xcodeproj/project.pbxproj:
  • WebProcess/InjectedBundle/InjectedBundle.h:
  • WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp:

(WebKit::getPluginDisplay):
(WebKit::x11Screen):
(WebKit::displayDepth):
(WebKit::rootWindowID):
(WebKit::NetscapePluginX11::paint):

  • WebProcess/WebCoreSupport/WebChromeClient.cpp:

(WebKit::WebChromeClient::selectItemWritingDirectionIsNatural):
(WebKit::WebChromeClient::pageExtendedBackgroundColorDidChange):

  • WebProcess/WebCoreSupport/WebEditorClient.cpp:

(WebKit::WebEditorClient::shouldEraseMarkersAfterChangeSelection):

  • WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:

(WebKit::WebFrameLoaderClient::saveViewStateToItem):
(WebKit::WebFrameLoaderClient::restoreViewState):
(WebKit::WebFrameLoaderClient::dispatchDidClearWindowObjectInWorld):

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::WebPage):

  • WebProcess/WebPage/WebPage.h:
  • WebProcess/WebPage/WebPage.messages.in:
  • config.h:
11:00 AM Changeset in webkit [212556] by commit-queue@webkit.org
  • 15 edits in trunk/Source/WebCore

Unreviewed, rolling out r212463.
https://bugs.webkit.org/show_bug.cgi?id=168526

Some crashes with GuardMalloc (Requested by anttik on
#webkit).

Reverted changeset:

"Execute pending scripts asynchronously after stylesheet loads
complete"
https://bugs.webkit.org/show_bug.cgi?id=168367
http://trac.webkit.org/changeset/212463

10:48 AM Changeset in webkit [212555] by beidson@apple.com
  • 10 edits
    1 copy
    1 move
    1 add in trunk/Source

Stop backing up localStorage databases to iCloud by default.
<rdar://problem/29045531> and https://bugs.webkit.org/show_bug.cgi?id=168388

Reviewed by Geoffrey Garen.

Source/WebKit:

  • WebKit.xcodeproj/project.pbxproj:

Source/WebKit/mac:

  • Misc/WebKitVersionChecks.h:
  • Misc/WebKitVersionChecks.mm: Renamed from Source/WebKit/mac/Misc/WebKitVersionChecks.m.

(WebKitLinkedOnOrAfter):
(setWebKitLinkTimeVersion):
(WebKitLinkTimeVersion):
(linkedOnOrAfter):

  • Storage/WebStorageManager.mm:

(WebKitInitializeStorageIfNecessary):

Source/WebKit2:

  • UIProcess/Cocoa/VersionChecks.h:
  • UIProcess/Storage/LocalStorageDatabaseTracker.cpp:

(WebKit::LocalStorageDatabaseTracker::databasePath):

  • UIProcess/Storage/LocalStorageDatabaseTracker.h:
  • UIProcess/Storage/ios/LocalStorageDatabaseTrackerIOS.mm: Copied from Source/WebKit2/UIProcess/Cocoa/VersionChecks.h.

(WebKit::LocalStorageDatabaseTracker::platformExcludeFromBackup):

  • WebKit2.xcodeproj/project.pbxproj:
10:41 AM Changeset in webkit [212554] by Brent Fulgham
  • 4 edits in trunk/Source/WebCore

RenderView needs to be updated when FrameView changes
https://bugs.webkit.org/show_bug.cgi?id=168481
<rdar://problem/30339638>

Reviewed by Andreas Kling.

The state of the Document's RenderView can get out of sync with the Frame's FrameView.
We need a notification mechanism so that modifications to the Frame's view are properly
relayed to Document so that it can have a correct RenderView.

  • dom/Document.cpp:

(WebCore::Document::didBecomeCurrentDocumentInView): Create an updated render tree (if
one does not already exist).
(WebCore::Document::destroyRenderTree): Remove an incorrect ASSERT. We may enter this
code when the Frame uses 'setView(nullptr)', which happens during certain updates.

  • dom/Document.h:
  • page/Frame.cpp:

(WebCore::Frame::setView): Destroy the old render tree (if present) before switching to
the new view. Then notify the document that it is now the current document in the new view.

10:05 AM Changeset in webkit [212553] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Rebaseline test for ios-simulator-wk2 after r212522.

Unreviewed test gardening.

  • platform/ios-simulator-wk2/imported/w3c/web-platform-tests/html/semantics/forms/the-label-element/labelable-elements-expected.txt:
9:09 AM Changeset in webkit [212552] by aakash_jain@apple.com
  • 6 edits in trunk/Tools

Fix tools that were broken by Efl removal
https://bugs.webkit.org/show_bug.cgi?id=168496

Reviewed by Alexey Proskuryakov.

  • QueueStatusServer/config/queues.py:
  • Scripts/webkitpy/common/config/ews.json:
  • TestResultServer/static-dashboards/builders.jsonp:
  • TestResultServer/static-dashboards/flakiness_dashboard.js:
  • TestResultServer/static-dashboards/loader_unittests.js:
8:25 AM Changeset in webkit [212551] by Lucas Forschler
  • 4 edits in trunk/Tools

https://bugs.webkit.org/show_bug.cgi?id=168442
Move the SVN checkout from http -> https.
Update unit tests.

Reviewed by Alexey Proskuryakov.

  • BuildSlaveSupport/build.webkit.org-config/master.cfg:

(CheckOutSource.init):

  • BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py:

(SVNMirrorTest.get_SVNMirrorFromConfig):

  • BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/checkout_unittests.js:
7:14 AM Changeset in webkit [212550] by Michael Catanzaro
  • 2 edits
    2 deletes in trunk

Remove EFL from Source/cmake
https://bugs.webkit.org/show_bug.cgi?id=168512

Reviewed by Carlos Garcia Campos.

  • Source/cmake/OptionsEfl.cmake: Removed.
  • Source/cmake/WebKitPackaging.cmake:
  • Source/cmake/eflsymbols.filter: Removed.
6:50 AM Changeset in webkit [212549] by eocanha@igalia.com
  • 2 edits in trunk/Source/WebCore

[GStreamer] Fast replay on video hide/unhide on platforms with limited video buffer pools
https://bugs.webkit.org/show_bug.cgi?id=168505

Reviewed by Žan Doberšek.

The WebKit code isn't consuming the video samples when the video layer is hidden,
so the buffers aren't being returned to the pool and starve the decoder when the
buffer pool runs out of buffers (on platforms using a buffer pool and a custom
allocator, such as OMX on the Raspberry Pi 2). When the video layer is restored,
the pipeline tries to catch up and the user sees the video "going fast forward".

The added code "consumes" (removes and unrefs) the buffer in that case. However,
the sample isn't completely removed because it still holds important info (eg:
caps) needed for the proper operation of the video element.

  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp:

(WebCore::MediaPlayerPrivateGStreamerBase::pushTextureToCompositor):

6:46 AM Changeset in webkit [212548] by Carlos Garcia Campos
  • 2 edits in trunk/Source/WebCore

[SOUP] Stop removing the fragment identifier from resource requests
https://bugs.webkit.org/show_bug.cgi?id=168509

Reviewed by Sergio Villar Senin.

I don't know why, but have always removed the fragment identifier from the URL when creating the SoupURI that
is passed to libsoup. Maybe it was a bug in a very old version of libsoup, but it doesn't look necessary anymore
and it's causing several layout test failures.

Fixes: http/tests/svg/svg-use-external.html

imported/w3c/web-platform-tests/html/webappapis/scripting/processing-model-2/compile-error-same-origin-with-hash.html
imported/w3c/web-platform-tests/html/webappapis/scripting/processing-model-2/runtime-error-same-origin-with-hash.html

  • platform/network/soup/ResourceRequestSoup.cpp:

(WebCore::ResourceRequest::createSoupURI): Do not remove the fragment identifier from the URL.

6:44 AM Changeset in webkit [212547] by jfernandez@igalia.com
  • 2 edits
    2 copies
    6 adds in trunk/LayoutTests

[GTK] Unreviewed test gardening
https://bugs.webkit.org/show_bug.cgi?id=168473

Unreviewed GTK+ test gardening.

  • rebaseline imported/w3c/web-platform-tests/html/browsers/history/the-location-interface/location_hash.html test.
  • web-platform-tests/html/browsers/history/the-location-interface/location_hash-expected.txt:
6:17 AM Changeset in webkit [212546] by commit-queue@webkit.org
  • 3 edits in trunk/LayoutTests

Test media/modern-media-controls/time-label/time-label-white-space-nowrap.html is a flaky failure
https://bugs.webkit.org/show_bug.cgi?id=168507

Unreviewed test gardening.

Patch by Antoine Quint <Antoine Quint> on 2017-02-17

  • media/modern-media-controls/time-label/time-label-white-space-nowrap-expected.txt:
  • media/modern-media-controls/time-label/time-label-white-space-nowrap.html:
6:03 AM Changeset in webkit [212545] by Carlos Garcia Campos
  • 2 edits in trunk/LayoutTests

Unreviewed GTK+ gardening. Remove duplicated entries from TestExpectations.

  • platform/gtk/TestExpectations:
4:47 AM Changeset in webkit [212544] by jfernandez@igalia.com
  • 3 edits in trunk/LayoutTests

[GTK] Unreviewed test gardening
https://bugs.webkit.org/show_bug.cgi?id=168504

Unreviewed GTK+ test gardening.

  • imported/w3c/web-platform-tests/html/semantics/scripting-1/the-script-element/async_007.htm test marked as Slow.
  • http/tests/security/bypassing-cors-checks-for-extension-urls.html skipped (bug 168466)
  • rebaseline http/tests/security/contentSecurityPolicy/1.1/securitypolicyviolation-basics.html test (matching Mac expectations - bug 167252)
  • platform/gtk/TestExpectations:
  • platform/gtk/http/tests/security/contentSecurityPolicy/1.1/securitypolicyviolation-basics-expected.txt:
3:00 AM Changeset in webkit [212543] by Carlos Garcia Campos
  • 2 edits in trunk/LayoutTests

Unreviewed GTK+ gardening. Update expectations of several tests.

  • platform/gtk/TestExpectations:
1:15 AM Changeset in webkit [212542] by rniwa@webkit.org
  • 7 edits
    1 add in trunk/Websites/perf.webkit.org

Add tests for the time series chart and fix bugs I found along the way
https://bugs.webkit.org/show_bug.cgi?id=168499

Reviewed by Antti Koivisto.

Add basic tests for the time series chart.

Replaced the "ondata" callback set in the options by "dataChange" action now that ComponentBase provides
a facility for defining event-like actions.

Also fixed bugs I encountered while writing these tests see below for descriptions.

  • browser-tests/editable-text-tests.js:

(waitToRender): Moved to index.html

  • browser-tests/index.html:

(waitToRender): Moved from editable-text-tests.js.
(wait): Added.

  • browser-tests/time-series-chart-tests.js: Added.
  • public/v3/components/chart-pane-base.js:

(ChartPaneBase.prototype.configure):

  • public/v3/components/time-series-chart.js:

(TimeSeriesChart): Removed the code to set display and position inline properties. This is now done inside
cssTemplate with :host pseudo class.
(TimeSeriesChart.prototype._ensureCanvas): Don't strech the canvas to 100% of width and height. This was
causing a flush of contents where the canvas is momentarily streched by the browser and the script later
updates with the content with the correct aspect ratio.
(TimeSeriesChart.cssTemplate): Added :host rule to set display: block and position: relative.
(TimeSeriesChart._updateAllCharts): Deleted.
(TimeSeriesChart.prototype.render): Only run the code for axis when options.axis is defined. Also, avoid
setting the fill style because we never fill for axis drawing.
(TimeSeriesChart.prototype._computeHorizontalRenderingMetrics): Ditto. Fallback to sensible values when
options.axis is not defined.
(TimeSeriesChart.prototype._renderYAxis): Now computeValueGrid generates a sequence of {time, label}.
(TimeSeriesChart.prototype._renderTimeSeries): Don't draw the shades for confidence intervals unless its
fill style is defined. Otherwise, we'd end up drawing black shade and mask the actual data points.
(TimeSeriesChart.prototype._ensureSampledTimeSeries): Dispatch newly added "dataChange" action instead of
calling "ondata" callback in options dictionary.
(TimeSeriesChart.computeTimeGrid): Modernized to use const/let. Also fixed the bug that we were emitting
the date even when the entire time range fit within a 24-hour interval.
(TimeSeriesChart.computeValueGrid): Rewritten to make MB/GB use a nice round number instead of 0.98GB.
We were using a power of 10 to round up the stepping value but the value formatter used a power of 1024
to divide byte measurements (e.g. for memory). Use formatter.divisor to find the right scaling factor for
each kind.

  • public/v3/models/metric.js:

(Metric.prototype.makeFormatter):
(Metric.makeFormatter): Extracted from the one on the prototype so that tests don't need a metric object
just to test TimeSeriesChart. Added the second argument which specifies the maximum absolute value of the
range we're formatting. This is needed to use the same number of decimal points when the most significant
digit of some value is smaller than that of the biggest one. For example, we were emitting 0.50GB instead
of 0.5G along with 2.0GB. The "adjustment" reduces the number of significant figures in these cases.

  • public/v3/pages/dashboard-page.js:

(DashboardPage.prototype._createChartForCell):

1:13 AM Changeset in webkit [212541] by zandobersek@gmail.com
  • 5 edits in trunk/Source/JavaScriptCore

[GLib] GCActivityCallback::scheduleTimer() keeps pushing dispatch into the future
https://bugs.webkit.org/show_bug.cgi?id=168363

Reviewed by Carlos Garcia Campos.

Mimic the USE(CF) implementation of GCActivityCallback and HeapTimer by
scheduling the timer a decade into the future instead of completely
cancelling it. That way new dispatch times for GCActivityCallback can be
computed by simply deducting the difference in the new and previous
delay from the GSource's current dispatch time. Previously we handled an
extra 'paused' state (where m_delay was -1) and allowed for a delay of
an infinite value to be valid, complicating the next dispatch time
computation.

HeapTimer gains the static s_decade variable. The dispatch function in
heapTimerSourceFunctions only dispatches the callback, which now delays
the GSource by a decade. HeapTimer::scheduleTimer() simply schedules the
source to dispatch in the specified amount of time, and cancelTimer()
'cancels' the source by setting the dispatch time to a decade.

GCActivityCallback constructor initializes the delay to the s_decade
value and immediately sets the ready time for GSource a decade into the
future, avoiding the default -1 value as the ready time that would cause
problems in scheduleTimer(). scheduleTimer() doesn't special-case the
zero-delay value anymore, instead it just computes the difference
between the old and the new delay and rolls back the GSource's ready
time for that amount. cancelTimer() sets m_delay to the decade value and
delays the GSource for that same amount.

  • heap/GCActivityCallback.cpp:

(JSC::GCActivityCallback::GCActivityCallback):
(JSC::GCActivityCallback::scheduleTimer):
(JSC::GCActivityCallback::cancelTimer):

  • heap/GCActivityCallback.h:
  • heap/HeapTimer.cpp:

(JSC::HeapTimer::HeapTimer):
(JSC::HeapTimer::scheduleTimer):
(JSC::HeapTimer::cancelTimer):

  • heap/HeapTimer.h:

Feb 16, 2017:

11:49 PM Changeset in webkit [212540] by matthew_hanson@apple.com
  • 16 edits
    9 adds in branches/safari-603-branch

Merge r212513. rdar://problem/30301317

11:49 PM Changeset in webkit [212539] by matthew_hanson@apple.com
  • 2 edits in branches/safari-603-branch/Source/WebCore

Merge r212441. rdar://problem/30357253

11:49 PM Changeset in webkit [212538] by matthew_hanson@apple.com
  • 15 edits in branches/safari-603-branch/Source

Merge r212518. rdar://problem/30541748

11:49 PM Changeset in webkit [212537] by matthew_hanson@apple.com
  • 19 edits in branches/safari-603-branch

Merge r212459. rdar://problem/29322051

10:26 PM Changeset in webkit [212536] by commit-queue@webkit.org
  • 3 edits in trunk/LayoutTests

[GTK] Test fast/shadow-dom/input-element-in-shadow.html is failing in the bots
https://bugs.webkit.org/show_bug.cgi?id=168423

Patch by Carlos Garcia Campos <cgarcia@igalia.com> on 2017-02-16
Reviewed by Ryosuke Niwa.

It's failing only because the result has the spell checker underline, while the the reference image doesn't. I
don't know why the slot is spell checked and the input in the reference isn't, but we could make the test pass
by using real words, since the contents are not important for this test. Use "one", "two" instead of "abc", "def".

  • fast/shadow-dom/input-element-in-shadow-expected.html:
  • fast/shadow-dom/input-element-in-shadow.html:
10:04 PM Changeset in webkit [212535] by Yusuke Suzuki
  • 32 edits
    2 deletes in trunk/Source

[JSC] Drop PassRefPtr from ArrayBuffer
https://bugs.webkit.org/show_bug.cgi?id=168455

Reviewed by Geoffrey Garen.

Source/JavaScriptCore:

This patch finally drops all the PassRefPtr in JSC.
We changed PassRefPtr<ArrayBuffer> to RefPtr<ArrayBuffer>&&.
Since ArrayBuffer may be nullptr if the array is neutered,
we hold it as RefPtr<> instead of Ref<>.

And we also drops 2 files, TypedArrayBase.h and IntegralTypedArrayBase.h.
They are not used (and they are not referenced from the project file).

  • inspector/JavaScriptCallFrame.h:
  • jsc.cpp:

(functionDollarAgentReceiveBroadcast):

  • runtime/ArrayBufferView.cpp:

(JSC::ArrayBufferView::ArrayBufferView):

  • runtime/ArrayBufferView.h:

(JSC::ArrayBufferView::possiblySharedBuffer):
(JSC::ArrayBufferView::unsharedBuffer):
(JSC::ArrayBufferView::verifySubRangeLength):
(JSC::ArrayBufferView::clampOffsetAndNumElements):

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

(JSC::DataView::DataView):
(JSC::DataView::create):

  • runtime/DataView.h:
  • runtime/GenericTypedArrayView.h:
  • runtime/GenericTypedArrayViewInlines.h:

(JSC::GenericTypedArrayView<Adaptor>::GenericTypedArrayView):
(JSC::GenericTypedArrayView<Adaptor>::create):
(JSC::GenericTypedArrayView<Adaptor>::subarray):

  • runtime/IntegralTypedArrayBase.h: Removed.
  • runtime/JSArrayBuffer.cpp:

(JSC::JSArrayBuffer::JSArrayBuffer):
(JSC::JSArrayBuffer::create):

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

(JSC::arrayBufferProtoFuncSlice):

  • runtime/JSArrayBufferView.cpp:

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

  • runtime/JSArrayBufferView.h:
  • runtime/JSArrayBufferViewInlines.h:

(JSC::JSArrayBufferView::possiblySharedImpl):
(JSC::JSArrayBufferView::unsharedImpl):

  • runtime/JSCell.cpp:

(JSC::JSCell::slowDownAndWasteMemory):
(JSC::JSCell::getTypedArrayImpl):

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

(JSC::JSDataView::create):
(JSC::JSDataView::possiblySharedTypedImpl):
(JSC::JSDataView::unsharedTypedImpl):
(JSC::JSDataView::getTypedArrayImpl):

  • runtime/JSDataView.h:
  • runtime/JSGenericTypedArrayView.h:
  • runtime/JSGenericTypedArrayViewConstructorInlines.h:

(JSC::constructGenericTypedArrayViewWithArguments):

  • runtime/JSGenericTypedArrayViewInlines.h:

(JSC::JSGenericTypedArrayView<Adaptor>::create):
(JSC::JSGenericTypedArrayView<Adaptor>::possiblySharedTypedImpl):
(JSC::JSGenericTypedArrayView<Adaptor>::unsharedTypedImpl):
(JSC::JSGenericTypedArrayView<Adaptor>::getTypedArrayImpl):

  • runtime/JSGenericTypedArrayViewPrototypeFunctions.h:

(JSC::genericTypedArrayViewPrivateFuncSubarrayCreate):

  • runtime/JSTypedArrays.cpp:

(JSC::createUint8TypedArray):

  • runtime/TypedArrayBase.h: Removed.

Source/WebCore:

  • bindings/js/SerializedScriptValue.cpp:

(WebCore::CloneDeserializer::readArrayBufferView):

  • css/FontFace.cpp:

(WebCore::FontFace::create):

  • platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp:

(WebCore::MediaPlayerPrivateAVFoundation::extractKeyURIKeyIDAndCertificateFromInitData):

  • platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.cpp:

(WebCore::AVFWrapper::shouldWaitForLoadingOfResource):

  • platform/graphics/avfoundation/objc/CDMSessionAVFoundationObjC.mm:

(WebCore::CDMSessionAVFoundationObjC::generateKeyRequest):

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

(WebCore::MediaPlayerPrivateAVFoundationObjC::shouldWaitForLoadingOfResource):

10:03 PM Changeset in webkit [212534] by aakash_jain@apple.com
  • 2 edits in trunk/Source/WebKit2

Remove unused methods WKPageGetDebugPaintFlags and WKPageSetDebugPaintFlags
https://bugs.webkit.org/show_bug.cgi?id=168464

Reviewed by Alexey Proskuryakov.

  • UIProcess/API/C/WKPagePrivate.h:
9:36 PM Changeset in webkit [212533] by rniwa@webkit.org
  • 5 edits in trunk/Websites/perf.webkit.org

Use expect.js instead of expect in browser tests
https://bugs.webkit.org/show_bug.cgi?id=168492

Reviewed by Joseph Pecoraro.

Use expect.js (https://github.com/Automattic/expect.js) instead of expect (https://github.com/mjackson/expect).

  • browser-tests/close-button-tests.js:
  • browser-tests/component-base-tests.js:
  • browser-tests/editable-text-tests.js:
  • browser-tests/index.html:
9:28 PM Changeset in webkit [212532] by matthew_hanson@apple.com
  • 8 edits
    4 adds in branches/safari-603-branch

Merge r212350. rdar://problem/30450379

9:28 PM Changeset in webkit [212531] by matthew_hanson@apple.com
  • 2 edits in branches/safari-603-branch/Source/WebCore

Merge r212335. rdar://problem/29899473

9:28 PM Changeset in webkit [212530] by matthew_hanson@apple.com
  • 2 edits in branches/safari-603-branch/Source/WebCore

Merge r212330. rdar://problem/29899473

9:28 PM Changeset in webkit [212529] by matthew_hanson@apple.com
  • 11 edits in branches/safari-603-branch

Merge r212316. rdar://problem/30504444

9:28 PM Changeset in webkit [212528] by matthew_hanson@apple.com
  • 6 edits
    2 adds in branches/safari-603-branch

Merge r212314. rdar://problem/27685077

9:28 PM Changeset in webkit [212527] by matthew_hanson@apple.com
  • 9 edits in branches/safari-603-branch/Source/WebKit2

Merge r212312. rdar://problem/30505482

9:28 PM Changeset in webkit [212526] by matthew_hanson@apple.com
  • 3 edits
    3 adds
    1 delete in branches/safari-603-branch

Merge r212301. rdar://problem/30494674

9:28 PM Changeset in webkit [212525] by matthew_hanson@apple.com
  • 8 edits in branches/safari-603-branch/Source

Merge r212260. rdar://problem/30481079

9:13 PM Changeset in webkit [212524] by Simon Fraser
  • 2 edits in trunk/Source/WebCore

REGRESSION(r212439): Web Inspector Toolbar / Window appears broken
https://bugs.webkit.org/show_bug.cgi?id=168494

Reviewed by Joseph Pecoraro.

Missed one conversion from acceleratesDrawing to drawsAsynchronously, which
caused non-Whippet GrpahicsContext shadow drawing to happen unexpectedly.

  • platform/graphics/ca/cocoa/WebTiledBackingLayer.mm:

(-[WebTiledBackingLayer drawsAsynchronously]):
(-[WebTiledBackingLayer acceleratesDrawing]): Deleted.

9:11 PM Changeset in webkit [212523] by keith_miller@apple.com
  • 2 edits in branches/safari-603-branch/Source/JavaScriptCore

Fix merge issue with r212085 (rdar://problem/29939864).

  • runtime/JSFunction.cpp:

(JSC::JSFunction::callerGetter):

8:30 PM Changeset in webkit [212522] by Chris Dumez
  • 7 edits in trunk

<input>.labels is empty if type changes from text->hidden->checkbox
https://bugs.webkit.org/show_bug.cgi?id=168358

Reviewed by Ryosuke Niwa.

LayoutTests/imported/w3c:

Re-sync web-platform-test from:
https://github.com/w3c/web-platform-tests/pull/4804

  • web-platform-tests/html/semantics/forms/the-label-element/labelable-elements-expected.txt:
  • web-platform-tests/html/semantics/forms/the-label-element/labelable-elements.html:

Source/WebCore:

We were invalidating LabelsNodeLists on 'for' attribute change.
We now also invalidate them of 'type' attribute change since
HTMLInputElements whose type is 'hidden' do not support labels.

No new tests, updated existing test.

  • dom/Document.h:
  • dom/LiveNodeList.h:

(WebCore::shouldInvalidateTypeOnAttributeChange):

  • html/LabelsNodeList.cpp:

(WebCore::LabelsNodeList::LabelsNodeList):

8:07 PM Changeset in webkit [212521] by Michael Catanzaro
  • 16 edits in trunk/Source/WebCore

Remove even more EFL from WebCore
https://bugs.webkit.org/show_bug.cgi?id=168485

Reviewed by Alex Christensen.

  • accessibility/atk/WebKitAccessibleWrapperAtk.cpp:

(webkitAccessibleGetAttributes):
(atkRole):

  • css/StyleRule.cpp:

(WebCore::StyleRuleBase::copy):

  • platform/ContextMenuItem.h:
  • platform/graphics/OpenGLESShims.h:
  • platform/graphics/PlatformDisplay.cpp:

(WebCore::PlatformDisplay::createPlatformDisplay):

  • platform/graphics/PlatformDisplay.h:
  • platform/graphics/cairo/ImageBufferCairo.cpp:
  • platform/graphics/freetype/SimpleFontDataFreeType.cpp:

(WebCore::Font::platformInit):

  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:

(WebCore::MediaPlayerPrivateGStreamer::MediaPlayerPrivateGStreamer):

  • platform/graphics/texmap/GraphicsLayerTextureMapper.cpp:

(WebCore::GraphicsLayerTextureMapper::setContentsToImage):

  • platform/graphics/texmap/TextureMapperGC3DPlatformLayer.cpp:
  • platform/graphics/texmap/TextureMapperGC3DPlatformLayer.h:
  • platform/network/soup/ResourceErrorSoup.cpp:

(WebCore::ResourceError::timeoutError):

  • platform/network/soup/SoupNetworkSession.cpp:

(WebCore::SoupNetworkSession::setProxySettingsFromEnvironment): Deleted.

  • platform/network/soup/SoupNetworkSession.h:
7:50 PM Changeset in webkit [212520] by rniwa@webkit.org
  • 4 edits in trunk/Websites/perf.webkit.org

Modernize and fix measurement-set tests
https://bugs.webkit.org/show_bug.cgi?id=168484

Reviewed by Joseph Pecoraro.

Modernized and fixed the tests in measurement-set-tests.js.

  1. Return a promise instead of manually calling done in then/catch hanlders.
  2. Use arrow function everywhere.
  3. Explicitly assert the number of calls to callbacks instead of asserting never reached.

The test case labled "should return false when the range ends after the fetched cluster"
was incorrectly asserting that hasFetchedRange returns false when the end time is after
the primary cluster's end time. Test an interval before the primary cluster instead.

Added a test case for hasFetchedRange returning true when the end time appears after
the end of the primary cluster and fixed hasFetchedRange to that end. Since there are
no data points after the primary cluster which is chronologically the last cluster,
there is nothing to fetch beyond its end time.

  • public/v3/models/measurement-set.js:

(MeasurementSet.prototype.hasFetchedRange): Fixed the bug that this function returned
false when the end time was after the primary cluster's end by truncating the range by
the end of the primary cluster.

  • unit-tests/measurement-set-tests.js:
  • unit-tests/resources/mock-remote-api.js:

(assert.notReached.assert.notReached): Deleted. It's no longer used by any tests.

6:52 PM Changeset in webkit [212519] by commit-queue@webkit.org
  • 16 edits in trunk/Source/WebKit2

[WebRTC] libwebrtc socket addresses should not be passed as strings
https://bugs.webkit.org/show_bug.cgi?id=168474

Patch by Youenn Fablet <youenn@apple.com> on 2017-02-16
Reviewed by Alex Christensen.

Removing all seralization of socket addresses as strings.
Instead, a dedicated serialization is provided.
This allows proper handling of various cases like addresses with both hostnames and resolved IPs.

  • NetworkProcess/webrtc/LibWebRTCSocketClient.cpp:

(WebKit::LibWebRTCSocketClient::signalReadPacket):
(WebKit::LibWebRTCSocketClient::signalSentPacket):
(WebKit::LibWebRTCSocketClient::signalAddressReady):

  • NetworkProcess/webrtc/NetworkRTCProvider.cpp:

(WebKit::NetworkRTCProvider::createUDPSocket):
(WebKit::NetworkRTCProvider::createServerTCPSocket):
(WebKit::NetworkRTCProvider::createClientTCPSocket):

  • NetworkProcess/webrtc/NetworkRTCProvider.h:
  • NetworkProcess/webrtc/NetworkRTCProvider.messages.in:
  • NetworkProcess/webrtc/NetworkRTCSocket.cpp:

(WebKit::NetworkRTCSocket::sendTo):

  • NetworkProcess/webrtc/NetworkRTCSocket.h:
  • NetworkProcess/webrtc/NetworkRTCSocket.messages.in:
  • Shared/RTCNetwork.cpp:

(WebKit::RTCNetwork::SocketAddress::decode):
(WebKit::RTCNetwork::SocketAddress::encode):

  • Shared/RTCNetwork.h:

(WebKit::RTCNetwork::SocketAddress::SocketAddress):

  • WebProcess/Network/webrtc/LibWebRTCSocket.cpp:

(WebKit::LibWebRTCSocket::signalAddressReady):
(WebKit::LibWebRTCSocket::SendTo):

  • WebProcess/Network/webrtc/LibWebRTCSocket.h:
  • WebProcess/Network/webrtc/LibWebRTCSocketFactory.cpp:

(WebKit::LibWebRTCSocketFactory::CreateServerTcpSocket):
(WebKit::LibWebRTCSocketFactory::CreateUdpSocket):
(WebKit::LibWebRTCSocketFactory::CreateClientTcpSocket):

  • WebProcess/Network/webrtc/WebRTCSocket.cpp:

(WebKit::WebRTCSocket::signalAddressReady):

  • WebProcess/Network/webrtc/WebRTCSocket.h:
  • WebProcess/Network/webrtc/WebRTCSocket.messages.in:
6:40 PM Changeset in webkit [212518] by commit-queue@webkit.org
  • 15 edits in trunk/Source

Remove Chromium-specific code to call FrameLoaderClient::redirectDataToPlugin(nullptr)
https://bugs.webkit.org/show_bug.cgi?id=168417
<rdar://problem/30541748>

Patch by Daniel Bates <dabates@apple.com> on 2017-02-16
Reviewed by Brent Fulgham.

Source/WebCore:

Remove Chromium-specific code that was added in r125500 to call FrameLoaderClient::redirectDataToPlugin(nullptr)
in PluginDocument::detachFromPluginElement(). Calling redirectDataToPlugin() with nullptr was used by the
Chromium port to signify that the plugin document was being destroyed so that they could tear down their
plugin widget. And PluginDocument::detachFromPluginElement() is the only place that calls redirectDataToPlugin()
passing nullptr. No other port made use of this machinery and the Chromium port has long since been removed
from the Open Source WebKit Project. We should remove this code.

  • html/PluginDocument.cpp:

(WebCore::PluginDocumentParser::appendBytes): Pass the plugin widget by reference.
(WebCore::PluginDocument::detachFromPluginElement): Remove call to FrameLoaderClient::redirectDataToPlugin().
This call was only used by the Chromium port as means to be notified when the plugin document was being
destroyed. No other port made use of this notification or needed such a notification.

  • loader/EmptyClients.cpp: Change argument of redirectDataToPlugin() from Widget* to Widget& to convey

that this function always takes a valid Widget. Also remove unnecessary argument name as the data type
of the argument and the name of the function sufficiently describes the purpose of the argument.

  • loader/FrameLoaderClient.h: Ditto.

Source/WebKit/mac:

Update override of FrameLoaderClient::redirectDataToPlugin() to take a Widget& instead of a
Widget* as it is always called with a valid Widget.

  • WebCoreSupport/WebFrameLoaderClient.h:
  • WebCoreSupport/WebFrameLoaderClient.mm:

(WebFrameLoaderClient::redirectDataToPlugin):

  • WebKit.order: Remove symbol for WebFrameLoaderClient::redirectDataToPlugin() that took a Widget*

as it no longer exists. I am unclear if this file is still meaningful as it was last modified in
r180570 (2 years ago) though Xcode still references this ordering file (why?).

Source/WebKit/win:

Update override of FrameLoaderClient::redirectDataToPlugin() to take a Widget& instead of a
Widget* as it is always called with a valid Widget.

  • WebCoreSupport/WebFrameLoaderClient.cpp:

(WebFrameLoaderClient::redirectDataToPlugin):

  • WebCoreSupport/WebFrameLoaderClient.h:

Source/WebKit2:

Update override of FrameLoaderClient::redirectDataToPlugin() to take a Widget& instead of a
Widget* as it is always called with a valid Widget.

  • WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:

(WebKit::WebFrameLoaderClient::redirectDataToPlugin):

  • WebProcess/WebCoreSupport/WebFrameLoaderClient.h:
  • mac/WebKit2.order: Remove symbol for WebFrameLoaderClient::redirectDataToPlugin() that took a Widget*

as it no longer exists. I am unclear if this file is still meaningful as it was last modified in
r180570 (2 years ago) though Xcode still references this ordering file (why?).

6:15 PM Changeset in webkit [212517] by achristensen@apple.com
  • 1 edit
    43 adds in trunk/Tools

Unreviewed, rolling out r212514.
https://bugs.webkit.org/show_bug.cgi?id=168489

broke test runner (Requested by alexchristensen on #webkit).

Reverted changeset:

"Remove EFL-specific files in Tools."
http://trac.webkit.org/changeset/212514

Patch by Commit Queue <commit-queue@webkit.org> on 2017-02-16

5:54 PM Changeset in webkit [212516] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Mark storage/indexeddb/modern/idbcursor-continue-primary-key-1.html as flaky.
https://bugs.webkit.org/show_bug.cgi?id=168391

Unreviewed test gardening.

  • platform/mac-wk2/TestExpectations:
5:37 PM Changeset in webkit [212515] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Skip js/dom/gc-slot-visitor-parallel-drain-pings-runloop-when-done.html on El Capitan.

Unreviewed test gardening.

  • platform/mac/TestExpectations:
5:30 PM Changeset in webkit [212514] by achristensen@apple.com
  • 1 edit
    11 deletes in trunk/Tools

Remove EFL-specific files in Tools.

Rubber-stamped by Anders Carlsson.

  • ImageDiff/efl: Removed.
  • ImageDiff/efl/ImageDiff.cpp: Removed.
  • MiniBrowser/efl: Removed.
  • MiniBrowser/efl/CMakeLists.txt: Removed.
  • MiniBrowser/efl/main.c: Removed.
  • Scripts/run-efl-tests: Removed.
  • Scripts/update-webkitefl-libs: Removed.
  • Scripts/webkitpy/port/efl.py: Removed.
  • Scripts/webkitpy/port/efl_unittest.py: Removed.
  • TestWebKitAPI/Tests/WebKit2/efl: Removed.
  • TestWebKitAPI/Tests/WebKit2/efl/WKViewClientWebProcessCallbacks.cpp: Removed.
  • TestWebKitAPI/Tests/WebKit2/efl/WKViewClientWebProcessCallbacks_Bundle.cpp: Removed.
  • TestWebKitAPI/Tests/WebKit2/efl/WKViewScrollTo.cpp: Removed.
  • TestWebKitAPI/Tests/WebKit2/efl/scrollTo.html: Removed.
  • TestWebKitAPI/efl: Removed.
  • TestWebKitAPI/efl/InjectedBundleController.cpp: Removed.
  • TestWebKitAPI/efl/PlatformUtilities.cpp: Removed.
  • TestWebKitAPI/efl/PlatformWebView.cpp: Removed.
  • TestWebKitAPI/efl/main.cpp: Removed.
  • WebKitTestRunner/InjectedBundle/efl: Removed.
  • WebKitTestRunner/InjectedBundle/efl/ActivateFontsEfl.cpp: Removed.
  • WebKitTestRunner/InjectedBundle/efl/FontManagement.cpp: Removed.
  • WebKitTestRunner/InjectedBundle/efl/FontManagement.h: Removed.
  • WebKitTestRunner/InjectedBundle/efl/InjectedBundleEfl.cpp: Removed.
  • WebKitTestRunner/InjectedBundle/efl/TestRunnerEfl.cpp: Removed.
  • WebKitTestRunner/efl: Removed.
  • WebKitTestRunner/efl/EventSenderProxyEfl.cpp: Removed.
  • WebKitTestRunner/efl/PlatformWebViewEfl.cpp: Removed.
  • WebKitTestRunner/efl/TestControllerEfl.cpp: Removed.
  • WebKitTestRunner/efl/main.cpp: Removed.
  • efl: Removed.
  • efl/install-dependencies: Removed.
  • efl/jhbuild-optional.modules: Removed.
  • efl/jhbuild.modules: Removed.
  • efl/jhbuildrc: Removed.
  • efl/patches: Removed.
  • efl/patches/evas-fix-build-with-giflib5.patch: Removed.
  • efl/patches/fontconfig-C-11-requires-a-space-between-literal-and-identifier.patch: Removed.
  • efl/patches/gst-libav.patch: Removed.
  • efl/patches/gst-plugins-base-rtp-rtcpbuffer-fix-typo-in-enum.patch: Removed.
  • efl/patches/gst-plugins-good-Revert-qtdemux-expose-streams-with-first-moof-for-fr.patch: Removed.
  • efl/patches/gst-plugins-good-use-the-tfdt-decode-time.patch: Removed.
  • efl/patches/openwebrtc-gst-plugins-clang-warning-fix.patch: Removed.
5:28 PM Changeset in webkit [212513] by mmaxfield@apple.com
  • 16 edits
    9 adds in trunk

font-weight in @font-face can cause a font to be downloaded even when it's not used
https://bugs.webkit.org/show_bug.cgi?id=168114
<rdar://problem/30301317>

Reviewed by Darin Adler.

Source/WebCore:

There were two problems with our font loading code.

When we are in the middle of a download, we will use a special interstitial font,
and this special font has a flag set which will cause it to be invisible when it is
drawn. However, when we start using this font during the load, we give it a
unicode-range of U+0-0 which means that it will never be used, and fallback will
happen to other weights immediately.

The second problem with the font loading code is that this interstital font is just
Times. Times doesn't support every character, which means that if we are trying
to render some exotic character, we fall back to other weights. The solution here
is to use LastResort as the interstitial font, because it supports all characters.
Because its metrics are reasonable and we don't ever actually paint this
interstitial font, this choice is no worse than Times.

Tests: fast/text/font-style-download.html

fast/text/font-weight-download-2.html
fast/text/font-weight-download.html
fast/text/font-weight-fallback.html

  • css/CSSFontFace.cpp:

(WebCore::CSSFontFace::font):

  • css/CSSSegmentedFontFace.cpp:

(WebCore::appendFont):
(WebCore::CSSSegmentedFontFace::fontRanges):
(WebCore::appendFontWithInvalidUnicodeRangeIfLoading): Deleted.

  • platform/graphics/Font.h:

(WebCore::Font::widthForGlyph):

  • platform/graphics/FontCache.h:
  • platform/graphics/freetype/FontCacheFreeType.cpp:

(WebCore::FontCache::lastResortFallbackFontForEveryCharacter):

  • platform/graphics/mac/FontCacheMac.mm:

(WebCore::FontCache::lastResortFallbackFontForEveryCharacter):

  • platform/graphics/win/FontCacheWin.cpp:

(WebCore::FontCache::lastResortFallbackFontForEveryCharacter):

Tools:

LastResort needs to be usable in tests.

  • DumpRenderTree/mac/DumpRenderTree.mm:

(allowedFontFamilySet):

  • WebKitTestRunner/InjectedBundle/cocoa/ActivateFontsCocoa.mm:

(WTR::allowedFontFamilySet):

  • WebKitTestRunner/mac/TestControllerMac.mm:

(WTR::allowedFontFamilySet):

LayoutTests:

  • fast/text/font-style-download-expected.txt: Added.
  • fast/text/font-style-download.html: Added.
  • fast/text/font-weight-download-2-expected.txt: Added.
  • fast/text/font-weight-download-2.html: Added.
  • fast/text/font-weight-download-expected.txt: Added.
  • fast/text/font-weight-download.html: Added.
  • fast/text/font-weight-fallback-expected.html: Added.
  • fast/text/font-weight-fallback.html: Added.
  • http/tests/webfont/fallback-font-while-loading-expected.txt: We don't want to use the

fallback font while an earlier font is loading because the fallback font might require
an extra download. This represents a policy change.

  • http/tests/webfont/fallback-font-while-loading.html: Ditto.
  • resources/Ahem_CJK.ttf: Added.
  • svg/W3C-SVG-1.1-SE/struct-dom-11-f.svg: The metrics of LastResort are different from

the metrics of the previous interstitial font, which means the new font causes elements
to intersect when they previously didn't. However, the web font isn't actually necessary
here, so we can just stop using it, thereby sidestepping the entire problem.

5:25 PM Changeset in webkit [212512] by achristensen@apple.com
  • 2 edits
    9 deletes in trunk/Source

Remove EFL-specific files in Source.

Rubber-stamped by Anders Carlsson.

Source/WebCore:

  • editing/efl: Removed.
  • page/efl: Removed.
  • platform/audio/efl: Removed.
  • platform/efl: Removed.
  • platform/efl/DefaultTheme: Removed.
  • platform/efl/DefaultTheme/widget: Removed.
  • platform/efl/DefaultTheme/widget/button: Removed.
  • platform/efl/DefaultTheme/widget/check: Removed.
  • platform/efl/DefaultTheme/widget/combo: Removed.
  • platform/efl/DefaultTheme/widget/entry: Removed.
  • platform/efl/DefaultTheme/widget/progressbar: Removed.
  • platform/efl/DefaultTheme/widget/radio: Removed.
  • platform/efl/DefaultTheme/widget/scrollbar: Removed.
  • platform/efl/DefaultTheme/widget/search: Removed.
  • platform/efl/DefaultTheme/widget/search/cancel: Removed.
  • platform/efl/DefaultTheme/widget/search/decoration: Removed.
  • platform/efl/DefaultTheme/widget/search/field: Removed.
  • platform/efl/DefaultTheme/widget/slider: Removed.
  • platform/efl/DefaultTheme/widget/spinner: Removed.
  • platform/gamepad/efl: Removed.
  • platform/graphics/efl: Removed.
  • platform/graphics/surfaces/efl: Removed.
  • platform/network/efl: Removed.

Source/WTF:

  • wtf/text/efl: Removed.
  • wtf/text/efl/TextBreakIteratorInternalICUEfl.cpp: Removed.
5:17 PM Changeset in webkit [212511] by achristensen@apple.com
  • 1 edit
    18 deletes in trunk/Source/WebKit2

Remove EFL-specific files in WebKit2.

Rubber-stamped by Anders Carlsson

  • DatabaseProcess/efl: Removed.
  • DatabaseProcess/efl/DatabaseProcessMainEfl.cpp: Removed.
  • NetworkProcess/Downloads/efl: Removed.
  • NetworkProcess/Downloads/efl/DownloadSoupErrorsEfl.cpp: Removed.
  • NetworkProcess/efl: Removed.
  • NetworkProcess/efl/NetworkProcessMainEfl.cpp: Removed.
  • Platform/efl: Removed.
  • Platform/efl/ModuleEfl.cpp: Removed.
  • Shared/API/c/efl: Removed.
  • Shared/API/c/efl/WKArrayEfl.cpp: Removed.
  • Shared/API/c/efl/WKArrayEfl.h: Removed.
  • Shared/API/c/efl/WKBaseEfl.h: Removed.
  • Shared/efl: Removed.
  • Shared/efl/NativeWebKeyboardEventEfl.cpp: Removed.
  • Shared/efl/NativeWebTouchEventEfl.cpp: Removed.
  • Shared/efl/NativeWebWheelEventEfl.cpp: Removed.
  • Shared/efl/ProcessExecutablePathEfl.cpp: Removed.
  • Shared/efl/WebEventFactory.cpp: Removed.
  • Shared/efl/WebEventFactory.h: Removed.
  • UIProcess/API/C/efl: Removed.
  • UIProcess/API/C/efl/WKAPICastEfl.h: Removed.
  • UIProcess/API/C/efl/WKColorPickerResultListener.cpp: Removed.
  • UIProcess/API/C/efl/WKColorPickerResultListener.h: Removed.
  • UIProcess/API/C/efl/WKEventEfl.cpp: Removed.
  • UIProcess/API/C/efl/WKEventEfl.h: Removed.
  • UIProcess/API/C/efl/WKViewEfl.cpp: Removed.
  • UIProcess/API/C/efl/WKViewEfl.h: Removed.
  • UIProcess/API/cpp/efl: Removed.
  • UIProcess/API/cpp/efl/WKEinaSharedString.cpp: Removed.
  • UIProcess/API/cpp/efl/WKEinaSharedString.h: Removed.
  • UIProcess/API/efl: Removed.
  • UIProcess/API/efl/APIWebsiteDataStoreEfl.cpp: Removed.
  • UIProcess/API/efl/EWebKit2.h.in: Removed.
  • UIProcess/API/efl/EwkView.cpp: Removed.
  • UIProcess/API/efl/EwkView.h: Removed.
  • UIProcess/API/efl/EwkViewCallbacks.h: Removed.
  • UIProcess/API/efl/GestureRecognizer.cpp: Removed.
  • UIProcess/API/efl/GestureRecognizer.h: Removed.
  • UIProcess/API/efl/SnapshotImageGL.cpp: Removed.
  • UIProcess/API/efl/SnapshotImageGL.h: Removed.
  • UIProcess/API/efl/WebAccessibility.cpp: Removed.
  • UIProcess/API/efl/WebAccessibility.h: Removed.
  • UIProcess/API/efl/ewk_application_cache_manager.cpp: Removed.
  • UIProcess/API/efl/ewk_application_cache_manager.h: Removed.
  • UIProcess/API/efl/ewk_application_cache_manager_private.h: Removed.
  • UIProcess/API/efl/ewk_auth_request.cpp: Removed.
  • UIProcess/API/efl/ewk_auth_request.h: Removed.
  • UIProcess/API/efl/ewk_auth_request_private.h: Removed.
  • UIProcess/API/efl/ewk_back_forward_list.cpp: Removed.
  • UIProcess/API/efl/ewk_back_forward_list.h: Removed.
  • UIProcess/API/efl/ewk_back_forward_list_item.cpp: Removed.
  • UIProcess/API/efl/ewk_back_forward_list_item.h: Removed.
  • UIProcess/API/efl/ewk_back_forward_list_item_private.h: Removed.
  • UIProcess/API/efl/ewk_back_forward_list_private.h: Removed.
  • UIProcess/API/efl/ewk_color_picker.cpp: Removed.
  • UIProcess/API/efl/ewk_color_picker.h: Removed.
  • UIProcess/API/efl/ewk_color_picker_private.h: Removed.
  • UIProcess/API/efl/ewk_context.cpp: Removed.
  • UIProcess/API/efl/ewk_context.h: Removed.
  • UIProcess/API/efl/ewk_context_menu.cpp: Removed.
  • UIProcess/API/efl/ewk_context_menu.h: Removed.
  • UIProcess/API/efl/ewk_context_menu_item.cpp: Removed.
  • UIProcess/API/efl/ewk_context_menu_item.h: Removed.
  • UIProcess/API/efl/ewk_context_menu_item_private.h: Removed.
  • UIProcess/API/efl/ewk_context_menu_private.h: Removed.
  • UIProcess/API/efl/ewk_context_private.h: Removed.
  • UIProcess/API/efl/ewk_cookie_manager.cpp: Removed.
  • UIProcess/API/efl/ewk_cookie_manager.h: Removed.
  • UIProcess/API/efl/ewk_cookie_manager_private.h: Removed.
  • UIProcess/API/efl/ewk_database_manager.cpp: Removed.
  • UIProcess/API/efl/ewk_database_manager.h: Removed.
  • UIProcess/API/efl/ewk_database_manager_private.h: Removed.
  • UIProcess/API/efl/ewk_download_job.cpp: Removed.
  • UIProcess/API/efl/ewk_download_job.h: Removed.
  • UIProcess/API/efl/ewk_download_job_private.h: Removed.
  • UIProcess/API/efl/ewk_error.cpp: Removed.
  • UIProcess/API/efl/ewk_error.h: Removed.
  • UIProcess/API/efl/ewk_error_private.h: Removed.
  • UIProcess/API/efl/ewk_favicon_database.cpp: Removed.
  • UIProcess/API/efl/ewk_favicon_database.h: Removed.
  • UIProcess/API/efl/ewk_favicon_database_private.h: Removed.
  • UIProcess/API/efl/ewk_file_chooser_request.cpp: Removed.
  • UIProcess/API/efl/ewk_file_chooser_request.h: Removed.
  • UIProcess/API/efl/ewk_file_chooser_request_private.h: Removed.
  • UIProcess/API/efl/ewk_form_submission_request.cpp: Removed.
  • UIProcess/API/efl/ewk_form_submission_request.h: Removed.
  • UIProcess/API/efl/ewk_form_submission_request_private.h: Removed.
  • UIProcess/API/efl/ewk_intro.h: Removed.
  • UIProcess/API/efl/ewk_main.cpp: Removed.
  • UIProcess/API/efl/ewk_main.h: Removed.
  • UIProcess/API/efl/ewk_main_private.h: Removed.
  • UIProcess/API/efl/ewk_navigation_data.cpp: Removed.
  • UIProcess/API/efl/ewk_navigation_data.h: Removed.
  • UIProcess/API/efl/ewk_navigation_data_private.h: Removed.
  • UIProcess/API/efl/ewk_navigation_policy_decision.cpp: Removed.
  • UIProcess/API/efl/ewk_navigation_policy_decision.h: Removed.
  • UIProcess/API/efl/ewk_navigation_policy_decision_private.h: Removed.
  • UIProcess/API/efl/ewk_object.cpp: Removed.
  • UIProcess/API/efl/ewk_object.h: Removed.
  • UIProcess/API/efl/ewk_object_private.h: Removed.
  • UIProcess/API/efl/ewk_page_group.cpp: Removed.
  • UIProcess/API/efl/ewk_page_group.h: Removed.
  • UIProcess/API/efl/ewk_page_group_private.h: Removed.
  • UIProcess/API/efl/ewk_popup_menu.cpp: Removed.
  • UIProcess/API/efl/ewk_popup_menu.h: Removed.
  • UIProcess/API/efl/ewk_popup_menu_item.cpp: Removed.
  • UIProcess/API/efl/ewk_popup_menu_item.h: Removed.
  • UIProcess/API/efl/ewk_popup_menu_item_private.h: Removed.
  • UIProcess/API/efl/ewk_popup_menu_private.h: Removed.
  • UIProcess/API/efl/ewk_security_origin.cpp: Removed.
  • UIProcess/API/efl/ewk_security_origin.h: Removed.
  • UIProcess/API/efl/ewk_security_origin_private.h: Removed.
  • UIProcess/API/efl/ewk_settings.cpp: Removed.
  • UIProcess/API/efl/ewk_settings.h: Removed.
  • UIProcess/API/efl/ewk_settings_private.h: Removed.
  • UIProcess/API/efl/ewk_storage_manager.cpp: Removed.
  • UIProcess/API/efl/ewk_storage_manager.h: Removed.
  • UIProcess/API/efl/ewk_storage_manager_private.h: Removed.
  • UIProcess/API/efl/ewk_text_checker.cpp: Removed.
  • UIProcess/API/efl/ewk_text_checker.h: Removed.
  • UIProcess/API/efl/ewk_text_checker_private.h: Removed.
  • UIProcess/API/efl/ewk_touch.h: Removed.
  • UIProcess/API/efl/ewk_url_request.cpp: Removed.
  • UIProcess/API/efl/ewk_url_request.h: Removed.
  • UIProcess/API/efl/ewk_url_request_private.h: Removed.
  • UIProcess/API/efl/ewk_url_response.cpp: Removed.
  • UIProcess/API/efl/ewk_url_response.h: Removed.
  • UIProcess/API/efl/ewk_url_response_private.h: Removed.
  • UIProcess/API/efl/ewk_url_scheme_request.cpp: Removed.
  • UIProcess/API/efl/ewk_url_scheme_request.h: Removed.
  • UIProcess/API/efl/ewk_url_scheme_request_private.h: Removed.
  • UIProcess/API/efl/ewk_view.cpp: Removed.
  • UIProcess/API/efl/ewk_view.h: Removed.
  • UIProcess/API/efl/ewk_view_configuration.cpp: Removed.
  • UIProcess/API/efl/ewk_view_configuration.h: Removed.
  • UIProcess/API/efl/ewk_view_configuration_private.h: Removed.
  • UIProcess/API/efl/ewk_view_private.h: Removed.
  • UIProcess/API/efl/ewk_window_features.cpp: Removed.
  • UIProcess/API/efl/ewk_window_features.h: Removed.
  • UIProcess/API/efl/ewk_window_features_private.h: Removed.
  • UIProcess/API/efl/tests: Removed.
  • UIProcess/API/efl/tests/UnitTestUtils: Removed.
  • UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestBase.cpp: Removed.
  • UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestBase.h: Removed.
  • UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestEnvironment.cpp: Removed.
  • UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestEnvironment.h: Removed.
  • UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestMain.cpp: Removed.
  • UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestServer.cpp: Removed.
  • UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestServer.h: Removed.
  • UIProcess/API/efl/tests/extensions: Removed.
  • UIProcess/API/efl/tests/extensions/extension_sample.cpp: Removed.
  • UIProcess/API/efl/tests/resources: Removed.
  • UIProcess/API/efl/tests/resources/Page1.html: Removed.
  • UIProcess/API/efl/tests/resources/Page2.html: Removed.
  • UIProcess/API/efl/tests/resources/Page3.html: Removed.
  • UIProcess/API/efl/tests/resources/blank.ico: Removed.
  • UIProcess/API/efl/tests/resources/default_test_page.html: Removed.
  • UIProcess/API/efl/tests/resources/empty_theme.edj: Removed.
  • UIProcess/API/efl/tests/resources/file_chooser.html: Removed.
  • UIProcess/API/efl/tests/resources/frame_flattening_test.html: Removed.
  • UIProcess/API/efl/tests/resources/frame_flattening_test_subframe.html: Removed.
  • UIProcess/API/efl/tests/resources/local_file_access.html: Removed.
  • UIProcess/API/efl/tests/resources/redirect_url_to_default.html: Removed.
  • UIProcess/API/efl/tests/resources/resultMHTML.mht: Removed.
  • UIProcess/API/efl/tests/resources/same_page_navigation.html: Removed.
  • UIProcess/API/efl/tests/resources/spelling_selection_tests.html: Removed.
  • UIProcess/API/efl/tests/resources/spelling_test.html: Removed.
  • UIProcess/API/efl/tests/resources/test.pdf: Removed.
  • UIProcess/API/efl/tests/resources/window_move_resize.html: Removed.
  • UIProcess/API/efl/tests/test_ewk2_accessibility.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_application_cache_manager.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_auth_request.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_back_forward_list.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_color_picker.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_context.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_context_history_callbacks.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_context_menu.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_cookie_manager.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_database_manager.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_download_job.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_eina_shared_string.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_favicon_database.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_file_chooser_request.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_javascript_binding.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_object.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_page.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_page_group.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_popup_menu.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_settings.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_ssl.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_storage_manager.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_text_checker.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_view.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_view_configuration.cpp: Removed.
  • UIProcess/API/efl/tests/test_ewk2_window_features.cpp: Removed.
  • UIProcess/InspectorServer/efl: Removed.
  • UIProcess/InspectorServer/efl/WebInspectorServerEfl.cpp: Removed.
  • UIProcess/Launcher/efl: Removed.
  • UIProcess/Launcher/efl/ProcessLauncherEfl.cpp: Removed.
  • UIProcess/efl: Removed.
  • UIProcess/efl/ContextHistoryClientEfl.cpp: Removed.
  • UIProcess/efl/ContextHistoryClientEfl.h: Removed.
  • UIProcess/efl/ContextMenuClientEfl.cpp: Removed.
  • UIProcess/efl/ContextMenuClientEfl.h: Removed.
  • UIProcess/efl/DownloadManagerEfl.cpp: Removed.
  • UIProcess/efl/DownloadManagerEfl.h: Removed.
  • UIProcess/efl/EasingCurves.cpp: Removed.
  • UIProcess/efl/EasingCurves.h: Removed.
  • UIProcess/efl/EwkDebug.h: Removed.
  • UIProcess/efl/EwkTouchEvent.cpp: Removed.
  • UIProcess/efl/EwkTouchEvent.h: Removed.
  • UIProcess/efl/EwkTouchPoint.cpp: Removed.
  • UIProcess/efl/EwkTouchPoint.h: Removed.
  • UIProcess/efl/FindClientEfl.cpp: Removed.
  • UIProcess/efl/FindClientEfl.h: Removed.
  • UIProcess/efl/FormClientEfl.cpp: Removed.
  • UIProcess/efl/FormClientEfl.h: Removed.
  • UIProcess/efl/InputMethodContextEfl.cpp: Removed.
  • UIProcess/efl/InputMethodContextEfl.h: Removed.
  • UIProcess/efl/PageLoadClientEfl.cpp: Removed.
  • UIProcess/efl/PageLoadClientEfl.h: Removed.
  • UIProcess/efl/PagePolicyClientEfl.cpp: Removed.
  • UIProcess/efl/PagePolicyClientEfl.h: Removed.
  • UIProcess/efl/PageUIClientEfl.cpp: Removed.
  • UIProcess/efl/PageUIClientEfl.h: Removed.
  • UIProcess/efl/PageViewportControllerClientEfl.cpp: Removed.
  • UIProcess/efl/PageViewportControllerClientEfl.h: Removed.
  • UIProcess/efl/RequestManagerClientEfl.cpp: Removed.
  • UIProcess/efl/RequestManagerClientEfl.h: Removed.
  • UIProcess/efl/TextCheckerClientEfl.cpp: Removed.
  • UIProcess/efl/TextCheckerClientEfl.h: Removed.
  • UIProcess/efl/TextCheckerEfl.cpp: Removed.
  • UIProcess/efl/VibrationClientEfl.cpp: Removed.
  • UIProcess/efl/VibrationClientEfl.h: Removed.
  • UIProcess/efl/ViewClientEfl.cpp: Removed.
  • UIProcess/efl/ViewClientEfl.h: Removed.
  • UIProcess/efl/WebColorPickerClient.cpp: Removed.
  • UIProcess/efl/WebColorPickerClient.h: Removed.
  • UIProcess/efl/WebColorPickerEfl.cpp: Removed.
  • UIProcess/efl/WebColorPickerEfl.h: Removed.
  • UIProcess/efl/WebColorPickerResultListenerProxy.cpp: Removed.
  • UIProcess/efl/WebColorPickerResultListenerProxy.h: Removed.
  • UIProcess/efl/WebContextMenuProxyEfl.cpp: Removed.
  • UIProcess/efl/WebContextMenuProxyEfl.h: Removed.
  • UIProcess/efl/WebInspectorProxyEfl.cpp: Removed.
  • UIProcess/efl/WebPageProxyEfl.cpp: Removed.
  • UIProcess/efl/WebPopupItemEfl.cpp: Removed.
  • UIProcess/efl/WebPopupItemEfl.h: Removed.
  • UIProcess/efl/WebPopupMenuProxyEfl.cpp: Removed.
  • UIProcess/efl/WebPopupMenuProxyEfl.h: Removed.
  • UIProcess/efl/WebPreferencesEfl.cpp: Removed.
  • UIProcess/efl/WebProcessPoolEfl.cpp: Removed.
  • UIProcess/efl/WebView.cpp: Removed.
  • UIProcess/efl/WebView.h: Removed.
  • UIProcess/efl/WebViewClient.cpp: Removed.
  • UIProcess/efl/WebViewClient.h: Removed.
  • WebProcess/InjectedBundle/API/efl: Removed.
  • WebProcess/InjectedBundle/API/efl/EWebKit_Extension.h: Removed.
  • WebProcess/InjectedBundle/API/efl/ewk_extension.cpp: Removed.
  • WebProcess/InjectedBundle/API/efl/ewk_extension.h: Removed.
  • WebProcess/InjectedBundle/API/efl/ewk_extension_private.h: Removed.
  • WebProcess/InjectedBundle/API/efl/ewk_page.cpp: Removed.
  • WebProcess/InjectedBundle/API/efl/ewk_page.h: Removed.
  • WebProcess/InjectedBundle/API/efl/ewk_page_private.h: Removed.
  • WebProcess/InjectedBundle/efl: Removed.
  • WebProcess/InjectedBundle/efl/InjectedBundleEfl.cpp: Removed.
  • WebProcess/WebCoreSupport/efl: Removed.
  • WebProcess/WebCoreSupport/efl/WebContextMenuClientEfl.cpp: Removed.
  • WebProcess/WebCoreSupport/efl/WebEditorClientEfl.cpp: Removed.
  • WebProcess/WebCoreSupport/efl/WebErrorsEfl.cpp: Removed.
  • WebProcess/WebCoreSupport/efl/WebPopupMenuEfl.cpp: Removed.
  • WebProcess/WebPage/efl: Removed.
  • WebProcess/WebPage/efl/WebInspectorUIEfl.cpp: Removed.
  • WebProcess/WebPage/efl/WebPageEfl.cpp: Removed.
  • WebProcess/efl: Removed.
  • WebProcess/efl/ExtensionManagerEfl.cpp: Removed.
  • WebProcess/efl/ExtensionManagerEfl.h: Removed.
  • WebProcess/efl/WebInjectedBundleMainEfl.cpp: Removed.
  • WebProcess/efl/WebProcessMainEfl.cpp: Removed.
  • efl: Removed.
  • efl/EWebKit2Config.cmake.in: Removed.
  • efl/EWebKit2ConfigVersion.cmake.in: Removed.
  • efl/ewebkit2-extension.pc.in: Removed.
  • efl/ewebkit2.pc.in: Removed.
5:15 PM Changeset in webkit [212510] by Simon Fraser
  • 2 edits in trunk/Source/WebCore

Add WebUSB to features.json as a "Not Considering".

  • features.json:
5:13 PM Changeset in webkit [212509] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Skip imported/w3c/web-platform-tests/resource-timing tests on Debug.
https://bugs.webkit.org/show_bug.cgi?id=168356

Unreviewed test gardening.

5:10 PM Changeset in webkit [212508] by achristensen@apple.com
  • 24 edits
    3 deletes in trunk

Remove old URL parser
https://bugs.webkit.org/show_bug.cgi?id=168483

Reviewed by Tim Horton.

Source/WebCore:

  • platform/URL.cpp:

(WebCore::isSchemeFirstChar):
(WebCore::isSchemeChar):
(WebCore::URL::URL):
(WebCore::URL::setProtocol):
(WebCore::URL::setHost):
(WebCore::URL::removePort):
(WebCore::URL::setPort):
(WebCore::URL::setHostAndPort):
(WebCore::URL::setUser):
(WebCore::URL::setPass):
(WebCore::URL::setFragmentIdentifier):
(WebCore::URL::setQuery):
(WebCore::URL::setPath):
(WebCore::URL::serialize):
(WebCore::isUserInfoChar): Deleted.
(WebCore::isHostnameChar): Deleted.
(WebCore::isIPv6Char): Deleted.
(WebCore::isPathSegmentEndChar): Deleted.
(WebCore::appendASCII): Deleted.
(WebCore::findFirstOf): Deleted.
(WebCore::checkEncodedString): Deleted.
(WebCore::URL::init): Deleted.
(WebCore::appendEscapingBadChars): Deleted.
(WebCore::escapeAndAppendNonHierarchicalPart): Deleted.
(WebCore::copyPathRemovingDots): Deleted.
(WebCore::hasSlashDotOrDotDot): Deleted.
(WebCore::URL::parse): Deleted.
(WebCore::cannotBeABaseURL): Deleted.
(WebCore::isDefaultPortForScheme): Deleted.
(WebCore::hostPortIsEmptyButCredentialsArePresent): Deleted.
(WebCore::isNonFileHierarchicalScheme): Deleted.
(WebCore::isCanonicalHostnameLowercaseForScheme): Deleted.
(WebCore::findHostnamesInMailToURL): Deleted.
(WebCore::findHostnameInHierarchicalURL): Deleted.
(WebCore::encodeHostnames): Deleted.
(WebCore::encodeRelativeString): Deleted.
(WebCore::substituteBackslashes): Deleted.

  • platform/URLParser.cpp:

(WebCore::URLParser::URLParser):
(WebCore::URLParser::setEnabled): Deleted.
(WebCore::URLParser::enabled): Deleted.

  • platform/URLParser.h:
  • platform/cf/URLCF.cpp:

(WebCore::URL::URL):

  • platform/mac/URLMac.mm:

(WebCore::URL::URL):

Source/WebKit2:

  • NetworkProcess/NetworkProcess.cpp:

(WebKit::NetworkProcess::initializeNetworkProcess):

  • NetworkProcess/NetworkProcessCreationParameters.cpp:

(WebKit::NetworkProcessCreationParameters::encode):
(WebKit::NetworkProcessCreationParameters::decode):

  • NetworkProcess/NetworkProcessCreationParameters.h:
  • PlatformEfl.cmake:
  • PlatformGTK.cmake:
  • PlatformMac.cmake:
  • Shared/Cocoa/WebKit2InitializeCocoa.mm: Removed.
  • Shared/EntryPointUtilities/mac/XPCService/XPCServiceEntryPoint.h:

(WebKit::XPCServiceInitializer):

  • Shared/WebKit2Initialize.cpp:

(WebKit::InitializeWebKit2):

  • Shared/WebKit2Initialize.h:

(): Deleted.

  • Shared/WebProcessCreationParameters.cpp:

(WebKit::WebProcessCreationParameters::encode):
(WebKit::WebProcessCreationParameters::decode):

  • Shared/WebProcessCreationParameters.h:
  • Shared/efl/WebKit2InitializeEFL.cpp: Removed.
  • Shared/gtk/WebKit2InitializeGTK.cpp: Removed.
  • UIProcess/WebProcessPool.cpp:

(WebKit::WebProcessPool::ensureNetworkProcess):
(WebKit::WebProcessPool::createNewWebProcess):

  • WebKit2.xcodeproj/project.pbxproj:
  • WebProcess/WebProcess.cpp:

(WebKit::WebProcess::initializeWebProcess):

Tools:

  • TestWebKitAPI/Tests/WebCore/URLParser.cpp:

(TestWebKitAPI::checkURL):
(TestWebKitAPI::checkRelativeURL):
(TestWebKitAPI::checkURLDifferences):
(TestWebKitAPI::checkRelativeURLDifferences):

5:01 PM Changeset in webkit [212507] by Wenson Hsieh
  • 10 edits in trunk

[WK2] Add additional test infrastructure and unit tests for data interaction
https://bugs.webkit.org/show_bug.cgi?id=168439
<rdar://problem/30557942>

Reviewed by Tim Horton.

Source/WebKit2:

Adds two new _WKTestingDelegate protocol methods that are fired when a 'start data interaction' request has been
sent to the web process, and when a response has been received. See Tools/ChangeLog for more details.

  • UIProcess/API/Cocoa/_WKTestingDelegate.h:

Tools:

Adds test support for additional data interaction scenarios that we currently cannot test, and also adds 7 new
test cases to DataInteractionTests. Most of the changes here refactor and augment DataInteractionSimulator to
support data interaction from See per-method descriptions below for more details.

  • Configurations/TestWebKitAPI.xcconfig:

Add MobileCoreServices to the list of additional frameworks to link against on iOS.

  • TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:

Add a new build phase that copies additional resources from WebKitAdditions/Resources/TestWebKitAPI and dumps
them into TestWebKitAPI.resources/ in the build directory, if the WebKitAdditions folder exists.

  • TestWebKitAPI/Tests/ios/DataInteractionTests.mm:

(-[TestWKWebView editorContainsImageElement]):
(-[TestWKWebView editorValue]):

New helper methods for querying information from the "editor" element in a test page.

(TestWebKitAPI::TEST):
(TestWebKitAPI::runTestsExpectingToObserveEvents): Deleted.

Moves logic for capturing events during a simulated data interaction run from the test file to
DataInteractionSimulator. See -[DataInteractionSimulator observedEventNames].

  • TestWebKitAPI/cocoa/TestWKWebView.h:
  • TestWebKitAPI/cocoa/TestWKWebView.mm:

(-[TestMessageHandler removeMessage:]):
(-[TestWKWebView clearMessageHandlers:]):

Add the ability to clear message handlers from the TestWKWebView.

  • TestWebKitAPI/ios/DataInteractionSimulator.h:
  • TestWebKitAPI/ios/DataInteractionSimulator.mm:

(dataInteractionEventNames):
(-[DataInteractionSimulator initWithWebView:]):
(-[DataInteractionSimulator _resetSimulatedState]):

Moves logic to clear test harness state from any previous runs into a helper. Called at the beginning when
simulating data interaction.

(-[DataInteractionSimulator observedEventNames]):

Returns a list of the names of events relevant to data interaction that were observed over the course of the
most recent run.

(-[DataInteractionSimulator runFrom:to:]):

Changes -run to -runFrom:to:, which takes window-relative start and end locations. This allows the test harness
to run the same data interaction for multiple simulated gestures.

(-[DataInteractionSimulator _advanceProgress]):
(-[DataInteractionSimulator _finishDataInteraction]):
(-[DataInteractionSimulator externalItemProvider]):
(-[DataInteractionSimulator setExternalItemProvider:]):

Adds the -externalItemProvider property to DataInteractionSimulator. Setting this skips the gesture recognition
phase of a test run.

(-[DataInteractionSimulator webViewDidPerformDataInteractionControllerOperation:]):
(-[DataInteractionSimulator webView:beginDataInteractionWithSourceIndex:gestureRecognizer:]):
(-[DataInteractionSimulator webViewDidSendDataInteractionStartRequest:]):
(-[DataInteractionSimulator webView:didReceiveDataInteractionStartResponse:]):

While a request to start data interaction is in flight, put the remainder of the test on hold until the web
process returns. Then continue the test by scheduling a progress advance call. This addresses a race condition
wherein the the web process might take longer than usual to process the request to start data interaction, and
in the meantime, DataInteractionSimulator would end up completing the rest of the test before a response from
the web process is received, which then causes no simulated delegate methods to be fired.

(-[DataInteractionSimulator initWithWebView:startLocation:endLocation:]): Deleted.
(-[DataInteractionSimulator run]): Deleted.

4:57 PM Changeset in webkit [212506] by matthew_hanson@apple.com
  • 4 edits in branches/safari-603-branch/Source

Merge r212256. rdar://problem/30313696

4:57 PM Changeset in webkit [212505] by matthew_hanson@apple.com
  • 13 edits in branches/safari-603-branch

Merge r212134. rdar://problem/30313696

4:56 PM Changeset in webkit [212504] by matthew_hanson@apple.com
  • 3 edits
    2 adds in branches/safari-603-branch

Merge r212214. rdar://problem/30451581

4:56 PM Changeset in webkit [212503] by matthew_hanson@apple.com
  • 2 edits in branches/safari-603-branch/Source/WebKit2

Merge r212198. rdar://problem/29813868

4:56 PM Changeset in webkit [212502] by matthew_hanson@apple.com
  • 2 edits in branches/safari-603-branch/Source/WebKit/win

Merge r212175. rdar://problem/29904368

4:56 PM Changeset in webkit [212501] by matthew_hanson@apple.com
  • 2 edits in branches/safari-603-branch/Source/WebCore

Merge r212174. rdar://problem/29904368

4:56 PM Changeset in webkit [212500] by matthew_hanson@apple.com
  • 41 edits in branches/safari-603-branch

Merge r212173. rdar://problem/29904368

4:56 PM Changeset in webkit [212499] by matthew_hanson@apple.com
  • 4 edits in branches/safari-603-branch

Merge r212172. rdar://problem/30476807

4:56 PM Changeset in webkit [212498] by matthew_hanson@apple.com
  • 2 edits in branches/safari-603-branch/LayoutTests

Merge r212168. rdar://problem/29904368

4:56 PM Changeset in webkit [212497] by matthew_hanson@apple.com
  • 4 edits
    1 add in branches/safari-603-branch

Merge r212167. rdar://problem/30428673

4:56 PM Changeset in webkit [212496] by matthew_hanson@apple.com
  • 8 edits
    10 adds in branches/safari-603-branch

Merge r212153. rdar://problem/30467120

4:56 PM Changeset in webkit [212495] by matthew_hanson@apple.com
  • 3 edits
    2 adds in branches/safari-603-branch

Merge r212152. rdar://problem/30459055

4:56 PM Changeset in webkit [212494] by matthew_hanson@apple.com
  • 4 edits
    1 add in branches/safari-603-branch

Merge r212151. rdar://problem/30090186

4:56 PM Changeset in webkit [212493] by matthew_hanson@apple.com
  • 8 edits in branches/safari-603-branch/Source

Merge r212000. rdar://problem/30313696

4:56 PM Changeset in webkit [212492] by matthew_hanson@apple.com
  • 2 edits in branches/safari-603-branch/Source/WebCore

Merge r211766. rdar://problem/30467124

4:56 PM Changeset in webkit [212491] by matthew_hanson@apple.com
  • 7 edits in branches/safari-603-branch/Source

Merge r211688. rdar://problem/30467177

4:55 PM Changeset in webkit [212490] by matthew_hanson@apple.com
  • 19 edits
    5 adds in branches/safari-603-branch

Merge r211683. rdar://problem/30467272

4:55 PM Changeset in webkit [212489] by matthew_hanson@apple.com
  • 83 edits
    2 adds in branches/safari-603-branch

Merge r211662. rdar://problem/30467322

4:55 PM Changeset in webkit [212488] by matthew_hanson@apple.com
  • 7 edits in branches/safari-603-branch

Merge r211501. rdar://problem/29904368

4:51 PM Changeset in webkit [212487] by Wenson Hsieh
  • 2 edits
    5 deletes in trunk/Tools

Remove unused test pages in TestWebKitAPI
https://bugs.webkit.org/show_bug.cgi?id=168462

Reviewed by Anders Carlsson.

  • TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
  • TestWebKitAPI/Tests/WebKit2Cocoa/autofocus-contenteditable.html: Removed.
  • TestWebKitAPI/Tests/WebKit2Cocoa/background-image-link-and-input.html: Removed.
  • TestWebKitAPI/Tests/WebKit2Cocoa/image-and-contenteditable.html: Removed.
  • TestWebKitAPI/Tests/WebKit2Cocoa/image-and-textarea.html: Removed.
  • TestWebKitAPI/Tests/WebKit2Cocoa/link-and-input.html: Removed.
4:48 PM Changeset in webkit [212486] by achristensen@apple.com
  • 3 edits in trunk/LayoutTests

Rebase tests after r212470
https://bugs.webkit.org/show_bug.cgi?id=168461

  • fast/dom/DOMURL/set-href-attribute-protocol-expected.txt:
  • fast/dom/HTMLAnchorElement/set-href-attribute-protocol-expected.txt:

I updated the tests but not the results :(

4:33 PM Changeset in webkit [212485] by andersca@apple.com
  • 3 edits in trunk/Source/WebCore

Build fixes.

  • page/gtk/EventHandlerGtk.cpp:

(WebCore::EventHandler::createDraggingDataTransfer):

  • page/win/EventHandlerWin.cpp:

(WebCore::EventHandler::createDraggingDataTransfer):

4:20 PM Changeset in webkit [212484] by andersca@apple.com
  • 57 edits in trunk/Source/WebCore

Remove EFL from WebCore
https://bugs.webkit.org/show_bug.cgi?id=168477

Reviewed by Brian Burg.

  • accessibility/AccessibilityList.cpp:

(WebCore::AccessibilityList::childHasPseudoVisibleListItemMarkers):

  • accessibility/AccessibilityNodeObject.cpp:

(WebCore::AccessibilityNodeObject::canSetValueAttribute):

  • accessibility/AccessibilityObject.cpp:

(WebCore::AccessibilityObject::AccessibilityObject):
(WebCore::AccessibilityObject::textIteratorBehaviorForTextRange):

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

(WebCore::AccessibilityRenderObject::determineAccessibilityRole):

  • accessibility/AccessibilityTableColumn.cpp:

(WebCore::AccessibilityTableColumn::computeAccessibilityIsIgnored):

  • accessibility/AccessibilityTableHeaderContainer.cpp:

(WebCore::AccessibilityTableHeaderContainer::computeAccessibilityIsIgnored):

  • crypto/CryptoKey.cpp:
  • crypto/keys/CryptoKeyRSA.h:
  • dom/Document.cpp:

(WebCore::Document::implicitClose):

  • editing/Editor.cpp:

(WebCore::Editor::performCutOrCopy):
(WebCore::Editor::copyImage):

  • editing/Editor.h:
  • editing/FrameSelection.h:
  • html/HTMLCanvasElement.cpp:

(WebCore::requiresAcceleratedCompositingForWebGL):

  • inspector/InspectorFrontendHost.cpp:

(WebCore::InspectorFrontendHost::port):

  • loader/HistoryController.cpp:

(WebCore::HistoryController::restoreScrollPositionAndViewState):

  • loader/icon/IconDatabase.cpp:

(WebCore::IconDatabase::performURLImport):

  • page/ContextMenuController.cpp:

(WebCore::ContextMenuController::contextMenuItemSelected):
(WebCore::ContextMenuController::populate):
(WebCore::ContextMenuController::checkOrEnableIfNeeded):

  • page/DragController.cpp:

(WebCore::DragController::startDrag):

  • page/EventHandler.cpp:

(WebCore::EventHandler::eventInvertsTabsToLinksClientCallResult):

  • page/FrameView.cpp:

(WebCore::FrameView::layout):

  • platform/ContextMenuItem.h:
  • platform/Cursor.h:
  • platform/DragData.h:
  • platform/DragImage.h:
  • platform/FileSystem.h:
  • platform/LocalizedStrings.h:
  • platform/MIMETypeRegistry.cpp:

(WebCore::initializeSupportedImageMIMETypesForEncoding):

  • platform/NotImplemented.h:
  • platform/Pasteboard.h:
  • platform/PlatformKeyboardEvent.h:
  • platform/PlatformMouseEvent.h:
  • platform/PlatformSpeechSynthesizer.h:
  • platform/PlatformWheelEvent.h:
  • platform/Widget.h:
  • platform/graphics/ANGLEWebKitBridge.h:
  • platform/graphics/BitmapImage.h:
  • platform/graphics/GraphicsContext3D.h:
  • platform/graphics/Icon.h:
  • platform/graphics/Image.h:

(WebCore::Image::getEvasObject): Deleted.

  • platform/graphics/IntPoint.h:
  • platform/graphics/IntRect.h:
  • platform/graphics/opengl/Extensions3DOpenGL.cpp:

(WebCore::Extensions3DOpenGL::createVertexArrayOES):
(WebCore::Extensions3DOpenGL::deleteVertexArrayOES):
(WebCore::Extensions3DOpenGL::isVertexArrayOES):
(WebCore::Extensions3DOpenGL::bindVertexArrayOES):
(WebCore::Extensions3DOpenGL::supportsExtension):

  • platform/graphics/opengl/Extensions3DOpenGL.h:
  • platform/graphics/opengl/Extensions3DOpenGLCommon.cpp:
  • platform/graphics/opengl/GraphicsContext3DOpenGL.cpp:
  • platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp:

(WebCore::GraphicsContext3D::createForCurrentGLContext):
(WebCore::GraphicsContext3D::reshape):
(WebCore::GraphicsContext3D::createVertexArray):
(WebCore::GraphicsContext3D::deleteVertexArray):
(WebCore::GraphicsContext3D::isVertexArray):
(WebCore::GraphicsContext3D::bindVertexArray):

  • platform/graphics/opengl/TemporaryOpenGLSetting.cpp:
  • platform/network/NetworkStateNotifier.h:
  • platform/posix/FileSystemPOSIX.cpp:
  • rendering/RenderLayerCompositor.cpp:

(WebCore::RenderLayerCompositor::ensureRootLayer):

  • rendering/RenderText.cpp:

(WebCore::RenderText::previousOffsetForBackwardDeletion):

  • xml/XSLStyleSheetLibxslt.cpp:
  • xml/XSLTExtensions.cpp:
  • xml/XSLTProcessorLibxslt.cpp:
  • xml/XSLTUnicodeSort.cpp:
4:08 PM Changeset in webkit [212483] by keith_miller@apple.com
  • 4 edits in trunk/Source/JavaScriptCore
ASSERTION FAILED: vm.heap.mutatorState() == MutatorState::Running
vm.apiLock().ownerThread() != std::this_thread::get_id()

https://bugs.webkit.org/show_bug.cgi?id=168354

Reviewed by Geoffrey Garen.

Instead of adding a custom vmEntryGlobalObject for the debugger
we can just have it use vmEntryScope instead.

  • debugger/Debugger.cpp:

(JSC::Debugger::detach):

  • interpreter/CallFrame.cpp:

(JSC::CallFrame::vmEntryGlobalObjectForDebuggerDetach): Deleted.

  • interpreter/CallFrame.h:
3:58 PM Changeset in webkit [212482] by Alan Bujtas
  • 2 edits in trunk/Source/WebCore

Simple line layout: Add forced line layout info to coverage print.
https://bugs.webkit.org/show_bug.cgi?id=168470

Reviewed by Simon Fraser.

This is about potential vs. actual coverage:

Simple line layout potential coverage: 65.05%
Simple line layout actual coverage: 46.60%
Forced line layout blocks: 4 content length: 57(18.45%)

Not testable.

  • rendering/SimpleLineLayout.cpp:

(WebCore::SimpleLineLayout::printSimpleLineLayoutCoverage):

3:52 PM Changeset in webkit [212481] by andersca@apple.com
  • 5 edits in trunk/Source/WebCore

Rename DataTransfer functions to indicate whether they are for dragging or dropping
https://bugs.webkit.org/show_bug.cgi?id=168478

Reviewed by Tim Horton.

  • dom/DataTransfer.cpp:

(WebCore::DataTransfer::createForDrag):
(WebCore::DataTransfer::createForDrop):
(WebCore::DataTransfer::createForDragAndDrop): Deleted.

  • dom/DataTransfer.h:
  • page/DragController.cpp:

(WebCore::DragController::dragExited):
(WebCore::DragController::performDragOperation):
(WebCore::DragController::tryDHTMLDrag):

  • page/mac/EventHandlerMac.mm:

(WebCore::EventHandler::createDraggingDataTransfer):

3:48 PM Changeset in webkit [212480] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Mark media/modern-media-controls/airplay-button/airplay-button.html as flaky.
https://bugs.webkit.org/show_bug.cgi?id=168409

Unreviewed test gardening.

  • platform/mac-wk1/TestExpectations:
3:43 PM Changeset in webkit [212479] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Mark media/modern-media-controls/tracks-button/tracks-button.html as flaky.
https://bugs.webkit.org/show_bug.cgi?id=168476

Unreviewed test gardening.

  • platform/mac-wk1/TestExpectations:
3:34 PM Changeset in webkit [212478] by Simon Fraser
  • 2 edits in trunk/LayoutTests

REGRESSION (r212197): [ios-simulator Debug WK2] LayoutTest fast/css/target-fragment-match.html is failing
https://bugs.webkit.org/show_bug.cgi?id=168239

In iOS WK2, resetting the scroll position after history navigation involves a trip
through the UI process. Attempted to de-flake this test by using a nested setTimeout(0).

  • fast/css/target-fragment-match.html:
3:33 PM Changeset in webkit [212477] by bshafiei@apple.com
  • 1 delete in tags/Safari-603.1.29.1

Delete tag.

3:31 PM Changeset in webkit [212476] by andersca@apple.com
  • 3 edits in trunk/Source/WebCore

Rename EventHandler::freeDataTransfer to invalidateDataTransfer
https://bugs.webkit.org/show_bug.cgi?id=168472

Reviewed by Tim Horton.

The code doesn't necessarily free the data transfer object, so rename the member function
to reflect that. Also, get rid of a goto.

  • page/EventHandler.cpp:

(WebCore::EventHandler::invalidateDataTransfer):
(WebCore::EventHandler::dragSourceEndedAt):
(WebCore::EventHandler::handleDrag):
(WebCore::EventHandler::freeDataTransfer): Deleted.

  • page/EventHandler.h:
3:26 PM Changeset in webkit [212475] by aakash_jain@apple.com
  • 2 edits in trunk/Source/WebKit2

Remove unused method WKBundlePageCopyContextMenuItemTitle
https://bugs.webkit.org/show_bug.cgi?id=168456

Reviewed by Dan Bernstein.

  • WebProcess/InjectedBundle/API/c/WKBundlePagePrivate.h: Removed WKBundlePageCopyContextMenuItemTitle.
3:22 PM Changeset in webkit [212474] by bshafiei@apple.com
  • 5 edits in tags/Safari-603.1.29.1/Source

Versioning.

3:18 PM Changeset in webkit [212473] by aakash_jain@apple.com
  • 2 edits in trunk/Source/WebKit2

Remove unused WKContextGetProcessSuppressionEnabled and WKContextSetProcessSuppressionEnabled
https://bugs.webkit.org/show_bug.cgi?id=168460

Reviewed by Dan Bernstein.

  • UIProcess/API/C/mac/WKContextPrivateMac.h:
3:16 PM Changeset in webkit [212472] by fpizlo@apple.com
  • 3 edits in trunk/Source/JavaScriptCore

Unreviewed, fix cloop build.

  • heap/Heap.cpp:

(JSC::Heap::stopThePeriphery):

  • runtime/JSLock.cpp:
3:16 PM Changeset in webkit [212471] by aakash_jain@apple.com
  • 2 edits in trunk/Source/WebKit2

Removed unused method WKContextGetProcessModel
https://bugs.webkit.org/show_bug.cgi?id=168457

Reviewed by Dan Bernstein.

  • UIProcess/API/C/WKContext.h: Removed WKContextGetProcessModel.
3:13 PM Changeset in webkit [212470] by achristensen@apple.com
  • 11 edits in trunk

Special URLs without a host are invalid
https://bugs.webkit.org/show_bug.cgi?id=168461

Reviewed by Tim Horton.

LayoutTests/imported/w3c:

  • web-platform-tests/url/a-element-expected.txt:
  • web-platform-tests/url/a-element-xhtml-expected.txt:
  • web-platform-tests/url/url-constructor-expected.txt:

Source/WebCore:

http://? should be invalid. This matches Chrome and the spec and the intent of my implementation
of URLParser which already fails with urls like http:// and this was just an oversight.
Covered by newly passing web platform tests. Updated API tests.

  • platform/URLParser.cpp:

(WebCore::URLParser::parse):

Tools:

  • TestWebKitAPI/Tests/WebCore/URLParser.cpp:

(TestWebKitAPI::TEST_F):

LayoutTests:

  • fast/dom/DOMURL/set-href-attribute-protocol.html:
  • fast/dom/HTMLAnchorElement/script-tests/set-href-attribute-protocol.js:

Rebase tests. The HTMLAnchorElement test is a little strange, but it'll be cleaned up once
url-setters.html in the web platform tests is cleaned up.

3:09 PM Changeset in webkit [212469] by bshafiei@apple.com
  • 1 copy in tags/Safari-603.1.29.1

New tag.

3:02 PM Changeset in webkit [212468] by Alan Bujtas
  • 6 edits in trunk/Source/WebCore

Simple line layout: Add support for pagination.
https://bugs.webkit.org/show_bug.cgi?id=168355
<rdar://problem/30119769>

Reviewed by David Hyatt.

This patch adds basic support for paginated content including widows and orphans.

This is based on the normal line layout pagination logic. However there are 2 major
advantages here (and they allow us to have a much simpler logic):

  1. all the lines are positioned by the time we start paginating them and
  2. lines always have uniform heights.

This is not enabled yet.

  • rendering/RenderBlockFlow.h:
  • rendering/SimpleLineLayout.cpp:

(WebCore::SimpleLineLayout::computeLineTopAndBottomWithOverflow):
(WebCore::SimpleLineLayout::computeLineBreakIndex):
(WebCore::SimpleLineLayout::setPageBreakForLine):
(WebCore::SimpleLineLayout::computeOffsetAfterLineBreak):
(WebCore::SimpleLineLayout::updateMinimumPageHeight):
(WebCore::SimpleLineLayout::adjustLinePositionsForPagination):
(WebCore::SimpleLineLayout::create):
(WebCore::SimpleLineLayout::Layout::create):
(WebCore::SimpleLineLayout::Layout::Layout):

  • rendering/SimpleLineLayout.h:

(WebCore::SimpleLineLayout::Layout::isPaginated):
(WebCore::SimpleLineLayout::Layout::struts):

  • rendering/SimpleLineLayoutFunctions.h:

(WebCore::SimpleLineLayout::computeFlowHeight):

  • rendering/SimpleLineLayoutResolver.h:

(WebCore::SimpleLineLayout::RunResolver::Run::computeBaselinePosition):

3:01 PM Changeset in webkit [212467] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Skip imported/w3c/web-platform-tests/resource-timing/rt-resource-ignored.html.
https://bugs.webkit.org/show_bug.cgi?id=168356

Unreviewed test gardening.

2:33 PM Changeset in webkit [212466] by fpizlo@apple.com
  • 45 edits
    18 adds
    3 deletes in trunk

The collector thread should only start when the mutator doesn't have heap access
https://bugs.webkit.org/show_bug.cgi?id=167737

Reviewed by Keith Miller.
JSTests:


Add versions of splay that flash heap access, to simulate what might happen if a third-party app
was running concurrent GC. In this case, we might actually start the collector thread.

  • stress/splay-flash-access-1ms.js: Added.

(performance.now):
(this.Setup.setup.setup):
(this.TearDown.tearDown.tearDown):
(Benchmark):
(BenchmarkResult):
(BenchmarkResult.prototype.valueOf):
(BenchmarkSuite):
(alert):
(Math.random):
(BenchmarkSuite.ResetRNG):
(RunStep):
(BenchmarkSuite.RunSuites):
(BenchmarkSuite.CountBenchmarks):
(BenchmarkSuite.GeometricMean):
(BenchmarkSuite.GeometricMeanTime):
(BenchmarkSuite.AverageAbovePercentile):
(BenchmarkSuite.GeometricMeanLatency):
(BenchmarkSuite.FormatScore):
(BenchmarkSuite.prototype.NotifyStep):
(BenchmarkSuite.prototype.NotifyResult):
(BenchmarkSuite.prototype.NotifyError):
(BenchmarkSuite.prototype.RunSingleBenchmark):
(RunNextSetup):
(RunNextBenchmark):
(RunNextTearDown):
(BenchmarkSuite.prototype.RunStep):
(GeneratePayloadTree):
(GenerateKey):
(SplayUpdateStats):
(InsertNewNode):
(SplaySetup):
(SplayTearDown):
(SplayRun):
(SplayTree):
(SplayTree.prototype.isEmpty):
(SplayTree.prototype.insert):
(SplayTree.prototype.remove):
(SplayTree.prototype.find):
(SplayTree.prototype.findMax):
(SplayTree.prototype.findGreatestLessThan):
(SplayTree.prototype.exportKeys):
(SplayTree.prototype.splay_):
(SplayTree.Node):
(SplayTree.Node.prototype.traverse_):
(jscSetUp):
(jscTearDown):
(jscRun):
(averageAbovePercentile):
(printPercentile):

  • stress/splay-flash-access.js: Added.

(performance.now):
(this.Setup.setup.setup):
(this.TearDown.tearDown.tearDown):
(Benchmark):
(BenchmarkResult):
(BenchmarkResult.prototype.valueOf):
(BenchmarkSuite):
(alert):
(Math.random):
(BenchmarkSuite.ResetRNG):
(RunStep):
(BenchmarkSuite.RunSuites):
(BenchmarkSuite.CountBenchmarks):
(BenchmarkSuite.GeometricMean):
(BenchmarkSuite.GeometricMeanTime):
(BenchmarkSuite.AverageAbovePercentile):
(BenchmarkSuite.GeometricMeanLatency):
(BenchmarkSuite.FormatScore):
(BenchmarkSuite.prototype.NotifyStep):
(BenchmarkSuite.prototype.NotifyResult):
(BenchmarkSuite.prototype.NotifyError):
(BenchmarkSuite.prototype.RunSingleBenchmark):
(RunNextSetup):
(RunNextBenchmark):
(RunNextTearDown):
(BenchmarkSuite.prototype.RunStep):
(GeneratePayloadTree):
(GenerateKey):
(SplayUpdateStats):
(InsertNewNode):
(SplaySetup):
(SplayTearDown):
(SplayRun):
(SplayTree):
(SplayTree.prototype.isEmpty):
(SplayTree.prototype.insert):
(SplayTree.prototype.remove):
(SplayTree.prototype.find):
(SplayTree.prototype.findMax):
(SplayTree.prototype.findGreatestLessThan):
(SplayTree.prototype.exportKeys):
(SplayTree.prototype.splay_):
(SplayTree.Node):
(SplayTree.Node.prototype.traverse_):
(jscSetUp):
(jscTearDown):
(jscRun):
(averageAbovePercentile):
(printPercentile):

Source/JavaScriptCore:


This turns the collector thread's workflow into a state machine, so that the mutator thread can
run it directly. This reduces the amount of synchronization we do with the collector thread, and
means that most apps will never start the collector thread. The collector thread will still start
when we need to finish collecting and we don't have heap access.

In this new world, "stopping the world" means relinquishing control of collection to the mutator.
This means tracking who is conducting collection. I use the GCConductor enum to say who is
conducting. It's either GCConductor::Mutator or GCConductor::Collector. I use the term "conn" to
refer to the concept of conducting (having the conn, relinquishing the conn, taking the conn).
So, stopping the world means giving the mutator the conn. Releasing heap access means giving the
collector the conn.

This meant bringing back the conservative scan of the calling thread. It turns out that this
scan was too slow to be called on each GC increment because apparently setjmp() now does system
calls. So, I wrote our own callee save register saving for the GC. Then I had doubts about
whether or not it was correct, so I also made it so that the GC only rarely asks for the register
state. I think we still want to use my register saving code instead of setjmp because setjmp
seems to save things we don't need, and that could make us overly conservative.

It turns out that this new scheduling discipline makes the old space-time scheduler perform
better than the new stochastic space-time scheduler on systems with fewer than 4 cores. This is
because the mutator having the conn enables us to time the mutator<->collector context switches
by polling. The OS is never involved. So, we can use super precise timing. This allows the old
space-time schduler to shine like it hadn't before.

The splay results imply that this is all a good thing. On 2-core systems, this reduces pause
times by 40% and it increases throughput about 5%. On 1-core systems, this reduces pause times by
half and reduces throughput by 8%. On 4-or-more-core systems, this doesn't seem to have much
effect.

  • CMakeLists.txt:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • dfg/DFGWorklist.cpp:

(JSC::DFG::Worklist::ThreadBody::ThreadBody):
(JSC::DFG::Worklist::dump):
(JSC::DFG::numberOfWorklists):
(JSC::DFG::ensureWorklistForIndex):
(JSC::DFG::existingWorklistForIndexOrNull):
(JSC::DFG::existingWorklistForIndex):

  • dfg/DFGWorklist.h:

(JSC::DFG::numberOfWorklists): Deleted.
(JSC::DFG::ensureWorklistForIndex): Deleted.
(JSC::DFG::existingWorklistForIndexOrNull): Deleted.
(JSC::DFG::existingWorklistForIndex): Deleted.

  • heap/CollectingScope.h: Added.

(JSC::CollectingScope::CollectingScope):
(JSC::CollectingScope::~CollectingScope):

  • heap/CollectorPhase.cpp: Added.

(JSC::worldShouldBeSuspended):
(WTF::printInternal):

  • heap/CollectorPhase.h: Added.
  • heap/EdenGCActivityCallback.cpp:

(JSC::EdenGCActivityCallback::lastGCLength):

  • heap/FullGCActivityCallback.cpp:

(JSC::FullGCActivityCallback::doCollection):
(JSC::FullGCActivityCallback::lastGCLength):

  • heap/GCConductor.cpp: Added.

(JSC::gcConductorShortName):
(WTF::printInternal):

  • heap/GCConductor.h: Added.
  • heap/Heap.cpp:

(JSC::Heap::Thread::Thread):
(JSC::Heap::Heap):
(JSC::Heap::lastChanceToFinalize):
(JSC::Heap::gatherStackRoots):
(JSC::Heap::updateObjectCounts):
(JSC::Heap::shouldCollectInCollectorThread):
(JSC::Heap::collectInCollectorThread):
(JSC::Heap::checkConn):
(JSC::Heap::runCurrentPhase):
(JSC::Heap::runNotRunningPhase):
(JSC::Heap::runBeginPhase):
(JSC::Heap::runFixpointPhase):
(JSC::Heap::runConcurrentPhase):
(JSC::Heap::runReloopPhase):
(JSC::Heap::runEndPhase):
(JSC::Heap::changePhase):
(JSC::Heap::finishChangingPhase):
(JSC::Heap::stopThePeriphery):
(JSC::Heap::resumeThePeriphery):
(JSC::Heap::stopTheMutator):
(JSC::Heap::resumeTheMutator):
(JSC::Heap::stopIfNecessarySlow):
(JSC::Heap::collectInMutatorThread):
(JSC::Heap::collectInMutatorThreadImpl):
(JSC::Heap::waitForCollector):
(JSC::Heap::acquireAccessSlow):
(JSC::Heap::releaseAccessSlow):
(JSC::Heap::relinquishConn):
(JSC::Heap::finishRelinquishingConn):
(JSC::Heap::handleNeedFinalize):
(JSC::Heap::notifyThreadStopping):
(JSC::Heap::finalize):
(JSC::Heap::requestCollection):
(JSC::Heap::waitForCollection):
(JSC::Heap::updateAllocationLimits):
(JSC::Heap::didFinishCollection):
(JSC::Heap::collectIfNecessaryOrDefer):
(JSC::Heap::preventCollection):
(JSC::Heap::performIncrement):
(JSC::Heap::markToFixpoint): Deleted.
(JSC::Heap::shouldCollectInThread): Deleted.
(JSC::Heap::collectInThread): Deleted.
(JSC::Heap::stopTheWorld): Deleted.
(JSC::Heap::resumeTheWorld): Deleted.

  • heap/Heap.h:

(JSC::Heap::machineThreads):
(JSC::Heap::lastFullGCLength):
(JSC::Heap::lastEdenGCLength):
(JSC::Heap::increaseLastFullGCLength):

  • heap/HeapInlines.h:

(JSC::Heap::mutatorIsStopped): Deleted.

  • heap/HeapStatistics.cpp: Removed.
  • heap/HeapStatistics.h: Removed.
  • heap/HelpingGCScope.h: Removed.
  • heap/MachineStackMarker.cpp:

(JSC::MachineThreads::gatherFromCurrentThread):
(JSC::MachineThreads::gatherConservativeRoots):

  • heap/MachineStackMarker.h:
  • heap/MarkedBlock.cpp:

(JSC::MarkedBlock::Handle::sweep):

  • heap/MutatorState.cpp:

(WTF::printInternal):

  • heap/MutatorState.h:
  • heap/RegisterState.h: Added.
  • heap/SlotVisitor.cpp:

(JSC::SlotVisitor::drainFromShared):
(JSC::SlotVisitor::drainInParallelPassively):
(JSC::SlotVisitor::donateAll):

  • heap/StochasticSpaceTimeMutatorScheduler.cpp:

(JSC::StochasticSpaceTimeMutatorScheduler::beginCollection):
(JSC::StochasticSpaceTimeMutatorScheduler::synchronousDrainingDidStall):
(JSC::StochasticSpaceTimeMutatorScheduler::timeToStop):

  • heap/SweepingScope.h: Added.

(JSC::SweepingScope::SweepingScope):
(JSC::SweepingScope::~SweepingScope):

  • jit/JITWorklist.cpp:

(JSC::JITWorklist::Thread::Thread):

  • jsc.cpp:

(GlobalObject::finishCreation):
(functionFlashHeapAccess):

  • runtime/InitializeThreading.cpp:

(JSC::initializeThreading):

  • runtime/JSCellInlines.h:

(JSC::JSCell::classInfo):

  • runtime/Options.cpp:

(JSC::overrideDefaults):

  • runtime/Options.h:
  • runtime/TestRunnerUtils.cpp:

(JSC::finalizeStatsAtEndOfTesting):

Source/WebCore:

Added new tests in JSTests and LayoutTests.

The WebCore changes involve:

  • Refactoring around new header discipline.


  • Adding crazy GC APIs to window.internals to enable us to test the GC's runloop discipline.
  • ForwardingHeaders/heap/GCFinalizationCallback.h: Added.
  • ForwardingHeaders/heap/IncrementalSweeper.h: Added.
  • ForwardingHeaders/heap/MachineStackMarker.h: Added.
  • ForwardingHeaders/heap/RunningScope.h: Added.
  • bindings/js/CommonVM.cpp:
  • testing/Internals.cpp:

(WebCore::Internals::parserMetaData):
(WebCore::Internals::isReadableStreamDisturbed):
(WebCore::Internals::isGCRunning):
(WebCore::Internals::addGCFinalizationCallback):
(WebCore::Internals::stopSweeping):
(WebCore::Internals::startSweeping):

  • testing/Internals.h:
  • testing/Internals.idl:

Source/WTF:


Extend the use of AbstractLocker so that we can use more locking idioms.

  • wtf/AutomaticThread.cpp:

(WTF::AutomaticThreadCondition::notifyOne):
(WTF::AutomaticThreadCondition::notifyAll):
(WTF::AutomaticThreadCondition::add):
(WTF::AutomaticThreadCondition::remove):
(WTF::AutomaticThreadCondition::contains):
(WTF::AutomaticThread::AutomaticThread):
(WTF::AutomaticThread::tryStop):
(WTF::AutomaticThread::isWaiting):
(WTF::AutomaticThread::notify):
(WTF::AutomaticThread::start):
(WTF::AutomaticThread::threadIsStopping):

  • wtf/AutomaticThread.h:
  • wtf/NumberOfCores.cpp:

(WTF::numberOfProcessorCores): Allow this to be overridden for testing.

  • wtf/ParallelHelperPool.cpp:

(WTF::ParallelHelperClient::finish):
(WTF::ParallelHelperClient::claimTask):
(WTF::ParallelHelperPool::Thread::Thread):
(WTF::ParallelHelperPool::didMakeWorkAvailable):
(WTF::ParallelHelperPool::hasClientWithTask):
(WTF::ParallelHelperPool::getClientWithTask):

  • wtf/ParallelHelperPool.h:

Tools:


Make more tests collect continuously.

  • Scripts/run-jsc-stress-tests:

LayoutTests:


When running in WebCore, the JSC GC may find itself completing draining in the parallel helpers
at a time when the main thread runloop is idle. If the mutator has the conn, then there will not
be any GC threads to receive the notification from the shared mark stack condition variable. So
nobody will know that we need to reloop.

Fortunately, the SlotVisitor now knows that it has to schedule the stopIfNecessary timer in
addition to notifying the condition variable.

This adds a variant of splay that quickly builds up a big enough heap to cause significant GCs to
happen and then waits until a GC is running. When it's running, it registers a callback to the
GC's finalize phase. When the callback runs, it finishes the test. This is a barely-sound test
that uses a lot of while box API from Internals, but it proves that the SlotVisitor's runloop
ping works: if I comment it out, this test will always fail. Otherwise it always succeeds.

  • js/dom/gc-slot-visitor-parallel-drain-pings-runloop-when-done.html: Added.
2:31 PM Changeset in webkit [212465] by jiewen_tan@apple.com
  • 27 edits in trunk

[WebCrypto] remove toJSValueFromJsonWebKey from custom SubtleCrypto binding codes
https://bugs.webkit.org/show_bug.cgi?id=167026

Reviewed by Chris Dumez.

Source/WebCore:

Covered by existing tests.

  • bindings/js/JSSubtleCryptoCustom.cpp:

(WebCore::jsSubtleCryptoFunctionExportKeyPromise):
(WebCore::jsSubtleCryptoFunctionWrapKeyPromise):
(WebCore::toJSValueFromJsonWebKey): Deleted.

  • crypto/JsonWebKey.h:
  • crypto/JsonWebKey.idl:
  • crypto/RsaOtherPrimesInfo.idl:

Change std::optional<String> to String in order to use toJS<IDLDictionary<JsonWebKey>>.

  • crypto/algorithms/CryptoAlgorithmAES_CBC.cpp:

(WebCore::CryptoAlgorithmAES_CBC::importKey):

  • crypto/algorithms/CryptoAlgorithmAES_KW.cpp:

(WebCore::CryptoAlgorithmAES_KW::importKey):

  • crypto/algorithms/CryptoAlgorithmHMAC.cpp:

(WebCore::CryptoAlgorithmHMAC::importKey):

  • crypto/algorithms/CryptoAlgorithmRSAES_PKCS1_v1_5.cpp:

(WebCore::CryptoAlgorithmRSAES_PKCS1_v1_5::importKey):

  • crypto/algorithms/CryptoAlgorithmRSASSA_PKCS1_v1_5.cpp:

(WebCore::CryptoAlgorithmRSASSA_PKCS1_v1_5::importKey):

  • crypto/algorithms/CryptoAlgorithmRSA_OAEP.cpp:

(WebCore::CryptoAlgorithmRSA_OAEP::importKey):

  • crypto/keys/CryptoKeyAES.cpp:

(WebCore::CryptoKeyAES::importJwk):
Only check if key_ops contains all of the specified usages when key_ops field of jwk is present,
as per the specification: https://www.w3.org/TR/WebCryptoAPI/#aes-cbc-operations

  • crypto/keys/CryptoKeyAES.h:
  • crypto/keys/CryptoKeyHMAC.cpp:

(WebCore::CryptoKeyHMAC::importJwk):

  • crypto/keys/CryptoKeyHMAC.h:
  • crypto/keys/CryptoKeyRSA.cpp:

(WebCore::CryptoKeyRSA::importJwk):
Accommodate the change from std::optional<String> to String.

  • crypto/mac/CryptoKeyRSAMac.cpp:

(WebCore::CryptoKeyRSA::create):
Add a null check for p.

LayoutTests:

  • crypto/subtle/aes-cbc-import-key-wrap-jwk-rsa-key-private.html:
  • crypto/subtle/aes-cbc-import-key-wrap-jwk-rsa-key-public.html:

Order of attributes inside JWK is different after this patch.

  • crypto/subtle/aes-import-key-malformed-parameters-expected.txt:
  • crypto/subtle/aes-import-key-malformed-parameters.html:
  • crypto/subtle/hmac-import-key-malformed-parameters-expected.txt:
  • crypto/subtle/hmac-import-key-malformed-parameters.html:
  • crypto/subtle/rsa-import-key-malformed-parameters-expected.txt:
  • crypto/subtle/rsa-import-key-malformed-parameters.html:
  • crypto/workers/subtle/resources/aes-cbc-import-key-wrap-key.js:
2:28 PM Changeset in webkit [212464] by andersca@apple.com
  • 8 edits in trunk/Source/JavaScriptCore

Remove EFL from JavaScriptCore
https://bugs.webkit.org/show_bug.cgi?id=168459

Reviewed by Geoffrey Garen.

  • heap/GCActivityCallback.cpp:

(JSC::GCActivityCallback::GCActivityCallback):
(JSC::GCActivityCallback::cancelTimer):
(JSC::GCActivityCallback::didAllocate):

  • heap/GCActivityCallback.h:
  • heap/HeapTimer.cpp:

(JSC::HeapTimer::add): Deleted.
(JSC::HeapTimer::stop): Deleted.
(JSC::HeapTimer::timerEvent): Deleted.

  • heap/HeapTimer.h:
  • inspector/EventLoop.cpp:

(Inspector::EventLoop::cycle):

  • jsc.cpp:

(main):

  • tools/CodeProfiling.cpp:

(JSC::CodeProfiling::begin):
(JSC::CodeProfiling::end):

2:04 PM Changeset in webkit [212463] by Antti Koivisto
  • 15 edits in trunk/Source/WebCore

Execute pending scripts asynchronously after stylesheet loads complete
https://bugs.webkit.org/show_bug.cgi?id=168367
rdar://problem/30561379

Reviewed by Andreas Kling.

The current synchronous execution is fragile and creates various problems.

  • css/StyleSheetContents.cpp:

(WebCore::StyleSheetContents::checkLoaded):

  • dom/ContainerNode.cpp:

(WebCore::ContainerNode::takeAllChildrenFrom):
(WebCore::ContainerNode::notifyChildInserted):
(WebCore::ContainerNode::removeChild):
(WebCore::ContainerNode::parserRemoveChild):
(WebCore::ContainerNode::removeChildren):

Remove various places where we would trigger delayed synchronous execution.

  • dom/Document.cpp:

(WebCore::Document::Document):
(WebCore::Document::recalcStyle):

Trigger scroll to anchor at the end of style resolution instead of when style sheet load completes.

(WebCore::Document::didRemoveAllPendingStylesheet):

Call asynchronous script execution function.

  • dom/Document.h:

(WebCore::Document::setNeedsNotifyRemoveAllPendingStylesheet): Deleted.
(WebCore::Document::notifyRemovePendingSheetIfNeeded): Deleted.

  • dom/ScriptableDocumentParser.cpp:

(WebCore::ScriptableDocumentParser::ScriptableDocumentParser):
(WebCore::ScriptableDocumentParser::executeScriptsWaitingForStylesheetsSoon):
(WebCore::ScriptableDocumentParser::scriptsWaitingForStylesheetsExecutionTimerFired):

Add a timer for executing pending scripts.

(WebCore::ScriptableDocumentParser::detach):

  • dom/ScriptableDocumentParser.h:

(WebCore::ScriptableDocumentParser::executeScriptsWaitingForStylesheets):

  • html/HTMLLinkElement.cpp:

(WebCore::HTMLLinkElement::removedFrom):
(WebCore::HTMLLinkElement::removePendingSheet):

  • html/HTMLLinkElement.h:
  • html/parser/HTMLDocumentParser.cpp:

(WebCore::HTMLDocumentParser::detach):

  • loader/DocumentLoader.cpp:

(WebCore::DocumentLoader::isLoadingInAPISense):

Stay in loading state if we have a pending script. This matches existing behavior.

  • style/StyleScope.cpp:

(WebCore::Style::Scope::removePendingSheet):

  • style/StyleScope.h:
1:31 PM Changeset in webkit [212462] by BJ Burg
  • 26 edits in trunk/Source/JavaScriptCore

[Cocoa] Web Inspector: Inspector::fromProtocolString<T> should return std::optional<T>
https://bugs.webkit.org/show_bug.cgi?id=168018
<rdar://problem/30468779>

Reviewed by Joseph Pecoraro.

These methods parse untrusted string inputs, so they should return an optional instead
of asserting or crashing when the input is not usable.

Update various pieces of generated code to handle the error case gracefully.

  • inspector/scripts/codegen/generate_objc_backend_dispatcher_implementation.py:

(ObjCBackendDispatcherImplementationGenerator._generate_conversions_for_command):
(ObjCBackendDispatcherImplementationGenerator._generate_invocation_for_command):
The local variable holding the ObjC-friendly converted value should take a std::optional
when converting an enum from a string into an NS_ENUM value. If the enum command parameter
is not optional, then send a response with a command failure message and return.

The optional enum parameter case is not handled correctly, but no existing code requires it.

  • inspector/scripts/codegen/generate_objc_protocol_type_conversions_header.py:

(ObjCProtocolTypeConversionsHeaderGenerator._generate_enum_from_protocol_string):
Fix signature and remove default case ASSERT_NOT_REACHED.

  • inspector/scripts/codegen/generate_objc_protocol_type_conversions_implementation.py:

(ObjCProtocolTypeConversionsImplementationGenerator._generate_type_factory_method_implementation):
Since this code assumes all inputs to be valid and throws an exception otherwise, we
try to convert the enum and throw an exception if it's nullopt. If it's valid, write to outValue.

  • inspector/scripts/codegen/generate_objc_protocol_types_implementation.py:

(ObjCProtocolTypesImplementationGenerator._generate_init_method_for_payload):
The local variable holding the ObjC-friendly converted value should take a std::optional
when converting an enum from a string into an NS_ENUM value. If the enum command parameter
is not optional, then throw an exception if the value is nullopt. Otherwise, allow it to be empty.

  • inspector/scripts/codegen/objc_generator.py:

(ObjCGenerator.protocol_to_objc_expression_for_member):
Unconditionally unwrap the optional. This expression is only used inside the typechecked
ObjC protocol objects. In this case we are guaranteed to have already initialized the enum with a valid
value, but must store it as a string inside a wrapped InspectorObject. The getter needs to
re-convert the stored string into an NS_ENUM value.

  • inspector/scripts/codegen/objc_generator_templates.py:

Update type template for fromProtocolString<T>().

  • inspector/scripts/tests/all/expected/definitions-with-mac-platform.json-result:
  • inspector/scripts/tests/generic/expected/commands-with-async-attribute.json-result:
  • inspector/scripts/tests/generic/expected/commands-with-optional-call-return-parameters.json-result:
  • inspector/scripts/tests/generic/expected/definitions-with-mac-platform.json-result:
  • inspector/scripts/tests/generic/expected/domain-availability.json-result:
  • inspector/scripts/tests/generic/expected/domains-with-varying-command-sizes.json-result:
  • inspector/scripts/tests/generic/expected/enum-values.json-result:
  • inspector/scripts/tests/generic/expected/events-with-optional-parameters.json-result:
  • inspector/scripts/tests/generic/expected/generate-domains-with-feature-guards.json-result:
  • inspector/scripts/tests/generic/expected/same-type-id-different-domain.json-result:
  • inspector/scripts/tests/generic/expected/shadowed-optional-type-setters.json-result:
  • inspector/scripts/tests/generic/expected/type-declaration-aliased-primitive-type.json-result:
  • inspector/scripts/tests/generic/expected/type-declaration-array-type.json-result:
  • inspector/scripts/tests/generic/expected/type-declaration-enum-type.json-result:
  • inspector/scripts/tests/generic/expected/type-declaration-object-type.json-result:
  • inspector/scripts/tests/generic/expected/type-requiring-runtime-casts.json-result:
  • inspector/scripts/tests/generic/expected/worker-supported-domains.json-result:
  • inspector/scripts/tests/ios/expected/definitions-with-mac-platform.json-result:
  • inspector/scripts/tests/mac/expected/definitions-with-mac-platform.json-result:

Rebaseline tests.

1:23 PM Changeset in webkit [212461] by andersca@apple.com
  • 9 edits
    1 delete in trunk/Source/WTF

Remove EFL from WTF
https://bugs.webkit.org/show_bug.cgi?id=168452

Reviewed by Alex Christensen.

  • wtf/CurrentTime.cpp:
  • wtf/DisallowCType.h:
  • wtf/FeatureDefines.h:
  • wtf/MainThread.cpp:
  • wtf/MainThread.h:
  • wtf/Platform.h:
  • wtf/RunLoop.h:
  • wtf/WorkQueue.h:
  • wtf/efl/DispatchQueueEfl.cpp: Removed.
  • wtf/efl/DispatchQueueEfl.h: Removed.
  • wtf/efl/DispatchQueueWorkItemEfl.h: Removed.
  • wtf/efl/EflTypedefs.h: Removed.
  • wtf/efl/MainThreadEfl.cpp: Removed.
  • wtf/efl/RunLoopEfl.cpp: Removed.
  • wtf/efl/UniquePtrEfl.h: Removed.
  • wtf/efl/WorkQueueEfl.cpp: Removed.
1:10 PM Changeset in webkit [212460] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Skip imported/w3c/web-platform-tests/resource-timing/rt-resource-errors.html.
https://bugs.webkit.org/show_bug.cgi?id=168356

Unreviewed test gardening.

1:09 PM Changeset in webkit [212459] by timothy_horton@apple.com
  • 19 edits in trunk

WKWebView inside a UICollectionView flashes when items are inserted above it
https://bugs.webkit.org/show_bug.cgi?id=168376
<rdar://problem/29322051>

Reviewed by Simon Fraser.

Previously, we would immediately send visible content rect updates
whenever we scrolled, or our frame or bounds changed, or ... a whole
bunch of other things. This message would be immediately sent to the
Web Content process, and coalesced at the whims of the Web Content process
main thread. However, if we received multiple such updates within the
same runloop cycle in the UI process, the Web Content process could
send back layer tree commits for intermediate states that would
never make it to the screen.

In the UICollectionView case, UIKit would first scroll to the new location
(potentially putting the WKWebView totally off-screen), and then update
our frame (back on screen), and we would get two layer tree commits;
one, with less tile coverage than needed to cover the area, and another
with full coverage.

Instead, wait until just before we commit the UI-side layer tree (and
thus everyone is done moving things around) to push the new visible
rect info to the Web Content process.

So far, I have not found a way to test that reliably fails before
and reliably passes after without adding a ton of supporting code to WebKit.

  • UIProcess/API/Cocoa/WKWebView.mm:

(-[WKWebView _didInvokeUIScrollViewDelegateCallback]):
(-[WKWebView _didCommitLayerTree:]):
(-[WKWebView _didFinishScrolling]):
(-[WKWebView scrollViewDidScroll:]):
(-[WKWebView scrollViewDidZoom:]):
(-[WKWebView scrollViewDidEndZooming:withView:atScale:]):
(-[WKWebView _scrollViewDidInterruptDecelerating:]):
(-[WKWebView _didScroll]):
(-[WKWebView _enclosingScrollerScrollingEnded:]):
(-[WKWebView _frameOrBoundsChanged]):
(-[WKWebView _scheduleVisibleContentRectUpdate]):
(-[WKWebView _scrollViewIsInStableState:]):
(-[WKWebView _scheduleVisibleContentRectUpdateAfterScrollInView:]):
(-[WKWebView _keyboardChangedWithInfo:adjustScrollView:]):
(-[WKWebView _setObscuredInsets:]):
(-[WKWebView _endInteractiveObscuredInsetsChange]):
(-[WKWebView _beginAnimatedResizeWithUpdates:]):
(-[WKWebView _endAnimatedResize]):
(-[WKWebView _updateVisibleContentRects]): Deleted.
(-[WKWebView _updateVisibleContentRectAfterScrollInView:]): Deleted.

  • UIProcess/API/Cocoa/WKWebViewInternal.h:
  • UIProcess/ios/WKContentView.mm:

(-[WKContentView _didCommitLayerTree:]):

  • UIProcess/ios/WKContentViewInteraction.mm:

(-[WKContentView _startAssistingNode:userIsInteracting:blurPreviousNode:userObject:]):
(-[WKContentView _stopAssistingNode]):

  • UIProcess/ios/WKScrollView.mm:

(-[WKScrollView setContentInset:]):
Have existing callers of _updateVisibleContentRect* instead call
_scheduleVisibleContentRectUpdate*.

In _scheduleVisibleContentRectUpdate, schedule a pre-commit callback
in which we will compute the new visible content rect information
and send it to the Web Content process.

Keep track of the stable state of the scroll view which most recently
scheduled an update, and use that to inform _updateVisibleContentRects.
This matches the previous behavior where the updates might get coalesced
in the Web Content process, and the most recent update wins.

Make a few callers of _updateVisibleContentRectAfterScrollInView
that passed in our scroll view just use _scheduleVisibleContentRectUpdate instead.

  • WebKitTestRunner/cocoa/TestRunnerWKWebView.mm:

(-[TestRunnerWKWebView _setStableStateOverride:]):
Update the one external caller of this internal method...

  • DumpRenderTree/ios/UIScriptControllerIOS.mm:

(WTR::UIScriptController::doAfterVisibleContentRectUpdate):

  • DumpRenderTree/mac/UIScriptControllerMac.mm:

(WTR::UIScriptController::doAfterVisibleContentRectUpdate):

  • TestRunnerShared/UIScriptContext/Bindings/UIScriptController.idl:
  • TestRunnerShared/UIScriptContext/UIScriptController.cpp:

(WTR::UIScriptController::doAfterVisibleContentRectUpdate):

  • TestRunnerShared/UIScriptContext/UIScriptController.h:
  • WebKitTestRunner/ios/UIScriptControllerIOS.mm:

(WTR::UIScriptController::doAfterVisibleContentRectUpdate):

  • WebKitTestRunner/mac/UIScriptControllerMac.mm:

(WTR::UIScriptController::doAfterVisibleContentRectUpdate):
Expose doAfterVisibleContentRectUpdate to DRT and WKTR. It is called
back after we dispatch a visible content rect update from the UI process
to the Web Content process, so any messages sent from the block will arrive
after the visible content rect update.

  • scrollingcoordinator/ios/sync-layer-positions-after-scroll.html:
  • scrollingcoordinator/ios/sync-layer-positions-after-scroll-expected.txt:

Make use of doAfterVisibleContentRectUpdate; we previously were
guaranteed by message ordering that our uiScriptComplete message
would arrive after the visible content rect update, but that is
no longer the case.

Also, adjust to have a initial scale and flexible viewport in order
to work around https://bugs.webkit.org/show_bug.cgi?id=168403.

1:04 PM Changeset in webkit [212458] by keith_miller@apple.com
  • 4 edits in trunk/Source/JavaScriptCore
ASSERTION FAILED: vm.heap.mutatorState() == MutatorState::Running
vm.apiLock().ownerThread() != std::this_thread::get_id()

https://bugs.webkit.org/show_bug.cgi?id=168354

Reviewed by Filip Pizlo.

Add a new vmEntryGlobalObject method for the debugger so that
the debugger does not crash in debug builds when trying to
detach itself from a global object.

  • debugger/Debugger.cpp:

(JSC::Debugger::detach):

  • interpreter/CallFrame.cpp:

(JSC::CallFrame::vmEntryGlobalObjectForDebuggerDetach):

  • interpreter/CallFrame.h:
12:09 PM Changeset in webkit [212457] by andersca@apple.com
  • 2 edits in trunk/Source/WebCore

Set the DHTML drag image in the DHTML type check
https://bugs.webkit.org/show_bug.cgi?id=168451

Reviewed by Wenson Hsieh.

  • page/DragController.cpp:

(WebCore::DragController::startDrag):

12:08 PM Changeset in webkit [212456] by commit-queue@webkit.org
  • 3 edits in trunk/Source/ThirdParty/libwebrtc

[WebRTC] Fix some missing exports after r212401
https://bugs.webkit.org/show_bug.cgi?id=168449

Patch by Youenn Fablet <youenn@apple.com> on 2017-02-16
Reviewed by Alex Christensen.

  • Source/webrtc/api/jsep.h:
  • Source/webrtc/base/checks.h:
12:06 PM Changeset in webkit [212455] by achristensen@apple.com
  • 1 edit
    2 deletes in trunk/LayoutTests

Remove EFL test expectations.

Rubber-stamped by Anders Carlsson.

  • platform/efl: Removed.
  • platform/efl-wk2: Removed.
  • platform/efl-wk2/TestExpectations: Removed.
  • platform/efl/TestExpectations: Removed.
  • platform/efl/accessibility: Removed.
  • platform/efl/accessibility/aria-checkbox-sends-notification-expected.txt: Removed.
  • platform/efl/accessibility/aria-fallback-roles-expected.txt: Removed.
  • platform/efl/accessibility/aria-hidden-negates-no-visibility-expected.txt: Removed.
  • platform/efl/accessibility/aria-inherits-presentational-expected.txt: Removed.
  • platform/efl/accessibility/aria-labelledby-overrides-aria-label-expected.txt: Removed.
  • platform/efl/accessibility/aria-labelledby-overrides-label-expected.txt: Removed.
  • platform/efl/accessibility/aria-menubar-menuitems-expected.txt: Removed.
  • platform/efl/accessibility/aria-option-role-expected.txt: Removed.
  • platform/efl/accessibility/aria-role-on-label-expected.txt: Removed.
  • platform/efl/accessibility/aria-switch-text-expected.txt: Removed.
  • platform/efl/accessibility/aria-table-content-expected.txt: Removed.
  • platform/efl/accessibility/aria-table-hierarchy-expected.txt: Removed.
  • platform/efl/accessibility/aria-toggle-button-with-title-expected.txt: Removed.
  • platform/efl/accessibility/auto-fill-crash-expected.txt: Removed.
  • platform/efl/accessibility/auto-filled-value-expected.txt: Removed.
  • platform/efl/accessibility/content-editable-as-textarea-expected.txt: Removed.
  • platform/efl/accessibility/css-content-attribute-expected.txt: Removed.
  • platform/efl/accessibility/deleting-iframe-destroys-axcache-expected.txt: Removed.
  • platform/efl/accessibility/dimensions-include-descendants-expected.txt: Removed.
  • platform/efl/accessibility/double-nested-inline-element-missing-from-tree-expected.txt: Removed.
  • platform/efl/accessibility/empty-image-with-title-expected.txt: Removed.
  • platform/efl/accessibility/file-upload-button-stringvalue-expected.txt: Removed.
  • platform/efl/accessibility/form-control-value-settable-expected.txt: Removed.
  • platform/efl/accessibility/generated-content-with-display-table-crash-expected.txt: Removed.
  • platform/efl/accessibility/image-link-expected.txt: Removed.
  • platform/efl/accessibility/image-map1-expected.txt: Removed.
  • platform/efl/accessibility/image-map2-expected.txt: Removed.
  • platform/efl/accessibility/image-with-alt-and-map-expected.txt: Removed.
  • platform/efl/accessibility/img-fallsback-to-title-expected.txt: Removed.
  • platform/efl/accessibility/internal-link-anchors2-expected.txt: Removed.
  • platform/efl/accessibility/list-detection-expected.txt: Removed.
  • platform/efl/accessibility/lists-expected.txt: Removed.
  • platform/efl/accessibility/math-fenced-expected.txt: Removed.
  • platform/efl/accessibility/math-foreign-content-expected.txt: Removed.
  • platform/efl/accessibility/math-mo-fences-and-separators-expected.txt: Removed.
  • platform/efl/accessibility/math-multiscript-attributes-expected.txt: Removed.
  • platform/efl/accessibility/math-text-expected.txt: Removed.
  • platform/efl/accessibility/media-element-expected.txt: Removed.
  • platform/efl/accessibility/media-emits-object-replacement-expected.txt: Removed.
  • platform/efl/accessibility/menu-list-crash2-expected.txt: Removed.
  • platform/efl/accessibility/menu-list-sends-change-notification-expected.txt: Removed.
  • platform/efl/accessibility/meter-element-expected.txt: Removed.
  • platform/efl/accessibility/platform-name-expected.txt: Removed.
  • platform/efl/accessibility/plugin-expected.txt: Removed.
  • platform/efl/accessibility/radio-button-title-label-expected.txt: Removed.
  • platform/efl/accessibility/render-counter-text-expected.txt: Removed.
  • platform/efl/accessibility/roles-exposed-expected.txt: Removed.
  • platform/efl/accessibility/tabindex-elements-are-accessible-expected.txt: Removed.
  • platform/efl/accessibility/table-attributes-expected.txt: Removed.
  • platform/efl/accessibility/table-cell-spans-expected.txt: Removed.
  • platform/efl/accessibility/table-cells-expected.txt: Removed.
  • platform/efl/accessibility/table-column-headers-with-captions-expected.txt: Removed.
  • platform/efl/accessibility/table-detection-expected.txt: Removed.
  • platform/efl/accessibility/table-hierarchy-expected.txt: Removed.
  • platform/efl/accessibility/table-one-cell-expected.txt: Removed.
  • platform/efl/accessibility/table-roles-hierarchy-expected.txt: Removed.
  • platform/efl/accessibility/table-sections-expected.txt: Removed.
  • platform/efl/accessibility/table-with-rules-expected.txt: Removed.
  • platform/efl/accessibility/transformed-element-expected.txt: Removed.
  • platform/efl/accessibility/w3c-svg-content-language-attribute-expected.txt: Removed.
  • platform/efl/animations: Removed.
  • platform/efl/animations/3d: Removed.
  • platform/efl/animations/3d/change-transform-in-end-event-expected.png: Removed.
  • platform/efl/animations/3d/change-transform-in-end-event-expected.txt: Removed.
  • platform/efl/animations/3d/matrix-transform-type-animation-expected.png: Removed.
  • platform/efl/animations/3d/matrix-transform-type-animation-expected.txt: Removed.
  • platform/efl/animations/3d/state-at-end-event-transform-expected.png: Removed.
  • platform/efl/animations/3d/state-at-end-event-transform-expected.txt: Removed.
  • platform/efl/animations/additive-transform-animations-expected.png: Removed.
  • platform/efl/animations/additive-transform-animations-expected.txt: Removed.
  • platform/efl/animations/cross-fade-border-image-source-expected.png: Removed.
  • platform/efl/animations/cross-fade-border-image-source-expected.txt: Removed.
  • platform/efl/animations/cross-fade-list-style-image-expected.png: Removed.
  • platform/efl/animations/cross-fade-list-style-image-expected.txt: Removed.
  • platform/efl/animations/cross-fade-webkit-mask-box-image-expected.png: Removed.
  • platform/efl/animations/cross-fade-webkit-mask-box-image-expected.txt: Removed.
  • platform/efl/animations/cross-fade-webkit-mask-image-expected.png: Removed.
  • platform/efl/animations/cross-fade-webkit-mask-image-expected.txt: Removed.
  • platform/efl/animations/missing-values-first-keyframe-expected.png: Removed.
  • platform/efl/animations/missing-values-first-keyframe-expected.txt: Removed.
  • platform/efl/animations/missing-values-last-keyframe-expected.png: Removed.
  • platform/efl/animations/missing-values-last-keyframe-expected.txt: Removed.
  • platform/efl/animations/opacity-transform-animation-expected.png: Removed.
  • platform/efl/animations/state-at-end-event-expected.png: Removed.
  • platform/efl/animations/state-at-end-event-expected.txt: Removed.
  • platform/efl/animations/suspend-transform-animation-expected.png: Removed.
  • platform/efl/compositing: Removed.
  • platform/efl/compositing/animation: Removed.
  • platform/efl/compositing/animation/busy-indicator-expected.png: Removed.
  • platform/efl/compositing/animation/state-at-end-event-transform-layer-expected.png: Removed.
  • platform/efl/compositing/animation/state-at-end-event-transform-layer-expected.txt: Removed.
  • platform/efl/compositing/bounds-in-flipped-writing-mode-expected.txt: Removed.
  • platform/efl/compositing/clip-change-expected.png: Removed.
  • platform/efl/compositing/color-matching: Removed.
  • platform/efl/compositing/color-matching/image-color-matching-expected.png: Removed.
  • platform/efl/compositing/color-matching/image-color-matching-expected.txt: Removed.
  • platform/efl/compositing/color-matching/pdf-image-match-expected.png: Removed.
  • platform/efl/compositing/color-matching/pdf-image-match-expected.txt: Removed.
  • platform/efl/compositing/compositing-visible-descendant-expected.png: Removed.
  • platform/efl/compositing/compositing-visible-descendant-expected.txt: Removed.
  • platform/efl/compositing/contents-opaque: Removed.
  • platform/efl/compositing/contents-opaque/control-layer-expected.txt: Removed.
  • platform/efl/compositing/contents-opaque/hidden-with-visible-text-expected.txt: Removed.
  • platform/efl/compositing/contents-scale: Removed.
  • platform/efl/compositing/contents-scale/animating-expected.txt: Removed.
  • platform/efl/compositing/contents-scale/scaled-ancestor-expected.txt: Removed.
  • platform/efl/compositing/contents-scale/simple-scale-expected.txt: Removed.
  • platform/efl/compositing/contents-scale/z-translate-expected.txt: Removed.
  • platform/efl/compositing/culling: Removed.
  • platform/efl/compositing/culling/filter-occlusion-blur-expected.png: Removed.
  • platform/efl/compositing/culling/filter-occlusion-blur-large-expected.png: Removed.
  • platform/efl/compositing/direct-image-compositing-expected.png: Removed.
  • platform/efl/compositing/direct-image-compositing-expected.txt: Removed.
  • platform/efl/compositing/fixed-position-scroll-offset-history-restore-expected.png: Removed.
  • platform/efl/compositing/flat-with-transformed-child-expected.png: Removed.
  • platform/efl/compositing/framesets: Removed.
  • platform/efl/compositing/framesets/composited-frame-alignment-expected.png: Removed.
  • platform/efl/compositing/generated-content-expected.png: Removed.
  • platform/efl/compositing/generated-content-expected.txt: Removed.
  • platform/efl/compositing/geometry: Removed.
  • platform/efl/compositing/geometry/abs-position-inside-opacity-expected.png: Removed.
  • platform/efl/compositing/geometry/abs-position-inside-opacity-expected.txt: Removed.
  • platform/efl/compositing/geometry/clipped-video-controller-expected.png: Removed.
  • platform/efl/compositing/geometry/clipping-foreground-expected.txt: Removed.
  • platform/efl/compositing/geometry/composited-html-size-expected.png: Removed.
  • platform/efl/compositing/geometry/composited-html-size-expected.txt: Removed.
  • platform/efl/compositing/geometry/fixed-in-composited-expected.png: Removed.
  • platform/efl/compositing/geometry/fixed-in-composited-expected.txt: Removed.
  • platform/efl/compositing/geometry/fixed-position-composited-page-scale-down-expected.png: Removed.
  • platform/efl/compositing/geometry/fixed-position-composited-page-scale-expected.png: Removed.
  • platform/efl/compositing/geometry/fixed-position-expected.png: Removed.
  • platform/efl/compositing/geometry/fixed-position-expected.txt: Removed.
  • platform/efl/compositing/geometry/fixed-position-iframe-composited-page-scale-down-expected.png: Removed.
  • platform/efl/compositing/geometry/fixed-position-iframe-composited-page-scale-expected.png: Removed.
  • platform/efl/compositing/geometry/fixed-position-transform-composited-page-scale-down-expected.png: Removed.
  • platform/efl/compositing/geometry/fixed-position-transform-composited-page-scale-expected.png: Removed.
  • platform/efl/compositing/geometry/foreground-offset-change-expected.png: Removed.
  • platform/efl/compositing/geometry/horizontal-scroll-composited-expected.png: Removed.
  • platform/efl/compositing/geometry/horizontal-scroll-composited-expected.txt: Removed.
  • platform/efl/compositing/geometry/layer-due-to-layer-children-deep-expected.png: Removed.
  • platform/efl/compositing/geometry/layer-due-to-layer-children-deep-expected.txt: Removed.
  • platform/efl/compositing/geometry/layer-due-to-layer-children-expected.png: Removed.
  • platform/efl/compositing/geometry/layer-due-to-layer-children-expected.txt: Removed.
  • platform/efl/compositing/geometry/limit-layer-bounds-overflow-repaint-expected.png: Removed.
  • platform/efl/compositing/geometry/outline-change-expected.png: Removed.
  • platform/efl/compositing/geometry/outline-change-expected.txt: Removed.
  • platform/efl/compositing/geometry/partial-layout-update-expected.png: Removed.
  • platform/efl/compositing/geometry/partial-layout-update-expected.txt: Removed.
  • platform/efl/compositing/geometry/repaint-foreground-layer-expected.png: Removed.
  • platform/efl/compositing/geometry/root-layer-update-expected.png: Removed.
  • platform/efl/compositing/geometry/root-layer-update-expected.txt: Removed.
  • platform/efl/compositing/geometry/tall-page-composited-expected.png: Removed.
  • platform/efl/compositing/geometry/transfrom-origin-on-zero-size-layer-expected.png: Removed.
  • platform/efl/compositing/geometry/transfrom-origin-on-zero-size-layer-expected.txt: Removed.
  • platform/efl/compositing/geometry/vertical-scroll-composited-expected.png: Removed.
  • platform/efl/compositing/geometry/vertical-scroll-composited-expected.txt: Removed.
  • platform/efl/compositing/geometry/video-fixed-scrolling-expected.png: Removed.
  • platform/efl/compositing/geometry/video-fixed-scrolling-expected.txt: Removed.
  • platform/efl/compositing/geometry/video-opacity-overlay-expected.png: Removed.
  • platform/efl/compositing/geometry/video-opacity-overlay-expected.txt: Removed.
  • platform/efl/compositing/iframes: Removed.
  • platform/efl/compositing/iframes/composited-iframe-alignment-expected.txt: Removed.
  • platform/efl/compositing/iframes/composited-iframe-scroll-expected.png: Removed.
  • platform/efl/compositing/iframes/fixed-position-iframe-expected.png: Removed.
  • platform/efl/compositing/iframes/iframe-content-flipping-expected.png: Removed.
  • platform/efl/compositing/iframes/iframe-copy-on-scroll-expected.png: Removed.
  • platform/efl/compositing/iframes/iframe-copy-on-scroll-expected.txt: Removed.
  • platform/efl/compositing/iframes/iframe-in-composited-layer-expected.png: Removed.
  • platform/efl/compositing/iframes/iframe-in-composited-layer-expected.txt: Removed.
  • platform/efl/compositing/iframes/invisible-nested-iframe-show-expected.txt: Removed.
  • platform/efl/compositing/iframes/nested-iframe-scrolling-expected.png: Removed.
  • platform/efl/compositing/iframes/repaint-after-losing-scrollbars-expected.png: Removed.
  • platform/efl/compositing/iframes/resizer-expected.txt: Removed.
  • platform/efl/compositing/iframes/scroll-fixed-transformed-element-expected.png: Removed.
  • platform/efl/compositing/iframes/scroll-grandchild-iframe-expected.png: Removed.
  • platform/efl/compositing/images: Removed.
  • platform/efl/compositing/images/content-image-change-expected.png: Removed.
  • platform/efl/compositing/images/direct-image-background-color-expected.png: Removed.
  • platform/efl/compositing/images/direct-image-background-color-expected.txt: Removed.
  • platform/efl/compositing/images/direct-svg-image-expected.png: Removed.
  • platform/efl/compositing/layer-creation: Removed.
  • platform/efl/compositing/layer-creation/fixed-position-change-out-of-view-in-view-expected.txt: Removed.
  • platform/efl/compositing/layer-creation/fixed-position-scroll-expected.txt: Removed.
  • platform/efl/compositing/layer-creation/overlap-animation-container-expected.txt: Removed.
  • platform/efl/compositing/layer-creation/spanOverlapsCanvas-expected.png: Removed.
  • platform/efl/compositing/layers-inside-overflow-scroll-expected.png: Removed.
  • platform/efl/compositing/layers-inside-overflow-scroll-expected.txt: Removed.
  • platform/efl/compositing/masks: Removed.
  • platform/efl/compositing/masks/direct-image-mask-expected.png: Removed.
  • platform/efl/compositing/masks/direct-image-mask-expected.txt: Removed.
  • platform/efl/compositing/masks/layer-mask-placement-expected.png: Removed.
  • platform/efl/compositing/masks/masked-ancestor-expected.txt: Removed.
  • platform/efl/compositing/masks/multiple-masks-expected.png: Removed.
  • platform/efl/compositing/masks/multiple-masks-expected.txt: Removed.
  • platform/efl/compositing/masks/simple-composited-mask-expected.png: Removed.
  • platform/efl/compositing/masks/simple-composited-mask-expected.txt: Removed.
  • platform/efl/compositing/overflow: Removed.
  • platform/efl/compositing/overflow/ancestor-overflow-expected.png: Removed.
  • platform/efl/compositing/overflow/ancestor-overflow-expected.txt: Removed.
  • platform/efl/compositing/overflow/clipping-behaviour-change-is-not-propagated-to-descendants-expected.txt: Removed.
  • platform/efl/compositing/overflow/clipping-behaviour-change-is-not-propagated-to-descendants2-expected.txt: Removed.
  • platform/efl/compositing/overflow/composited-scrolling-creates-a-stacking-container-expected.txt: Removed.
  • platform/efl/compositing/overflow/composited-scrolling-paint-phases-expected.txt: Removed.
  • platform/efl/compositing/overflow/fixed-position-ancestor-clip-expected.png: Removed.
  • platform/efl/compositing/overflow/fixed-position-ancestor-clip-expected.txt: Removed.
  • platform/efl/compositing/overflow/nested-scrolling-expected.txt: Removed.
  • platform/efl/compositing/overflow/overflow-compositing-descendant-expected.png: Removed.
  • platform/efl/compositing/overflow/overflow-compositing-descendant-expected.txt: Removed.
  • platform/efl/compositing/overflow/overflow-positioning-expected.png: Removed.
  • platform/efl/compositing/overflow/overflow-positioning-expected.txt: Removed.
  • platform/efl/compositing/overflow/overflow-scaled-descendant-overlapping-expected.png: Removed.
  • platform/efl/compositing/overflow/overflow-scroll-expected.png: Removed.
  • platform/efl/compositing/overflow/overflow-scroll-expected.txt: Removed.
  • platform/efl/compositing/overflow/parent-overflow-expected.png: Removed.
  • platform/efl/compositing/overflow/parent-overflow-expected.txt: Removed.
  • platform/efl/compositing/overflow/remove-overflow-crash2-expected.png: Removed.
  • platform/efl/compositing/overflow/remove-overflow-crash2-expected.txt: Removed.
  • platform/efl/compositing/overflow/repaint-after-losing-scrollbars-expected.png: Removed.
  • platform/efl/compositing/overflow/scroll-ancestor-update-expected.png: Removed.
  • platform/efl/compositing/overflow/scroll-ancestor-update-expected.txt: Removed.
  • platform/efl/compositing/overflow/scrollbar-painting-expected.png: Removed.
  • platform/efl/compositing/overflow/scrollbar-painting-expected.txt: Removed.
  • platform/efl/compositing/overflow/theme-affects-visual-overflow-expected.png: Removed.
  • platform/efl/compositing/overflow/theme-affects-visual-overflow-expected.txt: Removed.
  • platform/efl/compositing/overflow/zero-size-overflow-expected.png: Removed.
  • platform/efl/compositing/plugins: Removed.
  • platform/efl/compositing/plugins/composited-plugin-expected.png: Removed.
  • platform/efl/compositing/plugins/composited-plugin-expected.txt: Removed.
  • platform/efl/compositing/reflections: Removed.
  • platform/efl/compositing/reflections/animation-inside-reflection-expected.png: Removed.
  • platform/efl/compositing/reflections/animation-inside-reflection-expected.txt: Removed.
  • platform/efl/compositing/reflections/compositing-change-inside-reflection-expected.png: Removed.
  • platform/efl/compositing/reflections/compositing-change-inside-reflection-expected.txt: Removed.
  • platform/efl/compositing/reflections/deeply-nested-reflections-expected.png: Removed.
  • platform/efl/compositing/reflections/deeply-nested-reflections-expected.txt: Removed.
  • platform/efl/compositing/reflections/load-video-in-reflection-expected.png: Removed.
  • platform/efl/compositing/reflections/load-video-in-reflection-expected.txt: Removed.
  • platform/efl/compositing/reflections/masked-reflection-on-composited-expected.png: Removed.
  • platform/efl/compositing/reflections/masked-reflection-on-composited-expected.txt: Removed.
  • platform/efl/compositing/reflections/nested-reflection-anchor-point-expected.txt: Removed.
  • platform/efl/compositing/reflections/nested-reflection-animated-expected.png: Removed.
  • platform/efl/compositing/reflections/nested-reflection-animated-expected.txt: Removed.
  • platform/efl/compositing/reflections/nested-reflection-expected.png: Removed.
  • platform/efl/compositing/reflections/nested-reflection-expected.txt: Removed.
  • platform/efl/compositing/reflections/nested-reflection-mask-change-expected.png: Removed.
  • platform/efl/compositing/reflections/nested-reflection-mask-change-expected.txt: Removed.
  • platform/efl/compositing/reflections/nested-reflection-on-overflow-expected.png: Removed.
  • platform/efl/compositing/reflections/nested-reflection-on-overflow-expected.txt: Removed.
  • platform/efl/compositing/reflections/nested-reflection-opacity-expected.png: Removed.
  • platform/efl/compositing/reflections/nested-reflection-opacity-expected.txt: Removed.
  • platform/efl/compositing/reflections/nested-reflection-size-change-expected.png: Removed.
  • platform/efl/compositing/reflections/nested-reflection-size-change-expected.txt: Removed.
  • platform/efl/compositing/reflections/nested-reflection-transformed-expected.png: Removed.
  • platform/efl/compositing/reflections/nested-reflection-transformed-expected.txt: Removed.
  • platform/efl/compositing/reflections/nested-reflection-transformed2-expected.png: Removed.
  • platform/efl/compositing/reflections/nested-reflection-transformed2-expected.txt: Removed.
  • platform/efl/compositing/reflections/nested-reflection-transition-expected.png: Removed.
  • platform/efl/compositing/reflections/nested-reflection-transition-expected.txt: Removed.
  • platform/efl/compositing/reflections/reflection-in-composited-expected.png: Removed.
  • platform/efl/compositing/reflections/reflection-in-composited-expected.txt: Removed.
  • platform/efl/compositing/reflections/reflection-on-composited-expected.png: Removed.
  • platform/efl/compositing/reflections/reflection-on-composited-expected.txt: Removed.
  • platform/efl/compositing/reflections/reflection-opacity-expected.png: Removed.
  • platform/efl/compositing/reflections/reflection-opacity-expected.txt: Removed.
  • platform/efl/compositing/reflections/reflection-ordering-expected.png: Removed.
  • platform/efl/compositing/reflections/reflection-ordering-expected.txt: Removed.
  • platform/efl/compositing/reflections/reflection-positioning-expected.png: Removed.
  • platform/efl/compositing/reflections/reflection-positioning-expected.txt: Removed.
  • platform/efl/compositing/reflections/reflection-positioning2-expected.png: Removed.
  • platform/efl/compositing/reflections/reflection-positioning2-expected.txt: Removed.
  • platform/efl/compositing/reflections/remove-add-reflection-expected.png: Removed.
  • platform/efl/compositing/reflections/simple-composited-reflections-expected.png: Removed.
  • platform/efl/compositing/reflections/simple-composited-reflections-expected.txt: Removed.
  • platform/efl/compositing/reflections/transform-inside-reflection-expected.png: Removed.
  • platform/efl/compositing/reflections/transform-inside-reflection-expected.txt: Removed.
  • platform/efl/compositing/repaint: Removed.
  • platform/efl/compositing/repaint/become-overlay-composited-layer-expected.png: Removed.
  • platform/efl/compositing/repaint/become-overlay-composited-layer-expected.txt: Removed.
  • platform/efl/compositing/repaint/composited-document-element-expected.png: Removed.
  • platform/efl/compositing/repaint/composited-document-element-expected.txt: Removed.
  • platform/efl/compositing/repaint/content-into-overflow-expected.png: Removed.
  • platform/efl/compositing/repaint/content-into-overflow-expected.txt: Removed.
  • platform/efl/compositing/repaint/invalidations-on-composited-layers-expected.txt: Removed.
  • platform/efl/compositing/repaint/layer-repaint-expected.png: Removed.
  • platform/efl/compositing/repaint/layer-repaint-expected.txt: Removed.
  • platform/efl/compositing/repaint/layer-repaint-rects-expected.png: Removed.
  • platform/efl/compositing/repaint/layer-repaint-rects-expected.txt: Removed.
  • platform/efl/compositing/repaint/newly-composited-on-scroll-expected.png: Removed.
  • platform/efl/compositing/repaint/newly-composited-on-scroll-expected.txt: Removed.
  • platform/efl/compositing/repaint/newly-composited-repaint-rect-expected.png: Removed.
  • platform/efl/compositing/repaint/opacity-between-absolute-expected.png: Removed.
  • platform/efl/compositing/repaint/opacity-between-absolute-expected.txt: Removed.
  • platform/efl/compositing/repaint/opacity-between-absolute2-expected.png: Removed.
  • platform/efl/compositing/repaint/opacity-between-absolute2-expected.txt: Removed.
  • platform/efl/compositing/repaint/overflow-into-content-expected.png: Removed.
  • platform/efl/compositing/repaint/overflow-into-content-expected.txt: Removed.
  • platform/efl/compositing/repaint/same-size-invalidation-expected.png: Removed.
  • platform/efl/compositing/repaint/shrink-layer-expected.png: Removed.
  • platform/efl/compositing/repaint/transform-style-change-expected.png: Removed.
  • platform/efl/compositing/rtl: Removed.
  • platform/efl/compositing/rtl/rtl-overflow-invalidation-expected.png: Removed.
  • platform/efl/compositing/rtl/rtl-overflow-scrolling-expected.txt: Removed.
  • platform/efl/compositing/scaling: Removed.
  • platform/efl/compositing/scaling/tiled-layer-recursion-expected.png: Removed.
  • platform/efl/compositing/self-painting-layers-expected.png: Removed.
  • platform/efl/compositing/self-painting-layers-expected.txt: Removed.
  • platform/efl/compositing/shadows: Removed.
  • platform/efl/compositing/shadows/shadow-drawing-expected.txt: Removed.
  • platform/efl/compositing/sibling-positioning-expected.png: Removed.
  • platform/efl/compositing/sibling-positioning-expected.txt: Removed.
  • platform/efl/compositing/text-on-large-layer-expected.png: Removed.
  • platform/efl/compositing/text-on-large-layer-expected.txt: Removed.
  • platform/efl/compositing/tiling: Removed.
  • platform/efl/compositing/tiling/huge-layer-add-remove-child-expected.txt: Removed.
  • platform/efl/compositing/tiling/rotated-tiled-clamped-expected.txt: Removed.
  • platform/efl/compositing/tiling/rotated-tiled-preserve3d-clamped-expected.txt: Removed.
  • platform/efl/compositing/transitions: Removed.
  • platform/efl/compositing/transitions/scale-transition-no-start-expected.png: Removed.
  • platform/efl/compositing/transitions/scale-transition-no-start-expected.txt: Removed.
  • platform/efl/compositing/transitions/singular-scale-transition-expected.png: Removed.
  • platform/efl/compositing/transitions/singular-scale-transition-expected.txt: Removed.
  • platform/efl/compositing/video: Removed.
  • platform/efl/compositing/video-page-visibility-expected.png: Removed.
  • platform/efl/compositing/video/video-background-color-expected.png: Removed.
  • platform/efl/compositing/video/video-background-color-expected.txt: Removed.
  • platform/efl/compositing/video/video-controls-layer-creation-expected.png: Removed.
  • platform/efl/compositing/visibility: Removed.
  • platform/efl/compositing/visibility/visibility-composited-expected.png: Removed.
  • platform/efl/compositing/visibility/visibility-composited-expected.txt: Removed.
  • platform/efl/compositing/visibility/visibility-composited-transforms-expected.png: Removed.
  • platform/efl/compositing/visibility/visibility-composited-transforms-expected.txt: Removed.
  • platform/efl/compositing/visibility/visibility-image-layers-expected.png: Removed.
  • platform/efl/compositing/visibility/visibility-simple-video-layer-expected.png: Removed.
  • platform/efl/compositing/webgl: Removed.
  • platform/efl/compositing/webgl/webgl-background-color-expected.png: Removed.
  • platform/efl/compositing/webgl/webgl-background-color-expected.txt: Removed.
  • platform/efl/compositing/webgl/webgl-no-alpha-expected.png: Removed.
  • platform/efl/compositing/webgl/webgl-no-alpha-expected.txt: Removed.
  • platform/efl/compositing/webgl/webgl-reflection-expected.png: Removed.
  • platform/efl/compositing/webgl/webgl-reflection-expected.txt: Removed.
  • platform/efl/css1: Removed.
  • platform/efl/css1/basic: Removed.
  • platform/efl/css1/basic/containment-expected.png: Removed.
  • platform/efl/css1/basic/containment-expected.txt: Removed.
  • platform/efl/css1/basic/contextual_selectors-expected.png: Removed.
  • platform/efl/css1/basic/contextual_selectors-expected.txt: Removed.
  • platform/efl/css1/basic/grouping-expected.png: Removed.
  • platform/efl/css1/basic/grouping-expected.txt: Removed.
  • platform/efl/css1/basic/id_as_selector-expected.png: Removed.
  • platform/efl/css1/basic/id_as_selector-expected.txt: Removed.
  • platform/efl/css1/basic/inheritance-expected.png: Removed.
  • platform/efl/css1/basic/inheritance-expected.txt: Removed.
  • platform/efl/css1/box_properties: Removed.
  • platform/efl/css1/box_properties/acid_test-expected.png: Removed.
  • platform/efl/css1/box_properties/acid_test-expected.txt: Removed.
  • platform/efl/css1/box_properties/border-expected.png: Removed.
  • platform/efl/css1/box_properties/border-expected.txt: Removed.
  • platform/efl/css1/box_properties/border_bottom-expected.png: Removed.
  • platform/efl/css1/box_properties/border_bottom-expected.txt: Removed.
  • platform/efl/css1/box_properties/border_bottom_inline-expected.png: Removed.
  • platform/efl/css1/box_properties/border_bottom_inline-expected.txt: Removed.
  • platform/efl/css1/box_properties/border_bottom_width-expected.png: Removed.
  • platform/efl/css1/box_properties/border_bottom_width-expected.txt: Removed.
  • platform/efl/css1/box_properties/border_bottom_width_inline-expected.png: Removed.
  • platform/efl/css1/box_properties/border_bottom_width_inline-expected.txt: Removed.
  • platform/efl/css1/box_properties/border_color-expected.png: Removed.
  • platform/efl/css1/box_properties/border_color-expected.txt: Removed.
  • platform/efl/css1/box_properties/border_color_inline-expected.png: Removed.
  • platform/efl/css1/box_properties/border_color_inline-expected.txt: Removed.
  • platform/efl/css1/box_properties/border_inline-expected.png: Removed.
  • platform/efl/css1/box_properties/border_inline-expected.txt: Removed.
  • platform/efl/css1/box_properties/border_left-expected.png: Removed.
  • platform/efl/css1/box_properties/border_left-expected.txt: Removed.
  • platform/efl/css1/box_properties/border_left_inline-expected.png: Removed.
  • platform/efl/css1/box_properties/border_left_inline-expected.txt: Removed.
  • platform/efl/css1/box_properties/border_left_width-expected.png: Removed.
  • platform/efl/css1/box_properties/border_left_width-expected.txt: Removed.
  • platform/efl/css1/box_properties/border_left_width_inline-expected.png: Removed.
  • platform/efl/css1/box_properties/border_left_width_inline-expected.txt: Removed.
  • platform/efl/css1/box_properties/border_right-expected.png: Removed.
  • platform/efl/css1/box_properties/border_right-expected.txt: Removed.
  • platform/efl/css1/box_properties/border_right_inline-expected.png: Removed.
  • platform/efl/css1/box_properties/border_right_inline-expected.txt: Removed.
  • platform/efl/css1/box_properties/border_right_width-expected.png: Removed.
  • platform/efl/css1/box_properties/border_right_width-expected.txt: Removed.
  • platform/efl/css1/box_properties/border_right_width_inline-expected.png: Removed.
  • platform/efl/css1/box_properties/border_right_width_inline-expected.txt: Removed.
  • platform/efl/css1/box_properties/border_style-expected.png: Removed.
  • platform/efl/css1/box_properties/border_style-expected.txt: Removed.
  • platform/efl/css1/box_properties/border_style_inline-expected.png: Removed.
  • platform/efl/css1/box_properties/border_style_inline-expected.txt: Removed.
  • platform/efl/css1/box_properties/border_top-expected.png: Removed.
  • platform/efl/css1/box_properties/border_top-expected.txt: Removed.
  • platform/efl/css1/box_properties/border_top_inline-expected.png: Removed.
  • platform/efl/css1/box_properties/border_top_inline-expected.txt: Removed.
  • platform/efl/css1/box_properties/border_top_width-expected.png: Removed.
  • platform/efl/css1/box_properties/border_top_width-expected.txt: Removed.
  • platform/efl/css1/box_properties/border_top_width_inline-expected.png: Removed.
  • platform/efl/css1/box_properties/border_top_width_inline-expected.txt: Removed.
  • platform/efl/css1/box_properties/border_width-expected.png: Removed.
  • platform/efl/css1/box_properties/border_width-expected.txt: Removed.
  • platform/efl/css1/box_properties/border_width_inline-expected.png: Removed.
  • platform/efl/css1/box_properties/border_width_inline-expected.txt: Removed.
  • platform/efl/css1/box_properties/clear-expected.png: Removed.
  • platform/efl/css1/box_properties/clear-expected.txt: Removed.
  • platform/efl/css1/box_properties/clear_float-expected.png: Removed.
  • platform/efl/css1/box_properties/clear_float-expected.txt: Removed.
  • platform/efl/css1/box_properties/float-expected.png: Removed.
  • platform/efl/css1/box_properties/float-expected.txt: Removed.
  • platform/efl/css1/box_properties/float_elements_in_series-expected.png: Removed.
  • platform/efl/css1/box_properties/float_elements_in_series-expected.txt: Removed.
  • platform/efl/css1/box_properties/float_margin-expected.png: Removed.
  • platform/efl/css1/box_properties/float_margin-expected.txt: Removed.
  • platform/efl/css1/box_properties/float_on_text_elements-expected.png: Removed.
  • platform/efl/css1/box_properties/float_on_text_elements-expected.txt: Removed.
  • platform/efl/css1/box_properties/height-expected.png: Removed.
  • platform/efl/css1/box_properties/height-expected.txt: Removed.
  • platform/efl/css1/box_properties/margin-expected.png: Removed.
  • platform/efl/css1/box_properties/margin-expected.txt: Removed.
  • platform/efl/css1/box_properties/margin_bottom-expected.png: Removed.
  • platform/efl/css1/box_properties/margin_bottom-expected.txt: Removed.
  • platform/efl/css1/box_properties/margin_bottom_inline-expected.png: Removed.
  • platform/efl/css1/box_properties/margin_bottom_inline-expected.txt: Removed.
  • platform/efl/css1/box_properties/margin_inline-expected.png: Removed.
  • platform/efl/css1/box_properties/margin_inline-expected.txt: Removed.
  • platform/efl/css1/box_properties/margin_left-expected.png: Removed.
  • platform/efl/css1/box_properties/margin_left-expected.txt: Removed.
  • platform/efl/css1/box_properties/margin_left_inline-expected.png: Removed.
  • platform/efl/css1/box_properties/margin_left_inline-expected.txt: Removed.
  • platform/efl/css1/box_properties/margin_right-expected.png: Removed.
  • platform/efl/css1/box_properties/margin_right-expected.txt: Removed.
  • platform/efl/css1/box_properties/margin_right_inline-expected.png: Removed.
  • platform/efl/css1/box_properties/margin_right_inline-expected.txt: Removed.
  • platform/efl/css1/box_properties/margin_top-expected.png: Removed.
  • platform/efl/css1/box_properties/margin_top-expected.txt: Removed.
  • platform/efl/css1/box_properties/margin_top_inline-expected.png: Removed.
  • platform/efl/css1/box_properties/margin_top_inline-expected.txt: Removed.
  • platform/efl/css1/box_properties/padding-expected.png: Removed.
  • platform/efl/css1/box_properties/padding-expected.txt: Removed.
  • platform/efl/css1/box_properties/padding_bottom-expected.png: Removed.
  • platform/efl/css1/box_properties/padding_bottom-expected.txt: Removed.
  • platform/efl/css1/box_properties/padding_bottom_inline-expected.png: Removed.
  • platform/efl/css1/box_properties/padding_bottom_inline-expected.txt: Removed.
  • platform/efl/css1/box_properties/padding_inline-expected.png: Removed.
  • platform/efl/css1/box_properties/padding_inline-expected.txt: Removed.
  • platform/efl/css1/box_properties/padding_left-expected.png: Removed.
  • platform/efl/css1/box_properties/padding_left-expected.txt: Removed.
  • platform/efl/css1/box_properties/padding_left_inline-expected.png: Removed.
  • platform/efl/css1/box_properties/padding_left_inline-expected.txt: Removed.
  • platform/efl/css1/box_properties/padding_right-expected.png: Removed.
  • platform/efl/css1/box_properties/padding_right-expected.txt: Removed.
  • platform/efl/css1/box_properties/padding_right_inline-expected.png: Removed.
  • platform/efl/css1/box_properties/padding_right_inline-expected.txt: Removed.
  • platform/efl/css1/box_properties/padding_top-expected.png: Removed.
  • platform/efl/css1/box_properties/padding_top-expected.txt: Removed.
  • platform/efl/css1/box_properties/padding_top_inline-expected.png: Removed.
  • platform/efl/css1/box_properties/padding_top_inline-expected.txt: Removed.
  • platform/efl/css1/box_properties/width-expected.png: Removed.
  • platform/efl/css1/box_properties/width-expected.txt: Removed.
  • platform/efl/css1/cascade: Removed.
  • platform/efl/css1/cascade/cascade_order-expected.png: Removed.
  • platform/efl/css1/cascade/cascade_order-expected.txt: Removed.
  • platform/efl/css1/cascade/important-expected.png: Removed.
  • platform/efl/css1/cascade/important-expected.txt: Removed.
  • platform/efl/css1/classification: Removed.
  • platform/efl/css1/classification/display-expected.png: Removed.
  • platform/efl/css1/classification/display-expected.txt: Removed.
  • platform/efl/css1/classification/list_style-expected.png: Removed.
  • platform/efl/css1/classification/list_style-expected.txt: Removed.
  • platform/efl/css1/classification/list_style_image-expected.png: Removed.
  • platform/efl/css1/classification/list_style_image-expected.txt: Removed.
  • platform/efl/css1/classification/list_style_position-expected.png: Removed.
  • platform/efl/css1/classification/list_style_position-expected.txt: Removed.
  • platform/efl/css1/classification/list_style_type-expected.png: Removed.
  • platform/efl/css1/classification/list_style_type-expected.txt: Removed.
  • platform/efl/css1/classification/white_space-expected.png: Removed.
  • platform/efl/css1/classification/white_space-expected.txt: Removed.
  • platform/efl/css1/color_and_background: Removed.
  • platform/efl/css1/color_and_background/background-expected.png: Removed.
  • platform/efl/css1/color_and_background/background-expected.txt: Removed.
  • platform/efl/css1/color_and_background/background_attachment-expected.png: Removed.
  • platform/efl/css1/color_and_background/background_attachment-expected.txt: Removed.
  • platform/efl/css1/color_and_background/background_color-expected.png: Removed.
  • platform/efl/css1/color_and_background/background_color-expected.txt: Removed.
  • platform/efl/css1/color_and_background/background_image-expected.png: Removed.
  • platform/efl/css1/color_and_background/background_image-expected.txt: Removed.
  • platform/efl/css1/color_and_background/background_position-expected.png: Removed.
  • platform/efl/css1/color_and_background/background_position-expected.txt: Removed.
  • platform/efl/css1/color_and_background/background_repeat-expected.png: Removed.
  • platform/efl/css1/color_and_background/background_repeat-expected.txt: Removed.
  • platform/efl/css1/color_and_background/color-expected.png: Removed.
  • platform/efl/css1/color_and_background/color-expected.txt: Removed.
  • platform/efl/css1/conformance: Removed.
  • platform/efl/css1/conformance/forward_compatible_parsing-expected.png: Removed.
  • platform/efl/css1/conformance/forward_compatible_parsing-expected.txt: Removed.
  • platform/efl/css1/font_properties: Removed.
  • platform/efl/css1/font_properties/font-expected.png: Removed.
  • platform/efl/css1/font_properties/font-expected.txt: Removed.
  • platform/efl/css1/font_properties/font_family-expected.png: Removed.
  • platform/efl/css1/font_properties/font_family-expected.txt: Removed.
  • platform/efl/css1/font_properties/font_size-expected.png: Removed.
  • platform/efl/css1/font_properties/font_size-expected.txt: Removed.
  • platform/efl/css1/font_properties/font_style-expected.png: Removed.
  • platform/efl/css1/font_properties/font_style-expected.txt: Removed.
  • platform/efl/css1/font_properties/font_variant-expected.png: Removed.
  • platform/efl/css1/font_properties/font_variant-expected.txt: Removed.
  • platform/efl/css1/font_properties/font_weight-expected.png: Removed.
  • platform/efl/css1/font_properties/font_weight-expected.txt: Removed.
  • platform/efl/css1/formatting_model: Removed.
  • platform/efl/css1/formatting_model/canvas-expected.png: Removed.
  • platform/efl/css1/formatting_model/canvas-expected.txt: Removed.
  • platform/efl/css1/formatting_model/floating_elements-expected.png: Removed.
  • platform/efl/css1/formatting_model/floating_elements-expected.txt: Removed.
  • platform/efl/css1/formatting_model/height_of_lines-expected.png: Removed.
  • platform/efl/css1/formatting_model/height_of_lines-expected.txt: Removed.
  • platform/efl/css1/formatting_model/horizontal_formatting-expected.png: Removed.
  • platform/efl/css1/formatting_model/horizontal_formatting-expected.txt: Removed.
  • platform/efl/css1/formatting_model/inline_elements-expected.png: Removed.
  • platform/efl/css1/formatting_model/inline_elements-expected.txt: Removed.
  • platform/efl/css1/formatting_model/replaced_elements-expected.png: Removed.
  • platform/efl/css1/formatting_model/replaced_elements-expected.txt: Removed.
  • platform/efl/css1/formatting_model/vertical_formatting-expected.png: Removed.
  • platform/efl/css1/formatting_model/vertical_formatting-expected.txt: Removed.
  • platform/efl/css1/pseudo: Removed.
  • platform/efl/css1/pseudo/anchor-expected.png: Removed.
  • platform/efl/css1/pseudo/anchor-expected.txt: Removed.
  • platform/efl/css1/pseudo/firstletter-expected.png: Removed.
  • platform/efl/css1/pseudo/firstletter-expected.txt: Removed.
  • platform/efl/css1/pseudo/firstline-expected.png: Removed.
  • platform/efl/css1/pseudo/firstline-expected.txt: Removed.
  • platform/efl/css1/pseudo/multiple_pseudo_elements-expected.png: Removed.
  • platform/efl/css1/pseudo/multiple_pseudo_elements-expected.txt: Removed.
  • platform/efl/css1/pseudo/pseudo_elements_in_selectors-expected.png: Removed.
  • platform/efl/css1/pseudo/pseudo_elements_in_selectors-expected.txt: Removed.
  • platform/efl/css1/text_properties: Removed.
  • platform/efl/css1/text_properties/letter_spacing-expected.png: Removed.
  • platform/efl/css1/text_properties/letter_spacing-expected.txt: Removed.
  • platform/efl/css1/text_properties/line_height-expected.png: Removed.
  • platform/efl/css1/text_properties/line_height-expected.txt: Removed.
  • platform/efl/css1/text_properties/text_align-expected.png: Removed.
  • platform/efl/css1/text_properties/text_align-expected.txt: Removed.
  • platform/efl/css1/text_properties/text_decoration-expected.png: Removed.
  • platform/efl/css1/text_properties/text_decoration-expected.txt: Removed.
  • platform/efl/css1/text_properties/text_indent-expected.png: Removed.
  • platform/efl/css1/text_properties/text_indent-expected.txt: Removed.
  • platform/efl/css1/text_properties/text_transform-expected.png: Removed.
  • platform/efl/css1/text_properties/text_transform-expected.txt: Removed.
  • platform/efl/css1/text_properties/vertical_align-expected.png: Removed.
  • platform/efl/css1/text_properties/vertical_align-expected.txt: Removed.
  • platform/efl/css1/text_properties/word_spacing-expected.png: Removed.
  • platform/efl/css1/text_properties/word_spacing-expected.txt: Removed.
  • platform/efl/css1/units: Removed.
  • platform/efl/css1/units/color_units-expected.png: Removed.
  • platform/efl/css1/units/color_units-expected.txt: Removed.
  • platform/efl/css1/units/length_units-expected.png: Removed.
  • platform/efl/css1/units/length_units-expected.txt: Removed.
  • platform/efl/css1/units/percentage_units-expected.png: Removed.
  • platform/efl/css1/units/percentage_units-expected.txt: Removed.
  • platform/efl/css1/units/urls-expected.png: Removed.
  • platform/efl/css1/units/urls-expected.txt: Removed.
  • platform/efl/css2.1: Removed.
  • platform/efl/css2.1/20110323: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-002-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-002-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-003-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-003-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-004-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-004-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-005-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-005-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-006-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-006-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-007-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-007-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-008-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-008-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-009-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-009-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-010-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-010-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-011-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-011-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-012-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-012-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-002-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-002-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-003-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-003-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-004-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-004-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-005-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-005-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-006-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-006-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-007-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-007-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-008-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-008-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-009-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-009-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-010-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-010-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-011-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-011-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-012-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-012-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-002-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-002-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-003-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-003-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-004-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-004-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-005-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-005-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-006-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-006-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-007-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-007-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-008-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-008-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-009-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-009-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-010-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-010-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-011-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-011-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-012-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-012-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-013-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-013-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-014-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-014-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-015-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-015-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-016-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-016-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-017-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-017-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-018-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-018-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-019-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-019-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-020-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-020-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-021-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-021-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-022-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-022-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-023-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-023-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-024-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-024-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-002-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-002-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-003-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-003-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-004-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-004-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-005-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-005-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-007-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-007-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-008-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-008-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-009-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-009-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-010-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-010-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-011-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-011-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-012-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-012-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-014-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-014-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-016-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-016-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-017-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-017-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-018-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-018-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-019-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-019-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-021-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-021-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-022-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-022-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-023-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-023-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-024-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-024-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-025-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-025-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-026-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-026-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-028-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-028-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-029-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-029-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-030-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-030-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-031-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-031-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-032-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-032-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-033-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-033-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-035-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-035-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-height-036-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-006-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-006-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-008-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-008-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-013-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-013-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-015-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-015-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-020-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-020-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-022-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-022-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-027-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-027-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-029-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-029-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-034-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-034-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-036-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-036-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-041-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-041-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-043-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-043-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-048-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-048-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-050-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-050-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-055-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-055-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-057-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-057-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-062-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-062-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-064-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-064-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-069-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-069-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-071-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-071-expected.txt: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-076-expected.png: Removed.
  • platform/efl/css2.1/20110323/absolute-replaced-width-076-expected.txt: Removed.
  • platform/efl/css2.1/20110323/abspos-containing-block-initial-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/abspos-containing-block-initial-007-expected.png: Removed.
  • platform/efl/css2.1/20110323/abspos-containing-block-initial-007-ref-expected.png: Removed.
  • platform/efl/css2.1/20110323/abspos-containing-block-initial-007-ref-expected.txt: Removed.
  • platform/efl/css2.1/20110323/abspos-non-replaced-width-margin-000-expected.png: Removed.
  • platform/efl/css2.1/20110323/abspos-non-replaced-width-margin-000-ref-expected.png: Removed.
  • platform/efl/css2.1/20110323/abspos-non-replaced-width-margin-000-ref-expected.txt: Removed.
  • platform/efl/css2.1/20110323/abspos-replaced-width-margin-000-expected.png: Removed.
  • platform/efl/css2.1/20110323/abspos-replaced-width-margin-000-ref-expected.png: Removed.
  • platform/efl/css2.1/20110323/abspos-replaced-width-margin-000-ref-expected.txt: Removed.
  • platform/efl/css2.1/20110323/background-intrinsic-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/background-intrinsic-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/background-intrinsic-002-expected.png: Removed.
  • platform/efl/css2.1/20110323/background-intrinsic-002-expected.txt: Removed.
  • platform/efl/css2.1/20110323/background-intrinsic-003-expected.png: Removed.
  • platform/efl/css2.1/20110323/background-intrinsic-003-expected.txt: Removed.
  • platform/efl/css2.1/20110323/background-intrinsic-004-expected.png: Removed.
  • platform/efl/css2.1/20110323/background-intrinsic-004-expected.txt: Removed.
  • platform/efl/css2.1/20110323/background-intrinsic-005-expected.png: Removed.
  • platform/efl/css2.1/20110323/background-intrinsic-005-expected.txt: Removed.
  • platform/efl/css2.1/20110323/background-intrinsic-006-expected.png: Removed.
  • platform/efl/css2.1/20110323/background-intrinsic-006-expected.txt: Removed.
  • platform/efl/css2.1/20110323/background-intrinsic-007-expected.png: Removed.
  • platform/efl/css2.1/20110323/background-intrinsic-007-expected.txt: Removed.
  • platform/efl/css2.1/20110323/background-intrinsic-008-expected.png: Removed.
  • platform/efl/css2.1/20110323/background-intrinsic-008-expected.txt: Removed.
  • platform/efl/css2.1/20110323/background-intrinsic-009-expected.png: Removed.
  • platform/efl/css2.1/20110323/background-intrinsic-009-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-002-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-002-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-003-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-003-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-004-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-004-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-005-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-005-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-006-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-006-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-007-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-007-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-008-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-008-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-009-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-009-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-010-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-010-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-011-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-012-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-012-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-013-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-014-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-014-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-015-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-015-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-016-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-height-016-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-width-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-width-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-width-002-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-width-002-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-width-003-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-width-003-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-width-004-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-width-004-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-width-005-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-width-005-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-width-006-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-width-006-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-width-007-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-width-007-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-width-008-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-non-replaced-width-008-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-replaced-height-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-replaced-height-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-replaced-height-002-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-replaced-height-002-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-replaced-height-003-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-replaced-height-003-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-replaced-height-004-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-replaced-height-004-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-replaced-height-005-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-replaced-height-005-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-replaced-height-007-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-replaced-height-007-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-replaced-width-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-replaced-width-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/block-replaced-width-006-expected.png: Removed.
  • platform/efl/css2.1/20110323/block-replaced-width-006-expected.txt: Removed.
  • platform/efl/css2.1/20110323/border-collapse-offset-002-expected.png: Removed.
  • platform/efl/css2.1/20110323/border-collapse-offset-002-expected.txt: Removed.
  • platform/efl/css2.1/20110323/border-conflict-style-079-expected.png: Removed.
  • platform/efl/css2.1/20110323/border-conflict-style-079-expected.txt: Removed.
  • platform/efl/css2.1/20110323/border-conflict-style-088-expected.png: Removed.
  • platform/efl/css2.1/20110323/border-conflict-style-088-expected.txt: Removed.
  • platform/efl/css2.1/20110323/border-spacing-applies-to-015-expected.png: Removed.
  • platform/efl/css2.1/20110323/border-spacing-applies-to-015-expected.txt: Removed.
  • platform/efl/css2.1/20110323/c543-txt-decor-000-expected.png: Removed.
  • platform/efl/css2.1/20110323/c543-txt-decor-000-expected.txt: Removed.
  • platform/efl/css2.1/20110323/dynamic-top-change-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/dynamic-top-change-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/dynamic-top-change-002-expected.png: Removed.
  • platform/efl/css2.1/20110323/dynamic-top-change-002-expected.txt: Removed.
  • platform/efl/css2.1/20110323/dynamic-top-change-003-expected.png: Removed.
  • platform/efl/css2.1/20110323/dynamic-top-change-003-expected.txt: Removed.
  • platform/efl/css2.1/20110323/dynamic-top-change-004-expected.png: Removed.
  • platform/efl/css2.1/20110323/dynamic-top-change-004-expected.txt: Removed.
  • platform/efl/css2.1/20110323/empty-inline-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/empty-inline-002-expected.png: Removed.
  • platform/efl/css2.1/20110323/empty-inline-002-expected.txt: Removed.
  • platform/efl/css2.1/20110323/empty-inline-003-expected.png: Removed.
  • platform/efl/css2.1/20110323/empty-inline-003-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-height-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-height-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-width-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-width-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-width-002-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-width-002-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-width-003-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-width-003-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-width-004-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-width-004-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-width-005-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-width-005-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-width-006-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-width-006-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-width-007-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-width-007-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-width-008-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-width-008-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-width-009-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-width-009-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-width-010-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-width-010-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-width-011-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-width-011-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-width-012-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-non-replaced-width-012-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-replaced-height-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-replaced-height-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-replaced-height-002-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-replaced-height-002-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-replaced-height-003-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-replaced-height-003-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-replaced-height-004-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-replaced-height-004-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-replaced-height-005-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-replaced-height-005-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-replaced-height-007-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-replaced-height-007-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-replaced-width-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-replaced-width-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-replaced-width-002-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-replaced-width-002-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-replaced-width-003-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-replaced-width-003-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-replaced-width-004-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-replaced-width-004-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-replaced-width-005-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-replaced-width-005-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-replaced-width-006-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-replaced-width-006-expected.txt: Removed.
  • platform/efl/css2.1/20110323/float-replaced-width-011-expected.png: Removed.
  • platform/efl/css2.1/20110323/float-replaced-width-011-expected.txt: Removed.
  • platform/efl/css2.1/20110323/floating-replaced-height-008-expected.png: Removed.
  • platform/efl/css2.1/20110323/floating-replaced-height-008-expected.txt: Removed.
  • platform/efl/css2.1/20110323/height-width-inline-table-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/height-width-inline-table-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/height-width-table-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/height-width-table-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-block-non-replaced-height-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-block-non-replaced-height-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-block-non-replaced-height-002-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-block-non-replaced-height-002-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-block-non-replaced-width-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-block-non-replaced-width-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-block-non-replaced-width-002-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-block-non-replaced-width-002-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-block-non-replaced-width-003-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-block-non-replaced-width-003-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-block-non-replaced-width-004-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-block-non-replaced-width-004-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-block-replaced-height-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-block-replaced-height-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-block-replaced-height-002-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-block-replaced-height-002-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-block-replaced-height-003-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-block-replaced-height-003-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-block-replaced-height-004-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-block-replaced-height-004-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-block-replaced-height-005-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-block-replaced-height-005-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-block-replaced-height-007-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-block-replaced-height-007-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-block-replaced-height-008-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-block-replaced-height-008-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-block-replaced-width-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-block-replaced-width-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-block-replaced-width-006-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-block-replaced-width-006-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-non-replaced-height-002-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-non-replaced-height-002-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-non-replaced-height-003-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-non-replaced-height-003-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-non-replaced-width-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-non-replaced-width-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-non-replaced-width-002-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-non-replaced-width-002-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-height-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-height-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-height-002-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-height-002-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-height-003-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-height-003-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-height-004-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-height-004-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-height-005-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-height-005-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-height-007-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-height-007-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-height-008-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-height-008-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-width-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-width-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-width-006-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-width-006-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-width-011-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-width-011-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-width-012-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-width-012-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-width-013-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-width-013-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-width-014-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-width-014-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-width-015-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-replaced-width-015-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-table-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-table-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-table-002a-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-table-002a-expected.txt: Removed.
  • platform/efl/css2.1/20110323/inline-table-003-expected.png: Removed.
  • platform/efl/css2.1/20110323/inline-table-003-expected.txt: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-002-expected.png: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-002-expected.txt: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-003-expected.png: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-003-expected.txt: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-004-expected.png: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-004-expected.txt: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-005-expected.png: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-005-expected.txt: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-006-expected.png: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-006-expected.txt: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-007-expected.png: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-007-expected.txt: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-008-expected.png: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-008-expected.txt: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-009-expected.png: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-009-expected.txt: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-010-expected.png: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-010-expected.txt: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-012-expected.png: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-012-expected.txt: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-013-expected.png: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-013-expected.txt: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-014-expected.png: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-014-expected.txt: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-015-expected.png: Removed.
  • platform/efl/css2.1/20110323/margin-applies-to-015-expected.txt: Removed.
  • platform/efl/css2.1/20110323/outline-color-applies-to-008-expected.png: Removed.
  • platform/efl/css2.1/20110323/outline-color-applies-to-008-expected.txt: Removed.
  • platform/efl/css2.1/20110323/replaced-elements-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/replaced-elements-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/replaced-intrinsic-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/replaced-intrinsic-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/replaced-intrinsic-003-expected.png: Removed.
  • platform/efl/css2.1/20110323/replaced-intrinsic-003-expected.txt: Removed.
  • platform/efl/css2.1/20110323/replaced-intrinsic-004-expected.png: Removed.
  • platform/efl/css2.1/20110323/replaced-intrinsic-004-expected.txt: Removed.
  • platform/efl/css2.1/20110323/replaced-intrinsic-005-expected.png: Removed.
  • platform/efl/css2.1/20110323/replaced-intrinsic-005-expected.txt: Removed.
  • platform/efl/css2.1/20110323/replaced-intrinsic-ratio-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/replaced-intrinsic-ratio-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/replaced-min-max-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/replaced-min-max-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/table-caption-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/table-caption-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/table-caption-002-expected.png: Removed.
  • platform/efl/css2.1/20110323/table-caption-002-expected.txt: Removed.
  • platform/efl/css2.1/20110323/table-caption-horizontal-alignment-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/table-caption-horizontal-alignment-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/table-caption-margins-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/table-caption-margins-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/table-caption-optional-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/table-caption-optional-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/table-caption-optional-002-expected.png: Removed.
  • platform/efl/css2.1/20110323/table-caption-optional-002-expected.txt: Removed.
  • platform/efl/css2.1/20110323/table-height-algorithm-023-expected.png: Removed.
  • platform/efl/css2.1/20110323/table-height-algorithm-023-expected.txt: Removed.
  • platform/efl/css2.1/20110323/table-height-algorithm-024-expected.png: Removed.
  • platform/efl/css2.1/20110323/table-height-algorithm-024-expected.txt: Removed.
  • platform/efl/css2.1/20110323/width-non-replaced-inline-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/width-non-replaced-inline-001-expected.txt: Removed.
  • platform/efl/css2.1/20110323/width-replaced-element-001-expected.png: Removed.
  • platform/efl/css2.1/20110323/width-replaced-element-001-expected.txt: Removed.
  • platform/efl/css2.1/t010403-shand-border-00-c-expected.png: Removed.
  • platform/efl/css2.1/t010403-shand-border-00-c-expected.txt: Removed.
  • platform/efl/css2.1/t010403-shand-font-00-b-expected.png: Removed.
  • platform/efl/css2.1/t010403-shand-font-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t010403-shand-font-01-b-expected.png: Removed.
  • platform/efl/css2.1/t010403-shand-font-01-b-expected.txt: Removed.
  • platform/efl/css2.1/t010403-shand-font-02-b-expected.png: Removed.
  • platform/efl/css2.1/t010403-shand-font-02-b-expected.txt: Removed.
  • platform/efl/css2.1/t010403-shand-font-03-b-expected.png: Removed.
  • platform/efl/css2.1/t010403-shand-font-03-b-expected.txt: Removed.
  • platform/efl/css2.1/t040102-keywords-00-b-expected.png: Removed.
  • platform/efl/css2.1/t040102-keywords-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t040102-keywords-01-b-expected.png: Removed.
  • platform/efl/css2.1/t040102-keywords-01-b-expected.txt: Removed.
  • platform/efl/css2.1/t040103-case-00-b-expected.png: Removed.
  • platform/efl/css2.1/t040103-case-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t040103-case-01-c-expected.png: Removed.
  • platform/efl/css2.1/t040103-case-01-c-expected.txt: Removed.
  • platform/efl/css2.1/t040103-escapes-00-b-expected.png: Removed.
  • platform/efl/css2.1/t040103-escapes-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t040103-escapes-01-b-expected.png: Removed.
  • platform/efl/css2.1/t040103-escapes-01-b-expected.txt: Removed.
  • platform/efl/css2.1/t040103-escapes-02-d-expected.png: Removed.
  • platform/efl/css2.1/t040103-escapes-02-d-expected.txt: Removed.
  • platform/efl/css2.1/t040103-escapes-03-b-expected.png: Removed.
  • platform/efl/css2.1/t040103-escapes-03-b-expected.txt: Removed.
  • platform/efl/css2.1/t040103-escapes-04-b-expected.png: Removed.
  • platform/efl/css2.1/t040103-escapes-04-b-expected.txt: Removed.
  • platform/efl/css2.1/t040103-escapes-05-c-expected.png: Removed.
  • platform/efl/css2.1/t040103-escapes-05-c-expected.txt: Removed.
  • platform/efl/css2.1/t040103-escapes-06-b-expected.png: Removed.
  • platform/efl/css2.1/t040103-escapes-06-b-expected.txt: Removed.
  • platform/efl/css2.1/t040103-escapes-07-b-expected.png: Removed.
  • platform/efl/css2.1/t040103-escapes-07-b-expected.txt: Removed.
  • platform/efl/css2.1/t040103-escapes-08-b-expected.png: Removed.
  • platform/efl/css2.1/t040103-escapes-08-b-expected.txt: Removed.
  • platform/efl/css2.1/t040103-ident-00-c-expected.png: Removed.
  • platform/efl/css2.1/t040103-ident-00-c-expected.txt: Removed.
  • platform/efl/css2.1/t040103-ident-01-c-expected.png: Removed.
  • platform/efl/css2.1/t040103-ident-01-c-expected.txt: Removed.
  • platform/efl/css2.1/t040103-ident-02-c-expected.png: Removed.
  • platform/efl/css2.1/t040103-ident-02-c-expected.txt: Removed.
  • platform/efl/css2.1/t040103-ident-03-c-expected.png: Removed.
  • platform/efl/css2.1/t040103-ident-03-c-expected.txt: Removed.
  • platform/efl/css2.1/t040103-ident-04-c-expected.png: Removed.
  • platform/efl/css2.1/t040103-ident-04-c-expected.txt: Removed.
  • platform/efl/css2.1/t040103-ident-05-c-expected.png: Removed.
  • platform/efl/css2.1/t040103-ident-05-c-expected.txt: Removed.
  • platform/efl/css2.1/t040103-ident-06-c-expected.png: Removed.
  • platform/efl/css2.1/t040103-ident-06-c-expected.txt: Removed.
  • platform/efl/css2.1/t040103-ident-07-c-expected.png: Removed.
  • platform/efl/css2.1/t040103-ident-07-c-expected.txt: Removed.
  • platform/efl/css2.1/t040103-ident-08-c-expected.png: Removed.
  • platform/efl/css2.1/t040103-ident-08-c-expected.txt: Removed.
  • platform/efl/css2.1/t040103-ident-09-c-expected.png: Removed.
  • platform/efl/css2.1/t040103-ident-09-c-expected.txt: Removed.
  • platform/efl/css2.1/t040103-ident-10-c-expected.png: Removed.
  • platform/efl/css2.1/t040103-ident-10-c-expected.txt: Removed.
  • platform/efl/css2.1/t040103-ident-11-c-expected.png: Removed.
  • platform/efl/css2.1/t040103-ident-11-c-expected.txt: Removed.
  • platform/efl/css2.1/t040103-ident-12-c-expected.png: Removed.
  • platform/efl/css2.1/t040103-ident-12-c-expected.txt: Removed.
  • platform/efl/css2.1/t040103-ident-13-c-expected.png: Removed.
  • platform/efl/css2.1/t040103-ident-13-c-expected.txt: Removed.
  • platform/efl/css2.1/t040105-atkeyw-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t040105-atkeyw-01-b-expected.txt: Removed.
  • platform/efl/css2.1/t040105-atkeyw-02-b-expected.txt: Removed.
  • platform/efl/css2.1/t040105-atrule-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t040105-atrule-01-b-expected.txt: Removed.
  • platform/efl/css2.1/t040105-atrule-02-b-expected.txt: Removed.
  • platform/efl/css2.1/t040105-atrule-03-b-expected.txt: Removed.
  • platform/efl/css2.1/t040105-atrule-04-b-expected.txt: Removed.
  • platform/efl/css2.1/t040105-import-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t040105-import-01-b-expected.txt: Removed.
  • platform/efl/css2.1/t040105-import-10-b-expected.txt: Removed.
  • platform/efl/css2.1/t040109-c17-comments-00-b-expected.png: Removed.
  • platform/efl/css2.1/t040109-c17-comments-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t040109-c17-comments-01-b-expected.png: Removed.
  • platform/efl/css2.1/t040109-c17-comments-01-b-expected.txt: Removed.
  • platform/efl/css2.1/t0402-c71-fwd-parsing-00-f-expected.png: Removed.
  • platform/efl/css2.1/t0402-c71-fwd-parsing-00-f-expected.txt: Removed.
  • platform/efl/css2.1/t0402-c71-fwd-parsing-01-f-expected.png: Removed.
  • platform/efl/css2.1/t0402-c71-fwd-parsing-01-f-expected.txt: Removed.
  • platform/efl/css2.1/t0402-c71-fwd-parsing-02-f-expected.png: Removed.
  • platform/efl/css2.1/t0402-c71-fwd-parsing-02-f-expected.txt: Removed.
  • platform/efl/css2.1/t0402-c71-fwd-parsing-03-f-expected.png: Removed.
  • platform/efl/css2.1/t0402-c71-fwd-parsing-03-f-expected.txt: Removed.
  • platform/efl/css2.1/t0402-c71-fwd-parsing-04-f-expected.png: Removed.
  • platform/efl/css2.1/t0402-c71-fwd-parsing-04-f-expected.txt: Removed.
  • platform/efl/css2.1/t0402-syntax-01-f-expected.txt: Removed.
  • platform/efl/css2.1/t0402-syntax-02-f-expected.txt: Removed.
  • platform/efl/css2.1/t0402-syntax-03-f-expected.txt: Removed.
  • platform/efl/css2.1/t0402-syntax-04-f-expected.txt: Removed.
  • platform/efl/css2.1/t0402-syntax-05-f-expected.txt: Removed.
  • platform/efl/css2.1/t0402-syntax-06-f-expected.txt: Removed.
  • platform/efl/css2.1/t040302-c61-ex-len-00-b-a-expected.png: Removed.
  • platform/efl/css2.1/t040302-c61-ex-len-00-b-a-expected.txt: Removed.
  • platform/efl/css2.1/t040302-c61-phys-len-00-b-expected.png: Removed.
  • platform/efl/css2.1/t040302-c61-phys-len-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t040302-c61-rel-len-00-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t040302-c61-rel-len-00-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t040303-c62-percent-00-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t040303-c62-percent-00-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t040304-c64-uri-00-a-g-expected.png: Removed.
  • platform/efl/css2.1/t040304-c64-uri-00-a-g-expected.txt: Removed.
  • platform/efl/css2.1/t040306-c63-color-00-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t040306-c63-color-00-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t040306-syntax-01-f-expected.png: Removed.
  • platform/efl/css2.1/t040306-syntax-01-f-expected.txt: Removed.
  • platform/efl/css2.1/t040307-syntax-01-b-expected.txt: Removed.
  • platform/efl/css2.1/t050201-c12-grouping-00-b-expected.png: Removed.
  • platform/efl/css2.1/t050201-c12-grouping-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t0505-c16-descendant-00-e-expected.png: Removed.
  • platform/efl/css2.1/t0505-c16-descendant-00-e-expected.txt: Removed.
  • platform/efl/css2.1/t0505-c16-descendant-01-e-expected.png: Removed.
  • platform/efl/css2.1/t0505-c16-descendant-01-e-expected.txt: Removed.
  • platform/efl/css2.1/t0505-c16-descendant-02-e-expected.txt: Removed.
  • platform/efl/css2.1/t050803-c14-classes-00-e-expected.png: Removed.
  • platform/efl/css2.1/t050803-c14-classes-00-e-expected.txt: Removed.
  • platform/efl/css2.1/t0509-c15-ids-00-a-expected.png: Removed.
  • platform/efl/css2.1/t0509-c15-ids-00-a-expected.txt: Removed.
  • platform/efl/css2.1/t0509-c15-ids-01-e-expected.png: Removed.
  • platform/efl/css2.1/t0509-c15-ids-01-e-expected.txt: Removed.
  • platform/efl/css2.1/t0509-id-sel-syntax-01-f-expected.txt: Removed.
  • platform/efl/css2.1/t0509-id-sel-syntax-02-b-expected.txt: Removed.
  • platform/efl/css2.1/t0510-c25-pseudo-elmnt-00-c-expected.png: Removed.
  • platform/efl/css2.1/t0510-c25-pseudo-elmnt-00-c-expected.txt: Removed.
  • platform/efl/css2.1/t0511-c21-pseud-anch-00-e-i-expected.png: Removed.
  • platform/efl/css2.1/t0511-c21-pseud-anch-00-e-i-expected.txt: Removed.
  • platform/efl/css2.1/t0511-c21-pseud-link-00-e-expected.txt: Removed.
  • platform/efl/css2.1/t0511-c21-pseud-link-01-e-expected.txt: Removed.
  • platform/efl/css2.1/t0511-c21-pseud-link-02-e-expected.txt: Removed.
  • platform/efl/css2.1/t0511-c21-pseud-link-03-e-expected.txt: Removed.
  • platform/efl/css2.1/t051103-c21-activ-ln-00-e-i-expected.png: Removed.
  • platform/efl/css2.1/t051103-c21-activ-ln-00-e-i-expected.txt: Removed.
  • platform/efl/css2.1/t051103-c21-focus-ln-00-e-i-expected.txt: Removed.
  • platform/efl/css2.1/t051103-c21-hover-ln-00-e-i-expected.txt: Removed.
  • platform/efl/css2.1/t051103-dom-hover-01-c-io-expected.png: Removed.
  • platform/efl/css2.1/t051103-dom-hover-01-c-io-expected.txt: Removed.
  • platform/efl/css2.1/t051103-dom-hover-02-c-io-expected.png: Removed.
  • platform/efl/css2.1/t051103-dom-hover-02-c-io-expected.txt: Removed.
  • platform/efl/css2.1/t051201-c23-first-line-00-b-expected.png: Removed.
  • platform/efl/css2.1/t051201-c23-first-line-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t051202-c24-first-lttr-00-b-expected.png: Removed.
  • platform/efl/css2.1/t051202-c24-first-lttr-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t051202-c26-psudo-nest-00-c-expected.png: Removed.
  • platform/efl/css2.1/t051202-c26-psudo-nest-00-c-expected.txt: Removed.
  • platform/efl/css2.1/t0602-c13-inh-underlin-00-e-expected.png: Removed.
  • platform/efl/css2.1/t0602-c13-inh-underlin-00-e-expected.txt: Removed.
  • platform/efl/css2.1/t0602-c13-inheritance-00-e-expected.png: Removed.
  • platform/efl/css2.1/t0602-c13-inheritance-00-e-expected.txt: Removed.
  • platform/efl/css2.1/t0602-inherit-bdr-pad-b-00-expected.png: Removed.
  • platform/efl/css2.1/t0602-inherit-bdr-pad-b-00-expected.txt: Removed.
  • platform/efl/css2.1/t0603-c11-import-00-b-expected.png: Removed.
  • platform/efl/css2.1/t0603-c11-import-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t060401-c32-cascading-00-b-expected.png: Removed.
  • platform/efl/css2.1/t060401-c32-cascading-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t060402-c31-important-00-b-expected.png: Removed.
  • platform/efl/css2.1/t060402-c31-important-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t060403-c21-pseu-cls-00-e-i-expected.png: Removed.
  • platform/efl/css2.1/t060403-c21-pseu-cls-00-e-i-expected.txt: Removed.
  • platform/efl/css2.1/t060403-c21-pseu-id-00-e-i-expected.png: Removed.
  • platform/efl/css2.1/t060403-c21-pseu-id-00-e-i-expected.txt: Removed.
  • platform/efl/css2.1/t0801-c412-hz-box-00-b-a-expected.png: Removed.
  • platform/efl/css2.1/t0801-c412-hz-box-00-b-a-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5502-imrgn-r-03-b-a-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5502-imrgn-r-03-b-a-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5502-mrgn-r-01-c-a-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5502-mrgn-r-01-c-a-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5502-mrgn-r-02-c-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5502-mrgn-r-02-c-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5502-mrgn-r-03-c-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5502-mrgn-r-03-c-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5504-imrgn-l-03-b-a-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5504-imrgn-l-03-b-a-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5504-mrgn-l-01-c-a-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5504-mrgn-l-01-c-a-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5504-mrgn-l-02-c-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5504-mrgn-l-03-c-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5504-mrgn-l-03-c-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5505-imrgn-00-a-ag-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5505-imrgn-00-a-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5505-mrgn-00-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5505-mrgn-00-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5505-mrgn-01-e-a-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5505-mrgn-01-e-a-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5505-mrgn-02-c-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5505-mrgn-02-c-expected.txt: Removed.
  • platform/efl/css2.1/t0803-c5505-mrgn-03-c-ag-expected.png: Removed.
  • platform/efl/css2.1/t0803-c5505-mrgn-03-c-ag-expected.txt: Removed.
  • platform/efl/css2.1/t080301-c411-vt-mrgn-00-b-expected.png: Removed.
  • platform/efl/css2.1/t080301-c411-vt-mrgn-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5506-padn-t-00-b-a-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5506-padn-t-00-b-a-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5507-ipadn-r-03-b-a-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5507-ipadn-r-03-b-a-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5507-padn-r-00-c-ag-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5507-padn-r-00-c-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5507-padn-r-01-c-a-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5507-padn-r-01-c-a-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5507-padn-r-02-f-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5507-padn-r-02-f-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5507-padn-r-03-f-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5507-padn-r-03-f-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5509-ipadn-l-03-b-a-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5509-ipadn-l-03-b-a-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5509-padn-l-00-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5509-padn-l-00-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5509-padn-l-01-b-a-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5509-padn-l-01-b-a-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5509-padn-l-02-f-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5509-padn-l-02-f-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5509-padn-l-03-f-g-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5509-padn-l-03-f-g-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5510-ipadn-00-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5510-ipadn-00-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5510-padn-00-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5510-padn-00-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5510-padn-01-e-a-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5510-padn-01-e-a-expected.txt: Removed.
  • platform/efl/css2.1/t0804-c5510-padn-02-f-expected.png: Removed.
  • platform/efl/css2.1/t0804-c5510-padn-02-f-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5511-brdr-tw-00-b-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5511-brdr-tw-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5511-brdr-tw-02-b-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5511-brdr-tw-03-b-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5511-brdr-tw-03-b-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5512-brdr-rw-00-b-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5512-brdr-rw-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5512-brdr-rw-02-b-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5512-brdr-rw-03-b-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5512-brdr-rw-03-b-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5513-brdr-bw-00-b-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5513-brdr-bw-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5513-brdr-bw-01-b-g-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5513-brdr-bw-01-b-g-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5513-brdr-bw-02-b-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5513-brdr-bw-03-b-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5513-brdr-bw-03-b-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5513-ibrdr-bw-00-a-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5513-ibrdr-bw-00-a-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5514-brdr-lw-00-b-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5514-brdr-lw-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5514-brdr-lw-01-b-g-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5514-brdr-lw-01-b-g-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5514-brdr-lw-02-b-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5514-brdr-lw-03-b-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5514-brdr-lw-03-b-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5514-ibrdr-lw-00-a-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5514-ibrdr-lw-00-a-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5515-brdr-w-00-a-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5515-brdr-w-00-a-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5515-brdr-w-01-b-g-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5515-brdr-w-01-b-g-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5515-brdr-w-02-b-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5515-ibrdr-00-b-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5515-ibrdr-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5516-brdr-c-00-a-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5516-brdr-c-00-a-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5516-ibrdr-c-00-a-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5516-ibrdr-c-00-a-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5517-brdr-s-00-c-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5517-brdr-s-00-c-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5517-ibrdr-s-00-a-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5517-ibrdr-s-00-a-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5518-brdr-t-00-a-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5518-brdr-t-00-a-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5518-brdr-t-01-e-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5518-brdr-t-01-e-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5518-ibrdr-t-00-a-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5518-ibrdr-t-00-a-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5519-brdr-r-00-a-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5519-brdr-r-00-a-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5519-brdr-r-01-e-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5519-brdr-r-01-e-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5519-brdr-r-02-e-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5519-brdr-r-02-e-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5519-ibrdr-r-00-a-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5519-ibrdr-r-00-a-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5520-brdr-b-00-a-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5520-brdr-b-00-a-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5520-brdr-b-01-e-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5520-brdr-b-01-e-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5520-ibrdr-b-00-a-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5520-ibrdr-b-00-a-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5521-brdr-l-00-a-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5521-brdr-l-00-a-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5521-brdr-l-01-e-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5521-brdr-l-01-e-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5521-brdr-l-02-e-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5521-brdr-l-02-e-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5521-ibrdr-l-00-a-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5521-ibrdr-l-00-a-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5522-brdr-00-b-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5522-brdr-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5522-brdr-01-b-g-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5522-brdr-01-b-g-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5522-brdr-02-e-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5522-brdr-02-e-expected.txt: Removed.
  • platform/efl/css2.1/t0805-c5522-ibrdr-00-a-expected.png: Removed.
  • platform/efl/css2.1/t0805-c5522-ibrdr-00-a-expected.txt: Removed.
  • platform/efl/css2.1/t09-c5526c-display-00-e-expected.png: Removed.
  • platform/efl/css2.1/t09-c5526c-display-00-e-expected.txt: Removed.
  • platform/efl/css2.1/t090204-display-change-01-b-ao-expected.png: Removed.
  • platform/efl/css2.1/t090204-display-change-01-b-ao-expected.txt: Removed.
  • platform/efl/css2.1/t090402-c42-ibx-pad-00-d-ag-expected.png: Removed.
  • platform/efl/css2.1/t090402-c42-ibx-pad-00-d-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0905-c414-flt-00-d-expected.png: Removed.
  • platform/efl/css2.1/t0905-c414-flt-00-d-expected.txt: Removed.
  • platform/efl/css2.1/t0905-c414-flt-01-d-g-expected.png: Removed.
  • platform/efl/css2.1/t0905-c414-flt-01-d-g-expected.txt: Removed.
  • platform/efl/css2.1/t0905-c414-flt-02-c-expected.png: Removed.
  • platform/efl/css2.1/t0905-c414-flt-02-c-expected.txt: Removed.
  • platform/efl/css2.1/t0905-c414-flt-03-c-expected.png: Removed.
  • platform/efl/css2.1/t0905-c414-flt-03-c-expected.txt: Removed.
  • platform/efl/css2.1/t0905-c414-flt-04-c-expected.png: Removed.
  • platform/efl/css2.1/t0905-c414-flt-04-c-expected.txt: Removed.
  • platform/efl/css2.1/t0905-c414-flt-fit-00-d-expected.png: Removed.
  • platform/efl/css2.1/t0905-c414-flt-fit-00-d-expected.txt: Removed.
  • platform/efl/css2.1/t0905-c414-flt-fit-01-d-g-expected.png: Removed.
  • platform/efl/css2.1/t0905-c414-flt-fit-01-d-g-expected.txt: Removed.
  • platform/efl/css2.1/t0905-c414-flt-wrap-00-e-expected.png: Removed.
  • platform/efl/css2.1/t0905-c414-flt-wrap-00-e-expected.txt: Removed.
  • platform/efl/css2.1/t0905-c414-flt-wrap-01-d-g-expected.png: Removed.
  • platform/efl/css2.1/t0905-c414-flt-wrap-01-d-g-expected.txt: Removed.
  • platform/efl/css2.1/t0905-c5525-fltblck-00-d-ag-expected.png: Removed.
  • platform/efl/css2.1/t0905-c5525-fltblck-00-d-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0905-c5525-fltblck-01-d-expected.png: Removed.
  • platform/efl/css2.1/t0905-c5525-fltblck-01-d-expected.txt: Removed.
  • platform/efl/css2.1/t0905-c5525-fltclr-00-c-ag-expected.png: Removed.
  • platform/efl/css2.1/t0905-c5525-fltclr-00-c-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0905-c5525-fltcont-00-d-g-expected.png: Removed.
  • platform/efl/css2.1/t0905-c5525-fltcont-00-d-g-expected.txt: Removed.
  • platform/efl/css2.1/t0905-c5525-flthw-00-c-g-expected.png: Removed.
  • platform/efl/css2.1/t0905-c5525-flthw-00-c-g-expected.txt: Removed.
  • platform/efl/css2.1/t0905-c5525-fltinln-00-c-ag-expected.png: Removed.
  • platform/efl/css2.1/t0905-c5525-fltinln-00-c-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0905-c5525-fltmrgn-00-c-ag-expected.png: Removed.
  • platform/efl/css2.1/t0905-c5525-fltmrgn-00-c-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0905-c5525-fltmult-00-d-g-expected.png: Removed.
  • platform/efl/css2.1/t0905-c5525-fltmult-00-d-g-expected.txt: Removed.
  • platform/efl/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png: Removed.
  • platform/efl/css2.1/t0905-c5525-fltwidth-00-c-g-expected.txt: Removed.
  • platform/efl/css2.1/t0905-c5525-fltwidth-01-c-g-expected.png: Removed.
  • platform/efl/css2.1/t0905-c5525-fltwidth-01-c-g-expected.txt: Removed.
  • platform/efl/css2.1/t0905-c5525-fltwidth-02-c-g-expected.png: Removed.
  • platform/efl/css2.1/t0905-c5525-fltwidth-02-c-g-expected.txt: Removed.
  • platform/efl/css2.1/t0905-c5525-fltwidth-03-c-g-expected.png: Removed.
  • platform/efl/css2.1/t0905-c5525-fltwidth-03-c-g-expected.txt: Removed.
  • platform/efl/css2.1/t0905-c5525-fltwrap-00-b-expected.png: Removed.
  • platform/efl/css2.1/t0905-c5525-fltwrap-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t0905-c5526-fltclr-00-c-ag-expected.png: Removed.
  • platform/efl/css2.1/t0905-c5526-fltclr-00-c-ag-expected.txt: Removed.
  • platform/efl/css2.1/t0905-c5526-flthw-00-c-g-expected.png: Removed.
  • platform/efl/css2.1/t0905-c5526-flthw-00-c-g-expected.txt: Removed.
  • platform/efl/css2.1/t090501-c414-flt-00-d-expected.png: Removed.
  • platform/efl/css2.1/t090501-c414-flt-00-d-expected.txt: Removed.
  • platform/efl/css2.1/t090501-c414-flt-01-b-expected.png: Removed.
  • platform/efl/css2.1/t090501-c414-flt-01-b-expected.txt: Removed.
  • platform/efl/css2.1/t090501-c414-flt-02-d-g-expected.png: Removed.
  • platform/efl/css2.1/t090501-c414-flt-02-d-g-expected.txt: Removed.
  • platform/efl/css2.1/t090501-c414-flt-03-b-g-expected.png: Removed.
  • platform/efl/css2.1/t090501-c414-flt-03-b-g-expected.txt: Removed.
  • platform/efl/css2.1/t090501-c414-flt-ln-00-d-expected.png: Removed.
  • platform/efl/css2.1/t090501-c414-flt-ln-00-d-expected.txt: Removed.
  • platform/efl/css2.1/t090501-c414-flt-ln-01-d-g-expected.png: Removed.
  • platform/efl/css2.1/t090501-c414-flt-ln-01-d-g-expected.txt: Removed.
  • platform/efl/css2.1/t090501-c414-flt-ln-02-d-expected.png: Removed.
  • platform/efl/css2.1/t090501-c414-flt-ln-02-d-expected.txt: Removed.
  • platform/efl/css2.1/t090501-c414-flt-ln-03-d-expected.png: Removed.
  • platform/efl/css2.1/t090501-c414-flt-ln-03-d-expected.txt: Removed.
  • platform/efl/css2.1/t090501-c5525-flt-l-00-b-g-expected.png: Removed.
  • platform/efl/css2.1/t090501-c5525-flt-l-00-b-g-expected.txt: Removed.
  • platform/efl/css2.1/t090501-c5525-flt-r-00-b-g-expected.png: Removed.
  • platform/efl/css2.1/t090501-c5525-flt-r-00-b-g-expected.txt: Removed.
  • platform/efl/css2.1/t1002-c5523-width-00-b-g-expected.png: Removed.
  • platform/efl/css2.1/t1002-c5523-width-00-b-g-expected.txt: Removed.
  • platform/efl/css2.1/t1002-c5523-width-01-b-g-expected.png: Removed.
  • platform/efl/css2.1/t1002-c5523-width-01-b-g-expected.txt: Removed.
  • platform/efl/css2.1/t1002-c5523-width-02-b-g-expected.png: Removed.
  • platform/efl/css2.1/t1002-c5523-width-02-b-g-expected.txt: Removed.
  • platform/efl/css2.1/t100303-c412-blockw-00-d-ag-expected.png: Removed.
  • platform/efl/css2.1/t100303-c412-blockw-00-d-ag-expected.txt: Removed.
  • platform/efl/css2.1/t100304-c43-rpl-bbx-00-d-g-expected.png: Removed.
  • platform/efl/css2.1/t100304-c43-rpl-bbx-00-d-g-expected.txt: Removed.
  • platform/efl/css2.1/t100304-c43-rpl-bbx-01-d-g-expected.png: Removed.
  • platform/efl/css2.1/t100304-c43-rpl-bbx-01-d-g-expected.txt: Removed.
  • platform/efl/css2.1/t1004-c43-rpl-bbx-00-d-ag-expected.png: Removed.
  • platform/efl/css2.1/t1004-c43-rpl-bbx-00-d-ag-expected.txt: Removed.
  • platform/efl/css2.1/t1004-c43-rpl-ibx-00-d-ag-expected.png: Removed.
  • platform/efl/css2.1/t1004-c43-rpl-ibx-00-d-ag-expected.txt: Removed.
  • platform/efl/css2.1/t1004-c5524-width-00-b-g-expected.png: Removed.
  • platform/efl/css2.1/t1004-c5524-width-00-b-g-expected.txt: Removed.
  • platform/efl/css2.1/t1005-c5524-width-00-b-g-expected.png: Removed.
  • platform/efl/css2.1/t1005-c5524-width-00-b-g-expected.txt: Removed.
  • platform/efl/css2.1/t1005-c5524-width-01-b-g-expected.png: Removed.
  • platform/efl/css2.1/t1005-c5524-width-01-b-g-expected.txt: Removed.
  • platform/efl/css2.1/t1008-c44-ln-box-00-d-ag-expected.png: Removed.
  • platform/efl/css2.1/t1008-c44-ln-box-00-d-ag-expected.txt: Removed.
  • platform/efl/css2.1/t1008-c44-ln-box-01-d-ag-expected.png: Removed.
  • platform/efl/css2.1/t1008-c44-ln-box-01-d-ag-expected.txt: Removed.
  • platform/efl/css2.1/t1008-c44-ln-box-02-d-ag-expected.png: Removed.
  • platform/efl/css2.1/t1008-c44-ln-box-02-d-ag-expected.txt: Removed.
  • platform/efl/css2.1/t1008-c44-ln-box-03-d-ag-expected.png: Removed.
  • platform/efl/css2.1/t1008-c44-ln-box-03-d-ag-expected.txt: Removed.
  • platform/efl/css2.1/t100801-c42-ibx-ht-00-d-a-expected.png: Removed.
  • platform/efl/css2.1/t100801-c42-ibx-ht-00-d-a-expected.txt: Removed.
  • platform/efl/css2.1/t100801-c544-valgn-00-a-ag-expected.png: Removed.
  • platform/efl/css2.1/t100801-c544-valgn-00-a-ag-expected.txt: Removed.
  • platform/efl/css2.1/t100801-c544-valgn-01-d-ag-expected.png: Removed.
  • platform/efl/css2.1/t100801-c544-valgn-01-d-ag-expected.txt: Removed.
  • platform/efl/css2.1/t100801-c544-valgn-02-d-agi-expected.png: Removed.
  • platform/efl/css2.1/t100801-c544-valgn-02-d-agi-expected.txt: Removed.
  • platform/efl/css2.1/t100801-c544-valgn-03-d-agi-expected.png: Removed.
  • platform/efl/css2.1/t100801-c544-valgn-03-d-agi-expected.txt: Removed.
  • platform/efl/css2.1/t100801-c544-valgn-04-d-agi-expected.png: Removed.
  • platform/efl/css2.1/t100801-c544-valgn-04-d-agi-expected.txt: Removed.
  • platform/efl/css2.1/t100801-c548-leadin-00-d-a-expected.png: Removed.
  • platform/efl/css2.1/t100801-c548-leadin-00-d-a-expected.txt: Removed.
  • platform/efl/css2.1/t100801-c548-ln-ht-00-c-a-expected.png: Removed.
  • platform/efl/css2.1/t100801-c548-ln-ht-00-c-a-expected.txt: Removed.
  • platform/efl/css2.1/t100801-c548-ln-ht-01-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t100801-c548-ln-ht-01-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t100801-c548-ln-ht-02-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t100801-c548-ln-ht-02-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t100801-c548-ln-ht-03-d-ag-expected.png: Removed.
  • platform/efl/css2.1/t100801-c548-ln-ht-03-d-ag-expected.txt: Removed.
  • platform/efl/css2.1/t100801-c548-ln-ht-04-d-ag-expected.png: Removed.
  • platform/efl/css2.1/t100801-c548-ln-ht-04-d-ag-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counter-00-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counter-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counter-01-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counter-01-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counter-02-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counter-02-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counter-03-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counter-03-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counter-04-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counter-04-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counter-05-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counter-05-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counter-06-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counter-06-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counter-07-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counter-07-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counter-08-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counter-08-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counter-09-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counter-09-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counter-11-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counter-11-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counter-12-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counter-12-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counter-13-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counter-13-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counter-14-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counter-14-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counter-15-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counter-15-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counter-16-f-expected.png: Removed.
  • platform/efl/css2.1/t1202-counter-16-f-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counters-00-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counters-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counters-01-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counters-01-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counters-02-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counters-02-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counters-03-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counters-03-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counters-04-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counters-04-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counters-05-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counters-05-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counters-06-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counters-06-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counters-07-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counters-07-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counters-08-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counters-08-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counters-09-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counters-09-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counters-11-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counters-11-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counters-12-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counters-12-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counters-13-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counters-13-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counters-14-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counters-14-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counters-15-b-expected.png: Removed.
  • platform/efl/css2.1/t1202-counters-15-b-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counters-16-c-expected.png: Removed.
  • platform/efl/css2.1/t1202-counters-16-c-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counters-17-d-expected.png: Removed.
  • platform/efl/css2.1/t1202-counters-17-d-expected.txt: Removed.
  • platform/efl/css2.1/t1202-counters-18-f-expected.png: Removed.
  • platform/efl/css2.1/t1202-counters-18-f-expected.txt: Removed.
  • platform/efl/css2.1/t1204-implied-00-b-expected.png: Removed.
  • platform/efl/css2.1/t1204-implied-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t1204-implied-01-c-expected.png: Removed.
  • platform/efl/css2.1/t1204-implied-01-c-expected.txt: Removed.
  • platform/efl/css2.1/t1204-implied-02-d-expected.png: Removed.
  • platform/efl/css2.1/t1204-implied-02-d-expected.txt: Removed.
  • platform/efl/css2.1/t1204-multiple-00-c-expected.png: Removed.
  • platform/efl/css2.1/t1204-multiple-00-c-expected.txt: Removed.
  • platform/efl/css2.1/t1204-multiple-01-c-expected.png: Removed.
  • platform/efl/css2.1/t1204-multiple-01-c-expected.txt: Removed.
  • platform/efl/css2.1/t1204-order-00-c-expected.png: Removed.
  • platform/efl/css2.1/t1204-order-00-c-expected.txt: Removed.
  • platform/efl/css2.1/t1204-order-01-d-expected.png: Removed.
  • platform/efl/css2.1/t1204-order-01-d-expected.txt: Removed.
  • platform/efl/css2.1/t1204-root-e-expected.png: Removed.
  • platform/efl/css2.1/t1204-root-e-expected.txt: Removed.
  • platform/efl/css2.1/t120401-scope-00-b-expected.png: Removed.
  • platform/efl/css2.1/t120401-scope-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t120401-scope-01-c-expected.png: Removed.
  • platform/efl/css2.1/t120401-scope-01-c-expected.txt: Removed.
  • platform/efl/css2.1/t120401-scope-02-c-expected.png: Removed.
  • platform/efl/css2.1/t120401-scope-02-c-expected.txt: Removed.
  • platform/efl/css2.1/t120401-scope-03-c-expected.png: Removed.
  • platform/efl/css2.1/t120401-scope-03-c-expected.txt: Removed.
  • platform/efl/css2.1/t120401-scope-04-d-expected.png: Removed.
  • platform/efl/css2.1/t120401-scope-04-d-expected.txt: Removed.
  • platform/efl/css2.1/t120403-content-none-00-c-expected.png: Removed.
  • platform/efl/css2.1/t120403-content-none-00-c-expected.txt: Removed.
  • platform/efl/css2.1/t120403-display-none-00-c-expected.png: Removed.
  • platform/efl/css2.1/t120403-display-none-00-c-expected.txt: Removed.
  • platform/efl/css2.1/t120403-visibility-00-c-expected.png: Removed.
  • platform/efl/css2.1/t120403-visibility-00-c-expected.txt: Removed.
  • platform/efl/css2.1/t1205-c561-list-displ-00-b-expected.png: Removed.
  • platform/efl/css2.1/t1205-c561-list-displ-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t1205-c563-list-type-00-b-expected.png: Removed.
  • platform/efl/css2.1/t1205-c563-list-type-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t1205-c563-list-type-01-b-expected.png: Removed.
  • platform/efl/css2.1/t1205-c563-list-type-01-b-expected.txt: Removed.
  • platform/efl/css2.1/t1205-c564-list-img-00-b-g-expected.png: Removed.
  • platform/efl/css2.1/t1205-c564-list-img-00-b-g-expected.txt: Removed.
  • platform/efl/css2.1/t1205-c565-list-pos-00-b-expected.png: Removed.
  • platform/efl/css2.1/t1205-c565-list-pos-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t1205-c566-list-stl-00-e-ag-expected.png: Removed.
  • platform/efl/css2.1/t1205-c566-list-stl-00-e-ag-expected.txt: Removed.
  • platform/efl/css2.1/t1205-c566-list-stl-01-c-g-expected.png: Removed.
  • platform/efl/css2.1/t1401-c531-color-00-a-expected.png: Removed.
  • platform/efl/css2.1/t1401-c531-color-00-a-expected.txt: Removed.
  • platform/efl/css2.1/t1402-c45-bg-canvas-00-b-expected.png: Removed.
  • platform/efl/css2.1/t1402-c45-bg-canvas-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t140201-c532-bgcolor-00-a-expected.png: Removed.
  • platform/efl/css2.1/t140201-c532-bgcolor-00-a-expected.txt: Removed.
  • platform/efl/css2.1/t140201-c532-bgcolor-01-b-expected.txt: Removed.
  • platform/efl/css2.1/t140201-c533-bgimage-00-a-expected.png: Removed.
  • platform/efl/css2.1/t140201-c533-bgimage-00-a-expected.txt: Removed.
  • platform/efl/css2.1/t140201-c533-bgimage-01-b-g-expected.txt: Removed.
  • platform/efl/css2.1/t140201-c534-bgre-00-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t140201-c534-bgre-00-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t140201-c534-bgre-01-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t140201-c534-bgre-01-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t140201-c534-bgreps-00-c-ag-expected.png: Removed.
  • platform/efl/css2.1/t140201-c534-bgreps-00-c-ag-expected.txt: Removed.
  • platform/efl/css2.1/t140201-c534-bgreps-01-c-ag-expected.png: Removed.
  • platform/efl/css2.1/t140201-c534-bgreps-01-c-ag-expected.txt: Removed.
  • platform/efl/css2.1/t140201-c534-bgreps-02-c-ag-expected.png: Removed.
  • platform/efl/css2.1/t140201-c534-bgreps-02-c-ag-expected.txt: Removed.
  • platform/efl/css2.1/t140201-c534-bgreps-03-c-ag-expected.png: Removed.
  • platform/efl/css2.1/t140201-c534-bgreps-03-c-ag-expected.txt: Removed.
  • platform/efl/css2.1/t140201-c534-bgreps-04-c-ag-expected.png: Removed.
  • platform/efl/css2.1/t140201-c534-bgreps-04-c-ag-expected.txt: Removed.
  • platform/efl/css2.1/t140201-c534-bgreps-05-c-ag-expected.png: Removed.
  • platform/efl/css2.1/t140201-c534-bgreps-05-c-ag-expected.txt: Removed.
  • platform/efl/css2.1/t140201-c535-bg-fixd-00-b-g-expected.png: Removed.
  • platform/efl/css2.1/t140201-c535-bg-fixd-00-b-g-expected.txt: Removed.
  • platform/efl/css2.1/t140201-c536-bgpos-00-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t140201-c536-bgpos-00-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t140201-c536-bgpos-01-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t140201-c537-bgfxps-00-c-ag-expected.png: Removed.
  • platform/efl/css2.1/t140201-c537-bgfxps-00-c-ag-expected.txt: Removed.
  • platform/efl/css2.1/t1503-c522-font-family-00-b-expected.png: Removed.
  • platform/efl/css2.1/t1503-c522-font-family-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t1504-c523-font-style-00-b-expected.png: Removed.
  • platform/efl/css2.1/t1504-c523-font-style-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t1505-c524-font-var-00-b-expected.png: Removed.
  • platform/efl/css2.1/t1505-c524-font-var-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t1506-c525-font-wt-00-b-expected.png: Removed.
  • platform/efl/css2.1/t1506-c525-font-wt-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t1507-c526-font-sz-00-b-expected.png: Removed.
  • platform/efl/css2.1/t1507-c526-font-sz-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t1507-c526-font-sz-01-b-a-expected.png: Removed.
  • platform/efl/css2.1/t1507-c526-font-sz-01-b-a-expected.txt: Removed.
  • platform/efl/css2.1/t1507-c526-font-sz-02-b-a-expected.png: Removed.
  • platform/efl/css2.1/t1507-c526-font-sz-02-b-a-expected.txt: Removed.
  • platform/efl/css2.1/t1507-c526-font-sz-03-f-a-expected.png: Removed.
  • platform/efl/css2.1/t1507-c526-font-sz-03-f-a-expected.txt: Removed.
  • platform/efl/css2.1/t1508-c527-font-00-b-expected.png: Removed.
  • platform/efl/css2.1/t1508-c527-font-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t1508-c527-font-01-b-expected.png: Removed.
  • platform/efl/css2.1/t1508-c527-font-02-b-expected.png: Removed.
  • platform/efl/css2.1/t1508-c527-font-03-b-expected.png: Removed.
  • platform/efl/css2.1/t1508-c527-font-04-b-expected.png: Removed.
  • platform/efl/css2.1/t1508-c527-font-05-b-expected.png: Removed.
  • platform/efl/css2.1/t1508-c527-font-06-b-expected.png: Removed.
  • platform/efl/css2.1/t1508-c527-font-06-b-expected.txt: Removed.
  • platform/efl/css2.1/t1508-c527-font-07-b-expected.png: Removed.
  • platform/efl/css2.1/t1508-c527-font-08-b-expected.png: Removed.
  • platform/efl/css2.1/t1508-c527-font-09-b-expected.png: Removed.
  • platform/efl/css2.1/t1508-c527-font-10-c-expected.png: Removed.
  • platform/efl/css2.1/t1601-c547-indent-00-b-a-expected.png: Removed.
  • platform/efl/css2.1/t1601-c547-indent-00-b-a-expected.txt: Removed.
  • platform/efl/css2.1/t1601-c547-indent-01-d-expected.png: Removed.
  • platform/efl/css2.1/t1601-c547-indent-01-d-expected.txt: Removed.
  • platform/efl/css2.1/t1602-c43-center-00-d-ag-expected.png: Removed.
  • platform/efl/css2.1/t1602-c43-center-00-d-ag-expected.txt: Removed.
  • platform/efl/css2.1/t1602-c546-txt-align-00-b-expected.png: Removed.
  • platform/efl/css2.1/t1602-c546-txt-align-00-b-expected.txt: Removed.
  • platform/efl/css2.1/t1604-c542-letter-sp-00-b-a-expected.txt: Removed.
  • platform/efl/css2.1/t1604-c542-letter-sp-01-b-a-expected.png: Removed.
  • platform/efl/css2.1/t1604-c542-letter-sp-01-b-a-expected.txt: Removed.
  • platform/efl/css2.1/t1605-c545-txttrans-00-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t1605-c545-txttrans-00-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t1606-c562-white-sp-00-b-ag-expected.png: Removed.
  • platform/efl/css2.1/t1606-c562-white-sp-00-b-ag-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-00-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-00-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-01-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-01-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-02-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-02-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-03-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-03-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-04-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-04-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-05-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-05-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-06-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-06-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-07-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-07-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-08-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-08-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-09-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-09-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-10-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-10-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-11-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-11-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-12-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-12-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-13-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-13-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-14-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-14-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-15-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-15-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-16-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-16-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-17-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-17-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-18-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-18-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-19-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-19-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-20-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-20-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-21-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-21-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-22-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-22-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-23-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-23-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-24-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-24-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-25-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-25-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-26-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-26-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-27-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-27-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-28-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-28-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-29-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-29-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-30-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-30-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-31-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-31-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-32-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-32-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-33-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-33-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-34-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-34-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-35-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-35-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-36-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-36-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-37-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-37-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-38-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-38-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-39-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-39-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-40-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-40-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-41-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-41-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-42-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-42-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-43-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-43-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-44-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-44-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-45-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-45-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-46-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-46-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-47-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-47-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-48-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-48-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-49-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-49-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-50-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-50-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-51-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-51-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-52-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-52-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-53-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-53-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-54-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-54-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-55-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-55-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-56-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-56-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-57-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-57-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-58-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-58-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-59-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-59-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-60-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-60-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-61-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-61-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-62-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-62-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-63-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-63-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-64-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-64-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-65-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-65-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-66-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-66-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-67-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-67-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-68-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-68-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-69-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-69-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-70-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-70-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-71-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-71-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-72-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-72-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-73-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-73-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-74-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-74-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-75-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-75-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-76-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-76-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-77-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-77-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-78-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-78-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-79-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-79-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-80-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-80-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-81-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-81-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-82-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-82-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-83-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-83-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-84-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-84-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-85-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-85-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-86-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-86-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-87-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-87-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-88-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-88-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-89-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-89-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-90-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-90-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-91-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-91-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-92-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-92-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-93-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-93-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-94-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-94-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-95-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-95-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-96-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-96-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-97-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-97-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-98-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-98-d-expected.txt: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-99-d-expected.png: Removed.
  • platform/efl/css2.1/t170602-bdr-conflct-w-99-d-expected.txt: Removed.
  • platform/efl/css3: Removed.
  • platform/efl/css3/css3-modsel-33-expected.png: Removed.
  • platform/efl/css3/css3-modsel-33-expected.txt: Removed.
  • platform/efl/css3/css3-modsel-35-expected.png: Removed.
  • platform/efl/css3/css3-modsel-35-expected.txt: Removed.
  • platform/efl/css3/css3-modsel-36-expected.png: Removed.
  • platform/efl/css3/css3-modsel-36-expected.txt: Removed.
  • platform/efl/css3/css3-modsel-37-expected.png: Removed.
  • platform/efl/css3/css3-modsel-37-expected.txt: Removed.
  • platform/efl/css3/flexbox: Removed.
  • platform/efl/css3/flexbox/flexbox-baseline-expected.png: Removed.
  • platform/efl/css3/flexbox/flexbox-baseline-expected.txt: Removed.
  • platform/efl/css3/flexbox/flexbox-baseline-margins-expected.txt: Removed.
  • platform/efl/css3/flexbox/line-wrapping-expected.txt: Removed.
  • platform/efl/css3/flexbox/repaint-during-resize-no-flex-expected.png: Removed.
  • platform/efl/css3/flexbox/repaint-expected.png: Removed.
  • platform/efl/css3/flexbox/repaint-rtl-column-expected.png: Removed.
  • platform/efl/css3/images: Removed.
  • platform/efl/css3/images/cross-fade-background-size-expected.png: Removed.
  • platform/efl/css3/images/cross-fade-invalidation-expected.png: Removed.
  • platform/efl/css3/images/cross-fade-overflow-position-expected.png: Removed.
  • platform/efl/css3/images/cross-fade-simple-expected.png: Removed.
  • platform/efl/css3/images/cross-fade-sizing-expected.png: Removed.
  • platform/efl/css3/images/cross-fade-tiled-expected.png: Removed.
  • platform/efl/css3/masking: Removed.
  • platform/efl/css3/masking/clip-path-circle-border-box-expected.png: Removed.
  • platform/efl/css3/masking/clip-path-circle-border-box-expected.txt: Removed.
  • platform/efl/css3/masking/clip-path-circle-bounding-box-expected.png: Removed.
  • platform/efl/css3/masking/clip-path-circle-bounding-box-expected.txt: Removed.
  • platform/efl/css3/masking/clip-path-circle-content-box-expected.png: Removed.
  • platform/efl/css3/masking/clip-path-circle-content-box-expected.txt: Removed.
  • platform/efl/css3/masking/clip-path-circle-expected.png: Removed.
  • platform/efl/css3/masking/clip-path-circle-filter-expected.png: Removed.
  • platform/efl/css3/masking/clip-path-circle-margin-box-expected.png: Removed.
  • platform/efl/css3/masking/clip-path-circle-margin-box-expected.txt: Removed.
  • platform/efl/css3/masking/clip-path-circle-padding-box-expected.png: Removed.
  • platform/efl/css3/masking/clip-path-circle-padding-box-expected.txt: Removed.
  • platform/efl/css3/masking/clip-path-rectangle-expected.png: Removed.
  • platform/efl/css3/masking/mask-luminance-png-expected.txt: Removed.
  • platform/efl/css3/selectors3: Removed.
  • platform/efl/css3/selectors3/html: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-1-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-1-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-10-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-10-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-11-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-11-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-13-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-13-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-14-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-14-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-144-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-144-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-148-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-148-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-149-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-149b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-14b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-14b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-14c-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-14c-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-14d-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-14d-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-14e-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-14e-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-15-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-15-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-150-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-150-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-151-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-152-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-154-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-154-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-155-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-155-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-155a-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-155a-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-155b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-155b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-155c-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-155c-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-155d-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-155d-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-156-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-156-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-156b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-156b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-156c-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-156c-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-157-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-157-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-158-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-158-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-159-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-159-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-15b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-15b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-16-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-16-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-160-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-160-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-161-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-161-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-166-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-166-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-166a-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-166a-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-167-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-167-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-167a-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-167a-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-168-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-168-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-168a-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-168a-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-169-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-169-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-169a-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-169a-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-17-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-170-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-170a-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-170b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-170c-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-170d-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-175a-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-175b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-175c-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-176-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-176-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-177a-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-177b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-178-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-179-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-179a-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-18-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-18-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-180a-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-181-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-181-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-183-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-183-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-184a-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-184a-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-184b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-184b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-184c-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-184c-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-184d-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-184d-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-184e-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-184e-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-184f-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-184f-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-18a-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-18a-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-18b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-18b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-18c-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-19-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-19-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-19b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-19b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-2-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-2-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-20-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-20-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-21-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-21-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-21b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-21b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-21c-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-22-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-22-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-23-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-23-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-24-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-24-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-25-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-25-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-27-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-27a-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-27b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-28-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-28-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-28b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-28b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-29-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-29-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-29b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-29b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-30-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-30-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-31-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-31-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-32-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-32-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-33-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-33-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-34-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-34-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-35-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-35-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-36-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-36-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-37-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-37-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-38-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-38-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-39-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-39-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-39a-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-39a-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-39b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-39b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-39c-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-39c-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-3a-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-3a-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-4-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-4-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-41-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-41-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-41a-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-41a-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-42-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-42-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-42a-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-42a-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-43-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-43-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-43b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-43b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-44-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-44-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-44b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-44b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-44c-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-44c-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-44d-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-44d-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-45-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-45-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-45b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-45b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-45c-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-45c-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-46-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-46-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-46b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-46b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-5-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-5-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-54-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-54-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-55-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-55-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-56-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-56-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-59-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-59-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-6-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-6-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-60-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-60-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-61-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-62-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-62-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-63-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-63-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-64-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-64-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-65-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-65-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-66-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-66-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-66b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-66b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-67-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-67-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-68-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-68-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-69-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-69-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-7-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-7-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-70-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-70-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-72-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-72-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-72b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-72b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-73-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-73-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-73b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-73b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-74-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-74-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-74b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-74b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-75-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-75-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-75b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-75b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-76-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-76-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-76b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-76b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-77-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-77-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-77b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-77b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-78-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-78-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-78b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-78b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-79-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-79-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-7b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-7b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-8-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-8-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-80-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-80-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-81-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-81-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-81b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-81b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-82-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-82-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-82b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-82b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-83-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-83-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-86-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-87-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-87-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-87b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-87b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-88-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-88-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-88b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-88b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-89-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-9-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-9-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-90-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-90-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-90b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-90b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-d1-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-d1-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-d1b-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-d1b-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-d2-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-d2-expected.txt: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-d4-expected.png: Removed.
  • platform/efl/css3/selectors3/html/css3-modsel-d4-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-1-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-1-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-10-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-10-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-100-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-100-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-100b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-100b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-101-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-101-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-101b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-101b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-102-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-102-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-102b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-102b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-103-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-103-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-103b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-103b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-104-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-104-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-104b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-104b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-105-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-105-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-105b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-105b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-106-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-106-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-106b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-106b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-107-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-107-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-107b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-107b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-108-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-108-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-108b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-108b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-109-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-109-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-109b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-109b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-11-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-11-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-110-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-110-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-110b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-110b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-111-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-111-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-111b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-111b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-112-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-112-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-112b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-112b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-113-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-113-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-113b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-113b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-114-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-114-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-114b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-114b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-115-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-115-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-115b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-115b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-116-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-116-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-116b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-116b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-117-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-117-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-117b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-117b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-118-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-118-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-119-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-119-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-120-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-120-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-121-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-121-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-122-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-122-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-123-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-123-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-123b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-124-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-124-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-124b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-124b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-125-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-125-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-125b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-125b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-126-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-126-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-126b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-126b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-127-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-127-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-127b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-127b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-128-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-128-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-128b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-128b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-129-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-129-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-129b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-129b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-13-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-13-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-130-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-130-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-130b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-130b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-131-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-131-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-131b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-131b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-132-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-132-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-132b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-132b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-133-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-133-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-133b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-133b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-134-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-134-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-134b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-134b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-135-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-135-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-135b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-135b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-136-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-136-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-136b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-136b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-137-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-137-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-137b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-137b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-138-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-138-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-138b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-138b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-139-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-139-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-139b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-139b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-14-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-14-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-140-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-140-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-140b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-140b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-141-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-141-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-141b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-141b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-142-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-142-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-142b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-142b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-143-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-143-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-143b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-143b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-144-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-144-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-145a-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-145a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-145b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-145b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-146a-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-146a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-146b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-146b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-147a-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-147a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-147b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-147b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-148-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-148-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-149-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-149b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-14b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-14b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-14c-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-14c-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-14d-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-14d-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-14e-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-14e-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-15-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-15-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-150-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-150-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-151-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-152-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-153-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-153-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-154-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-154-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-155-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-155-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-155a-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-155a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-155b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-155b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-155c-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-155c-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-155d-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-155d-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-156-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-156-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-156b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-156b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-156c-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-156c-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-157-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-157-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-158-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-158-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-159-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-159-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-15b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-15b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-15c-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-15c-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-16-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-16-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-160-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-160-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-161-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-161-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-166-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-166-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-166a-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-166a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-167-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-167-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-167a-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-167a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-168-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-168-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-168a-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-168a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-169-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-169-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-169a-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-169a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-17-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-170-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-170a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-170b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-170c-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-170d-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-171-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-172a-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-172a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-172b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-172b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-173a-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-173a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-173b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-173b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-174a-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-174a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-174b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-174b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-175a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-175b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-175c-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-176-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-176-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-177a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-177b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-178-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-179-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-179a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-18-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-18-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-180a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-181-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-181-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-182-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-183-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-183-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-184a-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-184a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-184b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-184b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-184c-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-184c-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-184d-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-184d-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-184e-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-184e-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-184f-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-184f-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-18a-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-18a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-18b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-18b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-18c-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-19-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-19-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-19b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-19b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-2-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-2-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-20-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-20-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-21-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-21-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-21b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-21b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-21c-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-22-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-22-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-23-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-23-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-24-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-24-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-25-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-25-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-27-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-27a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-27b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-28-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-28-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-28b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-28b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-29-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-29-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-29b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-29b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-3-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-3-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-30-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-30-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-31-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-31-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-32-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-32-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-33-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-33-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-34-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-34-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-35-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-35-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-36-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-36-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-37-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-37-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-38-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-38-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-39-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-39-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-39a-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-39a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-39b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-39b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-39c-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-39c-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-3a-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-3a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-4-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-4-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-41-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-41-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-41a-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-41a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-42-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-42-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-42a-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-42a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-43-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-43-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-43b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-43b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-44-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-44-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-44b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-44b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-44c-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-44c-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-44d-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-44d-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-45-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-45-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-45b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-45b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-45c-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-45c-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-46-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-46-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-46b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-46b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-47-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-47-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-48-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-48-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-49-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-49-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-5-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-5-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-50-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-50-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-51-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-51-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-52-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-52-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-53-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-53-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-54-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-54-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-55-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-55-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-56-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-56-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-57-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-57-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-57b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-57b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-59-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-59-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-6-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-6-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-60-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-60-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-61-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-62-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-62-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-63-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-63-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-64-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-64-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-65-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-65-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-66-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-66-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-66b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-66b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-67-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-67-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-68-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-68-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-69-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-69-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-7-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-7-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-70-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-70-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-72-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-72-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-72b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-72b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-73-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-73-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-73b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-73b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-74-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-74-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-74b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-74b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-75-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-75-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-75b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-75b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-76-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-76-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-76b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-76b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-77-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-77-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-77b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-77b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-78-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-78-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-78b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-78b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-79-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-79-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-7b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-7b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-8-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-8-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-80-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-80-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-81-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-81-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-81b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-81b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-82-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-82-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-82b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-82b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-83-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-83-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-86-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-87-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-87-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-87b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-87b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-88-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-88-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-88b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-88b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-89-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-9-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-9-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-90-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-90-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-90b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-90b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-91-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-92-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-93-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-93-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-94-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-94-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-94b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-94b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-95-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-95-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-96-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-96-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-96b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-96b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-97-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-97-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-97b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-97b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-98-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-98-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-98b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-98b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-99-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-99-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-99b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-99b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-d1-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-d1-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-d1b-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-d1b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-d2-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-d2-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-d3-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-d3-expected.txt: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-d4-expected.png: Removed.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-d4-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-1-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-1-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-10-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-10-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-100-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-100-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-100b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-100b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-101-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-101-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-101b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-101b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-102-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-102-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-102b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-102b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-103-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-103-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-103b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-103b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-104-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-104-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-104b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-104b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-105-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-105-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-105b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-105b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-106-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-106-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-106b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-106b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-107-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-107-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-107b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-107b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-108-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-108-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-108b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-108b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-109-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-109-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-109b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-109b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-11-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-11-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-110-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-110-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-110b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-110b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-111-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-111-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-111b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-111b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-112-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-112-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-112b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-112b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-113-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-113-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-113b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-113b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-114-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-114-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-114b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-114b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-115-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-115-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-115b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-115b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-116-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-116-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-116b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-116b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-117-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-117-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-117b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-117b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-118-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-118-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-119-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-119-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-120-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-120-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-121-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-121-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-122-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-122-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-123-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-123-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-123b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-124-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-124-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-124b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-124b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-125-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-125-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-125b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-125b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-126-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-126-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-126b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-126b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-127-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-127-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-127b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-127b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-128-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-128-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-128b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-128b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-129-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-129-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-129b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-129b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-13-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-13-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-130-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-130-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-130b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-130b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-131-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-131-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-131b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-131b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-132-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-132-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-132b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-132b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-133-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-133-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-133b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-133b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-134-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-134-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-134b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-134b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-135-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-135-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-135b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-135b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-136-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-136-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-136b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-136b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-137-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-137-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-137b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-137b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-138-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-138-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-138b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-138b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-139-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-139-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-139b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-139b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-14-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-14-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-140-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-140-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-140b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-140b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-141-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-141-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-141b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-141b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-142-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-142-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-142b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-142b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-143-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-143-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-143b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-143b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-144-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-144-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-145a-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-145a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-145b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-145b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-146a-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-146a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-146b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-146b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-147a-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-147a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-147b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-147b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-148-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-148-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-149-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-149b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-14b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-14b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-14c-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-14c-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-14d-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-14d-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-14e-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-14e-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-15-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-15-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-150-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-150-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-151-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-152-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-153-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-153-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-154-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-154-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-155-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-155-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-155a-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-155a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-155b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-155b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-155c-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-155c-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-155d-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-155d-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-156-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-156-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-156b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-156b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-156c-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-156c-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-157-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-157-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-158-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-158-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-159-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-159-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-15b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-15b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-15c-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-15c-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-16-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-16-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-160-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-160-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-161-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-161-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-166-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-166-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-166a-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-166a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-167-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-167a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-168-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-168-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-168a-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-168a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-169-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-169-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-169a-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-169a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-17-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-170-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-170a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-170b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-170c-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-170d-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-171-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-172a-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-172a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-172b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-172b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-173a-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-173a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-173b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-173b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-174a-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-174a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-174b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-174b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-175a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-175b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-175c-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-176-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-176-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-177a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-177b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-178-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-179-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-179a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-18-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-18-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-180a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-181-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-181-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-182-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-183-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-183-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-184a-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-184a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-184b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-184b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-184c-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-184c-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-184d-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-184d-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-184e-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-184e-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-184f-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-184f-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-18a-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-18a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-18b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-18b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-18c-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-19-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-19-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-19b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-19b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-2-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-2-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-20-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-20-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-21-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-21-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-21b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-21b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-21c-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-22-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-22-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-23-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-23-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-24-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-24-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-25-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-25-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-27-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-27a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-27b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-28-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-28-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-28b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-28b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-29-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-29-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-29b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-29b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-3-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-3-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-30-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-30-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-31-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-31-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-32-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-32-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-33-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-33-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-34-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-34-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-35-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-35-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-36-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-36-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-37-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-37-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-38-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-38-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-39-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-39-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-39a-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-39a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-39b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-39b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-39c-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-39c-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-3a-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-3a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-4-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-4-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-41-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-41-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-41a-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-41a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-42-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-42-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-42a-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-42a-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-43-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-43-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-43b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-43b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-44-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-44-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-44b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-44b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-44c-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-44c-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-44d-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-44d-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-45-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-45-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-45b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-45b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-45c-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-45c-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-46-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-46-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-46b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-46b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-47-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-47-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-48-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-48-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-49-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-49-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-5-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-5-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-50-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-50-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-51-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-51-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-52-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-52-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-53-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-53-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-54-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-54-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-55-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-55-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-56-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-56-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-57-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-57-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-57b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-57b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-59-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-59-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-6-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-6-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-60-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-60-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-61-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-62-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-62-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-63-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-63-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-64-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-64-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-65-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-65-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-66-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-66-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-66b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-66b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-67-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-67-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-68-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-68-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-69-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-69-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-7-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-7-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-70-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-70-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-72-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-72-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-72b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-72b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-73-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-73-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-73b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-73b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-74-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-74-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-74b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-74b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-75-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-75-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-75b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-75b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-76-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-76-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-76b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-76b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-77-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-77-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-77b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-77b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-78-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-78-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-78b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-78b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-79-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-79-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-7b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-7b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-8-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-8-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-80-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-80-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-81-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-81-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-81b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-81b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-82-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-82-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-82b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-82b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-83-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-83-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-86-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-87-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-87-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-87b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-87b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-88-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-88-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-88b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-88b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-89-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-9-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-9-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-90-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-90-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-90b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-90b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-91-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-92-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-93-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-93-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-94-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-94-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-94b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-94b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-95-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-95-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-96-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-96-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-96b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-96b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-97-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-97-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-97b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-97b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-98-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-98-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-98b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-98b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-99-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-99-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-99b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-99b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-d1-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-d1-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-d1b-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-d1b-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-d2-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-d2-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-d3-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-d3-expected.txt: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-d4-expected.png: Removed.
  • platform/efl/css3/selectors3/xml/css3-modsel-d4-expected.txt: Removed.
  • platform/efl/css3/unicode-bidi-isolate-basic-expected.png: Removed.
  • platform/efl/css3/unicode-bidi-isolate-basic-expected.txt: Removed.
  • platform/efl/editing: Removed.
  • platform/efl/editing/apply-style-iframe-crash-expected.txt: Removed.
  • platform/efl/editing/caret: Removed.
  • platform/efl/editing/caret/caret-color-expected.png: Removed.
  • platform/efl/editing/caret/caret-color-expected.txt: Removed.
  • platform/efl/editing/deleting: Removed.
  • platform/efl/editing/deleting/4922367-expected.png: Removed.
  • platform/efl/editing/deleting/4922367-expected.txt: Removed.
  • platform/efl/editing/deleting/5099303-expected.png: Removed.
  • platform/efl/editing/deleting/5099303-expected.txt: Removed.
  • platform/efl/editing/deleting/5126166-expected.png: Removed.
  • platform/efl/editing/deleting/5126166-expected.txt: Removed.
  • platform/efl/editing/deleting/5144139-2-expected.png: Removed.
  • platform/efl/editing/deleting/5144139-2-expected.txt: Removed.
  • platform/efl/editing/deleting/5206311-1-expected.png: Removed.
  • platform/efl/editing/deleting/5206311-1-expected.txt: Removed.
  • platform/efl/editing/deleting/5272440-expected.png: Removed.
  • platform/efl/editing/deleting/5272440-expected.txt: Removed.
  • platform/efl/editing/deleting/5369009-expected.png: Removed.
  • platform/efl/editing/deleting/5369009-expected.txt: Removed.
  • platform/efl/editing/deleting/5433862-2-expected.png: Removed.
  • platform/efl/editing/deleting/5433862-2-expected.txt: Removed.
  • platform/efl/editing/deleting/5483370-expected.png: Removed.
  • platform/efl/editing/deleting/5483370-expected.txt: Removed.
  • platform/efl/editing/deleting/collapse-whitespace-3587601-fix-expected.png: Removed.
  • platform/efl/editing/deleting/collapse-whitespace-3587601-fix-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-3608445-fix-expected.png: Removed.
  • platform/efl/editing/deleting/delete-3608445-fix-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-3608462-fix-expected.png: Removed.
  • platform/efl/editing/deleting/delete-3608462-fix-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-3775172-fix-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-3800834-fix-expected.png: Removed.
  • platform/efl/editing/deleting/delete-3800834-fix-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-3857753-fix-expected.png: Removed.
  • platform/efl/editing/deleting/delete-3857753-fix-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-3865854-fix-expected.png: Removed.
  • platform/efl/editing/deleting/delete-3865854-fix-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-3928305-fix-expected.png: Removed.
  • platform/efl/editing/deleting/delete-3928305-fix-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-4083333-fix-expected.png: Removed.
  • platform/efl/editing/deleting/delete-4083333-fix-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-after-span-ws-001-expected.png: Removed.
  • platform/efl/editing/deleting/delete-after-span-ws-002-expected.png: Removed.
  • platform/efl/editing/deleting/delete-after-span-ws-003-expected.png: Removed.
  • platform/efl/editing/deleting/delete-and-undo-expected.png: Removed.
  • platform/efl/editing/deleting/delete-and-undo-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-at-paragraph-boundaries-002-expected.png: Removed.
  • platform/efl/editing/deleting/delete-at-paragraph-boundaries-002-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-at-paragraph-boundaries-003-expected.png: Removed.
  • platform/efl/editing/deleting/delete-at-paragraph-boundaries-003-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-at-paragraph-boundaries-004-expected.png: Removed.
  • platform/efl/editing/deleting/delete-at-paragraph-boundaries-004-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-at-paragraph-boundaries-005-expected.png: Removed.
  • platform/efl/editing/deleting/delete-at-paragraph-boundaries-005-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-at-paragraph-boundaries-006-expected.png: Removed.
  • platform/efl/editing/deleting/delete-at-paragraph-boundaries-006-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-at-paragraph-boundaries-007-expected.png: Removed.
  • platform/efl/editing/deleting/delete-at-paragraph-boundaries-007-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-at-paragraph-boundaries-008-expected.png: Removed.
  • platform/efl/editing/deleting/delete-at-paragraph-boundaries-008-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-at-paragraph-boundaries-009-expected.png: Removed.
  • platform/efl/editing/deleting/delete-at-paragraph-boundaries-009-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-at-paragraph-boundaries-010-expected.png: Removed.
  • platform/efl/editing/deleting/delete-at-paragraph-boundaries-010-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-at-paragraph-boundaries-011-expected.png: Removed.
  • platform/efl/editing/deleting/delete-at-paragraph-boundaries-011-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-at-start-or-end-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-contents-001-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-contents-001-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-contents-002-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-contents-002-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-contents-003-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-contents-003-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-001-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-001-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-002-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-002-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-003-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-003-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-004-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-004-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-005-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-005-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-006-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-006-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-007-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-007-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-008-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-008-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-009-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-009-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-010-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-010-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-011-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-011-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-012-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-012-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-013-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-013-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-014-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-014-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-015-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-015-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-016-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-016-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-017-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-017-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-018-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-018-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-019-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-019-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-020-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-020-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-021-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-021-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-022-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-022-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-023-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-023-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-024-expected.png: Removed.
  • platform/efl/editing/deleting/delete-block-merge-contents-024-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-br-001-expected.png: Removed.
  • platform/efl/editing/deleting/delete-br-001-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-br-002-expected.png: Removed.
  • platform/efl/editing/deleting/delete-br-002-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-br-003-expected.png: Removed.
  • platform/efl/editing/deleting/delete-br-003-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-br-004-expected.png: Removed.
  • platform/efl/editing/deleting/delete-br-004-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-br-005-expected.png: Removed.
  • platform/efl/editing/deleting/delete-br-005-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-br-006-expected.png: Removed.
  • platform/efl/editing/deleting/delete-br-006-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-br-007-expected.png: Removed.
  • platform/efl/editing/deleting/delete-br-007-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-br-008-expected.png: Removed.
  • platform/efl/editing/deleting/delete-br-008-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-br-009-expected.png: Removed.
  • platform/efl/editing/deleting/delete-br-009-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-br-010-expected.png: Removed.
  • platform/efl/editing/deleting/delete-br-010-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-br-013-expected.png: Removed.
  • platform/efl/editing/deleting/delete-br-013-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-character-001-expected.png: Removed.
  • platform/efl/editing/deleting/delete-character-001-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-contiguous-ws-001-expected.png: Removed.
  • platform/efl/editing/deleting/delete-contiguous-ws-001-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-first-list-item-expected.png: Removed.
  • platform/efl/editing/deleting/delete-first-list-item-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-hr-expected.png: Removed.
  • platform/efl/editing/deleting/delete-hr-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-image-001-expected.png: Removed.
  • platform/efl/editing/deleting/delete-image-001-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-image-002-expected.png: Removed.
  • platform/efl/editing/deleting/delete-image-002-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-image-003-expected.png: Removed.
  • platform/efl/editing/deleting/delete-image-003-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-image-004-expected.png: Removed.
  • platform/efl/editing/deleting/delete-image-004-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-leading-ws-001-expected.png: Removed.
  • platform/efl/editing/deleting/delete-leading-ws-001-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-line-001-expected.png: Removed.
  • platform/efl/editing/deleting/delete-line-001-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-line-002-expected.png: Removed.
  • platform/efl/editing/deleting/delete-line-002-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-line-003-expected.png: Removed.
  • platform/efl/editing/deleting/delete-line-003-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-line-004-expected.png: Removed.
  • platform/efl/editing/deleting/delete-line-004-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-line-005-expected.png: Removed.
  • platform/efl/editing/deleting/delete-line-005-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-line-006-expected.png: Removed.
  • platform/efl/editing/deleting/delete-line-006-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-line-007-expected.png: Removed.
  • platform/efl/editing/deleting/delete-line-007-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-line-008-expected.png: Removed.
  • platform/efl/editing/deleting/delete-line-008-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-line-009-expected.png: Removed.
  • platform/efl/editing/deleting/delete-line-009-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-line-010-expected.png: Removed.
  • platform/efl/editing/deleting/delete-line-010-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-line-011-expected.png: Removed.
  • platform/efl/editing/deleting/delete-line-011-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-line-012-expected.png: Removed.
  • platform/efl/editing/deleting/delete-line-012-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-line-013-expected.png: Removed.
  • platform/efl/editing/deleting/delete-line-013-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-line-014-expected.png: Removed.
  • platform/efl/editing/deleting/delete-line-014-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-line-015-expected.png: Removed.
  • platform/efl/editing/deleting/delete-line-015-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-line-016-expected.png: Removed.
  • platform/efl/editing/deleting/delete-line-016-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-line-017-expected.png: Removed.
  • platform/efl/editing/deleting/delete-line-017-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-line-end-ws-001-expected.png: Removed.
  • platform/efl/editing/deleting/delete-line-end-ws-002-expected.png: Removed.
  • platform/efl/editing/deleting/delete-listitem-001-expected.png: Removed.
  • platform/efl/editing/deleting/delete-listitem-001-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-listitem-002-expected.png: Removed.
  • platform/efl/editing/deleting/delete-listitem-002-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-selection-001-expected.png: Removed.
  • platform/efl/editing/deleting/delete-selection-001-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-tab-001-expected.png: Removed.
  • platform/efl/editing/deleting/delete-tab-001-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-tab-002-expected.png: Removed.
  • platform/efl/editing/deleting/delete-tab-002-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-tab-003-expected.png: Removed.
  • platform/efl/editing/deleting/delete-tab-003-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-tab-004-expected.png: Removed.
  • platform/efl/editing/deleting/delete-tab-004-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-to-select-table-expected.png: Removed.
  • platform/efl/editing/deleting/delete-to-select-table-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-trailing-ws-001-expected.png: Removed.
  • platform/efl/editing/deleting/delete-trailing-ws-001-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-trailing-ws-002-expected.png: Removed.
  • platform/efl/editing/deleting/delete-trailing-ws-002-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-ws-fixup-001-expected.png: Removed.
  • platform/efl/editing/deleting/delete-ws-fixup-001-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-ws-fixup-002-expected.png: Removed.
  • platform/efl/editing/deleting/delete-ws-fixup-002-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-ws-fixup-003-expected.png: Removed.
  • platform/efl/editing/deleting/delete-ws-fixup-003-expected.txt: Removed.
  • platform/efl/editing/deleting/delete-ws-fixup-004-expected.png: Removed.
  • platform/efl/editing/deleting/delete-ws-fixup-004-expected.txt: Removed.
  • platform/efl/editing/deleting/forward-delete-expected.png: Removed.
  • platform/efl/editing/deleting/forward-delete-expected.txt: Removed.
  • platform/efl/editing/deleting/list-item-1-expected.png: Removed.
  • platform/efl/editing/deleting/list-item-1-expected.txt: Removed.
  • platform/efl/editing/deleting/merge-different-styles-expected.png: Removed.
  • platform/efl/editing/deleting/merge-different-styles-expected.txt: Removed.
  • platform/efl/editing/deleting/merge-endOfParagraph-expected.png: Removed.
  • platform/efl/editing/deleting/merge-endOfParagraph-expected.txt: Removed.
  • platform/efl/editing/deleting/merge-no-br-expected.png: Removed.
  • platform/efl/editing/deleting/merge-no-br-expected.txt: Removed.
  • platform/efl/editing/deleting/merge-unrendered-space-expected.png: Removed.
  • platform/efl/editing/deleting/merge-unrendered-space-expected.txt: Removed.
  • platform/efl/editing/deleting/merge-whitespace-pre-expected.png: Removed.
  • platform/efl/editing/deleting/merge-whitespace-pre-expected.txt: Removed.
  • platform/efl/editing/deleting/move-nodes-001-expected.png: Removed.
  • platform/efl/editing/deleting/move-nodes-001-expected.txt: Removed.
  • platform/efl/editing/deleting/non-smart-delete-expected.png: Removed.
  • platform/efl/editing/deleting/non-smart-delete-expected.txt: Removed.
  • platform/efl/editing/deleting/pruning-after-merge-2-expected.png: Removed.
  • platform/efl/editing/deleting/pruning-after-merge-2-expected.txt: Removed.
  • platform/efl/editing/deleting/smart-delete-001-expected.png: Removed.
  • platform/efl/editing/deleting/smart-delete-001-expected.txt: Removed.
  • platform/efl/editing/deleting/smart-delete-002-expected.png: Removed.
  • platform/efl/editing/deleting/smart-delete-002-expected.txt: Removed.
  • platform/efl/editing/deleting/smart-delete-003-expected.png: Removed.
  • platform/efl/editing/deleting/smart-delete-003-expected.txt: Removed.
  • platform/efl/editing/deleting/smart-delete-004-expected.png: Removed.
  • platform/efl/editing/deleting/smart-delete-004-expected.txt: Removed.
  • platform/efl/editing/deleting/table-cells-expected.png: Removed.
  • platform/efl/editing/deleting/table-cells-expected.txt: Removed.
  • platform/efl/editing/deleting/transpose-empty-expected.png: Removed.
  • platform/efl/editing/deleting/type-delete-after-quote-expected.png: Removed.
  • platform/efl/editing/deleting/type-delete-after-quote-expected.txt: Removed.
  • platform/efl/editing/execCommand: Removed.
  • platform/efl/editing/execCommand/4580583-1-expected.png: Removed.
  • platform/efl/editing/execCommand/4580583-1-expected.txt: Removed.
  • platform/efl/editing/execCommand/4580583-2-expected.png: Removed.
  • platform/efl/editing/execCommand/4580583-2-expected.txt: Removed.
  • platform/efl/editing/execCommand/4641880-1-expected.png: Removed.
  • platform/efl/editing/execCommand/4641880-1-expected.txt: Removed.
  • platform/efl/editing/execCommand/4641880-2-expected.png: Removed.
  • platform/efl/editing/execCommand/4641880-2-expected.txt: Removed.
  • platform/efl/editing/execCommand/4747450-expected.png: Removed.
  • platform/efl/editing/execCommand/4747450-expected.txt: Removed.
  • platform/efl/editing/execCommand/4916402-expected.png: Removed.
  • platform/efl/editing/execCommand/4916402-expected.txt: Removed.
  • platform/efl/editing/execCommand/4916541-expected.png: Removed.
  • platform/efl/editing/execCommand/4916541-expected.txt: Removed.
  • platform/efl/editing/execCommand/4924441-expected.png: Removed.
  • platform/efl/editing/execCommand/4924441-expected.txt: Removed.
  • platform/efl/editing/execCommand/5080333-1-expected.png: Removed.
  • platform/efl/editing/execCommand/5080333-1-expected.txt: Removed.
  • platform/efl/editing/execCommand/5080333-2-expected.png: Removed.
  • platform/efl/editing/execCommand/5080333-2-expected.txt: Removed.
  • platform/efl/editing/execCommand/5136770-expected.png: Removed.
  • platform/efl/editing/execCommand/5136770-expected.txt: Removed.
  • platform/efl/editing/execCommand/5138441-expected.png: Removed.
  • platform/efl/editing/execCommand/5138441-expected.txt: Removed.
  • platform/efl/editing/execCommand/5142012-1-expected.png: Removed.
  • platform/efl/editing/execCommand/5142012-1-expected.txt: Removed.
  • platform/efl/editing/execCommand/5142012-2-expected.png: Removed.
  • platform/efl/editing/execCommand/5142012-2-expected.txt: Removed.
  • platform/efl/editing/execCommand/5190926-expected.png: Removed.
  • platform/efl/editing/execCommand/5190926-expected.txt: Removed.
  • platform/efl/editing/execCommand/5481523-expected.png: Removed.
  • platform/efl/editing/execCommand/5481523-expected.txt: Removed.
  • platform/efl/editing/execCommand/5482023-expected.png: Removed.
  • platform/efl/editing/execCommand/5482023-expected.txt: Removed.
  • platform/efl/editing/execCommand/5569741-expected.png: Removed.
  • platform/efl/editing/execCommand/5569741-expected.txt: Removed.
  • platform/efl/editing/execCommand/create-list-with-hr-expected.png: Removed.
  • platform/efl/editing/execCommand/create-list-with-hr-expected.txt: Removed.
  • platform/efl/editing/execCommand/findString-2-expected.png: Removed.
  • platform/efl/editing/execCommand/findString-2-expected.txt: Removed.
  • platform/efl/editing/execCommand/findString-expected.png: Removed.
  • platform/efl/editing/execCommand/findString-expected.txt: Removed.
  • platform/efl/editing/execCommand/format-block-with-trailing-br-expected.png: Removed.
  • platform/efl/editing/execCommand/indent-empty-root-expected.png: Removed.
  • platform/efl/editing/execCommand/indent-empty-root-expected.txt: Removed.
  • platform/efl/editing/execCommand/indent-list-item-expected.png: Removed.
  • platform/efl/editing/execCommand/indent-list-item-expected.txt: Removed.
  • platform/efl/editing/execCommand/indent-selection-expected.png: Removed.
  • platform/efl/editing/execCommand/indent-selection-expected.txt: Removed.
  • platform/efl/editing/execCommand/insert-list-and-stitch-expected.png: Removed.
  • platform/efl/editing/execCommand/insert-list-and-stitch-expected.txt: Removed.
  • platform/efl/editing/execCommand/insertHorizontalRule-expected.png: Removed.
  • platform/efl/editing/execCommand/insertHorizontalRule-expected.txt: Removed.
  • platform/efl/editing/execCommand/insertImage-expected.png: Removed.
  • platform/efl/editing/execCommand/insertImage-expected.txt: Removed.
  • platform/efl/editing/execCommand/nsresponder-indent-expected.png: Removed.
  • platform/efl/editing/execCommand/nsresponder-indent-expected.txt: Removed.
  • platform/efl/editing/execCommand/nsresponder-outdent-expected.png: Removed.
  • platform/efl/editing/execCommand/nsresponder-outdent-expected.txt: Removed.
  • platform/efl/editing/execCommand/paste-1-expected.txt: Removed.
  • platform/efl/editing/execCommand/print-expected.png: Removed.
  • platform/efl/editing/execCommand/print-expected.txt: Removed.
  • platform/efl/editing/execCommand/remove-list-from-range-selection-expected.png: Removed.
  • platform/efl/editing/execCommand/remove-list-from-range-selection-expected.txt: Removed.
  • platform/efl/editing/execCommand/remove-list-item-1-expected.png: Removed.
  • platform/efl/editing/execCommand/remove-list-item-1-expected.txt: Removed.
  • platform/efl/editing/execCommand/selectAll-expected.png: Removed.
  • platform/efl/editing/execCommand/selectAll-expected.txt: Removed.
  • platform/efl/editing/input: Removed.
  • platform/efl/editing/input/caret-at-the-edge-of-contenteditable-expected.png: Removed.
  • platform/efl/editing/input/caret-at-the-edge-of-contenteditable-expected.txt: Removed.
  • platform/efl/editing/input/caret-at-the-edge-of-input-expected.png: Removed.
  • platform/efl/editing/input/caret-at-the-edge-of-input-expected.txt: Removed.
  • platform/efl/editing/input/emacs-ctrl-o-expected.png: Removed.
  • platform/efl/editing/input/emacs-ctrl-o-expected.txt: Removed.
  • platform/efl/editing/input/reveal-caret-of-multiline-contenteditable-expected.png: Removed.
  • platform/efl/editing/input/reveal-caret-of-multiline-contenteditable-expected.txt: Removed.
  • platform/efl/editing/input/reveal-caret-of-multiline-input-expected.png: Removed.
  • platform/efl/editing/input/reveal-caret-of-multiline-input-expected.txt: Removed.
  • platform/efl/editing/inserting: Removed.
  • platform/efl/editing/inserting/12882-expected.png: Removed.
  • platform/efl/editing/inserting/12882-expected.txt: Removed.
  • platform/efl/editing/inserting/4278698-expected.png: Removed.
  • platform/efl/editing/inserting/4278698-expected.txt: Removed.
  • platform/efl/editing/inserting/4840662-expected.png: Removed.
  • platform/efl/editing/inserting/4840662-expected.txt: Removed.
  • platform/efl/editing/inserting/4875189-1-expected.png: Removed.
  • platform/efl/editing/inserting/4875189-1-expected.txt: Removed.
  • platform/efl/editing/inserting/4875189-2-expected.png: Removed.
  • platform/efl/editing/inserting/4875189-2-expected.txt: Removed.
  • platform/efl/editing/inserting/4959067-expected.png: Removed.
  • platform/efl/editing/inserting/4959067-expected.txt: Removed.
  • platform/efl/editing/inserting/4960120-1-expected.png: Removed.
  • platform/efl/editing/inserting/4960120-1-expected.txt: Removed.
  • platform/efl/editing/inserting/4960120-2-expected.png: Removed.
  • platform/efl/editing/inserting/4960120-2-expected.txt: Removed.
  • platform/efl/editing/inserting/5002441-expected.png: Removed.
  • platform/efl/editing/inserting/5002441-expected.txt: Removed.
  • platform/efl/editing/inserting/5058163-1-expected.png: Removed.
  • platform/efl/editing/inserting/5058163-1-expected.txt: Removed.
  • platform/efl/editing/inserting/5058163-2-expected.png: Removed.
  • platform/efl/editing/inserting/5058163-2-expected.txt: Removed.
  • platform/efl/editing/inserting/5156401-2-expected.png: Removed.
  • platform/efl/editing/inserting/5156401-2-expected.txt: Removed.
  • platform/efl/editing/inserting/5418891-expected.png: Removed.
  • platform/efl/editing/inserting/5418891-expected.txt: Removed.
  • platform/efl/editing/inserting/5510537-expected.png: Removed.
  • platform/efl/editing/inserting/5510537-expected.txt: Removed.
  • platform/efl/editing/inserting/5549929-2-expected.png: Removed.
  • platform/efl/editing/inserting/5549929-2-expected.txt: Removed.
  • platform/efl/editing/inserting/5549929-3-expected.png: Removed.
  • platform/efl/editing/inserting/5549929-3-expected.txt: Removed.
  • platform/efl/editing/inserting/6703873-expected.png: Removed.
  • platform/efl/editing/inserting/6703873-expected.txt: Removed.
  • platform/efl/editing/inserting/before-after-input-element-expected.png: Removed.
  • platform/efl/editing/inserting/before-after-input-element-expected.txt: Removed.
  • platform/efl/editing/inserting/break-blockquote-after-delete-expected.png: Removed.
  • platform/efl/editing/inserting/break-blockquote-after-delete-expected.txt: Removed.
  • platform/efl/editing/inserting/editable-html-element-expected.png: Removed.
  • platform/efl/editing/inserting/editable-html-element-expected.txt: Removed.
  • platform/efl/editing/inserting/editable-inline-element-expected.png: Removed.
  • platform/efl/editing/inserting/editable-inline-element-expected.txt: Removed.
  • platform/efl/editing/inserting/edited-whitespace-1-expected.png: Removed.
  • platform/efl/editing/inserting/edited-whitespace-1-expected.txt: Removed.
  • platform/efl/editing/inserting/editing-empty-divs-expected.png: Removed.
  • platform/efl/editing/inserting/editing-empty-divs-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-3654864-fix-expected.png: Removed.
  • platform/efl/editing/inserting/insert-3654864-fix-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-3775316-fix-expected.png: Removed.
  • platform/efl/editing/inserting/insert-3775316-fix-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-3778059-fix-expected.png: Removed.
  • platform/efl/editing/inserting/insert-3778059-fix-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-3800346-fix-expected.png: Removed.
  • platform/efl/editing/inserting/insert-3800346-fix-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-3851164-fix-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-after-delete-001-expected.png: Removed.
  • platform/efl/editing/inserting/insert-after-delete-001-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-at-end-01-expected.png: Removed.
  • platform/efl/editing/inserting/insert-at-end-01-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-at-end-02-expected.png: Removed.
  • platform/efl/editing/inserting/insert-at-end-02-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-br-001-expected.png: Removed.
  • platform/efl/editing/inserting/insert-br-001-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-br-002-expected.png: Removed.
  • platform/efl/editing/inserting/insert-br-002-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-br-003-expected.png: Removed.
  • platform/efl/editing/inserting/insert-br-003-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-br-004-expected.png: Removed.
  • platform/efl/editing/inserting/insert-br-004-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-br-005-expected.png: Removed.
  • platform/efl/editing/inserting/insert-br-005-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-br-006-expected.png: Removed.
  • platform/efl/editing/inserting/insert-br-006-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-br-007-expected.png: Removed.
  • platform/efl/editing/inserting/insert-br-007-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-br-008-expected.png: Removed.
  • platform/efl/editing/inserting/insert-br-008-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-br-009-expected.png: Removed.
  • platform/efl/editing/inserting/insert-br-009-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-br-at-tabspan-001-expected.png: Removed.
  • platform/efl/editing/inserting/insert-br-at-tabspan-001-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-br-at-tabspan-002-expected.png: Removed.
  • platform/efl/editing/inserting/insert-br-at-tabspan-002-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-br-at-tabspan-003-expected.png: Removed.
  • platform/efl/editing/inserting/insert-br-at-tabspan-003-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-br-quoted-001-expected.png: Removed.
  • platform/efl/editing/inserting/insert-br-quoted-001-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-br-quoted-002-expected.png: Removed.
  • platform/efl/editing/inserting/insert-br-quoted-002-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-br-quoted-003-expected.png: Removed.
  • platform/efl/editing/inserting/insert-br-quoted-003-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-br-quoted-004-expected.png: Removed.
  • platform/efl/editing/inserting/insert-br-quoted-004-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-br-quoted-005-expected.png: Removed.
  • platform/efl/editing/inserting/insert-br-quoted-005-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-br-quoted-006-expected.png: Removed.
  • platform/efl/editing/inserting/insert-br-quoted-006-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-001-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-001-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-002-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-002-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-003-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-003-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-004-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-004-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-005-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-005-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-006-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-006-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-007-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-007-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-008-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-008-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-009-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-009-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-010-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-010-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-011-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-011-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-012-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-012-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-013-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-013-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-014-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-014-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-015-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-015-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-016-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-016-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-017-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-017-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-018-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-018-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-019-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-019-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-020-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-020-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-022-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-022-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-023-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-023-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-024-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-024-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-025-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-025-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-026-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-026-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-div-027-expected.png: Removed.
  • platform/efl/editing/inserting/insert-div-027-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-paragraph-01-expected.png: Removed.
  • platform/efl/editing/inserting/insert-paragraph-01-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-paragraph-02-expected.png: Removed.
  • platform/efl/editing/inserting/insert-paragraph-02-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-paragraph-03-expected.png: Removed.
  • platform/efl/editing/inserting/insert-paragraph-03-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-paragraph-04-expected.png: Removed.
  • platform/efl/editing/inserting/insert-paragraph-04-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-paragraph-05-expected.png: Removed.
  • platform/efl/editing/inserting/insert-paragraph-05-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-space-in-empty-doc-expected.png: Removed.
  • platform/efl/editing/inserting/insert-space-in-empty-doc-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-tab-001-expected.png: Removed.
  • platform/efl/editing/inserting/insert-tab-001-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-tab-002-expected.png: Removed.
  • platform/efl/editing/inserting/insert-tab-002-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-tab-003-expected.png: Removed.
  • platform/efl/editing/inserting/insert-tab-003-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-tab-004-expected.png: Removed.
  • platform/efl/editing/inserting/insert-tab-004-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-text-at-tabspan-001-expected.png: Removed.
  • platform/efl/editing/inserting/insert-text-at-tabspan-001-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-text-at-tabspan-002-expected.png: Removed.
  • platform/efl/editing/inserting/insert-text-at-tabspan-002-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-text-at-tabspan-003-expected.png: Removed.
  • platform/efl/editing/inserting/insert-text-at-tabspan-003-expected.txt: Removed.
  • platform/efl/editing/inserting/insert-text-with-newlines-expected.png: Removed.
  • platform/efl/editing/inserting/insert-text-with-newlines-expected.txt: Removed.
  • platform/efl/editing/inserting/line-break-expected.png: Removed.
  • platform/efl/editing/inserting/line-break-expected.txt: Removed.
  • platform/efl/editing/inserting/multiple-lines-selected-expected.png: Removed.
  • platform/efl/editing/inserting/multiple-lines-selected-expected.txt: Removed.
  • platform/efl/editing/inserting/paragraph-separator-01-expected.png: Removed.
  • platform/efl/editing/inserting/paragraph-separator-01-expected.txt: Removed.
  • platform/efl/editing/inserting/paragraph-separator-02-expected.png: Removed.
  • platform/efl/editing/inserting/paragraph-separator-02-expected.txt: Removed.
  • platform/efl/editing/inserting/paragraph-separator-03-expected.png: Removed.
  • platform/efl/editing/inserting/paragraph-separator-03-expected.txt: Removed.
  • platform/efl/editing/inserting/paragraph-separator-in-table-1-expected.png: Removed.
  • platform/efl/editing/inserting/paragraph-separator-in-table-1-expected.txt: Removed.
  • platform/efl/editing/inserting/paragraph-separator-in-table-2-expected.png: Removed.
  • platform/efl/editing/inserting/paragraph-separator-in-table-2-expected.txt: Removed.
  • platform/efl/editing/inserting/redo-expected.png: Removed.
  • platform/efl/editing/inserting/redo-expected.txt: Removed.
  • platform/efl/editing/inserting/return-key-with-selection-001-expected.png: Removed.
  • platform/efl/editing/inserting/return-key-with-selection-001-expected.txt: Removed.
  • platform/efl/editing/inserting/return-key-with-selection-002-expected.png: Removed.
  • platform/efl/editing/inserting/return-key-with-selection-002-expected.txt: Removed.
  • platform/efl/editing/inserting/return-key-with-selection-003-expected.png: Removed.
  • platform/efl/editing/inserting/return-key-with-selection-003-expected.txt: Removed.
  • platform/efl/editing/inserting/typing-001-expected.png: Removed.
  • platform/efl/editing/inserting/typing-001-expected.txt: Removed.
  • platform/efl/editing/inserting/typing-002-expected.png: Removed.
  • platform/efl/editing/inserting/typing-002-expected.txt: Removed.
  • platform/efl/editing/inserting/typing-003-expected.png: Removed.
  • platform/efl/editing/inserting/typing-003-expected.txt: Removed.
  • platform/efl/editing/inserting/typing-around-br-001-expected.png: Removed.
  • platform/efl/editing/inserting/typing-around-br-001-expected.txt: Removed.
  • platform/efl/editing/inserting/typing-around-image-001-expected.png: Removed.
  • platform/efl/editing/inserting/typing-around-image-001-expected.txt: Removed.
  • platform/efl/editing/inserting/typing-at-end-of-line-expected.png: Removed.
  • platform/efl/editing/inserting/typing-at-end-of-line-expected.txt: Removed.
  • platform/efl/editing/pasteboard: Removed.
  • platform/efl/editing/pasteboard/4631972-expected.png: Removed.
  • platform/efl/editing/pasteboard/4631972-expected.txt: Removed.
  • platform/efl/editing/pasteboard/4806874-expected.png: Removed.
  • platform/efl/editing/pasteboard/4806874-expected.txt: Removed.
  • platform/efl/editing/pasteboard/5032095-expected.png: Removed.
  • platform/efl/editing/pasteboard/5032095-expected.txt: Removed.
  • platform/efl/editing/pasteboard/5071074-2-expected.png: Removed.
  • platform/efl/editing/pasteboard/5071074-2-expected.txt: Removed.
  • platform/efl/editing/pasteboard/5134759-expected.png: Removed.
  • platform/efl/editing/pasteboard/5134759-expected.txt: Removed.
  • platform/efl/editing/pasteboard/5156401-1-expected.png: Removed.
  • platform/efl/editing/pasteboard/5156401-1-expected.txt: Removed.
  • platform/efl/editing/pasteboard/5387578-expected.png: Removed.
  • platform/efl/editing/pasteboard/5387578-expected.txt: Removed.
  • platform/efl/editing/pasteboard/7955-expected.png: Removed.
  • platform/efl/editing/pasteboard/7955-expected.txt: Removed.
  • platform/efl/editing/pasteboard/8145-1-expected.png: Removed.
  • platform/efl/editing/pasteboard/8145-1-expected.txt: Removed.
  • platform/efl/editing/pasteboard/8145-2-expected.png: Removed.
  • platform/efl/editing/pasteboard/8145-2-expected.txt: Removed.
  • platform/efl/editing/pasteboard/8145-3-expected.png: Removed.
  • platform/efl/editing/pasteboard/8145-3-expected.txt: Removed.
  • platform/efl/editing/pasteboard/bad-placeholder-expected.png: Removed.
  • platform/efl/editing/pasteboard/bad-placeholder-expected.txt: Removed.
  • platform/efl/editing/pasteboard/copy-paste-content-starting-and-ending-canvas-expected.txt: Removed.
  • platform/efl/editing/pasteboard/displaced-generic-placeholder-expected.png: Removed.
  • platform/efl/editing/pasteboard/displaced-generic-placeholder-expected.txt: Removed.
  • platform/efl/editing/pasteboard/displaced-placeholder-expected.png: Removed.
  • platform/efl/editing/pasteboard/displaced-placeholder-expected.txt: Removed.
  • platform/efl/editing/pasteboard/drag-drop-dead-frame-expected.png: Removed.
  • platform/efl/editing/pasteboard/innerText-inline-table-expected.png: Removed.
  • platform/efl/editing/pasteboard/innerText-inline-table-expected.txt: Removed.
  • platform/efl/editing/pasteboard/merge-after-delete-1-expected.png: Removed.
  • platform/efl/editing/pasteboard/merge-after-delete-1-expected.txt: Removed.
  • platform/efl/editing/pasteboard/merge-after-delete-2-expected.png: Removed.
  • platform/efl/editing/pasteboard/merge-after-delete-2-expected.txt: Removed.
  • platform/efl/editing/pasteboard/merge-after-delete-expected.png: Removed.
  • platform/efl/editing/pasteboard/merge-after-delete-expected.txt: Removed.
  • platform/efl/editing/pasteboard/merge-end-blockquote-expected.png: Removed.
  • platform/efl/editing/pasteboard/merge-end-blockquote-expected.txt: Removed.
  • platform/efl/editing/pasteboard/merge-end-borders-expected.png: Removed.
  • platform/efl/editing/pasteboard/merge-end-borders-expected.txt: Removed.
  • platform/efl/editing/pasteboard/merge-start-blockquote-expected.png: Removed.
  • platform/efl/editing/pasteboard/merge-start-blockquote-expected.txt: Removed.
  • platform/efl/editing/pasteboard/merge-start-list-expected.png: Removed.
  • platform/efl/editing/pasteboard/merge-start-list-expected.txt: Removed.
  • platform/efl/editing/pasteboard/paste-blockquote-after-blockquote-expected.png: Removed.
  • platform/efl/editing/pasteboard/paste-blockquote-after-blockquote-expected.txt: Removed.
  • platform/efl/editing/pasteboard/paste-blockquote-into-blockquote-4-expected.png: Removed.
  • platform/efl/editing/pasteboard/paste-blockquote-into-blockquote-4-expected.txt: Removed.
  • platform/efl/editing/pasteboard/paste-text-004-expected.png: Removed.
  • platform/efl/editing/pasteboard/pasting-into-p-should-not-nest-p-expected.txt: Removed.
  • platform/efl/editing/pasteboard/pasting-object-expected.png: Removed.
  • platform/efl/editing/pasteboard/pasting-object-expected.txt: Removed.
  • platform/efl/editing/pasteboard/quirks-mode-br-1-expected.png: Removed.
  • platform/efl/editing/pasteboard/quirks-mode-br-1-expected.txt: Removed.
  • platform/efl/editing/pasteboard/unrendered-br-expected.png: Removed.
  • platform/efl/editing/pasteboard/unrendered-br-expected.txt: Removed.
  • platform/efl/editing/selection: Removed.
  • platform/efl/editing/selection/14971-expected.png: Removed.
  • platform/efl/editing/selection/14971-expected.txt: Removed.
  • platform/efl/editing/selection/3690703-2-expected.png: Removed.
  • platform/efl/editing/selection/3690703-2-expected.txt: Removed.
  • platform/efl/editing/selection/3690703-expected.png: Removed.
  • platform/efl/editing/selection/3690703-expected.txt: Removed.
  • platform/efl/editing/selection/3690719-expected.png: Removed.
  • platform/efl/editing/selection/3690719-expected.txt: Removed.
  • platform/efl/editing/selection/4397952-expected.png: Removed.
  • platform/efl/editing/selection/4397952-expected.txt: Removed.
  • platform/efl/editing/selection/4402375-expected.png: Removed.
  • platform/efl/editing/selection/4402375-expected.txt: Removed.
  • platform/efl/editing/selection/4776665-expected.png: Removed.
  • platform/efl/editing/selection/4776665-expected.txt: Removed.
  • platform/efl/editing/selection/4818145-expected.png: Removed.
  • platform/efl/editing/selection/4818145-expected.txt: Removed.
  • platform/efl/editing/selection/4866671-expected.png: Removed.
  • platform/efl/editing/selection/4866671-expected.txt: Removed.
  • platform/efl/editing/selection/4889598-expected.png: Removed.
  • platform/efl/editing/selection/4889598-expected.txt: Removed.
  • platform/efl/editing/selection/4895428-2-expected.png: Removed.
  • platform/efl/editing/selection/4895428-2-expected.txt: Removed.
  • platform/efl/editing/selection/4895428-3-expected.png: Removed.
  • platform/efl/editing/selection/4895428-3-expected.txt: Removed.
  • platform/efl/editing/selection/4932260-1-expected.png: Removed.
  • platform/efl/editing/selection/4932260-1-expected.txt: Removed.
  • platform/efl/editing/selection/4932260-2-expected.png: Removed.
  • platform/efl/editing/selection/4932260-2-expected.txt: Removed.
  • platform/efl/editing/selection/4932260-3-expected.png: Removed.
  • platform/efl/editing/selection/4932260-3-expected.txt: Removed.
  • platform/efl/editing/selection/4947387-expected.png: Removed.
  • platform/efl/editing/selection/4947387-expected.txt: Removed.
  • platform/efl/editing/selection/4960116-expected.png: Removed.
  • platform/efl/editing/selection/4960116-expected.txt: Removed.
  • platform/efl/editing/selection/4960137-expected.png: Removed.
  • platform/efl/editing/selection/4960137-expected.txt: Removed.
  • platform/efl/editing/selection/4975120-expected.png: Removed.
  • platform/efl/editing/selection/4975120-expected.txt: Removed.
  • platform/efl/editing/selection/4983858-expected.png: Removed.
  • platform/efl/editing/selection/4983858-expected.txt: Removed.
  • platform/efl/editing/selection/5007143-2-expected.png: Removed.
  • platform/efl/editing/selection/5007143-2-expected.txt: Removed.
  • platform/efl/editing/selection/5007143-expected.png: Removed.
  • platform/efl/editing/selection/5007143-expected.txt: Removed.
  • platform/efl/editing/selection/5057506-2-expected.png: Removed.
  • platform/efl/editing/selection/5057506-2-expected.txt: Removed.
  • platform/efl/editing/selection/5057506-expected.png: Removed.
  • platform/efl/editing/selection/5057506-expected.txt: Removed.
  • platform/efl/editing/selection/5076323-1-expected.png: Removed.
  • platform/efl/editing/selection/5076323-1-expected.txt: Removed.
  • platform/efl/editing/selection/5076323-2-expected.png: Removed.
  • platform/efl/editing/selection/5076323-2-expected.txt: Removed.
  • platform/efl/editing/selection/5076323-3-expected.png: Removed.
  • platform/efl/editing/selection/5076323-3-expected.txt: Removed.
  • platform/efl/editing/selection/5081257-1-expected.png: Removed.
  • platform/efl/editing/selection/5081257-1-expected.txt: Removed.
  • platform/efl/editing/selection/5081257-2-expected.png: Removed.
  • platform/efl/editing/selection/5081257-2-expected.txt: Removed.
  • platform/efl/editing/selection/5099303-expected.png: Removed.
  • platform/efl/editing/selection/5099303-expected.txt: Removed.
  • platform/efl/editing/selection/5131716-1-expected.png: Removed.
  • platform/efl/editing/selection/5131716-1-expected.txt: Removed.
  • platform/efl/editing/selection/5131716-2-expected.png: Removed.
  • platform/efl/editing/selection/5131716-2-expected.txt: Removed.
  • platform/efl/editing/selection/5131716-3-expected.png: Removed.
  • platform/efl/editing/selection/5131716-3-expected.txt: Removed.
  • platform/efl/editing/selection/5131716-4-expected.png: Removed.
  • platform/efl/editing/selection/5131716-4-expected.txt: Removed.
  • platform/efl/editing/selection/5195166-2-expected.png: Removed.
  • platform/efl/editing/selection/5195166-2-expected.txt: Removed.
  • platform/efl/editing/selection/5232159-expected.png: Removed.
  • platform/efl/editing/selection/5232159-expected.txt: Removed.
  • platform/efl/editing/selection/5234383-1-expected.png: Removed.
  • platform/efl/editing/selection/5234383-1-expected.txt: Removed.
  • platform/efl/editing/selection/5234383-2-expected.png: Removed.
  • platform/efl/editing/selection/5234383-2-expected.txt: Removed.
  • platform/efl/editing/selection/5240265-expected.png: Removed.
  • platform/efl/editing/selection/5240265-expected.txt: Removed.
  • platform/efl/editing/selection/5333725-expected.png: Removed.
  • platform/efl/editing/selection/5333725-expected.txt: Removed.
  • platform/efl/editing/selection/5354455-2-expected.png: Removed.
  • platform/efl/editing/selection/5354455-2-expected.txt: Removed.
  • platform/efl/editing/selection/6476-expected.png: Removed.
  • platform/efl/editing/selection/6476-expected.txt: Removed.
  • platform/efl/editing/selection/7152-1-expected.png: Removed.
  • platform/efl/editing/selection/7152-1-expected.txt: Removed.
  • platform/efl/editing/selection/7152-2-expected.png: Removed.
  • platform/efl/editing/selection/7152-2-expected.txt: Removed.
  • platform/efl/editing/selection/addRange-expected.png: Removed.
  • platform/efl/editing/selection/addRange-expected.txt: Removed.
  • platform/efl/editing/selection/after-line-wrap-expected.png: Removed.
  • platform/efl/editing/selection/after-line-wrap-expected.txt: Removed.
  • platform/efl/editing/selection/caret-before-select-expected.png: Removed.
  • platform/efl/editing/selection/caret-before-select-expected.txt: Removed.
  • platform/efl/editing/selection/caret-ltr-2-expected.png: Removed.
  • platform/efl/editing/selection/caret-ltr-2-expected.txt: Removed.
  • platform/efl/editing/selection/caret-ltr-2-left-expected.png: Removed.
  • platform/efl/editing/selection/caret-ltr-2-left-expected.txt: Removed.
  • platform/efl/editing/selection/caret-ltr-expected.png: Removed.
  • platform/efl/editing/selection/caret-ltr-expected.txt: Removed.
  • platform/efl/editing/selection/caret-ltr-right-expected.png: Removed.
  • platform/efl/editing/selection/caret-ltr-right-expected.txt: Removed.
  • platform/efl/editing/selection/caret-rtl-2-expected.png: Removed.
  • platform/efl/editing/selection/caret-rtl-2-expected.txt: Removed.
  • platform/efl/editing/selection/caret-rtl-2-left-expected.png: Removed.
  • platform/efl/editing/selection/caret-rtl-2-left-expected.txt: Removed.
  • platform/efl/editing/selection/caret-rtl-expected.png: Removed.
  • platform/efl/editing/selection/caret-rtl-expected.txt: Removed.
  • platform/efl/editing/selection/caret-rtl-right-expected.png: Removed.
  • platform/efl/editing/selection/caret-rtl-right-expected.txt: Removed.
  • platform/efl/editing/selection/clear-selection-expected.png: Removed.
  • platform/efl/editing/selection/clear-selection-expected.txt: Removed.
  • platform/efl/editing/selection/click-start-of-line-expected.png: Removed.
  • platform/efl/editing/selection/click-start-of-line-expected.txt: Removed.
  • platform/efl/editing/selection/contains-boundaries-expected.txt: Removed.
  • platform/efl/editing/selection/contenteditable-click-inside-expected.png: Removed.
  • platform/efl/editing/selection/contenteditable-click-inside-expected.txt: Removed.
  • platform/efl/editing/selection/display-table-text-expected.png: Removed.
  • platform/efl/editing/selection/display-table-text-expected.txt: Removed.
  • platform/efl/editing/selection/doubleclick-crash-expected.png: Removed.
  • platform/efl/editing/selection/drag-in-iframe-expected.png: Removed.
  • platform/efl/editing/selection/drag-in-iframe-expected.txt: Removed.
  • platform/efl/editing/selection/drag-select-1-expected.png: Removed.
  • platform/efl/editing/selection/drag-select-1-expected.txt: Removed.
  • platform/efl/editing/selection/drag-to-contenteditable-iframe-expected.png: Removed.
  • platform/efl/editing/selection/drag-to-contenteditable-iframe-expected.txt: Removed.
  • platform/efl/editing/selection/editable-html-element-expected.png: Removed.
  • platform/efl/editing/selection/editable-html-element-expected.txt: Removed.
  • platform/efl/editing/selection/editable-links-expected.png: Removed.
  • platform/efl/editing/selection/editable-non-editable-crash-expected.png: Removed.
  • platform/efl/editing/selection/editable-non-editable-crash-expected.txt: Removed.
  • platform/efl/editing/selection/end-of-document-expected.png: Removed.
  • platform/efl/editing/selection/end-of-document-expected.txt: Removed.
  • platform/efl/editing/selection/expanding-selections-expected.png: Removed.
  • platform/efl/editing/selection/expanding-selections-expected.txt: Removed.
  • platform/efl/editing/selection/expanding-selections2-expected.png: Removed.
  • platform/efl/editing/selection/expanding-selections2-expected.txt: Removed.
  • platform/efl/editing/selection/extend-by-character-001-expected.png: Removed.
  • platform/efl/editing/selection/extend-by-character-001-expected.txt: Removed.
  • platform/efl/editing/selection/extend-by-character-002-expected.png: Removed.
  • platform/efl/editing/selection/extend-by-character-002-expected.txt: Removed.
  • platform/efl/editing/selection/extend-by-character-003-expected.png: Removed.
  • platform/efl/editing/selection/extend-by-character-003-expected.txt: Removed.
  • platform/efl/editing/selection/extend-by-character-004-expected.png: Removed.
  • platform/efl/editing/selection/extend-by-character-004-expected.txt: Removed.
  • platform/efl/editing/selection/extend-by-character-005-expected.png: Removed.
  • platform/efl/editing/selection/extend-by-character-005-expected.txt: Removed.
  • platform/efl/editing/selection/extend-by-character-006-expected.png: Removed.
  • platform/efl/editing/selection/extend-by-character-006-expected.txt: Removed.
  • platform/efl/editing/selection/extend-by-sentence-001-expected.png: Removed.
  • platform/efl/editing/selection/extend-by-sentence-001-expected.txt: Removed.
  • platform/efl/editing/selection/extend-by-word-001-expected.png: Removed.
  • platform/efl/editing/selection/extend-by-word-001-expected.txt: Removed.
  • platform/efl/editing/selection/extend-by-word-002-expected.png: Removed.
  • platform/efl/editing/selection/extend-by-word-002-expected.txt: Removed.
  • platform/efl/editing/selection/extend-inside-transforms-backward-expected.png: Removed.
  • platform/efl/editing/selection/extend-inside-transforms-backward-expected.txt: Removed.
  • platform/efl/editing/selection/extend-inside-transforms-forward-expected.png: Removed.
  • platform/efl/editing/selection/extend-inside-transforms-forward-expected.txt: Removed.
  • platform/efl/editing/selection/extend-selection-bidi-expected.png: Removed.
  • platform/efl/editing/selection/extend-selection-bidi-expected.txt: Removed.
  • platform/efl/editing/selection/fake-doubleclick-expected.png: Removed.
  • platform/efl/editing/selection/fake-doubleclick-expected.txt: Removed.
  • platform/efl/editing/selection/focus-body-expected.png: Removed.
  • platform/efl/editing/selection/focus_editable_html-expected.png: Removed.
  • platform/efl/editing/selection/focus_editable_html-expected.txt: Removed.
  • platform/efl/editing/selection/iframe-expected.png: Removed.
  • platform/efl/editing/selection/iframe-expected.txt: Removed.
  • platform/efl/editing/selection/image-before-linebreak-expected.png: Removed.
  • platform/efl/editing/selection/image-before-linebreak-expected.txt: Removed.
  • platform/efl/editing/selection/inline-closest-leaf-child-expected.png: Removed.
  • platform/efl/editing/selection/inline-closest-leaf-child-expected.txt: Removed.
  • platform/efl/editing/selection/inline-table-expected.png: Removed.
  • platform/efl/editing/selection/inline-table-expected.txt: Removed.
  • platform/efl/editing/selection/leave-requested-block-expected.png: Removed.
  • platform/efl/editing/selection/leave-requested-block-expected.txt: Removed.
  • platform/efl/editing/selection/line-wrap-1-expected.png: Removed.
  • platform/efl/editing/selection/line-wrap-1-expected.txt: Removed.
  • platform/efl/editing/selection/line-wrap-2-expected.png: Removed.
  • platform/efl/editing/selection/line-wrap-2-expected.txt: Removed.
  • platform/efl/editing/selection/mixed-editability-1-expected.png: Removed.
  • platform/efl/editing/selection/mixed-editability-1-expected.txt: Removed.
  • platform/efl/editing/selection/mixed-editability-10-expected.txt: Removed.
  • platform/efl/editing/selection/mixed-editability-2-expected.png: Removed.
  • platform/efl/editing/selection/mixed-editability-2-expected.txt: Removed.
  • platform/efl/editing/selection/mixed-editability-3-expected.png: Removed.
  • platform/efl/editing/selection/mixed-editability-3-expected.txt: Removed.
  • platform/efl/editing/selection/mixed-editability-4-expected.png: Removed.
  • platform/efl/editing/selection/mixed-editability-4-expected.txt: Removed.
  • platform/efl/editing/selection/mixed-editability-5-expected.png: Removed.
  • platform/efl/editing/selection/mixed-editability-5-expected.txt: Removed.
  • platform/efl/editing/selection/mixed-editability-6-expected.png: Removed.
  • platform/efl/editing/selection/mixed-editability-6-expected.txt: Removed.
  • platform/efl/editing/selection/mixed-editability-7-expected.png: Removed.
  • platform/efl/editing/selection/mixed-editability-7-expected.txt: Removed.
  • platform/efl/editing/selection/mixed-editability-8-expected.png: Removed.
  • platform/efl/editing/selection/mixed-editability-8-expected.txt: Removed.
  • platform/efl/editing/selection/mixed-editability-9-expected.png: Removed.
  • platform/efl/editing/selection/mixed-editability-9-expected.txt: Removed.
  • platform/efl/editing/selection/move-3875618-fix-expected.png: Removed.
  • platform/efl/editing/selection/move-3875618-fix-expected.txt: Removed.
  • platform/efl/editing/selection/move-3875641-fix-expected.png: Removed.
  • platform/efl/editing/selection/move-3875641-fix-expected.txt: Removed.
  • platform/efl/editing/selection/move-backwords-by-word-001-expected.png: Removed.
  • platform/efl/editing/selection/move-backwords-by-word-001-expected.txt: Removed.
  • platform/efl/editing/selection/move-between-blocks-no-001-expected.png: Removed.
  • platform/efl/editing/selection/move-between-blocks-no-001-expected.txt: Removed.
  • platform/efl/editing/selection/move-between-blocks-yes-001-expected.png: Removed.
  • platform/efl/editing/selection/move-between-blocks-yes-001-expected.txt: Removed.
  • platform/efl/editing/selection/move-by-character-001-expected.png: Removed.
  • platform/efl/editing/selection/move-by-character-001-expected.txt: Removed.
  • platform/efl/editing/selection/move-by-character-002-expected.png: Removed.
  • platform/efl/editing/selection/move-by-character-002-expected.txt: Removed.
  • platform/efl/editing/selection/move-by-character-003-expected.png: Removed.
  • platform/efl/editing/selection/move-by-character-003-expected.txt: Removed.
  • platform/efl/editing/selection/move-by-character-004-expected.png: Removed.
  • platform/efl/editing/selection/move-by-character-004-expected.txt: Removed.
  • platform/efl/editing/selection/move-by-character-005-expected.png: Removed.
  • platform/efl/editing/selection/move-by-character-005-expected.txt: Removed.
  • platform/efl/editing/selection/move-by-character-6-expected.txt: Removed.
  • platform/efl/editing/selection/move-by-line-001-expected.png: Removed.
  • platform/efl/editing/selection/move-by-line-001-expected.txt: Removed.
  • platform/efl/editing/selection/move-by-line-002-expected.png: Removed.
  • platform/efl/editing/selection/move-by-line-002-expected.txt: Removed.
  • platform/efl/editing/selection/move-by-sentence-001-expected.png: Removed.
  • platform/efl/editing/selection/move-by-sentence-001-expected.txt: Removed.
  • platform/efl/editing/selection/move-by-sentence-linebreak-expected.png: Removed.
  • platform/efl/editing/selection/move-by-sentence-linebreak-expected.txt: Removed.
  • platform/efl/editing/selection/move-by-word-001-expected.png: Removed.
  • platform/efl/editing/selection/move-by-word-001-expected.txt: Removed.
  • platform/efl/editing/selection/move-past-trailing-space-expected.png: Removed.
  • platform/efl/editing/selection/move-past-trailing-space-expected.txt: Removed.
  • platform/efl/editing/selection/node-removal-1-expected.png: Removed.
  • platform/efl/editing/selection/node-removal-1-expected.txt: Removed.
  • platform/efl/editing/selection/node-removal-2-expected.png: Removed.
  • platform/efl/editing/selection/node-removal-2-expected.txt: Removed.
  • platform/efl/editing/selection/paragraph-granularity-expected.txt: Removed.
  • platform/efl/editing/selection/previous-line-position-expected.png: Removed.
  • platform/efl/editing/selection/previous-line-position-expected.txt: Removed.
  • platform/efl/editing/selection/range-between-block-and-inline-expected.png: Removed.
  • platform/efl/editing/selection/range-between-block-and-inline-expected.txt: Removed.
  • platform/efl/editing/selection/replace-selection-1-expected.png: Removed.
  • platform/efl/editing/selection/replace-selection-1-expected.txt: Removed.
  • platform/efl/editing/selection/replaced-boundaries-1-expected.png: Removed.
  • platform/efl/editing/selection/replaced-boundaries-1-expected.txt: Removed.
  • platform/efl/editing/selection/replaced-boundaries-2-expected.png: Removed.
  • platform/efl/editing/selection/replaced-boundaries-2-expected.txt: Removed.
  • platform/efl/editing/selection/replaced-boundaries-3-expected.txt: Removed.
  • platform/efl/editing/selection/select-across-readonly-input-1-expected.png: Removed.
  • platform/efl/editing/selection/select-across-readonly-input-1-expected.txt: Removed.
  • platform/efl/editing/selection/select-across-readonly-input-2-expected.png: Removed.
  • platform/efl/editing/selection/select-across-readonly-input-2-expected.txt: Removed.
  • platform/efl/editing/selection/select-across-readonly-input-3-expected.png: Removed.
  • platform/efl/editing/selection/select-across-readonly-input-3-expected.txt: Removed.
  • platform/efl/editing/selection/select-across-readonly-input-4-expected.png: Removed.
  • platform/efl/editing/selection/select-across-readonly-input-4-expected.txt: Removed.
  • platform/efl/editing/selection/select-across-readonly-input-5-expected.png: Removed.
  • platform/efl/editing/selection/select-across-readonly-input-5-expected.txt: Removed.
  • platform/efl/editing/selection/select-all-001-expected.png: Removed.
  • platform/efl/editing/selection/select-all-002-expected.png: Removed.
  • platform/efl/editing/selection/select-all-003-expected.png: Removed.
  • platform/efl/editing/selection/select-all-004-expected.png: Removed.
  • platform/efl/editing/selection/select-all-004-expected.txt: Removed.
  • platform/efl/editing/selection/select-all-005-expected.png: Removed.
  • platform/efl/editing/selection/select-all-005-expected.txt: Removed.
  • platform/efl/editing/selection/select-all-006-expected.png: Removed.
  • platform/efl/editing/selection/select-all-006-expected.txt: Removed.
  • platform/efl/editing/selection/select-all-iframe-expected.png: Removed.
  • platform/efl/editing/selection/select-all-iframe-expected.txt: Removed.
  • platform/efl/editing/selection/select-box-expected.png: Removed.
  • platform/efl/editing/selection/select-box-expected.txt: Removed.
  • platform/efl/editing/selection/select-element-paragraph-boundary-expected.png: Removed.
  • platform/efl/editing/selection/select-element-paragraph-boundary-expected.txt: Removed.
  • platform/efl/editing/selection/select-from-textfield-outwards-expected.png: Removed.
  • platform/efl/editing/selection/select-from-textfield-outwards-expected.txt: Removed.
  • platform/efl/editing/selection/select-missing-image-expected.png: Removed.
  • platform/efl/editing/selection/select-text-overflow-ellipsis-expected.png: Removed.
  • platform/efl/editing/selection/select-text-overflow-ellipsis-expected.txt: Removed.
  • platform/efl/editing/selection/selectNode-expected.png: Removed.
  • platform/efl/editing/selection/selectNode-expected.txt: Removed.
  • platform/efl/editing/selection/selectNodeContents-expected.png: Removed.
  • platform/efl/editing/selection/selectNodeContents-expected.txt: Removed.
  • platform/efl/editing/selection/selection-3748164-fix-expected.png: Removed.
  • platform/efl/editing/selection/selection-3748164-fix-expected.txt: Removed.
  • platform/efl/editing/selection/selection-actions-expected.png: Removed.
  • platform/efl/editing/selection/selection-actions-expected.txt: Removed.
  • platform/efl/editing/selection/selection-button-text-expected.png: Removed.
  • platform/efl/editing/selection/selection-button-text-expected.txt: Removed.
  • platform/efl/editing/selection/table-caret-1-expected.png: Removed.
  • platform/efl/editing/selection/table-caret-1-expected.txt: Removed.
  • platform/efl/editing/selection/table-caret-2-expected.png: Removed.
  • platform/efl/editing/selection/table-caret-2-expected.txt: Removed.
  • platform/efl/editing/selection/table-caret-3-expected.png: Removed.
  • platform/efl/editing/selection/table-caret-3-expected.txt: Removed.
  • platform/efl/editing/selection/transformed-selection-rects-expected.png: Removed.
  • platform/efl/editing/selection/transformed-selection-rects-expected.txt: Removed.
  • platform/efl/editing/selection/triple-click-in-pre-expected.png: Removed.
  • platform/efl/editing/selection/triple-click-in-pre-expected.txt: Removed.
  • platform/efl/editing/selection/unrendered-001-expected.png: Removed.
  • platform/efl/editing/selection/unrendered-002-expected.png: Removed.
  • platform/efl/editing/selection/unrendered-003-expected.png: Removed.
  • platform/efl/editing/selection/unrendered-004-expected.png: Removed.
  • platform/efl/editing/selection/unrendered-005-expected.png: Removed.
  • platform/efl/editing/selection/unrendered-space-expected.png: Removed.
  • platform/efl/editing/selection/unrendered-space-expected.txt: Removed.
  • platform/efl/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.png: Removed.
  • platform/efl/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.txt: Removed.
  • platform/efl/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.png: Removed.
  • platform/efl/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.txt: Removed.
  • platform/efl/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.png: Removed.
  • platform/efl/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.txt: Removed.
  • platform/efl/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.png: Removed.
  • platform/efl/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.txt: Removed.
  • platform/efl/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.png: Removed.
  • platform/efl/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.txt: Removed.
  • platform/efl/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.png: Removed.
  • platform/efl/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.txt: Removed.
  • platform/efl/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.png: Removed.
  • platform/efl/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.txt: Removed.
  • platform/efl/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.png: Removed.
  • platform/efl/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.txt: Removed.
  • platform/efl/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.png: Removed.
  • platform/efl/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.txt: Removed.
  • platform/efl/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.png: Removed.
  • platform/efl/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.txt: Removed.
  • platform/efl/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.png: Removed.
  • platform/efl/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.txt: Removed.
  • platform/efl/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.png: Removed.
  • platform/efl/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.txt: Removed.
  • platform/efl/editing/selection/word-granularity-expected.png: Removed.
  • platform/efl/editing/selection/word-granularity-expected.txt: Removed.
  • platform/efl/editing/selection/wrapped-line-caret-1-expected.png: Removed.
  • platform/efl/editing/selection/wrapped-line-caret-1-expected.txt: Removed.
  • platform/efl/editing/selection/wrapped-line-caret-2-expected.png: Removed.
  • platform/efl/editing/selection/wrapped-line-caret-2-expected.txt: Removed.
  • platform/efl/editing/spelling: Removed.
  • platform/efl/editing/spelling/centering-misspelling-dots-expected.png: Removed.
  • platform/efl/editing/spelling/centering-misspelling-dots-expected.txt: Removed.
  • platform/efl/editing/spelling/misspelling-dots-dont-extend-beyond-words-expected.png: Removed.
  • platform/efl/editing/spelling/misspelling-dots-dont-extend-beyond-words-expected.txt: Removed.
  • platform/efl/editing/spelling/spellcheck-paste-continuous-disabled-expected.txt: Removed.
  • platform/efl/editing/spelling/spelling-expected.png: Removed.
  • platform/efl/editing/spelling/spelling-expected.txt: Removed.
  • platform/efl/editing/style: Removed.
  • platform/efl/editing/style/4916887-expected.png: Removed.
  • platform/efl/editing/style/4916887-expected.txt: Removed.
  • platform/efl/editing/style/5017613-1-expected.png: Removed.
  • platform/efl/editing/style/5017613-1-expected.txt: Removed.
  • platform/efl/editing/style/5017613-2-expected.png: Removed.
  • platform/efl/editing/style/5017613-2-expected.txt: Removed.
  • platform/efl/editing/style/5046875-1-expected.png: Removed.
  • platform/efl/editing/style/5046875-1-expected.txt: Removed.
  • platform/efl/editing/style/5046875-2-expected.png: Removed.
  • platform/efl/editing/style/5046875-2-expected.txt: Removed.
  • platform/efl/editing/style/5065910-expected.txt: Removed.
  • platform/efl/editing/style/5084241-expected.png: Removed.
  • platform/efl/editing/style/5084241-expected.txt: Removed.
  • platform/efl/editing/style/5228141-expected.png: Removed.
  • platform/efl/editing/style/5228141-expected.txt: Removed.
  • platform/efl/editing/style/5279521-expected.png: Removed.
  • platform/efl/editing/style/5279521-expected.txt: Removed.
  • platform/efl/editing/style/apple-style-editable-mix-expected.png: Removed.
  • platform/efl/editing/style/apple-style-editable-mix-expected.txt: Removed.
  • platform/efl/editing/style/block-style-001-expected.png: Removed.
  • platform/efl/editing/style/block-style-001-expected.txt: Removed.
  • platform/efl/editing/style/block-style-002-expected.png: Removed.
  • platform/efl/editing/style/block-style-002-expected.txt: Removed.
  • platform/efl/editing/style/block-style-003-expected.png: Removed.
  • platform/efl/editing/style/block-style-003-expected.txt: Removed.
  • platform/efl/editing/style/block-styles-007-expected.png: Removed.
  • platform/efl/editing/style/block-styles-007-expected.txt: Removed.
  • platform/efl/editing/style/create-block-for-style-001-expected.png: Removed.
  • platform/efl/editing/style/create-block-for-style-001-expected.txt: Removed.
  • platform/efl/editing/style/create-block-for-style-002-expected.png: Removed.
  • platform/efl/editing/style/create-block-for-style-002-expected.txt: Removed.
  • platform/efl/editing/style/create-block-for-style-003-expected.png: Removed.
  • platform/efl/editing/style/create-block-for-style-003-expected.txt: Removed.
  • platform/efl/editing/style/create-block-for-style-004-expected.png: Removed.
  • platform/efl/editing/style/create-block-for-style-004-expected.txt: Removed.
  • platform/efl/editing/style/create-block-for-style-005-expected.png: Removed.
  • platform/efl/editing/style/create-block-for-style-005-expected.txt: Removed.
  • platform/efl/editing/style/create-block-for-style-006-expected.png: Removed.
  • platform/efl/editing/style/create-block-for-style-006-expected.txt: Removed.
  • platform/efl/editing/style/create-block-for-style-007-expected.png: Removed.
  • platform/efl/editing/style/create-block-for-style-007-expected.txt: Removed.
  • platform/efl/editing/style/create-block-for-style-008-expected.png: Removed.
  • platform/efl/editing/style/create-block-for-style-008-expected.txt: Removed.
  • platform/efl/editing/style/create-block-for-style-009-expected.png: Removed.
  • platform/efl/editing/style/create-block-for-style-009-expected.txt: Removed.
  • platform/efl/editing/style/create-block-for-style-010-expected.png: Removed.
  • platform/efl/editing/style/create-block-for-style-010-expected.txt: Removed.
  • platform/efl/editing/style/create-block-for-style-011-expected.png: Removed.
  • platform/efl/editing/style/create-block-for-style-011-expected.txt: Removed.
  • platform/efl/editing/style/create-block-for-style-012-expected.png: Removed.
  • platform/efl/editing/style/create-block-for-style-012-expected.txt: Removed.
  • platform/efl/editing/style/create-block-for-style-013-expected.png: Removed.
  • platform/efl/editing/style/create-block-for-style-013-expected.txt: Removed.
  • platform/efl/editing/style/designmode-expected.png: Removed.
  • platform/efl/editing/style/designmode-expected.txt: Removed.
  • platform/efl/editing/style/font-family-with-space-expected.txt: Removed.
  • platform/efl/editing/style/highlight-expected.png: Removed.
  • platform/efl/editing/style/highlight-expected.txt: Removed.
  • platform/efl/editing/style/relative-font-size-change-001-expected.png: Removed.
  • platform/efl/editing/style/relative-font-size-change-001-expected.txt: Removed.
  • platform/efl/editing/style/relative-font-size-change-002-expected.png: Removed.
  • platform/efl/editing/style/relative-font-size-change-002-expected.txt: Removed.
  • platform/efl/editing/style/relative-font-size-change-003-expected.png: Removed.
  • platform/efl/editing/style/relative-font-size-change-003-expected.txt: Removed.
  • platform/efl/editing/style/relative-font-size-change-004-expected.png: Removed.
  • platform/efl/editing/style/relative-font-size-change-004-expected.txt: Removed.
  • platform/efl/editing/style/smoosh-styles-003-expected.png: Removed.
  • platform/efl/editing/style/style-3681552-fix-001-expected.png: Removed.
  • platform/efl/editing/style/style-3681552-fix-001-expected.txt: Removed.
  • platform/efl/editing/style/style-3681552-fix-002-expected.png: Removed.
  • platform/efl/editing/style/style-3681552-fix-002-expected.txt: Removed.
  • platform/efl/editing/style/style-3998892-fix-expected.png: Removed.
  • platform/efl/editing/style/style-3998892-fix-expected.txt: Removed.
  • platform/efl/editing/style/style-boundary-001-expected.png: Removed.
  • platform/efl/editing/style/style-boundary-001-expected.txt: Removed.
  • platform/efl/editing/style/style-boundary-002-expected.png: Removed.
  • platform/efl/editing/style/style-boundary-002-expected.txt: Removed.
  • platform/efl/editing/style/style-boundary-003-expected.png: Removed.
  • platform/efl/editing/style/style-boundary-003-expected.txt: Removed.
  • platform/efl/editing/style/style-boundary-004-expected.png: Removed.
  • platform/efl/editing/style/style-boundary-004-expected.txt: Removed.
  • platform/efl/editing/style/table-selection-expected.png: Removed.
  • platform/efl/editing/style/table-selection-expected.txt: Removed.
  • platform/efl/editing/style/typing-style-001-expected.png: Removed.
  • platform/efl/editing/style/typing-style-001-expected.txt: Removed.
  • platform/efl/editing/style/typing-style-002-expected.png: Removed.
  • platform/efl/editing/style/typing-style-002-expected.txt: Removed.
  • platform/efl/editing/style/unbold-in-bold-expected.png: Removed.
  • platform/efl/editing/style/unbold-in-bold-expected.txt: Removed.
  • platform/efl/editing/undo: Removed.
  • platform/efl/editing/undo/4063751-expected.png: Removed.
  • platform/efl/editing/undo/4063751-expected.txt: Removed.
  • platform/efl/editing/undo/5378473-expected.png: Removed.
  • platform/efl/editing/undo/redo-typing-001-expected.png: Removed.
  • platform/efl/editing/undo/redo-typing-001-expected.txt: Removed.
  • platform/efl/editing/undo/undo-combined-delete-boundary-expected.png: Removed.
  • platform/efl/editing/undo/undo-combined-delete-boundary-expected.txt: Removed.
  • platform/efl/editing/undo/undo-combined-delete-expected.png: Removed.
  • platform/efl/editing/undo/undo-combined-delete-expected.txt: Removed.
  • platform/efl/editing/undo/undo-delete-boundary-expected.png: Removed.
  • platform/efl/editing/undo/undo-delete-boundary-expected.txt: Removed.
  • platform/efl/editing/undo/undo-delete-expected.png: Removed.
  • platform/efl/editing/undo/undo-delete-expected.txt: Removed.
  • platform/efl/editing/undo/undo-forward-delete-boundary-expected.png: Removed.
  • platform/efl/editing/undo/undo-forward-delete-boundary-expected.txt: Removed.
  • platform/efl/editing/undo/undo-forward-delete-expected.png: Removed.
  • platform/efl/editing/undo/undo-forward-delete-expected.txt: Removed.
  • platform/efl/editing/undo/undo-misspellings-expected.png: Removed.
  • platform/efl/editing/undo/undo-typing-001-expected.png: Removed.
  • platform/efl/editing/undo/undo-typing-001-expected.txt: Removed.
  • platform/efl/editing/unsupported-content: Removed.
  • platform/efl/editing/unsupported-content/list-delete-001-expected.png: Removed.
  • platform/efl/editing/unsupported-content/list-delete-001-expected.txt: Removed.
  • platform/efl/editing/unsupported-content/list-delete-003-expected.png: Removed.
  • platform/efl/editing/unsupported-content/list-delete-003-expected.txt: Removed.
  • platform/efl/editing/unsupported-content/list-type-after-expected.png: Removed.
  • platform/efl/editing/unsupported-content/list-type-after-expected.txt: Removed.
  • platform/efl/editing/unsupported-content/list-type-before-expected.png: Removed.
  • platform/efl/editing/unsupported-content/list-type-before-expected.txt: Removed.
  • platform/efl/editing/unsupported-content/table-delete-001-expected.png: Removed.
  • platform/efl/editing/unsupported-content/table-delete-002-expected.png: Removed.
  • platform/efl/editing/unsupported-content/table-delete-002-expected.txt: Removed.
  • platform/efl/editing/unsupported-content/table-type-after-expected.png: Removed.
  • platform/efl/editing/unsupported-content/table-type-after-expected.txt: Removed.
  • platform/efl/editing/unsupported-content/table-type-before-expected.png: Removed.
  • platform/efl/editing/unsupported-content/table-type-before-expected.txt: Removed.
  • platform/efl/fast: Removed.
  • platform/efl/fast/backgrounds: Removed.
  • platform/efl/fast/backgrounds/001-expected.png: Removed.
  • platform/efl/fast/backgrounds/001-expected.txt: Removed.
  • platform/efl/fast/backgrounds/animated-gif-as-background-expected.png: Removed.
  • platform/efl/fast/backgrounds/animated-gif-as-background-expected.txt: Removed.
  • platform/efl/fast/backgrounds/animated-svg-as-mask-expected.png: Removed.
  • platform/efl/fast/backgrounds/animated-svg-as-mask-expected.txt: Removed.
  • platform/efl/fast/backgrounds/background-clip-text-expected.png: Removed.
  • platform/efl/fast/backgrounds/background-clip-text-expected.txt: Removed.
  • platform/efl/fast/backgrounds/background-inherit-color-bug-expected.png: Removed.
  • platform/efl/fast/backgrounds/background-inherit-color-bug-expected.txt: Removed.
  • platform/efl/fast/backgrounds/background-leakage-expected.png: Removed.
  • platform/efl/fast/backgrounds/background-leakage-expected.txt: Removed.
  • platform/efl/fast/backgrounds/background-leakage-transforms-expected.png: Removed.
  • platform/efl/fast/backgrounds/background-leakage-transforms-expected.txt: Removed.
  • platform/efl/fast/backgrounds/background-origin-root-element-expected.png: Removed.
  • platform/efl/fast/backgrounds/background-origin-root-element-expected.txt: Removed.
  • platform/efl/fast/backgrounds/background-position-1-expected.png: Removed.
  • platform/efl/fast/backgrounds/background-position-1-expected.txt: Removed.
  • platform/efl/fast/backgrounds/background-position-parsing-expected.png: Removed.
  • platform/efl/fast/backgrounds/background-position-parsing-expected.txt: Removed.
  • platform/efl/fast/backgrounds/background-position-rounding-expected.png: Removed.
  • platform/efl/fast/backgrounds/background-position-rounding-expected.txt: Removed.
  • platform/efl/fast/backgrounds/bgCompositeCopy-expected.png: Removed.
  • platform/efl/fast/backgrounds/body-generated-image-propagated-to-root-expected.png: Removed.
  • platform/efl/fast/backgrounds/body-generated-image-propagated-to-root-expected.txt: Removed.
  • platform/efl/fast/backgrounds/border-radius-split-background-expected.png: Removed.
  • platform/efl/fast/backgrounds/border-radius-split-background-expected.txt: Removed.
  • platform/efl/fast/backgrounds/border-radius-split-background-image-expected.png: Removed.
  • platform/efl/fast/backgrounds/border-radius-split-background-image-expected.txt: Removed.
  • platform/efl/fast/backgrounds/gradient-background-leakage-2-expected.png: Removed.
  • platform/efl/fast/backgrounds/gradient-background-leakage-expected.png: Removed.
  • platform/efl/fast/backgrounds/gradient-background-leakage-hidpi-expected.png: Removed.
  • platform/efl/fast/backgrounds/mask-box-image-expected.png: Removed.
  • platform/efl/fast/backgrounds/mask-box-image-expected.txt: Removed.
  • platform/efl/fast/backgrounds/mask-composite-expected.png: Removed.
  • platform/efl/fast/backgrounds/mask-composite-expected.txt: Removed.
  • platform/efl/fast/backgrounds/opacity-on-document-element-expected.png: Removed.
  • platform/efl/fast/backgrounds/opacity-on-document-element-expected.txt: Removed.
  • platform/efl/fast/backgrounds/quirks-mode-line-box-backgrounds-expected.png: Removed.
  • platform/efl/fast/backgrounds/quirks-mode-line-box-backgrounds-expected.txt: Removed.
  • platform/efl/fast/backgrounds/repeat: Removed.
  • platform/efl/fast/backgrounds/repeat/mask-negative-offset-repeat-expected.png: Removed.
  • platform/efl/fast/backgrounds/repeat/mask-negative-offset-repeat-expected.txt: Removed.
  • platform/efl/fast/backgrounds/repeat/negative-offset-repeat-expected.png: Removed.
  • platform/efl/fast/backgrounds/repeat/negative-offset-repeat-expected.txt: Removed.
  • platform/efl/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.png: Removed.
  • platform/efl/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.txt: Removed.
  • platform/efl/fast/backgrounds/repeat/noRepeatCorrectClip-expected.png: Removed.
  • platform/efl/fast/backgrounds/repeat/noRepeatCorrectClip-expected.txt: Removed.
  • platform/efl/fast/backgrounds/selection-background-color-of-image-list-style-expected.png: Removed.
  • platform/efl/fast/backgrounds/selection-background-color-of-image-list-style-expected.txt: Removed.
  • platform/efl/fast/backgrounds/selection-background-color-of-list-style-expected.png: Removed.
  • platform/efl/fast/backgrounds/selection-background-color-of-list-style-expected.txt: Removed.
  • platform/efl/fast/backgrounds/size: Removed.
  • platform/efl/fast/backgrounds/size/backgroundSize01-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/backgroundSize02-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/backgroundSize03-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/backgroundSize04-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/backgroundSize05-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/backgroundSize06-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/backgroundSize07-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/backgroundSize08-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/backgroundSize09-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/backgroundSize10-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/backgroundSize11-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/backgroundSize12-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/backgroundSize13-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/backgroundSize14-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/backgroundSize15-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/backgroundSize15-expected.txt: Removed.
  • platform/efl/fast/backgrounds/size/backgroundSize16-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/backgroundSize16-expected.txt: Removed.
  • platform/efl/fast/backgrounds/size/backgroundSize17-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/backgroundSize18-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/backgroundSize19-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/backgroundSize20-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/backgroundSize21-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/backgroundSize22-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/contain-and-cover-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/contain-and-cover-zoomed-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/contain-and-cover-zoomed-expected.txt: Removed.
  • platform/efl/fast/backgrounds/size/zero-expected.png: Removed.
  • platform/efl/fast/backgrounds/size/zero-expected.txt: Removed.
  • platform/efl/fast/backgrounds/solid-color-context-restore-expected.png: Removed.
  • platform/efl/fast/backgrounds/solid-color-context-restore-expected.txt: Removed.
  • platform/efl/fast/backgrounds/svg-as-mask-expected.png: Removed.
  • platform/efl/fast/backgrounds/svg-as-mask-expected.txt: Removed.
  • platform/efl/fast/block: Removed.
  • platform/efl/fast/block/basic: Removed.
  • platform/efl/fast/block/basic/001-expected.png: Removed.
  • platform/efl/fast/block/basic/001-expected.txt: Removed.
  • platform/efl/fast/block/basic/002-expected.png: Removed.
  • platform/efl/fast/block/basic/002-expected.txt: Removed.
  • platform/efl/fast/block/basic/003-expected.png: Removed.
  • platform/efl/fast/block/basic/003-expected.txt: Removed.
  • platform/efl/fast/block/basic/004-expected.png: Removed.
  • platform/efl/fast/block/basic/004-expected.txt: Removed.
  • platform/efl/fast/block/basic/005-expected.png: Removed.
  • platform/efl/fast/block/basic/005-expected.txt: Removed.
  • platform/efl/fast/block/basic/006-expected.png: Removed.
  • platform/efl/fast/block/basic/006-expected.txt: Removed.
  • platform/efl/fast/block/basic/007-expected.png: Removed.
  • platform/efl/fast/block/basic/007-expected.txt: Removed.
  • platform/efl/fast/block/basic/008-expected.png: Removed.
  • platform/efl/fast/block/basic/008-expected.txt: Removed.
  • platform/efl/fast/block/basic/009-expected.png: Removed.
  • platform/efl/fast/block/basic/009-expected.txt: Removed.
  • platform/efl/fast/block/basic/010-expected.png: Removed.
  • platform/efl/fast/block/basic/010-expected.txt: Removed.
  • platform/efl/fast/block/basic/011-expected.png: Removed.
  • platform/efl/fast/block/basic/011-expected.txt: Removed.
  • platform/efl/fast/block/basic/012-expected.png: Removed.
  • platform/efl/fast/block/basic/012-expected.txt: Removed.
  • platform/efl/fast/block/basic/013-expected.png: Removed.
  • platform/efl/fast/block/basic/013-expected.txt: Removed.
  • platform/efl/fast/block/basic/014-expected.png: Removed.
  • platform/efl/fast/block/basic/014-expected.txt: Removed.
  • platform/efl/fast/block/basic/015-expected.png: Removed.
  • platform/efl/fast/block/basic/015-expected.txt: Removed.
  • platform/efl/fast/block/basic/016-expected.png: Removed.
  • platform/efl/fast/block/basic/016-expected.txt: Removed.
  • platform/efl/fast/block/basic/018-expected.png: Removed.
  • platform/efl/fast/block/basic/018-expected.txt: Removed.
  • platform/efl/fast/block/basic/019-expected.png: Removed.
  • platform/efl/fast/block/basic/019-expected.txt: Removed.
  • platform/efl/fast/block/basic/020-expected.png: Removed.
  • platform/efl/fast/block/basic/020-expected.txt: Removed.
  • platform/efl/fast/block/basic/021-expected.png: Removed.
  • platform/efl/fast/block/basic/021-expected.txt: Removed.
  • platform/efl/fast/block/basic/adding-near-anonymous-block-expected.png: Removed.
  • platform/efl/fast/block/basic/adding-near-anonymous-block-expected.txt: Removed.
  • platform/efl/fast/block/basic/fieldset-stretch-to-legend-expected.png: Removed.
  • platform/efl/fast/block/basic/min-pref-width-nowrap-floats-expected.png: Removed.
  • platform/efl/fast/block/basic/min-pref-width-nowrap-floats-expected.txt: Removed.
  • platform/efl/fast/block/basic/minheight-expected.png: Removed.
  • platform/efl/fast/block/basic/minheight-expected.txt: Removed.
  • platform/efl/fast/block/basic/percent-height-inside-anonymous-block-expected.png: Removed.
  • platform/efl/fast/block/basic/percent-height-inside-anonymous-block-expected.txt: Removed.
  • platform/efl/fast/block/basic/quirk-height-expected.png: Removed.
  • platform/efl/fast/block/basic/quirk-height-expected.txt: Removed.
  • platform/efl/fast/block/basic/quirk-percent-height-grandchild-expected.png: Removed.
  • platform/efl/fast/block/basic/quirk-percent-height-table-cell-expected.png: Removed.
  • platform/efl/fast/block/basic/quirk-percent-height-table-cell-expected.txt: Removed.
  • platform/efl/fast/block/basic/text-indent-rtl-expected.png: Removed.
  • platform/efl/fast/block/basic/text-indent-rtl-expected.txt: Removed.
  • platform/efl/fast/block/basic/truncation-rtl-expected.png: Removed.
  • platform/efl/fast/block/basic/truncation-rtl-expected.txt: Removed.
  • platform/efl/fast/block/basic/white-space-pre-wraps-expected.png: Removed.
  • platform/efl/fast/block/basic/white-space-pre-wraps-expected.txt: Removed.
  • platform/efl/fast/block/float: Removed.
  • platform/efl/fast/block/float/001-expected.png: Removed.
  • platform/efl/fast/block/float/001-expected.txt: Removed.
  • platform/efl/fast/block/float/002-expected.png: Removed.
  • platform/efl/fast/block/float/002-expected.txt: Removed.
  • platform/efl/fast/block/float/003-expected.png: Removed.
  • platform/efl/fast/block/float/003-expected.txt: Removed.
  • platform/efl/fast/block/float/004-expected.png: Removed.
  • platform/efl/fast/block/float/004-expected.txt: Removed.
  • platform/efl/fast/block/float/005-expected.png: Removed.
  • platform/efl/fast/block/float/005-expected.txt: Removed.
  • platform/efl/fast/block/float/006-expected.png: Removed.
  • platform/efl/fast/block/float/006-expected.txt: Removed.
  • platform/efl/fast/block/float/007-expected.png: Removed.
  • platform/efl/fast/block/float/007-expected.txt: Removed.
  • platform/efl/fast/block/float/008-expected.png: Removed.
  • platform/efl/fast/block/float/009-expected.png: Removed.
  • platform/efl/fast/block/float/010-expected.png: Removed.
  • platform/efl/fast/block/float/010-expected.txt: Removed.
  • platform/efl/fast/block/float/011-expected.png: Removed.
  • platform/efl/fast/block/float/011-expected.txt: Removed.
  • platform/efl/fast/block/float/012-expected.png: Removed.
  • platform/efl/fast/block/float/012-expected.txt: Removed.
  • platform/efl/fast/block/float/013-expected.png: Removed.
  • platform/efl/fast/block/float/013-expected.txt: Removed.
  • platform/efl/fast/block/float/014-expected.png: Removed.
  • platform/efl/fast/block/float/014-expected.txt: Removed.
  • platform/efl/fast/block/float/015-expected.png: Removed.
  • platform/efl/fast/block/float/015-expected.txt: Removed.
  • platform/efl/fast/block/float/016-expected.png: Removed.
  • platform/efl/fast/block/float/016-expected.txt: Removed.
  • platform/efl/fast/block/float/017-expected.png: Removed.
  • platform/efl/fast/block/float/017-expected.txt: Removed.
  • platform/efl/fast/block/float/018-expected.png: Removed.
  • platform/efl/fast/block/float/018-expected.txt: Removed.
  • platform/efl/fast/block/float/019-expected.png: Removed.
  • platform/efl/fast/block/float/020-expected.png: Removed.
  • platform/efl/fast/block/float/020-expected.txt: Removed.
  • platform/efl/fast/block/float/021-expected.png: Removed.
  • platform/efl/fast/block/float/021-expected.txt: Removed.
  • platform/efl/fast/block/float/022-expected.png: Removed.
  • platform/efl/fast/block/float/022-expected.txt: Removed.
  • platform/efl/fast/block/float/023-expected.png: Removed.
  • platform/efl/fast/block/float/023-expected.txt: Removed.
  • platform/efl/fast/block/float/024-expected.png: Removed.
  • platform/efl/fast/block/float/024-expected.txt: Removed.
  • platform/efl/fast/block/float/025-expected.png: Removed.
  • platform/efl/fast/block/float/025-expected.txt: Removed.
  • platform/efl/fast/block/float/026-expected.png: Removed.
  • platform/efl/fast/block/float/026-expected.txt: Removed.
  • platform/efl/fast/block/float/027-expected.png: Removed.
  • platform/efl/fast/block/float/027-expected.txt: Removed.
  • platform/efl/fast/block/float/028-expected.png: Removed.
  • platform/efl/fast/block/float/028-expected.txt: Removed.
  • platform/efl/fast/block/float/029-expected.png: Removed.
  • platform/efl/fast/block/float/029-expected.txt: Removed.
  • platform/efl/fast/block/float/030-expected.png: Removed.
  • platform/efl/fast/block/float/030-expected.txt: Removed.
  • platform/efl/fast/block/float/031-expected.png: Removed.
  • platform/efl/fast/block/float/031-expected.txt: Removed.
  • platform/efl/fast/block/float/032-expected.png: Removed.
  • platform/efl/fast/block/float/032-expected.txt: Removed.
  • platform/efl/fast/block/float/033-expected.png: Removed.
  • platform/efl/fast/block/float/034-expected.png: Removed.
  • platform/efl/fast/block/float/035-expected.png: Removed.
  • platform/efl/fast/block/float/4145535Crash-expected.png: Removed.
  • platform/efl/fast/block/float/avoidance-percent-width-compat-expected.png: Removed.
  • platform/efl/fast/block/float/avoidance-percent-width-compat-expected.txt: Removed.
  • platform/efl/fast/block/float/avoidance-percent-width-strict-expected.png: Removed.
  • platform/efl/fast/block/float/avoidance-percent-width-strict-expected.txt: Removed.
  • platform/efl/fast/block/float/avoiding-float-centered-expected.png: Removed.
  • platform/efl/fast/block/float/avoiding-float-centered-expected.txt: Removed.
  • platform/efl/fast/block/float/br-with-clear-2-expected.png: Removed.
  • platform/efl/fast/block/float/br-with-clear-expected.png: Removed.
  • platform/efl/fast/block/float/br-with-clear-expected.txt: Removed.
  • platform/efl/fast/block/float/centered-float-avoidance-complexity-expected.png: Removed.
  • platform/efl/fast/block/float/centered-float-avoidance-complexity-expected.txt: Removed.
  • platform/efl/fast/block/float/clamped-right-float-expected.png: Removed.
  • platform/efl/fast/block/float/clamped-right-float-expected.txt: Removed.
  • platform/efl/fast/block/float/clear-element-too-wide-for-containing-block-expected.png: Removed.
  • platform/efl/fast/block/float/clear-element-too-wide-for-containing-block-expected.txt: Removed.
  • platform/efl/fast/block/float/dynamic-unfloat-pref-width-expected.png: Removed.
  • platform/efl/fast/block/float/dynamic-unfloat-pref-width-expected.txt: Removed.
  • platform/efl/fast/block/float/editable-text-overlapping-float-expected.png: Removed.
  • platform/efl/fast/block/float/editable-text-overlapping-float-expected.txt: Removed.
  • platform/efl/fast/block/float/fit_line_below_floats-expected.png: Removed.
  • platform/efl/fast/block/float/fit_line_below_floats-expected.txt: Removed.
  • platform/efl/fast/block/float/float-avoidance-expected.png: Removed.
  • platform/efl/fast/block/float/float-avoidance-expected.txt: Removed.
  • platform/efl/fast/block/float/float-forced-below-other-floats-expected.png: Removed.
  • platform/efl/fast/block/float/float-in-float-hit-testing-expected.png: Removed.
  • platform/efl/fast/block/float/float-in-float-hit-testing-expected.txt: Removed.
  • platform/efl/fast/block/float/float-in-float-painting-expected.png: Removed.
  • platform/efl/fast/block/float/float-in-float-painting-expected.txt: Removed.
  • platform/efl/fast/block/float/float-not-removed-from-next-sibling-expected.png: Removed.
  • platform/efl/fast/block/float/float-not-removed-from-next-sibling2-expected.png: Removed.
  • platform/efl/fast/block/float/float-not-removed-from-next-sibling3-expected.png: Removed.
  • platform/efl/fast/block/float/float-not-removed-from-next-sibling3-expected.txt: Removed.
  • platform/efl/fast/block/float/float-not-removed-from-next-sibling4-expected.png: Removed.
  • platform/efl/fast/block/float/float-not-removed-from-next-sibling4-expected.txt: Removed.
  • platform/efl/fast/block/float/float-on-zero-height-line-expected.png: Removed.
  • platform/efl/fast/block/float/float-overflow-hidden-containing-block-width-expected.png: Removed.
  • platform/efl/fast/block/float/float-overhangs-root-expected.png: Removed.
  • platform/efl/fast/block/float/floats-and-text-indent-expected.png: Removed.
  • platform/efl/fast/block/float/floats-and-text-indent-expected.txt: Removed.
  • platform/efl/fast/block/float/floats-and-text-indent-rl-expected.png: Removed.
  • platform/efl/fast/block/float/floats-and-text-indent-rl-expected.txt: Removed.
  • platform/efl/fast/block/float/independent-align-positioning-expected.png: Removed.
  • platform/efl/fast/block/float/independent-align-positioning-expected.txt: Removed.
  • platform/efl/fast/block/float/intruding-float-add-in-sibling-block-on-static-position-expected.png: Removed.
  • platform/efl/fast/block/float/intruding-float-add-in-sibling-block-on-static-position-expected.txt: Removed.
  • platform/efl/fast/block/float/intruding-float-add-in-sibling-block-on-static-position2-expected.png: Removed.
  • platform/efl/fast/block/float/intruding-float-add-in-sibling-block-on-static-position2-expected.txt: Removed.
  • platform/efl/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position-expected.png: Removed.
  • platform/efl/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position-expected.txt: Removed.
  • platform/efl/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position2-expected.png: Removed.
  • platform/efl/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position2-expected.txt: Removed.
  • platform/efl/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position-expected.png: Removed.
  • platform/efl/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position-expected.txt: Removed.
  • platform/efl/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position2-expected.png: Removed.
  • platform/efl/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position2-expected.txt: Removed.
  • platform/efl/fast/block/float/intruding-painted-twice-expected.png: Removed.
  • platform/efl/fast/block/float/intruding-painted-twice-expected.txt: Removed.
  • platform/efl/fast/block/float/marquee-shrink-to-avoid-floats-expected.png: Removed.
  • platform/efl/fast/block/float/marquee-shrink-to-avoid-floats-expected.txt: Removed.
  • platform/efl/fast/block/float/multiple-float-positioning-expected.png: Removed.
  • platform/efl/fast/block/float/multiple-float-positioning-expected.txt: Removed.
  • platform/efl/fast/block/float/narrow-after-wide-expected.png: Removed.
  • platform/efl/fast/block/float/negative-margin-clear-expected.png: Removed.
  • platform/efl/fast/block/float/nested-clearance-expected.png: Removed.
  • platform/efl/fast/block/float/nestedAnonymousBlocks-expected.png: Removed.
  • platform/efl/fast/block/float/nestedAnonymousBlocks-expected.txt: Removed.
  • platform/efl/fast/block/float/nestedAnonymousBlocks2-expected.png: Removed.
  • platform/efl/fast/block/float/nestedAnonymousBlocks2-expected.txt: Removed.
  • platform/efl/fast/block/float/nopaint-after-layer-destruction-expected.png: Removed.
  • platform/efl/fast/block/float/nopaint-after-layer-destruction-expected.txt: Removed.
  • platform/efl/fast/block/float/nopaint-after-layer-destruction2-expected.png: Removed.
  • platform/efl/fast/block/float/nopaint-after-layer-destruction2-expected.txt: Removed.
  • platform/efl/fast/block/float/nowrap-clear-min-width-expected.png: Removed.
  • platform/efl/fast/block/float/overhanging-after-height-decrease-expected.png: Removed.
  • platform/efl/fast/block/float/overhanging-after-height-decrease-expected.txt: Removed.
  • platform/efl/fast/block/float/overhanging-after-height-decrease-offsets-expected.png: Removed.
  • platform/efl/fast/block/float/overhanging-float-add-in-static-position-block-expected.png: Removed.
  • platform/efl/fast/block/float/overhanging-float-add-in-static-position-block-expected.txt: Removed.
  • platform/efl/fast/block/float/overhanging-float-add-in-static-position-block2-expected.png: Removed.
  • platform/efl/fast/block/float/overhanging-float-add-in-static-position-block2-expected.txt: Removed.
  • platform/efl/fast/block/float/overhanging-float-remove-from-absolute-position-block-expected.png: Removed.
  • platform/efl/fast/block/float/overhanging-float-remove-from-absolute-position-block-expected.txt: Removed.
  • platform/efl/fast/block/float/overhanging-float-remove-from-absolute-position-block2-expected.png: Removed.
  • platform/efl/fast/block/float/overhanging-float-remove-from-absolute-position-block2-expected.txt: Removed.
  • platform/efl/fast/block/float/overhanging-float-remove-from-fixed-position-block-expected.png: Removed.
  • platform/efl/fast/block/float/overhanging-float-remove-from-fixed-position-block-expected.txt: Removed.
  • platform/efl/fast/block/float/overhanging-float-remove-from-fixed-position-block2-expected.png: Removed.
  • platform/efl/fast/block/float/overhanging-float-remove-from-fixed-position-block2-expected.txt: Removed.
  • platform/efl/fast/block/float/overlapping-floats-with-overflow-hidden-expected.png: Removed.
  • platform/efl/fast/block/float/overlapping-floats-with-overflow-hidden-expected.txt: Removed.
  • platform/efl/fast/block/float/relative-painted-twice-expected.png: Removed.
  • platform/efl/fast/block/float/shrink-to-avoid-float-complexity-expected.png: Removed.
  • platform/efl/fast/block/float/shrink-to-avoid-float-complexity-expected.txt: Removed.
  • platform/efl/fast/block/float/shrink-to-fit-width-expected.png: Removed.
  • platform/efl/fast/block/float/shrink-to-fit-width-expected.txt: Removed.
  • platform/efl/fast/block/float/table-relayout-expected.png: Removed.
  • platform/efl/fast/block/float/table-relayout-expected.txt: Removed.
  • platform/efl/fast/block/float/vertical-move-relayout-expected.png: Removed.
  • platform/efl/fast/block/float/vertical-move-relayout-expected.txt: Removed.
  • platform/efl/fast/block/float/width-update-after-clear-expected.png: Removed.
  • platform/efl/fast/block/float/width-update-after-clear-expected.txt: Removed.
  • platform/efl/fast/block/lineboxcontain: Removed.
  • platform/efl/fast/block/lineboxcontain/block-expected.png: Removed.
  • platform/efl/fast/block/lineboxcontain/block-expected.txt: Removed.
  • platform/efl/fast/block/lineboxcontain/block-font-expected.png: Removed.
  • platform/efl/fast/block/lineboxcontain/block-font-expected.txt: Removed.
  • platform/efl/fast/block/lineboxcontain/block-glyphs-expected.png: Removed.
  • platform/efl/fast/block/lineboxcontain/block-glyphs-expected.txt: Removed.
  • platform/efl/fast/block/lineboxcontain/block-glyphs-replaced-expected.png: Removed.
  • platform/efl/fast/block/lineboxcontain/block-glyphs-replaced-expected.txt: Removed.
  • platform/efl/fast/block/lineboxcontain/block-replaced-expected.png: Removed.
  • platform/efl/fast/block/lineboxcontain/block-replaced-expected.txt: Removed.
  • platform/efl/fast/block/lineboxcontain/block-with-ideographs-expected.txt: Removed.
  • platform/efl/fast/block/lineboxcontain/font-expected.png: Removed.
  • platform/efl/fast/block/lineboxcontain/font-expected.txt: Removed.
  • platform/efl/fast/block/lineboxcontain/font-replaced-expected.png: Removed.
  • platform/efl/fast/block/lineboxcontain/font-replaced-expected.txt: Removed.
  • platform/efl/fast/block/lineboxcontain/glyphs-expected.png: Removed.
  • platform/efl/fast/block/lineboxcontain/glyphs-expected.txt: Removed.
  • platform/efl/fast/block/lineboxcontain/inline-box-expected.png: Removed.
  • platform/efl/fast/block/lineboxcontain/inline-box-expected.txt: Removed.
  • platform/efl/fast/block/lineboxcontain/inline-box-replaced-expected.png: Removed.
  • platform/efl/fast/block/lineboxcontain/inline-box-replaced-expected.txt: Removed.
  • platform/efl/fast/block/lineboxcontain/inline-box-vertical-expected.png: Removed.
  • platform/efl/fast/block/lineboxcontain/inline-box-vertical-expected.txt: Removed.
  • platform/efl/fast/block/lineboxcontain/inline-expected.png: Removed.
  • platform/efl/fast/block/lineboxcontain/inline-expected.txt: Removed.
  • platform/efl/fast/block/lineboxcontain/inline-replaced-expected.png: Removed.
  • platform/efl/fast/block/lineboxcontain/inline-replaced-expected.txt: Removed.
  • platform/efl/fast/block/lineboxcontain/none-expected.png: Removed.
  • platform/efl/fast/block/lineboxcontain/none-expected.txt: Removed.
  • platform/efl/fast/block/lineboxcontain/parsing-invalid-expected.png: Removed.
  • platform/efl/fast/block/lineboxcontain/parsing-invalid-expected.txt: Removed.
  • platform/efl/fast/block/lineboxcontain/replaced-expected.png: Removed.
  • platform/efl/fast/block/lineboxcontain/replaced-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse: Removed.
  • platform/efl/fast/block/margin-collapse/001-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/001-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/002-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/002-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/003-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/003-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/004-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/004-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/005-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/005-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/006-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/006-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/010-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/010-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/011-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/011-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/012-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/012-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/015-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/015-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/016-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/016-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/017-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/017-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/018-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/018-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/019-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/019-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/020-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/020-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/021-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/021-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/022-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/022-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/025-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/025-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/026-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/026-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/027-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/027-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/028-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/028-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/029-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/029-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/030-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/030-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/031-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/031-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/032-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/032-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/033-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/033-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/034-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/034-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/035-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/035-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/037-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/037-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/038-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/038-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/039-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/039-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/040-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/040-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/041-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/041-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/042-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/042-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/043-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/043-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/044-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/044-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/045-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/045-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/055-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/055-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/056-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/056-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/057-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/057-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/058-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/058-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/059-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/059-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/062-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/062-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/063-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/063-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/100-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/100-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/101-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/101-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/102-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/102-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/103-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/103-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/104-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/104-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/001-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/001-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/002-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/002-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/003-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/003-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/004-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/004-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/005-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/005-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/006-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/006-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/010-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/010-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/011-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/011-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/012-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/012-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/015-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/015-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/016-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/016-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/017-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/017-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/018-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/018-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/019-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/019-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/020-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/020-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/021-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/021-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/022-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/022-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/025-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/block-inside-inline/025-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/empty-clear-blocks-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/empty-clear-blocks-expected.txt: Removed.
  • platform/efl/fast/block/margin-collapse/negative-margins-expected.png: Removed.
  • platform/efl/fast/block/margin-collapse/negative-margins-expected.txt: Removed.
  • platform/efl/fast/block/positioning: Removed.
  • platform/efl/fast/block/positioning/001-expected.png: Removed.
  • platform/efl/fast/block/positioning/001-expected.txt: Removed.
  • platform/efl/fast/block/positioning/002-expected.png: Removed.
  • platform/efl/fast/block/positioning/002-expected.txt: Removed.
  • platform/efl/fast/block/positioning/003-expected.png: Removed.
  • platform/efl/fast/block/positioning/004-expected.png: Removed.
  • platform/efl/fast/block/positioning/005-expected.png: Removed.
  • platform/efl/fast/block/positioning/006-expected.png: Removed.
  • platform/efl/fast/block/positioning/007-expected.png: Removed.
  • platform/efl/fast/block/positioning/008-expected.png: Removed.
  • platform/efl/fast/block/positioning/009-expected.png: Removed.
  • platform/efl/fast/block/positioning/010-expected.png: Removed.
  • platform/efl/fast/block/positioning/011-expected.png: Removed.
  • platform/efl/fast/block/positioning/012-expected.png: Removed.
  • platform/efl/fast/block/positioning/013-expected.png: Removed.
  • platform/efl/fast/block/positioning/014-expected.png: Removed.
  • platform/efl/fast/block/positioning/015-expected.png: Removed.
  • platform/efl/fast/block/positioning/017-expected.png: Removed.
  • platform/efl/fast/block/positioning/018-expected.png: Removed.
  • platform/efl/fast/block/positioning/019-expected.png: Removed.
  • platform/efl/fast/block/positioning/020-expected.png: Removed.
  • platform/efl/fast/block/positioning/021-expected.png: Removed.
  • platform/efl/fast/block/positioning/022-expected.png: Removed.
  • platform/efl/fast/block/positioning/023-expected.png: Removed.
  • platform/efl/fast/block/positioning/024-expected.png: Removed.
  • platform/efl/fast/block/positioning/026-expected.png: Removed.
  • platform/efl/fast/block/positioning/027-expected.png: Removed.
  • platform/efl/fast/block/positioning/028-expected.png: Removed.
  • platform/efl/fast/block/positioning/029-expected.png: Removed.
  • platform/efl/fast/block/positioning/030-expected.png: Removed.
  • platform/efl/fast/block/positioning/031-expected.png: Removed.
  • platform/efl/fast/block/positioning/032-expected.png: Removed.
  • platform/efl/fast/block/positioning/033-expected.png: Removed.
  • platform/efl/fast/block/positioning/034-expected.png: Removed.
  • platform/efl/fast/block/positioning/035-expected.png: Removed.
  • platform/efl/fast/block/positioning/036-expected.png: Removed.
  • platform/efl/fast/block/positioning/037-expected.png: Removed.
  • platform/efl/fast/block/positioning/038-expected.png: Removed.
  • platform/efl/fast/block/positioning/039-expected.png: Removed.
  • platform/efl/fast/block/positioning/040-expected.png: Removed.
  • platform/efl/fast/block/positioning/041-expected.png: Removed.
  • platform/efl/fast/block/positioning/042-expected.png: Removed.
  • platform/efl/fast/block/positioning/043-expected.png: Removed.
  • platform/efl/fast/block/positioning/044-expected.png: Removed.
  • platform/efl/fast/block/positioning/045-expected.png: Removed.
  • platform/efl/fast/block/positioning/046-expected.png: Removed.
  • platform/efl/fast/block/positioning/047-expected.png: Removed.
  • platform/efl/fast/block/positioning/047-expected.txt: Removed.
  • platform/efl/fast/block/positioning/048-expected.png: Removed.
  • platform/efl/fast/block/positioning/049-expected.png: Removed.
  • platform/efl/fast/block/positioning/050-expected.png: Removed.
  • platform/efl/fast/block/positioning/051-expected.png: Removed.
  • platform/efl/fast/block/positioning/051-expected.txt: Removed.
  • platform/efl/fast/block/positioning/052-expected.png: Removed.
  • platform/efl/fast/block/positioning/052-expected.txt: Removed.
  • platform/efl/fast/block/positioning/053-expected.png: Removed.
  • platform/efl/fast/block/positioning/053-expected.txt: Removed.
  • platform/efl/fast/block/positioning/054-expected.png: Removed.
  • platform/efl/fast/block/positioning/054-expected.txt: Removed.
  • platform/efl/fast/block/positioning/055-expected.png: Removed.
  • platform/efl/fast/block/positioning/055-expected.txt: Removed.
  • platform/efl/fast/block/positioning/056-expected.png: Removed.
  • platform/efl/fast/block/positioning/056-expected.txt: Removed.
  • platform/efl/fast/block/positioning/057-expected.png: Removed.
  • platform/efl/fast/block/positioning/057-expected.txt: Removed.
  • platform/efl/fast/block/positioning/058-expected.png: Removed.
  • platform/efl/fast/block/positioning/058-expected.txt: Removed.
  • platform/efl/fast/block/positioning/059-expected.png: Removed.
  • platform/efl/fast/block/positioning/059-expected.txt: Removed.
  • platform/efl/fast/block/positioning/060-expected.png: Removed.
  • platform/efl/fast/block/positioning/060-expected.txt: Removed.
  • platform/efl/fast/block/positioning/061-expected.png: Removed.
  • platform/efl/fast/block/positioning/061-expected.txt: Removed.
  • platform/efl/fast/block/positioning/062-expected.png: Removed.
  • platform/efl/fast/block/positioning/abs-inside-inline-rel-expected.png: Removed.
  • platform/efl/fast/block/positioning/abs-inside-inline-rel-expected.txt: Removed.
  • platform/efl/fast/block/positioning/absolute-in-inline-ltr-2-expected.png: Removed.
  • platform/efl/fast/block/positioning/absolute-in-inline-ltr-2-expected.txt: Removed.
  • platform/efl/fast/block/positioning/absolute-in-inline-ltr-3-expected.png: Removed.
  • platform/efl/fast/block/positioning/absolute-in-inline-ltr-3-expected.txt: Removed.
  • platform/efl/fast/block/positioning/absolute-in-inline-ltr-expected.png: Removed.
  • platform/efl/fast/block/positioning/absolute-in-inline-ltr-expected.txt: Removed.
  • platform/efl/fast/block/positioning/absolute-in-inline-rtl-2-expected.png: Removed.
  • platform/efl/fast/block/positioning/absolute-in-inline-rtl-2-expected.txt: Removed.
  • platform/efl/fast/block/positioning/absolute-in-inline-rtl-3-expected.png: Removed.
  • platform/efl/fast/block/positioning/absolute-in-inline-rtl-3-expected.txt: Removed.
  • platform/efl/fast/block/positioning/absolute-in-inline-rtl-expected.png: Removed.
  • platform/efl/fast/block/positioning/absolute-in-inline-rtl-expected.txt: Removed.
  • platform/efl/fast/block/positioning/absolute-in-inline-short-ltr-expected.png: Removed.
  • platform/efl/fast/block/positioning/absolute-in-inline-short-ltr-expected.txt: Removed.
  • platform/efl/fast/block/positioning/absolute-in-inline-short-rtl-expected.png: Removed.
  • platform/efl/fast/block/positioning/absolute-in-inline-short-rtl-expected.txt: Removed.
  • platform/efl/fast/block/positioning/absolute-length-of-neg-666666-expected.png: Removed.
  • platform/efl/fast/block/positioning/absolute-length-of-neg-666666-expected.txt: Removed.
  • platform/efl/fast/block/positioning/absolute-position-direction-expected.png: Removed.
  • platform/efl/fast/block/positioning/absolute-position-direction-expected.txt: Removed.
  • platform/efl/fast/block/positioning/absolute-positioned-overconstrained-expected.png: Removed.
  • platform/efl/fast/block/positioning/absolute-positioned-overconstrained-expected.txt: Removed.
  • platform/efl/fast/block/positioning/absolute-positioning-no-scrollbar-expected.png: Removed.
  • platform/efl/fast/block/positioning/absolute-positioning-no-scrollbar-expected.txt: Removed.
  • platform/efl/fast/block/positioning/absolute-with-html-border-quirks-expected.png: Removed.
  • platform/efl/fast/block/positioning/absolute-with-html-border-quirks-expected.txt: Removed.
  • platform/efl/fast/block/positioning/absolute-with-html-border-strict-expected.png: Removed.
  • platform/efl/fast/block/positioning/absolute-with-html-border-strict-expected.txt: Removed.
  • platform/efl/fast/block/positioning/auto: Removed.
  • platform/efl/fast/block/positioning/auto-height-with-top-and-bottom-expected.png: Removed.
  • platform/efl/fast/block/positioning/auto-height-with-top-and-bottom-expected.txt: Removed.
  • platform/efl/fast/block/positioning/auto/001-expected.png: Removed.
  • platform/efl/fast/block/positioning/auto/001-expected.txt: Removed.
  • platform/efl/fast/block/positioning/auto/002-expected.png: Removed.
  • platform/efl/fast/block/positioning/auto/002-expected.txt: Removed.
  • platform/efl/fast/block/positioning/auto/003-expected.png: Removed.
  • platform/efl/fast/block/positioning/auto/003-expected.txt: Removed.
  • platform/efl/fast/block/positioning/auto/004-expected.png: Removed.
  • platform/efl/fast/block/positioning/auto/004-expected.txt: Removed.
  • platform/efl/fast/block/positioning/auto/005-expected.png: Removed.
  • platform/efl/fast/block/positioning/auto/005-expected.txt: Removed.
  • platform/efl/fast/block/positioning/auto/006-expected.png: Removed.
  • platform/efl/fast/block/positioning/auto/006-expected.txt: Removed.
  • platform/efl/fast/block/positioning/auto/007-expected.png: Removed.
  • platform/efl/fast/block/positioning/auto/007-expected.txt: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-lr: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-lr/001-expected.png: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-lr/001-expected.txt: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-lr/002-expected.png: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-lr/002-expected.txt: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-lr/003-expected.png: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-lr/003-expected.txt: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-lr/004-expected.png: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-lr/004-expected.txt: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-lr/005-expected.png: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-lr/005-expected.txt: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-lr/006-expected.png: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-lr/006-expected.txt: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-lr/007-expected.png: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-lr/007-expected.txt: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-rl: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-rl/001-expected.png: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-rl/001-expected.txt: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-rl/002-expected.png: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-rl/002-expected.txt: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-rl/003-expected.png: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-rl/003-expected.txt: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-rl/004-expected.png: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-rl/004-expected.txt: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-rl/005-expected.png: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-rl/005-expected.txt: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-rl/006-expected.png: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-rl/006-expected.txt: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-rl/007-expected.png: Removed.
  • platform/efl/fast/block/positioning/auto/vertical-rl/007-expected.txt: Removed.
  • platform/efl/fast/block/positioning/child-of-absolute-with-auto-height-expected.png: Removed.
  • platform/efl/fast/block/positioning/child-of-absolute-with-auto-height-expected.txt: Removed.
  • platform/efl/fast/block/positioning/complex-positioned-movement-expected.png: Removed.
  • platform/efl/fast/block/positioning/differing-writing-modes-expected.png: Removed.
  • platform/efl/fast/block/positioning/differing-writing-modes-expected.txt: Removed.
  • platform/efl/fast/block/positioning/differing-writing-modes-replaced-expected.png: Removed.
  • platform/efl/fast/block/positioning/differing-writing-modes-replaced-expected.txt: Removed.
  • platform/efl/fast/block/positioning/fixed-positioning-scrollbar-bug-expected.png: Removed.
  • platform/efl/fast/block/positioning/fixed-positioning-scrollbar-bug-expected.txt: Removed.
  • platform/efl/fast/block/positioning/height-change-expected.png: Removed.
  • platform/efl/fast/block/positioning/height-change-expected.txt: Removed.
  • platform/efl/fast/block/positioning/hiding-inside-relpositioned-inline-expected.png: Removed.
  • platform/efl/fast/block/positioning/hiding-inside-relpositioned-inline-expected.txt: Removed.
  • platform/efl/fast/block/positioning/inline-block-relposition-expected.png: Removed.
  • platform/efl/fast/block/positioning/inline-block-relposition-expected.txt: Removed.
  • platform/efl/fast/block/positioning/leftmargin-topmargin-expected.png: Removed.
  • platform/efl/fast/block/positioning/leftmargin-topmargin-expected.txt: Removed.
  • platform/efl/fast/block/positioning/move-with-auto-width-expected.png: Removed.
  • platform/efl/fast/block/positioning/negative-rel-position-expected.png: Removed.
  • platform/efl/fast/block/positioning/negative-right-pos-expected.png: Removed.
  • platform/efl/fast/block/positioning/negative-right-pos-expected.txt: Removed.
  • platform/efl/fast/block/positioning/padding-percent-expected.png: Removed.
  • platform/efl/fast/block/positioning/padding-percent-expected.txt: Removed.
  • platform/efl/fast/block/positioning/pref-width-change-expected.png: Removed.
  • platform/efl/fast/block/positioning/pref-width-change-expected.txt: Removed.
  • platform/efl/fast/block/positioning/relative-overconstrained-expected.png: Removed.
  • platform/efl/fast/block/positioning/relative-overflow-block-expected.png: Removed.
  • platform/efl/fast/block/positioning/relative-overflow-block-expected.txt: Removed.
  • platform/efl/fast/block/positioning/relative-overflow-replaced-expected.png: Removed.
  • platform/efl/fast/block/positioning/relative-overflow-replaced-expected.txt: Removed.
  • platform/efl/fast/block/positioning/relative-overflow-replaced-float-expected.png: Removed.
  • platform/efl/fast/block/positioning/relative-overflow-replaced-float-expected.txt: Removed.
  • platform/efl/fast/block/positioning/relative-positioned-inline-container-expected.png: Removed.
  • platform/efl/fast/block/positioning/relative-positioned-inline-container-expected.txt: Removed.
  • platform/efl/fast/block/positioning/relayout-on-position-change-expected.png: Removed.
  • platform/efl/fast/block/positioning/relayout-on-position-change-expected.txt: Removed.
  • platform/efl/fast/block/positioning/replaced-inside-fixed-top-bottom-expected.png: Removed.
  • platform/efl/fast/block/positioning/rtl-fixed-positioning-expected.png: Removed.
  • platform/efl/fast/block/positioning/rtl-static-positioning-expected.png: Removed.
  • platform/efl/fast/block/positioning/rtl-static-positioning-expected.txt: Removed.
  • platform/efl/fast/block/positioning/rtl-static-positioning-inline-block-expected.png: Removed.
  • platform/efl/fast/block/positioning/rtl-static-positioning-inline-block-expected.txt: Removed.
  • platform/efl/fast/block/positioning/static-distance-with-positioned-ancestor-expected.png: Removed.
  • platform/efl/fast/block/positioning/static-distance-with-positioned-ancestor-expected.txt: Removed.
  • platform/efl/fast/block/positioning/static-inline-position-dynamic-expected.png: Removed.
  • platform/efl/fast/block/positioning/table-cell-static-position-expected.png: Removed.
  • platform/efl/fast/block/positioning/table-cell-static-position-expected.txt: Removed.
  • platform/efl/fast/block/positioning/trailing-space-test-expected.png: Removed.
  • platform/efl/fast/block/positioning/trailing-space-test-expected.txt: Removed.
  • platform/efl/fast/block/positioning/vertical-lr: Removed.
  • platform/efl/fast/block/positioning/vertical-lr/001-expected.png: Removed.
  • platform/efl/fast/block/positioning/vertical-lr/001-expected.txt: Removed.
  • platform/efl/fast/block/positioning/vertical-lr/002-expected.png: Removed.
  • platform/efl/fast/block/positioning/vertical-lr/002-expected.txt: Removed.
  • platform/efl/fast/block/positioning/vertical-lr/003-expected.png: Removed.
  • platform/efl/fast/block/positioning/vertical-lr/004-expected.png: Removed.
  • platform/efl/fast/block/positioning/vertical-lr/005-expected.png: Removed.
  • platform/efl/fast/block/positioning/vertical-lr/006-expected.png: Removed.
  • platform/efl/fast/block/positioning/vertical-rl: Removed.
  • platform/efl/fast/block/positioning/vertical-rl/001-expected.png: Removed.
  • platform/efl/fast/block/positioning/vertical-rl/001-expected.txt: Removed.
  • platform/efl/fast/block/positioning/vertical-rl/002-expected.png: Removed.
  • platform/efl/fast/block/positioning/vertical-rl/002-expected.txt: Removed.
  • platform/efl/fast/block/positioning/vertical-rl/003-expected.png: Removed.
  • platform/efl/fast/block/positioning/vertical-rl/004-expected.png: Removed.
  • platform/efl/fast/block/positioning/vertical-rl/005-expected.png: Removed.
  • platform/efl/fast/block/positioning/vertical-rl/006-expected.png: Removed.
  • platform/efl/fast/block/positioning/vertical-rl/fixed-positioning-expected.png: Removed.
  • platform/efl/fast/block/positioning/vertical-rl/fixed-positioning-expected.txt: Removed.
  • platform/efl/fast/block/positioning/window-height-change-expected.png: Removed.
  • platform/efl/fast/block/positioning/window-height-change-expected.txt: Removed.
  • platform/efl/fast/body-propagation: Removed.
  • platform/efl/fast/body-propagation/background-color: Removed.
  • platform/efl/fast/body-propagation/background-color/001-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-color/001-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-color/001-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-color/001-xhtml-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-color/002-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-color/002-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-color/002-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-color/002-xhtml-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-color/003-declarative-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-color/003-declarative-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-color/003-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-color/003-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-color/003-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-color/003-xhtml-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-color/004-declarative-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-color/004-declarative-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-color/004-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-color/004-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-color/004-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-color/004-xhtml-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-color/005-declarative-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-color/005-declarative-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-color/005-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-color/005-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-color/005-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-color/005-xhtml-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-color/006-declarative-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-color/006-declarative-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-color/006-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-color/006-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-color/006-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-color/006-xhtml-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-color/007-declarative-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-color/007-declarative-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-color/007-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-color/007-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-color/007-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-color/007-xhtml-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-color/008-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-color/008-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-color/008-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-color/008-xhtml-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image: Removed.
  • platform/efl/fast/body-propagation/background-image/001-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/001-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image/001-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/001-xhtml-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image/002-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/002-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image/002-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/002-xhtml-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image/003-declarative-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/003-declarative-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image/003-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/003-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image/003-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/003-xhtml-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image/004-declarative-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/004-declarative-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image/004-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/004-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image/004-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/004-xhtml-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image/005-declarative-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/005-declarative-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image/005-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/005-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image/005-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/005-xhtml-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image/006-declarative-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/006-declarative-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image/006-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/006-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image/006-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/006-xhtml-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image/007-declarative-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/007-declarative-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image/007-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/007-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image/007-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/007-xhtml-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image/008-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/008-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image/008-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/008-xhtml-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image/009-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/009-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image/009-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/009-xhtml-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image/010-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/010-expected.txt: Removed.
  • platform/efl/fast/body-propagation/background-image/010-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/background-image/010-xhtml-expected.txt: Removed.
  • platform/efl/fast/body-propagation/overflow: Removed.
  • platform/efl/fast/body-propagation/overflow/001-expected.png: Removed.
  • platform/efl/fast/body-propagation/overflow/001-expected.txt: Removed.
  • platform/efl/fast/body-propagation/overflow/001-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/overflow/001-xhtml-expected.txt: Removed.
  • platform/efl/fast/body-propagation/overflow/002-expected.png: Removed.
  • platform/efl/fast/body-propagation/overflow/002-expected.txt: Removed.
  • platform/efl/fast/body-propagation/overflow/002-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/overflow/002-xhtml-expected.txt: Removed.
  • platform/efl/fast/body-propagation/overflow/003-declarative-expected.png: Removed.
  • platform/efl/fast/body-propagation/overflow/003-declarative-expected.txt: Removed.
  • platform/efl/fast/body-propagation/overflow/003-expected.png: Removed.
  • platform/efl/fast/body-propagation/overflow/003-expected.txt: Removed.
  • platform/efl/fast/body-propagation/overflow/003-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/overflow/003-xhtml-expected.txt: Removed.
  • platform/efl/fast/body-propagation/overflow/004-declarative-expected.png: Removed.
  • platform/efl/fast/body-propagation/overflow/004-declarative-expected.txt: Removed.
  • platform/efl/fast/body-propagation/overflow/004-expected.png: Removed.
  • platform/efl/fast/body-propagation/overflow/004-expected.txt: Removed.
  • platform/efl/fast/body-propagation/overflow/004-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/overflow/004-xhtml-expected.txt: Removed.
  • platform/efl/fast/body-propagation/overflow/005-declarative-expected.png: Removed.
  • platform/efl/fast/body-propagation/overflow/005-declarative-expected.txt: Removed.
  • platform/efl/fast/body-propagation/overflow/005-expected.png: Removed.
  • platform/efl/fast/body-propagation/overflow/005-expected.txt: Removed.
  • platform/efl/fast/body-propagation/overflow/005-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/overflow/005-xhtml-expected.txt: Removed.
  • platform/efl/fast/body-propagation/overflow/006-declarative-expected.png: Removed.
  • platform/efl/fast/body-propagation/overflow/006-declarative-expected.txt: Removed.
  • platform/efl/fast/body-propagation/overflow/006-expected.png: Removed.
  • platform/efl/fast/body-propagation/overflow/006-expected.txt: Removed.
  • platform/efl/fast/body-propagation/overflow/006-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/overflow/006-xhtml-expected.txt: Removed.
  • platform/efl/fast/body-propagation/overflow/007-declarative-expected.png: Removed.
  • platform/efl/fast/body-propagation/overflow/007-declarative-expected.txt: Removed.
  • platform/efl/fast/body-propagation/overflow/007-expected.png: Removed.
  • platform/efl/fast/body-propagation/overflow/007-expected.txt: Removed.
  • platform/efl/fast/body-propagation/overflow/007-xhtml-expected.png: Removed.
  • platform/efl/fast/body-propagation/overflow/007-xhtml-expected.txt: Removed.
  • platform/efl/fast/borders: Removed.
  • platform/efl/fast/borders/bidi-002-expected.png: Removed.
  • platform/efl/fast/borders/bidi-002-expected.txt: Removed.
  • platform/efl/fast/borders/bidi-009a-expected.png: Removed.
  • platform/efl/fast/borders/bidi-009a-expected.txt: Removed.
  • platform/efl/fast/borders/bidi-012-expected.png: Removed.
  • platform/efl/fast/borders/bidi-012-expected.txt: Removed.
  • platform/efl/fast/borders/block-mask-overlay-image-expected.png: Removed.
  • platform/efl/fast/borders/block-mask-overlay-image-expected.txt: Removed.
  • platform/efl/fast/borders/block-mask-overlay-image-outset-expected.png: Removed.
  • platform/efl/fast/borders/block-mask-overlay-image-outset-expected.txt: Removed.
  • platform/efl/fast/borders/border-antialiasing-expected.png: Removed.
  • platform/efl/fast/borders/border-antialiasing-expected.txt: Removed.
  • platform/efl/fast/borders/border-color-inherit-expected.png: Removed.
  • platform/efl/fast/borders/border-color-inherit-expected.txt: Removed.
  • platform/efl/fast/borders/border-fit-2-expected.png: Removed.
  • platform/efl/fast/borders/border-fit-2-expected.txt: Removed.
  • platform/efl/fast/borders/border-fit-expected.png: Removed.
  • platform/efl/fast/borders/border-image-01-expected.png: Removed.
  • platform/efl/fast/borders/border-image-01-expected.txt: Removed.
  • platform/efl/fast/borders/border-image-border-radius-expected.png: Removed.
  • platform/efl/fast/borders/border-image-border-radius-expected.txt: Removed.
  • platform/efl/fast/borders/border-image-longhand-expected.png: Removed.
  • platform/efl/fast/borders/border-image-longhand-expected.txt: Removed.
  • platform/efl/fast/borders/border-image-massive-scale-expected.png: Removed.
  • platform/efl/fast/borders/border-image-massive-scale-expected.txt: Removed.
  • platform/efl/fast/borders/border-image-omit-right-slice-expected.png: Removed.
  • platform/efl/fast/borders/border-image-omit-right-slice-expected.txt: Removed.
  • platform/efl/fast/borders/border-image-outset-expected.png: Removed.
  • platform/efl/fast/borders/border-image-outset-expected.txt: Removed.
  • platform/efl/fast/borders/border-image-outset-in-shorthand-expected.png: Removed.
  • platform/efl/fast/borders/border-image-outset-in-shorthand-expected.txt: Removed.
  • platform/efl/fast/borders/border-image-outset-split-inline-expected.png: Removed.
  • platform/efl/fast/borders/border-image-outset-split-inline-expected.txt: Removed.
  • platform/efl/fast/borders/border-image-outset-split-inline-vertical-lr-expected.png: Removed.
  • platform/efl/fast/borders/border-image-outset-split-inline-vertical-lr-expected.txt: Removed.
  • platform/efl/fast/borders/border-image-repeat-expected.png: Removed.
  • platform/efl/fast/borders/border-image-repeat-expected.txt: Removed.
  • platform/efl/fast/borders/border-image-rotate-transform-expected.png: Removed.
  • platform/efl/fast/borders/border-image-rotate-transform-expected.txt: Removed.
  • platform/efl/fast/borders/border-image-scale-transform-expected.png: Removed.
  • platform/efl/fast/borders/border-image-scale-transform-expected.txt: Removed.
  • platform/efl/fast/borders/border-image-scaled-expected.png: Removed.
  • platform/efl/fast/borders/border-image-scaled-expected.txt: Removed.
  • platform/efl/fast/borders/border-image-scaled-gradient-expected.png: Removed.
  • platform/efl/fast/borders/border-image-scrambled-expected.png: Removed.
  • platform/efl/fast/borders/border-image-scrambled-expected.txt: Removed.
  • platform/efl/fast/borders/border-image-side-reduction-expected.png: Removed.
  • platform/efl/fast/borders/border-image-side-reduction-expected.txt: Removed.
  • platform/efl/fast/borders/border-image-slice-constrained-expected.png: Removed.
  • platform/efl/fast/borders/border-image-slice-constrained-expected.txt: Removed.
  • platform/efl/fast/borders/border-image-slices-expected.png: Removed.
  • platform/efl/fast/borders/border-image-slices-expected.txt: Removed.
  • platform/efl/fast/borders/border-image-source-expected.png: Removed.
  • platform/efl/fast/borders/border-image-source-expected.txt: Removed.
  • platform/efl/fast/borders/border-mixed-alpha-expected.png: Removed.
  • platform/efl/fast/borders/border-radius-circle-expected.png: Removed.
  • platform/efl/fast/borders/border-radius-complex-inner-expected.png: Removed.
  • platform/efl/fast/borders/border-radius-constraints-expected.png: Removed.
  • platform/efl/fast/borders/border-radius-constraints-expected.txt: Removed.
  • platform/efl/fast/borders/border-radius-different-width-001-expected.png: Removed.
  • platform/efl/fast/borders/border-radius-different-width-001-expected.txt: Removed.
  • platform/efl/fast/borders/border-radius-groove-01-expected.png: Removed.
  • platform/efl/fast/borders/border-radius-groove-02-expected.png: Removed.
  • platform/efl/fast/borders/border-radius-groove-03-expected.png: Removed.
  • platform/efl/fast/borders/border-radius-huge-assert-expected.png: Removed.
  • platform/efl/fast/borders/border-radius-huge-assert-expected.txt: Removed.
  • platform/efl/fast/borders/border-radius-inline-flow-expected.png: Removed.
  • platform/efl/fast/borders/border-radius-inline-flow-expected.txt: Removed.
  • platform/efl/fast/borders/border-radius-inset-outset-expected.png: Removed.
  • platform/efl/fast/borders/border-radius-inset-outset-expected.txt: Removed.
  • platform/efl/fast/borders/border-radius-split-inline-expected.png: Removed.
  • platform/efl/fast/borders/border-radius-split-inline-expected.txt: Removed.
  • platform/efl/fast/borders/border-radius-valid-border-clipping-expected.png: Removed.
  • platform/efl/fast/borders/border-radius-wide-border-01-expected.png: Removed.
  • platform/efl/fast/borders/border-radius-wide-border-02-expected.png: Removed.
  • platform/efl/fast/borders/border-radius-wide-border-03-expected.png: Removed.
  • platform/efl/fast/borders/border-radius-wide-border-04-expected.png: Removed.
  • platform/efl/fast/borders/border-radius-wide-border-05-expected.png: Removed.
  • platform/efl/fast/borders/border-radius-with-box-shadow-expected.png: Removed.
  • platform/efl/fast/borders/border-shadow-large-radius-expected.png: Removed.
  • platform/efl/fast/borders/border-styles-split-expected.png: Removed.
  • platform/efl/fast/borders/border-styles-split-expected.txt: Removed.
  • platform/efl/fast/borders/borderRadiusAllStylesAllCorners-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusAllStylesAllCorners-expected.txt: Removed.
  • platform/efl/fast/borders/borderRadiusArcs01-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusArcs01-expected.txt: Removed.
  • platform/efl/fast/borders/borderRadiusDashed01-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusDashed01-expected.txt: Removed.
  • platform/efl/fast/borders/borderRadiusDashed02-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusDashed02-expected.txt: Removed.
  • platform/efl/fast/borders/borderRadiusDashed03-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusDashed03-expected.txt: Removed.
  • platform/efl/fast/borders/borderRadiusDashed04-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusDashed05-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusDashed06-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusDotted01-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusDotted01-expected.txt: Removed.
  • platform/efl/fast/borders/borderRadiusDotted02-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusDotted02-expected.txt: Removed.
  • platform/efl/fast/borders/borderRadiusDotted03-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusDotted03-expected.txt: Removed.
  • platform/efl/fast/borders/borderRadiusDotted04-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusDotted05-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusDotted06-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusDouble01-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusDouble01-expected.txt: Removed.
  • platform/efl/fast/borders/borderRadiusDouble02-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusDouble02-expected.txt: Removed.
  • platform/efl/fast/borders/borderRadiusDouble03-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusDouble03-expected.txt: Removed.
  • platform/efl/fast/borders/borderRadiusDouble04-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusDouble05-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusDouble06-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusDouble07-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusDouble08-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusDouble09-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusGroove01-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusGroove01-expected.txt: Removed.
  • platform/efl/fast/borders/borderRadiusGroove02-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusGroove02-expected.txt: Removed.
  • platform/efl/fast/borders/borderRadiusInset01-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusInset01-expected.txt: Removed.
  • platform/efl/fast/borders/borderRadiusInvalidColor-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusInvalidColor-expected.txt: Removed.
  • platform/efl/fast/borders/borderRadiusOutset01-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusOutset01-expected.txt: Removed.
  • platform/efl/fast/borders/borderRadiusRidge01-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusRidge01-expected.txt: Removed.
  • platform/efl/fast/borders/borderRadiusSolid01-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusSolid01-expected.txt: Removed.
  • platform/efl/fast/borders/borderRadiusSolid02-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusSolid02-expected.txt: Removed.
  • platform/efl/fast/borders/borderRadiusSolid03-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusSolid03-expected.txt: Removed.
  • platform/efl/fast/borders/borderRadiusSolid04-expected.png: Removed.
  • platform/efl/fast/borders/borderRadiusSolid04-expected.txt: Removed.
  • platform/efl/fast/borders/different-color-borders-expected.png: Removed.
  • platform/efl/fast/borders/different-color-borders-expected.txt: Removed.
  • platform/efl/fast/borders/fieldsetBorderRadius-expected.png: Removed.
  • platform/efl/fast/borders/inline-mask-overlay-image-expected.png: Removed.
  • platform/efl/fast/borders/inline-mask-overlay-image-expected.txt: Removed.
  • platform/efl/fast/borders/inline-mask-overlay-image-outset-expected.png: Removed.
  • platform/efl/fast/borders/inline-mask-overlay-image-outset-expected.txt: Removed.
  • platform/efl/fast/borders/inline-mask-overlay-image-outset-vertical-rl-expected.png: Removed.
  • platform/efl/fast/borders/inline-mask-overlay-image-outset-vertical-rl-expected.txt: Removed.
  • platform/efl/fast/borders/mixed-border-style2-expected.png: Removed.
  • platform/efl/fast/borders/mixed-border-style2-expected.txt: Removed.
  • platform/efl/fast/borders/mixed-border-styles-expected.png: Removed.
  • platform/efl/fast/borders/mixed-border-styles-expected.txt: Removed.
  • platform/efl/fast/borders/mixed-border-styles-radius-expected.png: Removed.
  • platform/efl/fast/borders/mixed-border-styles-radius-expected.txt: Removed.
  • platform/efl/fast/borders/mixed-border-styles-radius2-expected.png: Removed.
  • platform/efl/fast/borders/mixed-border-styles-radius2-expected.txt: Removed.
  • platform/efl/fast/borders/only-one-border-with-width-expected.png: Removed.
  • platform/efl/fast/borders/outline-alpha-block-expected.png: Removed.
  • platform/efl/fast/borders/outline-alpha-inline-expected.png: Removed.
  • platform/efl/fast/borders/outline-offset-min-assert-expected.png: Removed.
  • platform/efl/fast/borders/rtl-border-01-expected.png: Removed.
  • platform/efl/fast/borders/rtl-border-01-expected.txt: Removed.
  • platform/efl/fast/borders/rtl-border-02-expected.png: Removed.
  • platform/efl/fast/borders/rtl-border-02-expected.txt: Removed.
  • platform/efl/fast/borders/rtl-border-03-expected.png: Removed.
  • platform/efl/fast/borders/rtl-border-03-expected.txt: Removed.
  • platform/efl/fast/borders/rtl-border-04-expected.png: Removed.
  • platform/efl/fast/borders/rtl-border-04-expected.txt: Removed.
  • platform/efl/fast/borders/rtl-border-05-expected.png: Removed.
  • platform/efl/fast/borders/rtl-border-05-expected.txt: Removed.
  • platform/efl/fast/borders/scaled-border-image-expected.png: Removed.
  • platform/efl/fast/borders/scaled-border-image-expected.txt: Removed.
  • platform/efl/fast/borders/table-borders-expected.png: Removed.
  • platform/efl/fast/borders/table-borders-expected.txt: Removed.
  • platform/efl/fast/borders/webkit-border-radius-expected.png: Removed.
  • platform/efl/fast/box-shadow: Removed.
  • platform/efl/fast/box-shadow/basic-shadows-expected.png: Removed.
  • platform/efl/fast/box-shadow/basic-shadows-expected.txt: Removed.
  • platform/efl/fast/box-shadow/border-radius-big-expected.png: Removed.
  • platform/efl/fast/box-shadow/border-radius-big-expected.txt: Removed.
  • platform/efl/fast/box-shadow/box-shadow-clipped-slices-expected.png: Removed.
  • platform/efl/fast/box-shadow/box-shadow-radius-expected.txt: Removed.
  • platform/efl/fast/box-shadow/box-shadow-transformed-expected.png: Removed.
  • platform/efl/fast/box-shadow/box-shadow-transformed-expected.txt: Removed.
  • platform/efl/fast/box-shadow/hidpi-webkit-box-shadow-subpixel-position-expected.txt: Removed.
  • platform/efl/fast/box-shadow/inset-box-shadow-radius-expected.txt: Removed.
  • platform/efl/fast/box-shadow/inset-box-shadows-expected.png: Removed.
  • platform/efl/fast/box-shadow/inset-box-shadows-expected.txt: Removed.
  • platform/efl/fast/box-shadow/inset-expected.png: Removed.
  • platform/efl/fast/box-shadow/inset-expected.txt: Removed.
  • platform/efl/fast/box-shadow/inset-with-extraordinary-radii-and-border-expected.png: Removed.
  • platform/efl/fast/box-shadow/no-blur-multiple-offsets-expected.png: Removed.
  • platform/efl/fast/box-shadow/scaled-box-shadow-expected.png: Removed.
  • platform/efl/fast/box-shadow/scaled-box-shadow-expected.txt: Removed.
  • platform/efl/fast/box-shadow/spread-expected.png: Removed.
  • platform/efl/fast/box-shadow/spread-multiple-inset-expected.png: Removed.
  • platform/efl/fast/box-shadow/spread-multiple-normal-expected.png: Removed.
  • platform/efl/fast/box-shadow/transform-fringing-expected.png: Removed.
  • platform/efl/fast/box-shadow/transform-fringing-expected.txt: Removed.
  • platform/efl/fast/box-sizing: Removed.
  • platform/efl/fast/box-sizing/box-sizing-expected.png: Removed.
  • platform/efl/fast/box-sizing/box-sizing-expected.txt: Removed.
  • platform/efl/fast/box-sizing/panels-one-expected.png: Removed.
  • platform/efl/fast/box-sizing/panels-one-expected.txt: Removed.
  • platform/efl/fast/box-sizing/panels-two-expected.png: Removed.
  • platform/efl/fast/box-sizing/panels-two-expected.txt: Removed.
  • platform/efl/fast/box-sizing/percentage-height-expected.png: Removed.
  • platform/efl/fast/box-sizing/percentage-height-expected.txt: Removed.
  • platform/efl/fast/canvas: Removed.
  • platform/efl/fast/canvas/arc360-expected.png: Removed.
  • platform/efl/fast/canvas/canvas-as-image-expected.png: Removed.
  • platform/efl/fast/canvas/canvas-as-image-incremental-repaint-expected.png: Removed.
  • platform/efl/fast/canvas/canvas-before-css-expected.png: Removed.
  • platform/efl/fast/canvas/canvas-bg-expected.png: Removed.
  • platform/efl/fast/canvas/canvas-composite-expected.png: Removed.
  • platform/efl/fast/canvas/canvas-composite-fill-repaint-expected.png: Removed.
  • platform/efl/fast/canvas/canvas-composite-transformclip-expected.png: Removed.
  • platform/efl/fast/canvas/canvas-createPattern-video-loading-expected.txt: Removed.
  • platform/efl/fast/canvas/canvas-createPattern-video-modify-expected.txt: Removed.
  • platform/efl/fast/canvas/canvas-imageSmoothingEnabled-patterns-expected.png: Removed.
  • platform/efl/fast/canvas/canvas-imageSmoothingQuality-expected.txt: Removed.
  • platform/efl/fast/canvas/canvas-incremental-repaint-expected.png: Removed.
  • platform/efl/fast/canvas/canvas-resize-after-paint-without-layout-expected.png: Removed.
  • platform/efl/fast/canvas/canvas-resize-reset-expected.png: Removed.
  • platform/efl/fast/canvas/canvas-size-change-after-layout-expected.png: Removed.
  • platform/efl/fast/canvas/canvas-size-change-after-layout-expected.txt: Removed.
  • platform/efl/fast/canvas/canvas-text-alignment-expected.png: Removed.
  • platform/efl/fast/canvas/canvas-text-baseline-expected.png: Removed.
  • platform/efl/fast/canvas/canvas-toDataURL-case-insensitive-mimetype-expected.txt: Removed.
  • platform/efl/fast/canvas/canvas-transforms-during-path-expected.png: Removed.
  • platform/efl/fast/canvas/canvas-zoom-expected.png: Removed.
  • platform/efl/fast/canvas/canvas-zoom-expected.txt: Removed.
  • platform/efl/fast/canvas/canvasDrawingIntoSelf-expected.png: Removed.
  • platform/efl/fast/canvas/check-stale-putImageData-expected.png: Removed.
  • platform/efl/fast/canvas/drawImage-expected.png: Removed.
  • platform/efl/fast/canvas/drawImage-with-globalAlpha-expected.png: Removed.
  • platform/efl/fast/canvas/fallback-content-expected.txt: Removed.
  • platform/efl/fast/canvas/fill-stroke-clip-reset-path-expected.png: Removed.
  • platform/efl/fast/canvas/fillrect-gradient-zero-stops-expected.png: Removed.
  • platform/efl/fast/canvas/fillrect_gradient-expected.png: Removed.
  • platform/efl/fast/canvas/gradient-add-second-start-end-stop-expected.png: Removed.
  • platform/efl/fast/canvas/image-object-in-canvas-expected.png: Removed.
  • platform/efl/fast/canvas/image-pattern-rotate-expected.png: Removed.
  • platform/efl/fast/canvas/patternfill-repeat-expected.png: Removed.
  • platform/efl/fast/canvas/quadraticCurveTo-expected.png: Removed.
  • platform/efl/fast/canvas/setWidthResetAfterForcedRender-expected.png: Removed.
  • platform/efl/fast/canvas/shadow-offset-1-expected.png: Removed.
  • platform/efl/fast/canvas/shadow-offset-2-expected.png: Removed.
  • platform/efl/fast/canvas/shadow-offset-3-expected.png: Removed.
  • platform/efl/fast/canvas/shadow-offset-4-expected.png: Removed.
  • platform/efl/fast/canvas/shadow-offset-5-expected.png: Removed.
  • platform/efl/fast/canvas/shadow-offset-6-expected.png: Removed.
  • platform/efl/fast/canvas/shadow-offset-7-expected.png: Removed.
  • platform/efl/fast/canvas/toDataURL-alpha-expected.png: Removed.
  • platform/efl/fast/canvas/toDataURL-supportedTypes-expected.txt: Removed.
  • platform/efl/fast/canvas/webgl: Removed.
  • platform/efl/fast/canvas/webgl/css-webkit-canvas-expected.png: Removed.
  • platform/efl/fast/canvas/webgl/css-webkit-canvas-expected.txt: Removed.
  • platform/efl/fast/canvas/webgl/css-webkit-canvas-repaint-expected.png: Removed.
  • platform/efl/fast/canvas/webgl/css-webkit-canvas-repaint-expected.txt: Removed.
  • platform/efl/fast/canvas/zero-size-fill-rect-expected.png: Removed.
  • platform/efl/fast/clip: Removed.
  • platform/efl/fast/clip/001-expected.png: Removed.
  • platform/efl/fast/clip/001-expected.txt: Removed.
  • platform/efl/fast/clip/002-expected.png: Removed.
  • platform/efl/fast/clip/002-expected.txt: Removed.
  • platform/efl/fast/clip/003-expected.png: Removed.
  • platform/efl/fast/clip/003-expected.txt: Removed.
  • platform/efl/fast/clip/004-expected.png: Removed.
  • platform/efl/fast/clip/004-expected.txt: Removed.
  • platform/efl/fast/clip/005-expected.png: Removed.
  • platform/efl/fast/clip/005-expected.txt: Removed.
  • platform/efl/fast/clip/006-expected.png: Removed.
  • platform/efl/fast/clip/006-expected.txt: Removed.
  • platform/efl/fast/clip/007-expected.png: Removed.
  • platform/efl/fast/clip/007-expected.txt: Removed.
  • platform/efl/fast/clip/008-expected.png: Removed.
  • platform/efl/fast/clip/008-expected.txt: Removed.
  • platform/efl/fast/clip/009-expected.png: Removed.
  • platform/efl/fast/clip/009-expected.txt: Removed.
  • platform/efl/fast/clip/010-expected.png: Removed.
  • platform/efl/fast/clip/010-expected.txt: Removed.
  • platform/efl/fast/clip/011-expected.png: Removed.
  • platform/efl/fast/clip/011-expected.txt: Removed.
  • platform/efl/fast/clip/012-expected.png: Removed.
  • platform/efl/fast/clip/012-expected.txt: Removed.
  • platform/efl/fast/clip/013-expected.png: Removed.
  • platform/efl/fast/clip/013-expected.txt: Removed.
  • platform/efl/fast/clip/014-expected.png: Removed.
  • platform/efl/fast/clip/014-expected.txt: Removed.
  • platform/efl/fast/clip/015-expected.png: Removed.
  • platform/efl/fast/clip/015-expected.txt: Removed.
  • platform/efl/fast/clip/016-expected.png: Removed.
  • platform/efl/fast/clip/016-expected.txt: Removed.
  • platform/efl/fast/clip/nestedTransparencyClip-expected.png: Removed.
  • platform/efl/fast/clip/nestedTransparencyClip-expected.txt: Removed.
  • platform/efl/fast/clip/outline-overflowClip-expected.png: Removed.
  • platform/efl/fast/clip/outline-overflowClip-expected.txt: Removed.
  • platform/efl/fast/clip/overflow-border-radius-clip-expected.png: Removed.
  • platform/efl/fast/clip/overflow-border-radius-clip-expected.txt: Removed.
  • platform/efl/fast/clip/overflow-border-radius-combinations-expected.png: Removed.
  • platform/efl/fast/clip/overflow-border-radius-combinations-expected.txt: Removed.
  • platform/efl/fast/clip/overflow-border-radius-composited-expected.png: Removed.
  • platform/efl/fast/clip/overflow-border-radius-composited-expected.txt: Removed.
  • platform/efl/fast/clip/overflow-border-radius-fixed-position-expected.png: Removed.
  • platform/efl/fast/clip/overflow-border-radius-fixed-position-expected.txt: Removed.
  • platform/efl/fast/clip/overflow-border-radius-transformed-expected.png: Removed.
  • platform/efl/fast/clip/overflow-border-radius-transformed-expected.txt: Removed.
  • platform/efl/fast/compact: Removed.
  • platform/efl/fast/compact/001-expected.png: Removed.
  • platform/efl/fast/compact/001-expected.txt: Removed.
  • platform/efl/fast/compact/002-expected.png: Removed.
  • platform/efl/fast/compact/002-expected.txt: Removed.
  • platform/efl/fast/compact/003-expected.png: Removed.
  • platform/efl/fast/compact/003-expected.txt: Removed.
  • platform/efl/fast/css: Removed.
  • platform/efl/fast/css-generated-content: Removed.
  • platform/efl/fast/css-generated-content/001-expected.png: Removed.
  • platform/efl/fast/css-generated-content/001-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/002-expected.png: Removed.
  • platform/efl/fast/css-generated-content/002-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/003-expected.png: Removed.
  • platform/efl/fast/css-generated-content/003-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/004-expected.png: Removed.
  • platform/efl/fast/css-generated-content/004-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/005-expected.png: Removed.
  • platform/efl/fast/css-generated-content/005-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/007-expected.png: Removed.
  • platform/efl/fast/css-generated-content/007-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/008-expected.png: Removed.
  • platform/efl/fast/css-generated-content/008-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/009-expected.png: Removed.
  • platform/efl/fast/css-generated-content/009-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/010-expected.png: Removed.
  • platform/efl/fast/css-generated-content/010-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/011-expected.png: Removed.
  • platform/efl/fast/css-generated-content/011-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/012-expected.png: Removed.
  • platform/efl/fast/css-generated-content/012-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/013-expected.png: Removed.
  • platform/efl/fast/css-generated-content/013-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/014-expected.png: Removed.
  • platform/efl/fast/css-generated-content/014-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/015-expected.png: Removed.
  • platform/efl/fast/css-generated-content/015-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/016-expected.png: Removed.
  • platform/efl/fast/css-generated-content/016-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/after-duplicated-after-split-expected.png: Removed.
  • platform/efl/fast/css-generated-content/after-duplicated-after-split-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/after-order-expected.png: Removed.
  • platform/efl/fast/css-generated-content/after-order-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/before-with-first-letter-expected.png: Removed.
  • platform/efl/fast/css-generated-content/before-with-first-letter-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/beforeAfter-interdocument-expected.png: Removed.
  • platform/efl/fast/css-generated-content/beforeAfter-interdocument-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/details-summary-before-after-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/first-letter-in-nested-before-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/first-letter-in-nested-before-table-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/hover-style-change-expected.png: Removed.
  • platform/efl/fast/css-generated-content/hover-style-change-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/initial-letter-basic-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/initial-letter-border-padding-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/initial-letter-clearance-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/initial-letter-descender-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/initial-letter-raised-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/initial-letter-sunken-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/inline-display-types-expected.png: Removed.
  • platform/efl/fast/css-generated-content/inline-display-types-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/nested-tables-with-before-after-content-crash-expected.png: Removed.
  • platform/efl/fast/css-generated-content/nested-tables-with-before-after-content-crash-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/no-openclose-quote-expected.png: Removed.
  • platform/efl/fast/css-generated-content/no-openclose-quote-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/table-before-after-child-add-expected.png: Removed.
  • platform/efl/fast/css-generated-content/table-before-after-child-add-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/table-cell-before-after-child-add-expected.png: Removed.
  • platform/efl/fast/css-generated-content/table-cell-before-after-child-add-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/table-cell-before-content-expected.png: Removed.
  • platform/efl/fast/css-generated-content/table-cell-before-content-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/table-parts-before-and-after-expected.png: Removed.
  • platform/efl/fast/css-generated-content/table-parts-before-and-after-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/table-row-before-after-child-add-expected.png: Removed.
  • platform/efl/fast/css-generated-content/table-row-before-after-child-add-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/table-row-before-after-expected.png: Removed.
  • platform/efl/fast/css-generated-content/table-row-before-after-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/table-row-group-to-inline-expected.png: Removed.
  • platform/efl/fast/css-generated-content/table-row-group-to-inline-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/table-row-group-with-before-expected.png: Removed.
  • platform/efl/fast/css-generated-content/table-row-group-with-before-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/table-row-with-before-expected.png: Removed.
  • platform/efl/fast/css-generated-content/table-row-with-before-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/table-table-before-after-child-add-expected.png: Removed.
  • platform/efl/fast/css-generated-content/table-table-before-after-child-add-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/table-with-before-expected.png: Removed.
  • platform/efl/fast/css-generated-content/table-with-before-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/visibleContentHiddenParent-expected.png: Removed.
  • platform/efl/fast/css-generated-content/visibleContentHiddenParent-expected.txt: Removed.
  • platform/efl/fast/css-generated-content/wbr-with-before-content-expected.png: Removed.
  • platform/efl/fast/css-generated-content/wbr-with-before-content-expected.txt: Removed.
  • platform/efl/fast/css/001-expected.png: Removed.
  • platform/efl/fast/css/001-expected.txt: Removed.
  • platform/efl/fast/css/002-expected.png: Removed.
  • platform/efl/fast/css/002-expected.txt: Removed.
  • platform/efl/fast/css/003-expected.png: Removed.
  • platform/efl/fast/css/003-expected.txt: Removed.
  • platform/efl/fast/css/004-expected.png: Removed.
  • platform/efl/fast/css/004-expected.txt: Removed.
  • platform/efl/fast/css/005-expected.png: Removed.
  • platform/efl/fast/css/005-expected.txt: Removed.
  • platform/efl/fast/css/006-expected.png: Removed.
  • platform/efl/fast/css/007-expected.png: Removed.
  • platform/efl/fast/css/007-expected.txt: Removed.
  • platform/efl/fast/css/008-expected.png: Removed.
  • platform/efl/fast/css/008-expected.txt: Removed.
  • platform/efl/fast/css/ZeroOpacityLayers-expected.png: Removed.
  • platform/efl/fast/css/ZeroOpacityLayers-expected.txt: Removed.
  • platform/efl/fast/css/ZeroOpacityLayers2-expected.png: Removed.
  • platform/efl/fast/css/ZeroOpacityLayers2-expected.txt: Removed.
  • platform/efl/fast/css/absolute-child-with-percent-height-inside-relative-parent-expected.png: Removed.
  • platform/efl/fast/css/absolute-child-with-percent-height-inside-relative-parent-expected.txt: Removed.
  • platform/efl/fast/css/absolute-poition-in-rtl-parent-expected.png: Removed.
  • platform/efl/fast/css/absolute-poition-in-rtl-parent-expected.txt: Removed.
  • platform/efl/fast/css/acid2-expected.png: Removed.
  • platform/efl/fast/css/acid2-expected.txt: Removed.
  • platform/efl/fast/css/acid2-pixel-expected.png: Removed.
  • platform/efl/fast/css/acid2-pixel-expected.txt: Removed.
  • platform/efl/fast/css/attribute-selector-dynamic-expected.png: Removed.
  • platform/efl/fast/css/attribute-selector-dynamic-expected.txt: Removed.
  • platform/efl/fast/css/attribute-selector-empty-value-expected.png: Removed.
  • platform/efl/fast/css/attribute-selector-empty-value-expected.txt: Removed.
  • platform/efl/fast/css/background-clip-values-expected.png: Removed.
  • platform/efl/fast/css/background-image-with-baseurl-expected.png: Removed.
  • platform/efl/fast/css/background-shorthand-invalid-url-expected.png: Removed.
  • platform/efl/fast/css/background-shorthand-invalid-url-expected.txt: Removed.
  • platform/efl/fast/css/beforeSelectorOnCodeElement-expected.png: Removed.
  • platform/efl/fast/css/beforeSelectorOnCodeElement-expected.txt: Removed.
  • platform/efl/fast/css/begin-end-contain-selector-empty-value-expected.png: Removed.
  • platform/efl/fast/css/begin-end-contain-selector-empty-value-expected.txt: Removed.
  • platform/efl/fast/css/bidi-override-in-anonymous-block-expected.png: Removed.
  • platform/efl/fast/css/bidi-override-in-anonymous-block-expected.txt: Removed.
  • platform/efl/fast/css/bogus-color-span-expected.png: Removed.
  • platform/efl/fast/css/border-height-expected.png: Removed.
  • platform/efl/fast/css/border-height-expected.txt: Removed.
  • platform/efl/fast/css/border-radius-non-negative-expected.png: Removed.
  • platform/efl/fast/css/border-radius-outline-offset-expected.png: Removed.
  • platform/efl/fast/css/border-radius-outline-offset-expected.txt: Removed.
  • platform/efl/fast/css/border-solid-single-edge-antialias-expected.png: Removed.
  • platform/efl/fast/css/box-shadow-and-border-radius-expected.png: Removed.
  • platform/efl/fast/css/box-shadow-and-border-radius-expected.txt: Removed.
  • platform/efl/fast/css/caption-width-absolute-position-expected.png: Removed.
  • platform/efl/fast/css/caption-width-absolute-position-expected.txt: Removed.
  • platform/efl/fast/css/caption-width-absolute-position-offset-top-expected.png: Removed.
  • platform/efl/fast/css/caption-width-absolute-position-offset-top-expected.txt: Removed.
  • platform/efl/fast/css/caption-width-fixed-position-expected.png: Removed.
  • platform/efl/fast/css/caption-width-fixed-position-expected.txt: Removed.
  • platform/efl/fast/css/caption-width-fixed-position-offset-top-expected.png: Removed.
  • platform/efl/fast/css/caption-width-fixed-position-offset-top-expected.txt: Removed.
  • platform/efl/fast/css/caption-width-relative-position-expected.png: Removed.
  • platform/efl/fast/css/caption-width-relative-position-expected.txt: Removed.
  • platform/efl/fast/css/caption-width-relative-position-offset-top-expected.png: Removed.
  • platform/efl/fast/css/caption-width-relative-position-offset-top-expected.txt: Removed.
  • platform/efl/fast/css/child-style-can-override-visited-style-expected.png: Removed.
  • platform/efl/fast/css/child-style-can-override-visited-style-expected.txt: Removed.
  • platform/efl/fast/css/clip-text-in-scaled-div-expected.png: Removed.
  • platform/efl/fast/css/clip-text-in-scaled-div-expected.txt: Removed.
  • platform/efl/fast/css/clip-zooming-expected.png: Removed.
  • platform/efl/fast/css/clip-zooming-expected.txt: Removed.
  • platform/efl/fast/css/color-leakage-expected.png: Removed.
  • platform/efl/fast/css/color-quirk-expected.png: Removed.
  • platform/efl/fast/css/color-quirk-expected.txt: Removed.
  • platform/efl/fast/css/color-strict-expected.png: Removed.
  • platform/efl/fast/css/color-strict-expected.txt: Removed.
  • platform/efl/fast/css/compare-content-style-expected.png: Removed.
  • platform/efl/fast/css/compare-content-style-expected.txt: Removed.
  • platform/efl/fast/css/content-dynamic-expected.png: Removed.
  • platform/efl/fast/css/contentDiv-expected.png: Removed.
  • platform/efl/fast/css/contentDivWithChildren-expected.png: Removed.
  • platform/efl/fast/css/contentImage-expected.png: Removed.
  • platform/efl/fast/css/continuationCrash-expected.png: Removed.
  • platform/efl/fast/css/continuationCrash-expected.txt: Removed.
  • platform/efl/fast/css/counters: Removed.
  • platform/efl/fast/css/counters/counter-text-security-expected.png: Removed.
  • platform/efl/fast/css/counters/counter-text-security-expected.txt: Removed.
  • platform/efl/fast/css/counters/counter-text-transform-expected.png: Removed.
  • platform/efl/fast/css/counters/counter-text-transform-expected.txt: Removed.
  • platform/efl/fast/css/create_element_align-expected.png: Removed.
  • platform/efl/fast/css/create_element_align-expected.txt: Removed.
  • platform/efl/fast/css/css-imports-expected.png: Removed.
  • platform/efl/fast/css/css-imports-expected.txt: Removed.
  • platform/efl/fast/css/css1_forward_compatible_parsing-expected.png: Removed.
  • platform/efl/fast/css/css1_forward_compatible_parsing-expected.txt: Removed.
  • platform/efl/fast/css/css2-system-fonts-expected.txt: Removed.
  • platform/efl/fast/css/css3-modsel-22-expected.png: Removed.
  • platform/efl/fast/css/css3-modsel-22-expected.txt: Removed.
  • platform/efl/fast/css/css3-nth-child-expected.png: Removed.
  • platform/efl/fast/css/css3-nth-child-expected.txt: Removed.
  • platform/efl/fast/css/css3-space-in-nth-and-lang-expected.png: Removed.
  • platform/efl/fast/css/css3-space-in-nth-and-lang-expected.txt: Removed.
  • platform/efl/fast/css/disabled-author-styles-expected.png: Removed.
  • platform/efl/fast/css/disabled-author-styles-expected.txt: Removed.
  • platform/efl/fast/css/dynamic-sibling-selector-expected.png: Removed.
  • platform/efl/fast/css/dynamic-sibling-selector-expected.txt: Removed.
  • platform/efl/fast/css/empty-body-test-expected.png: Removed.
  • platform/efl/fast/css/empty-body-test-expected.txt: Removed.
  • platform/efl/fast/css/empty-generated-content-expected.png: Removed.
  • platform/efl/fast/css/empty-generated-content-expected.txt: Removed.
  • platform/efl/fast/css/empty-pseudo-class-expected.png: Removed.
  • platform/efl/fast/css/empty-pseudo-class-expected.txt: Removed.
  • platform/efl/fast/css/error-in-last-decl-expected.png: Removed.
  • platform/efl/fast/css/error-in-last-decl-expected.txt: Removed.
  • platform/efl/fast/css/ex-after-font-variant-expected.png: Removed.
  • platform/efl/fast/css/ex-after-font-variant-expected.txt: Removed.
  • platform/efl/fast/css/fieldset-display-row-expected.png: Removed.
  • platform/efl/fast/css/fieldset-display-row-expected.txt: Removed.
  • platform/efl/fast/css/find-next-layer-expected.png: Removed.
  • platform/efl/fast/css/find-next-layer-expected.txt: Removed.
  • platform/efl/fast/css/first-child-pseudo-class-expected.png: Removed.
  • platform/efl/fast/css/first-child-pseudo-class-expected.txt: Removed.
  • platform/efl/fast/css/first-letter-capitalized-expected.png: Removed.
  • platform/efl/fast/css/first-letter-capitalized-expected.txt: Removed.
  • platform/efl/fast/css/first-letter-detach-expected.png: Removed.
  • platform/efl/fast/css/first-letter-detach-expected.txt: Removed.
  • platform/efl/fast/css/first-letter-first-line-hover-expected.png: Removed.
  • platform/efl/fast/css/first-letter-first-line-hover-expected.txt: Removed.
  • platform/efl/fast/css/first-letter-float-after-float-expected.png: Removed.
  • platform/efl/fast/css/first-letter-float-after-float-expected.txt: Removed.
  • platform/efl/fast/css/first-letter-float-expected.png: Removed.
  • platform/efl/fast/css/first-letter-float-expected.txt: Removed.
  • platform/efl/fast/css/first-letter-hover-expected.png: Removed.
  • platform/efl/fast/css/first-letter-hover-expected.txt: Removed.
  • platform/efl/fast/css/first-letter-punctuation-expected.png: Removed.
  • platform/efl/fast/css/first-letter-punctuation-expected.txt: Removed.
  • platform/efl/fast/css/first-letter-recalculation-expected.png: Removed.
  • platform/efl/fast/css/first-letter-recalculation-expected.txt: Removed.
  • platform/efl/fast/css/first-letter-visibility-expected.png: Removed.
  • platform/efl/fast/css/first-letter-visibility-expected.txt: Removed.
  • platform/efl/fast/css/first-line-text-decoration-expected.png: Removed.
  • platform/efl/fast/css/first-line-text-decoration-expected.txt: Removed.
  • platform/efl/fast/css/first-line-text-decoration-inherited-from-parent-expected.png: Removed.
  • platform/efl/fast/css/first-line-text-decoration-inherited-from-parent-expected.txt: Removed.
  • platform/efl/fast/css/first-of-type-pseudo-class-expected.png: Removed.
  • platform/efl/fast/css/first-of-type-pseudo-class-expected.txt: Removed.
  • platform/efl/fast/css/focus-ring-detached-expected.png: Removed.
  • platform/efl/fast/css/focus-ring-detached-expected.txt: Removed.
  • platform/efl/fast/css/focus-ring-exists-for-search-field-expected.png: Removed.
  • platform/efl/fast/css/focus-ring-exists-for-search-field-expected.txt: Removed.
  • platform/efl/fast/css/focus-ring-multiline-expected.png: Removed.
  • platform/efl/fast/css/focus-ring-multiline-expected.txt: Removed.
  • platform/efl/fast/css/focus-ring-multiline-writingmode-vertical-expected.png: Removed.
  • platform/efl/fast/css/focus-ring-multiline-writingmode-vertical-expected.txt: Removed.
  • platform/efl/fast/css/focus-ring-outline-color-expected.png: Removed.
  • platform/efl/fast/css/focus-ring-outline-color-expected.txt: Removed.
  • platform/efl/fast/css/focus-ring-outline-offset-expected.png: Removed.
  • platform/efl/fast/css/focus-ring-outline-offset-expected.txt: Removed.
  • platform/efl/fast/css/focus-ring-outline-width-expected.png: Removed.
  • platform/efl/fast/css/focus-ring-outline-width-expected.txt: Removed.
  • platform/efl/fast/css/font-face-default-font-expected.png: Removed.
  • platform/efl/fast/css/font-face-implicit-local-font-expected.png: Removed.
  • platform/efl/fast/css/font-face-implicit-local-font-expected.txt: Removed.
  • platform/efl/fast/css/font-face-in-media-rule-expected.png: Removed.
  • platform/efl/fast/css/font-face-locally-installed-expected.png: Removed.
  • platform/efl/fast/css/font-face-locally-installed-expected.txt: Removed.
  • platform/efl/fast/css/font-face-multiple-faces-expected.png: Removed.
  • platform/efl/fast/css/font-face-multiple-faces-expected.txt: Removed.
  • platform/efl/fast/css/font-face-multiple-remote-sources-expected.png: Removed.
  • platform/efl/fast/css/font-face-opentype-expected.png: Removed.
  • platform/efl/fast/css/font-face-opentype-expected.txt: Removed.
  • platform/efl/fast/css/font-face-remote-expected.png: Removed.
  • platform/efl/fast/css/font-face-synthetic-bold-italic-expected.png: Removed.
  • platform/efl/fast/css/font-face-synthetic-bold-italic-expected.txt: Removed.
  • platform/efl/fast/css/font-face-unicode-range-expected.png: Removed.
  • platform/efl/fast/css/font-face-unicode-range-expected.txt: Removed.
  • platform/efl/fast/css/font-face-weight-matching-expected.png: Removed.
  • platform/efl/fast/css/font-face-weight-matching-expected.txt: Removed.
  • platform/efl/fast/css/font-face-woff-expected.png: Removed.
  • platform/efl/fast/css/font-face-woff-expected.txt: Removed.
  • platform/efl/fast/css/font-family-pictograph-expected.txt: Removed.
  • platform/efl/fast/css/font-shorthand-weight-only-expected.png: Removed.
  • platform/efl/fast/css/font-shorthand-weight-only-expected.txt: Removed.
  • platform/efl/fast/css/font-size-negative-expected.png: Removed.
  • platform/efl/fast/css/font-smoothing-expected.png: Removed.
  • platform/efl/fast/css/font-smoothing-expected.txt: Removed.
  • platform/efl/fast/css/font-weight-1-expected.png: Removed.
  • platform/efl/fast/css/font-weight-1-expected.txt: Removed.
  • platform/efl/fast/css/font_property_normal-expected.png: Removed.
  • platform/efl/fast/css/font_property_normal-expected.txt: Removed.
  • platform/efl/fast/css/h1-in-section-elements-expected.png: Removed.
  • platform/efl/fast/css/h1-in-section-elements-expected.txt: Removed.
  • platform/efl/fast/css/hover-subselector-expected.png: Removed.
  • platform/efl/fast/css/hover-subselector-expected.txt: Removed.
  • platform/efl/fast/css/hsl-color-expected.png: Removed.
  • platform/efl/fast/css/hsl-color-expected.txt: Removed.
  • platform/efl/fast/css/hsla-color-expected.png: Removed.
  • platform/efl/fast/css/hsla-color-expected.txt: Removed.
  • platform/efl/fast/css/ignore-text-zoom-expected.png: Removed.
  • platform/efl/fast/css/image-rendering-expected.txt: Removed.
  • platform/efl/fast/css/imageTileOpacity-expected.png: Removed.
  • platform/efl/fast/css/import-rule-regression-11590-expected.png: Removed.
  • platform/efl/fast/css/import-rule-regression-11590-expected.txt: Removed.
  • platform/efl/fast/css/import_with_baseurl-expected.png: Removed.
  • platform/efl/fast/css/inline-element-line-break-expected.png: Removed.
  • platform/efl/fast/css/inline-element-line-break-expected.txt: Removed.
  • platform/efl/fast/css/inline-properties-important-expected.png: Removed.
  • platform/efl/fast/css/inline-properties-important-expected.txt: Removed.
  • platform/efl/fast/css/input-search-padding-expected.png: Removed.
  • platform/efl/fast/css/input-search-padding-expected.txt: Removed.
  • platform/efl/fast/css/invalid-percentage-property-expected.png: Removed.
  • platform/efl/fast/css/invalid-percentage-property-expected.txt: Removed.
  • platform/efl/fast/css/invalid-pseudo-classes-expected.png: Removed.
  • platform/efl/fast/css/invalid-pseudo-classes-expected.txt: Removed.
  • platform/efl/fast/css/invalidation-errors-2-expected.png: Removed.
  • platform/efl/fast/css/invalidation-errors-2-expected.txt: Removed.
  • platform/efl/fast/css/invalidation-errors-3-expected.png: Removed.
  • platform/efl/fast/css/invalidation-errors-3-expected.txt: Removed.
  • platform/efl/fast/css/invalidation-errors-expected.png: Removed.
  • platform/efl/fast/css/invalidation-errors-expected.txt: Removed.
  • platform/efl/fast/css/last-child-pseudo-class-expected.png: Removed.
  • platform/efl/fast/css/last-child-pseudo-class-expected.txt: Removed.
  • platform/efl/fast/css/last-child-style-sharing-expected.png: Removed.
  • platform/efl/fast/css/last-of-type-pseudo-class-expected.png: Removed.
  • platform/efl/fast/css/last-of-type-pseudo-class-expected.txt: Removed.
  • platform/efl/fast/css/layerZOrderCrash-expected.png: Removed.
  • platform/efl/fast/css/layerZOrderCrash-expected.txt: Removed.
  • platform/efl/fast/css/line-after-floating-div-expected.png: Removed.
  • platform/efl/fast/css/line-after-floating-div-expected.txt: Removed.
  • platform/efl/fast/css/line-height-determined-by-primary-font-expected.png: Removed.
  • platform/efl/fast/css/line-height-expected.png: Removed.
  • platform/efl/fast/css/line-height-expected.txt: Removed.
  • platform/efl/fast/css/line-height-font-order-expected.png: Removed.
  • platform/efl/fast/css/line-height-negative-expected.png: Removed.
  • platform/efl/fast/css/line-height-overflow-expected.png: Removed.
  • platform/efl/fast/css/line-height-overflow-expected.txt: Removed.
  • platform/efl/fast/css/linear-gradient-currentcolor-expected.png: Removed.
  • platform/efl/fast/css/link-outside-head-expected.png: Removed.
  • platform/efl/fast/css/link-outside-head-expected.txt: Removed.
  • platform/efl/fast/css/list-outline-expected.png: Removed.
  • platform/efl/fast/css/list-outline-expected.txt: Removed.
  • platform/efl/fast/css/live-cssrules-expected.png: Removed.
  • platform/efl/fast/css/live-cssrules-expected.txt: Removed.
  • platform/efl/fast/css/margin-bottom-form-element-quirk-expected.png: Removed.
  • platform/efl/fast/css/margin-bottom-form-element-quirk-expected.txt: Removed.
  • platform/efl/fast/css/margin-bottom-form-element-strict-expected.png: Removed.
  • platform/efl/fast/css/margin-bottom-form-element-strict-expected.txt: Removed.
  • platform/efl/fast/css/margin-top-bottom-dynamic-expected.png: Removed.
  • platform/efl/fast/css/margin-top-bottom-dynamic-expected.txt: Removed.
  • platform/efl/fast/css/max-height-none-expected.png: Removed.
  • platform/efl/fast/css/min-width-with-spanned-cell-expected.txt: Removed.
  • platform/efl/fast/css/min-width-with-spanned-cell-fixed-expected.png: Removed.
  • platform/efl/fast/css/min-width-with-spanned-cell-fixed-expected.txt: Removed.
  • platform/efl/fast/css/named-images-expected.txt: Removed.
  • platform/efl/fast/css/namespaces: Removed.
  • platform/efl/fast/css/namespaces/001-expected.png: Removed.
  • platform/efl/fast/css/namespaces/001-expected.txt: Removed.
  • platform/efl/fast/css/namespaces/002-expected.png: Removed.
  • platform/efl/fast/css/namespaces/002-expected.txt: Removed.
  • platform/efl/fast/css/namespaces/003-expected.png: Removed.
  • platform/efl/fast/css/namespaces/003-expected.txt: Removed.
  • platform/efl/fast/css/namespaces/004-expected.png: Removed.
  • platform/efl/fast/css/namespaces/004-expected.txt: Removed.
  • platform/efl/fast/css/namespaces/005-expected.png: Removed.
  • platform/efl/fast/css/namespaces/005-expected.txt: Removed.
  • platform/efl/fast/css/namespaces/006-expected.png: Removed.
  • platform/efl/fast/css/namespaces/006-expected.txt: Removed.
  • platform/efl/fast/css/namespaces/007-expected.png: Removed.
  • platform/efl/fast/css/namespaces/007-expected.txt: Removed.
  • platform/efl/fast/css/namespaces/namespaces-comments-expected.png: Removed.
  • platform/efl/fast/css/namespaces/namespaces-comments-expected.txt: Removed.
  • platform/efl/fast/css/namespaces/namespaces-empty-expected.png: Removed.
  • platform/efl/fast/css/namespaces/namespaces-empty-expected.txt: Removed.
  • platform/efl/fast/css/namespaces/namespaces-escapes-expected.png: Removed.
  • platform/efl/fast/css/namespaces/namespaces-escapes-expected.txt: Removed.
  • platform/efl/fast/css/namespaces/namespaces-invalid-at-expected.png: Removed.
  • platform/efl/fast/css/namespaces/namespaces-invalid-at-expected.txt: Removed.
  • platform/efl/fast/css/negative-leading-expected.png: Removed.
  • platform/efl/fast/css/negative-leading-expected.txt: Removed.
  • platform/efl/fast/css/negative-nth-child-expected.png: Removed.
  • platform/efl/fast/css/negative-nth-child-expected.txt: Removed.
  • platform/efl/fast/css/nested-floating-relative-position-percentages-expected.png: Removed.
  • platform/efl/fast/css/nested-floating-relative-position-percentages-expected.txt: Removed.
  • platform/efl/fast/css/nested-layers-with-hover-expected.png: Removed.
  • platform/efl/fast/css/nested-rounded-corners-expected.png: Removed.
  • platform/efl/fast/css/non-empty-span-expected.png: Removed.
  • platform/efl/fast/css/non-empty-span-expected.txt: Removed.
  • platform/efl/fast/css/non-standard-checkbox-size-expected.png: Removed.
  • platform/efl/fast/css/non-standard-checkbox-size-expected.txt: Removed.
  • platform/efl/fast/css/nth-child-dynamic-expected.png: Removed.
  • platform/efl/fast/css/nth-child-dynamic-expected.txt: Removed.
  • platform/efl/fast/css/only-child-pseudo-class-expected.png: Removed.
  • platform/efl/fast/css/only-child-pseudo-class-expected.txt: Removed.
  • platform/efl/fast/css/only-of-type-pseudo-class-expected.png: Removed.
  • platform/efl/fast/css/only-of-type-pseudo-class-expected.txt: Removed.
  • platform/efl/fast/css/outline-auto-empty-rects-expected.png: Removed.
  • platform/efl/fast/css/outline-auto-empty-rects-expected.txt: Removed.
  • platform/efl/fast/css/outline-auto-location-expected.png: Removed.
  • platform/efl/fast/css/outline-auto-location-expected.txt: Removed.
  • platform/efl/fast/css/outline-narrowLine-expected.png: Removed.
  • platform/efl/fast/css/outline-narrowLine-expected.txt: Removed.
  • platform/efl/fast/css/pendingStylesheetFontSize-expected.png: Removed.
  • platform/efl/fast/css/pendingStylesheetFontSize-expected.txt: Removed.
  • platform/efl/fast/css/percent-top-relative-container-height-unspecified-expected.png: Removed.
  • platform/efl/fast/css/percent-top-relative-container-height-unspecified-expected.txt: Removed.
  • platform/efl/fast/css/percent-top-value-with-relative-position-expected.png: Removed.
  • platform/efl/fast/css/percent-top-value-with-relative-position-expected.txt: Removed.
  • platform/efl/fast/css/percentage-non-integer-expected.png: Removed.
  • platform/efl/fast/css/percentage-non-integer-expected.txt: Removed.
  • platform/efl/fast/css/position-negative-top-margin-expected.png: Removed.
  • platform/efl/fast/css/position-negative-top-margin-expected.txt: Removed.
  • platform/efl/fast/css/preserve-user-specified-zoom-level-on-reload-expected.png: Removed.
  • platform/efl/fast/css/preserve-user-specified-zoom-level-on-reload-expected.txt: Removed.
  • platform/efl/fast/css/pseudo-element-line-break-expected.png: Removed.
  • platform/efl/fast/css/pseudo-element-line-break-expected.txt: Removed.
  • platform/efl/fast/css/pseudo-first-line-border-width-expected.png: Removed.
  • platform/efl/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.png: Removed.
  • platform/efl/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.txt: Removed.
  • platform/efl/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.png: Removed.
  • platform/efl/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.txt: Removed.
  • platform/efl/fast/css/relative-positioned-block-nested-with-inline-parent-expected.png: Removed.
  • platform/efl/fast/css/relative-positioned-block-nested-with-inline-parent-expected.txt: Removed.
  • platform/efl/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.png: Removed.
  • platform/efl/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.txt: Removed.
  • platform/efl/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.png: Removed.
  • platform/efl/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.txt: Removed.
  • platform/efl/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.png: Removed.
  • platform/efl/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.txt: Removed.
  • platform/efl/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.png: Removed.
  • platform/efl/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.txt: Removed.
  • platform/efl/fast/css/relative-positioned-block-with-inline-ancestor-expected.png: Removed.
  • platform/efl/fast/css/relative-positioned-block-with-inline-ancestor-expected.txt: Removed.
  • platform/efl/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.png: Removed.
  • platform/efl/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.txt: Removed.
  • platform/efl/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.png: Removed.
  • platform/efl/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.txt: Removed.
  • platform/efl/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.png: Removed.
  • platform/efl/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.txt: Removed.
  • platform/efl/fast/css/rem-dynamic-scaling-expected.png: Removed.
  • platform/efl/fast/css/rem-dynamic-scaling-expected.txt: Removed.
  • platform/efl/fast/css/rem-units-on-root-expected.png: Removed.
  • platform/efl/fast/css/rem-units-on-root-expected.txt: Removed.
  • platform/efl/fast/css/resize-corner-tracking-expected.png: Removed.
  • platform/efl/fast/css/resize-corner-tracking-expected.txt: Removed.
  • platform/efl/fast/css/resize-corner-tracking-transformed-expected.png: Removed.
  • platform/efl/fast/css/resize-corner-tracking-transformed-expected.txt: Removed.
  • platform/efl/fast/css/resize-corner-tracking-transformed-iframe-expected.txt: Removed.
  • platform/efl/fast/css/rgb-float-expected.png: Removed.
  • platform/efl/fast/css/rgb-float-expected.txt: Removed.
  • platform/efl/fast/css/rtl-ordering-expected.png: Removed.
  • platform/efl/fast/css/rtl-ordering-expected.txt: Removed.
  • platform/efl/fast/css/rtl-to-viewport-expected.png: Removed.
  • platform/efl/fast/css/rtl-to-viewport-expected.txt: Removed.
  • platform/efl/fast/css/selector-set-attribute-expected.png: Removed.
  • platform/efl/fast/css/selector-set-attribute-expected.txt: Removed.
  • platform/efl/fast/css/shadow-multiple-expected.png: Removed.
  • platform/efl/fast/css/shadow-multiple-expected.txt: Removed.
  • platform/efl/fast/css/simple-selector-chain-parsing-expected.png: Removed.
  • platform/efl/fast/css/simple-selector-chain-parsing-expected.txt: Removed.
  • platform/efl/fast/css/square-button-appearance-expected.png: Removed.
  • platform/efl/fast/css/style-outside-head-expected.png: Removed.
  • platform/efl/fast/css/style-outside-head-expected.txt: Removed.
  • platform/efl/fast/css/style-parsed-outside-head-expected.png: Removed.
  • platform/efl/fast/css/style-parsed-outside-head-expected.txt: Removed.
  • platform/efl/fast/css/table-text-align-quirk-expected.png: Removed.
  • platform/efl/fast/css/table-text-align-quirk-expected.txt: Removed.
  • platform/efl/fast/css/table-text-align-strict-expected.png: Removed.
  • platform/efl/fast/css/table-text-align-strict-expected.txt: Removed.
  • platform/efl/fast/css/target-fragment-match-expected.png: Removed.
  • platform/efl/fast/css/target-fragment-match-expected.txt: Removed.
  • platform/efl/fast/css/text-align-expected.png: Removed.
  • platform/efl/fast/css/text-align-expected.txt: Removed.
  • platform/efl/fast/css/text-input-with-webkit-border-radius-expected.png: Removed.
  • platform/efl/fast/css/text-input-with-webkit-border-radius-expected.txt: Removed.
  • platform/efl/fast/css/text-overflow-ellipsis-bidi-expected.png: Removed.
  • platform/efl/fast/css/text-overflow-ellipsis-bidi-expected.txt: Removed.
  • platform/efl/fast/css/text-overflow-ellipsis-expected.png: Removed.
  • platform/efl/fast/css/text-overflow-ellipsis-expected.txt: Removed.
  • platform/efl/fast/css/text-overflow-ellipsis-strict-expected.png: Removed.
  • platform/efl/fast/css/text-overflow-ellipsis-strict-expected.txt: Removed.
  • platform/efl/fast/css/text-overflow-ellipsis-text-align-center-expected.png: Removed.
  • platform/efl/fast/css/text-overflow-ellipsis-text-align-center-expected.txt: Removed.
  • platform/efl/fast/css/text-overflow-ellipsis-text-align-justify-expected.png: Removed.
  • platform/efl/fast/css/text-overflow-ellipsis-text-align-justify-expected.txt: Removed.
  • platform/efl/fast/css/text-overflow-ellipsis-text-align-left-expected.png: Removed.
  • platform/efl/fast/css/text-overflow-ellipsis-text-align-left-expected.txt: Removed.
  • platform/efl/fast/css/text-overflow-ellipsis-text-align-right-expected.png: Removed.
  • platform/efl/fast/css/text-overflow-ellipsis-text-align-right-expected.txt: Removed.
  • platform/efl/fast/css/text-overflow-input-expected.png: Removed.
  • platform/efl/fast/css/text-overflow-input-expected.txt: Removed.
  • platform/efl/fast/css/text-rendering-expected.png: Removed.
  • platform/efl/fast/css/text-rendering-expected.txt: Removed.
  • platform/efl/fast/css/text-security-expected.png: Removed.
  • platform/efl/fast/css/text-security-expected.txt: Removed.
  • platform/efl/fast/css/text-transform-select-expected.png: Removed.
  • platform/efl/fast/css/text-transform-select-expected.txt: Removed.
  • platform/efl/fast/css/textCapitalizeEdgeCases-expected.png: Removed.
  • platform/efl/fast/css/textCapitalizeEdgeCases-expected.txt: Removed.
  • platform/efl/fast/css/transform-default-parameter-expected.png: Removed.
  • platform/efl/fast/css/transform-default-parameter-expected.txt: Removed.
  • platform/efl/fast/css/transformed-mask-expected.png: Removed.
  • platform/efl/fast/css/transformed-mask-expected.txt: Removed.
  • platform/efl/fast/css/transition-color-unspecified-expected.png: Removed.
  • platform/efl/fast/css/universal-hover-quirk-expected.png: Removed.
  • platform/efl/fast/css/universal-hover-quirk-expected.txt: Removed.
  • platform/efl/fast/css/value-list-out-of-bounds-crash-expected.png: Removed.
  • platform/efl/fast/css/value-list-out-of-bounds-crash-expected.txt: Removed.
  • platform/efl/fast/css/vertical-align-lengths-expected.png: Removed.
  • platform/efl/fast/css/vertical-text-overflow-ellipsis-text-align-center-expected.png: Removed.
  • platform/efl/fast/css/vertical-text-overflow-ellipsis-text-align-center-expected.txt: Removed.
  • platform/efl/fast/css/vertical-text-overflow-ellipsis-text-align-justify-expected.png: Removed.
  • platform/efl/fast/css/vertical-text-overflow-ellipsis-text-align-justify-expected.txt: Removed.
  • platform/efl/fast/css/vertical-text-overflow-ellipsis-text-align-left-expected.png: Removed.
  • platform/efl/fast/css/vertical-text-overflow-ellipsis-text-align-left-expected.txt: Removed.
  • platform/efl/fast/css/vertical-text-overflow-ellipsis-text-align-right-expected.png: Removed.
  • platform/efl/fast/css/vertical-text-overflow-ellipsis-text-align-right-expected.txt: Removed.
  • platform/efl/fast/css/viewport-units-dynamic-expected.txt: Removed.
  • platform/efl/fast/css/visibility-hit-test-expected.png: Removed.
  • platform/efl/fast/css/word-space-extra-expected.png: Removed.
  • platform/efl/fast/css/word-space-extra-expected.txt: Removed.
  • platform/efl/fast/css/zoom-font-size-expected.png: Removed.
  • platform/efl/fast/css/zoom-font-size-expected.txt: Removed.
  • platform/efl/fast/css3-text: Removed.
  • platform/efl/fast/css3-text/css3-text-decoration: Removed.
  • platform/efl/fast/css3-text/css3-text-decoration/repaint: Removed.
  • platform/efl/fast/css3-text/css3-text-decoration/repaint/repaint-text-decoration-line-expected.png: Removed.
  • platform/efl/fast/css3-text/css3-text-decoration/repaint/repaint-text-decoration-style-expected.png: Removed.
  • platform/efl/fast/css3-text/css3-text-decoration/text-decoration-line-scaled-expected.png: Removed.
  • platform/efl/fast/css3-text/css3-text-decoration/text-decoration-line-scaled-expected.txt: Removed.
  • platform/efl/fast/css3-text/css3-text-decoration/text-decoration-style-expected.png: Removed.
  • platform/efl/fast/doctypes: Removed.
  • platform/efl/fast/doctypes/001-expected.png: Removed.
  • platform/efl/fast/doctypes/001-expected.txt: Removed.
  • platform/efl/fast/doctypes/002-expected.png: Removed.
  • platform/efl/fast/doctypes/002-expected.txt: Removed.
  • platform/efl/fast/doctypes/003-expected.png: Removed.
  • platform/efl/fast/doctypes/003-expected.txt: Removed.
  • platform/efl/fast/doctypes/004-expected.png: Removed.
  • platform/efl/fast/doctypes/004-expected.txt: Removed.
  • platform/efl/fast/dom: Removed.
  • platform/efl/fast/dom/34176-expected.png: Removed.
  • platform/efl/fast/dom/34176-expected.txt: Removed.
  • platform/efl/fast/dom/52776-expected.png: Removed.
  • platform/efl/fast/dom/52776-expected.txt: Removed.
  • platform/efl/fast/dom/Document: Removed.
  • platform/efl/fast/dom/Document/CaretRangeFromPoint: Removed.
  • platform/efl/fast/dom/Document/CaretRangeFromPoint/hittest-relative-to-viewport-expected.txt: Removed.
  • platform/efl/fast/dom/Element: Removed.
  • platform/efl/fast/dom/Element/class-attribute-whitespace-expected.png: Removed.
  • platform/efl/fast/dom/Element/class-attribute-whitespace-expected.txt: Removed.
  • platform/efl/fast/dom/Element/getClientRects-expected.txt: Removed.
  • platform/efl/fast/dom/Element/null-offset-parent-expected.png: Removed.
  • platform/efl/fast/dom/Element/null-offset-parent-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLDocument: Removed.
  • platform/efl/fast/dom/HTMLDocument/frameless-location-bugzilla10837-expected.png: Removed.
  • platform/efl/fast/dom/HTMLDocument/frameless-location-bugzilla10837-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLElement: Removed.
  • platform/efl/fast/dom/HTMLElement/bdo-expected.png: Removed.
  • platform/efl/fast/dom/HTMLElement/bdo-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLHeadElement: Removed.
  • platform/efl/fast/dom/HTMLHeadElement/head-link-style-href-check-expected.png: Removed.
  • platform/efl/fast/dom/HTMLHeadElement/head-link-style-href-check-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLHeadElement/textInHead1-expected.png: Removed.
  • platform/efl/fast/dom/HTMLHeadElement/textInHead2-expected.png: Removed.
  • platform/efl/fast/dom/HTMLHeadElement/textInHead3-expected.png: Removed.
  • platform/efl/fast/dom/HTMLHeadElement/textInHead4-expected.png: Removed.
  • platform/efl/fast/dom/HTMLHeadElement/textInHead5-expected.png: Removed.
  • platform/efl/fast/dom/HTMLImageElement: Removed.
  • platform/efl/fast/dom/HTMLImageElement/image-alt-text-expected.png: Removed.
  • platform/efl/fast/dom/HTMLImageElement/image-alt-text-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLInputElement: Removed.
  • platform/efl/fast/dom/HTMLInputElement/input-image-alt-text-expected.png: Removed.
  • platform/efl/fast/dom/HTMLInputElement/input-image-alt-text-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLInputElement/input-slider-update-expected.png: Removed.
  • platform/efl/fast/dom/HTMLInputElement/input-slider-update-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLLinkElement: Removed.
  • platform/efl/fast/dom/HTMLLinkElement/pending-stylesheet-count-expected.png: Removed.
  • platform/efl/fast/dom/HTMLLinkElement/pending-stylesheet-count-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLLinkElement/prefetch-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLLinkElement/subresource-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLMeterElement: Removed.
  • platform/efl/fast/dom/HTMLMeterElement/meter-appearances-capacity-expected.png: Removed.
  • platform/efl/fast/dom/HTMLMeterElement/meter-appearances-capacity-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLMeterElement/meter-appearances-rating-relevancy-expected.png: Removed.
  • platform/efl/fast/dom/HTMLMeterElement/meter-appearances-rating-relevancy-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLMeterElement/meter-boundary-values-expected.png: Removed.
  • platform/efl/fast/dom/HTMLMeterElement/meter-boundary-values-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLMeterElement/meter-element-expected.png: Removed.
  • platform/efl/fast/dom/HTMLMeterElement/meter-element-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLMeterElement/meter-optimums-expected.png: Removed.
  • platform/efl/fast/dom/HTMLMeterElement/meter-optimums-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLMeterElement/meter-styles-changing-pseudo-expected.png: Removed.
  • platform/efl/fast/dom/HTMLMeterElement/meter-styles-changing-pseudo-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLMeterElement/meter-styles-expected.png: Removed.
  • platform/efl/fast/dom/HTMLMeterElement/meter-styles-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLObjectElement: Removed.
  • platform/efl/fast/dom/HTMLObjectElement/vspace-hspace-as-number-expected.png: Removed.
  • platform/efl/fast/dom/HTMLObjectElement/vspace-hspace-as-number-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLProgressElement: Removed.
  • platform/efl/fast/dom/HTMLProgressElement/indeterminate-progress-001-expected.png: Removed.
  • platform/efl/fast/dom/HTMLProgressElement/indeterminate-progress-001-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLProgressElement/native-progress-bar-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLProgressElement/progress-bar-value-pseudo-element-expected.png: Removed.
  • platform/efl/fast/dom/HTMLProgressElement/progress-bar-value-pseudo-element-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLProgressElement/progress-element-expected.png: Removed.
  • platform/efl/fast/dom/HTMLProgressElement/progress-element-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLStyleElement: Removed.
  • platform/efl/fast/dom/HTMLStyleElement/insert-parser-generated-expected.png: Removed.
  • platform/efl/fast/dom/HTMLTableColElement: Removed.
  • platform/efl/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.png: Removed.
  • platform/efl/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLTableElement: Removed.
  • platform/efl/fast/dom/HTMLTableElement/colSpan-expected.png: Removed.
  • platform/efl/fast/dom/HTMLTableElement/colSpan-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLTableElement/createCaption-expected.png: Removed.
  • platform/efl/fast/dom/HTMLTableElement/createCaption-expected.txt: Removed.
  • platform/efl/fast/dom/HTMLTextAreaElement: Removed.
  • platform/efl/fast/dom/HTMLTextAreaElement/reset-textarea-expected.png: Removed.
  • platform/efl/fast/dom/HTMLTextAreaElement/reset-textarea-expected.txt: Removed.
  • platform/efl/fast/dom/NavigatorContentUtils: Removed.
  • platform/efl/fast/dom/NavigatorContentUtils/register-protocol-handler-expected.txt: Removed.
  • platform/efl/fast/dom/NavigatorContentUtils/unregister-protocol-handler-expected.txt: Removed.
  • platform/efl/fast/dom/Orientation: Removed.
  • platform/efl/fast/dom/Orientation/create-event-orientationchange-expected.txt: Removed.
  • platform/efl/fast/dom/Range: Removed.
  • platform/efl/fast/dom/Range/create-contextual-fragment-expected.png: Removed.
  • platform/efl/fast/dom/Range/create-contextual-fragment-expected.txt: Removed.
  • platform/efl/fast/dom/Range/getClientRects-expected.txt: Removed.
  • platform/efl/fast/dom/Range/surroundContents-1-expected.png: Removed.
  • platform/efl/fast/dom/Window: Removed.
  • platform/efl/fast/dom/Window/btoa-pnglet-expected.png: Removed.
  • platform/efl/fast/dom/Window/btoa-pnglet-expected.txt: Removed.
  • platform/efl/fast/dom/Window/open-existing-pop-up-blocking-expected.png: Removed.
  • platform/efl/fast/dom/Window/open-existing-pop-up-blocking-expected.txt: Removed.
  • platform/efl/fast/dom/Window/webkitConvertPoint-expected.txt: Removed.
  • platform/efl/fast/dom/anchor-text-expected.png: Removed.
  • platform/efl/fast/dom/attr_dead_doc-expected.png: Removed.
  • platform/efl/fast/dom/blur-contenteditable-expected.png: Removed.
  • platform/efl/fast/dom/blur-contenteditable-expected.txt: Removed.
  • platform/efl/fast/dom/children-nodes-expected.png: Removed.
  • platform/efl/fast/dom/children-nodes-expected.txt: Removed.
  • platform/efl/fast/dom/clone-contents-0-end-offset-expected.png: Removed.
  • platform/efl/fast/dom/clone-contents-0-end-offset-expected.txt: Removed.
  • platform/efl/fast/dom/clone-node-dynamic-style-expected.png: Removed.
  • platform/efl/fast/dom/clone-node-dynamic-style-expected.txt: Removed.
  • platform/efl/fast/dom/comment-not-documentElement-expected.png: Removed.
  • platform/efl/fast/dom/createDocumentType-expected.png: Removed.
  • platform/efl/fast/dom/createDocumentType-expected.txt: Removed.
  • platform/efl/fast/dom/css-cached-import-rule-expected.png: Removed.
  • platform/efl/fast/dom/css-insert-import-rule-expected.png: Removed.
  • platform/efl/fast/dom/css-mediarule-deleteRule-update-expected.png: Removed.
  • platform/efl/fast/dom/css-mediarule-deleteRule-update-expected.txt: Removed.
  • platform/efl/fast/dom/css-mediarule-insertRule-update-expected.png: Removed.
  • platform/efl/fast/dom/css-mediarule-insertRule-update-expected.txt: Removed.
  • platform/efl/fast/dom/css-rule-functions-expected.png: Removed.
  • platform/efl/fast/dom/css-rule-functions-expected.txt: Removed.
  • platform/efl/fast/dom/focus-contenteditable-expected.png: Removed.
  • platform/efl/fast/dom/focus-contenteditable-expected.txt: Removed.
  • platform/efl/fast/dom/icon-url-property-expected.txt: Removed.
  • platform/efl/fast/dom/importNodeHTML-expected.png: Removed.
  • platform/efl/fast/dom/importNodeHTML-expected.txt: Removed.
  • platform/efl/fast/dom/importNodeXML-expected.png: Removed.
  • platform/efl/fast/dom/importNodeXML-expected.txt: Removed.
  • platform/efl/fast/dom/inner-text-expected.png: Removed.
  • platform/efl/fast/dom/inner-text-expected.txt: Removed.
  • platform/efl/fast/dom/outerText-expected.png: Removed.
  • platform/efl/fast/dom/outerText-expected.txt: Removed.
  • platform/efl/fast/dom/row-inner-text-expected.png: Removed.
  • platform/efl/fast/dom/row-inner-text-expected.txt: Removed.
  • platform/efl/fast/dom/scroll-reveal-left-overflow-expected.png: Removed.
  • platform/efl/fast/dom/scroll-reveal-top-overflow-expected.png: Removed.
  • platform/efl/fast/dom/shadow: Removed.
  • platform/efl/fast/dom/shadow/form-in-shadow-expected.txt: Removed.
  • platform/efl/fast/dom/shadow/shadow-root-js-api-expected.txt: Removed.
  • platform/efl/fast/dom/shadow/tab-order-iframe-and-shadow-expected.txt: Removed.
  • platform/efl/fast/dom/tabindex-clamp-expected.txt: Removed.
  • platform/efl/fast/dynamic: Removed.
  • platform/efl/fast/dynamic/001-expected.png: Removed.
  • platform/efl/fast/dynamic/001-expected.txt: Removed.
  • platform/efl/fast/dynamic/002-expected.png: Removed.
  • platform/efl/fast/dynamic/002-expected.txt: Removed.
  • platform/efl/fast/dynamic/004-expected.png: Removed.
  • platform/efl/fast/dynamic/004-expected.txt: Removed.
  • platform/efl/fast/dynamic/005-expected.png: Removed.
  • platform/efl/fast/dynamic/006-expected.png: Removed.
  • platform/efl/fast/dynamic/006-expected.txt: Removed.
  • platform/efl/fast/dynamic/007-expected.png: Removed.
  • platform/efl/fast/dynamic/007-expected.txt: Removed.
  • platform/efl/fast/dynamic/008-expected.png: Removed.
  • platform/efl/fast/dynamic/008-expected.txt: Removed.
  • platform/efl/fast/dynamic/009-expected.png: Removed.
  • platform/efl/fast/dynamic/009-expected.txt: Removed.
  • platform/efl/fast/dynamic/010-expected.png: Removed.
  • platform/efl/fast/dynamic/010-expected.txt: Removed.
  • platform/efl/fast/dynamic/011-expected.png: Removed.
  • platform/efl/fast/dynamic/011-expected.txt: Removed.
  • platform/efl/fast/dynamic/012-expected.png: Removed.
  • platform/efl/fast/dynamic/012-expected.txt: Removed.
  • platform/efl/fast/dynamic/013-expected.png: Removed.
  • platform/efl/fast/dynamic/013-expected.txt: Removed.
  • platform/efl/fast/dynamic/014-expected.png: Removed.
  • platform/efl/fast/dynamic/014-expected.txt: Removed.
  • platform/efl/fast/dynamic/015-expected.png: Removed.
  • platform/efl/fast/dynamic/015-expected.txt: Removed.
  • platform/efl/fast/dynamic/anchor-lock-expected.png: Removed.
  • platform/efl/fast/dynamic/anchor-lock-expected.txt: Removed.
  • platform/efl/fast/dynamic/anonymous-block-layer-lost-expected.png: Removed.
  • platform/efl/fast/dynamic/anonymous-block-orphaned-lines-expected.png: Removed.
  • platform/efl/fast/dynamic/anonymous-block-orphaned-lines-expected.txt: Removed.
  • platform/efl/fast/dynamic/containing-block-change-expected.png: Removed.
  • platform/efl/fast/dynamic/containing-block-change-expected.txt: Removed.
  • platform/efl/fast/dynamic/create-renderer-for-whitespace-only-text-expected.png: Removed.
  • platform/efl/fast/dynamic/create-renderer-for-whitespace-only-text-expected.txt: Removed.
  • platform/efl/fast/dynamic/first-letter-after-list-marker-expected.png: Removed.
  • platform/efl/fast/dynamic/first-letter-display-change-expected.png: Removed.
  • platform/efl/fast/dynamic/first-letter-display-change-expected.txt: Removed.
  • platform/efl/fast/dynamic/float-in-trailing-whitespace-after-last-line-break-2-expected.txt: Removed.
  • platform/efl/fast/dynamic/float-in-trailing-whitespace-after-last-line-break-expected.png: Removed.
  • platform/efl/fast/dynamic/float-in-trailing-whitespace-after-last-line-break-expected.txt: Removed.
  • platform/efl/fast/dynamic/float-no-longer-overhanging-expected.png: Removed.
  • platform/efl/fast/dynamic/float-withdrawal-2-expected.png: Removed.
  • platform/efl/fast/dynamic/float-withdrawal-expected.png: Removed.
  • platform/efl/fast/dynamic/float-withdrawal-expected.txt: Removed.
  • platform/efl/fast/dynamic/floating-to-positioned-2-expected.png: Removed.
  • platform/efl/fast/dynamic/floating-to-positioned-expected.png: Removed.
  • platform/efl/fast/dynamic/genContentDestroyChildren-expected.png: Removed.
  • platform/efl/fast/dynamic/genContentDestroyChildren-expected.txt: Removed.
  • platform/efl/fast/dynamic/insert-before-table-part-in-continuation-expected.png: Removed.
  • platform/efl/fast/dynamic/insert-before-table-part-in-continuation-expected.txt: Removed.
  • platform/efl/fast/dynamic/layer-hit-test-crash-expected.png: Removed.
  • platform/efl/fast/dynamic/layer-hit-test-crash-expected.txt: Removed.
  • platform/efl/fast/dynamic/link-href-change-expected.png: Removed.
  • platform/efl/fast/dynamic/link-href-change-expected.txt: Removed.
  • platform/efl/fast/dynamic/move-node-with-selection-expected.png: Removed.
  • platform/efl/fast/dynamic/move-node-with-selection-expected.txt: Removed.
  • platform/efl/fast/dynamic/noninlinebadness-expected.png: Removed.
  • platform/efl/fast/dynamic/noninlinebadness-expected.txt: Removed.
  • platform/efl/fast/dynamic/outerHTML-doc-expected.png: Removed.
  • platform/efl/fast/dynamic/outerHTML-doc-expected.txt: Removed.
  • platform/efl/fast/dynamic/outerHTML-img-expected.png: Removed.
  • platform/efl/fast/dynamic/outerHTML-img-expected.txt: Removed.
  • platform/efl/fast/dynamic/positioned-movement-with-positioned-children-expected.png: Removed.
  • platform/efl/fast/dynamic/positioned-movement-with-positioned-children-expected.txt: Removed.
  • platform/efl/fast/dynamic/selection-highlight-adjust-expected.png: Removed.
  • platform/efl/fast/dynamic/selection-highlight-adjust-expected.txt: Removed.
  • platform/efl/fast/dynamic/staticY-expected.png: Removed.
  • platform/efl/fast/dynamic/staticY-marking-parents-regression-expected.png: Removed.
  • platform/efl/fast/dynamic/staticY-marking-parents-regression-expected.txt: Removed.
  • platform/efl/fast/dynamic/subtree-parent-static-y-expected.png: Removed.
  • platform/efl/fast/dynamic/subtree-table-cell-height-expected.txt: Removed.
  • platform/efl/fast/dynamic/text-combine-expected.png: Removed.
  • platform/efl/fast/dynamic/text-combine-expected.txt: Removed.
  • platform/efl/fast/dynamic/view-overflow-expected.png: Removed.
  • platform/efl/fast/dynamic/view-overflow-expected.txt: Removed.
  • platform/efl/fast/dynamic/window-resize-scrollbars-test-expected.png: Removed.
  • platform/efl/fast/dynamic/window-resize-scrollbars-test-expected.txt: Removed.
  • platform/efl/fast/dynamic/window-scrollbars-test-expected.png: Removed.
  • platform/efl/fast/dynamic/window-scrollbars-test-expected.txt: Removed.
  • platform/efl/fast/encoding: Removed.
  • platform/efl/fast/encoding/denormalised-voiced-japanese-chars-expected.png: Removed.
  • platform/efl/fast/encoding/denormalised-voiced-japanese-chars-expected.txt: Removed.
  • platform/efl/fast/encoding/invalid-UTF-8-expected.png: Removed.
  • platform/efl/fast/encoding/invalid-UTF-8-expected.txt: Removed.
  • platform/efl/fast/encoding/utf-16-big-endian-expected.png: Removed.
  • platform/efl/fast/encoding/utf-16-big-endian-expected.txt: Removed.
  • platform/efl/fast/encoding/utf-16-little-endian-expected.png: Removed.
  • platform/efl/fast/encoding/utf-16-little-endian-expected.txt: Removed.
  • platform/efl/fast/encoding/xmacroman-encoding-test-expected.png: Removed.
  • platform/efl/fast/encoding/xmacroman-encoding-test-expected.txt: Removed.
  • platform/efl/fast/events: Removed.
  • platform/efl/fast/events/click-focus-control-expected.txt: Removed.
  • platform/efl/fast/events/clientXY-in-zoom-and-scroll-expected.txt: Removed.
  • platform/efl/fast/events/context-no-deselect-expected.png: Removed.
  • platform/efl/fast/events/context-no-deselect-expected.txt: Removed.
  • platform/efl/fast/events/context-onmousedown-event-expected.png: Removed.
  • platform/efl/fast/events/event-attribute-expected.txt: Removed.
  • platform/efl/fast/events/event-listener-on-link-expected.png: Removed.
  • platform/efl/fast/events/event-listener-on-link-expected.txt: Removed.
  • platform/efl/fast/events/ghostly-mousemoves-in-subframe-expected.txt: Removed.
  • platform/efl/fast/events/js-keyboard-event-creation-expected.txt: Removed.
  • platform/efl/fast/events/mouseup-from-button2-expected.txt: Removed.
  • platform/efl/fast/events/onload-re-entry-expected.png: Removed.
  • platform/efl/fast/events/onload-re-entry-expected.txt: Removed.
  • platform/efl/fast/events/platform-wheelevent-in-scrolling-div-expected.txt: Removed.
  • platform/efl/fast/events/pointer-events-2-expected.png: Removed.
  • platform/efl/fast/events/pointer-events-2-expected.txt: Removed.
  • platform/efl/fast/events/resize-events-expected.png: Removed.
  • platform/efl/fast/events/resize-events-expected.txt: Removed.
  • platform/efl/fast/events/reveal-link-when-focused-expected.png: Removed.
  • platform/efl/fast/events/reveal-link-when-focused-expected.txt: Removed.
  • platform/efl/fast/events/updateLayoutForHitTest-expected.png: Removed.
  • platform/efl/fast/events/updateLayoutForHitTest-expected.txt: Removed.
  • platform/efl/fast/events/wheelevent-basic-expected.txt: Removed.
  • platform/efl/fast/fast-mobile-scrolling: Removed.
  • platform/efl/fast/fast-mobile-scrolling/fixed-position-element-expected.png: Removed.
  • platform/efl/fast/fast-mobile-scrolling/fixed-position-element-expected.txt: Removed.
  • platform/efl/fast/fast-mobile-scrolling/no-fixed-position-elements-expected.png: Removed.
  • platform/efl/fast/fast-mobile-scrolling/no-fixed-position-elements-expected.txt: Removed.
  • platform/efl/fast/flexbox: Removed.
  • platform/efl/fast/flexbox/001-expected.png: Removed.
  • platform/efl/fast/flexbox/001-expected.txt: Removed.
  • platform/efl/fast/flexbox/002-expected.png: Removed.
  • platform/efl/fast/flexbox/002-expected.txt: Removed.
  • platform/efl/fast/flexbox/003-expected.png: Removed.
  • platform/efl/fast/flexbox/003-expected.txt: Removed.
  • platform/efl/fast/flexbox/004-expected.png: Removed.
  • platform/efl/fast/flexbox/004-expected.txt: Removed.
  • platform/efl/fast/flexbox/005-expected.png: Removed.
  • platform/efl/fast/flexbox/005-expected.txt: Removed.
  • platform/efl/fast/flexbox/006-expected.png: Removed.
  • platform/efl/fast/flexbox/006-expected.txt: Removed.
  • platform/efl/fast/flexbox/007-expected.png: Removed.
  • platform/efl/fast/flexbox/007-expected.txt: Removed.
  • platform/efl/fast/flexbox/008-expected.png: Removed.
  • platform/efl/fast/flexbox/008-expected.txt: Removed.
  • platform/efl/fast/flexbox/009-expected.png: Removed.
  • platform/efl/fast/flexbox/009-expected.txt: Removed.
  • platform/efl/fast/flexbox/010-expected.png: Removed.
  • platform/efl/fast/flexbox/010-expected.txt: Removed.
  • platform/efl/fast/flexbox/011-expected.png: Removed.
  • platform/efl/fast/flexbox/011-expected.txt: Removed.
  • platform/efl/fast/flexbox/012-expected.png: Removed.
  • platform/efl/fast/flexbox/012-expected.txt: Removed.
  • platform/efl/fast/flexbox/013-expected.png: Removed.
  • platform/efl/fast/flexbox/013-expected.txt: Removed.
  • platform/efl/fast/flexbox/014-expected.png: Removed.
  • platform/efl/fast/flexbox/014-expected.txt: Removed.
  • platform/efl/fast/flexbox/015-expected.png: Removed.
  • platform/efl/fast/flexbox/015-expected.txt: Removed.
  • platform/efl/fast/flexbox/016-expected.png: Removed.
  • platform/efl/fast/flexbox/016-expected.txt: Removed.
  • platform/efl/fast/flexbox/017-expected.png: Removed.
  • platform/efl/fast/flexbox/017-expected.txt: Removed.
  • platform/efl/fast/flexbox/018-expected.png: Removed.
  • platform/efl/fast/flexbox/018-expected.txt: Removed.
  • platform/efl/fast/flexbox/019-expected.png: Removed.
  • platform/efl/fast/flexbox/019-expected.txt: Removed.
  • platform/efl/fast/flexbox/020-expected.png: Removed.
  • platform/efl/fast/flexbox/020-expected.txt: Removed.
  • platform/efl/fast/flexbox/021-expected.png: Removed.
  • platform/efl/fast/flexbox/021-expected.txt: Removed.
  • platform/efl/fast/flexbox/022-expected.png: Removed.
  • platform/efl/fast/flexbox/022-expected.txt: Removed.
  • platform/efl/fast/flexbox/023-expected.png: Removed.
  • platform/efl/fast/flexbox/023-expected.txt: Removed.
  • platform/efl/fast/flexbox/024-expected.png: Removed.
  • platform/efl/fast/flexbox/024-expected.txt: Removed.
  • platform/efl/fast/flexbox/025-expected.png: Removed.
  • platform/efl/fast/flexbox/025-expected.txt: Removed.
  • platform/efl/fast/flexbox/026-expected.png: Removed.
  • platform/efl/fast/flexbox/026-expected.txt: Removed.
  • platform/efl/fast/flexbox/flex-hang-expected.png: Removed.
  • platform/efl/fast/flexbox/overhanging-floats-removed-expected.png: Removed.
  • platform/efl/fast/forms: Removed.
  • platform/efl/fast/forms/001-expected.png: Removed.
  • platform/efl/fast/forms/001-expected.txt: Removed.
  • platform/efl/fast/forms/002-expected.png: Removed.
  • platform/efl/fast/forms/003-expected.png: Removed.
  • platform/efl/fast/forms/003-expected.txt: Removed.
  • platform/efl/fast/forms/004-expected.png: Removed.
  • platform/efl/fast/forms/004-expected.txt: Removed.
  • platform/efl/fast/forms/005-expected.txt: Removed.
  • platform/efl/fast/forms/006-expected.png: Removed.
  • platform/efl/fast/forms/006-expected.txt: Removed.
  • platform/efl/fast/forms/007-expected.png: Removed.
  • platform/efl/fast/forms/007-expected.txt: Removed.
  • platform/efl/fast/forms/auto-fill-button: Removed.
  • platform/efl/fast/forms/auto-fill-button/input-contacts-auto-fill-button-expected.txt: Removed.
  • platform/efl/fast/forms/basic-buttons-expected.png: Removed.
  • platform/efl/fast/forms/basic-buttons-expected.txt: Removed.
  • platform/efl/fast/forms/basic-inputs-expected.txt: Removed.
  • platform/efl/fast/forms/basic-selects-expected.png: Removed.
  • platform/efl/fast/forms/basic-textareas-expected.png: Removed.
  • platform/efl/fast/forms/basic-textareas-expected.txt: Removed.
  • platform/efl/fast/forms/basic-textareas-quirks-expected.png: Removed.
  • platform/efl/fast/forms/basic-textareas-quirks-expected.txt: Removed.
  • platform/efl/fast/forms/blankbuttons-expected.png: Removed.
  • platform/efl/fast/forms/blankbuttons-expected.txt: Removed.
  • platform/efl/fast/forms/box-shadow-override-expected.png: Removed.
  • platform/efl/fast/forms/box-shadow-override-expected.txt: Removed.
  • platform/efl/fast/forms/button-align-expected.png: Removed.
  • platform/efl/fast/forms/button-align-expected.txt: Removed.
  • platform/efl/fast/forms/button-cannot-be-nested-expected.png: Removed.
  • platform/efl/fast/forms/button-cannot-be-nested-expected.txt: Removed.
  • platform/efl/fast/forms/button-default-title-expected.png: Removed.
  • platform/efl/fast/forms/button-default-title-expected.txt: Removed.
  • platform/efl/fast/forms/button-generated-content-expected.png: Removed.
  • platform/efl/fast/forms/button-generated-content-expected.txt: Removed.
  • platform/efl/fast/forms/button-inner-block-reuse-expected.png: Removed.
  • platform/efl/fast/forms/button-inner-block-reuse-expected.txt: Removed.
  • platform/efl/fast/forms/button-positioned-expected.png: Removed.
  • platform/efl/fast/forms/button-positioned-expected.txt: Removed.
  • platform/efl/fast/forms/button-sizes-expected.png: Removed.
  • platform/efl/fast/forms/button-sizes-expected.txt: Removed.
  • platform/efl/fast/forms/button-style-color-expected.png: Removed.
  • platform/efl/fast/forms/button-style-color-expected.txt: Removed.
  • platform/efl/fast/forms/button-submit-expected.png: Removed.
  • platform/efl/fast/forms/button-submit-expected.txt: Removed.
  • platform/efl/fast/forms/button-table-styles-expected.png: Removed.
  • platform/efl/fast/forms/button-table-styles-expected.txt: Removed.
  • platform/efl/fast/forms/button-text-transform-expected.png: Removed.
  • platform/efl/fast/forms/button-text-transform-expected.txt: Removed.
  • platform/efl/fast/forms/button-white-space-expected.png: Removed.
  • platform/efl/fast/forms/button-white-space-expected.txt: Removed.
  • platform/efl/fast/forms/caret-rtl-expected.png: Removed.
  • platform/efl/fast/forms/caret-rtl-expected.txt: Removed.
  • platform/efl/fast/forms/control-clip-expected.png: Removed.
  • platform/efl/fast/forms/control-clip-expected.txt: Removed.
  • platform/efl/fast/forms/control-clip-overflow-expected.png: Removed.
  • platform/efl/fast/forms/control-clip-overflow-expected.txt: Removed.
  • platform/efl/fast/forms/control-restrict-line-height-expected.png: Removed.
  • platform/efl/fast/forms/control-restrict-line-height-expected.txt: Removed.
  • platform/efl/fast/forms/datalist: Removed.
  • platform/efl/fast/forms/datalist/input-appearance-range-with-datalist-expected.png: Removed.
  • platform/efl/fast/forms/datalist/input-appearance-range-with-datalist-zoomed-expected.png: Removed.
  • platform/efl/fast/forms/datalist/input-appearance-range-with-padding-with-datalist-expected.png: Removed.
  • platform/efl/fast/forms/datalist/input-appearance-range-with-transform-expected.png: Removed.
  • platform/efl/fast/forms/datalist/input-list-expected.txt: Removed.
  • platform/efl/fast/forms/datalist/range-snap-to-datalist-expected.txt: Removed.
  • platform/efl/fast/forms/disabled-select-change-index-expected.png: Removed.
  • platform/efl/fast/forms/disabled-select-change-index-expected.txt: Removed.
  • platform/efl/fast/forms/encoding-test-expected.png: Removed.
  • platform/efl/fast/forms/encoding-test-expected.txt: Removed.
  • platform/efl/fast/forms/fieldset-align-expected.png: Removed.
  • platform/efl/fast/forms/fieldset-align-expected.txt: Removed.
  • platform/efl/fast/forms/fieldset-legend-padding-unclipped-fieldset-border-expected.png: Removed.
  • platform/efl/fast/forms/fieldset-legend-padding-unclipped-fieldset-border-expected.txt: Removed.
  • platform/efl/fast/forms/fieldset-with-float-expected.png: Removed.
  • platform/efl/fast/forms/file: Removed.
  • platform/efl/fast/forms/file/file-input-direction-expected.png: Removed.
  • platform/efl/fast/forms/file/file-input-direction-expected.txt: Removed.
  • platform/efl/fast/forms/file/file-input-disabled-expected.png: Removed.
  • platform/efl/fast/forms/file/file-input-disabled-expected.txt: Removed.
  • platform/efl/fast/forms/file/file-input-pressed-state-expected.png: Removed.
  • platform/efl/fast/forms/float-before-fieldset-expected.png: Removed.
  • platform/efl/fast/forms/float-before-fieldset-expected.txt: Removed.
  • platform/efl/fast/forms/floating-textfield-relayout-expected.png: Removed.
  • platform/efl/fast/forms/floating-textfield-relayout-expected.txt: Removed.
  • platform/efl/fast/forms/form-added-to-table-expected.png: Removed.
  • platform/efl/fast/forms/form-added-to-table-expected.txt: Removed.
  • platform/efl/fast/forms/form-element-geometry-expected.png: Removed.
  • platform/efl/fast/forms/form-element-geometry-expected.txt: Removed.
  • platform/efl/fast/forms/form-hides-table-expected.png: Removed.
  • platform/efl/fast/forms/form-hides-table-expected.txt: Removed.
  • platform/efl/fast/forms/form-in-malformed-markup-expected.png: Removed.
  • platform/efl/fast/forms/form-in-malformed-markup-expected.txt: Removed.
  • platform/efl/fast/forms/formmove-expected.png: Removed.
  • platform/efl/fast/forms/formmove-expected.txt: Removed.
  • platform/efl/fast/forms/formmove2-expected.png: Removed.
  • platform/efl/fast/forms/formmove2-expected.txt: Removed.
  • platform/efl/fast/forms/formmove3-expected.png: Removed.
  • platform/efl/fast/forms/formmove3-expected.txt: Removed.
  • platform/efl/fast/forms/hidden-listbox-expected.png: Removed.
  • platform/efl/fast/forms/hidden-listbox-expected.txt: Removed.
  • platform/efl/fast/forms/image-border-expected.png: Removed.
  • platform/efl/fast/forms/image-border-expected.txt: Removed.
  • platform/efl/fast/forms/indeterminate-expected.txt: Removed.
  • platform/efl/fast/forms/input-align-expected.png: Removed.
  • platform/efl/fast/forms/input-align-expected.txt: Removed.
  • platform/efl/fast/forms/input-align-image-expected.png: Removed.
  • platform/efl/fast/forms/input-align-image-expected.txt: Removed.
  • platform/efl/fast/forms/input-appearance-bkcolor-expected.png: Removed.
  • platform/efl/fast/forms/input-appearance-bkcolor-expected.txt: Removed.
  • platform/efl/fast/forms/input-appearance-default-bkcolor-expected.png: Removed.
  • platform/efl/fast/forms/input-appearance-default-bkcolor-expected.txt: Removed.
  • platform/efl/fast/forms/input-appearance-disabled-expected.png: Removed.
  • platform/efl/fast/forms/input-appearance-disabled-expected.txt: Removed.
  • platform/efl/fast/forms/input-appearance-focus-expected.png: Removed.
  • platform/efl/fast/forms/input-appearance-focus-expected.txt: Removed.
  • platform/efl/fast/forms/input-appearance-height-expected.png: Removed.
  • platform/efl/fast/forms/input-appearance-height-expected.txt: Removed.
  • platform/efl/fast/forms/input-appearance-preventDefault-expected.png: Removed.
  • platform/efl/fast/forms/input-appearance-preventDefault-expected.txt: Removed.
  • platform/efl/fast/forms/input-appearance-readonly-expected.png: Removed.
  • platform/efl/fast/forms/input-appearance-readonly-expected.txt: Removed.
  • platform/efl/fast/forms/input-appearance-selection-expected.png: Removed.
  • platform/efl/fast/forms/input-appearance-selection-expected.txt: Removed.
  • platform/efl/fast/forms/input-appearance-spinbutton-expected.txt: Removed.
  • platform/efl/fast/forms/input-appearance-visibility-expected.png: Removed.
  • platform/efl/fast/forms/input-appearance-visibility-expected.txt: Removed.
  • platform/efl/fast/forms/input-appearance-width-expected.png: Removed.
  • platform/efl/fast/forms/input-appearance-width-expected.txt: Removed.
  • platform/efl/fast/forms/input-baseline-expected.png: Removed.
  • platform/efl/fast/forms/input-baseline-expected.txt: Removed.
  • platform/efl/fast/forms/input-button-sizes-expected.png: Removed.
  • platform/efl/fast/forms/input-button-sizes-expected.txt: Removed.
  • platform/efl/fast/forms/input-disabled-color-expected.png: Removed.
  • platform/efl/fast/forms/input-disabled-color-expected.txt: Removed.
  • platform/efl/fast/forms/input-double-click-selection-gap-bug-expected.png: Removed.
  • platform/efl/fast/forms/input-double-click-selection-gap-bug-expected.txt: Removed.
  • platform/efl/fast/forms/input-field-text-truncated-expected.png: Removed.
  • platform/efl/fast/forms/input-field-text-truncated-expected.txt: Removed.
  • platform/efl/fast/forms/input-first-letter-expected.png: Removed.
  • platform/efl/fast/forms/input-first-letter-expected.txt: Removed.
  • platform/efl/fast/forms/input-no-renderer-expected.png: Removed.
  • platform/efl/fast/forms/input-paste-undo-expected.png: Removed.
  • platform/efl/fast/forms/input-placeholder-paint-order-expected.png: Removed.
  • platform/efl/fast/forms/input-placeholder-visibility-1-expected.png: Removed.
  • platform/efl/fast/forms/input-placeholder-visibility-1-expected.txt: Removed.
  • platform/efl/fast/forms/input-placeholder-visibility-3-expected.png: Removed.
  • platform/efl/fast/forms/input-placeholder-visibility-3-expected.txt: Removed.
  • platform/efl/fast/forms/input-readonly-dimmed-expected.png: Removed.
  • platform/efl/fast/forms/input-readonly-dimmed-expected.txt: Removed.
  • platform/efl/fast/forms/input-readonly-empty-expected.png: Removed.
  • platform/efl/fast/forms/input-readonly-empty-expected.txt: Removed.
  • platform/efl/fast/forms/input-spaces-expected.png: Removed.
  • platform/efl/fast/forms/input-spaces-expected.txt: Removed.
  • platform/efl/fast/forms/input-table-expected.png: Removed.
  • platform/efl/fast/forms/input-table-expected.txt: Removed.
  • platform/efl/fast/forms/input-text-click-inside-expected.png: Removed.
  • platform/efl/fast/forms/input-text-click-inside-expected.txt: Removed.
  • platform/efl/fast/forms/input-text-double-click-expected.png: Removed.
  • platform/efl/fast/forms/input-text-double-click-expected.txt: Removed.
  • platform/efl/fast/forms/input-text-option-delete-expected.png: Removed.
  • platform/efl/fast/forms/input-text-option-delete-expected.txt: Removed.
  • platform/efl/fast/forms/input-text-scroll-left-on-blur-expected.png: Removed.
  • platform/efl/fast/forms/input-text-scroll-left-on-blur-expected.txt: Removed.
  • platform/efl/fast/forms/input-text-self-emptying-click-expected.png: Removed.
  • platform/efl/fast/forms/input-text-self-emptying-click-expected.txt: Removed.
  • platform/efl/fast/forms/input-text-word-wrap-expected.png: Removed.
  • platform/efl/fast/forms/input-text-word-wrap-expected.txt: Removed.
  • platform/efl/fast/forms/input-type-text-min-width-expected.png: Removed.
  • platform/efl/fast/forms/input-type-text-min-width-expected.txt: Removed.
  • platform/efl/fast/forms/input-value-expected.png: Removed.
  • platform/efl/fast/forms/input-value-expected.txt: Removed.
  • platform/efl/fast/forms/input-width-expected.png: Removed.
  • platform/efl/fast/forms/input-width-expected.txt: Removed.
  • platform/efl/fast/forms/label: Removed.
  • platform/efl/fast/forms/label/labelable-elements-expected.txt: Removed.
  • platform/efl/fast/forms/linebox-overflow-in-textarea-padding-expected.png: Removed.
  • platform/efl/fast/forms/linebox-overflow-in-textarea-padding-expected.txt: Removed.
  • platform/efl/fast/forms/listbox-bidi-align-expected.png: Removed.
  • platform/efl/fast/forms/listbox-bidi-align-expected.txt: Removed.
  • platform/efl/fast/forms/listbox-clip-expected.png: Removed.
  • platform/efl/fast/forms/listbox-hit-test-zoomed-expected.png: Removed.
  • platform/efl/fast/forms/listbox-hit-test-zoomed-expected.txt: Removed.
  • platform/efl/fast/forms/listbox-scrollbar-incremental-load-expected.png: Removed.
  • platform/efl/fast/forms/listbox-scrollbar-incremental-load-expected.txt: Removed.
  • platform/efl/fast/forms/listbox-width-change-expected.png: Removed.
  • platform/efl/fast/forms/listbox-width-change-expected.txt: Removed.
  • platform/efl/fast/forms/menulist-clip-expected.png: Removed.
  • platform/efl/fast/forms/menulist-clip-expected.txt: Removed.
  • platform/efl/fast/forms/menulist-deselect-update-expected.png: Removed.
  • platform/efl/fast/forms/menulist-deselect-update-expected.txt: Removed.
  • platform/efl/fast/forms/menulist-narrow-width-expected.png: Removed.
  • platform/efl/fast/forms/menulist-narrow-width-expected.txt: Removed.
  • platform/efl/fast/forms/menulist-no-overflow-expected.png: Removed.
  • platform/efl/fast/forms/menulist-no-overflow-expected.txt: Removed.
  • platform/efl/fast/forms/menulist-option-wrap-expected.png: Removed.
  • platform/efl/fast/forms/menulist-option-wrap-expected.txt: Removed.
  • platform/efl/fast/forms/menulist-restrict-line-height-expected.png: Removed.
  • platform/efl/fast/forms/menulist-restrict-line-height-expected.txt: Removed.
  • platform/efl/fast/forms/menulist-separator-painting-expected.png: Removed.
  • platform/efl/fast/forms/menulist-separator-painting-expected.txt: Removed.
  • platform/efl/fast/forms/menulist-style-color-expected.png: Removed.
  • platform/efl/fast/forms/menulist-style-color-expected.txt: Removed.
  • platform/efl/fast/forms/menulist-width-change-expected.png: Removed.
  • platform/efl/fast/forms/menulist-width-change-expected.txt: Removed.
  • platform/efl/fast/forms/minWidthPercent-expected.png: Removed.
  • platform/efl/fast/forms/minWidthPercent-expected.txt: Removed.
  • platform/efl/fast/forms/negativeLineHeight-expected.png: Removed.
  • platform/efl/fast/forms/negativeLineHeight-expected.txt: Removed.
  • platform/efl/fast/forms/number: Removed.
  • platform/efl/fast/forms/number/number-appearance-rtl-expected.png: Removed.
  • platform/efl/fast/forms/number/number-appearance-rtl-expected.txt: Removed.
  • platform/efl/fast/forms/number/number-appearance-spinbutton-disabled-readonly-expected.png: Removed.
  • platform/efl/fast/forms/number/number-appearance-spinbutton-disabled-readonly-expected.txt: Removed.
  • platform/efl/fast/forms/number/number-appearance-spinbutton-layer-expected.png: Removed.
  • platform/efl/fast/forms/number/number-appearance-spinbutton-layer-expected.txt: Removed.
  • platform/efl/fast/forms/option-index-expected.png: Removed.
  • platform/efl/fast/forms/option-index-expected.txt: Removed.
  • platform/efl/fast/forms/option-script-expected.png: Removed.
  • platform/efl/fast/forms/option-script-expected.txt: Removed.
  • platform/efl/fast/forms/option-strip-whitespace-expected.png: Removed.
  • platform/efl/fast/forms/option-strip-whitespace-expected.txt: Removed.
  • platform/efl/fast/forms/option-text-clip-expected.png: Removed.
  • platform/efl/fast/forms/option-text-clip-expected.txt: Removed.
  • platform/efl/fast/forms/placeholder-position-expected.png: Removed.
  • platform/efl/fast/forms/placeholder-position-expected.txt: Removed.
  • platform/efl/fast/forms/placeholder-pseudo-style-expected.png: Removed.
  • platform/efl/fast/forms/placeholder-pseudo-style-expected.txt: Removed.
  • platform/efl/fast/forms/plaintext-mode-2-expected.png: Removed.
  • platform/efl/fast/forms/plaintext-mode-2-expected.txt: Removed.
  • platform/efl/fast/forms/preserveFormDuringResidualStyle-expected.png: Removed.
  • platform/efl/fast/forms/preserveFormDuringResidualStyle-expected.txt: Removed.
  • platform/efl/fast/forms/range: Removed.
  • platform/efl/fast/forms/range/input-appearance-range-expected.png: Removed.
  • platform/efl/fast/forms/range/input-appearance-range-expected.txt: Removed.
  • platform/efl/fast/forms/range/range-thumb-height-percentage-expected.png: Removed.
  • platform/efl/fast/forms/range/range-thumb-height-percentage-expected.txt: Removed.
  • platform/efl/fast/forms/range/slider-mouse-events-expected.txt: Removed.
  • platform/efl/fast/forms/range/slider-padding-expected.png: Removed.
  • platform/efl/fast/forms/range/slider-padding-expected.txt: Removed.
  • platform/efl/fast/forms/range/slider-thumb-shared-style-expected.png: Removed.
  • platform/efl/fast/forms/range/slider-thumb-shared-style-expected.txt: Removed.
  • platform/efl/fast/forms/range/thumbslider-no-parent-slider-expected.png: Removed.
  • platform/efl/fast/forms/range/thumbslider-no-parent-slider-expected.txt: Removed.
  • platform/efl/fast/forms/search: Removed.
  • platform/efl/fast/forms/search-cancel-button-style-sharing-expected.png: Removed.
  • platform/efl/fast/forms/search-cancel-button-style-sharing-expected.txt: Removed.
  • platform/efl/fast/forms/search-display-none-cancel-button-expected.png: Removed.
  • platform/efl/fast/forms/search-display-none-cancel-button-expected.txt: Removed.
  • platform/efl/fast/forms/search-rtl-expected.png: Removed.
  • platform/efl/fast/forms/search-rtl-expected.txt: Removed.
  • platform/efl/fast/forms/search-styled-expected.png: Removed.
  • platform/efl/fast/forms/search-styled-expected.txt: Removed.
  • platform/efl/fast/forms/search-vertical-alignment-expected.png: Removed.
  • platform/efl/fast/forms/search-vertical-alignment-expected.txt: Removed.
  • platform/efl/fast/forms/search/search-size-with-decorations-expected.png: Removed.
  • platform/efl/fast/forms/search/search-size-with-decorations-expected.txt: Removed.
  • platform/efl/fast/forms/searchfield-heights-expected.png: Removed.
  • platform/efl/fast/forms/searchfield-heights-expected.txt: Removed.
  • platform/efl/fast/forms/select: Removed.
  • platform/efl/fast/forms/select-align-expected.png: Removed.
  • platform/efl/fast/forms/select-align-expected.txt: Removed.
  • platform/efl/fast/forms/select-background-none-expected.png: Removed.
  • platform/efl/fast/forms/select-background-none-expected.txt: Removed.
  • platform/efl/fast/forms/select-baseline-expected.png: Removed.
  • platform/efl/fast/forms/select-baseline-expected.txt: Removed.
  • platform/efl/fast/forms/select-block-background-expected.png: Removed.
  • platform/efl/fast/forms/select-block-background-expected.txt: Removed.
  • platform/efl/fast/forms/select-change-listbox-size-expected.png: Removed.
  • platform/efl/fast/forms/select-change-listbox-size-expected.txt: Removed.
  • platform/efl/fast/forms/select-change-listbox-to-popup-expected.png: Removed.
  • platform/efl/fast/forms/select-change-listbox-to-popup-expected.txt: Removed.
  • platform/efl/fast/forms/select-change-popup-to-listbox-expected.png: Removed.
  • platform/efl/fast/forms/select-change-popup-to-listbox-expected.txt: Removed.
  • platform/efl/fast/forms/select-dirty-parent-pref-widths-expected.png: Removed.
  • platform/efl/fast/forms/select-dirty-parent-pref-widths-expected.txt: Removed.
  • platform/efl/fast/forms/select-disabled-appearance-expected.png: Removed.
  • platform/efl/fast/forms/select-disabled-appearance-expected.txt: Removed.
  • platform/efl/fast/forms/select-display-none-style-resolve-expected.png: Removed.
  • platform/efl/fast/forms/select-display-none-style-resolve-expected.txt: Removed.
  • platform/efl/fast/forms/select-element-focus-ring-expected.txt: Removed.
  • platform/efl/fast/forms/select-empty-option-height-expected.png: Removed.
  • platform/efl/fast/forms/select-empty-option-height-expected.txt: Removed.
  • platform/efl/fast/forms/select-initial-position-expected.png: Removed.
  • platform/efl/fast/forms/select-initial-position-expected.txt: Removed.
  • platform/efl/fast/forms/select-item-background-clip-expected.png: Removed.
  • platform/efl/fast/forms/select-item-background-clip-expected.txt: Removed.
  • platform/efl/fast/forms/select-list-box-with-height-expected.png: Removed.
  • platform/efl/fast/forms/select-list-box-with-height-expected.txt: Removed.
  • platform/efl/fast/forms/select-listbox-multiple-no-focusring-expected.png: Removed.
  • platform/efl/fast/forms/select-overflow-scroll-expected.png: Removed.
  • platform/efl/fast/forms/select-overflow-scroll-inherited-expected.png: Removed.
  • platform/efl/fast/forms/select-selected-expected.png: Removed.
  • platform/efl/fast/forms/select-selected-expected.txt: Removed.
  • platform/efl/fast/forms/select-size-expected.png: Removed.
  • platform/efl/fast/forms/select-style-expected.png: Removed.
  • platform/efl/fast/forms/select-style-expected.txt: Removed.
  • platform/efl/fast/forms/select-visual-hebrew-expected.png: Removed.
  • platform/efl/fast/forms/select-visual-hebrew-expected.txt: Removed.
  • platform/efl/fast/forms/select-writing-direction-natural-expected.png: Removed.
  • platform/efl/fast/forms/select-writing-direction-natural-expected.txt: Removed.
  • platform/efl/fast/forms/select/optgroup-rendering-expected.png: Removed.
  • platform/efl/fast/forms/select/optgroup-rendering-expected.txt: Removed.
  • platform/efl/fast/forms/selectlist-minsize-expected.png: Removed.
  • platform/efl/fast/forms/selectlist-minsize-expected.txt: Removed.
  • platform/efl/fast/forms/stuff-on-my-optgroup-expected.png: Removed.
  • platform/efl/fast/forms/stuff-on-my-optgroup-expected.txt: Removed.
  • platform/efl/fast/forms/tabbing-input-iframe-expected.png: Removed.
  • platform/efl/fast/forms/tabbing-input-iframe-expected.txt: Removed.
  • platform/efl/fast/forms/targeted-frame-submission-expected.png: Removed.
  • platform/efl/fast/forms/targeted-frame-submission-expected.txt: Removed.
  • platform/efl/fast/forms/text-control-intrinsic-widths-expected.txt: Removed.
  • platform/efl/fast/forms/textAreaLineHeight-expected.png: Removed.
  • platform/efl/fast/forms/textAreaLineHeight-expected.txt: Removed.
  • platform/efl/fast/forms/textarea: Removed.
  • platform/efl/fast/forms/textarea-align-expected.png: Removed.
  • platform/efl/fast/forms/textarea-align-expected.txt: Removed.
  • platform/efl/fast/forms/textarea-metrics-expected.txt: Removed.
  • platform/efl/fast/forms/textarea-placeholder-pseudo-style-expected.png: Removed.
  • platform/efl/fast/forms/textarea-placeholder-pseudo-style-expected.txt: Removed.
  • platform/efl/fast/forms/textarea-placeholder-visibility-1-expected.png: Removed.
  • platform/efl/fast/forms/textarea-placeholder-visibility-1-expected.txt: Removed.
  • platform/efl/fast/forms/textarea-placeholder-visibility-2-expected.png: Removed.
  • platform/efl/fast/forms/textarea-placeholder-visibility-2-expected.txt: Removed.
  • platform/efl/fast/forms/textarea-scroll-height-expected.png: Removed.
  • platform/efl/fast/forms/textarea-scroll-height-expected.txt: Removed.
  • platform/efl/fast/forms/textarea-scrollbar-expected.png: Removed.
  • platform/efl/fast/forms/textarea-scrollbar-expected.txt: Removed.
  • platform/efl/fast/forms/textarea-scrolled-type-expected.png: Removed.
  • platform/efl/fast/forms/textarea-scrolled-type-expected.txt: Removed.
  • platform/efl/fast/forms/textarea-setinnerhtml-expected.png: Removed.
  • platform/efl/fast/forms/textarea-setinnerhtml-expected.txt: Removed.
  • platform/efl/fast/forms/textarea-width-expected.png: Removed.
  • platform/efl/fast/forms/textarea-width-expected.txt: Removed.
  • platform/efl/fast/forms/textarea/textarea-placeholder-paint-order-expected.png: Removed.
  • platform/efl/fast/forms/textfield-focus-ring-expected.png: Removed.
  • platform/efl/fast/forms/textfield-focus-ring-expected.txt: Removed.
  • platform/efl/fast/forms/textfield-outline-expected.png: Removed.
  • platform/efl/fast/forms/textfield-outline-expected.txt: Removed.
  • platform/efl/fast/forms/textfield-overflow-expected.png: Removed.
  • platform/efl/fast/forms/validation-message-appearance-expected.png: Removed.
  • platform/efl/fast/forms/validation-message-appearance-expected.txt: Removed.
  • platform/efl/fast/forms/validationMessage-expected.txt: Removed.
  • platform/efl/fast/forms/visual-hebrew-text-field-expected.png: Removed.
  • platform/efl/fast/forms/visual-hebrew-text-field-expected.txt: Removed.
  • platform/efl/fast/forms/zoomed-controls-expected.png: Removed.
  • platform/efl/fast/frames: Removed.
  • platform/efl/fast/frames/001-expected.png: Removed.
  • platform/efl/fast/frames/001-expected.txt: Removed.
  • platform/efl/fast/frames/calculate-fixed-expected.png: Removed.
  • platform/efl/fast/frames/calculate-order-expected.png: Removed.
  • platform/efl/fast/frames/calculate-percentage-expected.png: Removed.
  • platform/efl/fast/frames/calculate-relative-expected.png: Removed.
  • platform/efl/fast/frames/calculate-round-expected.png: Removed.
  • platform/efl/fast/frames/content-opacity-1-expected.png: Removed.
  • platform/efl/fast/frames/content-opacity-2-expected.png: Removed.
  • platform/efl/fast/frames/empty-frame-src-expected.png: Removed.
  • platform/efl/fast/frames/flattening: Removed.
  • platform/efl/fast/frames/flattening/frameset-flattening-advanced-expected.png: Removed.
  • platform/efl/fast/frames/flattening/frameset-flattening-advanced-expected.txt: Removed.
  • platform/efl/fast/frames/flattening/frameset-flattening-grid-expected.png: Removed.
  • platform/efl/fast/frames/flattening/frameset-flattening-grid-expected.txt: Removed.
  • platform/efl/fast/frames/flattening/frameset-flattening-simple-expected.png: Removed.
  • platform/efl/fast/frames/flattening/frameset-flattening-simple-expected.txt: Removed.
  • platform/efl/fast/frames/flattening/frameset-flattening-subframe-resize-expected.png: Removed.
  • platform/efl/fast/frames/flattening/frameset-flattening-subframe-resize-expected.txt: Removed.
  • platform/efl/fast/frames/flattening/frameset-flattening-subframesets-expected.png: Removed.
  • platform/efl/fast/frames/flattening/iframe-flattening-fixed-height-expected.png: Removed.
  • platform/efl/fast/frames/flattening/iframe-flattening-fixed-height-expected.txt: Removed.
  • platform/efl/fast/frames/flattening/iframe-flattening-fixed-width-and-height-expected.png: Removed.
  • platform/efl/fast/frames/flattening/iframe-flattening-fixed-width-and-height-expected.txt: Removed.
  • platform/efl/fast/frames/flattening/iframe-flattening-fixed-width-and-height-no-scrolling-expected.png: Removed.
  • platform/efl/fast/frames/flattening/iframe-flattening-fixed-width-and-height-no-scrolling-expected.txt: Removed.
  • platform/efl/fast/frames/flattening/iframe-flattening-fixed-width-expected.png: Removed.
  • platform/efl/fast/frames/flattening/iframe-flattening-fixed-width-expected.txt: Removed.
  • platform/efl/fast/frames/flattening/iframe-flattening-nested-expected.png: Removed.
  • platform/efl/fast/frames/flattening/iframe-flattening-nested-expected.txt: Removed.
  • platform/efl/fast/frames/flattening/iframe-flattening-offscreen-expected.png: Removed.
  • platform/efl/fast/frames/flattening/iframe-flattening-offscreen-expected.txt: Removed.
  • platform/efl/fast/frames/flattening/iframe-flattening-out-of-view-and-scroll-expected.png: Removed.
  • platform/efl/fast/frames/flattening/iframe-flattening-out-of-view-and-scroll-expected.txt: Removed.
  • platform/efl/fast/frames/flattening/iframe-flattening-out-of-view-expected.png: Removed.
  • platform/efl/fast/frames/flattening/iframe-flattening-out-of-view-expected.txt: Removed.
  • platform/efl/fast/frames/flattening/iframe-flattening-out-of-view-scroll-and-relayout-expected.png: Removed.
  • platform/efl/fast/frames/flattening/iframe-flattening-out-of-view-scroll-and-relayout-expected.txt: Removed.
  • platform/efl/fast/frames/flattening/iframe-flattening-simple-expected.png: Removed.
  • platform/efl/fast/frames/flattening/iframe-flattening-simple-expected.txt: Removed.
  • platform/efl/fast/frames/frame-length-fractional-expected.png: Removed.
  • platform/efl/fast/frames/frame-navigation-expected.png: Removed.
  • platform/efl/fast/frames/frame-navigation-expected.txt: Removed.
  • platform/efl/fast/frames/frame-scrolling-attribute-expected.png: Removed.
  • platform/efl/fast/frames/frame-scrolling-attribute-expected.txt: Removed.
  • platform/efl/fast/frames/frame-set-rotation-hit-expected.png: Removed.
  • platform/efl/fast/frames/frame-set-scaling-rotate-expected.png: Removed.
  • platform/efl/fast/frames/frame-set-scaling-skew-expected.png: Removed.
  • platform/efl/fast/frames/frameElement-frame-expected.png: Removed.
  • platform/efl/fast/frames/frameElement-frame-expected.txt: Removed.
  • platform/efl/fast/frames/frameElement-iframe-expected.png: Removed.
  • platform/efl/fast/frames/frameElement-iframe-expected.txt: Removed.
  • platform/efl/fast/frames/frameset-style-recalc-expected.png: Removed.
  • platform/efl/fast/frames/frameset-style-recalc-expected.txt: Removed.
  • platform/efl/fast/frames/iframe-option-crash-expected.png: Removed.
  • platform/efl/fast/frames/iframe-option-crash-expected.txt: Removed.
  • platform/efl/fast/frames/iframe-scaling-with-scroll-expected.png: Removed.
  • platform/efl/fast/frames/iframe-scrolling-attribute-expected.png: Removed.
  • platform/efl/fast/frames/iframe-scrolling-attribute-expected.txt: Removed.
  • platform/efl/fast/frames/iframe-text-contents-expected.png: Removed.
  • platform/efl/fast/frames/iframe-with-frameborder-expected.png: Removed.
  • platform/efl/fast/frames/iframe-with-frameborder-expected.txt: Removed.
  • platform/efl/fast/frames/inline-object-inside-frameset-expected.png: Removed.
  • platform/efl/fast/frames/inline-object-inside-frameset-expected.txt: Removed.
  • platform/efl/fast/frames/invalid-expected.png: Removed.
  • platform/efl/fast/frames/onlyCommentInIFrame-expected.png: Removed.
  • platform/efl/fast/frames/onlyCommentInIFrame-expected.txt: Removed.
  • platform/efl/fast/frames/take-focus-from-iframe-expected.png: Removed.
  • platform/efl/fast/frames/take-focus-from-iframe-expected.txt: Removed.
  • platform/efl/fast/frames/valid-expected.png: Removed.
  • platform/efl/fast/gradients: Removed.
  • platform/efl/fast/gradients/background-clipped-expected.png: Removed.
  • platform/efl/fast/gradients/border-image-gradient-expected.png: Removed.
  • platform/efl/fast/gradients/border-image-gradient-sides-and-corners-expected.png: Removed.
  • platform/efl/fast/gradients/crash-on-zero-radius-expected.png: Removed.
  • platform/efl/fast/gradients/crash-on-zero-radius-expected.txt: Removed.
  • platform/efl/fast/gradients/css3-color-stop-units-expected.png: Removed.
  • platform/efl/fast/gradients/css3-color-stops-expected.png: Removed.
  • platform/efl/fast/gradients/css3-linear-angle-gradients-expected.png: Removed.
  • platform/efl/fast/gradients/css3-linear-right-angle-gradients-expected.png: Removed.
  • platform/efl/fast/gradients/css3-radial-gradients-expected.png: Removed.
  • platform/efl/fast/gradients/css3-radial-gradients2-expected.png: Removed.
  • platform/efl/fast/gradients/css3-radial-gradients3-expected.png: Removed.
  • platform/efl/fast/gradients/css3-repeating-linear-gradients-expected.png: Removed.
  • platform/efl/fast/gradients/css3-repeating-linear-gradients2-expected.png: Removed.
  • platform/efl/fast/gradients/css3-repeating-radial-gradients-expected.png: Removed.
  • platform/efl/fast/gradients/generated-gradients-expected.png: Removed.
  • platform/efl/fast/gradients/generated-gradients-expected.txt: Removed.
  • platform/efl/fast/gradients/gradient-after-transparent-border-expected.png: Removed.
  • platform/efl/fast/gradients/list-item-gradient-expected.png: Removed.
  • platform/efl/fast/gradients/list-item-gradient-expected.txt: Removed.
  • platform/efl/fast/gradients/radial-centered-expected.png: Removed.
  • platform/efl/fast/gradients/radial-centered-expected.txt: Removed.
  • platform/efl/fast/gradients/simple-gradients-expected.png: Removed.
  • platform/efl/fast/gradients/simple-gradients-expected.txt: Removed.
  • platform/efl/fast/gradients/unprefixed-color-stop-units-expected.png: Removed.
  • platform/efl/fast/gradients/unprefixed-color-stops-expected.png: Removed.
  • platform/efl/fast/gradients/unprefixed-generated-gradients-expected.png: Removed.
  • platform/efl/fast/gradients/unprefixed-linear-angle-gradients-expected.png: Removed.
  • platform/efl/fast/gradients/unprefixed-linear-right-angle-gradients-expected.png: Removed.
  • platform/efl/fast/gradients/unprefixed-list-item-gradient-expected.png: Removed.
  • platform/efl/fast/gradients/unprefixed-radial-gradients-expected.png: Removed.
  • platform/efl/fast/gradients/unprefixed-radial-gradients2-expected.png: Removed.
  • platform/efl/fast/gradients/unprefixed-radial-gradients3-expected.png: Removed.
  • platform/efl/fast/gradients/unprefixed-repeating-end-fill-expected.png: Removed.
  • platform/efl/fast/gradients/unprefixed-repeating-linear-gradient-expected.png: Removed.
  • platform/efl/fast/gradients/unprefixed-repeating-radial-gradients-expected.png: Removed.
  • platform/efl/fast/gradients/unprefixed-zero-range-repeating-gradient-hang-expected.png: Removed.
  • platform/efl/fast/html: Removed.
  • platform/efl/fast/html/details-add-child-1-expected.png: Removed.
  • platform/efl/fast/html/details-add-child-1-expected.txt: Removed.
  • platform/efl/fast/html/details-add-child-2-expected.png: Removed.
  • platform/efl/fast/html/details-add-child-2-expected.txt: Removed.
  • platform/efl/fast/html/details-add-details-child-1-expected.png: Removed.
  • platform/efl/fast/html/details-add-details-child-1-expected.txt: Removed.
  • platform/efl/fast/html/details-add-details-child-2-expected.png: Removed.
  • platform/efl/fast/html/details-add-details-child-2-expected.txt: Removed.
  • platform/efl/fast/html/details-add-summary-1-and-click-expected.png: Removed.
  • platform/efl/fast/html/details-add-summary-1-and-click-expected.txt: Removed.
  • platform/efl/fast/html/details-add-summary-1-expected.png: Removed.
  • platform/efl/fast/html/details-add-summary-1-expected.txt: Removed.
  • platform/efl/fast/html/details-add-summary-10-and-click-expected.png: Removed.
  • platform/efl/fast/html/details-add-summary-10-and-click-expected.txt: Removed.
  • platform/efl/fast/html/details-add-summary-10-expected.png: Removed.
  • platform/efl/fast/html/details-add-summary-10-expected.txt: Removed.
  • platform/efl/fast/html/details-add-summary-2-and-click-expected.png: Removed.
  • platform/efl/fast/html/details-add-summary-2-and-click-expected.txt: Removed.
  • platform/efl/fast/html/details-add-summary-2-expected.png: Removed.
  • platform/efl/fast/html/details-add-summary-2-expected.txt: Removed.
  • platform/efl/fast/html/details-add-summary-3-and-click-expected.png: Removed.
  • platform/efl/fast/html/details-add-summary-3-and-click-expected.txt: Removed.
  • platform/efl/fast/html/details-add-summary-3-expected.png: Removed.
  • platform/efl/fast/html/details-add-summary-3-expected.txt: Removed.
  • platform/efl/fast/html/details-add-summary-4-and-click-expected.png: Removed.
  • platform/efl/fast/html/details-add-summary-4-and-click-expected.txt: Removed.
  • platform/efl/fast/html/details-add-summary-4-expected.png: Removed.
  • platform/efl/fast/html/details-add-summary-4-expected.txt: Removed.
  • platform/efl/fast/html/details-add-summary-5-and-click-expected.png: Removed.
  • platform/efl/fast/html/details-add-summary-5-and-click-expected.txt: Removed.
  • platform/efl/fast/html/details-add-summary-5-expected.png: Removed.
  • platform/efl/fast/html/details-add-summary-5-expected.txt: Removed.
  • platform/efl/fast/html/details-add-summary-6-and-click-expected.png: Removed.
  • platform/efl/fast/html/details-add-summary-6-and-click-expected.txt: Removed.
  • platform/efl/fast/html/details-add-summary-6-expected.png: Removed.
  • platform/efl/fast/html/details-add-summary-6-expected.txt: Removed.
  • platform/efl/fast/html/details-add-summary-7-and-click-expected.png: Removed.
  • platform/efl/fast/html/details-add-summary-7-and-click-expected.txt: Removed.
  • platform/efl/fast/html/details-add-summary-7-expected.png: Removed.
  • platform/efl/fast/html/details-add-summary-7-expected.txt: Removed.
  • platform/efl/fast/html/details-add-summary-8-and-click-expected.png: Removed.
  • platform/efl/fast/html/details-add-summary-8-and-click-expected.txt: Removed.
  • platform/efl/fast/html/details-add-summary-8-expected.png: Removed.
  • platform/efl/fast/html/details-add-summary-8-expected.txt: Removed.
  • platform/efl/fast/html/details-add-summary-9-and-click-expected.png: Removed.
  • platform/efl/fast/html/details-add-summary-9-and-click-expected.txt: Removed.
  • platform/efl/fast/html/details-add-summary-9-expected.png: Removed.
  • platform/efl/fast/html/details-add-summary-9-expected.txt: Removed.
  • platform/efl/fast/html/details-add-summary-child-1-expected.png: Removed.
  • platform/efl/fast/html/details-add-summary-child-1-expected.txt: Removed.
  • platform/efl/fast/html/details-add-summary-child-2-expected.png: Removed.
  • platform/efl/fast/html/details-add-summary-child-2-expected.txt: Removed.
  • platform/efl/fast/html/details-marker-style-expected.png: Removed.
  • platform/efl/fast/html/details-marker-style-expected.txt: Removed.
  • platform/efl/fast/html/details-nested-1-expected.png: Removed.
  • platform/efl/fast/html/details-nested-1-expected.txt: Removed.
  • platform/efl/fast/html/details-nested-2-expected.png: Removed.
  • platform/efl/fast/html/details-nested-2-expected.txt: Removed.
  • platform/efl/fast/html/details-no-summary1-expected.png: Removed.
  • platform/efl/fast/html/details-no-summary1-expected.txt: Removed.
  • platform/efl/fast/html/details-no-summary2-expected.png: Removed.
  • platform/efl/fast/html/details-no-summary2-expected.txt: Removed.
  • platform/efl/fast/html/details-no-summary3-expected.png: Removed.
  • platform/efl/fast/html/details-no-summary3-expected.txt: Removed.
  • platform/efl/fast/html/details-no-summary4-expected.png: Removed.
  • platform/efl/fast/html/details-no-summary4-expected.txt: Removed.
  • platform/efl/fast/html/details-open-javascript-expected.png: Removed.
  • platform/efl/fast/html/details-open-javascript-expected.txt: Removed.
  • platform/efl/fast/html/details-open1-expected.png: Removed.
  • platform/efl/fast/html/details-open1-expected.txt: Removed.
  • platform/efl/fast/html/details-open2-expected.png: Removed.
  • platform/efl/fast/html/details-open2-expected.txt: Removed.
  • platform/efl/fast/html/details-open3-expected.png: Removed.
  • platform/efl/fast/html/details-open3-expected.txt: Removed.
  • platform/efl/fast/html/details-open4-expected.png: Removed.
  • platform/efl/fast/html/details-open4-expected.txt: Removed.
  • platform/efl/fast/html/details-open5-expected.png: Removed.
  • platform/efl/fast/html/details-open5-expected.txt: Removed.
  • platform/efl/fast/html/details-open6-expected.png: Removed.
  • platform/efl/fast/html/details-open6-expected.txt: Removed.
  • platform/efl/fast/html/details-position-expected.png: Removed.
  • platform/efl/fast/html/details-position-expected.txt: Removed.
  • platform/efl/fast/html/details-remove-child-1-expected.png: Removed.
  • platform/efl/fast/html/details-remove-child-1-expected.txt: Removed.
  • platform/efl/fast/html/details-remove-child-2-expected.png: Removed.
  • platform/efl/fast/html/details-remove-child-2-expected.txt: Removed.
  • platform/efl/fast/html/details-remove-summary-1-and-click-expected.png: Removed.
  • platform/efl/fast/html/details-remove-summary-1-and-click-expected.txt: Removed.
  • platform/efl/fast/html/details-remove-summary-1-expected.png: Removed.
  • platform/efl/fast/html/details-remove-summary-1-expected.txt: Removed.
  • platform/efl/fast/html/details-remove-summary-2-and-click-expected.png: Removed.
  • platform/efl/fast/html/details-remove-summary-2-and-click-expected.txt: Removed.
  • platform/efl/fast/html/details-remove-summary-2-expected.png: Removed.
  • platform/efl/fast/html/details-remove-summary-2-expected.txt: Removed.
  • platform/efl/fast/html/details-remove-summary-3-and-click-expected.png: Removed.
  • platform/efl/fast/html/details-remove-summary-3-and-click-expected.txt: Removed.
  • platform/efl/fast/html/details-remove-summary-3-expected.png: Removed.
  • platform/efl/fast/html/details-remove-summary-3-expected.txt: Removed.
  • platform/efl/fast/html/details-remove-summary-4-and-click-expected.png: Removed.
  • platform/efl/fast/html/details-remove-summary-4-and-click-expected.txt: Removed.
  • platform/efl/fast/html/details-remove-summary-4-expected.png: Removed.
  • platform/efl/fast/html/details-remove-summary-4-expected.txt: Removed.
  • platform/efl/fast/html/details-remove-summary-5-and-click-expected.png: Removed.
  • platform/efl/fast/html/details-remove-summary-5-and-click-expected.txt: Removed.
  • platform/efl/fast/html/details-remove-summary-5-expected.png: Removed.
  • platform/efl/fast/html/details-remove-summary-5-expected.txt: Removed.
  • platform/efl/fast/html/details-remove-summary-6-and-click-expected.png: Removed.
  • platform/efl/fast/html/details-remove-summary-6-and-click-expected.txt: Removed.
  • platform/efl/fast/html/details-remove-summary-6-expected.png: Removed.
  • platform/efl/fast/html/details-remove-summary-6-expected.txt: Removed.
  • platform/efl/fast/html/details-remove-summary-child-1-expected.png: Removed.
  • platform/efl/fast/html/details-remove-summary-child-1-expected.txt: Removed.
  • platform/efl/fast/html/details-remove-summary-child-2-expected.png: Removed.
  • platform/efl/fast/html/details-remove-summary-child-2-expected.txt: Removed.
  • platform/efl/fast/html/details-replace-summary-child-expected.png: Removed.
  • platform/efl/fast/html/details-replace-summary-child-expected.txt: Removed.
  • platform/efl/fast/html/details-replace-text-expected.png: Removed.
  • platform/efl/fast/html/details-replace-text-expected.txt: Removed.
  • platform/efl/fast/html/details-writing-mode-expected.png: Removed.
  • platform/efl/fast/html/details-writing-mode-expected.txt: Removed.
  • platform/efl/fast/html/font-weight-bold-for-b-and-strong-expected.png: Removed.
  • platform/efl/fast/html/font-weight-bold-for-b-and-strong-expected.txt: Removed.
  • platform/efl/fast/html/keygen-expected.png: Removed.
  • platform/efl/fast/html/keygen-expected.txt: Removed.
  • platform/efl/fast/html/link-rel-stylesheet-expected.png: Removed.
  • platform/efl/fast/html/link-rel-stylesheet-expected.txt: Removed.
  • platform/efl/fast/html/listing-expected.png: Removed.
  • platform/efl/fast/html/listing-expected.txt: Removed.
  • platform/efl/fast/images: Removed.
  • platform/efl/fast/images/animated-gif-with-offsets-expected.png: Removed.
  • platform/efl/fast/images/animated-gif-with-offsets-expected.txt: Removed.
  • platform/efl/fast/images/embed-image-expected.txt: Removed.
  • platform/efl/fast/images/exif-orientation-css-expected.png: Removed.
  • platform/efl/fast/images/exif-orientation-expected.png: Removed.
  • platform/efl/fast/images/exif-orientation-image-document-expected.png: Removed.
  • platform/efl/fast/images/favicon-as-image-expected.png: Removed.
  • platform/efl/fast/images/favicon-as-image-expected.txt: Removed.
  • platform/efl/fast/images/gif-large-checkerboard-expected.png: Removed.
  • platform/efl/fast/images/gray-scale-jpeg-with-color-profile-expected.png: Removed.
  • platform/efl/fast/images/gray-scale-png-with-color-profile-expected.png: Removed.
  • platform/efl/fast/images/icon-decoding-expected.png: Removed.
  • platform/efl/fast/images/image-controls-basic-expected.txt: Removed.
  • platform/efl/fast/images/image-css3-content-data-expected.png: Removed.
  • platform/efl/fast/images/image-map-anchor-children-expected.png: Removed.
  • platform/efl/fast/images/image-map-anchor-children-expected.txt: Removed.
  • platform/efl/fast/images/imagemap-circle-focus-ring-expected.png: Removed.
  • platform/efl/fast/images/imagemap-circle-focus-ring-expected.txt: Removed.
  • platform/efl/fast/images/imagemap-focus-ring-expected.png: Removed.
  • platform/efl/fast/images/imagemap-focus-ring-expected.txt: Removed.
  • platform/efl/fast/images/imagemap-focus-ring-outline-color-expected.png: Removed.
  • platform/efl/fast/images/imagemap-focus-ring-outline-color-expected.txt: Removed.
  • platform/efl/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.png: Removed.
  • platform/efl/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.txt: Removed.
  • platform/efl/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.png: Removed.
  • platform/efl/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.txt: Removed.
  • platform/efl/fast/images/imagemap-focus-ring-zero-outline-width-expected.png: Removed.
  • platform/efl/fast/images/imagemap-focus-ring-zero-outline-width-expected.txt: Removed.
  • platform/efl/fast/images/imagemap-focus-ring-zoom-expected.png: Removed.
  • platform/efl/fast/images/imagemap-polygon-focus-ring-expected.png: Removed.
  • platform/efl/fast/images/imagemap-polygon-focus-ring-expected.txt: Removed.
  • platform/efl/fast/images/object-image-expected.png: Removed.
  • platform/efl/fast/images/object-image-expected.txt: Removed.
  • platform/efl/fast/images/paint-subrect-expected.png: Removed.
  • platform/efl/fast/images/paint-subrect-grid-expected.png: Removed.
  • platform/efl/fast/images/pixel-crack-image-background-webkit-transform-scale-expected.png: Removed.
  • platform/efl/fast/images/pixel-crack-image-background-webkit-transform-scale-expected.txt: Removed.
  • platform/efl/fast/images/png-suite: Removed.
  • platform/efl/fast/images/png-suite/test-expected.png: Removed.
  • platform/efl/fast/images/rgb-jpeg-with-adobe-marker-only-expected.png: Removed.
  • platform/efl/fast/images/rgb-png-with-cmyk-color-profile-expected.png: Removed.
  • platform/efl/fast/images/support-broken-image-delegate-expected.txt: Removed.
  • platform/efl/fast/images/ycbcr-with-cmyk-color-profile-expected.png: Removed.
  • platform/efl/fast/inline: Removed.
  • platform/efl/fast/inline-block: Removed.
  • platform/efl/fast/inline-block/001-expected.png: Removed.
  • platform/efl/fast/inline-block/001-expected.txt: Removed.
  • platform/efl/fast/inline-block/002-expected.png: Removed.
  • platform/efl/fast/inline-block/002-expected.txt: Removed.
  • platform/efl/fast/inline-block/003-expected.png: Removed.
  • platform/efl/fast/inline-block/003-expected.txt: Removed.
  • platform/efl/fast/inline-block/004-expected.png: Removed.
  • platform/efl/fast/inline-block/005-expected.png: Removed.
  • platform/efl/fast/inline-block/006-expected.png: Removed.
  • platform/efl/fast/inline-block/006-expected.txt: Removed.
  • platform/efl/fast/inline-block/14498-positionForCoordinates-expected.png: Removed.
  • platform/efl/fast/inline-block/14498-positionForCoordinates-expected.txt: Removed.
  • platform/efl/fast/inline-block/contenteditable-baseline-expected.png: Removed.
  • platform/efl/fast/inline-block/contenteditable-baseline-expected.txt: Removed.
  • platform/efl/fast/inline-block/inline-block-vertical-align-expected.png: Removed.
  • platform/efl/fast/inline-block/inline-block-vertical-align-expected.txt: Removed.
  • platform/efl/fast/inline-block/overflow-clip-expected.png: Removed.
  • platform/efl/fast/inline-block/overflow-clip-expected.txt: Removed.
  • platform/efl/fast/inline-block/tricky-baseline-expected.png: Removed.
  • platform/efl/fast/inline-block/tricky-baseline-expected.txt: Removed.
  • platform/efl/fast/inline/001-expected.png: Removed.
  • platform/efl/fast/inline/001-expected.txt: Removed.
  • platform/efl/fast/inline/002-expected.png: Removed.
  • platform/efl/fast/inline/002-expected.txt: Removed.
  • platform/efl/fast/inline/25277-2-expected.png: Removed.
  • platform/efl/fast/inline/25277-2-expected.txt: Removed.
  • platform/efl/fast/inline/25277-expected.png: Removed.
  • platform/efl/fast/inline/25277-expected.txt: Removed.
  • platform/efl/fast/inline/absolute-positioned-inline-in-centred-block-expected.png: Removed.
  • platform/efl/fast/inline/absolute-positioned-inline-in-centred-block-expected.txt: Removed.
  • platform/efl/fast/inline/br-text-decoration-expected.png: Removed.
  • platform/efl/fast/inline/br-text-decoration-expected.txt: Removed.
  • platform/efl/fast/inline/continuation-outlines-expected.png: Removed.
  • platform/efl/fast/inline/continuation-outlines-expected.txt: Removed.
  • platform/efl/fast/inline/continuation-outlines-with-layers-2-expected.png: Removed.
  • platform/efl/fast/inline/continuation-outlines-with-layers-2-expected.txt: Removed.
  • platform/efl/fast/inline/continuation-outlines-with-layers-expected.png: Removed.
  • platform/efl/fast/inline/continuation-outlines-with-layers-expected.txt: Removed.
  • platform/efl/fast/inline/drawStyledEmptyInlines-expected.png: Removed.
  • platform/efl/fast/inline/drawStyledEmptyInlines-expected.txt: Removed.
  • platform/efl/fast/inline/drawStyledEmptyInlinesWithWS-expected.png: Removed.
  • platform/efl/fast/inline/drawStyledEmptyInlinesWithWS-expected.txt: Removed.
  • platform/efl/fast/inline/emptyInlinesWithinLists-expected.png: Removed.
  • platform/efl/fast/inline/emptyInlinesWithinLists-expected.txt: Removed.
  • platform/efl/fast/inline/inline-borders-with-bidi-override-expected.png: Removed.
  • platform/efl/fast/inline/inline-borders-with-bidi-override-expected.txt: Removed.
  • platform/efl/fast/inline/inline-box-background-expected.png: Removed.
  • platform/efl/fast/inline/inline-box-background-expected.txt: Removed.
  • platform/efl/fast/inline/inline-box-background-long-image-expected.png: Removed.
  • platform/efl/fast/inline/inline-box-background-long-image-expected.txt: Removed.
  • platform/efl/fast/inline/inline-box-background-repeat-x-expected.png: Removed.
  • platform/efl/fast/inline/inline-box-background-repeat-x-expected.txt: Removed.
  • platform/efl/fast/inline/inline-box-background-repeat-y-expected.png: Removed.
  • platform/efl/fast/inline/inline-box-background-repeat-y-expected.txt: Removed.
  • platform/efl/fast/inline/inline-continuation-borders-expected.png: Removed.
  • platform/efl/fast/inline/inline-continuation-borders-expected.txt: Removed.
  • platform/efl/fast/inline/inline-focus-ring-expected.png: Removed.
  • platform/efl/fast/inline/inline-focus-ring-expected.txt: Removed.
  • platform/efl/fast/inline/inline-padding-disables-text-quirk-expected.png: Removed.
  • platform/efl/fast/inline/inline-padding-disables-text-quirk-expected.txt: Removed.
  • platform/efl/fast/inline/inline-text-quirk-bpm-expected.png: Removed.
  • platform/efl/fast/inline/inline-text-quirk-bpm-expected.txt: Removed.
  • platform/efl/fast/inline/inline-wrap-with-parent-padding-expected.png: Removed.
  • platform/efl/fast/inline/inline-wrap-with-parent-padding-expected.txt: Removed.
  • platform/efl/fast/inline/justify-emphasis-inline-box-expected.png: Removed.
  • platform/efl/fast/inline/justify-emphasis-inline-box-expected.txt: Removed.
  • platform/efl/fast/inline/left-right-center-inline-alignment-in-ltr-and-rtl-blocks-expected.png: Removed.
  • platform/efl/fast/inline/left-right-center-inline-alignment-in-ltr-and-rtl-blocks-expected.txt: Removed.
  • platform/efl/fast/inline/long-wrapped-line-expected.png: Removed.
  • platform/efl/fast/inline/long-wrapped-line-expected.txt: Removed.
  • platform/efl/fast/inline/nested-top-alignment-expected.png: Removed.
  • platform/efl/fast/inline/nested-top-alignment-expected.txt: Removed.
  • platform/efl/fast/inline/outline-continuations-expected.png: Removed.
  • platform/efl/fast/inline/outline-continuations-expected.txt: Removed.
  • platform/efl/fast/inline/percentage-margins-expected.png: Removed.
  • platform/efl/fast/inline/percentage-margins-expected.txt: Removed.
  • platform/efl/fast/inline/positioned-object-between-replaced-elements-expected.png: Removed.
  • platform/efl/fast/inline/positioned-object-between-replaced-elements-expected.txt: Removed.
  • platform/efl/fast/inline/positionedLifetime-expected.png: Removed.
  • platform/efl/fast/inline/positionedLifetime-expected.txt: Removed.
  • platform/efl/fast/inline/styledEmptyInlinesWithBRs-expected.png: Removed.
  • platform/efl/fast/inline/styledEmptyInlinesWithBRs-expected.txt: Removed.
  • platform/efl/fast/inline/vertical-align-text-bottom-expected.png: Removed.
  • platform/efl/fast/inline/vertical-align-text-bottom-expected.txt: Removed.
  • platform/efl/fast/inspector-support: Removed.
  • platform/efl/fast/inspector-support/matchedrules-expected.png: Removed.
  • platform/efl/fast/inspector-support/matchedrules-expected.txt: Removed.
  • platform/efl/fast/invalid: Removed.
  • platform/efl/fast/invalid/001-expected.png: Removed.
  • platform/efl/fast/invalid/001-expected.txt: Removed.
  • platform/efl/fast/invalid/002-expected.png: Removed.
  • platform/efl/fast/invalid/002-expected.txt: Removed.
  • platform/efl/fast/invalid/003-expected.png: Removed.
  • platform/efl/fast/invalid/003-expected.txt: Removed.
  • platform/efl/fast/invalid/004-expected.png: Removed.
  • platform/efl/fast/invalid/004-expected.txt: Removed.
  • platform/efl/fast/invalid/005-expected.png: Removed.
  • platform/efl/fast/invalid/005-expected.txt: Removed.
  • platform/efl/fast/invalid/006-expected.png: Removed.
  • platform/efl/fast/invalid/006-expected.txt: Removed.
  • platform/efl/fast/invalid/007-expected.png: Removed.
  • platform/efl/fast/invalid/007-expected.txt: Removed.
  • platform/efl/fast/invalid/008-expected.png: Removed.
  • platform/efl/fast/invalid/008-expected.txt: Removed.
  • platform/efl/fast/invalid/009-expected.png: Removed.
  • platform/efl/fast/invalid/009-expected.txt: Removed.
  • platform/efl/fast/invalid/010-expected.png: Removed.
  • platform/efl/fast/invalid/010-expected.txt: Removed.
  • platform/efl/fast/invalid/011-expected.png: Removed.
  • platform/efl/fast/invalid/011-expected.txt: Removed.
  • platform/efl/fast/invalid/012-expected.png: Removed.
  • platform/efl/fast/invalid/012-expected.txt: Removed.
  • platform/efl/fast/invalid/013-expected.png: Removed.
  • platform/efl/fast/invalid/013-expected.txt: Removed.
  • platform/efl/fast/invalid/014-expected.png: Removed.
  • platform/efl/fast/invalid/014-expected.txt: Removed.
  • platform/efl/fast/invalid/015-expected.png: Removed.
  • platform/efl/fast/invalid/016-expected.png: Removed.
  • platform/efl/fast/invalid/016-expected.txt: Removed.
  • platform/efl/fast/invalid/017-expected.png: Removed.
  • platform/efl/fast/invalid/017-expected.txt: Removed.
  • platform/efl/fast/invalid/018-expected.png: Removed.
  • platform/efl/fast/invalid/018-expected.txt: Removed.
  • platform/efl/fast/invalid/019-expected.png: Removed.
  • platform/efl/fast/invalid/019-expected.txt: Removed.
  • platform/efl/fast/invalid/020-expected.png: Removed.
  • platform/efl/fast/invalid/020-expected.txt: Removed.
  • platform/efl/fast/invalid/021-expected.png: Removed.
  • platform/efl/fast/invalid/021-expected.txt: Removed.
  • platform/efl/fast/invalid/junk-data-expected.png: Removed.
  • platform/efl/fast/invalid/junk-data-expected.txt: Removed.
  • platform/efl/fast/invalid/missing-address-end-tag-expected.png: Removed.
  • platform/efl/fast/invalid/missing-address-end-tag-expected.txt: Removed.
  • platform/efl/fast/invalid/missing-dl-end-tag-expected.png: Removed.
  • platform/efl/fast/invalid/missing-dl-end-tag-expected.txt: Removed.
  • platform/efl/fast/invalid/missing-dt-end-tag-expected.png: Removed.
  • platform/efl/fast/invalid/missing-dt-end-tag-expected.txt: Removed.
  • platform/efl/fast/invalid/missing-end-tag-expected.png: Removed.
  • platform/efl/fast/invalid/missing-end-tag-expected.txt: Removed.
  • platform/efl/fast/invalid/missing-font-end-tag-expected.png: Removed.
  • platform/efl/fast/invalid/missing-font-end-tag-expected.txt: Removed.
  • platform/efl/fast/invalid/nestedh3s-expected.png: Removed.
  • platform/efl/fast/invalid/nestedh3s-expected.txt: Removed.
  • platform/efl/fast/invalid/table-inside-stray-table-content-expected.png: Removed.
  • platform/efl/fast/invalid/table-inside-stray-table-content-expected.txt: Removed.
  • platform/efl/fast/invalid/table-residual-style-crash-expected.png: Removed.
  • platform/efl/fast/invalid/td-inside-object-expected.png: Removed.
  • platform/efl/fast/invalid/td-inside-object-expected.txt: Removed.
  • platform/efl/fast/layers: Removed.
  • platform/efl/fast/layers/add-layer-with-nested-stacking-expected.png: Removed.
  • platform/efl/fast/layers/inline-dirty-z-order-lists-expected.png: Removed.
  • platform/efl/fast/layers/inline-dirty-z-order-lists-expected.txt: Removed.
  • platform/efl/fast/layers/layer-content-visibility-change-expected.png: Removed.
  • platform/efl/fast/layers/layer-visibility-expected.png: Removed.
  • platform/efl/fast/layers/layer-visibility-expected.txt: Removed.
  • platform/efl/fast/layers/layer-visibility-sublayer-expected.png: Removed.
  • platform/efl/fast/layers/layer-visibility-sublayer-expected.txt: Removed.
  • platform/efl/fast/layers/normal-flow-hit-test-expected.png: Removed.
  • platform/efl/fast/layers/normal-flow-hit-test-expected.txt: Removed.
  • platform/efl/fast/layers/opacity-outline-expected.png: Removed.
  • platform/efl/fast/layers/opacity-outline-expected.txt: Removed.
  • platform/efl/fast/layers/opacity-stacking-expected.png: Removed.
  • platform/efl/fast/layers/opacity-transforms-expected.png: Removed.
  • platform/efl/fast/layers/opacity-transforms-expected.txt: Removed.
  • platform/efl/fast/layers/overflow-scroll-auto-switch-expected.png: Removed.
  • platform/efl/fast/layers/overflow-scroll-auto-switch-expected.txt: Removed.
  • platform/efl/fast/layers/positioned-inside-root-with-margins-expected.png: Removed.
  • platform/efl/fast/layers/remove-layer-with-nested-stacking-expected.png: Removed.
  • platform/efl/fast/layers/remove-layer-with-nested-stacking-expected.txt: Removed.
  • platform/efl/fast/layers/remove-only-this-layer-update-expected.png: Removed.
  • platform/efl/fast/layers/remove-only-this-layer-update-expected.txt: Removed.
  • platform/efl/fast/layers/scroll-rect-to-visible-expected.png: Removed.
  • platform/efl/fast/layers/scroll-rect-to-visible-expected.txt: Removed.
  • platform/efl/fast/layers/scroll-with-transform-composited-layer-expected.png: Removed.
  • platform/efl/fast/layers/scroll-with-transform-layer-expected.png: Removed.
  • platform/efl/fast/layers/video-layer-expected.png: Removed.
  • platform/efl/fast/layers/video-layer-expected.txt: Removed.
  • platform/efl/fast/layers/zindex-inherit-expected.png: Removed.
  • platform/efl/fast/layers/zindex-inherit-expected.txt: Removed.
  • platform/efl/fast/layers/zindex-ridonkulous-expected.png: Removed.
  • platform/efl/fast/line-grid: Removed.
  • platform/efl/fast/line-grid/line-align-left-edges-expected.png: Removed.
  • platform/efl/fast/line-grid/line-align-left-edges-expected.txt: Removed.
  • platform/efl/fast/line-grid/line-align-right-edges-expected.png: Removed.
  • platform/efl/fast/line-grid/line-align-right-edges-expected.txt: Removed.
  • platform/efl/fast/line-grid/line-grid-contains-value-expected.png: Removed.
  • platform/efl/fast/line-grid/line-grid-contains-value-expected.txt: Removed.
  • platform/efl/fast/line-grid/line-grid-floating-expected.png: Removed.
  • platform/efl/fast/line-grid/line-grid-floating-expected.txt: Removed.
  • platform/efl/fast/line-grid/line-grid-inside-columns-expected.png: Removed.
  • platform/efl/fast/line-grid/line-grid-inside-columns-expected.txt: Removed.
  • platform/efl/fast/line-grid/line-grid-into-columns-expected.png: Removed.
  • platform/efl/fast/line-grid/line-grid-into-columns-expected.txt: Removed.
  • platform/efl/fast/line-grid/line-grid-into-floats-expected.png: Removed.
  • platform/efl/fast/line-grid/line-grid-into-floats-expected.txt: Removed.
  • platform/efl/fast/line-grid/line-grid-positioned-expected.png: Removed.
  • platform/efl/fast/line-grid/line-grid-positioned-expected.txt: Removed.
  • platform/efl/fast/lists: Removed.
  • platform/efl/fast/lists/001-expected.png: Removed.
  • platform/efl/fast/lists/001-expected.txt: Removed.
  • platform/efl/fast/lists/001-vertical-expected.png: Removed.
  • platform/efl/fast/lists/001-vertical-expected.txt: Removed.
  • platform/efl/fast/lists/002-expected.png: Removed.
  • platform/efl/fast/lists/002-expected.txt: Removed.
  • platform/efl/fast/lists/002-vertical-expected.png: Removed.
  • platform/efl/fast/lists/002-vertical-expected.txt: Removed.
  • platform/efl/fast/lists/003-expected.png: Removed.
  • platform/efl/fast/lists/003-expected.txt: Removed.
  • platform/efl/fast/lists/003-vertical-expected.png: Removed.
  • platform/efl/fast/lists/003-vertical-expected.txt: Removed.
  • platform/efl/fast/lists/004-expected.png: Removed.
  • platform/efl/fast/lists/004-expected.txt: Removed.
  • platform/efl/fast/lists/005-expected.png: Removed.
  • platform/efl/fast/lists/005-expected.txt: Removed.
  • platform/efl/fast/lists/005-vertical-expected.png: Removed.
  • platform/efl/fast/lists/005-vertical-expected.txt: Removed.
  • platform/efl/fast/lists/006-expected.png: Removed.
  • platform/efl/fast/lists/006-expected.txt: Removed.
  • platform/efl/fast/lists/006-vertical-expected.png: Removed.
  • platform/efl/fast/lists/006-vertical-expected.txt: Removed.
  • platform/efl/fast/lists/007-expected.png: Removed.
  • platform/efl/fast/lists/007-expected.txt: Removed.
  • platform/efl/fast/lists/007-vertical-expected.png: Removed.
  • platform/efl/fast/lists/007-vertical-expected.txt: Removed.
  • platform/efl/fast/lists/008-expected.png: Removed.
  • platform/efl/fast/lists/008-expected.txt: Removed.
  • platform/efl/fast/lists/008-vertical-expected.png: Removed.
  • platform/efl/fast/lists/008-vertical-expected.txt: Removed.
  • platform/efl/fast/lists/009-expected.png: Removed.
  • platform/efl/fast/lists/009-expected.txt: Removed.
  • platform/efl/fast/lists/009-vertical-expected.png: Removed.
  • platform/efl/fast/lists/009-vertical-expected.txt: Removed.
  • platform/efl/fast/lists/anonymous-items-expected.png: Removed.
  • platform/efl/fast/lists/anonymous-items-expected.txt: Removed.
  • platform/efl/fast/lists/big-list-marker-expected.png: Removed.
  • platform/efl/fast/lists/big-list-marker-expected.txt: Removed.
  • platform/efl/fast/lists/dynamic-marker-crash-expected.png: Removed.
  • platform/efl/fast/lists/dynamic-marker-crash-expected.txt: Removed.
  • platform/efl/fast/lists/inline-before-content-after-list-marker-expected.png: Removed.
  • platform/efl/fast/lists/inlineBoxWrapperNullCheck-expected.png: Removed.
  • platform/efl/fast/lists/inlineBoxWrapperNullCheck-expected.txt: Removed.
  • platform/efl/fast/lists/li-br-expected.png: Removed.
  • platform/efl/fast/lists/li-br-expected.txt: Removed.
  • platform/efl/fast/lists/li-style-alpha-huge-value-crash-expected.png: Removed.
  • platform/efl/fast/lists/li-style-alpha-huge-value-crash-expected.txt: Removed.
  • platform/efl/fast/lists/list-item-line-height-expected.png: Removed.
  • platform/efl/fast/lists/list-item-line-height-expected.txt: Removed.
  • platform/efl/fast/lists/list-marker-before-content-table-expected.png: Removed.
  • platform/efl/fast/lists/list-marker-before-content-table-expected.txt: Removed.
  • platform/efl/fast/lists/list-marker-with-line-height-expected.png: Removed.
  • platform/efl/fast/lists/list-marker-with-line-height-expected.txt: Removed.
  • platform/efl/fast/lists/list-style-none-crash-expected.png: Removed.
  • platform/efl/fast/lists/list-style-none-crash-expected.txt: Removed.
  • platform/efl/fast/lists/marker-before-empty-inline-expected.png: Removed.
  • platform/efl/fast/lists/marker-before-empty-inline-expected.txt: Removed.
  • platform/efl/fast/lists/marker-image-error-expected.png: Removed.
  • platform/efl/fast/lists/marker-image-error-expected.txt: Removed.
  • platform/efl/fast/lists/markers-in-selection-expected.png: Removed.
  • platform/efl/fast/lists/markers-in-selection-expected.txt: Removed.
  • platform/efl/fast/lists/numeric-markers-outside-list-expected.png: Removed.
  • platform/efl/fast/lists/numeric-markers-outside-list-expected.txt: Removed.
  • platform/efl/fast/lists/ol-display-types-expected.png: Removed.
  • platform/efl/fast/lists/ol-display-types-expected.txt: Removed.
  • platform/efl/fast/lists/ol-start-dynamic-expected.png: Removed.
  • platform/efl/fast/lists/ol-start-dynamic-expected.txt: Removed.
  • platform/efl/fast/lists/ol-start-parsing-expected.png: Removed.
  • platform/efl/fast/lists/ol-start-parsing-expected.txt: Removed.
  • platform/efl/fast/lists/olstart-expected.png: Removed.
  • platform/efl/fast/lists/olstart-expected.txt: Removed.
  • platform/efl/fast/lists/ordered-list-with-no-ol-tag-expected.png: Removed.
  • platform/efl/fast/lists/ordered-list-with-no-ol-tag-expected.txt: Removed.
  • platform/efl/fast/lists/scrolled-marker-paint-expected.png: Removed.
  • platform/efl/fast/lists/scrolled-marker-paint-expected.txt: Removed.
  • platform/efl/fast/loader: Removed.
  • platform/efl/fast/loader/text-document-wrapping-expected.png: Removed.
  • platform/efl/fast/loader/text-document-wrapping-expected.txt: Removed.
  • platform/efl/fast/media: Removed.
  • platform/efl/fast/media/mq-resolution-dpi-dpcm-warning-expected.txt: Removed.
  • platform/efl/fast/media/mq-resolution-expected.txt: Removed.
  • platform/efl/fast/media/w3c: Removed.
  • platform/efl/fast/media/w3c/test_media_queries-expected.txt: Removed.
  • platform/efl/fast/multicol: Removed.
  • platform/efl/fast/multicol/block-axis-horizontal-bt-expected.png: Removed.
  • platform/efl/fast/multicol/block-axis-horizontal-bt-expected.txt: Removed.
  • platform/efl/fast/multicol/block-axis-horizontal-tb-expected.png: Removed.
  • platform/efl/fast/multicol/block-axis-horizontal-tb-expected.txt: Removed.
  • platform/efl/fast/multicol/block-axis-vertical-lr-expected.png: Removed.
  • platform/efl/fast/multicol/block-axis-vertical-lr-expected.txt: Removed.
  • platform/efl/fast/multicol/block-axis-vertical-rl-expected.png: Removed.
  • platform/efl/fast/multicol/block-axis-vertical-rl-expected.txt: Removed.
  • platform/efl/fast/multicol/border-padding-pagination-expected.png: Removed.
  • platform/efl/fast/multicol/border-padding-pagination-expected.txt: Removed.
  • platform/efl/fast/multicol/client-rects-expected.png: Removed.
  • platform/efl/fast/multicol/client-rects-expected.txt: Removed.
  • platform/efl/fast/multicol/client-rects-spanners-complex-expected.png: Removed.
  • platform/efl/fast/multicol/client-rects-spanners-complex-expected.txt: Removed.
  • platform/efl/fast/multicol/client-rects-spanners-expected.png: Removed.
  • platform/efl/fast/multicol/client-rects-spanners-expected.txt: Removed.
  • platform/efl/fast/multicol/column-break-with-balancing-expected.png: Removed.
  • platform/efl/fast/multicol/column-break-with-balancing-expected.txt: Removed.
  • platform/efl/fast/multicol/column-count-with-rules-expected.png: Removed.
  • platform/efl/fast/multicol/column-count-with-rules-expected.txt: Removed.
  • platform/efl/fast/multicol/column-rules-expected.png: Removed.
  • platform/efl/fast/multicol/column-rules-expected.txt: Removed.
  • platform/efl/fast/multicol/column-rules-stacking-expected.png: Removed.
  • platform/efl/fast/multicol/column-rules-stacking-expected.txt: Removed.
  • platform/efl/fast/multicol/columns-shorthand-parsing-expected.png: Removed.
  • platform/efl/fast/multicol/columns-shorthand-parsing-expected.txt: Removed.
  • platform/efl/fast/multicol/flipped-blocks-border-after-expected.png: Removed.
  • platform/efl/fast/multicol/float-avoidance-expected.png: Removed.
  • platform/efl/fast/multicol/float-avoidance-expected.txt: Removed.
  • platform/efl/fast/multicol/float-multicol-expected.png: Removed.
  • platform/efl/fast/multicol/float-multicol-expected.txt: Removed.
  • platform/efl/fast/multicol/float-paginate-complex-expected.png: Removed.
  • platform/efl/fast/multicol/float-paginate-complex-expected.txt: Removed.
  • platform/efl/fast/multicol/float-paginate-empty-lines-expected.png: Removed.
  • platform/efl/fast/multicol/float-paginate-empty-lines-expected.txt: Removed.
  • platform/efl/fast/multicol/float-paginate-expected.png: Removed.
  • platform/efl/fast/multicol/float-paginate-expected.txt: Removed.
  • platform/efl/fast/multicol/layers-in-multicol-expected.png: Removed.
  • platform/efl/fast/multicol/layers-in-multicol-expected.txt: Removed.
  • platform/efl/fast/multicol/layers-split-across-columns-expected.png: Removed.
  • platform/efl/fast/multicol/layers-split-across-columns-expected.txt: Removed.
  • platform/efl/fast/multicol/margin-collapse-expected.png: Removed.
  • platform/efl/fast/multicol/margin-collapse-expected.txt: Removed.
  • platform/efl/fast/multicol/max-height-columns-block-expected.png: Removed.
  • platform/efl/fast/multicol/max-height-columns-block-expected.txt: Removed.
  • platform/efl/fast/multicol/nested-columns-expected.png: Removed.
  • platform/efl/fast/multicol/nested-columns-expected.txt: Removed.
  • platform/efl/fast/multicol/newmulticol: Removed.
  • platform/efl/fast/multicol/newmulticol/client-rects-expected.png: Removed.
  • platform/efl/fast/multicol/newmulticol/client-rects-expected.txt: Removed.
  • platform/efl/fast/multicol/overflow-across-columns-expected.png: Removed.
  • platform/efl/fast/multicol/overflow-across-columns-expected.txt: Removed.
  • platform/efl/fast/multicol/overflow-across-columns-percent-height-expected.png: Removed.
  • platform/efl/fast/multicol/overflow-across-columns-percent-height-expected.txt: Removed.
  • platform/efl/fast/multicol/overflow-unsplittable-expected.png: Removed.
  • platform/efl/fast/multicol/overflow-unsplittable-expected.txt: Removed.
  • platform/efl/fast/multicol/paginate-block-replaced-expected.png: Removed.
  • platform/efl/fast/multicol/paginate-block-replaced-expected.txt: Removed.
  • platform/efl/fast/multicol/pagination: Removed.
  • platform/efl/fast/multicol/pagination-h-horizontal-bt-expected.png: Removed.
  • platform/efl/fast/multicol/pagination-h-horizontal-tb-expected.png: Removed.
  • platform/efl/fast/multicol/pagination-h-vertical-lr-expected.png: Removed.
  • platform/efl/fast/multicol/pagination-h-vertical-rl-expected.png: Removed.
  • platform/efl/fast/multicol/pagination-v-horizontal-bt-expected.png: Removed.
  • platform/efl/fast/multicol/pagination-v-horizontal-tb-expected.png: Removed.
  • platform/efl/fast/multicol/pagination-v-vertical-lr-expected.png: Removed.
  • platform/efl/fast/multicol/pagination-v-vertical-rl-expected.png: Removed.
  • platform/efl/fast/multicol/pagination/BottomToTop-bt-expected.png: Removed.
  • platform/efl/fast/multicol/pagination/BottomToTop-bt-expected.txt: Removed.
  • platform/efl/fast/multicol/pagination/BottomToTop-lr-expected.png: Removed.
  • platform/efl/fast/multicol/pagination/BottomToTop-lr-expected.txt: Removed.
  • platform/efl/fast/multicol/pagination/BottomToTop-rl-expected.png: Removed.
  • platform/efl/fast/multicol/pagination/BottomToTop-rl-expected.txt: Removed.
  • platform/efl/fast/multicol/pagination/BottomToTop-tb-expected.png: Removed.
  • platform/efl/fast/multicol/pagination/BottomToTop-tb-expected.txt: Removed.
  • platform/efl/fast/multicol/pagination/LeftToRight-bt-expected.png: Removed.
  • platform/efl/fast/multicol/pagination/LeftToRight-bt-expected.txt: Removed.
  • platform/efl/fast/multicol/pagination/LeftToRight-lr-expected.png: Removed.
  • platform/efl/fast/multicol/pagination/LeftToRight-lr-expected.txt: Removed.
  • platform/efl/fast/multicol/pagination/LeftToRight-rl-expected.png: Removed.
  • platform/efl/fast/multicol/pagination/LeftToRight-rl-expected.txt: Removed.
  • platform/efl/fast/multicol/pagination/LeftToRight-tb-expected.png: Removed.
  • platform/efl/fast/multicol/pagination/LeftToRight-tb-expected.txt: Removed.
  • platform/efl/fast/multicol/pagination/LeftToRight-tb-hittest-expected.png: Removed.
  • platform/efl/fast/multicol/pagination/LeftToRight-tb-hittest-expected.txt: Removed.
  • platform/efl/fast/multicol/pagination/RightToLeft-bt-expected.png: Removed.
  • platform/efl/fast/multicol/pagination/RightToLeft-bt-expected.txt: Removed.
  • platform/efl/fast/multicol/pagination/RightToLeft-lr-expected.png: Removed.
  • platform/efl/fast/multicol/pagination/RightToLeft-lr-expected.txt: Removed.
  • platform/efl/fast/multicol/pagination/RightToLeft-max-width-expected.txt: Removed.
  • platform/efl/fast/multicol/pagination/RightToLeft-rl-dynamic-expected.png: Removed.
  • platform/efl/fast/multicol/pagination/RightToLeft-rl-dynamic-expected.txt: Removed.
  • platform/efl/fast/multicol/pagination/RightToLeft-rl-expected.png: Removed.
  • platform/efl/fast/multicol/pagination/RightToLeft-rl-expected.txt: Removed.
  • platform/efl/fast/multicol/pagination/RightToLeft-rl-hittest-expected.png: Removed.
  • platform/efl/fast/multicol/pagination/RightToLeft-rl-hittest-expected.txt: Removed.
  • platform/efl/fast/multicol/pagination/RightToLeft-tb-expected.png: Removed.
  • platform/efl/fast/multicol/pagination/RightToLeft-tb-expected.txt: Removed.
  • platform/efl/fast/multicol/pagination/TopToBottom-bt-expected.png: Removed.
  • platform/efl/fast/multicol/pagination/TopToBottom-bt-expected.txt: Removed.
  • platform/efl/fast/multicol/pagination/TopToBottom-lr-expected.png: Removed.
  • platform/efl/fast/multicol/pagination/TopToBottom-lr-expected.txt: Removed.
  • platform/efl/fast/multicol/pagination/TopToBottom-rl-expected.png: Removed.
  • platform/efl/fast/multicol/pagination/TopToBottom-rl-expected.txt: Removed.
  • platform/efl/fast/multicol/pagination/TopToBottom-tb-expected.png: Removed.
  • platform/efl/fast/multicol/pagination/TopToBottom-tb-expected.txt: Removed.
  • platform/efl/fast/multicol/pagination/nested-transforms-expected.txt: Removed.
  • platform/efl/fast/multicol/positioned-split-expected.png: Removed.
  • platform/efl/fast/multicol/positioned-split-expected.txt: Removed.
  • platform/efl/fast/multicol/positive-leading-expected.png: Removed.
  • platform/efl/fast/multicol/positive-leading-expected.txt: Removed.
  • platform/efl/fast/multicol/scrolling-column-rules-expected.txt: Removed.
  • platform/efl/fast/multicol/scrolling-overflow-expected.png: Removed.
  • platform/efl/fast/multicol/scrolling-overflow-expected.txt: Removed.
  • platform/efl/fast/multicol/shadow-breaking-expected.png: Removed.
  • platform/efl/fast/multicol/shadow-breaking-expected.txt: Removed.
  • platform/efl/fast/multicol/shrink-to-column-height-for-pagination-expected.png: Removed.
  • platform/efl/fast/multicol/shrink-to-column-height-for-pagination-expected.txt: Removed.
  • platform/efl/fast/multicol/single-line-expected.png: Removed.
  • platform/efl/fast/multicol/single-line-expected.txt: Removed.
  • platform/efl/fast/multicol/span: Removed.
  • platform/efl/fast/multicol/span/anonymous-before-child-parent-crash-expected.png: Removed.
  • platform/efl/fast/multicol/span/anonymous-before-child-parent-crash-expected.txt: Removed.
  • platform/efl/fast/multicol/span/anonymous-split-block-crash-expected.png: Removed.
  • platform/efl/fast/multicol/span/anonymous-split-block-crash-expected.txt: Removed.
  • platform/efl/fast/multicol/span/anonymous-style-inheritance-expected.png: Removed.
  • platform/efl/fast/multicol/span/anonymous-style-inheritance-expected.txt: Removed.
  • platform/efl/fast/multicol/span/before-child-anonymous-column-block-expected.txt: Removed.
  • platform/efl/fast/multicol/span/clone-anonymous-block-non-inline-child-crash-expected.png: Removed.
  • platform/efl/fast/multicol/span/clone-anonymous-block-non-inline-child-crash-expected.txt: Removed.
  • platform/efl/fast/multicol/span/clone-flexbox-expected.txt: Removed.
  • platform/efl/fast/multicol/span/clone-summary-expected.txt: Removed.
  • platform/efl/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.png: Removed.
  • platform/efl/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.txt: Removed.
  • platform/efl/fast/multicol/span/span-as-immediate-child-generated-content-expected.png: Removed.
  • platform/efl/fast/multicol/span/span-as-immediate-child-generated-content-expected.txt: Removed.
  • platform/efl/fast/multicol/span/span-as-immediate-child-property-removal-expected.png: Removed.
  • platform/efl/fast/multicol/span/span-as-immediate-child-property-removal-expected.txt: Removed.
  • platform/efl/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.png: Removed.
  • platform/efl/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.txt: Removed.
  • platform/efl/fast/multicol/span/span-as-immediate-columns-child-expected.png: Removed.
  • platform/efl/fast/multicol/span/span-as-immediate-columns-child-expected.txt: Removed.
  • platform/efl/fast/multicol/span/span-as-immediate-columns-child-removal-expected.png: Removed.
  • platform/efl/fast/multicol/span/span-as-immediate-columns-child-removal-expected.txt: Removed.
  • platform/efl/fast/multicol/span/span-as-nested-columns-child-dynamic-expected.png: Removed.
  • platform/efl/fast/multicol/span/span-as-nested-columns-child-dynamic-expected.txt: Removed.
  • platform/efl/fast/multicol/span/span-as-nested-columns-child-expected.png: Removed.
  • platform/efl/fast/multicol/span/span-as-nested-columns-child-expected.txt: Removed.
  • platform/efl/fast/multicol/span/span-as-nested-inline-block-child-expected.png: Removed.
  • platform/efl/fast/multicol/span/span-as-nested-inline-block-child-expected.txt: Removed.
  • platform/efl/fast/multicol/span/span-margin-collapsing-expected.png: Removed.
  • platform/efl/fast/multicol/span/span-margin-collapsing-expected.txt: Removed.
  • platform/efl/fast/multicol/table-margin-collapse-expected.png: Removed.
  • platform/efl/fast/multicol/table-margin-collapse-expected.txt: Removed.
  • platform/efl/fast/multicol/table-vertical-align-expected.png: Removed.
  • platform/efl/fast/multicol/table-vertical-align-expected.txt: Removed.
  • platform/efl/fast/multicol/tall-image-behavior-expected.png: Removed.
  • platform/efl/fast/multicol/tall-image-behavior-expected.txt: Removed.
  • platform/efl/fast/multicol/tall-image-behavior-lr-expected.png: Removed.
  • platform/efl/fast/multicol/tall-image-behavior-lr-expected.txt: Removed.
  • platform/efl/fast/multicol/tall-image-behavior-rl-expected.png: Removed.
  • platform/efl/fast/multicol/tall-image-behavior-rl-expected.txt: Removed.
  • platform/efl/fast/multicol/unsplittable-inline-block-expected.png: Removed.
  • platform/efl/fast/multicol/unsplittable-inline-block-expected.txt: Removed.
  • platform/efl/fast/multicol/vertical-lr: Removed.
  • platform/efl/fast/multicol/vertical-lr/border-padding-pagination-expected.png: Removed.
  • platform/efl/fast/multicol/vertical-lr/border-padding-pagination-expected.txt: Removed.
  • platform/efl/fast/multicol/vertical-lr/column-break-with-balancing-expected.png: Removed.
  • platform/efl/fast/multicol/vertical-lr/column-break-with-balancing-expected.txt: Removed.
  • platform/efl/fast/multicol/vertical-lr/column-count-with-rules-expected.png: Removed.
  • platform/efl/fast/multicol/vertical-lr/column-count-with-rules-expected.txt: Removed.
  • platform/efl/fast/multicol/vertical-lr/column-rules-expected.png: Removed.
  • platform/efl/fast/multicol/vertical-lr/column-rules-expected.txt: Removed.
  • platform/efl/fast/multicol/vertical-lr/float-avoidance-expected.png: Removed.
  • platform/efl/fast/multicol/vertical-lr/float-avoidance-expected.txt: Removed.
  • platform/efl/fast/multicol/vertical-lr/float-multicol-expected.png: Removed.
  • platform/efl/fast/multicol/vertical-lr/float-multicol-expected.txt: Removed.
  • platform/efl/fast/multicol/vertical-lr/float-paginate-complex-expected.png: Removed.
  • platform/efl/fast/multicol/vertical-lr/float-paginate-complex-expected.txt: Removed.
  • platform/efl/fast/multicol/vertical-lr/float-paginate-expected.png: Removed.
  • platform/efl/fast/multicol/vertical-lr/float-paginate-expected.txt: Removed.
  • platform/efl/fast/multicol/vertical-lr/nested-columns-expected.png: Removed.
  • platform/efl/fast/multicol/vertical-lr/nested-columns-expected.txt: Removed.
  • platform/efl/fast/multicol/vertical-lr/unsplittable-inline-block-expected.png: Removed.
  • platform/efl/fast/multicol/vertical-lr/unsplittable-inline-block-expected.txt: Removed.
  • platform/efl/fast/multicol/vertical-rl: Removed.
  • platform/efl/fast/multicol/vertical-rl/border-padding-pagination-expected.png: Removed.
  • platform/efl/fast/multicol/vertical-rl/border-padding-pagination-expected.txt: Removed.
  • platform/efl/fast/multicol/vertical-rl/column-break-with-balancing-expected.png: Removed.
  • platform/efl/fast/multicol/vertical-rl/column-break-with-balancing-expected.txt: Removed.
  • platform/efl/fast/multicol/vertical-rl/column-count-with-rules-expected.png: Removed.
  • platform/efl/fast/multicol/vertical-rl/column-count-with-rules-expected.txt: Removed.
  • platform/efl/fast/multicol/vertical-rl/column-rules-expected.png: Removed.
  • platform/efl/fast/multicol/vertical-rl/column-rules-expected.txt: Removed.
  • platform/efl/fast/multicol/vertical-rl/float-avoidance-expected.png: Removed.
  • platform/efl/fast/multicol/vertical-rl/float-avoidance-expected.txt: Removed.
  • platform/efl/fast/multicol/vertical-rl/float-multicol-expected.png: Removed.
  • platform/efl/fast/multicol/vertical-rl/float-multicol-expected.txt: Removed.
  • platform/efl/fast/multicol/vertical-rl/float-paginate-complex-expected.png: Removed.
  • platform/efl/fast/multicol/vertical-rl/float-paginate-complex-expected.txt: Removed.
  • platform/efl/fast/multicol/vertical-rl/float-paginate-expected.png: Removed.
  • platform/efl/fast/multicol/vertical-rl/float-paginate-expected.txt: Removed.
  • platform/efl/fast/multicol/vertical-rl/nested-columns-expected.png: Removed.
  • platform/efl/fast/multicol/vertical-rl/nested-columns-expected.txt: Removed.
  • platform/efl/fast/multicol/vertical-rl/rule-style-expected.png: Removed.
  • platform/efl/fast/multicol/vertical-rl/rule-style-expected.txt: Removed.
  • platform/efl/fast/multicol/vertical-rl/unsplittable-inline-block-expected.png: Removed.
  • platform/efl/fast/multicol/vertical-rl/unsplittable-inline-block-expected.txt: Removed.
  • platform/efl/fast/overflow: Removed.
  • platform/efl/fast/overflow/001-expected.png: Removed.
  • platform/efl/fast/overflow/001-expected.txt: Removed.
  • platform/efl/fast/overflow/002-expected.png: Removed.
  • platform/efl/fast/overflow/002-expected.txt: Removed.
  • platform/efl/fast/overflow/003-expected.png: Removed.
  • platform/efl/fast/overflow/003-expected.txt: Removed.
  • platform/efl/fast/overflow/004-expected.png: Removed.
  • platform/efl/fast/overflow/004-expected.txt: Removed.
  • platform/efl/fast/overflow/005-expected.png: Removed.
  • platform/efl/fast/overflow/005-expected.txt: Removed.
  • platform/efl/fast/overflow/006-expected.png: Removed.
  • platform/efl/fast/overflow/006-expected.txt: Removed.
  • platform/efl/fast/overflow/007-expected.png: Removed.
  • platform/efl/fast/overflow/007-expected.txt: Removed.
  • platform/efl/fast/overflow/008-expected.png: Removed.
  • platform/efl/fast/overflow/008-expected.txt: Removed.
  • platform/efl/fast/overflow/border-radius-clipping-expected.png: Removed.
  • platform/efl/fast/overflow/border-radius-clipping-expected.txt: Removed.
  • platform/efl/fast/overflow/childFocusRingClip-expected.png: Removed.
  • platform/efl/fast/overflow/childFocusRingClip-expected.txt: Removed.
  • platform/efl/fast/overflow/clip-rects-fixed-ancestor-expected.png: Removed.
  • platform/efl/fast/overflow/clip-rects-fixed-ancestor-expected.txt: Removed.
  • platform/efl/fast/overflow/dynamic-hidden-expected.png: Removed.
  • platform/efl/fast/overflow/dynamic-hidden-expected.txt: Removed.
  • platform/efl/fast/overflow/float-in-relpositioned-expected.png: Removed.
  • platform/efl/fast/overflow/float-in-relpositioned-expected.txt: Removed.
  • platform/efl/fast/overflow/hidden-scrollbar-resize-expected.png: Removed.
  • platform/efl/fast/overflow/hidden-scrollbar-resize-expected.txt: Removed.
  • platform/efl/fast/overflow/hit-test-overflow-controls-expected.png: Removed.
  • platform/efl/fast/overflow/hit-test-overflow-controls-expected.txt: Removed.
  • platform/efl/fast/overflow/image-selection-highlight-expected.png: Removed.
  • platform/efl/fast/overflow/image-selection-highlight-expected.txt: Removed.
  • platform/efl/fast/overflow/infiniteRecursion-expected.png: Removed.
  • platform/efl/fast/overflow/infiniteRecursion-expected.txt: Removed.
  • platform/efl/fast/overflow/infiniteRecursionGuard-expected.png: Removed.
  • platform/efl/fast/overflow/infiniteRecursionGuard-expected.txt: Removed.
  • platform/efl/fast/overflow/line-clamp-expected.png: Removed.
  • platform/efl/fast/overflow/line-clamp-expected.txt: Removed.
  • platform/efl/fast/overflow/overflow-auto-position-absolute-expected.png: Removed.
  • platform/efl/fast/overflow/overflow-auto-position-absolute-expected.txt: Removed.
  • platform/efl/fast/overflow/overflow-auto-table-expected.png: Removed.
  • platform/efl/fast/overflow/overflow-auto-table-expected.txt: Removed.
  • platform/efl/fast/overflow/overflow-float-stacking-expected.png: Removed.
  • platform/efl/fast/overflow/overflow-float-stacking-expected.txt: Removed.
  • platform/efl/fast/overflow/overflow-focus-ring-expected.png: Removed.
  • platform/efl/fast/overflow/overflow-focus-ring-expected.txt: Removed.
  • platform/efl/fast/overflow/overflow-rtl-expected.png: Removed.
  • platform/efl/fast/overflow/overflow-rtl-expected.txt: Removed.
  • platform/efl/fast/overflow/overflow-rtl-inline-scrollbar-expected.png: Removed.
  • platform/efl/fast/overflow/overflow-rtl-inline-scrollbar-expected.txt: Removed.
  • platform/efl/fast/overflow/overflow-rtl-vertical-expected.png: Removed.
  • platform/efl/fast/overflow/overflow-rtl-vertical-expected.txt: Removed.
  • platform/efl/fast/overflow/overflow-stacking-expected.png: Removed.
  • platform/efl/fast/overflow/overflow-stacking-expected.txt: Removed.
  • platform/efl/fast/overflow/overflow-text-hit-testing-expected.png: Removed.
  • platform/efl/fast/overflow/overflow-text-hit-testing-expected.txt: Removed.
  • platform/efl/fast/overflow/overflow-update-transform-expected.png: Removed.
  • platform/efl/fast/overflow/overflow-with-local-background-attachment-expected.png: Removed.
  • platform/efl/fast/overflow/overflow-with-local-background-attachment-expected.txt: Removed.
  • platform/efl/fast/overflow/overflow-x-y-expected.png: Removed.
  • platform/efl/fast/overflow/overflow-x-y-expected.txt: Removed.
  • platform/efl/fast/overflow/overflow_hidden-expected.png: Removed.
  • platform/efl/fast/overflow/overflow_hidden-expected.txt: Removed.
  • platform/efl/fast/overflow/paged-x-div-expected.png: Removed.
  • platform/efl/fast/overflow/paged-x-div-expected.txt: Removed.
  • platform/efl/fast/overflow/paged-x-div-with-column-gap-expected.png: Removed.
  • platform/efl/fast/overflow/paged-x-div-with-column-gap-expected.txt: Removed.
  • platform/efl/fast/overflow/paged-x-on-root-expected.png: Removed.
  • platform/efl/fast/overflow/paged-x-on-root-expected.txt: Removed.
  • platform/efl/fast/overflow/paged-x-with-column-gap-expected.png: Removed.
  • platform/efl/fast/overflow/paged-x-with-column-gap-expected.txt: Removed.
  • platform/efl/fast/overflow/paged-y-div-expected.png: Removed.
  • platform/efl/fast/overflow/paged-y-div-expected.txt: Removed.
  • platform/efl/fast/overflow/paged-y-on-root-expected.png: Removed.
  • platform/efl/fast/overflow/paged-y-on-root-expected.txt: Removed.
  • platform/efl/fast/overflow/position-fixed-transform-clipping-expected.png: Removed.
  • platform/efl/fast/overflow/position-fixed-transform-clipping-expected.txt: Removed.
  • platform/efl/fast/overflow/position-relative-expected.png: Removed.
  • platform/efl/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.png: Removed.
  • platform/efl/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.txt: Removed.
  • platform/efl/fast/overflow/scrollRevealButton-expected.png: Removed.
  • platform/efl/fast/overflow/scrollRevealButton-expected.txt: Removed.
  • platform/efl/fast/overflow/scrollbar-position-update-expected.png: Removed.
  • platform/efl/fast/overflow/scrollbar-position-update-expected.txt: Removed.
  • platform/efl/fast/overflow/table-overflow-float-expected.png: Removed.
  • platform/efl/fast/overflow/table-overflow-float-expected.txt: Removed.
  • platform/efl/fast/overflow/trailing-float-linebox-expected.png: Removed.
  • platform/efl/fast/overflow/unreachable-content-test-expected.png: Removed.
  • platform/efl/fast/overflow/unreachable-overflow-rtl-bug-expected.png: Removed.
  • platform/efl/fast/overflow/unreachable-overflow-rtl-bug-expected.txt: Removed.
  • platform/efl/fast/parser: Removed.
  • platform/efl/fast/parser/001-expected.png: Removed.
  • platform/efl/fast/parser/001-expected.txt: Removed.
  • platform/efl/fast/parser/bad-xml-slash-expected.png: Removed.
  • platform/efl/fast/parser/bad-xml-slash-expected.txt: Removed.
  • platform/efl/fast/parser/broken-comments-vs-parsing-mode-expected.png: Removed.
  • platform/efl/fast/parser/broken-comments-vs-parsing-mode-expected.txt: Removed.
  • platform/efl/fast/parser/comment-in-script-expected.png: Removed.
  • platform/efl/fast/parser/document-write-option-expected.png: Removed.
  • platform/efl/fast/parser/document-write-option-expected.txt: Removed.
  • platform/efl/fast/parser/entity-comment-in-style-expected.png: Removed.
  • platform/efl/fast/parser/entity-comment-in-style-expected.txt: Removed.
  • platform/efl/fast/parser/entity-comment-in-textarea-expected.png: Removed.
  • platform/efl/fast/parser/entity-comment-in-textarea-expected.txt: Removed.
  • platform/efl/fast/parser/fonts-expected.png: Removed.
  • platform/efl/fast/parser/fonts-expected.txt: Removed.
  • platform/efl/fast/parser/innerhtml-with-prefixed-elements-expected.png: Removed.
  • platform/efl/fast/parser/nested-fragment-parser-crash-expected.txt: Removed.
  • platform/efl/fast/parser/nofoo-tags-inside-paragraph-expected.png: Removed.
  • platform/efl/fast/parser/nofoo-tags-inside-paragraph-expected.txt: Removed.
  • platform/efl/fast/parser/open-comment-in-style-expected.png: Removed.
  • platform/efl/fast/parser/open-comment-in-style-expected.txt: Removed.
  • platform/efl/fast/parser/open-comment-in-textarea-expected.png: Removed.
  • platform/efl/fast/parser/open-comment-in-textarea-expected.txt: Removed.
  • platform/efl/fast/parser/style-script-head-test-expected.png: Removed.
  • platform/efl/fast/parser/tabs-in-scripts-expected.png: Removed.
  • platform/efl/fast/parser/tabs-in-scripts-expected.txt: Removed.
  • platform/efl/fast/parser/title-error-test-expected.png: Removed.
  • platform/efl/fast/parser/title-error-test-expected.txt: Removed.
  • platform/efl/fast/parser/xhtml-alternate-entities-expected.png: Removed.
  • platform/efl/fast/parser/xhtml-alternate-entities-expected.txt: Removed.
  • platform/efl/fast/preloader: Removed.
  • platform/efl/fast/preloader/document-write-2-expected.txt: Removed.
  • platform/efl/fast/preloader/document-write-expected.txt: Removed.
  • platform/efl/fast/preloader/script-expected.txt: Removed.
  • platform/efl/fast/reflections: Removed.
  • platform/efl/fast/reflections/abs-position-in-reflection-expected.png: Removed.
  • platform/efl/fast/reflections/abs-position-in-reflection-expected.txt: Removed.
  • platform/efl/fast/reflections/inline-crash-expected.png: Removed.
  • platform/efl/fast/reflections/inline-crash-expected.txt: Removed.
  • platform/efl/fast/reflections/opacity-reflection-transform-expected.png: Removed.
  • platform/efl/fast/reflections/opacity-reflection-transform-expected.txt: Removed.
  • platform/efl/fast/reflections/reflection-direction-expected.png: Removed.
  • platform/efl/fast/reflections/reflection-direction-expected.txt: Removed.
  • platform/efl/fast/reflections/reflection-masks-expected.png: Removed.
  • platform/efl/fast/reflections/reflection-masks-expected.txt: Removed.
  • platform/efl/fast/reflections/reflection-masks-opacity-expected.png: Removed.
  • platform/efl/fast/reflections/reflection-masks-opacity-expected.txt: Removed.
  • platform/efl/fast/reflections/reflection-nesting-expected.png: Removed.
  • platform/efl/fast/reflections/reflection-nesting-expected.txt: Removed.
  • platform/efl/fast/reflections/reflection-overflow-hidden-expected.png: Removed.
  • platform/efl/fast/reflections/reflection-overflow-hidden-expected.txt: Removed.
  • platform/efl/fast/reflections/reflection-with-zoom-expected.png: Removed.
  • platform/efl/fast/reflections/table-cell-expected.png: Removed.
  • platform/efl/fast/reflections/table-cell-expected.txt: Removed.
  • platform/efl/fast/reflections/transparent-reflected-sublayers-expected.png: Removed.
  • platform/efl/fast/reflections/transparent-reflected-sublayers-expected.txt: Removed.
  • platform/efl/fast/regions: Removed.
  • platform/efl/fast/regions/auto-size: Removed.
  • platform/efl/fast/regions/auto-size/autoheight-regions-mark-expected.txt: Removed.
  • platform/efl/fast/regions/flows-dependency-dynamic-remove-expected.txt: Removed.
  • platform/efl/fast/regions/flows-dependency-same-flow-expected.txt: Removed.
  • platform/efl/fast/regions/full-screen-video-from-region-expected.png: Removed.
  • platform/efl/fast/regions/iframe-html-collected-expected.txt: Removed.
  • platform/efl/fast/regions/multiple-directionality-changes-in-variable-width-regions-expected.txt: Removed.
  • platform/efl/fast/regions/region-dynamic-after-before-expected.txt: Removed.
  • platform/efl/fast/regions/region-generated-content-before-after-expected.txt: Removed.
  • platform/efl/fast/regions/repaint: Removed.
  • platform/efl/fast/regions/repaint/japanese-rl-selection-repaint-in-regions-expected.png: Removed.
  • platform/efl/fast/regions/repaint/japanese-rl-selection-repaint-in-regions-expected.txt: Removed.
  • platform/efl/fast/regions/repaint/line-flow-with-floats-in-regions-expected.txt: Removed.
  • platform/efl/fast/regions/repaint/overflow-flipped-writing-mode-block-in-regions-expected.txt: Removed.
  • platform/efl/fast/regions/repaint/region-painting-invalidation-expected.txt: Removed.
  • platform/efl/fast/regions/repaint/region-painting-via-layout-expected.txt: Removed.
  • platform/efl/fast/regions/text-region-split-small-pagination-expected.txt: Removed.
  • platform/efl/fast/repaint: Removed.
  • platform/efl/fast/repaint/4774354-expected.png: Removed.
  • platform/efl/fast/repaint/background-scaling-expected.png: Removed.
  • platform/efl/fast/repaint/block-inputrange-repaint-expected.txt: Removed.
  • platform/efl/fast/repaint/block-layout-inline-children-float-positioned-expected.png: Removed.
  • platform/efl/fast/repaint/block-layout-inline-children-float-positioned-expected.txt: Removed.
  • platform/efl/fast/repaint/block-layout-inline-children-replaced-expected.png: Removed.
  • platform/efl/fast/repaint/block-layout-inline-children-replaced-expected.txt: Removed.
  • platform/efl/fast/repaint/block-selection-gap-in-table-cell-expected.txt: Removed.
  • platform/efl/fast/repaint/block-selection-gap-stale-cache-2-expected.txt: Removed.
  • platform/efl/fast/repaint/block-selection-gap-stale-cache-expected.txt: Removed.
  • platform/efl/fast/repaint/box-shadow-h-expected.png: Removed.
  • platform/efl/fast/repaint/box-shadow-h-expected.txt: Removed.
  • platform/efl/fast/repaint/box-shadow-v-expected.png: Removed.
  • platform/efl/fast/repaint/box-shadow-v-expected.txt: Removed.
  • platform/efl/fast/repaint/caret-outside-block-expected.txt: Removed.
  • platform/efl/fast/repaint/caret-with-transformation-expected.png: Removed.
  • platform/efl/fast/repaint/caret-with-transformation-expected.txt: Removed.
  • platform/efl/fast/repaint/delete-into-nested-block-expected.png: Removed.
  • platform/efl/fast/repaint/delete-into-nested-block-expected.txt: Removed.
  • platform/efl/fast/repaint/fixed-child-move-after-scroll-expected.png: Removed.
  • platform/efl/fast/repaint/fixed-child-move-after-scroll-expected.txt: Removed.
  • platform/efl/fast/repaint/fixed-child-of-fixed-move-after-scroll-expected.png: Removed.
  • platform/efl/fast/repaint/fixed-child-of-fixed-move-after-scroll-expected.txt: Removed.
  • platform/efl/fast/repaint/fixed-child-of-transformed-move-after-scroll-expected.png: Removed.
  • platform/efl/fast/repaint/fixed-child-of-transformed-move-after-scroll-expected.txt: Removed.
  • platform/efl/fast/repaint/fixed-move-after-keyboard-scroll-expected.png: Removed.
  • platform/efl/fast/repaint/fixed-move-after-keyboard-scroll-expected.txt: Removed.
  • platform/efl/fast/repaint/fixed-move-after-scroll-expected.png: Removed.
  • platform/efl/fast/repaint/fixed-move-after-scroll-expected.txt: Removed.
  • platform/efl/fast/repaint/flexible-box-overflow-expected.png: Removed.
  • platform/efl/fast/repaint/flexible-box-overflow-expected.txt: Removed.
  • platform/efl/fast/repaint/flexible-box-overflow-horizontal-expected.png: Removed.
  • platform/efl/fast/repaint/flexible-box-overflow-horizontal-expected.txt: Removed.
  • platform/efl/fast/repaint/float-overflow-expected.png: Removed.
  • platform/efl/fast/repaint/float-overflow-expected.txt: Removed.
  • platform/efl/fast/repaint/float-overflow-right-expected.png: Removed.
  • platform/efl/fast/repaint/float-overflow-right-expected.txt: Removed.
  • platform/efl/fast/repaint/focus-layers-expected.png: Removed.
  • platform/efl/fast/repaint/focus-layers-expected.txt: Removed.
  • platform/efl/fast/repaint/focus-ring-expected.png: Removed.
  • platform/efl/fast/repaint/iframe-scroll-repaint-expected.png: Removed.
  • platform/efl/fast/repaint/inline-block-overflow-expected.png: Removed.
  • platform/efl/fast/repaint/inline-block-overflow-expected.txt: Removed.
  • platform/efl/fast/repaint/inline-horizontal-bt-overflow-expected.png: Removed.
  • platform/efl/fast/repaint/japanese-rl-selection-clear-expected.png: Removed.
  • platform/efl/fast/repaint/japanese-rl-selection-clear-expected.txt: Removed.
  • platform/efl/fast/repaint/japanese-rl-selection-repaint-expected.png: Removed.
  • platform/efl/fast/repaint/japanese-rl-selection-repaint-expected.txt: Removed.
  • platform/efl/fast/repaint/layer-outline-expected.png: Removed.
  • platform/efl/fast/repaint/layer-outline-expected.txt: Removed.
  • platform/efl/fast/repaint/layer-outline-horizontal-expected.png: Removed.
  • platform/efl/fast/repaint/layer-outline-horizontal-expected.txt: Removed.
  • platform/efl/fast/repaint/line-flow-with-floats-1-expected.png: Removed.
  • platform/efl/fast/repaint/line-flow-with-floats-1-expected.txt: Removed.
  • platform/efl/fast/repaint/line-flow-with-floats-10-expected.png: Removed.
  • platform/efl/fast/repaint/line-flow-with-floats-10-expected.txt: Removed.
  • platform/efl/fast/repaint/line-flow-with-floats-2-expected.png: Removed.
  • platform/efl/fast/repaint/line-flow-with-floats-2-expected.txt: Removed.
  • platform/efl/fast/repaint/line-flow-with-floats-3-expected.png: Removed.
  • platform/efl/fast/repaint/line-flow-with-floats-3-expected.txt: Removed.
  • platform/efl/fast/repaint/line-flow-with-floats-4-expected.png: Removed.
  • platform/efl/fast/repaint/line-flow-with-floats-4-expected.txt: Removed.
  • platform/efl/fast/repaint/line-flow-with-floats-5-expected.png: Removed.
  • platform/efl/fast/repaint/line-flow-with-floats-5-expected.txt: Removed.
  • platform/efl/fast/repaint/line-flow-with-floats-6-expected.png: Removed.
  • platform/efl/fast/repaint/line-flow-with-floats-6-expected.txt: Removed.
  • platform/efl/fast/repaint/line-flow-with-floats-7-expected.png: Removed.
  • platform/efl/fast/repaint/line-flow-with-floats-7-expected.txt: Removed.
  • platform/efl/fast/repaint/line-flow-with-floats-8-expected.png: Removed.
  • platform/efl/fast/repaint/line-flow-with-floats-8-expected.txt: Removed.
  • platform/efl/fast/repaint/line-flow-with-floats-9-expected.png: Removed.
  • platform/efl/fast/repaint/line-flow-with-floats-9-expected.txt: Removed.
  • platform/efl/fast/repaint/line-in-scrolled-clipped-block-expected.png: Removed.
  • platform/efl/fast/repaint/line-overflow-expected.png: Removed.
  • platform/efl/fast/repaint/line-overflow-expected.txt: Removed.
  • platform/efl/fast/repaint/lines-with-layout-delta-expected.png: Removed.
  • platform/efl/fast/repaint/lines-with-layout-delta-expected.txt: Removed.
  • platform/efl/fast/repaint/list-marker-2-expected.png: Removed.
  • platform/efl/fast/repaint/list-marker-2-expected.txt: Removed.
  • platform/efl/fast/repaint/list-marker-expected.png: Removed.
  • platform/efl/fast/repaint/list-marker-expected.txt: Removed.
  • platform/efl/fast/repaint/make-children-non-inline-expected.png: Removed.
  • platform/efl/fast/repaint/make-children-non-inline-expected.txt: Removed.
  • platform/efl/fast/repaint/moving-shadow-on-container-expected.png: Removed.
  • platform/efl/fast/repaint/moving-shadow-on-container-expected.txt: Removed.
  • platform/efl/fast/repaint/moving-shadow-on-path-expected.png: Removed.
  • platform/efl/fast/repaint/multicol-repaint-expected.png: Removed.
  • platform/efl/fast/repaint/multicol-repaint-expected.txt: Removed.
  • platform/efl/fast/repaint/nested-iframe-scroll-inner-expected.png: Removed.
  • platform/efl/fast/repaint/nested-iframe-scroll-outer-expected.png: Removed.
  • platform/efl/fast/repaint/no-caret-repaint-in-non-content-editable-element-expected.png: Removed.
  • platform/efl/fast/repaint/no-caret-repaint-in-non-content-editable-element-expected.txt: Removed.
  • platform/efl/fast/repaint/opacity-change-on-overflow-float-expected.png: Removed.
  • platform/efl/fast/repaint/opacity-change-on-overflow-float-expected.txt: Removed.
  • platform/efl/fast/repaint/outline-child-repaint-expected.png: Removed.
  • platform/efl/fast/repaint/outline-child-repaint-expected.txt: Removed.
  • platform/efl/fast/repaint/outline-inset-expected.png: Removed.
  • platform/efl/fast/repaint/outline-inset-expected.txt: Removed.
  • platform/efl/fast/repaint/outline-repaint-glitch-expected.png: Removed.
  • platform/efl/fast/repaint/outline-repaint-glitch-expected.txt: Removed.
  • platform/efl/fast/repaint/outline-shrinking-expected.png: Removed.
  • platform/efl/fast/repaint/outline-shrinking-expected.txt: Removed.
  • platform/efl/fast/repaint/overflow-delete-line-expected.png: Removed.
  • platform/efl/fast/repaint/overflow-delete-line-expected.txt: Removed.
  • platform/efl/fast/repaint/overflow-hidden-in-overflow-hidden-scrolled-expected.png: Removed.
  • platform/efl/fast/repaint/overflow-hide-expected.png: Removed.
  • platform/efl/fast/repaint/overflow-outline-repaint-expected.png: Removed.
  • platform/efl/fast/repaint/overflow-outline-repaint-expected.txt: Removed.
  • platform/efl/fast/repaint/overflow-scroll-body-appear-expected.png: Removed.
  • platform/efl/fast/repaint/overflow-scroll-body-appear-expected.txt: Removed.
  • platform/efl/fast/repaint/overflow-scroll-delete-expected.png: Removed.
  • platform/efl/fast/repaint/overflow-scroll-delete-expected.txt: Removed.
  • platform/efl/fast/repaint/overflow-show-expected.png: Removed.
  • platform/efl/fast/repaint/overhanging-float-detach-repaint-expected.png: Removed.
  • platform/efl/fast/repaint/positioned-document-element-expected.png: Removed.
  • platform/efl/fast/repaint/positioned-document-element-expected.txt: Removed.
  • platform/efl/fast/repaint/reflection-redraw-expected.png: Removed.
  • platform/efl/fast/repaint/reflection-redraw-expected.txt: Removed.
  • platform/efl/fast/repaint/reflection-repaint-test-expected.png: Removed.
  • platform/efl/fast/repaint/rel-positioned-inline-with-overflow-expected.png: Removed.
  • platform/efl/fast/repaint/rel-positioned-inline-with-overflow-expected.txt: Removed.
  • platform/efl/fast/repaint/renderer-destruction-by-invalidateSelection-crash-expected.png: Removed.
  • platform/efl/fast/repaint/renderer-destruction-by-invalidateSelection-crash-expected.txt: Removed.
  • platform/efl/fast/repaint/repaint-across-writing-mode-boundary-expected.png: Removed.
  • platform/efl/fast/repaint/repaint-during-scroll-with-zoom-expected.png: Removed.
  • platform/efl/fast/repaint/repaint-resized-overflow-expected.png: Removed.
  • platform/efl/fast/repaint/repaint-resized-overflow-expected.txt: Removed.
  • platform/efl/fast/repaint/repaint-svg-after-style-change-expected.png: Removed.
  • platform/efl/fast/repaint/scale-page-shrink-expected.png: Removed.
  • platform/efl/fast/repaint/scale-page-shrink-expected.txt: Removed.
  • platform/efl/fast/repaint/scroll-fixed-layer-with-transformed-parent-layer-expected.png: Removed.
  • platform/efl/fast/repaint/scroll-in-transformed-layer-expected.png: Removed.
  • platform/efl/fast/repaint/scroll-inside-table-cell-expected.png: Removed.
  • platform/efl/fast/repaint/scroll-relative-table-inside-table-cell-expected.png: Removed.
  • platform/efl/fast/repaint/scroll-with-transformed-parent-layer-expected.png: Removed.
  • platform/efl/fast/repaint/search-field-cancel-expected.png: Removed.
  • platform/efl/fast/repaint/search-field-cancel-expected.txt: Removed.
  • platform/efl/fast/repaint/select-option-background-color-expected.png: Removed.
  • platform/efl/fast/repaint/select-option-background-color-expected.txt: Removed.
  • platform/efl/fast/repaint/selected-replaced-expected.png: Removed.
  • platform/efl/fast/repaint/selected-replaced-expected.txt: Removed.
  • platform/efl/fast/repaint/selection-after-delete-expected.png: Removed.
  • platform/efl/fast/repaint/selection-after-delete-expected.txt: Removed.
  • platform/efl/fast/repaint/selection-after-remove-expected.png: Removed.
  • platform/efl/fast/repaint/selection-after-remove-expected.txt: Removed.
  • platform/efl/fast/repaint/selection-clear-expected.png: Removed.
  • platform/efl/fast/repaint/selection-gap-overflow-scroll-2-expected.png: Removed.
  • platform/efl/fast/repaint/selection-gap-overflow-scroll-2-expected.txt: Removed.
  • platform/efl/fast/repaint/selection-gap-overflow-scroll-expected.png: Removed.
  • platform/efl/fast/repaint/selection-gap-overflow-scroll-expected.txt: Removed.
  • platform/efl/fast/repaint/selection-rl-expected.png: Removed.
  • platform/efl/fast/repaint/selection-rl-expected.txt: Removed.
  • platform/efl/fast/repaint/selection-ruby-rl-expected.txt: Removed.
  • platform/efl/fast/repaint/shadow-multiple-horizontal-expected.png: Removed.
  • platform/efl/fast/repaint/shadow-multiple-horizontal-expected.txt: Removed.
  • platform/efl/fast/repaint/shadow-multiple-strict-horizontal-expected.png: Removed.
  • platform/efl/fast/repaint/shadow-multiple-strict-horizontal-expected.txt: Removed.
  • platform/efl/fast/repaint/shadow-multiple-strict-vertical-expected.png: Removed.
  • platform/efl/fast/repaint/shadow-multiple-strict-vertical-expected.txt: Removed.
  • platform/efl/fast/repaint/shadow-multiple-vertical-expected.png: Removed.
  • platform/efl/fast/repaint/shadow-multiple-vertical-expected.txt: Removed.
  • platform/efl/fast/repaint/slider-thumb-drag-release-expected.png: Removed.
  • platform/efl/fast/repaint/slider-thumb-drag-release-expected.txt: Removed.
  • platform/efl/fast/repaint/spanner-with-margin-expected.txt: Removed.
  • platform/efl/fast/repaint/stacked-diacritics-expected.png: Removed.
  • platform/efl/fast/repaint/stacked-diacritics-expected.txt: Removed.
  • platform/efl/fast/repaint/static-to-positioned-expected.png: Removed.
  • platform/efl/fast/repaint/static-to-positioned-expected.txt: Removed.
  • platform/efl/fast/repaint/subtree-layoutstate-transform-expected.png: Removed.
  • platform/efl/fast/repaint/subtree-layoutstate-transform-expected.txt: Removed.
  • platform/efl/fast/repaint/subtree-root-clip-3-expected.txt: Removed.
  • platform/efl/fast/repaint/subtree-root-skipped-expected.png: Removed.
  • platform/efl/fast/repaint/subtree-root-skipped-expected.txt: Removed.
  • platform/efl/fast/repaint/table-cell-collapsed-border-expected.png: Removed.
  • platform/efl/fast/repaint/table-cell-collapsed-border-expected.txt: Removed.
  • platform/efl/fast/repaint/table-cell-collapsed-border-scroll-expected.txt: Removed.
  • platform/efl/fast/repaint/table-cell-move-expected.png: Removed.
  • platform/efl/fast/repaint/table-cell-move-expected.txt: Removed.
  • platform/efl/fast/repaint/table-cell-overflow-expected.txt: Removed.
  • platform/efl/fast/repaint/table-cell-vertical-overflow-expected.png: Removed.
  • platform/efl/fast/repaint/table-cell-vertical-overflow-expected.txt: Removed.
  • platform/efl/fast/repaint/table-col-background-expected.txt: Removed.
  • platform/efl/fast/repaint/table-collapsed-border-expected.png: Removed.
  • platform/efl/fast/repaint/table-collapsed-border-expected.txt: Removed.
  • platform/efl/fast/repaint/table-extra-bottom-grow-expected.png: Removed.
  • platform/efl/fast/repaint/table-extra-bottom-grow-expected.txt: Removed.
  • platform/efl/fast/repaint/table-hover-on-link-expected.png: Removed.
  • platform/efl/fast/repaint/table-outer-border-expected.txt: Removed.
  • platform/efl/fast/repaint/table-row-expected.txt: Removed.
  • platform/efl/fast/repaint/table-section-overflow-expected.txt: Removed.
  • platform/efl/fast/repaint/table-section-repaint-expected.png: Removed.
  • platform/efl/fast/repaint/table-section-repaint-expected.txt: Removed.
  • platform/efl/fast/repaint/table-two-pass-layout-overpaint-expected.png: Removed.
  • platform/efl/fast/repaint/table-two-pass-layout-overpaint-expected.txt: Removed.
  • platform/efl/fast/repaint/table-writing-modes-h-expected.txt: Removed.
  • platform/efl/fast/repaint/table-writing-modes-v-expected.txt: Removed.
  • platform/efl/fast/repaint/text-append-dirty-lines-expected.png: Removed.
  • platform/efl/fast/repaint/text-append-dirty-lines-expected.txt: Removed.
  • platform/efl/fast/repaint/text-emphasis-v-expected.png: Removed.
  • platform/efl/fast/repaint/text-selection-rect-in-overflow-2-expected.png: Removed.
  • platform/efl/fast/repaint/text-selection-rect-in-overflow-2-expected.txt: Removed.
  • platform/efl/fast/repaint/text-selection-rect-in-overflow-expected.png: Removed.
  • platform/efl/fast/repaint/text-selection-rect-in-overflow-expected.txt: Removed.
  • platform/efl/fast/repaint/text-shadow-expected.png: Removed.
  • platform/efl/fast/repaint/text-shadow-expected.txt: Removed.
  • platform/efl/fast/repaint/text-shadow-horizontal-expected.png: Removed.
  • platform/efl/fast/repaint/text-shadow-horizontal-expected.txt: Removed.
  • platform/efl/fast/repaint/textarea-set-disabled-expected.png: Removed.
  • platform/efl/fast/repaint/transform-absolute-child-expected.png: Removed.
  • platform/efl/fast/repaint/transform-absolute-in-positioned-container-expected.png: Removed.
  • platform/efl/fast/repaint/transform-absolute-in-positioned-container-expected.txt: Removed.
  • platform/efl/fast/repaint/transform-disable-layoutstate-expected.png: Removed.
  • platform/efl/fast/repaint/transform-layout-repaint-expected.png: Removed.
  • platform/efl/fast/repaint/transform-relative-position-expected.png: Removed.
  • platform/efl/fast/repaint/transform-relative-position-expected.txt: Removed.
  • platform/efl/fast/repaint/transform-repaint-descendants-expected.png: Removed.
  • platform/efl/fast/repaint/transform-repaint-descendants-expected.txt: Removed.
  • platform/efl/fast/repaint/transform-replaced-shadows-expected.png: Removed.
  • platform/efl/fast/repaint/transform-rotate-and-remove-expected.png: Removed.
  • platform/efl/fast/repaint/transform-translate-expected.png: Removed.
  • platform/efl/fast/repaint/transform-translate-expected.txt: Removed.
  • platform/efl/fast/replaced: Removed.
  • platform/efl/fast/replaced/001-expected.png: Removed.
  • platform/efl/fast/replaced/001-expected.txt: Removed.
  • platform/efl/fast/replaced/002-expected.png: Removed.
  • platform/efl/fast/replaced/002-expected.txt: Removed.
  • platform/efl/fast/replaced/003-expected.png: Removed.
  • platform/efl/fast/replaced/003-expected.txt: Removed.
  • platform/efl/fast/replaced/004-expected.png: Removed.
  • platform/efl/fast/replaced/004-expected.txt: Removed.
  • platform/efl/fast/replaced/005-expected.png: Removed.
  • platform/efl/fast/replaced/005-expected.txt: Removed.
  • platform/efl/fast/replaced/006-expected.png: Removed.
  • platform/efl/fast/replaced/006-expected.txt: Removed.
  • platform/efl/fast/replaced/007-expected.png: Removed.
  • platform/efl/fast/replaced/007-expected.txt: Removed.
  • platform/efl/fast/replaced/008-expected.png: Removed.
  • platform/efl/fast/replaced/absolute-image-sizing-expected.png: Removed.
  • platform/efl/fast/replaced/absolute-image-sizing-expected.txt: Removed.
  • platform/efl/fast/replaced/absolute-position-percentage-height-expected.png: Removed.
  • platform/efl/fast/replaced/absolute-position-percentage-height-expected.txt: Removed.
  • platform/efl/fast/replaced/absolute-position-percentage-width-expected.png: Removed.
  • platform/efl/fast/replaced/absolute-position-percentage-width-expected.txt: Removed.
  • platform/efl/fast/replaced/absolute-position-with-auto-height-and-top-and-bottom-expected.png: Removed.
  • platform/efl/fast/replaced/absolute-position-with-auto-height-and-top-and-bottom-expected.txt: Removed.
  • platform/efl/fast/replaced/absolute-position-with-auto-width-and-left-and-right-expected.png: Removed.
  • platform/efl/fast/replaced/absolute-position-with-auto-width-and-left-and-right-expected.txt: Removed.
  • platform/efl/fast/replaced/applet-disabled-positioned-expected.png: Removed.
  • platform/efl/fast/replaced/applet-disabled-positioned-expected.txt: Removed.
  • platform/efl/fast/replaced/applet-display-none-expected.png: Removed.
  • platform/efl/fast/replaced/applet-display-none-expected.txt: Removed.
  • platform/efl/fast/replaced/applet-rendering-java-disabled-expected.png: Removed.
  • platform/efl/fast/replaced/applet-rendering-java-disabled-expected.txt: Removed.
  • platform/efl/fast/replaced/border-radius-clip-content-edge-expected.png: Removed.
  • platform/efl/fast/replaced/border-radius-clip-expected.png: Removed.
  • platform/efl/fast/replaced/border-radius-clip-expected.txt: Removed.
  • platform/efl/fast/replaced/embed-display-none-expected.png: Removed.
  • platform/efl/fast/replaced/embed-display-none-expected.txt: Removed.
  • platform/efl/fast/replaced/image-onload-expected.png: Removed.
  • platform/efl/fast/replaced/image-onload-expected.txt: Removed.
  • platform/efl/fast/replaced/image-resize-width-expected.png: Removed.
  • platform/efl/fast/replaced/image-resize-width-expected.txt: Removed.
  • platform/efl/fast/replaced/image-sizing-expected.png: Removed.
  • platform/efl/fast/replaced/image-sizing-expected.txt: Removed.
  • platform/efl/fast/replaced/image-solid-color-with-alpha-expected.png: Removed.
  • platform/efl/fast/replaced/image-solid-color-with-alpha-expected.txt: Removed.
  • platform/efl/fast/replaced/image-tag-expected.png: Removed.
  • platform/efl/fast/replaced/inline-box-wrapper-handover-expected.png: Removed.
  • platform/efl/fast/replaced/inline-box-wrapper-handover-expected.txt: Removed.
  • platform/efl/fast/replaced/max-width-percent-expected.png: Removed.
  • platform/efl/fast/replaced/max-width-percent-expected.txt: Removed.
  • platform/efl/fast/replaced/maxheight-percent-expected.png: Removed.
  • platform/efl/fast/replaced/maxheight-percent-expected.txt: Removed.
  • platform/efl/fast/replaced/maxheight-pxs-expected.png: Removed.
  • platform/efl/fast/replaced/maxheight-pxs-expected.txt: Removed.
  • platform/efl/fast/replaced/maxwidth-percent-expected.png: Removed.
  • platform/efl/fast/replaced/maxwidth-percent-expected.txt: Removed.
  • platform/efl/fast/replaced/maxwidth-pxs-expected.png: Removed.
  • platform/efl/fast/replaced/maxwidth-pxs-expected.txt: Removed.
  • platform/efl/fast/replaced/minheight-percent-expected.png: Removed.
  • platform/efl/fast/replaced/minheight-percent-expected.txt: Removed.
  • platform/efl/fast/replaced/minheight-pxs-expected.png: Removed.
  • platform/efl/fast/replaced/minheight-pxs-expected.txt: Removed.
  • platform/efl/fast/replaced/minwidth-percent-expected.png: Removed.
  • platform/efl/fast/replaced/minwidth-percent-expected.txt: Removed.
  • platform/efl/fast/replaced/minwidth-pxs-expected.png: Removed.
  • platform/efl/fast/replaced/minwidth-pxs-expected.txt: Removed.
  • platform/efl/fast/replaced/object-align-hspace-vspace-expected.png: Removed.
  • platform/efl/fast/replaced/object-align-hspace-vspace-expected.txt: Removed.
  • platform/efl/fast/replaced/object-display-none-expected.png: Removed.
  • platform/efl/fast/replaced/object-display-none-expected.txt: Removed.
  • platform/efl/fast/replaced/outline-replaced-elements-expected.png: Removed.
  • platform/efl/fast/replaced/pdf-as-image-expected.txt: Removed.
  • platform/efl/fast/replaced/percent-height-in-anonymous-block-expected.png: Removed.
  • platform/efl/fast/replaced/percent-height-in-anonymous-block-expected.txt: Removed.
  • platform/efl/fast/replaced/percent-height-in-anonymous-block-in-table-expected.png: Removed.
  • platform/efl/fast/replaced/percent-height-in-anonymous-block-in-table-expected.txt: Removed.
  • platform/efl/fast/replaced/percent-height-in-anonymous-block-widget-expected.png: Removed.
  • platform/efl/fast/replaced/percent-height-in-anonymous-block-widget-expected.txt: Removed.
  • platform/efl/fast/replaced/replaced-breaking-expected.png: Removed.
  • platform/efl/fast/replaced/replaced-breaking-expected.txt: Removed.
  • platform/efl/fast/replaced/replaced-breaking-mixture-expected.png: Removed.
  • platform/efl/fast/replaced/replaced-breaking-mixture-expected.txt: Removed.
  • platform/efl/fast/replaced/replaced-child-of-absolute-with-auto-height-expected.png: Removed.
  • platform/efl/fast/replaced/replaced-child-of-absolute-with-auto-height-expected.txt: Removed.
  • platform/efl/fast/replaced/selection-rect-expected.png: Removed.
  • platform/efl/fast/replaced/selection-rect-expected.txt: Removed.
  • platform/efl/fast/replaced/selection-rect-in-table-cell-expected.png: Removed.
  • platform/efl/fast/replaced/selection-rect-in-table-cell-expected.txt: Removed.
  • platform/efl/fast/replaced/selection-rect-transform-expected.png: Removed.
  • platform/efl/fast/replaced/selection-rect-transform-expected.txt: Removed.
  • platform/efl/fast/replaced/table-percent-height-expected.txt: Removed.
  • platform/efl/fast/replaced/table-percent-height-positioned-expected.txt: Removed.
  • platform/efl/fast/replaced/three-selects-break-expected.png: Removed.
  • platform/efl/fast/replaced/three-selects-break-expected.txt: Removed.
  • platform/efl/fast/replaced/vertical-lr: Removed.
  • platform/efl/fast/replaced/vertical-lr/absolute-position-percentage-width-expected.png: Removed.
  • platform/efl/fast/replaced/vertical-lr/absolute-position-percentage-width-expected.txt: Removed.
  • platform/efl/fast/replaced/vertical-lr/absolute-position-with-auto-height-and-top-and-bottom-expected.png: Removed.
  • platform/efl/fast/replaced/vertical-lr/absolute-position-with-auto-height-and-top-and-bottom-expected.txt: Removed.
  • platform/efl/fast/replaced/vertical-lr/absolute-position-with-auto-width-and-left-and-right-expected.png: Removed.
  • platform/efl/fast/replaced/vertical-lr/absolute-position-with-auto-width-and-left-and-right-expected.txt: Removed.
  • platform/efl/fast/replaced/vertical-rl: Removed.
  • platform/efl/fast/replaced/vertical-rl/absolute-position-percentage-width-expected.png: Removed.
  • platform/efl/fast/replaced/vertical-rl/absolute-position-percentage-width-expected.txt: Removed.
  • platform/efl/fast/replaced/vertical-rl/absolute-position-with-auto-height-and-top-and-bottom-expected.png: Removed.
  • platform/efl/fast/replaced/vertical-rl/absolute-position-with-auto-height-and-top-and-bottom-expected.txt: Removed.
  • platform/efl/fast/replaced/vertical-rl/absolute-position-with-auto-width-and-left-and-right-expected.png: Removed.
  • platform/efl/fast/replaced/vertical-rl/absolute-position-with-auto-width-and-left-and-right-expected.txt: Removed.
  • platform/efl/fast/replaced/width100percent-button-expected.png: Removed.
  • platform/efl/fast/replaced/width100percent-button-expected.txt: Removed.
  • platform/efl/fast/replaced/width100percent-checkbox-expected.png: Removed.
  • platform/efl/fast/replaced/width100percent-checkbox-expected.txt: Removed.
  • platform/efl/fast/replaced/width100percent-image-expected.png: Removed.
  • platform/efl/fast/replaced/width100percent-image-expected.txt: Removed.
  • platform/efl/fast/replaced/width100percent-menulist-expected.png: Removed.
  • platform/efl/fast/replaced/width100percent-menulist-expected.txt: Removed.
  • platform/efl/fast/replaced/width100percent-radio-expected.png: Removed.
  • platform/efl/fast/replaced/width100percent-radio-expected.txt: Removed.
  • platform/efl/fast/replaced/width100percent-searchfield-expected.png: Removed.
  • platform/efl/fast/replaced/width100percent-searchfield-expected.txt: Removed.
  • platform/efl/fast/replaced/width100percent-textarea-expected.png: Removed.
  • platform/efl/fast/replaced/width100percent-textarea-expected.txt: Removed.
  • platform/efl/fast/replaced/width100percent-textfield-expected.png: Removed.
  • platform/efl/fast/replaced/width100percent-textfield-expected.txt: Removed.
  • platform/efl/fast/ruby: Removed.
  • platform/efl/fast/ruby/base-shorter-than-text-expected.png: Removed.
  • platform/efl/fast/ruby/base-shorter-than-text-expected.txt: Removed.
  • platform/efl/fast/ruby/bopomofo-expected.png: Removed.
  • platform/efl/fast/ruby/bopomofo-expected.txt: Removed.
  • platform/efl/fast/ruby/bopomofo-letter-spacing-expected.png: Removed.
  • platform/efl/fast/ruby/bopomofo-letter-spacing-expected.txt: Removed.
  • platform/efl/fast/ruby/bopomofo-rl-expected.png: Removed.
  • platform/efl/fast/ruby/bopomofo-rl-expected.txt: Removed.
  • platform/efl/fast/ruby/nested-ruby-expected.png: Removed.
  • platform/efl/fast/ruby/nested-ruby-expected.txt: Removed.
  • platform/efl/fast/ruby/overhang-horizontal-expected.png: Removed.
  • platform/efl/fast/ruby/position-after-expected.png: Removed.
  • platform/efl/fast/ruby/ruby-base-merge-block-children-crash-2-expected.txt: Removed.
  • platform/efl/fast/ruby/ruby-base-merge-block-children-crash-expected.png: Removed.
  • platform/efl/fast/ruby/ruby-base-merge-block-children-crash-expected.txt: Removed.
  • platform/efl/fast/ruby/ruby-beforeafter-expected.png: Removed.
  • platform/efl/fast/ruby/ruby-beforeafter-expected.txt: Removed.
  • platform/efl/fast/ruby/ruby-block-style-not-updated-expected.png: Removed.
  • platform/efl/fast/ruby/ruby-block-style-not-updated-with-before-after-content-expected.png: Removed.
  • platform/efl/fast/ruby/ruby-empty-rt-expected.png: Removed.
  • platform/efl/fast/ruby/ruby-empty-rt-expected.txt: Removed.
  • platform/efl/fast/ruby/ruby-inline-style-not-updated-expected.png: Removed.
  • platform/efl/fast/ruby/ruby-inline-style-not-updated-with-before-after-content-expected.png: Removed.
  • platform/efl/fast/ruby/ruby-inline-table-expected.png: Removed.
  • platform/efl/fast/ruby/ruby-inline-table-expected.txt: Removed.
  • platform/efl/fast/ruby/ruby-length-expected.png: Removed.
  • platform/efl/fast/ruby/ruby-length-expected.txt: Removed.
  • platform/efl/fast/ruby/ruby-run-break-expected.png: Removed.
  • platform/efl/fast/ruby/ruby-run-break-expected.txt: Removed.
  • platform/efl/fast/ruby/ruby-runs-expected.png: Removed.
  • platform/efl/fast/ruby/ruby-runs-expected.txt: Removed.
  • platform/efl/fast/ruby/ruby-runs-spans-expected.png: Removed.
  • platform/efl/fast/ruby/ruby-runs-spans-expected.txt: Removed.
  • platform/efl/fast/ruby/ruby-simple-expected.png: Removed.
  • platform/efl/fast/ruby/ruby-simple-expected.txt: Removed.
  • platform/efl/fast/ruby/ruby-simple-rp-expected.png: Removed.
  • platform/efl/fast/ruby/ruby-simple-rp-expected.txt: Removed.
  • platform/efl/fast/ruby/ruby-text-before-after-content-expected.png: Removed.
  • platform/efl/fast/ruby/ruby-text-before-after-content-expected.txt: Removed.
  • platform/efl/fast/ruby/ruby-trailing-expected.png: Removed.
  • platform/efl/fast/ruby/ruby-trailing-expected.txt: Removed.
  • platform/efl/fast/ruby/rubyDOM-insert-rt-expected.png: Removed.
  • platform/efl/fast/ruby/rubyDOM-insert-rt-expected.txt: Removed.
  • platform/efl/fast/ruby/rubyDOM-insert-text1-expected.png: Removed.
  • platform/efl/fast/ruby/rubyDOM-insert-text1-expected.txt: Removed.
  • platform/efl/fast/ruby/rubyDOM-insert-text2-expected.png: Removed.
  • platform/efl/fast/ruby/rubyDOM-insert-text2-expected.txt: Removed.
  • platform/efl/fast/ruby/rubyDOM-insert-text3-expected.png: Removed.
  • platform/efl/fast/ruby/rubyDOM-insert-text3-expected.txt: Removed.
  • platform/efl/fast/ruby/rubyDOM-remove-rt1-expected.png: Removed.
  • platform/efl/fast/ruby/rubyDOM-remove-rt1-expected.txt: Removed.
  • platform/efl/fast/ruby/rubyDOM-remove-rt2-expected.png: Removed.
  • platform/efl/fast/ruby/rubyDOM-remove-rt2-expected.txt: Removed.
  • platform/efl/fast/ruby/rubyDOM-remove-text1-expected.png: Removed.
  • platform/efl/fast/ruby/rubyDOM-remove-text1-expected.txt: Removed.
  • platform/efl/fast/ruby/rubyDOM-remove-text2-expected.png: Removed.
  • platform/efl/fast/ruby/rubyDOM-remove-text2-expected.txt: Removed.
  • platform/efl/fast/ruby/select-ruby-expected.txt: Removed.
  • platform/efl/fast/scrolling: Removed.
  • platform/efl/fast/scrolling/rtl-scrollbars-animation-property-expected.txt: Removed.
  • platform/efl/fast/scrolling/scrollbar-tickmarks-styled-expected.png: Removed.
  • platform/efl/fast/selectors: Removed.
  • platform/efl/fast/selectors/001-expected.png: Removed.
  • platform/efl/fast/selectors/001-expected.txt: Removed.
  • platform/efl/fast/selectors/002-expected.png: Removed.
  • platform/efl/fast/selectors/002-expected.txt: Removed.
  • platform/efl/fast/selectors/003-expected.png: Removed.
  • platform/efl/fast/selectors/003-expected.txt: Removed.
  • platform/efl/fast/selectors/004-expected.png: Removed.
  • platform/efl/fast/selectors/004-expected.txt: Removed.
  • platform/efl/fast/selectors/005-expected.png: Removed.
  • platform/efl/fast/selectors/005-expected.txt: Removed.
  • platform/efl/fast/selectors/006-expected.png: Removed.
  • platform/efl/fast/selectors/006-expected.txt: Removed.
  • platform/efl/fast/selectors/007a-expected.png: Removed.
  • platform/efl/fast/selectors/007a-expected.txt: Removed.
  • platform/efl/fast/selectors/007b-expected.png: Removed.
  • platform/efl/fast/selectors/007b-expected.txt: Removed.
  • platform/efl/fast/selectors/008-expected.png: Removed.
  • platform/efl/fast/selectors/008-expected.txt: Removed.
  • platform/efl/fast/selectors/009-expected.png: Removed.
  • platform/efl/fast/selectors/009-expected.txt: Removed.
  • platform/efl/fast/selectors/010-expected.png: Removed.
  • platform/efl/fast/selectors/010-expected.txt: Removed.
  • platform/efl/fast/selectors/011-expected.png: Removed.
  • platform/efl/fast/selectors/011-expected.txt: Removed.
  • platform/efl/fast/selectors/012-expected.png: Removed.
  • platform/efl/fast/selectors/012-expected.txt: Removed.
  • platform/efl/fast/selectors/013-expected.png: Removed.
  • platform/efl/fast/selectors/013-expected.txt: Removed.
  • platform/efl/fast/selectors/014-expected.png: Removed.
  • platform/efl/fast/selectors/014-expected.txt: Removed.
  • platform/efl/fast/selectors/015-expected.png: Removed.
  • platform/efl/fast/selectors/015-expected.txt: Removed.
  • platform/efl/fast/selectors/016-expected.png: Removed.
  • platform/efl/fast/selectors/016-expected.txt: Removed.
  • platform/efl/fast/selectors/017-expected.png: Removed.
  • platform/efl/fast/selectors/017-expected.txt: Removed.
  • platform/efl/fast/selectors/018-expected.png: Removed.
  • platform/efl/fast/selectors/018-expected.txt: Removed.
  • platform/efl/fast/selectors/018b-expected.png: Removed.
  • platform/efl/fast/selectors/018b-expected.txt: Removed.
  • platform/efl/fast/selectors/019-expected.png: Removed.
  • platform/efl/fast/selectors/019-expected.txt: Removed.
  • platform/efl/fast/selectors/020-expected.png: Removed.
  • platform/efl/fast/selectors/020-expected.txt: Removed.
  • platform/efl/fast/selectors/021-expected.png: Removed.
  • platform/efl/fast/selectors/021-expected.txt: Removed.
  • platform/efl/fast/selectors/021b-expected.png: Removed.
  • platform/efl/fast/selectors/021b-expected.txt: Removed.
  • platform/efl/fast/selectors/027-expected.png: Removed.
  • platform/efl/fast/selectors/027-expected.txt: Removed.
  • platform/efl/fast/selectors/032-expected.png: Removed.
  • platform/efl/fast/selectors/032-expected.txt: Removed.
  • platform/efl/fast/selectors/034-expected.png: Removed.
  • platform/efl/fast/selectors/034-expected.txt: Removed.
  • platform/efl/fast/selectors/038-expected.png: Removed.
  • platform/efl/fast/selectors/038-expected.txt: Removed.
  • platform/efl/fast/selectors/039-expected.png: Removed.
  • platform/efl/fast/selectors/039-expected.txt: Removed.
  • platform/efl/fast/selectors/039b-expected.png: Removed.
  • platform/efl/fast/selectors/039b-expected.txt: Removed.
  • platform/efl/fast/selectors/041-expected.png: Removed.
  • platform/efl/fast/selectors/041-expected.txt: Removed.
  • platform/efl/fast/selectors/042-expected.png: Removed.
  • platform/efl/fast/selectors/042-expected.txt: Removed.
  • platform/efl/fast/selectors/043-expected.png: Removed.
  • platform/efl/fast/selectors/043-expected.txt: Removed.
  • platform/efl/fast/selectors/043b-expected.png: Removed.
  • platform/efl/fast/selectors/043b-expected.txt: Removed.
  • platform/efl/fast/selectors/044-expected.png: Removed.
  • platform/efl/fast/selectors/044-expected.txt: Removed.
  • platform/efl/fast/selectors/044b-expected.png: Removed.
  • platform/efl/fast/selectors/044b-expected.txt: Removed.
  • platform/efl/fast/selectors/044c-expected.png: Removed.
  • platform/efl/fast/selectors/044c-expected.txt: Removed.
  • platform/efl/fast/selectors/044d-expected.png: Removed.
  • platform/efl/fast/selectors/044d-expected.txt: Removed.
  • platform/efl/fast/selectors/045-expected.png: Removed.
  • platform/efl/fast/selectors/045-expected.txt: Removed.
  • platform/efl/fast/selectors/045b-expected.png: Removed.
  • platform/efl/fast/selectors/045b-expected.txt: Removed.
  • platform/efl/fast/selectors/045c-expected.png: Removed.
  • platform/efl/fast/selectors/045c-expected.txt: Removed.
  • platform/efl/fast/selectors/046-expected.png: Removed.
  • platform/efl/fast/selectors/046-expected.txt: Removed.
  • platform/efl/fast/selectors/054-expected.png: Removed.
  • platform/efl/fast/selectors/054-expected.txt: Removed.
  • platform/efl/fast/selectors/056-expected.png: Removed.
  • platform/efl/fast/selectors/056-expected.txt: Removed.
  • platform/efl/fast/selectors/058-expected.png: Removed.
  • platform/efl/fast/selectors/058-expected.txt: Removed.
  • platform/efl/fast/selectors/059-expected.png: Removed.
  • platform/efl/fast/selectors/059-expected.txt: Removed.
  • platform/efl/fast/selectors/060-expected.png: Removed.
  • platform/efl/fast/selectors/060-expected.txt: Removed.
  • platform/efl/fast/selectors/061-expected.png: Removed.
  • platform/efl/fast/selectors/061-expected.txt: Removed.
  • platform/efl/fast/selectors/062-expected.png: Removed.
  • platform/efl/fast/selectors/062-expected.txt: Removed.
  • platform/efl/fast/selectors/063-expected.png: Removed.
  • platform/efl/fast/selectors/063-expected.txt: Removed.
  • platform/efl/fast/selectors/064-expected.png: Removed.
  • platform/efl/fast/selectors/064-expected.txt: Removed.
  • platform/efl/fast/selectors/065-expected.png: Removed.
  • platform/efl/fast/selectors/065-expected.txt: Removed.
  • platform/efl/fast/selectors/066-expected.png: Removed.
  • platform/efl/fast/selectors/066-expected.txt: Removed.
  • platform/efl/fast/selectors/066b-expected.png: Removed.
  • platform/efl/fast/selectors/066b-expected.txt: Removed.
  • platform/efl/fast/selectors/072-expected.png: Removed.
  • platform/efl/fast/selectors/072-expected.txt: Removed.
  • platform/efl/fast/selectors/072b-expected.png: Removed.
  • platform/efl/fast/selectors/072b-expected.txt: Removed.
  • platform/efl/fast/selectors/077-expected.png: Removed.
  • platform/efl/fast/selectors/077-expected.txt: Removed.
  • platform/efl/fast/selectors/077b-expected.png: Removed.
  • platform/efl/fast/selectors/077b-expected.txt: Removed.
  • platform/efl/fast/selectors/078b-expected.png: Removed.
  • platform/efl/fast/selectors/078b-expected.txt: Removed.
  • platform/efl/fast/selectors/083-expected.png: Removed.
  • platform/efl/fast/selectors/083-expected.txt: Removed.
  • platform/efl/fast/selectors/087b-expected.png: Removed.
  • platform/efl/fast/selectors/087b-expected.txt: Removed.
  • platform/efl/fast/selectors/088b-expected.png: Removed.
  • platform/efl/fast/selectors/088b-expected.txt: Removed.
  • platform/efl/fast/selectors/089-expected.png: Removed.
  • platform/efl/fast/selectors/089-expected.txt: Removed.
  • platform/efl/fast/selectors/090b-expected.png: Removed.
  • platform/efl/fast/selectors/090b-expected.txt: Removed.
  • platform/efl/fast/selectors/154-expected.png: Removed.
  • platform/efl/fast/selectors/154-expected.txt: Removed.
  • platform/efl/fast/selectors/155-expected.png: Removed.
  • platform/efl/fast/selectors/155-expected.txt: Removed.
  • platform/efl/fast/selectors/155a-expected.png: Removed.
  • platform/efl/fast/selectors/155a-expected.txt: Removed.
  • platform/efl/fast/selectors/155b-expected.png: Removed.
  • platform/efl/fast/selectors/155b-expected.txt: Removed.
  • platform/efl/fast/selectors/155c-expected.png: Removed.
  • platform/efl/fast/selectors/155c-expected.txt: Removed.
  • platform/efl/fast/selectors/155d-expected.png: Removed.
  • platform/efl/fast/selectors/155d-expected.txt: Removed.
  • platform/efl/fast/selectors/156b-expected.png: Removed.
  • platform/efl/fast/selectors/156b-expected.txt: Removed.
  • platform/efl/fast/selectors/157-expected.png: Removed.
  • platform/efl/fast/selectors/157-expected.txt: Removed.
  • platform/efl/fast/selectors/158-expected.png: Removed.
  • platform/efl/fast/selectors/158-expected.txt: Removed.
  • platform/efl/fast/selectors/159-expected.png: Removed.
  • platform/efl/fast/selectors/159-expected.txt: Removed.
  • platform/efl/fast/selectors/160-expected.png: Removed.
  • platform/efl/fast/selectors/160-expected.txt: Removed.
  • platform/efl/fast/selectors/166-expected.png: Removed.
  • platform/efl/fast/selectors/166-expected.txt: Removed.
  • platform/efl/fast/selectors/166a-expected.png: Removed.
  • platform/efl/fast/selectors/166a-expected.txt: Removed.
  • platform/efl/fast/selectors/167-expected.png: Removed.
  • platform/efl/fast/selectors/167-expected.txt: Removed.
  • platform/efl/fast/selectors/167a-expected.png: Removed.
  • platform/efl/fast/selectors/167a-expected.txt: Removed.
  • platform/efl/fast/selectors/168-expected.png: Removed.
  • platform/efl/fast/selectors/168-expected.txt: Removed.
  • platform/efl/fast/selectors/168a-expected.png: Removed.
  • platform/efl/fast/selectors/168a-expected.txt: Removed.
  • platform/efl/fast/selectors/169-expected.png: Removed.
  • platform/efl/fast/selectors/169-expected.txt: Removed.
  • platform/efl/fast/selectors/169a-expected.png: Removed.
  • platform/efl/fast/selectors/169a-expected.txt: Removed.
  • platform/efl/fast/selectors/170-expected.png: Removed.
  • platform/efl/fast/selectors/170-expected.txt: Removed.
  • platform/efl/fast/selectors/170a-expected.png: Removed.
  • platform/efl/fast/selectors/170a-expected.txt: Removed.
  • platform/efl/fast/selectors/170b-expected.png: Removed.
  • platform/efl/fast/selectors/170b-expected.txt: Removed.
  • platform/efl/fast/selectors/170c-expected.png: Removed.
  • platform/efl/fast/selectors/170c-expected.txt: Removed.
  • platform/efl/fast/selectors/170d-expected.png: Removed.
  • platform/efl/fast/selectors/170d-expected.txt: Removed.
  • platform/efl/fast/selectors/175a-expected.png: Removed.
  • platform/efl/fast/selectors/175a-expected.txt: Removed.
  • platform/efl/fast/selectors/175b-expected.png: Removed.
  • platform/efl/fast/selectors/175b-expected.txt: Removed.
  • platform/efl/fast/selectors/175c-expected.png: Removed.
  • platform/efl/fast/selectors/175c-expected.txt: Removed.
  • platform/efl/fast/selectors/177a-expected.png: Removed.
  • platform/efl/fast/selectors/177a-expected.txt: Removed.
  • platform/efl/fast/selectors/177b-expected.png: Removed.
  • platform/efl/fast/selectors/177b-expected.txt: Removed.
  • platform/efl/fast/selectors/lang-inheritance-expected.png: Removed.
  • platform/efl/fast/selectors/lang-inheritance-expected.txt: Removed.
  • platform/efl/fast/selectors/lang-inheritance2-expected.png: Removed.
  • platform/efl/fast/selectors/lang-inheritance2-expected.txt: Removed.
  • platform/efl/fast/selectors/lang-vs-xml-lang-expected.png: Removed.
  • platform/efl/fast/selectors/lang-vs-xml-lang-expected.txt: Removed.
  • platform/efl/fast/selectors/lang-vs-xml-lang-xhtml-expected.png: Removed.
  • platform/efl/fast/selectors/lang-vs-xml-lang-xhtml-expected.txt: Removed.
  • platform/efl/fast/selectors/nondeterministic-combinators-expected.png: Removed.
  • platform/efl/fast/selectors/nondeterministic-combinators-expected.txt: Removed.
  • platform/efl/fast/selectors/unqualified-hover-quirks-expected.png: Removed.
  • platform/efl/fast/selectors/unqualified-hover-quirks-expected.txt: Removed.
  • platform/efl/fast/selectors/unqualified-hover-strict-expected.png: Removed.
  • platform/efl/fast/selectors/unqualified-hover-strict-expected.txt: Removed.
  • platform/efl/fast/selectors/visited-descendant-expected.png: Removed.
  • platform/efl/fast/selectors/visited-descendant-expected.txt: Removed.
  • platform/efl/fast/shrink-wrap: Removed.
  • platform/efl/fast/shrink-wrap/rect-shrink-wrap-expected.txt: Removed.
  • platform/efl/fast/spatial-navigation: Removed.
  • platform/efl/fast/spatial-navigation/snav-multiple-select-focusring-expected.png: Removed.
  • platform/efl/fast/spatial-navigation/snav-multiple-select-focusring-expected.txt: Removed.
  • platform/efl/fast/sub-pixel: Removed.
  • platform/efl/fast/sub-pixel/selection: Removed.
  • platform/efl/fast/sub-pixel/selection/selection-gaps-at-fractional-offsets-expected.png: Removed.
  • platform/efl/fast/sub-pixel/selection/selection-rect-in-sub-pixel-table-expected.png: Removed.
  • platform/efl/fast/sub-pixel/sub-pixel-accumulates-to-layers-expected.png: Removed.
  • platform/efl/fast/sub-pixel/sub-pixel-accumulates-to-layers-expected.txt: Removed.
  • platform/efl/fast/sub-pixel/sub-pixel-iframe-copy-on-scroll-expected.png: Removed.
  • platform/efl/fast/sub-pixel/sub-pixel-iframe-copy-on-scroll-expected.txt: Removed.
  • platform/efl/fast/sub-pixel/transformed-iframe-copy-on-scroll-expected.png: Removed.
  • platform/efl/fast/sub-pixel/transformed-iframe-copy-on-scroll-expected.txt: Removed.
  • platform/efl/fast/table: Removed.
  • platform/efl/fast/table/001-expected.png: Removed.
  • platform/efl/fast/table/001-expected.txt: Removed.
  • platform/efl/fast/table/002-expected.png: Removed.
  • platform/efl/fast/table/002-expected.txt: Removed.
  • platform/efl/fast/table/003-expected.png: Removed.
  • platform/efl/fast/table/003-expected.txt: Removed.
  • platform/efl/fast/table/004-expected.png: Removed.
  • platform/efl/fast/table/004-expected.txt: Removed.
  • platform/efl/fast/table/005-expected.png: Removed.
  • platform/efl/fast/table/005-expected.txt: Removed.
  • platform/efl/fast/table/006-expected.png: Removed.
  • platform/efl/fast/table/006-expected.txt: Removed.
  • platform/efl/fast/table/007-expected.png: Removed.
  • platform/efl/fast/table/007-expected.txt: Removed.
  • platform/efl/fast/table/008-expected.png: Removed.
  • platform/efl/fast/table/008-expected.txt: Removed.
  • platform/efl/fast/table/009-expected.png: Removed.
  • platform/efl/fast/table/009-expected.txt: Removed.
  • platform/efl/fast/table/010-expected.png: Removed.
  • platform/efl/fast/table/010-expected.txt: Removed.
  • platform/efl/fast/table/011-expected.png: Removed.
  • platform/efl/fast/table/011-expected.txt: Removed.
  • platform/efl/fast/table/012-expected.png: Removed.
  • platform/efl/fast/table/012-expected.txt: Removed.
  • platform/efl/fast/table/013-expected.png: Removed.
  • platform/efl/fast/table/013-expected.txt: Removed.
  • platform/efl/fast/table/014-expected.png: Removed.
  • platform/efl/fast/table/014-expected.txt: Removed.
  • platform/efl/fast/table/015-expected.png: Removed.
  • platform/efl/fast/table/015-expected.txt: Removed.
  • platform/efl/fast/table/016-expected.png: Removed.
  • platform/efl/fast/table/016-expected.txt: Removed.
  • platform/efl/fast/table/017-expected.png: Removed.
  • platform/efl/fast/table/017-expected.txt: Removed.
  • platform/efl/fast/table/018-expected.png: Removed.
  • platform/efl/fast/table/018-expected.txt: Removed.
  • platform/efl/fast/table/020-expected.png: Removed.
  • platform/efl/fast/table/020-expected.txt: Removed.
  • platform/efl/fast/table/021-expected.png: Removed.
  • platform/efl/fast/table/021-expected.txt: Removed.
  • platform/efl/fast/table/022-expected.png: Removed.
  • platform/efl/fast/table/022-expected.txt: Removed.
  • platform/efl/fast/table/023-expected.png: Removed.
  • platform/efl/fast/table/023-expected.txt: Removed.
  • platform/efl/fast/table/024-expected.txt: Removed.
  • platform/efl/fast/table/025-expected.png: Removed.
  • platform/efl/fast/table/025-expected.txt: Removed.
  • platform/efl/fast/table/026-expected.png: Removed.
  • platform/efl/fast/table/026-expected.txt: Removed.
  • platform/efl/fast/table/027-expected.png: Removed.
  • platform/efl/fast/table/027-expected.txt: Removed.
  • platform/efl/fast/table/027-vertical-expected.png: Removed.
  • platform/efl/fast/table/027-vertical-expected.txt: Removed.
  • platform/efl/fast/table/028-expected.png: Removed.
  • platform/efl/fast/table/028-expected.txt: Removed.
  • platform/efl/fast/table/028-vertical-expected.png: Removed.
  • platform/efl/fast/table/028-vertical-expected.txt: Removed.
  • platform/efl/fast/table/029-expected.png: Removed.
  • platform/efl/fast/table/029-expected.txt: Removed.
  • platform/efl/fast/table/030-expected.png: Removed.
  • platform/efl/fast/table/030-expected.txt: Removed.
  • platform/efl/fast/table/031-expected.txt: Removed.
  • platform/efl/fast/table/032-expected.txt: Removed.
  • platform/efl/fast/table/033-expected.png: Removed.
  • platform/efl/fast/table/033-expected.txt: Removed.
  • platform/efl/fast/table/034-expected.png: Removed.
  • platform/efl/fast/table/034-expected.txt: Removed.
  • platform/efl/fast/table/035-expected.png: Removed.
  • platform/efl/fast/table/035-expected.txt: Removed.
  • platform/efl/fast/table/035-vertical-expected.png: Removed.
  • platform/efl/fast/table/035-vertical-expected.txt: Removed.
  • platform/efl/fast/table/036-expected.png: Removed.
  • platform/efl/fast/table/036-expected.txt: Removed.
  • platform/efl/fast/table/037-expected.png: Removed.
  • platform/efl/fast/table/037-expected.txt: Removed.
  • platform/efl/fast/table/038-expected.png: Removed.
  • platform/efl/fast/table/038-expected.txt: Removed.
  • platform/efl/fast/table/038-vertical-expected.png: Removed.
  • platform/efl/fast/table/038-vertical-expected.txt: Removed.
  • platform/efl/fast/table/039-expected.png: Removed.
  • platform/efl/fast/table/039-expected.txt: Removed.
  • platform/efl/fast/table/040-expected.png: Removed.
  • platform/efl/fast/table/040-expected.txt: Removed.
  • platform/efl/fast/table/040-vertical-expected.png: Removed.
  • platform/efl/fast/table/040-vertical-expected.txt: Removed.
  • platform/efl/fast/table/041-expected.png: Removed.
  • platform/efl/fast/table/041-expected.txt: Removed.
  • platform/efl/fast/table/100-percent-cell-width-expected.png: Removed.
  • platform/efl/fast/table/100-percent-cell-width-expected.txt: Removed.
  • platform/efl/fast/table/absolute-table-at-bottom-expected.png: Removed.
  • platform/efl/fast/table/absolute-table-at-bottom-expected.txt: Removed.
  • platform/efl/fast/table/add-before-anonymous-child-expected.png: Removed.
  • platform/efl/fast/table/add-before-anonymous-child-expected.txt: Removed.
  • platform/efl/fast/table/align-right-within-left-aligned-div-expected.txt: Removed.
  • platform/efl/fast/table/append-cells-expected.png: Removed.
  • platform/efl/fast/table/append-cells-expected.txt: Removed.
  • platform/efl/fast/table/append-cells2-expected.png: Removed.
  • platform/efl/fast/table/append-cells2-expected.txt: Removed.
  • platform/efl/fast/table/auto-with-percent-height-expected.png: Removed.
  • platform/efl/fast/table/auto-with-percent-height-expected.txt: Removed.
  • platform/efl/fast/table/auto-with-percent-height-vertical-expected.png: Removed.
  • platform/efl/fast/table/auto-with-percent-height-vertical-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing: Removed.
  • platform/efl/fast/table/border-collapsing/001-expected.png: Removed.
  • platform/efl/fast/table/border-collapsing/001-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/001-vertical-expected.png: Removed.
  • platform/efl/fast/table/border-collapsing/001-vertical-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/002-expected.png: Removed.
  • platform/efl/fast/table/border-collapsing/002-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/002-vertical-expected.png: Removed.
  • platform/efl/fast/table/border-collapsing/002-vertical-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/003-expected.png: Removed.
  • platform/efl/fast/table/border-collapsing/003-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/003-vertical-expected.png: Removed.
  • platform/efl/fast/table/border-collapsing/003-vertical-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/004-expected.png: Removed.
  • platform/efl/fast/table/border-collapsing/004-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/004-vertical-expected.png: Removed.
  • platform/efl/fast/table/border-collapsing/004-vertical-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/border-collapsing-head-foot-expected.png: Removed.
  • platform/efl/fast/table/border-collapsing/border-collapsing-head-foot-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/border-collapsing-head-foot-vertical-expected.png: Removed.
  • platform/efl/fast/table/border-collapsing/border-collapsing-head-foot-vertical-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/bug14274-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/cached-69296-expected.png: Removed.
  • platform/efl/fast/table/border-collapsing/cached-69296-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/cached-cell-append-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/cached-cell-remove-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/cached-change-cell-border-color-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/cached-change-cell-border-width-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/cached-change-cell-sl-border-color-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/cached-change-col-border-color-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/cached-change-col-border-width-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/cached-change-colgroup-border-color-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/cached-change-colgroup-border-width-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/cached-change-row-border-color-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/cached-change-row-border-width-expected.png: Removed.
  • platform/efl/fast/table/border-collapsing/cached-change-row-border-width-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/cached-change-table-border-color-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/cached-change-table-border-width-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/cached-change-tbody-border-color-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/cached-change-tbody-border-width-expected.png: Removed.
  • platform/efl/fast/table/border-collapsing/collapsed-border-with-col-colgroup-span-expected.png: Removed.
  • platform/efl/fast/table/border-collapsing/collapsed-borders-adjoining-sections-vertical-rl-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/collapsed-borders-painted-once-on-inner-cells-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/equal-precedence-resolution-expected.png: Removed.
  • platform/efl/fast/table/border-collapsing/equal-precedence-resolution-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/equal-precedence-resolution-vertical-expected.png: Removed.
  • platform/efl/fast/table/border-collapsing/equal-precedence-resolution-vertical-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/rtl-border-collapsing-expected.png: Removed.
  • platform/efl/fast/table/border-collapsing/rtl-border-collapsing-expected.txt: Removed.
  • platform/efl/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.png: Removed.
  • platform/efl/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.txt: Removed.
  • platform/efl/fast/table/caption-relayout-expected.png: Removed.
  • platform/efl/fast/table/caption-relayout-expected.txt: Removed.
  • platform/efl/fast/table/cell-absolute-child-expected.png: Removed.
  • platform/efl/fast/table/cell-absolute-child-expected.txt: Removed.
  • platform/efl/fast/table/cell-coalescing-expected.png: Removed.
  • platform/efl/fast/table/cell-coalescing-expected.txt: Removed.
  • platform/efl/fast/table/cell-pref-width-invalidation-expected.png: Removed.
  • platform/efl/fast/table/cell-pref-width-invalidation-expected.txt: Removed.
  • platform/efl/fast/table/cell-width-auto-expected.png: Removed.
  • platform/efl/fast/table/cell-width-auto-expected.txt: Removed.
  • platform/efl/fast/table/cellindex-expected.png: Removed.
  • platform/efl/fast/table/cellindex-expected.txt: Removed.
  • platform/efl/fast/table/click-near-anonymous-table-expected.png: Removed.
  • platform/efl/fast/table/click-near-anonymous-table-expected.txt: Removed.
  • platform/efl/fast/table/col-and-colgroup-offsets-expected.txt: Removed.
  • platform/efl/fast/table/col-width-span-expand-expected.txt: Removed.
  • platform/efl/fast/table/colgroup-preceded-by-caption-expected.png: Removed.
  • platform/efl/fast/table/colgroup-preceded-by-caption-expected.txt: Removed.
  • platform/efl/fast/table/colgroup-spanning-groups-rules-expected.png: Removed.
  • platform/efl/fast/table/colgroup-spanning-groups-rules-expected.txt: Removed.
  • platform/efl/fast/table/colspan-with-all-percent-cells-expected.txt: Removed.
  • platform/efl/fast/table/colspanMinWidth-expected.png: Removed.
  • platform/efl/fast/table/colspanMinWidth-expected.txt: Removed.
  • platform/efl/fast/table/colspanMinWidth-vertical-expected.png: Removed.
  • platform/efl/fast/table/colspanMinWidth-vertical-expected.txt: Removed.
  • platform/efl/fast/table/dynamic-caption-add-before-child-expected.png: Removed.
  • platform/efl/fast/table/dynamic-caption-add-before-child-expected.txt: Removed.
  • platform/efl/fast/table/dynamic-caption-add-remove-before-child-expected.png: Removed.
  • platform/efl/fast/table/dynamic-caption-add-remove-before-child-expected.txt: Removed.
  • platform/efl/fast/table/dynamic-cellpadding-expected.png: Removed.
  • platform/efl/fast/table/dynamic-cellpadding-expected.txt: Removed.
  • platform/efl/fast/table/dynamic-descendant-percentage-height-expected.png: Removed.
  • platform/efl/fast/table/dynamic-descendant-percentage-height-expected.txt: Removed.
  • platform/efl/fast/table/early-table-layout-expected.png: Removed.
  • platform/efl/fast/table/early-table-layout-expected.txt: Removed.
  • platform/efl/fast/table/edge-offsets-expected.png: Removed.
  • platform/efl/fast/table/edge-offsets-expected.txt: Removed.
  • platform/efl/fast/table/empty-cells-expected.png: Removed.
  • platform/efl/fast/table/empty-cells-expected.txt: Removed.
  • platform/efl/fast/table/empty-table-percent-height-expected.png: Removed.
  • platform/efl/fast/table/empty-table-percent-height-expected.txt: Removed.
  • platform/efl/fast/table/fixed-granular-cols-expected.png: Removed.
  • platform/efl/fast/table/fixed-nested-expected.png: Removed.
  • platform/efl/fast/table/fixed-nested-expected.txt: Removed.
  • platform/efl/fast/table/fixed-table-non-cell-in-row-expected.png: Removed.
  • platform/efl/fast/table/fixed-table-non-cell-in-row-expected.txt: Removed.
  • platform/efl/fast/table/fixed-table-with-percent-inside-percent-table-expected.png: Removed.
  • platform/efl/fast/table/fixed-table-with-percent-inside-percent-table-expected.txt: Removed.
  • platform/efl/fast/table/fixed-table-with-percent-width-inside-auto-table-expected.png: Removed.
  • platform/efl/fast/table/fixed-table-with-percent-width-inside-auto-table-expected.txt: Removed.
  • platform/efl/fast/table/fixed-table-with-percent-width-inside-div-expected.png: Removed.
  • platform/efl/fast/table/fixed-table-with-percent-width-inside-div-expected.txt: Removed.
  • platform/efl/fast/table/fixed-table-with-percent-width-inside-extra-large-div-expected.png: Removed.
  • platform/efl/fast/table/fixed-table-with-percent-width-inside-fixed-width-table-expected.png: Removed.
  • platform/efl/fast/table/fixed-table-with-percent-width-inside-fixed-width-table-expected.txt: Removed.
  • platform/efl/fast/table/fixed-table-with-small-percent-width-expected.png: Removed.
  • platform/efl/fast/table/fixed-table-with-small-percent-width-expected.txt: Removed.
  • platform/efl/fast/table/fixed-with-auto-with-colspan-expected.png: Removed.
  • platform/efl/fast/table/fixed-with-auto-with-colspan-vertical-expected.png: Removed.
  • platform/efl/fast/table/floating-th-expected.png: Removed.
  • platform/efl/fast/table/floating-th-expected.txt: Removed.
  • platform/efl/fast/table/floatingTablePaintBackground-expected.png: Removed.
  • platform/efl/fast/table/floatingTablePaintBackground-expected.txt: Removed.
  • platform/efl/fast/table/form-with-non-table-display-inside-table-elements-expected.txt: Removed.
  • platform/efl/fast/table/form-with-table-style-expected.png: Removed.
  • platform/efl/fast/table/form-with-table-style-expected.txt: Removed.
  • platform/efl/fast/table/frame-and-rules-expected.png: Removed.
  • platform/efl/fast/table/frame-and-rules-expected.txt: Removed.
  • platform/efl/fast/table/generated-caption-expected.png: Removed.
  • platform/efl/fast/table/generated-caption-expected.txt: Removed.
  • platform/efl/fast/table/giantRowspan-expected.png: Removed.
  • platform/efl/fast/table/giantRowspan-expected.txt: Removed.
  • platform/efl/fast/table/giantRowspan2-expected.png: Removed.
  • platform/efl/fast/table/giantRowspan2-expected.txt: Removed.
  • platform/efl/fast/table/growCellForImageQuirk-expected.png: Removed.
  • platform/efl/fast/table/growCellForImageQuirk-expected.txt: Removed.
  • platform/efl/fast/table/growCellForImageQuirk-vertical-expected.png: Removed.
  • platform/efl/fast/table/growCellForImageQuirk-vertical-expected.txt: Removed.
  • platform/efl/fast/table/height-percent-test-expected.png: Removed.
  • platform/efl/fast/table/height-percent-test-expected.txt: Removed.
  • platform/efl/fast/table/height-percent-test-vertical-expected.png: Removed.
  • platform/efl/fast/table/height-percent-test-vertical-expected.txt: Removed.
  • platform/efl/fast/table/insert-before-anonymous-ancestors-expected.png: Removed.
  • platform/efl/fast/table/insert-before-anonymous-ancestors-expected.txt: Removed.
  • platform/efl/fast/table/insert-cell-before-form-expected.png: Removed.
  • platform/efl/fast/table/insert-cell-before-form-expected.txt: Removed.
  • platform/efl/fast/table/insert-row-before-form-expected.png: Removed.
  • platform/efl/fast/table/insert-row-before-form-expected.txt: Removed.
  • platform/efl/fast/table/invisible-cell-background-expected.png: Removed.
  • platform/efl/fast/table/invisible-cell-background-expected.txt: Removed.
  • platform/efl/fast/table/large-width-expected.png: Removed.
  • platform/efl/fast/table/large-width-expected.txt: Removed.
  • platform/efl/fast/table/max-width-integer-overflow-expected.txt: Removed.
  • platform/efl/fast/table/mozilla-bug10296-vertical-align-1-expected.png: Removed.
  • platform/efl/fast/table/mozilla-bug10296-vertical-align-1-expected.txt: Removed.
  • platform/efl/fast/table/mozilla-bug10296-vertical-align-2-expected.png: Removed.
  • platform/efl/fast/table/mozilla-bug10296-vertical-align-2-expected.txt: Removed.
  • platform/efl/fast/table/multiple-captions-display-expected.png: Removed.
  • platform/efl/fast/table/multiple-captions-display-expected.txt: Removed.
  • platform/efl/fast/table/multiple-percent-height-rows-expected.png: Removed.
  • platform/efl/fast/table/multiple-percent-height-rows-expected.txt: Removed.
  • platform/efl/fast/table/nested-percent-height-table-expected.png: Removed.
  • platform/efl/fast/table/nested-percent-height-table-expected.txt: Removed.
  • platform/efl/fast/table/nobr-expected.png: Removed.
  • platform/efl/fast/table/nobr-expected.txt: Removed.
  • platform/efl/fast/table/overflowHidden-expected.png: Removed.
  • platform/efl/fast/table/overflowHidden-expected.txt: Removed.
  • platform/efl/fast/table/percent-heights-expected.png: Removed.
  • platform/efl/fast/table/percent-heights-expected.txt: Removed.
  • platform/efl/fast/table/percent-widths-stretch-expected.png: Removed.
  • platform/efl/fast/table/percent-widths-stretch-expected.txt: Removed.
  • platform/efl/fast/table/percent-widths-stretch-vertical-expected.txt: Removed.
  • platform/efl/fast/table/prepend-in-anonymous-table-expected.png: Removed.
  • platform/efl/fast/table/prepend-in-anonymous-table-expected.txt: Removed.
  • platform/efl/fast/table/quote-text-around-iframe-expected.png: Removed.
  • platform/efl/fast/table/quote-text-around-iframe-expected.txt: Removed.
  • platform/efl/fast/table/relative-position-containment-expected.png: Removed.
  • platform/efl/fast/table/relative-position-containment-expected.txt: Removed.
  • platform/efl/fast/table/relative-position-offsets-expected.png: Removed.
  • platform/efl/fast/table/relative-position-offsets-expected.txt: Removed.
  • platform/efl/fast/table/relative-position-stacking-expected.png: Removed.
  • platform/efl/fast/table/relative-position-stacking-expected.txt: Removed.
  • platform/efl/fast/table/remove-td-display-none-expected.png: Removed.
  • platform/efl/fast/table/remove-td-display-none-expected.txt: Removed.
  • platform/efl/fast/table/replaced-percent-height-expected.png: Removed.
  • platform/efl/fast/table/replaced-percent-height-expected.txt: Removed.
  • platform/efl/fast/table/row-height-recalc-expected.png: Removed.
  • platform/efl/fast/table/row-height-recalc-expected.txt: Removed.
  • platform/efl/fast/table/rowindex-expected.png: Removed.
  • platform/efl/fast/table/rowindex-expected.txt: Removed.
  • platform/efl/fast/table/rowspan-paint-order-expected.png: Removed.
  • platform/efl/fast/table/rowspan-paint-order-expected.txt: Removed.
  • platform/efl/fast/table/rowspan-paint-order-vertical-expected.png: Removed.
  • platform/efl/fast/table/rowspan-paint-order-vertical-expected.txt: Removed.
  • platform/efl/fast/table/rtl-cell-display-none-assert-expected.png: Removed.
  • platform/efl/fast/table/rtl-cell-display-none-assert-expected.txt: Removed.
  • platform/efl/fast/table/rules-attr-dynchange1-expected.png: Removed.
  • platform/efl/fast/table/rules-attr-dynchange1-expected.txt: Removed.
  • platform/efl/fast/table/rules-attr-dynchange2-expected.png: Removed.
  • platform/efl/fast/table/rules-attr-dynchange2-expected.txt: Removed.
  • platform/efl/fast/table/simple_paint-expected.txt: Removed.
  • platform/efl/fast/table/spanOverlapRepaint-expected.png: Removed.
  • platform/efl/fast/table/spanOverlapRepaint-expected.txt: Removed.
  • platform/efl/fast/table/stale-grid-crash-expected.png: Removed.
  • platform/efl/fast/table/stale-grid-crash-expected.txt: Removed.
  • platform/efl/fast/table/table-after-child-in-table-expected.png: Removed.
  • platform/efl/fast/table/table-after-child-in-table-expected.txt: Removed.
  • platform/efl/fast/table/table-and-parts-outline-expected.png: Removed.
  • platform/efl/fast/table/table-and-parts-outline-expected.txt: Removed.
  • platform/efl/fast/table/table-anonymous-cell-bug-expected.txt: Removed.
  • platform/efl/fast/table/table-anonymous-row-bug-expected.txt: Removed.
  • platform/efl/fast/table/table-anonymous-section-bug-expected.txt: Removed.
  • platform/efl/fast/table/table-before-child-in-table-expected.png: Removed.
  • platform/efl/fast/table/table-before-child-in-table-expected.txt: Removed.
  • platform/efl/fast/table/table-before-child-style-update-expected.txt: Removed.
  • platform/efl/fast/table/table-cell-after-child-in-block-expected.png: Removed.
  • platform/efl/fast/table/table-cell-after-child-in-block-expected.txt: Removed.
  • platform/efl/fast/table/table-cell-after-child-in-table-expected.png: Removed.
  • platform/efl/fast/table/table-cell-after-child-in-table-expected.txt: Removed.
  • platform/efl/fast/table/table-cell-before-after-content-around-table-block-expected.txt: Removed.
  • platform/efl/fast/table/table-cell-before-after-content-around-table-expected.txt: Removed.
  • platform/efl/fast/table/table-cell-before-after-content-around-table-row-expected.txt: Removed.
  • platform/efl/fast/table/table-cell-before-child-in-block-expected.png: Removed.
  • platform/efl/fast/table/table-cell-before-child-in-block-expected.txt: Removed.
  • platform/efl/fast/table/table-cell-before-child-in-table-expected.png: Removed.
  • platform/efl/fast/table/table-cell-before-child-in-table-expected.txt: Removed.
  • platform/efl/fast/table/table-cell-split-expected.txt: Removed.
  • platform/efl/fast/table/table-continuation-outline-paint-crash-expected.png: Removed.
  • platform/efl/fast/table/table-continuation-outline-paint-crash-expected.txt: Removed.
  • platform/efl/fast/table/table-display-types-expected.png: Removed.
  • platform/efl/fast/table/table-display-types-expected.txt: Removed.
  • platform/efl/fast/table/table-display-types-strict-expected.png: Removed.
  • platform/efl/fast/table/table-display-types-strict-expected.txt: Removed.
  • platform/efl/fast/table/table-display-types-vertical-expected.png: Removed.
  • platform/efl/fast/table/table-display-types-vertical-expected.txt: Removed.
  • platform/efl/fast/table/table-hspace-align-center-expected.png: Removed.
  • platform/efl/fast/table/table-hspace-align-center-expected.txt: Removed.
  • platform/efl/fast/table/table-insert-before-non-anonymous-block-expected.txt: Removed.
  • platform/efl/fast/table/table-row-after-child-in-block-expected.png: Removed.
  • platform/efl/fast/table/table-row-after-child-in-block-expected.txt: Removed.
  • platform/efl/fast/table/table-row-after-child-in-table-expected.png: Removed.
  • platform/efl/fast/table/table-row-after-child-in-table-expected.txt: Removed.
  • platform/efl/fast/table/table-row-before-after-content-around-block-expected.txt: Removed.
  • platform/efl/fast/table/table-row-before-after-content-around-table-cell-expected.txt: Removed.
  • platform/efl/fast/table/table-row-before-after-content-around-table-expected.txt: Removed.
  • platform/efl/fast/table/table-row-before-child-in-block-expected.png: Removed.
  • platform/efl/fast/table/table-row-before-child-in-block-expected.txt: Removed.
  • platform/efl/fast/table/table-row-before-child-in-table-expected.png: Removed.
  • platform/efl/fast/table/table-row-before-child-in-table-expected.txt: Removed.
  • platform/efl/fast/table/table-row-before-child-style-update-expected.txt: Removed.
  • platform/efl/fast/table/table-row-focus-ring-paint-expected.png: Removed.
  • platform/efl/fast/table/table-row-outline-paint-expected.png: Removed.
  • platform/efl/fast/table/table-row-outline-paint-expected.txt: Removed.
  • platform/efl/fast/table/table-row-split2-expected.txt: Removed.
  • platform/efl/fast/table/table-row-style-not-updated-expected.txt: Removed.
  • platform/efl/fast/table/table-row-style-not-updated-with-after-content-expected.txt: Removed.
  • platform/efl/fast/table/table-row-style-not-updated-with-before-content-expected.txt: Removed.
  • platform/efl/fast/table/table-rowspan-height-distribution-in-rows-expected.txt: Removed.
  • platform/efl/fast/table/table-section-split2-expected.txt: Removed.
  • platform/efl/fast/table/table-split-expected.txt: Removed.
  • platform/efl/fast/table/table-split2-expected.txt: Removed.
  • platform/efl/fast/table/table-style-not-updated-expected.txt: Removed.
  • platform/efl/fast/table/tableInsideCaption-expected.png: Removed.
  • platform/efl/fast/table/tableInsideCaption-expected.txt: Removed.
  • platform/efl/fast/table/text-field-baseline-expected.png: Removed.
  • platform/efl/fast/table/text-field-baseline-expected.txt: Removed.
  • platform/efl/fast/table/unbreakable-images-quirk-expected.png: Removed.
  • platform/efl/fast/table/unbreakable-images-quirk-expected.txt: Removed.
  • platform/efl/fast/table/unused-percent-heights-expected.png: Removed.
  • platform/efl/fast/table/unused-percent-heights-expected.txt: Removed.
  • platform/efl/fast/table/vertical-align-baseline-expected.png: Removed.
  • platform/efl/fast/table/vertical-align-baseline-expected.txt: Removed.
  • platform/efl/fast/table/wide-colspan-expected.png: Removed.
  • platform/efl/fast/table/wide-colspan-expected.txt: Removed.
  • platform/efl/fast/table/wide-column-expected.png: Removed.
  • platform/efl/fast/table/wide-column-expected.txt: Removed.
  • platform/efl/fast/text: Removed.
  • platform/efl/fast/text/align-center-rtl-spill-expected.png: Removed.
  • platform/efl/fast/text/apply-start-width-after-skipped-text-expected.png: Removed.
  • platform/efl/fast/text/atsui-kerning-and-ligatures-expected.png: Removed.
  • platform/efl/fast/text/atsui-kerning-and-ligatures-expected.txt: Removed.
  • platform/efl/fast/text/atsui-multiple-renderers-expected.png: Removed.
  • platform/efl/fast/text/atsui-multiple-renderers-expected.txt: Removed.
  • platform/efl/fast/text/atsui-negative-spacing-features-expected.png: Removed.
  • platform/efl/fast/text/atsui-negative-spacing-features-expected.txt: Removed.
  • platform/efl/fast/text/atsui-partial-selection-expected.png: Removed.
  • platform/efl/fast/text/atsui-partial-selection-expected.txt: Removed.
  • platform/efl/fast/text/atsui-pointtooffset-calls-cg-expected.png: Removed.
  • platform/efl/fast/text/atsui-pointtooffset-calls-cg-expected.txt: Removed.
  • platform/efl/fast/text/atsui-rtl-override-selection-expected.png: Removed.
  • platform/efl/fast/text/atsui-rtl-override-selection-expected.txt: Removed.
  • platform/efl/fast/text/atsui-small-caps-punctuation-size-expected.png: Removed.
  • platform/efl/fast/text/atsui-small-caps-punctuation-size-expected.txt: Removed.
  • platform/efl/fast/text/atsui-spacing-features-expected.png: Removed.
  • platform/efl/fast/text/atsui-spacing-features-expected.txt: Removed.
  • platform/efl/fast/text/backslash-to-yen-sign-dynamic-expected.png: Removed.
  • platform/efl/fast/text/backslash-to-yen-sign-dynamic-expected.txt: Removed.
  • platform/efl/fast/text/backslash-to-yen-sign-euc-expected.png: Removed.
  • platform/efl/fast/text/backslash-to-yen-sign-euc-expected.txt: Removed.
  • platform/efl/fast/text/backslash-to-yen-sign-expected.png: Removed.
  • platform/efl/fast/text/backslash-to-yen-sign-expected.txt: Removed.
  • platform/efl/fast/text/basic: Removed.
  • platform/efl/fast/text/basic/001-expected.png: Removed.
  • platform/efl/fast/text/basic/001-expected.txt: Removed.
  • platform/efl/fast/text/basic/002-expected.png: Removed.
  • platform/efl/fast/text/basic/002-expected.txt: Removed.
  • platform/efl/fast/text/basic/003-expected.png: Removed.
  • platform/efl/fast/text/basic/003-expected.txt: Removed.
  • platform/efl/fast/text/basic/004-expected.png: Removed.
  • platform/efl/fast/text/basic/004-expected.txt: Removed.
  • platform/efl/fast/text/basic/005-expected.png: Removed.
  • platform/efl/fast/text/basic/005-expected.txt: Removed.
  • platform/efl/fast/text/basic/006-expected.png: Removed.
  • platform/efl/fast/text/basic/006-expected.txt: Removed.
  • platform/efl/fast/text/basic/007-expected.png: Removed.
  • platform/efl/fast/text/basic/007-expected.txt: Removed.
  • platform/efl/fast/text/basic/008-expected.png: Removed.
  • platform/efl/fast/text/basic/008-expected.txt: Removed.
  • platform/efl/fast/text/basic/009-expected.png: Removed.
  • platform/efl/fast/text/basic/009-expected.txt: Removed.
  • platform/efl/fast/text/basic/011-expected.png: Removed.
  • platform/efl/fast/text/basic/011-expected.txt: Removed.
  • platform/efl/fast/text/basic/012-expected.png: Removed.
  • platform/efl/fast/text/basic/012-expected.txt: Removed.
  • platform/efl/fast/text/basic/013-expected.png: Removed.
  • platform/efl/fast/text/basic/013-expected.txt: Removed.
  • platform/efl/fast/text/basic/014-expected.png: Removed.
  • platform/efl/fast/text/basic/014-expected.txt: Removed.
  • platform/efl/fast/text/basic/015-expected.png: Removed.
  • platform/efl/fast/text/basic/015-expected.txt: Removed.
  • platform/efl/fast/text/basic/generic-family-changes-expected.png: Removed.
  • platform/efl/fast/text/basic/generic-family-changes-expected.txt: Removed.
  • platform/efl/fast/text/basic/generic-family-reset-expected.png: Removed.
  • platform/efl/fast/text/basic/generic-family-reset-expected.txt: Removed.
  • platform/efl/fast/text/bidi-embedding-pop-and-push-same-expected.png: Removed.
  • platform/efl/fast/text/bidi-embedding-pop-and-push-same-expected.txt: Removed.
  • platform/efl/fast/text/break-word-expected.png: Removed.
  • platform/efl/fast/text/break-word-expected.txt: Removed.
  • platform/efl/fast/text/capitalize-boundaries-expected.png: Removed.
  • platform/efl/fast/text/capitalize-boundaries-expected.txt: Removed.
  • platform/efl/fast/text/capitalize-empty-generated-string-expected.png: Removed.
  • platform/efl/fast/text/capitalize-empty-generated-string-expected.txt: Removed.
  • platform/efl/fast/text/capitalize-preserve-nbsp-expected.png: Removed.
  • platform/efl/fast/text/capitalize-preserve-nbsp-expected.txt: Removed.
  • platform/efl/fast/text/cg-fallback-bolding-expected.png: Removed.
  • platform/efl/fast/text/cg-fallback-bolding-expected.txt: Removed.
  • platform/efl/fast/text/cg-vs-atsui-expected.png: Removed.
  • platform/efl/fast/text/cg-vs-atsui-expected.txt: Removed.
  • platform/efl/fast/text/complex-preferred-logical-widths-expected.png: Removed.
  • platform/efl/fast/text/complex-preferred-logical-widths-expected.txt: Removed.
  • platform/efl/fast/text/complex-synthetic-bold-space-width-expected.png: Removed.
  • platform/efl/fast/text/complex-synthetic-bold-space-width-expected.txt: Removed.
  • platform/efl/fast/text/complex-text-opacity-expected.png: Removed.
  • platform/efl/fast/text/complex-text-opacity-expected.txt: Removed.
  • platform/efl/fast/text/crash-complex-text-surrogate-expected.txt: Removed.
  • platform/efl/fast/text/decorations-transformed-expected.png: Removed.
  • platform/efl/fast/text/decorations-with-text-combine-expected.png: Removed.
  • platform/efl/fast/text/decorations-with-text-combine-expected.txt: Removed.
  • platform/efl/fast/text/delete-hard-break-character-expected.png: Removed.
  • platform/efl/fast/text/delete-hard-break-character-expected.txt: Removed.
  • platform/efl/fast/text/drawBidiText-expected.png: Removed.
  • platform/efl/fast/text/drawBidiText-expected.txt: Removed.
  • platform/efl/fast/text/embed-at-end-of-pre-wrap-line-expected.png: Removed.
  • platform/efl/fast/text/embed-at-end-of-pre-wrap-line-expected.txt: Removed.
  • platform/efl/fast/text/emphasis-avoid-ruby-expected.png: Removed.
  • platform/efl/fast/text/emphasis-combined-text-expected.png: Removed.
  • platform/efl/fast/text/emphasis-combined-text-expected.txt: Removed.
  • platform/efl/fast/text/emphasis-expected.png: Removed.
  • platform/efl/fast/text/emphasis-expected.txt: Removed.
  • platform/efl/fast/text/emphasis-overlap-expected.png: Removed.
  • platform/efl/fast/text/emphasis-overlap-expected.txt: Removed.
  • platform/efl/fast/text/emphasis-vertical-expected.png: Removed.
  • platform/efl/fast/text/emphasis-vertical-expected.txt: Removed.
  • platform/efl/fast/text/fake-italic-expected.png: Removed.
  • platform/efl/fast/text/fake-italic-expected.txt: Removed.
  • platform/efl/fast/text/fallback-traits-fixup-expected.png: Removed.
  • platform/efl/fast/text/fallback-traits-fixup-expected.txt: Removed.
  • platform/efl/fast/text/firstline: Removed.
  • platform/efl/fast/text/firstline/001-expected.png: Removed.
  • platform/efl/fast/text/firstline/001-expected.txt: Removed.
  • platform/efl/fast/text/firstline/002-expected.png: Removed.
  • platform/efl/fast/text/firstline/002-expected.txt: Removed.
  • platform/efl/fast/text/firstline/003-expected.png: Removed.
  • platform/efl/fast/text/firstline/003-expected.txt: Removed.
  • platform/efl/fast/text/fixed-pitch-control-characters-expected.png: Removed.
  • platform/efl/fast/text/font-initial-expected.png: Removed.
  • platform/efl/fast/text/font-initial-expected.txt: Removed.
  • platform/efl/fast/text/format-control-expected.png: Removed.
  • platform/efl/fast/text/format-control-expected.txt: Removed.
  • platform/efl/fast/text/hyphenate-avoid-orphaned-word-expected.txt: Removed.
  • platform/efl/fast/text/hyphenate-character-expected.png: Removed.
  • platform/efl/fast/text/hyphenate-character-expected.txt: Removed.
  • platform/efl/fast/text/hyphenate-first-word-expected.png: Removed.
  • platform/efl/fast/text/hyphenate-first-word-expected.txt: Removed.
  • platform/efl/fast/text/hyphenate-limit-before-after-expected.png: Removed.
  • platform/efl/fast/text/hyphenate-limit-before-after-expected.txt: Removed.
  • platform/efl/fast/text/hyphenate-limit-lines-expected.png: Removed.
  • platform/efl/fast/text/hyphenate-limit-lines-expected.txt: Removed.
  • platform/efl/fast/text/hyphenate-locale-expected.png: Removed.
  • platform/efl/fast/text/hyphenate-locale-expected.txt: Removed.
  • platform/efl/fast/text/hyphens-expected.png: Removed.
  • platform/efl/fast/text/hyphens-expected.txt: Removed.
  • platform/efl/fast/text/in-rendered-text-rtl-expected.png: Removed.
  • platform/efl/fast/text/in-rendered-text-rtl-expected.txt: Removed.
  • platform/efl/fast/text/indic-expected.png: Removed.
  • platform/efl/fast/text/indic-expected.txt: Removed.
  • platform/efl/fast/text/international: Removed.
  • platform/efl/fast/text/international/001-expected.png: Removed.
  • platform/efl/fast/text/international/002-expected.png: Removed.
  • platform/efl/fast/text/international/002-expected.txt: Removed.
  • platform/efl/fast/text/international/003-expected.png: Removed.
  • platform/efl/fast/text/international/003-expected.txt: Removed.
  • platform/efl/fast/text/international/arabic-justify-expected.png: Removed.
  • platform/efl/fast/text/international/arabic-justify-expected.txt: Removed.
  • platform/efl/fast/text/international/bidi-AN-after-L-expected.png: Removed.
  • platform/efl/fast/text/international/bidi-AN-after-L-expected.txt: Removed.
  • platform/efl/fast/text/international/bidi-AN-after-empty-run-expected.png: Removed.
  • platform/efl/fast/text/international/bidi-AN-after-empty-run-expected.txt: Removed.
  • platform/efl/fast/text/international/bidi-CS-after-AN-expected.png: Removed.
  • platform/efl/fast/text/international/bidi-CS-after-AN-expected.txt: Removed.
  • platform/efl/fast/text/international/bidi-L2-run-reordering-expected.png: Removed.
  • platform/efl/fast/text/international/bidi-L2-run-reordering-expected.txt: Removed.
  • platform/efl/fast/text/international/bidi-LDB-2-CSS-expected.png: Removed.
  • platform/efl/fast/text/international/bidi-LDB-2-CSS-expected.txt: Removed.
  • platform/efl/fast/text/international/bidi-LDB-2-HTML-expected.png: Removed.
  • platform/efl/fast/text/international/bidi-LDB-2-HTML-expected.txt: Removed.
  • platform/efl/fast/text/international/bidi-LDB-2-formatting-characters-expected.png: Removed.
  • platform/efl/fast/text/international/bidi-LDB-2-formatting-characters-expected.txt: Removed.
  • platform/efl/fast/text/international/bidi-control-chars-treated-as-ZWS-expected.png: Removed.
  • platform/efl/fast/text/international/bidi-control-chars-treated-as-ZWS-expected.txt: Removed.
  • platform/efl/fast/text/international/bidi-european-terminators-expected.png: Removed.
  • platform/efl/fast/text/international/bidi-european-terminators-expected.txt: Removed.
  • platform/efl/fast/text/international/bidi-explicit-embedding-expected.png: Removed.
  • platform/efl/fast/text/international/bidi-explicit-embedding-expected.txt: Removed.
  • platform/efl/fast/text/international/bidi-ignored-for-first-child-inline-expected.png: Removed.
  • platform/efl/fast/text/international/bidi-ignored-for-first-child-inline-expected.txt: Removed.
  • platform/efl/fast/text/international/bidi-innertext-expected.png: Removed.
  • platform/efl/fast/text/international/bidi-innertext-expected.txt: Removed.
  • platform/efl/fast/text/international/bidi-layout-across-linebreak-expected.png: Removed.
  • platform/efl/fast/text/international/bidi-layout-across-linebreak-expected.txt: Removed.
  • platform/efl/fast/text/international/bidi-linebreak-001-expected.png: Removed.
  • platform/efl/fast/text/international/bidi-linebreak-001-expected.txt: Removed.
  • platform/efl/fast/text/international/bidi-linebreak-002-expected.png: Removed.
  • platform/efl/fast/text/international/bidi-linebreak-002-expected.txt: Removed.
  • platform/efl/fast/text/international/bidi-linebreak-003-expected.png: Removed.
  • platform/efl/fast/text/international/bidi-linebreak-003-expected.txt: Removed.
  • platform/efl/fast/text/international/bidi-listbox-atsui-expected.png: Removed.
  • platform/efl/fast/text/international/bidi-listbox-atsui-expected.txt: Removed.
  • platform/efl/fast/text/international/bidi-listbox-expected.png: Removed.
  • platform/efl/fast/text/international/bidi-listbox-expected.txt: Removed.
  • platform/efl/fast/text/international/bidi-mirror-he-ar-expected.png: Removed.
  • platform/efl/fast/text/international/bidi-mirror-he-ar-expected.txt: Removed.
  • platform/efl/fast/text/international/bidi-neutral-directionality-paragraph-start-expected.png: Removed.
  • platform/efl/fast/text/international/bidi-neutral-directionality-paragraph-start-expected.txt: Removed.
  • platform/efl/fast/text/international/bidi-neutral-run-expected.png: Removed.
  • platform/efl/fast/text/international/bidi-neutral-run-expected.txt: Removed.
  • platform/efl/fast/text/international/bidi-override-expected.png: Removed.
  • platform/efl/fast/text/international/bidi-override-expected.txt: Removed.
  • platform/efl/fast/text/international/cjk-segmentation-expected.txt: Removed.
  • platform/efl/fast/text/international/hebrew-vowels-expected.png: Removed.
  • platform/efl/fast/text/international/hebrew-vowels-expected.txt: Removed.
  • platform/efl/fast/text/international/rtl-caret-expected.png: Removed.
  • platform/efl/fast/text/international/rtl-caret-expected.txt: Removed.
  • platform/efl/fast/text/international/rtl-white-space-pre-wrap-expected.png: Removed.
  • platform/efl/fast/text/international/rtl-white-space-pre-wrap-expected.txt: Removed.
  • platform/efl/fast/text/international/text-combine-image-test-expected.png: Removed.
  • platform/efl/fast/text/international/text-combine-image-test-expected.txt: Removed.
  • platform/efl/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.png: Removed.
  • platform/efl/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.txt: Removed.
  • platform/efl/fast/text/international/vertical-text-glyph-test-expected.png: Removed.
  • platform/efl/fast/text/international/wrap-CJK-001-expected.png: Removed.
  • platform/efl/fast/text/international/wrap-CJK-001-expected.txt: Removed.
  • platform/efl/fast/text/justified-selection-at-edge-expected.png: Removed.
  • platform/efl/fast/text/justified-selection-at-edge-expected.txt: Removed.
  • platform/efl/fast/text/justified-selection-expected.png: Removed.
  • platform/efl/fast/text/justified-selection-expected.txt: Removed.
  • platform/efl/fast/text/justify-ideograph-complex-expected.png: Removed.
  • platform/efl/fast/text/justify-ideograph-leading-expansion-expected.png: Removed.
  • platform/efl/fast/text/justify-ideograph-leading-expansion-expected.txt: Removed.
  • platform/efl/fast/text/justify-ideograph-simple-expected.png: Removed.
  • platform/efl/fast/text/justify-ideograph-vertical-expected.png: Removed.
  • platform/efl/fast/text/justify-nbsp-expected.txt: Removed.
  • platform/efl/fast/text/justify-padding-distribution-expected.png: Removed.
  • platform/efl/fast/text/khmer-lao-font-expected.txt: Removed.
  • platform/efl/fast/text/large-text-composed-char-expected.png: Removed.
  • platform/efl/fast/text/large-text-composed-char-expected.txt: Removed.
  • platform/efl/fast/text/letter-spacing-negative-opacity-expected.png: Removed.
  • platform/efl/fast/text/letter-spacing-negative-opacity-expected.txt: Removed.
  • platform/efl/fast/text/line-breaks-after-white-space-expected.png: Removed.
  • platform/efl/fast/text/line-breaks-after-white-space-expected.txt: Removed.
  • platform/efl/fast/text/line-breaks-expected.png: Removed.
  • platform/efl/fast/text/line-breaks-expected.txt: Removed.
  • platform/efl/fast/text/mark-matches-overflow-clip-expected.txt: Removed.
  • platform/efl/fast/text/midword-break-after-breakable-char-expected.png: Removed.
  • platform/efl/fast/text/midword-break-after-breakable-char-expected.txt: Removed.
  • platform/efl/fast/text/midword-break-before-surrogate-pair-2-expected.png: Removed.
  • platform/efl/fast/text/midword-break-before-surrogate-pair-2-expected.txt: Removed.
  • platform/efl/fast/text/midword-break-before-surrogate-pair-expected.png: Removed.
  • platform/efl/fast/text/midword-break-before-surrogate-pair-expected.txt: Removed.
  • platform/efl/fast/text/midword-break-hang-expected.png: Removed.
  • platform/efl/fast/text/midword-break-hang-expected.txt: Removed.
  • platform/efl/fast/text/monospace-width-cache-expected.png: Removed.
  • platform/efl/fast/text/monospace-width-cache-expected.txt: Removed.
  • platform/efl/fast/text/orientation-sideways-expected.png: Removed.
  • platform/efl/fast/text/orientation-sideways-expected.txt: Removed.
  • platform/efl/fast/text/reset-emptyRun-expected.png: Removed.
  • platform/efl/fast/text/reset-emptyRun-expected.txt: Removed.
  • platform/efl/fast/text/selection-hard-linebreak-expected.png: Removed.
  • platform/efl/fast/text/selection-hard-linebreak-expected.txt: Removed.
  • platform/efl/fast/text/selection-painted-separately-expected.png: Removed.
  • platform/efl/fast/text/selection-rect-rounding-expected.png: Removed.
  • platform/efl/fast/text/selection-rect-rounding-expected.txt: Removed.
  • platform/efl/fast/text/shadow-no-blur-expected.png: Removed.
  • platform/efl/fast/text/shadow-no-blur-expected.txt: Removed.
  • platform/efl/fast/text/shadow-translucent-fill-expected.png: Removed.
  • platform/efl/fast/text/shadow-translucent-fill-expected.txt: Removed.
  • platform/efl/fast/text/shaping: Removed.
  • platform/efl/fast/text/shaping/shaping-script-order-expected.png: Removed.
  • platform/efl/fast/text/shaping/shaping-script-order-expected.txt: Removed.
  • platform/efl/fast/text/shaping/shaping-selection-rect-expected.png: Removed.
  • platform/efl/fast/text/shaping/shaping-selection-rect-expected.txt: Removed.
  • platform/efl/fast/text/should-use-atsui-expected.png: Removed.
  • platform/efl/fast/text/should-use-atsui-expected.txt: Removed.
  • platform/efl/fast/text/soft-hyphen-2-expected.png: Removed.
  • platform/efl/fast/text/soft-hyphen-3-expected.png: Removed.
  • platform/efl/fast/text/soft-hyphen-4-expected.png: Removed.
  • platform/efl/fast/text/softHyphen-expected.png: Removed.
  • platform/efl/fast/text/softHyphen-expected.txt: Removed.
  • platform/efl/fast/text/stroking-decorations-expected.png: Removed.
  • platform/efl/fast/text/stroking-decorations-expected.txt: Removed.
  • platform/efl/fast/text/stroking-expected.png: Removed.
  • platform/efl/fast/text/stroking-expected.txt: Removed.
  • platform/efl/fast/text/svg-font-face-with-kerning-expected.txt: Removed.
  • platform/efl/fast/text/tatechuyoko-expected.png: Removed.
  • platform/efl/fast/text/tatechuyoko-expected.txt: Removed.
  • platform/efl/fast/text/text-combine-different-fonts-expected.txt: Removed.
  • platform/efl/fast/text/text-combine-shrink-on-color-change-expected.txt: Removed.
  • platform/efl/fast/text/text-letter-spacing-expected.png: Removed.
  • platform/efl/fast/text/text-letter-spacing-expected.txt: Removed.
  • platform/efl/fast/text/text-shadow-no-default-color-expected.png: Removed.
  • platform/efl/fast/text/text-shadow-no-default-color-expected.txt: Removed.
  • platform/efl/fast/text/textIteratorNilRenderer-expected.png: Removed.
  • platform/efl/fast/text/textIteratorNilRenderer-expected.txt: Removed.
  • platform/efl/fast/text/trailing-white-space-2-expected.png: Removed.
  • platform/efl/fast/text/trailing-white-space-2-expected.txt: Removed.
  • platform/efl/fast/text/trailing-white-space-expected.png: Removed.
  • platform/efl/fast/text/trailing-white-space-expected.txt: Removed.
  • platform/efl/fast/text/trak-optimizeLegibility-expected.txt: Removed.
  • platform/efl/fast/text/unicode-variation-selector-expected.png: Removed.
  • platform/efl/fast/text/unicode-variation-selector-expected.txt: Removed.
  • platform/efl/fast/text/updateNewFont-expected.png: Removed.
  • platform/efl/fast/text/vertical-rl-rtl-linebreak-expected.png: Removed.
  • platform/efl/fast/text/vertical-rl-rtl-linebreak-expected.txt: Removed.
  • platform/efl/fast/text/wbr-expected.png: Removed.
  • platform/efl/fast/text/wbr-expected.txt: Removed.
  • platform/efl/fast/text/wbr-in-pre-crash-expected.png: Removed.
  • platform/efl/fast/text/wbr-in-pre-crash-expected.txt: Removed.
  • platform/efl/fast/text/wbr-pre-expected.png: Removed.
  • platform/efl/fast/text/wbr-pre-expected.txt: Removed.
  • platform/efl/fast/text/wbr-styled-expected.png: Removed.
  • platform/efl/fast/text/wbr-styled-expected.txt: Removed.
  • platform/efl/fast/text/whitespace: Removed.
  • platform/efl/fast/text/whitespace/001-expected.png: Removed.
  • platform/efl/fast/text/whitespace/001-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/002-expected.png: Removed.
  • platform/efl/fast/text/whitespace/002-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/003-expected.png: Removed.
  • platform/efl/fast/text/whitespace/003-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/004-expected.png: Removed.
  • platform/efl/fast/text/whitespace/004-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/005-expected.png: Removed.
  • platform/efl/fast/text/whitespace/005-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/006-expected.png: Removed.
  • platform/efl/fast/text/whitespace/006-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/007-expected.png: Removed.
  • platform/efl/fast/text/whitespace/007-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/008-expected.png: Removed.
  • platform/efl/fast/text/whitespace/008-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/009-expected.png: Removed.
  • platform/efl/fast/text/whitespace/009-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/010-expected.png: Removed.
  • platform/efl/fast/text/whitespace/010-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/011-expected.png: Removed.
  • platform/efl/fast/text/whitespace/011-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/012-expected.png: Removed.
  • platform/efl/fast/text/whitespace/012-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/013-expected.png: Removed.
  • platform/efl/fast/text/whitespace/013-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/014-expected.png: Removed.
  • platform/efl/fast/text/whitespace/014-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/015-expected.png: Removed.
  • platform/efl/fast/text/whitespace/015-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/016-expected.png: Removed.
  • platform/efl/fast/text/whitespace/016-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/018-expected.png: Removed.
  • platform/efl/fast/text/whitespace/018-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/019-expected.png: Removed.
  • platform/efl/fast/text/whitespace/020-expected.png: Removed.
  • platform/efl/fast/text/whitespace/020-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/021-expected.png: Removed.
  • platform/efl/fast/text/whitespace/021-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/022-expected.png: Removed.
  • platform/efl/fast/text/whitespace/022-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/023-expected.png: Removed.
  • platform/efl/fast/text/whitespace/024-expected.png: Removed.
  • platform/efl/fast/text/whitespace/024-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/025-expected.png: Removed.
  • platform/efl/fast/text/whitespace/025-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/026-expected.png: Removed.
  • platform/efl/fast/text/whitespace/026-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/027-expected.png: Removed.
  • platform/efl/fast/text/whitespace/027-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/028-expected.png: Removed.
  • platform/efl/fast/text/whitespace/028-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/030-expected.png: Removed.
  • platform/efl/fast/text/whitespace/030-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/nbsp-mode-and-linewraps-expected.png: Removed.
  • platform/efl/fast/text/whitespace/nbsp-mode-and-linewraps-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/normal-after-nowrap-breaking-expected.png: Removed.
  • platform/efl/fast/text/whitespace/normal-after-nowrap-breaking-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/nowrap-clear-float-expected.png: Removed.
  • platform/efl/fast/text/whitespace/nowrap-clear-float-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/pre-break-word-expected.png: Removed.
  • platform/efl/fast/text/whitespace/pre-break-word-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/pre-newline-box-test-expected.png: Removed.
  • platform/efl/fast/text/whitespace/pre-wrap-last-char-expected.png: Removed.
  • platform/efl/fast/text/whitespace/pre-wrap-last-char-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/pre-wrap-line-test-expected.png: Removed.
  • platform/efl/fast/text/whitespace/pre-wrap-line-test-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/pre-wrap-overflow-selection-expected.png: Removed.
  • platform/efl/fast/text/whitespace/pre-wrap-overflow-selection-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/pre-wrap-spaces-after-newline-expected.png: Removed.
  • platform/efl/fast/text/whitespace/pre-wrap-spaces-after-newline-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/span-in-word-space-causes-overflow-expected.png: Removed.
  • platform/efl/fast/text/whitespace/span-in-word-space-causes-overflow-expected.txt: Removed.
  • platform/efl/fast/text/whitespace/tab-character-basics-expected.png: Removed.
  • platform/efl/fast/text/wide-zero-width-space-expected.png: Removed.
  • platform/efl/fast/text/wide-zero-width-space-expected.txt: Removed.
  • platform/efl/fast/text/word-break-expected.png: Removed.
  • platform/efl/fast/text/word-break-expected.txt: Removed.
  • platform/efl/fast/text/word-break-run-rounding-expected.png: Removed.
  • platform/efl/fast/text/word-break-run-rounding-expected.txt: Removed.
  • platform/efl/fast/text/word-break-soft-hyphen-expected.png: Removed.
  • platform/efl/fast/text/word-break-soft-hyphen-expected.txt: Removed.
  • platform/efl/fast/text/word-space-expected.png: Removed.
  • platform/efl/fast/text/word-space-expected.txt: Removed.
  • platform/efl/fast/text/zero-font-size-expected.png: Removed.
  • platform/efl/fast/text/zero-font-size-expected.txt: Removed.
  • platform/efl/fast/tokenizer: Removed.
  • platform/efl/fast/tokenizer/001-expected.png: Removed.
  • platform/efl/fast/tokenizer/001-expected.txt: Removed.
  • platform/efl/fast/tokenizer/003-expected.png: Removed.
  • platform/efl/fast/tokenizer/003-expected.txt: Removed.
  • platform/efl/fast/tokenizer/missing-style-end-tag-1-expected.png: Removed.
  • platform/efl/fast/tokenizer/missing-style-end-tag-2-expected.png: Removed.
  • platform/efl/fast/tokenizer/script-after-frameset-expected.png: Removed.
  • platform/efl/fast/transforms: Removed.
  • platform/efl/fast/transforms/bounding-rect-zoom-expected.png: Removed.
  • platform/efl/fast/transforms/bounding-rect-zoom-expected.txt: Removed.
  • platform/efl/fast/transforms/diamond-expected.png: Removed.
  • platform/efl/fast/transforms/diamond-expected.txt: Removed.
  • platform/efl/fast/transforms/identity-matrix-expected.png: Removed.
  • platform/efl/fast/transforms/identity-matrix-expected.txt: Removed.
  • platform/efl/fast/transforms/matrix-01-expected.png: Removed.
  • platform/efl/fast/transforms/overflow-with-transform-expected.png: Removed.
  • platform/efl/fast/transforms/overflow-with-transform-expected.txt: Removed.
  • platform/efl/fast/transforms/rotated-transform-affects-scrolling-1-expected.png: Removed.
  • platform/efl/fast/transforms/rotated-transform-affects-scrolling-1-expected.txt: Removed.
  • platform/efl/fast/transforms/rotated-transform-affects-scrolling-2-expected.png: Removed.
  • platform/efl/fast/transforms/rotated-transform-affects-scrolling-2-expected.txt: Removed.
  • platform/efl/fast/transforms/shadows-expected.png: Removed.
  • platform/efl/fast/transforms/skew-with-unitless-zero-expected.png: Removed.
  • platform/efl/fast/transforms/skew-with-unitless-zero-expected.txt: Removed.
  • platform/efl/fast/transforms/transform-on-inline-expected.png: Removed.
  • platform/efl/fast/transforms/transform-on-inline-expected.txt: Removed.
  • platform/efl/fast/transforms/transform-overflow-expected.png: Removed.
  • platform/efl/fast/transforms/transform-overflow-expected.txt: Removed.
  • platform/efl/fast/transforms/transform-positioned-ancestor-expected.png: Removed.
  • platform/efl/fast/transforms/transform-positioned-ancestor-expected.txt: Removed.
  • platform/efl/fast/transforms/transform-table-row-expected.png: Removed.
  • platform/efl/fast/transforms/transform-table-row-expected.txt: Removed.
  • platform/efl/fast/transforms/transformed-caret-expected.png: Removed.
  • platform/efl/fast/transforms/transformed-caret-expected.txt: Removed.
  • platform/efl/fast/transforms/transformed-document-element-expected.png: Removed.
  • platform/efl/fast/transforms/transformed-document-element-expected.txt: Removed.
  • platform/efl/fast/transforms/transformed-focused-text-input-expected.png: Removed.
  • platform/efl/fast/transforms/transformed-focused-text-input-expected.txt: Removed.
  • platform/efl/fast/transforms/transforms-with-opacity-expected.png: Removed.
  • platform/efl/fast/transforms/transforms-with-opacity-expected.txt: Removed.
  • platform/efl/fast/transforms/transforms-with-zoom-expected.png: Removed.
  • platform/efl/fast/transforms/transforms-with-zoom-expected.txt: Removed.
  • platform/efl/fast/writing-mode: Removed.
  • platform/efl/fast/writing-mode/Kusa-Makura-background-canvas-expected.png: Removed.
  • platform/efl/fast/writing-mode/Kusa-Makura-background-canvas-expected.txt: Removed.
  • platform/efl/fast/writing-mode/background-horizontal-bt-expected.png: Removed.
  • platform/efl/fast/writing-mode/background-horizontal-bt-expected.txt: Removed.
  • platform/efl/fast/writing-mode/background-vertical-lr-expected.png: Removed.
  • platform/efl/fast/writing-mode/background-vertical-lr-expected.txt: Removed.
  • platform/efl/fast/writing-mode/background-vertical-rl-expected.png: Removed.
  • platform/efl/fast/writing-mode/background-vertical-rl-expected.txt: Removed.
  • platform/efl/fast/writing-mode/basic-vertical-line-expected.png: Removed.
  • platform/efl/fast/writing-mode/basic-vertical-line-expected.txt: Removed.
  • platform/efl/fast/writing-mode/block-level-images-expected.png: Removed.
  • platform/efl/fast/writing-mode/body-direction-propagation-blocked-expected.png: Removed.
  • platform/efl/fast/writing-mode/body-direction-propagation-expected.png: Removed.
  • platform/efl/fast/writing-mode/body-writing-mode-propagation-blocked-expected.png: Removed.
  • platform/efl/fast/writing-mode/body-writing-mode-propagation-expected.png: Removed.
  • platform/efl/fast/writing-mode/border-image-horizontal-bt-expected.png: Removed.
  • platform/efl/fast/writing-mode/border-image-horizontal-bt-expected.txt: Removed.
  • platform/efl/fast/writing-mode/border-image-vertical-lr-expected.png: Removed.
  • platform/efl/fast/writing-mode/border-image-vertical-lr-expected.txt: Removed.
  • platform/efl/fast/writing-mode/border-image-vertical-rl-expected.png: Removed.
  • platform/efl/fast/writing-mode/border-image-vertical-rl-expected.txt: Removed.
  • platform/efl/fast/writing-mode/border-radius-clipping-vertical-lr-expected.png: Removed.
  • platform/efl/fast/writing-mode/border-radius-clipping-vertical-lr-expected.txt: Removed.
  • platform/efl/fast/writing-mode/border-styles-vertical-lr-expected.png: Removed.
  • platform/efl/fast/writing-mode/border-styles-vertical-lr-expected.txt: Removed.
  • platform/efl/fast/writing-mode/border-styles-vertical-rl-expected.png: Removed.
  • platform/efl/fast/writing-mode/border-styles-vertical-rl-expected.txt: Removed.
  • platform/efl/fast/writing-mode/border-vertical-lr-expected.png: Removed.
  • platform/efl/fast/writing-mode/border-vertical-lr-expected.txt: Removed.
  • platform/efl/fast/writing-mode/box-shadow-horizontal-bt-expected.png: Removed.
  • platform/efl/fast/writing-mode/box-shadow-horizontal-bt-expected.txt: Removed.
  • platform/efl/fast/writing-mode/box-shadow-vertical-lr-expected.png: Removed.
  • platform/efl/fast/writing-mode/box-shadow-vertical-lr-expected.txt: Removed.
  • platform/efl/fast/writing-mode/box-shadow-vertical-rl-expected.png: Removed.
  • platform/efl/fast/writing-mode/box-shadow-vertical-rl-expected.txt: Removed.
  • platform/efl/fast/writing-mode/broken-ideograph-small-caps-expected.png: Removed.
  • platform/efl/fast/writing-mode/broken-ideograph-small-caps-expected.txt: Removed.
  • platform/efl/fast/writing-mode/broken-ideographic-font-expected.png: Removed.
  • platform/efl/fast/writing-mode/broken-ideographic-font-expected.txt: Removed.
  • platform/efl/fast/writing-mode/english-bt-text-expected.png: Removed.
  • platform/efl/fast/writing-mode/english-bt-text-expected.txt: Removed.
  • platform/efl/fast/writing-mode/english-lr-text-expected.png: Removed.
  • platform/efl/fast/writing-mode/english-lr-text-expected.txt: Removed.
  • platform/efl/fast/writing-mode/english-rl-text-expected.png: Removed.
  • platform/efl/fast/writing-mode/english-rl-text-expected.txt: Removed.
  • platform/efl/fast/writing-mode/fallback-orientation-expected.png: Removed.
  • platform/efl/fast/writing-mode/fallback-orientation-expected.txt: Removed.
  • platform/efl/fast/writing-mode/fieldsets-expected.png: Removed.
  • platform/efl/fast/writing-mode/fieldsets-expected.txt: Removed.
  • platform/efl/fast/writing-mode/floats-in-block-layout-expected.png: Removed.
  • platform/efl/fast/writing-mode/horizontal-bt-replaced-selection-expected.png: Removed.
  • platform/efl/fast/writing-mode/horizontal-bt-replaced-selection-expected.txt: Removed.
  • platform/efl/fast/writing-mode/inline-direction-positioning-expected.png: Removed.
  • platform/efl/fast/writing-mode/japanese-lr-selection-expected.png: Removed.
  • platform/efl/fast/writing-mode/japanese-lr-selection-expected.txt: Removed.
  • platform/efl/fast/writing-mode/japanese-lr-text-expected.png: Removed.
  • platform/efl/fast/writing-mode/japanese-lr-text-expected.txt: Removed.
  • platform/efl/fast/writing-mode/japanese-rl-selection-expected.png: Removed.
  • platform/efl/fast/writing-mode/japanese-rl-selection-expected.txt: Removed.
  • platform/efl/fast/writing-mode/japanese-rl-text-expected.png: Removed.
  • platform/efl/fast/writing-mode/japanese-rl-text-expected.txt: Removed.
  • platform/efl/fast/writing-mode/japanese-rl-text-with-broken-font-expected.png: Removed.
  • platform/efl/fast/writing-mode/japanese-rl-text-with-broken-font-expected.txt: Removed.
  • platform/efl/fast/writing-mode/japanese-ruby-horizontal-bt-expected.png: Removed.
  • platform/efl/fast/writing-mode/japanese-ruby-horizontal-bt-expected.txt: Removed.
  • platform/efl/fast/writing-mode/japanese-ruby-vertical-lr-expected.png: Removed.
  • platform/efl/fast/writing-mode/japanese-ruby-vertical-lr-expected.txt: Removed.
  • platform/efl/fast/writing-mode/japanese-ruby-vertical-rl-expected.png: Removed.
  • platform/efl/fast/writing-mode/japanese-ruby-vertical-rl-expected.txt: Removed.
  • platform/efl/fast/writing-mode/margin-collapse-expected.png: Removed.
  • platform/efl/fast/writing-mode/root-lr-basic-expected.png: Removed.
  • platform/efl/fast/writing-mode/self-collapsing-block-expected.png: Removed.
  • platform/efl/fast/writing-mode/table-percent-width-quirk-expected.txt: Removed.
  • platform/efl/fast/writing-mode/text-orientation-basic-expected.png: Removed.
  • platform/efl/fast/writing-mode/text-orientation-basic-expected.txt: Removed.
  • platform/efl/fast/writing-mode/vertical-align-table-baseline-expected.png: Removed.
  • platform/efl/fast/writing-mode/vertical-align-table-baseline-expected.txt: Removed.
  • platform/efl/fast/writing-mode/vertical-baseline-alignment-expected.png: Removed.
  • platform/efl/fast/writing-mode/vertical-baseline-alignment-expected.txt: Removed.
  • platform/efl/fast/writing-mode/vertical-font-fallback-expected.png: Removed.
  • platform/efl/fast/writing-mode/vertical-font-fallback-expected.txt: Removed.
  • platform/efl/fast/writing-mode/vertical-lr-replaced-selection-expected.png: Removed.
  • platform/efl/fast/writing-mode/vertical-lr-replaced-selection-expected.txt: Removed.
  • platform/efl/fast/writing-mode/vertical-rl-replaced-selection-expected.png: Removed.
  • platform/efl/fast/writing-mode/vertical-rl-replaced-selection-expected.txt: Removed.
  • platform/efl/fast/xsl: Removed.
  • platform/efl/fast/xsl/document-function-expected.png: Removed.
  • platform/efl/fast/xsl/document-function-expected.txt: Removed.
  • platform/efl/fast/xsl/xslt-enc-cyr-expected.png: Removed.
  • platform/efl/fast/xsl/xslt-enc-cyr-expected.txt: Removed.
  • platform/efl/fast/xsl/xslt-enc-expected.png: Removed.
  • platform/efl/fast/xsl/xslt-enc-expected.txt: Removed.
  • platform/efl/fast/xsl/xslt-enc16-expected.png: Removed.
  • platform/efl/fast/xsl/xslt-enc16-expected.txt: Removed.
  • platform/efl/fast/xsl/xslt-enc16to16-expected.png: Removed.
  • platform/efl/fast/xsl/xslt-enc16to16-expected.txt: Removed.
  • platform/efl/fast/xsl/xslt-entity-expected.png: Removed.
  • platform/efl/fast/xsl/xslt-entity-expected.txt: Removed.
  • platform/efl/fast/xsl/xslt-extra-content-at-end-expected.png: Removed.
  • platform/efl/fast/xsl/xslt-extra-content-at-end-expected.txt: Removed.
  • platform/efl/fast/xsl/xslt-import-depth-expected.png: Removed.
  • platform/efl/fast/xsl/xslt-import-depth-expected.txt: Removed.
  • platform/efl/fast/xsl/xslt-mismatched-tags-in-xslt-expected.png: Removed.
  • platform/efl/fast/xsl/xslt-missing-namespace-in-xslt-expected.png: Removed.
  • platform/efl/fast/xsl/xslt-missing-namespace-in-xslt-expected.txt: Removed.
  • platform/efl/fast/xsl/xslt-relative-path-expected.png: Removed.
  • platform/efl/fast/xsl/xslt-relative-path-expected.txt: Removed.
  • platform/efl/fast/xsl/xslt_unicode-expected.png: Removed.
  • platform/efl/fast/xsl/xslt_unicode-expected.txt: Removed.
  • platform/efl/fonts: Removed.
  • platform/efl/fonts/cursive-expected.png: Removed.
  • platform/efl/fonts/cursive-expected.txt: Removed.
  • platform/efl/fonts/default-expected.png: Removed.
  • platform/efl/fonts/default-expected.txt: Removed.
  • platform/efl/fonts/fantasy-expected.png: Removed.
  • platform/efl/fonts/fantasy-expected.txt: Removed.
  • platform/efl/fonts/monospace-expected.png: Removed.
  • platform/efl/fonts/monospace-expected.txt: Removed.
  • platform/efl/fonts/sans-serif-expected.png: Removed.
  • platform/efl/fonts/sans-serif-expected.txt: Removed.
  • platform/efl/fonts/serif-expected.png: Removed.
  • platform/efl/fonts/serif-expected.txt: Removed.
  • platform/efl/fullscreen: Removed.
  • platform/efl/fullscreen/full-screen-iframe-zIndex-expected.png: Removed.
  • platform/efl/fullscreen/full-screen-placeholder-expected.txt: Removed.
  • platform/efl/fullscreen/full-screen-remove-ancestor-after-expected.png: Removed.
  • platform/efl/fullscreen/full-screen-stacking-context-expected.png: Removed.
  • platform/efl/fullscreen/full-screen-zIndex-after-expected.png: Removed.
  • platform/efl/fullscreen/full-screen-zIndex-expected.png: Removed.
  • platform/efl/fullscreen/parent-flow-inline-with-block-child-expected.png: Removed.
  • platform/efl/http: Removed.
  • platform/efl/http/tests: Removed.
  • platform/efl/http/tests/cookies: Removed.
  • platform/efl/http/tests/cookies/double-quoted-value-with-semi-colon-expected.txt: Removed.
  • platform/efl/http/tests/inspector: Removed.
  • platform/efl/http/tests/inspector/console-resource-errors-expected.txt: Removed.
  • platform/efl/http/tests/inspector/console-websocket-error-expected.txt: Removed.
  • platform/efl/http/tests/loading: Removed.
  • platform/efl/http/tests/loading/gmail-assert-on-load-expected.txt: Removed.
  • platform/efl/http/tests/loading/pdf-commit-load-callbacks-expected.txt: Removed.
  • platform/efl/http/tests/loading/simple-subframe-expected.png: Removed.
  • platform/efl/http/tests/loading/simple-subframe-expected.txt: Removed.
  • platform/efl/http/tests/local: Removed.
  • platform/efl/http/tests/local/file-url-sent-as-referer-expected.png: Removed.
  • platform/efl/http/tests/local/file-url-sent-as-referer-expected.txt: Removed.
  • platform/efl/http/tests/media: Removed.
  • platform/efl/http/tests/media/video-buffered-range-contains-currentTime-expected.png: Removed.
  • platform/efl/http/tests/misc: Removed.
  • platform/efl/http/tests/misc/acid2-expected.png: Removed.
  • platform/efl/http/tests/misc/acid2-expected.txt: Removed.
  • platform/efl/http/tests/misc/acid3-expected.png: Removed.
  • platform/efl/http/tests/misc/acid3-expected.txt: Removed.
  • platform/efl/http/tests/misc/error404-expected.png: Removed.
  • platform/efl/http/tests/misc/error404-expected.txt: Removed.
  • platform/efl/http/tests/misc/favicon-as-image-expected.png: Removed.
  • platform/efl/http/tests/misc/favicon-as-image-expected.txt: Removed.
  • platform/efl/http/tests/misc/frame-access-during-load-expected.png: Removed.
  • platform/efl/http/tests/misc/frame-access-during-load-expected.txt: Removed.
  • platform/efl/http/tests/misc/generated-content-inside-table-expected.png: Removed.
  • platform/efl/http/tests/misc/generated-content-inside-table-expected.txt: Removed.
  • platform/efl/http/tests/misc/iframe404-expected.png: Removed.
  • platform/efl/http/tests/misc/iframe404-expected.txt: Removed.
  • platform/efl/http/tests/misc/location-replace-crossdomain-expected.png: Removed.
  • platform/efl/http/tests/misc/location-replace-crossdomain-expected.txt: Removed.
  • platform/efl/http/tests/misc/object-embedding-svg-delayed-size-negotiation-2-expected.png: Removed.
  • platform/efl/http/tests/misc/object-embedding-svg-delayed-size-negotiation-2-expected.txt: Removed.
  • platform/efl/http/tests/misc/object-embedding-svg-delayed-size-negotiation-expected.png: Removed.
  • platform/efl/http/tests/misc/slow-loading-image-in-pattern-expected.png: Removed.
  • platform/efl/http/tests/misc/slow-loading-image-in-pattern-expected.txt: Removed.
  • platform/efl/http/tests/misc/slow-loading-mask-expected.png: Removed.
  • platform/efl/http/tests/misc/slow-loading-mask-expected.txt: Removed.
  • platform/efl/http/tests/misc/willCacheResponse-delegate-callback-expected.txt: Removed.
  • platform/efl/http/tests/multipart: Removed.
  • platform/efl/http/tests/multipart/invalid-image-data-standalone-expected.png: Removed.
  • platform/efl/http/tests/multipart/invalid-image-data-standalone-expected.txt: Removed.
  • platform/efl/http/tests/navigation: Removed.
  • platform/efl/http/tests/navigation/error404-basic-expected.png: Removed.
  • platform/efl/http/tests/navigation/error404-basic-expected.txt: Removed.
  • platform/efl/http/tests/navigation/error404-goback-expected.png: Removed.
  • platform/efl/http/tests/navigation/error404-goback-expected.txt: Removed.
  • platform/efl/http/tests/navigation/error404-subframeload-expected.png: Removed.
  • platform/efl/http/tests/navigation/error404-subframeload-expected.txt: Removed.
  • platform/efl/http/tests/navigation/javascriptlink-frames-expected.png: Removed.
  • platform/efl/http/tests/navigation/javascriptlink-frames-expected.txt: Removed.
  • platform/efl/http/tests/navigation/postredirect-basic-expected.png: Removed.
  • platform/efl/http/tests/navigation/postredirect-basic-expected.txt: Removed.
  • platform/efl/http/tests/navigation/postredirect-goback1-expected.png: Removed.
  • platform/efl/http/tests/navigation/postredirect-goback1-expected.txt: Removed.
  • platform/efl/http/tests/security: Removed.
  • platform/efl/http/tests/security/contentSecurityPolicy: Removed.
  • platform/efl/http/tests/security/contentSecurityPolicy/xsl-blocked-expected.png: Removed.
  • platform/efl/http/tests/security/xssAuditor: Removed.
  • platform/efl/http/tests/security/xssAuditor/link-opens-new-window-expected.txt: Removed.
  • platform/efl/http/tests/uri: Removed.
  • platform/efl/http/tests/uri/css-href-expected.png: Removed.
  • platform/efl/http/tests/uri/css-href-expected.txt: Removed.
  • platform/efl/http/tests/xmlhttprequest: Removed.
  • platform/efl/http/tests/xmlhttprequest/methods-async-expected.txt: Removed.
  • platform/efl/http/tests/xmlhttprequest/methods-expected.txt: Removed.
  • platform/efl/http/tests/xmlhttprequest/workers: Removed.
  • platform/efl/http/tests/xmlhttprequest/workers/methods-async-expected.txt: Removed.
  • platform/efl/http/tests/xmlhttprequest/workers/methods-expected.txt: Removed.
  • platform/efl/ietestcenter: Removed.
  • platform/efl/ietestcenter/css3: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/background-attachment-local-scrolling-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/background-attachment-local-scrolling-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/background-color-applied-to-rounded-inline-element-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/background-color-applied-to-rounded-inline-element-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/background-color-border-box-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/background-color-border-box-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/background-repeat-space-padding-box-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/background-size-002-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/background-size-002-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/background-size-applies-to-block-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/background-size-applies-to-block-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/background-size-aspect-ratio-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/background-size-aspect-ratio-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/background_color_padding_box-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/background_color_padding_box-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/background_position_three_four_values-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/background_position_three_four_values-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/background_properties_greater_than_images-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/background_properties_greater_than_images-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/background_repeat_space_border_box-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/background_repeat_space_border_box-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/background_repeat_space_content_box-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/background_repeat_space_content_box-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-001-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-001-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-002-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-002-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-003-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-003-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-005-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-005-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-006-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-006-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-007-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-007-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-008-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-008-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-009-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-009-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-010-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-010-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-011-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-011-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-012-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-012-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-013-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-013-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-014-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-014-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-015-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-015-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-016-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-016-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-017-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-017-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-clip-001-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-clip-001-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-clip-002-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-clip-002-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-content-edge-001-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-content-edge-001-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-different-width-001-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-different-width-001-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-initial-value-001-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-initial-value-001-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-not-inherited-001-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-not-inherited-001-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-shorthand-001-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-shorthand-001-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-style-001-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-style-001-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-style-002-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-style-002-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-style-003-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-style-003-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-style-004-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-style-004-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-style-005-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-style-005-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-001-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-001-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-002-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-002-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-with-three-values-001-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-with-three-values-001-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-with-two-values-001-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-radius-with-two-values-001-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-001-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-001-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-002-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-002-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-003-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-003-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-004-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-004-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-top-right-radius-values-004-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/border-top-right-radius-values-004-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/box-shadow-001-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/box-shadow-001-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/box-shadow-002-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/box-shadow-002-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/box-shadow-003-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/box-shadow-003-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/box-shadow-004-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/box-shadow-004-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/color-behind-images-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/color-behind-images-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/none-as-image-layer-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/none-as-image-layer-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/order-of-images-expected.png: Removed.
  • platform/efl/ietestcenter/css3/bordersbackgrounds/order-of-images-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/text: Removed.
  • platform/efl/ietestcenter/css3/text/textshadow-001-expected.png: Removed.
  • platform/efl/ietestcenter/css3/text/textshadow-001-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/text/textshadow-002-expected.png: Removed.
  • platform/efl/ietestcenter/css3/text/textshadow-002-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/text/textshadow-003-expected.png: Removed.
  • platform/efl/ietestcenter/css3/text/textshadow-003-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/text/textshadow-004-expected.png: Removed.
  • platform/efl/ietestcenter/css3/text/textshadow-004-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/text/textshadow-005-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/text/textshadow-006-expected.png: Removed.
  • platform/efl/ietestcenter/css3/text/textshadow-006-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/text/textshadow-007-expected.png: Removed.
  • platform/efl/ietestcenter/css3/text/textshadow-007-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/text/textshadow-008-expected.png: Removed.
  • platform/efl/ietestcenter/css3/text/textshadow-008-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/text/textshadow-009-expected.png: Removed.
  • platform/efl/ietestcenter/css3/text/textshadow-009-expected.txt: Removed.
  • platform/efl/ietestcenter/css3/text/textshadow-010-expected.png: Removed.
  • platform/efl/ietestcenter/css3/text/textshadow-010-expected.txt: Removed.
  • platform/efl/inspector: Removed.
  • platform/efl/inspector-protocol: Removed.
  • platform/efl/inspector-protocol/debugger: Removed.
  • platform/efl/inspector-protocol/debugger/regress-133182-expected.txt: Removed.
  • platform/efl/inspector-protocol/debugger/setBreakpoint-dfg-and-modify-local-expected.txt: Removed.
  • platform/efl/inspector-protocol/dom: Removed.
  • platform/efl/inspector-protocol/dom/getAccessibilityPropertiesForNode-expected.txt: Removed.
  • platform/efl/inspector/timeline: Removed.
  • platform/efl/inspector/timeline/timeline-receive-response-event-expected.txt: Removed.
  • platform/efl/js: Removed.
  • platform/efl/js/dom: Removed.
  • platform/efl/js/dom/constructor-length-expected.txt: Removed.
  • platform/efl/js/dom/dom-static-property-for-in-iteration-expected.txt: Removed.
  • platform/efl/js/dom/exception-linenums-in-html-3-expected.png: Removed.
  • platform/efl/js/dom/global-constructors-attributes-dedicated-worker-expected.txt: Removed.
  • platform/efl/js/dom/global-constructors-attributes-expected.txt: Removed.
  • platform/efl/js/dom/missing-style-end-tag-js-expected.png: Removed.
  • platform/efl/js/dom/missing-title-end-tag-js-expected.png: Removed.
  • platform/efl/loader: Removed.
  • platform/efl/loader/go-back-cached-main-resource-expected.txt: Removed.
  • platform/efl/mathml: Removed.
  • platform/efl/mathml/opentype: Removed.
  • platform/efl/mathml/opentype/horizontal-expected.txt: Removed.
  • platform/efl/mathml/opentype/horizontal-munderover-expected.txt: Removed.
  • platform/efl/mathml/opentype/large-operators-expected.txt: Removed.
  • platform/efl/mathml/opentype/opentype-stretchy-expected.txt: Removed.
  • platform/efl/mathml/opentype/opentype-stretchy-horizontal-expected.txt: Removed.
  • platform/efl/mathml/opentype/vertical-expected.txt: Removed.
  • platform/efl/mathml/presentation: Removed.
  • platform/efl/mathml/presentation/foreign-element-in-token-expected.txt: Removed.
  • platform/efl/mathml/presentation/menclose-notation-default-longdiv-expected.txt: Removed.
  • platform/efl/mathml/presentation/menclose-notation-values-expected.txt: Removed.
  • platform/efl/mathml/presentation/mo-stretch-expected.txt: Removed.
  • platform/efl/mathml/presentation/mspace-children-expected.txt: Removed.
  • platform/efl/mathml/presentation/roots-expected.txt: Removed.
  • platform/efl/mathml/radical-fallback-expected.txt: Removed.
  • platform/efl/media: Removed.
  • platform/efl/media/W3C: Removed.
  • platform/efl/media/W3C/video: Removed.
  • platform/efl/media/W3C/video/canPlayType: Removed.
  • platform/efl/media/W3C/video/canPlayType/canPlayType_codecs_order_1-expected.txt: Removed.
  • platform/efl/media/W3C/video/canPlayType/canPlayType_supported_but_no_codecs_parameter_1-expected.txt: Removed.
  • platform/efl/media/W3C/video/canPlayType/canPlayType_two_implies_one_1-expected.txt: Removed.
  • platform/efl/media/W3C/video/canPlayType/canPlayType_two_implies_one_2-expected.txt: Removed.
  • platform/efl/media/audio-controls-rendering-expected.png: Removed.
  • platform/efl/media/audio-controls-rendering-expected.txt: Removed.
  • platform/efl/media/audio-repaint-expected.png: Removed.
  • platform/efl/media/audio-repaint-expected.txt: Removed.
  • platform/efl/media/controls-after-reload-expected.png: Removed.
  • platform/efl/media/controls-after-reload-expected.txt: Removed.
  • platform/efl/media/controls-layout-direction-expected.png: Removed.
  • platform/efl/media/controls-strict-expected.png: Removed.
  • platform/efl/media/controls-strict-expected.txt: Removed.
  • platform/efl/media/controls-styling-expected.png: Removed.
  • platform/efl/media/controls-styling-expected.txt: Removed.
  • platform/efl/media/controls-styling-strict-expected.png: Removed.
  • platform/efl/media/controls-styling-strict-expected.txt: Removed.
  • platform/efl/media/controls-without-preload-expected.png: Removed.
  • platform/efl/media/controls-without-preload-expected.txt: Removed.
  • platform/efl/media/media-controls-clone-expected.png: Removed.
  • platform/efl/media/media-controls-clone-expected.txt: Removed.
  • platform/efl/media/media-document-audio-repaint-expected.png: Removed.
  • platform/efl/media/media-document-audio-repaint-expected.txt: Removed.
  • platform/efl/media/track: Removed.
  • platform/efl/media/track/track-cue-rendering-horizontal-expected.png: Removed.
  • platform/efl/media/track/track-cue-rendering-horizontal-expected.txt: Removed.
  • platform/efl/media/track/track-cue-rendering-vertical-expected.png: Removed.
  • platform/efl/media/track/track-cue-rendering-vertical-expected.txt: Removed.
  • platform/efl/media/video-aspect-ratio-expected.png: Removed.
  • platform/efl/media/video-aspect-ratio-expected.txt: Removed.
  • platform/efl/media/video-canvas-alpha-expected.png: Removed.
  • platform/efl/media/video-colorspace-yuv420-expected.png: Removed.
  • platform/efl/media/video-colorspace-yuv420-expected.txt: Removed.
  • platform/efl/media/video-colorspace-yuv422-expected.png: Removed.
  • platform/efl/media/video-colorspace-yuv422-expected.txt: Removed.
  • platform/efl/media/video-controls-rendering-expected.png: Removed.
  • platform/efl/media/video-controls-rendering-expected.txt: Removed.
  • platform/efl/media/video-display-toggle-expected.png: Removed.
  • platform/efl/media/video-display-toggle-expected.txt: Removed.
  • platform/efl/media/video-empty-source-expected.png: Removed.
  • platform/efl/media/video-empty-source-expected.txt: Removed.
  • platform/efl/media/video-frame-accurate-seek-expected.png: Removed.
  • platform/efl/media/video-frame-accurate-seek-expected.txt: Removed.
  • platform/efl/media/video-layer-crash-expected.png: Removed.
  • platform/efl/media/video-layer-crash-expected.txt: Removed.
  • platform/efl/media/video-no-audio-expected.png: Removed.
  • platform/efl/media/video-no-audio-expected.txt: Removed.
  • platform/efl/media/video-playing-and-pause-expected.png: Removed.
  • platform/efl/media/video-playing-and-pause-expected.txt: Removed.
  • platform/efl/media/video-transformed-expected.png: Removed.
  • platform/efl/media/video-transformed-expected.txt: Removed.
  • platform/efl/media/video-zoom-controls-expected.png: Removed.
  • platform/efl/media/video-zoom-controls-expected.txt: Removed.
  • platform/efl/media/video-zoom-expected.png: Removed.
  • platform/efl/media/video-zoom-expected.txt: Removed.
  • platform/efl/perf: Removed.
  • platform/efl/perf/nested-combined-selectors-expected.txt: Removed.
  • platform/efl/plugins: Removed.
  • platform/efl/plugins/iframe-plugin-bgcolor-expected.png: Removed.
  • platform/efl/plugins/mouse-click-plugin-clears-selection-expected.png: Removed.
  • platform/efl/plugins/mouse-click-plugin-clears-selection-expected.txt: Removed.
  • platform/efl/plugins/netscape-dom-access-expected.png: Removed.
  • platform/efl/plugins/netscape-dom-access-expected.txt: Removed.
  • platform/efl/plugins/npruntime: Removed.
  • platform/efl/plugins/npruntime/object-from-destroyed-plugin-expected.txt: Removed.
  • platform/efl/plugins/npruntime/object-from-destroyed-plugin-in-subframe-expected.txt: Removed.
  • platform/efl/plugins/plugin-javascript-access-expected.txt: Removed.
  • platform/efl/plugins/resize-from-plugin-expected.txt: Removed.
  • platform/efl/printing: Removed.
  • platform/efl/printing/compositing-layer-printing-expected.png: Removed.
  • platform/efl/printing/compositing-layer-printing-expected.txt: Removed.
  • platform/efl/printing/iframe-print-expected.png: Removed.
  • platform/efl/printing/media-queries-print-expected.txt: Removed.
  • platform/efl/printing/page-count-relayout-shrink-expected.txt: Removed.
  • platform/efl/printing/page-rule-in-media-query-expected.png: Removed.
  • platform/efl/printing/page-rule-in-media-query-expected.txt: Removed.
  • platform/efl/printing/return-from-printing-mode-expected.png: Removed.
  • platform/efl/printing/return-from-printing-mode-expected.txt: Removed.
  • platform/efl/printing/setPrinting-expected.txt: Removed.
  • platform/efl/printing/simultaneous-position-float-change-expected.txt: Removed.
  • platform/efl/printing/single-line-must-not-be-split-into-two-pages-expected.txt: Removed.
  • platform/efl/printing/width-overflow-expected.txt: Removed.
  • platform/efl/scrollbars: Removed.
  • platform/efl/scrollbars/basic-scrollbar-expected.png: Removed.
  • platform/efl/scrollbars/basic-scrollbar-expected.txt: Removed.
  • platform/efl/scrollbars/custom-scrollbar-with-incomplete-style-expected.png: Removed.
  • platform/efl/scrollbars/custom-scrollbar-with-incomplete-style-expected.txt: Removed.
  • platform/efl/scrollbars/disabled-scrollbar-expected.png: Removed.
  • platform/efl/scrollbars/disabled-scrollbar-expected.txt: Removed.
  • platform/efl/scrollbars/listbox-scrollbar-combinations-expected.png: Removed.
  • platform/efl/scrollbars/listbox-scrollbar-combinations-expected.txt: Removed.
  • platform/efl/scrollbars/overflow-scrollbar-combinations-expected.png: Removed.
  • platform/efl/scrollbars/overflow-scrollbar-combinations-expected.txt: Removed.
  • platform/efl/scrollbars/scrollbar-buttons-expected.png: Removed.
  • platform/efl/scrollbars/scrollbar-buttons-expected.txt: Removed.
  • platform/efl/scrollbars/scrollbar-orientation-expected.png: Removed.
  • platform/efl/scrollbars/scrollbar-orientation-expected.txt: Removed.
  • platform/efl/scrollbars/scrollbar-selectors-expected.txt: Removed.
  • platform/efl/scrollbars/scrollbars-on-positioned-content-expected.png: Removed.
  • platform/efl/scrollbars/scrollbars-on-positioned-content-expected.txt: Removed.
  • platform/efl/security: Removed.
  • platform/efl/security/block-test-expected.txt: Removed.
  • platform/efl/security/block-test-no-port-expected.txt: Removed.
  • platform/efl/sputnik: Removed.
  • platform/efl/sputnik/Unicode: Removed.
  • platform/efl/sputnik/Unicode/Unicode_320: Removed.
  • platform/efl/sputnik/Unicode/Unicode_320/S7.6_A2.2_T2-expected.txt: Removed.
  • platform/efl/sputnik/Unicode/Unicode_320/S7.6_A5.2_T8-expected.txt: Removed.
  • platform/efl/svg: Removed.
  • platform/efl/svg/W3C-I18N: Removed.
  • platform/efl/svg/W3C-I18N/g-dirLTR-ubNone-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/g-dirLTR-ubOverride-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/g-dirRTL-ubNone-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/g-dirRTL-ubOverride-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/text-anchor-dirLTR-anchorEnd-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/text-anchor-dirLTR-anchorMiddle-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/text-anchor-dirLTR-anchorStart-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/text-anchor-dirNone-anchorEnd-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/text-anchor-dirNone-anchorMiddle-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/text-anchor-dirNone-anchorStart-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/text-anchor-dirRTL-anchorEnd-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/text-anchor-dirRTL-anchorMiddle-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/text-anchor-dirRTL-anchorStart-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorEnd-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorMiddle-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorStart-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorEnd-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorMiddle-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorStart-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/text-anchor-no-markup-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/text-dirLTR-ubNone-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/text-dirLTR-ubOverride-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/text-dirRTL-ubNone-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/text-dirRTL-ubOverride-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/tspan-dirLTR-ubEmbed-in-rtl-context-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/tspan-dirLTR-ubNone-in-rtl-context-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-default-context-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-ltr-context-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-rtl-context-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/tspan-dirNone-ubOverride-in-rtl-context-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/tspan-dirRTL-ubEmbed-in-default-context-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/tspan-dirRTL-ubEmbed-in-ltr-context-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/tspan-dirRTL-ubNone-in-default-context-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/tspan-dirRTL-ubNone-in-ltr-context-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/tspan-dirRTL-ubOverride-in-default-context-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/tspan-dirRTL-ubOverride-in-ltr-context-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/tspan-dirRTL-ubOverride-in-rtl-context-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/tspan-direction-ltr-expected.png: Removed.
  • platform/efl/svg/W3C-I18N/tspan-direction-rtl-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/color-prop-05-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/coords-dom-01-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/coords-dom-02-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/coords-dom-03-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/coords-dom-04-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/filters-felem-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/filters-image-05-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/filters-image-05-f-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/interact-pointer-03-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/linking-uri-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/painting-control-04-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/painting-marker-07-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/paths-dom-02-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/pservers-pattern-04-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/struct-dom-11-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/struct-use-11-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/struct-use-14-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/styling-css-04-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/styling-pres-02-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/svgdom-over-01-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/text-intro-02-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/text-intro-05-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/text-intro-09-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/text-tref-03-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/text-tspan-02-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/types-dom-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/types-dom-02-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/types-dom-03-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/types-dom-04-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/types-dom-05-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/types-dom-06-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1-SE/types-dom-07-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-02-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-03-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-04-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-04-t-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-05-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-06-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-07-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-07-t-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-08-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-09-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-10-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-11-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-12-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-12-t-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-13-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-14-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-15-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-15-t-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-16-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-16-t-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-17-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-17-t-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-18-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-19-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-19-t-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-20-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-21-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-22-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-23-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-24-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-25-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-26-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-27-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-28-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-29-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-30-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-30-t-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-31-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-32-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-33-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-33-t-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-34-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-36-t-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-37-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-37-t-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-39-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-40-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-40-t-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-41-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-41-t-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-44-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-46-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-46-t-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-52-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-60-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-61-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-62-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-63-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-64-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-65-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-66-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-67-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-68-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-69-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-70-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-77-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-78-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-80-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-81-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-82-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-82-t-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-83-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-84-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/animate-elem-85-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/color-prof-01-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/color-prop-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/color-prop-02-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/color-prop-03-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/coords-coord-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/coords-coord-02-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/coords-trans-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/coords-trans-02-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/coords-trans-03-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/coords-trans-04-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/coords-trans-05-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/coords-trans-06-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/coords-units-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/coords-units-02-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/coords-units-03-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/coords-viewattr-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/extend-namespace-01-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/filters-blend-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/filters-blend-01-b-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1/filters-color-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/filters-composite-02-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/filters-composite-02-b-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1/filters-comptran-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/filters-conv-01-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/filters-diffuse-01-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/filters-displace-01-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/filters-displace-01-f-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1/filters-example-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/filters-felem-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/filters-gauss-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/filters-image-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/filters-image-01-b-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1/filters-light-01-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/filters-light-04-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/filters-morph-01-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/filters-offset-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/filters-specular-01-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/filters-specular-01-f-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1/filters-tile-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/filters-turb-01-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/filters-turb-02-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/fonts-desc-02-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/fonts-elem-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/fonts-elem-02-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/fonts-elem-03-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/fonts-elem-04-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/fonts-elem-05-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/fonts-elem-06-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/fonts-elem-07-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/fonts-glyph-03-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/fonts-glyph-04-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/interact-cursor-01-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/interact-dom-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/interact-events-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/interact-order-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/interact-order-02-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/interact-order-03-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/interact-zoom-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/linking-a-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/linking-a-02-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/linking-a-03-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/linking-a-04-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/linking-a-05-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/linking-a-07-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/linking-uri-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/linking-uri-02-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/linking-uri-03-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/masking-intro-01-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/masking-mask-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/masking-opacity-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/masking-path-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/masking-path-02-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/masking-path-03-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/masking-path-04-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/masking-path-05-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/metadata-example-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/painting-fill-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/painting-fill-02-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/painting-fill-03-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/painting-fill-04-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/painting-fill-05-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/painting-marker-01-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/painting-marker-02-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/painting-marker-03-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/painting-marker-03-f-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1/painting-render-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/painting-stroke-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/painting-stroke-02-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/painting-stroke-03-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/painting-stroke-04-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/painting-stroke-07-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/paths-data-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/paths-data-02-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/paths-data-03-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/paths-data-04-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/paths-data-05-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/paths-data-06-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/paths-data-07-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/paths-data-08-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/paths-data-09-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/paths-data-10-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/paths-data-12-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/paths-data-13-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/paths-data-14-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/paths-data-15-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/pservers-grad-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/pservers-grad-02-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/pservers-grad-03-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/pservers-grad-04-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/pservers-grad-05-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/pservers-grad-07-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/pservers-grad-09-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/pservers-grad-10-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/pservers-grad-11-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/pservers-grad-12-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/pservers-grad-13-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/pservers-grad-14-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/pservers-grad-15-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/pservers-grad-16-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/pservers-grad-17-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/pservers-grad-18-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/pservers-grad-19-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/pservers-pattern-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/render-elems-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/render-elems-02-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/render-elems-03-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/render-elems-06-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/render-elems-07-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/render-elems-08-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/render-groups-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/render-groups-03-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/script-handle-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/script-handle-02-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/script-handle-03-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/script-handle-04-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/shapes-circle-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/shapes-circle-02-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/shapes-ellipse-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/shapes-ellipse-02-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/shapes-intro-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/shapes-line-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/shapes-polygon-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/shapes-polyline-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/shapes-rect-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/shapes-rect-02-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-cond-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-cond-02-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-cond-03-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-defs-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-dom-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-dom-02-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-dom-03-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-dom-04-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-dom-05-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-dom-06-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-dom-06-b-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-frag-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-frag-02-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-frag-03-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-frag-04-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-frag-05-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-frag-06-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-group-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-group-02-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-group-03-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-image-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-image-02-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-image-03-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-image-04-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-image-05-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-image-06-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-image-07-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-image-08-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-image-09-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-image-10-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-symbol-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-use-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-use-03-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-use-05-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/struct-use-05-b-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1/styling-css-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/styling-css-02-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/styling-css-03-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/styling-css-04-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/styling-css-05-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/styling-css-06-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/styling-inherit-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/styling-pres-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-align-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-align-02-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-align-03-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-align-04-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-align-05-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-align-06-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-align-08-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-altglyph-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-deco-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-fonts-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-fonts-02-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-fonts-03-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-intro-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-intro-02-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-intro-03-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-intro-04-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-intro-05-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-path-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-spacing-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-spacing-01-b-expected.txt: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-text-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-text-03-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-text-04-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-text-05-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-text-06-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-text-07-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-text-08-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-tref-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-tselect-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-tselect-02-f-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-tspan-01-b-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-ws-01-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/text-ws-02-t-expected.png: Removed.
  • platform/efl/svg/W3C-SVG-1.1/types-basicDOM-01-b-expected.png: Removed.
  • platform/efl/svg/as-background-image: Removed.
  • platform/efl/svg/as-background-image/animated-svg-as-background-expected.png: Removed.
  • platform/efl/svg/as-background-image/background-image-preserveaspectRatio-support-expected.png: Removed.
  • platform/efl/svg/as-background-image/background-image-preserveaspectRatio-support-expected.txt: Removed.
  • platform/efl/svg/as-background-image/background-image-tiled-expected.png: Removed.
  • platform/efl/svg/as-background-image/same-image-two-instances-background-image-expected.png: Removed.
  • platform/efl/svg/as-background-image/svg-as-background-1-expected.png: Removed.
  • platform/efl/svg/as-background-image/svg-as-background-2-expected.png: Removed.
  • platform/efl/svg/as-background-image/svg-as-background-3-expected.png: Removed.
  • platform/efl/svg/as-background-image/svg-as-background-4-expected.png: Removed.
  • platform/efl/svg/as-background-image/svg-as-background-5-expected.png: Removed.
  • platform/efl/svg/as-background-image/svg-as-background-6-expected.png: Removed.
  • platform/efl/svg/as-background-image/svg-as-background-with-relative-size-expected.png: Removed.
  • platform/efl/svg/as-background-image/svg-background-partial-redraw-expected.png: Removed.
  • platform/efl/svg/as-background-image/svg-background-partial-redraw-expected.txt: Removed.
  • platform/efl/svg/as-border-image: Removed.
  • platform/efl/svg/as-border-image/svg-as-border-image-2-expected.png: Removed.
  • platform/efl/svg/as-border-image/svg-as-border-image-2-expected.txt: Removed.
  • platform/efl/svg/as-border-image/svg-as-border-image-expected.png: Removed.
  • platform/efl/svg/as-border-image/svg-as-border-image-expected.txt: Removed.
  • platform/efl/svg/as-image: Removed.
  • platform/efl/svg/as-image/animated-svg-as-image-expected.png: Removed.
  • platform/efl/svg/as-image/animated-svg-as-image-expected.txt: Removed.
  • platform/efl/svg/as-image/animated-svg-as-image-no-fixed-intrinsic-size-expected.png: Removed.
  • platform/efl/svg/as-image/animated-svg-as-image-no-fixed-intrinsic-size-expected.txt: Removed.
  • platform/efl/svg/as-image/animated-svg-as-image-same-image-expected.png: Removed.
  • platform/efl/svg/as-image/animated-svg-as-image-same-image-expected.txt: Removed.
  • platform/efl/svg/as-image/image-respects-deviceScaleFactor-expected.png: Removed.
  • platform/efl/svg/as-image/image-respects-deviceScaleFactor-expected.txt: Removed.
  • platform/efl/svg/as-image/image-respects-pageScaleFactor-change-expected.png: Removed.
  • platform/efl/svg/as-image/image-respects-pageScaleFactor-expected.png: Removed.
  • platform/efl/svg/as-image/image-respects-pageScaleFactor-expected.txt: Removed.
  • platform/efl/svg/as-image/img-preserveAspectRatio-support-1-expected.png: Removed.
  • platform/efl/svg/as-image/img-preserveAspectRatio-support-1-expected.txt: Removed.
  • platform/efl/svg/as-image/img-preserveAspectRatio-support-2-expected.png: Removed.
  • platform/efl/svg/as-image/img-preserveAspectRatio-support-2-expected.txt: Removed.
  • platform/efl/svg/as-image/same-image-two-instances-expected.png: Removed.
  • platform/efl/svg/as-image/same-image-two-instances-expected.txt: Removed.
  • platform/efl/svg/as-image/svg-as-relative-image-expected.png: Removed.
  • platform/efl/svg/as-image/svg-as-relative-image-with-explicit-size-expected.png: Removed.
  • platform/efl/svg/as-image/svg-image-change-content-size-expected.png: Removed.
  • platform/efl/svg/as-image/svg-image-change-content-size-expected.txt: Removed.
  • platform/efl/svg/as-image/svg-non-integer-scaled-image-expected.png: Removed.
  • platform/efl/svg/as-object: Removed.
  • platform/efl/svg/as-object/embedded-svg-immediate-offsetWidth-query-expected.png: Removed.
  • platform/efl/svg/as-object/embedded-svg-size-changes-expected.png: Removed.
  • platform/efl/svg/as-object/nested-embedded-svg-size-changes-expected.png: Removed.
  • platform/efl/svg/as-object/object-box-sizing-no-width-height-expected.png: Removed.
  • platform/efl/svg/as-object/object-box-sizing-no-width-height-expected.txt: Removed.
  • platform/efl/svg/as-object/svg-embedded-in-html-in-iframe-expected.png: Removed.
  • platform/efl/svg/batik: Removed.
  • platform/efl/svg/batik/filters: Removed.
  • platform/efl/svg/batik/filters/feTile-expected.png: Removed.
  • platform/efl/svg/batik/filters/filterRegions-expected.png: Removed.
  • platform/efl/svg/batik/masking: Removed.
  • platform/efl/svg/batik/masking/maskRegions-expected.png: Removed.
  • platform/efl/svg/batik/paints: Removed.
  • platform/efl/svg/batik/paints/patternPreserveAspectRatioA-expected.png: Removed.
  • platform/efl/svg/batik/paints/patternRegionA-expected.png: Removed.
  • platform/efl/svg/batik/paints/patternRegions-expected.png: Removed.
  • platform/efl/svg/batik/paints/patternRegions-positioned-objects-expected.png: Removed.
  • platform/efl/svg/batik/text: Removed.
  • platform/efl/svg/batik/text/longTextOnPath-expected.png: Removed.
  • platform/efl/svg/batik/text/smallFonts-expected.png: Removed.
  • platform/efl/svg/batik/text/textAnchor-expected.png: Removed.
  • platform/efl/svg/batik/text/textAnchor2-expected.png: Removed.
  • platform/efl/svg/batik/text/textAnchor3-expected.png: Removed.
  • platform/efl/svg/batik/text/textDecoration-expected.png: Removed.
  • platform/efl/svg/batik/text/textDecoration2-expected.png: Removed.
  • platform/efl/svg/batik/text/textEffect-expected.png: Removed.
  • platform/efl/svg/batik/text/textEffect2-expected.png: Removed.
  • platform/efl/svg/batik/text/textEffect3-expected.png: Removed.
  • platform/efl/svg/batik/text/textFeatures-expected.png: Removed.
  • platform/efl/svg/batik/text/textGlyphOrientationHorizontal-expected.png: Removed.
  • platform/efl/svg/batik/text/textLayout-expected.png: Removed.
  • platform/efl/svg/batik/text/textLayout-expected.txt: Removed.
  • platform/efl/svg/batik/text/textLayout2-expected.png: Removed.
  • platform/efl/svg/batik/text/textLength-expected.png: Removed.
  • platform/efl/svg/batik/text/textOnPath-expected.png: Removed.
  • platform/efl/svg/batik/text/textOnPath2-expected.png: Removed.
  • platform/efl/svg/batik/text/textOnPath3-expected.png: Removed.
  • platform/efl/svg/batik/text/textOnPathSpaces-expected.png: Removed.
  • platform/efl/svg/batik/text/textPCDATA-expected.png: Removed.
  • platform/efl/svg/batik/text/textPosition-expected.png: Removed.
  • platform/efl/svg/batik/text/textPosition2-expected.png: Removed.
  • platform/efl/svg/batik/text/textPosition2-expected.txt: Removed.
  • platform/efl/svg/batik/text/textProperties-expected.png: Removed.
  • platform/efl/svg/batik/text/textProperties2-expected.png: Removed.
  • platform/efl/svg/batik/text/textStyles-expected.png: Removed.
  • platform/efl/svg/batik/text/verticalText-expected.png: Removed.
  • platform/efl/svg/batik/text/verticalTextOnPath-expected.png: Removed.
  • platform/efl/svg/batik/text/xmlSpace-expected.png: Removed.
  • platform/efl/svg/canvas: Removed.
  • platform/efl/svg/canvas/canvas-pattern-svg-expected.png: Removed.
  • platform/efl/svg/carto.net: Removed.
  • platform/efl/svg/carto.net/button-expected.png: Removed.
  • platform/efl/svg/carto.net/colourpicker-expected.png: Removed.
  • platform/efl/svg/carto.net/combobox-expected.png: Removed.
  • platform/efl/svg/carto.net/scrollbar-expected.png: Removed.
  • platform/efl/svg/carto.net/selectionlist-expected.png: Removed.
  • platform/efl/svg/carto.net/slider-expected.png: Removed.
  • platform/efl/svg/carto.net/tabgroup-expected.png: Removed.
  • platform/efl/svg/carto.net/textbox-expected.png: Removed.
  • platform/efl/svg/carto.net/window-expected.png: Removed.
  • platform/efl/svg/css: Removed.
  • platform/efl/svg/css/arrow-with-shadow-expected.png: Removed.
  • platform/efl/svg/css/background-image-svg-expected.png: Removed.
  • platform/efl/svg/css/circle-in-mask-with-shadow-expected.png: Removed.
  • platform/efl/svg/css/composite-shadow-example-expected.png: Removed.
  • platform/efl/svg/css/composite-shadow-text-expected.png: Removed.
  • platform/efl/svg/css/composite-shadow-text-expected.txt: Removed.
  • platform/efl/svg/css/composite-shadow-with-opacity-expected.png: Removed.
  • platform/efl/svg/css/css-box-min-width-expected.png: Removed.
  • platform/efl/svg/css/css-box-min-width-expected.txt: Removed.
  • platform/efl/svg/css/group-with-shadow-expected.png: Removed.
  • platform/efl/svg/css/path-gradient-stroke-shadow-expected.png: Removed.
  • platform/efl/svg/css/path-with-shadow-expected.png: Removed.
  • platform/efl/svg/css/rect-gradient-stroke-shadow-expected.png: Removed.
  • platform/efl/svg/css/shadow-changes-expected.png: Removed.
  • platform/efl/svg/css/shadow-changes-expected.txt: Removed.
  • platform/efl/svg/css/shadow-with-large-radius-expected.png: Removed.
  • platform/efl/svg/css/shadow-with-negative-offset-expected.png: Removed.
  • platform/efl/svg/css/text-gradient-shadow-expected.png: Removed.
  • platform/efl/svg/css/text-shadow-multiple-expected.png: Removed.
  • platform/efl/svg/css/text-shadow-multiple-expected.txt: Removed.
  • platform/efl/svg/custom: Removed.
  • platform/efl/svg/custom/feDisplacementMap-01-expected.png: Removed.
  • platform/efl/svg/custom/foreign-object-skew-expected.png: Removed.
  • platform/efl/svg/custom/foreign-object-skew-expected.txt: Removed.
  • platform/efl/svg/custom/getscreenctm-in-scrollable-div-area-nested-expected.txt: Removed.
  • platform/efl/svg/custom/gradient-deep-referencing-expected.txt: Removed.
  • platform/efl/svg/custom/gradient-with-1d-boundingbox-expected.png: Removed.
  • platform/efl/svg/custom/gradient-with-1d-boundingbox-expected.txt: Removed.
  • platform/efl/svg/custom/image-rescale-clip-expected.txt: Removed.
  • platform/efl/svg/custom/js-late-pattern-creation-expected.png: Removed.
  • platform/efl/svg/custom/js-late-pattern-creation-expected.txt: Removed.
  • platform/efl/svg/custom/pattern-scaling-expected.png: Removed.
  • platform/efl/svg/custom/pattern-with-transformation-expected.png: Removed.
  • platform/efl/svg/custom/radial-gradient-with-outstanding-focalPoint-expected.png: Removed.
  • platform/efl/svg/custom/recursive-gradient-expected.png: Removed.
  • platform/efl/svg/custom/recursive-gradient-expected.txt: Removed.
  • platform/efl/svg/custom/relative-sized-content-with-resources-expected.png: Removed.
  • platform/efl/svg/custom/relative-sized-content-with-resources-expected.txt: Removed.
  • platform/efl/svg/custom/stroked-pattern-expected.png: Removed.
  • platform/efl/svg/custom/text-ctm-expected.png: Removed.
  • platform/efl/svg/custom/text-ctm-expected.txt: Removed.
  • platform/efl/svg/custom/text-letter-spacing-expected.png: Removed.
  • platform/efl/svg/custom/text-letter-spacing-expected.txt: Removed.
  • platform/efl/svg/dom: Removed.
  • platform/efl/svg/dom/SVGLengthList-appendItem-expected.png: Removed.
  • platform/efl/svg/dom/SVGLengthList-basics-expected.png: Removed.
  • platform/efl/svg/dom/SVGLengthList-getItem-expected.png: Removed.
  • platform/efl/svg/dom/SVGLengthList-initialize-expected.png: Removed.
  • platform/efl/svg/dom/SVGLengthList-insertItemBefore-expected.png: Removed.
  • platform/efl/svg/dom/SVGLengthList-removeItem-expected.png: Removed.
  • platform/efl/svg/dom/SVGLengthList-replaceItem-expected.png: Removed.
  • platform/efl/svg/dom/SVGLengthList-xml-dom-modifications-expected.png: Removed.
  • platform/efl/svg/dom/SVGLocatable-getCTM-svg-root-expected.png: Removed.
  • platform/efl/svg/dom/SVGNumberList-basics-expected.png: Removed.
  • platform/efl/svg/dom/SVGPathSegList-appendItem-expected.png: Removed.
  • platform/efl/svg/dom/SVGPathSegList-clear-and-initialize-expected.png: Removed.
  • platform/efl/svg/dom/SVGPathSegList-cloning-expected.png: Removed.
  • platform/efl/svg/dom/SVGPathSegList-cloning-expected.txt: Removed.
  • platform/efl/svg/dom/SVGPathSegList-insertItemBefore-expected.png: Removed.
  • platform/efl/svg/dom/SVGPathSegList-removeItem-expected.png: Removed.
  • platform/efl/svg/dom/SVGPathSegList-replaceItem-expected.png: Removed.
  • platform/efl/svg/dom/SVGPathSegList-segment-modification-expected.png: Removed.
  • platform/efl/svg/dom/SVGPathSegList-xml-dom-synchronization-expected.png: Removed.
  • platform/efl/svg/dom/SVGPathSegList-xml-dom-synchronization2-expected.png: Removed.
  • platform/efl/svg/dom/SVGPointList-basics-expected.png: Removed.
  • platform/efl/svg/dom/SVGStringList-basics-expected.png: Removed.
  • platform/efl/svg/dom/SVGTransformList-basics-expected.png: Removed.
  • platform/efl/svg/dom/css-transforms-expected.png: Removed.
  • platform/efl/svg/dynamic-updates: Removed.
  • platform/efl/svg/dynamic-updates/SVG-dynamic-css-transform-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGCircleElement-dom-cx-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGCircleElement-dom-cy-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGCircleElement-dom-r-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGCircleElement-dom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGCircleElement-svgdom-cx-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGCircleElement-svgdom-cy-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGCircleElement-svgdom-r-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGCircleElement-svgdom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGClipPath-influences-hitTesting-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGClipPathElement-css-transform-influences-hitTesting-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGClipPathElement-dom-clipPathUnits-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGClipPathElement-svgdom-clipPathUnits-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGClipPathElement-transform-influences-hitTesting-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGCursorElement-dom-x-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGCursorElement-dom-y-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGCursorElement-svgdom-x-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGCursorElement-svgdom-y-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGEllipseElement-dom-cx-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGEllipseElement-dom-cy-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGEllipseElement-dom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGEllipseElement-dom-rx-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGEllipseElement-dom-ry-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGEllipseElement-svgdom-cx-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGEllipseElement-svgdom-cy-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGEllipseElement-svgdom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGEllipseElement-svgdom-rx-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGEllipseElement-svgdom-ry-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEBlendElement-dom-in-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEBlendElement-dom-in2-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEBlendElement-dom-mode-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEBlendElement-svgdom-in-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEBlendElement-svgdom-in2-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEBlendElement-svgdom-mode-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEColorMatrixElement-dom-in-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEColorMatrixElement-dom-type-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEColorMatrixElement-dom-values-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-in-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-type-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-dom-amplitude-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-dom-exponent-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-dom-intercept-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-dom-offset-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-dom-slope-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-dom-tableValues-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-dom-type-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-amplitude-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-exponent-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-intercept-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-offset-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-slope-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-tableValues-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-type-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFECompositeElement-dom-in-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFECompositeElement-dom-in2-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFECompositeElement-dom-k1-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFECompositeElement-dom-k2-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFECompositeElement-dom-k3-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFECompositeElement-dom-k4-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFECompositeElement-dom-operator-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFECompositeElement-svgdom-in-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFECompositeElement-svgdom-in2-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFECompositeElement-svgdom-k1-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFECompositeElement-svgdom-k2-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFECompositeElement-svgdom-k3-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFECompositeElement-svgdom-k4-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFECompositeElement-svgdom-operator-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-bias-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-divisor-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-edgeMode-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-in-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelMatrix-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelUnitLength-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-order-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-preserveAlpha-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-targetX-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-targetY-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-bias-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-divisor-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-edgeMode-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-in-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelMatrix-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelUnitLength-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-order-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-preserveAlpha-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-targetX-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-targetY-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-diffuseConstant-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-in-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-lighting-color-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-surfaceScale-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDiffuseLightingElement-inherit-lighting-color-css-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDiffuseLightingElement-lighting-color-css-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-diffuseConstant-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-in-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-surfaceScale-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-in-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-in2-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-scale-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-xChannelSelector-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-yChannelSelector-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-in-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-in2-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-scale-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-xChannelSelector-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-yChannelSelector-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDistantLightElement-dom-azimuth-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDistantLightElement-dom-elevation-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDistantLightElement-svgdom-azimuth-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDistantLightElement-svgdom-elevation-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-dom-dx-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-dom-dy-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-dom-in-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-color-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-opacity-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-dom-stdDeviation-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-dx-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-dy-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-in-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-color-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-opacity-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-stdDeviation-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEFloodElement-dom-flood-color-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEFloodElement-dom-flood-opacity-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEFloodElement-inherit-flood-color-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-color-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-opacity-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-in-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-call-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEGaussianBlurElement-svgdom-in-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEMergeNodeElement-dom-in-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEMergeNodeElement-svgdom-in-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEMorphologyElement-dom-in-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEMorphologyElement-dom-operator-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEMorphologyElement-dom-radius-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-in-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-operator-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-radius-call-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEOffsetElement-dom-dx-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEOffsetElement-dom-dy-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEOffsetElement-dom-in-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEOffsetElement-svgdom-dx-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEOffsetElement-svgdom-dy-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEOffsetElement-svgdom-in-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEPointLightElement-dom-x-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEPointLightElement-dom-y-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEPointLightElement-dom-z-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEPointLightElement-svgdom-x-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEPointLightElement-svgdom-y-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFEPointLightElement-svgdom-z-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpecularLightingElement-dom-in-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpecularLightingElement-dom-specularConstant-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpecularLightingElement-dom-specularExponent-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpecularLightingElement-dom-suraceScale-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpecularLightingElement-inherit-lighting-color-css-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpecularLightingElement-lighting-color-css-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpecularLightingElement-remove-lightSource-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-in-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-specularConstant-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-specularExponent-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-suraceScale-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpotLightElement-dom-limitingConeAngle-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtX-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtY-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtZ-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpotLightElement-dom-specularExponent-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpotLightElement-dom-x-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpotLightElement-dom-y-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpotLightElement-dom-z-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpotLightElement-svgdom-limitingConeAngle-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtX-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtY-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtZ-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpotLightElement-svgdom-specularExponent-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpotLightElement-svgdom-x-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpotLightElement-svgdom-y-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFESpotLightElement-svgdom-z-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFETileElement-dom-in-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFETileElement-svgdom-in-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFETurbulenceElement-dom-baseFrequency-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFETurbulenceElement-dom-numOctaves-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFETurbulenceElement-dom-seed-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFETurbulenceElement-dom-stitchTiles-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFETurbulenceElement-dom-type-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-baseFrequency-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-numOctaves-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-seed-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-stitchTiles-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-type-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterElement-dom-filterRes-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterElement-dom-filterUnits-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterElement-dom-height-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterElement-dom-primitiveUnits-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterElement-dom-width-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterElement-dom-x-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterElement-dom-y-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterElement-svgdom-filterRes-call-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterElement-svgdom-filterResX-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterElement-svgdom-filterResY-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterElement-svgdom-filterUnits-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterElement-svgdom-height-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterElement-svgdom-primitiveUnits-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterElement-svgdom-width-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterElement-svgdom-x-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterElement-svgdom-y-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-height-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-result-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-width-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-x-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-y-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-height-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-result-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-width-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-x-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-y-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGForeignObjectElement-dom-height-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGForeignObjectElement-dom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGForeignObjectElement-dom-width-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGForeignObjectElement-dom-x-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGForeignObjectElement-dom-y-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGForeignObjectElement-svgdom-height-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGForeignObjectElement-svgdom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGForeignObjectElement-svgdom-width-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGForeignObjectElement-svgdom-x-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGForeignObjectElement-svgdom-y-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGGElement-dom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGGElement-svgdom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGImageElement-dom-height-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGImageElement-dom-preserveAspectRatio-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGImageElement-dom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGImageElement-dom-width-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGImageElement-dom-x-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGImageElement-dom-y-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGImageElement-svgdom-height-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGImageElement-svgdom-preserveAspectRatio-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGImageElement-svgdom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGImageElement-svgdom-width-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGImageElement-svgdom-x-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGImageElement-svgdom-y-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGLineElement-dom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGLineElement-dom-x1-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGLineElement-dom-x2-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGLineElement-dom-y1-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGLineElement-dom-y2-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGLineElement-svgdom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGLineElement-svgdom-x1-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGLineElement-svgdom-x2-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGLineElement-svgdom-y1-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGLineElement-svgdom-y2-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientTransform-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientUnits-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGLinearGradientElement-dom-x1-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGLinearGradientElement-dom-x2-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGLinearGradientElement-dom-y1-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGLinearGradientElement-dom-y2-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientTransform-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientUnits-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x1-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x2-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y1-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y2-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMarkerElement-dom-markerHeight-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMarkerElement-dom-markerUnits-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMarkerElement-dom-markerWidth-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMarkerElement-dom-orient-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMarkerElement-dom-refX-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMarkerElement-dom-refY-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMarkerElement-svgdom-markerHeight-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMarkerElement-svgdom-markerUnits-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMarkerElement-svgdom-markerWidth-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMarkerElement-svgdom-orientAngle-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMarkerElement-svgdom-orientType-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMarkerElement-svgdom-refX-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMarkerElement-svgdom-refY-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMarkerElement-svgdom-setOrientToAngle-call-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMarkerElement-svgdom-setOrientToAuto-call-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMaskElement-dom-height-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMaskElement-dom-maskContentUnits-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMaskElement-dom-maskUnits-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMaskElement-dom-width-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMaskElement-dom-x-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMaskElement-dom-y-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMaskElement-svgdom-height-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMaskElement-svgdom-maskContentUnits-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMaskElement-svgdom-maskUnits-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMaskElement-svgdom-width-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMaskElement-svgdom-x-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGMaskElement-svgdom-y-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGPathElement-dom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGPathElement-svgdom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGPatternElement-dom-height-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGPatternElement-dom-patternContentUnits-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGPatternElement-dom-patternTransform-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGPatternElement-dom-patternUnits-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGPatternElement-dom-width-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGPatternElement-dom-x-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGPatternElement-dom-y-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGPatternElement-svgdom-height-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGPatternElement-svgdom-patternContentUnits-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGPatternElement-svgdom-patternTransform-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGPatternElement-svgdom-patternUnits-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGPatternElement-svgdom-width-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGPatternElement-svgdom-x-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGPatternElement-svgdom-y-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGPolygonElement-dom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGPolygonElement-svgdom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGPolylineElement-dom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGPolylineElement-svgdom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGRadialGradientElement-dom-cx-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGRadialGradientElement-dom-cy-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGRadialGradientElement-dom-fx-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGRadialGradientElement-dom-fy-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientTransform-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientUnits-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGRadialGradientElement-dom-r-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cx-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cy-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fx-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fy-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientTransform-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientUnits-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGRadialGradientElement-svgdom-r-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGRectElement-dom-height-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGRectElement-dom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGRectElement-dom-width-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGRectElement-dom-x-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGRectElement-dom-y-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGRectElement-svgdom-height-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGRectElement-svgdom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGRectElement-svgdom-width-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGRectElement-svgdom-x-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGRectElement-svgdom-y-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGSVGElement-dom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGSVGElement-svgdom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGTRefElement-dom-href-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGTextElement-dom-dx-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGTextElement-dom-dy-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGTextElement-dom-lengthAdjust-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGTextElement-dom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGTextElement-dom-rotate-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGTextElement-dom-textLength-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGTextElement-dom-transform-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGTextElement-dom-x-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGTextElement-dom-y-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGTextElement-svgdom-dx-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGTextElement-svgdom-dy-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGTextElement-svgdom-lengthAdjust-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGTextElement-svgdom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGTextElement-svgdom-rotate-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGTextElement-svgdom-textLength-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGTextElement-svgdom-transform-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGTextElement-svgdom-x-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGTextElement-svgdom-y-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGUseElement-dom-href1-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGUseElement-dom-href2-attr-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGUseElement-dom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGUseElement-svgdom-href1-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGUseElement-svgdom-href2-prop-expected.png: Removed.
  • platform/efl/svg/dynamic-updates/SVGUseElement-svgdom-requiredFeatures-expected.png: Removed.
  • platform/efl/svg/filters: Removed.
  • platform/efl/svg/filters/big-sized-filter-2-expected.png: Removed.
  • platform/efl/svg/filters/big-sized-filter-expected.png: Removed.
  • platform/efl/svg/filters/color-interpolation-filters-expected.png: Removed.
  • platform/efl/svg/filters/feBlend-all-blendmodes-expected.txt: Removed.
  • platform/efl/svg/filters/feColorMatrix-saturate-expected.png: Removed.
  • platform/efl/svg/filters/feColorMatrix-values-expected.txt: Removed.
  • platform/efl/svg/filters/feComposite-expected.png: Removed.
  • platform/efl/svg/filters/feDisplacementMap-expected.png: Removed.
  • platform/efl/svg/filters/feDropShadow-expected.png: Removed.
  • platform/efl/svg/filters/feGaussianBlur-expected.png: Removed.
  • platform/efl/svg/filters/feImage-animated-transform-on-target-rect-expected.png: Removed.
  • platform/efl/svg/filters/feImage-filterUnits-objectBoundingBox-primitiveUnits-objectBoundingBox-expected.png: Removed.
  • platform/efl/svg/filters/feImage-filterUnits-objectBoundingBox-primitiveUnits-userSpaceOnUse-expected.png: Removed.
  • platform/efl/svg/filters/feImage-filterUnits-userSpaceOnUse-primitiveUnits-objectBoundingBox-expected.png: Removed.
  • platform/efl/svg/filters/feImage-filterUnits-userSpaceOnUse-primitiveUnits-userSpaceOnUse-expected.png: Removed.
  • platform/efl/svg/filters/feImage-late-indirect-update-expected.png: Removed.
  • platform/efl/svg/filters/feImage-multiple-targets-id-change-expected.png: Removed.
  • platform/efl/svg/filters/feImage-position-expected.png: Removed.
  • platform/efl/svg/filters/feImage-preserveAspectratio-expected.png: Removed.
  • platform/efl/svg/filters/feImage-reference-invalidation-expected.png: Removed.
  • platform/efl/svg/filters/feImage-reference-svg-primitive-expected.png: Removed.
  • platform/efl/svg/filters/feImage-subregions-expected.png: Removed.
  • platform/efl/svg/filters/feImage-subregions-preseveAspectRatio-none-expected.png: Removed.
  • platform/efl/svg/filters/feImage-subregions-preseveAspectRatio-none-with-viewBox-expected.png: Removed.
  • platform/efl/svg/filters/feImage-target-add-to-document-expected.png: Removed.
  • platform/efl/svg/filters/feImage-target-attribute-change-expected.png: Removed.
  • platform/efl/svg/filters/feImage-target-attribute-change-with-use-indirection-2-expected.png: Removed.
  • platform/efl/svg/filters/feImage-target-attribute-change-with-use-indirection-expected.png: Removed.
  • platform/efl/svg/filters/feImage-target-changes-id-expected.png: Removed.
  • platform/efl/svg/filters/feImage-target-id-change-expected.png: Removed.
  • platform/efl/svg/filters/feImage-target-inline-style-change-expected.png: Removed.
  • platform/efl/svg/filters/feImage-target-property-change-expected.png: Removed.
  • platform/efl/svg/filters/feImage-target-reappend-to-document-expected.png: Removed.
  • platform/efl/svg/filters/feImage-target-remove-from-document-expected.png: Removed.
  • platform/efl/svg/filters/feImage-target-style-change-expected.png: Removed.
  • platform/efl/svg/filters/feMerge-expected.png: Removed.
  • platform/efl/svg/filters/feOffset-expected.png: Removed.
  • platform/efl/svg/filters/feTile-expected.png: Removed.
  • platform/efl/svg/filters/filter-clip-expected.png: Removed.
  • platform/efl/svg/filters/filter-hidden-content-expected.png: Removed.
  • platform/efl/svg/filters/filter-on-tspan-expected.png: Removed.
  • platform/efl/svg/filters/filter-placement-issue-expected.png: Removed.
  • platform/efl/svg/filters/filter-source-position-expected.png: Removed.
  • platform/efl/svg/filters/filter-width-update-expected.png: Removed.
  • platform/efl/svg/filters/filterRes-expected.png: Removed.
  • platform/efl/svg/filters/filterRes1-expected.png: Removed.
  • platform/efl/svg/filters/filterRes3-expected.png: Removed.
  • platform/efl/svg/filters/invalidate-on-child-layout-expected.png: Removed.
  • platform/efl/svg/filters/parent-children-with-same-filter-expected.png: Removed.
  • platform/efl/svg/filters/shadow-on-filter-expected.png: Removed.
  • platform/efl/svg/filters/shadow-on-rect-with-filter-expected.png: Removed.
  • platform/efl/svg/filters/subRegion-in-userSpace-expected.png: Removed.
  • platform/efl/svg/filters/subRegion-one-effect-expected.png: Removed.
  • platform/efl/svg/filters/subRegion-two-effects-expected.png: Removed.
  • platform/efl/svg/foreignObject: Removed.
  • platform/efl/svg/foreignObject/filter-expected.png: Removed.
  • platform/efl/svg/foreignObject/no-crash-with-svg-content-in-html-document-expected.txt: Removed.
  • platform/efl/svg/foreignObject/svg-document-in-html-document-expected.png: Removed.
  • platform/efl/svg/foreignObject/svg-document-in-html-document-expected.txt: Removed.
  • platform/efl/svg/foreignObject/text-tref-02-b-expected.png: Removed.
  • platform/efl/svg/hixie: Removed.
  • platform/efl/svg/hixie/cascade: Removed.
  • platform/efl/svg/hixie/cascade/001-broken-expected.png: Removed.
  • platform/efl/svg/hixie/cascade/002-expected.png: Removed.
  • platform/efl/svg/hixie/data-types: Removed.
  • platform/efl/svg/hixie/data-types/001-expected.png: Removed.
  • platform/efl/svg/hixie/data-types/002-expected.png: Removed.
  • platform/efl/svg/hixie/data-types/002-expected.txt: Removed.
  • platform/efl/svg/hixie/dynamic: Removed.
  • platform/efl/svg/hixie/dynamic/002-expected.txt: Removed.
  • platform/efl/svg/hixie/error: Removed.
  • platform/efl/svg/hixie/error/003-expected.png: Removed.
  • platform/efl/svg/hixie/error/012-expected.png: Removed.
  • platform/efl/svg/hixie/error/012-expected.txt: Removed.
  • platform/efl/svg/hixie/error/013-expected.png: Removed.
  • platform/efl/svg/hixie/error/013-expected.txt: Removed.
  • platform/efl/svg/hixie/intrinsic: Removed.
  • platform/efl/svg/hixie/intrinsic/003-expected.png: Removed.
  • platform/efl/svg/hixie/intrinsic/003-expected.txt: Removed.
  • platform/efl/svg/hixie/links: Removed.
  • platform/efl/svg/hixie/links/001-expected.png: Removed.
  • platform/efl/svg/hixie/mixed: Removed.
  • platform/efl/svg/hixie/mixed/003-expected.png: Removed.
  • platform/efl/svg/hixie/mixed/003-expected.txt: Removed.
  • platform/efl/svg/hixie/mixed/004-expected.png: Removed.
  • platform/efl/svg/hixie/mixed/005-expected.png: Removed.
  • platform/efl/svg/hixie/mixed/006-expected.png: Removed.
  • platform/efl/svg/hixie/mixed/006-expected.txt: Removed.
  • platform/efl/svg/hixie/mixed/007-expected.txt: Removed.
  • platform/efl/svg/hixie/mixed/008-expected.png: Removed.
  • platform/efl/svg/hixie/mixed/008-expected.txt: Removed.
  • platform/efl/svg/hixie/mixed/009-expected.png: Removed.
  • platform/efl/svg/hixie/mixed/009-expected.txt: Removed.
  • platform/efl/svg/hixie/mixed/010-expected.png: Removed.
  • platform/efl/svg/hixie/mixed/010-expected.txt: Removed.
  • platform/efl/svg/hixie/mixed/011-expected.png: Removed.
  • platform/efl/svg/hixie/mixed/011-expected.txt: Removed.
  • platform/efl/svg/hixie/perf: Removed.
  • platform/efl/svg/hixie/perf/001-expected.png: Removed.
  • platform/efl/svg/hixie/perf/002-expected.png: Removed.
  • platform/efl/svg/hixie/perf/003-expected.png: Removed.
  • platform/efl/svg/hixie/perf/004-expected.png: Removed.
  • platform/efl/svg/hixie/perf/005-expected.png: Removed.
  • platform/efl/svg/hixie/perf/006-expected.png: Removed.
  • platform/efl/svg/hixie/perf/007-expected.png: Removed.
  • platform/efl/svg/hixie/processing-model: Removed.
  • platform/efl/svg/hixie/processing-model/003-expected.txt: Removed.
  • platform/efl/svg/hixie/processing-model/004-expected.txt: Removed.
  • platform/efl/svg/hixie/rendering-model: Removed.
  • platform/efl/svg/hixie/rendering-model/001-expected.png: Removed.
  • platform/efl/svg/hixie/rendering-model/002-expected.png: Removed.
  • platform/efl/svg/hixie/rendering-model/003-expected.png: Removed.
  • platform/efl/svg/hixie/rendering-model/003-expected.txt: Removed.
  • platform/efl/svg/hixie/rendering-model/004-expected.png: Removed.
  • platform/efl/svg/hixie/rendering-model/004-expected.txt: Removed.
  • platform/efl/svg/hixie/shapes: Removed.
  • platform/efl/svg/hixie/shapes/path: Removed.
  • platform/efl/svg/hixie/shapes/path/001-expected.png: Removed.
  • platform/efl/svg/hixie/text: Removed.
  • platform/efl/svg/hixie/text/002-expected.png: Removed.
  • platform/efl/svg/hixie/text/003-expected.png: Removed.
  • platform/efl/svg/hixie/text/003-expected.txt: Removed.
  • platform/efl/svg/hixie/text/003a-expected.png: Removed.
  • platform/efl/svg/hixie/text/003b-expected.png: Removed.
  • platform/efl/svg/hixie/transform: Removed.
  • platform/efl/svg/hixie/transform/001-expected.png: Removed.
  • platform/efl/svg/hixie/viewbox: Removed.
  • platform/efl/svg/hixie/viewbox/preserveAspectRatio: Removed.
  • platform/efl/svg/hixie/viewbox/preserveAspectRatio/001-expected.png: Removed.
  • platform/efl/svg/hixie/viewbox/preserveAspectRatio/002-expected.png: Removed.
  • platform/efl/svg/in-html: Removed.
  • platform/efl/svg/in-html/by-reference-expected.png: Removed.
  • platform/efl/svg/in-html/circle-expected.png: Removed.
  • platform/efl/svg/in-html/circle-expected.txt: Removed.
  • platform/efl/svg/overflow: Removed.
  • platform/efl/svg/overflow/overflow-on-inner-svg-element-expected.png: Removed.
  • platform/efl/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-auto-expected.txt: Removed.
  • platform/efl/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-defaults-expected.png: Removed.
  • platform/efl/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-defaults-expected.txt: Removed.
  • platform/efl/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-hidden-expected.txt: Removed.
  • platform/efl/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-scroll-expected.txt: Removed.
  • platform/efl/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-visible-expected.txt: Removed.
  • platform/efl/svg/repaint: Removed.
  • platform/efl/svg/repaint/filter-child-repaint-expected.png: Removed.
  • platform/efl/svg/repaint/filter-repaint-expected.png: Removed.
  • platform/efl/svg/repaint/image-with-clip-path-expected.png: Removed.
  • platform/efl/svg/repaint/inner-svg-change-viewBox-expected.png: Removed.
  • platform/efl/svg/repaint/inner-svg-change-viewPort-relative-expected.png: Removed.
  • platform/efl/svg/repaint/mask-clip-target-transform-expected.png: Removed.
  • platform/efl/svg/repaint/repainting-after-animation-element-removal-expected.png: Removed.
  • platform/efl/svg/repaint/text-mask-update-expected.txt: Removed.
  • platform/efl/svg/stroke: Removed.
  • platform/efl/svg/stroke/zero-length-arc-linecaps-rendering-expected.png: Removed.
  • platform/efl/svg/stroke/zero-length-path-linecap-rendering-expected.png: Removed.
  • platform/efl/svg/stroke/zero-length-subpaths-linecap-rendering-expected.png: Removed.
  • platform/efl/svg/text: Removed.
  • platform/efl/svg/text/append-text-node-to-tspan-expected.png: Removed.
  • platform/efl/svg/text/bidi-embedded-direction-expected.png: Removed.
  • platform/efl/svg/text/bidi-reorder-value-lists-expected.png: Removed.
  • platform/efl/svg/text/bidi-text-anchor-direction-expected.png: Removed.
  • platform/efl/svg/text/bidi-text-query-expected.png: Removed.
  • platform/efl/svg/text/bidi-tspans-expected.png: Removed.
  • platform/efl/svg/text/ems-display-none-expected.png: Removed.
  • platform/efl/svg/text/exs-display-none-expected.png: Removed.
  • platform/efl/svg/text/font-size-below-point-five-2-expected.png: Removed.
  • platform/efl/svg/text/font-size-below-point-five-2-expected.txt: Removed.
  • platform/efl/svg/text/font-size-below-point-five-expected.png: Removed.
  • platform/efl/svg/text/foreignObject-repaint-expected.png: Removed.
  • platform/efl/svg/text/foreignObject-repaint-expected.txt: Removed.
  • platform/efl/svg/text/foreignObject-text-clipping-bug-expected.png: Removed.
  • platform/efl/svg/text/foreignObject-text-clipping-bug-expected.txt: Removed.
  • platform/efl/svg/text/kerning-expected.png: Removed.
  • platform/efl/svg/text/kerning-expected.txt: Removed.
  • platform/efl/svg/text/modify-text-node-in-tspan-expected.png: Removed.
  • platform/efl/svg/text/multichar-glyph-expected.png: Removed.
  • platform/efl/svg/text/multichar-glyph-expected.txt: Removed.
  • platform/efl/svg/text/remove-text-node-from-tspan-expected.png: Removed.
  • platform/efl/svg/text/remove-tspan-from-text-expected.png: Removed.
  • platform/efl/svg/text/scaled-font-expected.png: Removed.
  • platform/efl/svg/text/scaling-font-with-geometric-precision-expected.png: Removed.
  • platform/efl/svg/text/select-textLength-spacing-squeeze-1-expected.png: Removed.
  • platform/efl/svg/text/select-textLength-spacing-squeeze-2-expected.png: Removed.
  • platform/efl/svg/text/select-textLength-spacing-squeeze-3-expected.png: Removed.
  • platform/efl/svg/text/select-textLength-spacing-squeeze-4-expected.png: Removed.
  • platform/efl/svg/text/select-textLength-spacing-stretch-1-expected.png: Removed.
  • platform/efl/svg/text/select-textLength-spacing-stretch-2-expected.png: Removed.
  • platform/efl/svg/text/select-textLength-spacing-stretch-3-expected.png: Removed.
  • platform/efl/svg/text/select-textLength-spacing-stretch-4-expected.png: Removed.
  • platform/efl/svg/text/select-textLength-spacingAndGlyphs-squeeze-1-expected.png: Removed.
  • platform/efl/svg/text/select-textLength-spacingAndGlyphs-squeeze-2-expected.png: Removed.
  • platform/efl/svg/text/select-textLength-spacingAndGlyphs-squeeze-3-expected.png: Removed.
  • platform/efl/svg/text/select-textLength-spacingAndGlyphs-squeeze-4-expected.png: Removed.
  • platform/efl/svg/text/select-textLength-spacingAndGlyphs-stretch-1-expected.png: Removed.
  • platform/efl/svg/text/select-textLength-spacingAndGlyphs-stretch-2-expected.png: Removed.
  • platform/efl/svg/text/select-textLength-spacingAndGlyphs-stretch-3-expected.png: Removed.
  • platform/efl/svg/text/select-textLength-spacingAndGlyphs-stretch-4-expected.png: Removed.
  • platform/efl/svg/text/select-x-list-1-expected.png: Removed.
  • platform/efl/svg/text/select-x-list-2-expected.png: Removed.
  • platform/efl/svg/text/select-x-list-3-expected.png: Removed.
  • platform/efl/svg/text/select-x-list-4-expected.png: Removed.
  • platform/efl/svg/text/select-x-list-with-tspans-1-expected.png: Removed.
  • platform/efl/svg/text/select-x-list-with-tspans-2-expected.png: Removed.
  • platform/efl/svg/text/select-x-list-with-tspans-3-expected.png: Removed.
  • platform/efl/svg/text/select-x-list-with-tspans-4-expected.png: Removed.
  • platform/efl/svg/text/selection-background-color-expected.png: Removed.
  • platform/efl/svg/text/selection-background-color-expected.txt: Removed.
  • platform/efl/svg/text/selection-doubleclick-expected.png: Removed.
  • platform/efl/svg/text/selection-styles-expected.png: Removed.
  • platform/efl/svg/text/selection-styles-expected.txt: Removed.
  • platform/efl/svg/text/selection-tripleclick-expected.png: Removed.
  • platform/efl/svg/text/small-fonts-2-expected.png: Removed.
  • platform/efl/svg/text/small-fonts-3-expected.png: Removed.
  • platform/efl/svg/text/small-fonts-expected.png: Removed.
  • platform/efl/svg/text/small-fonts-in-html5-expected.png: Removed.
  • platform/efl/svg/text/small-fonts-in-html5-expected.txt: Removed.
  • platform/efl/svg/text/text-align-01-b-expected.png: Removed.
  • platform/efl/svg/text/text-align-02-b-expected.png: Removed.
  • platform/efl/svg/text/text-align-03-b-expected.png: Removed.
  • platform/efl/svg/text/text-align-04-b-expected.png: Removed.
  • platform/efl/svg/text/text-align-05-b-expected.png: Removed.
  • platform/efl/svg/text/text-align-06-b-expected.png: Removed.
  • platform/efl/svg/text/text-altglyph-01-b-expected.png: Removed.
  • platform/efl/svg/text/text-deco-01-b-expected.png: Removed.
  • platform/efl/svg/text/text-fill-opacity-expected.png: Removed.
  • platform/efl/svg/text/text-fonts-01-t-expected.png: Removed.
  • platform/efl/svg/text/text-fonts-02-t-expected.png: Removed.
  • platform/efl/svg/text/text-gradient-positioning-expected.png: Removed.
  • platform/efl/svg/text/text-hkern-on-vertical-text-expected.png: Removed.
  • platform/efl/svg/text/text-intro-05-t-expected.png: Removed.
  • platform/efl/svg/text/text-midpoint-split-bug-expected.png: Removed.
  • platform/efl/svg/text/text-overflow-ellipsis-svgfont-expected.png: Removed.
  • platform/efl/svg/text/text-overflow-ellipsis-svgfont-expected.txt: Removed.
  • platform/efl/svg/text/text-overflow-ellipsis-svgfont-kerning-ligatures-expected.txt: Removed.
  • platform/efl/svg/text/text-path-01-b-expected.png: Removed.
  • platform/efl/svg/text/text-path-middle-align-expected.png: Removed.
  • platform/efl/svg/text/text-repaint-rects-expected.png: Removed.
  • platform/efl/svg/text/text-repaint-rects-expected.txt: Removed.
  • platform/efl/svg/text/text-rescale-expected.png: Removed.
  • platform/efl/svg/text/text-rescale-expected.txt: Removed.
  • platform/efl/svg/text/text-spacing-01-b-expected.png: Removed.
  • platform/efl/svg/text/text-spacing-01-b-expected.txt: Removed.
  • platform/efl/svg/text/text-text-01-b-expected.png: Removed.
  • platform/efl/svg/text/text-text-03-b-expected.png: Removed.
  • platform/efl/svg/text/text-text-04-t-expected.png: Removed.
  • platform/efl/svg/text/text-text-05-t-expected.png: Removed.
  • platform/efl/svg/text/text-text-06-t-expected.png: Removed.
  • platform/efl/svg/text/text-text-07-t-expected.png: Removed.
  • platform/efl/svg/text/text-text-08-b-expected.png: Removed.
  • platform/efl/svg/text/text-tref-01-b-expected.png: Removed.
  • platform/efl/svg/text/text-tselect-01-b-expected.png: Removed.
  • platform/efl/svg/text/text-tselect-02-f-expected.png: Removed.
  • platform/efl/svg/text/text-tspan-01-b-expected.png: Removed.
  • platform/efl/svg/text/text-viewbox-rescale-expected.png: Removed.
  • platform/efl/svg/text/text-vkern-expected.png: Removed.
  • platform/efl/svg/text/text-ws-01-t-expected.png: Removed.
  • platform/efl/svg/text/text-ws-02-t-expected.png: Removed.
  • platform/efl/svg/text/textPathBoundsBug-expected.png: Removed.
  • platform/efl/svg/text/textPathBoundsBug-expected.txt: Removed.
  • platform/efl/svg/text/tspan-dynamic-positioning-expected.png: Removed.
  • platform/efl/svg/transforms: Removed.
  • platform/efl/svg/transforms/animated-path-inside-transformed-html-expected.png: Removed.
  • platform/efl/svg/transforms/animated-path-inside-transformed-html-expected.txt: Removed.
  • platform/efl/svg/transforms/svg-css-transforms-clip-path-expected.png: Removed.
  • platform/efl/svg/transforms/svg-css-transforms-clip-path-expected.txt: Removed.
  • platform/efl/svg/transforms/svg-css-transforms-expected.png: Removed.
  • platform/efl/svg/transforms/svg-css-transforms-expected.txt: Removed.
  • platform/efl/svg/transforms/text-with-mask-with-svg-transform-expected.png: Removed.
  • platform/efl/svg/transforms/text-with-pattern-inside-transformed-html-expected.png: Removed.
  • platform/efl/svg/transforms/text-with-pattern-inside-transformed-html-expected.txt: Removed.
  • platform/efl/svg/transforms/text-with-pattern-with-svg-transform-expected.png: Removed.
  • platform/efl/svg/wicd: Removed.
  • platform/efl/svg/wicd/rightsizing-grid-expected.png: Removed.
  • platform/efl/svg/wicd/rightsizing-grid-expected.txt: Removed.
  • platform/efl/svg/wicd/sizing-flakiness-expected.png: Removed.
  • platform/efl/svg/wicd/test-rightsizing-a-expected.png: Removed.
  • platform/efl/svg/wicd/test-rightsizing-a-expected.txt: Removed.
  • platform/efl/svg/wicd/test-rightsizing-b-expected.png: Removed.
  • platform/efl/svg/wicd/test-rightsizing-b-expected.txt: Removed.
  • platform/efl/svg/wicd/test-scalable-background-image1-expected.png: Removed.
  • platform/efl/svg/wicd/test-scalable-background-image1-expected.txt: Removed.
  • platform/efl/svg/wicd/test-scalable-background-image2-expected.png: Removed.
  • platform/efl/svg/wicd/test-scalable-background-image2-expected.txt: Removed.
  • platform/efl/svg/zoom: Removed.
  • platform/efl/svg/zoom/page: Removed.
  • platform/efl/svg/zoom/page/absolute-sized-document-no-scrollbars-expected.png: Removed.
  • platform/efl/svg/zoom/page/absolute-sized-document-scrollbars-expected.png: Removed.
  • platform/efl/svg/zoom/page/relative-sized-document-scrollbars-expected.png: Removed.
  • platform/efl/svg/zoom/page/zoom-background-image-tiled-expected.png: Removed.
  • platform/efl/svg/zoom/page/zoom-background-images-expected.png: Removed.
  • platform/efl/svg/zoom/page/zoom-coords-viewattr-01-b-expected.png: Removed.
  • platform/efl/svg/zoom/page/zoom-foreignObject-expected.png: Removed.
  • platform/efl/svg/zoom/page/zoom-foreignObject-expected.txt: Removed.
  • platform/efl/svg/zoom/page/zoom-hixie-mixed-008-expected.png: Removed.
  • platform/efl/svg/zoom/page/zoom-hixie-mixed-008-expected.txt: Removed.
  • platform/efl/svg/zoom/page/zoom-hixie-mixed-009-expected.png: Removed.
  • platform/efl/svg/zoom/page/zoom-hixie-mixed-009-expected.txt: Removed.
  • platform/efl/svg/zoom/page/zoom-hixie-rendering-model-004-expected.png: Removed.
  • platform/efl/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png: Removed.
  • platform/efl/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.txt: Removed.
  • platform/efl/svg/zoom/page/zoom-mask-with-percentages-expected.png: Removed.
  • platform/efl/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: Removed.
  • platform/efl/svg/zoom/page/zoom-svg-as-background-with-relative-size-expected.png: Removed.
  • platform/efl/svg/zoom/page/zoom-svg-as-object-expected.png: Removed.
  • platform/efl/svg/zoom/page/zoom-svg-as-relative-image-expected.png: Removed.
  • platform/efl/svg/zoom/page/zoom-svg-as-relative-image-expected.txt: Removed.
  • platform/efl/svg/zoom/page/zoom-svg-float-border-padding-expected.png: Removed.
  • platform/efl/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.png: Removed.
  • platform/efl/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.txt: Removed.
  • platform/efl/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png: Removed.
  • platform/efl/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.txt: Removed.
  • platform/efl/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.png: Removed.
  • platform/efl/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.txt: Removed.
  • platform/efl/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.png: Removed.
  • platform/efl/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.txt: Removed.
  • platform/efl/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.png: Removed.
  • platform/efl/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.txt: Removed.
  • platform/efl/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: Removed.
  • platform/efl/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.txt: Removed.
  • platform/efl/svg/zoom/text: Removed.
  • platform/efl/svg/zoom/text/absolute-sized-document-no-scrollbars-expected.png: Removed.
  • platform/efl/svg/zoom/text/absolute-sized-document-scrollbars-expected.png: Removed.
  • platform/efl/svg/zoom/text/relative-sized-document-scrollbars-expected.png: Removed.
  • platform/efl/svg/zoom/text/zoom-coords-viewattr-01-b-expected.png: Removed.
  • platform/efl/svg/zoom/text/zoom-foreignObject-expected.png: Removed.
  • platform/efl/svg/zoom/text/zoom-foreignObject-expected.txt: Removed.
  • platform/efl/svg/zoom/text/zoom-hixie-mixed-008-expected.png: Removed.
  • platform/efl/svg/zoom/text/zoom-hixie-mixed-008-expected.txt: Removed.
  • platform/efl/svg/zoom/text/zoom-hixie-mixed-009-expected.png: Removed.
  • platform/efl/svg/zoom/text/zoom-hixie-mixed-009-expected.txt: Removed.
  • platform/efl/svg/zoom/text/zoom-hixie-rendering-model-004-expected.png: Removed.
  • platform/efl/svg/zoom/text/zoom-svg-float-border-padding-expected.png: Removed.
  • platform/efl/svg/zoom/text/zoom-svg-float-border-padding-expected.txt: Removed.
  • platform/efl/tables: Removed.
  • platform/efl/tables/layering: Removed.
  • platform/efl/tables/layering/paint-test-layering-1-expected.png: Removed.
  • platform/efl/tables/layering/paint-test-layering-1-expected.txt: Removed.
  • platform/efl/tables/layering/paint-test-layering-2-expected.png: Removed.
  • platform/efl/tables/layering/paint-test-layering-2-expected.txt: Removed.
  • platform/efl/tables/mozilla: Removed.
  • platform/efl/tables/mozilla/bugs: Removed.
  • platform/efl/tables/mozilla/bugs/45621-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/45621-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/adforce_imgis_com-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug10009-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug10009-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug100334-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug100334-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug10036-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug10036-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug10039-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug10039-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug101201-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug101201-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug101674-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug101674-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug102145-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug102145-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug102145-3-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug102145-4-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug10269-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug10269-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug10269-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug10296-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug10296-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug10296-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug103533-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug1055-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug1055-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug10565-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug10565-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug106158-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug106158-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug106158-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug106158-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug10633-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug10633-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug1067-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug1067-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug1067-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug1067-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug106795-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug106795-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug106816-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug106816-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug108340-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug108340-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug109043-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug109043-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug11026-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug11026-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug110566-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug110566-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug11321-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug113235-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug113235-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug113235-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug113235-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug113235-3-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug113235-3-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug113424-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug113424-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug11384q-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug11384q-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug11384s-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug11384s-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug1163-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug1163-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug1188-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug1188-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug11944-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug11944-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug119786-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug119786-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug12008-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug12008-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug120107-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug120107-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug120364-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug120364-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug1220-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug1220-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug1224-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug1224-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug12268-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug12268-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug12384-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug12384-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug123862-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug123862-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug1261-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug1261-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug126742-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug126742-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug12709-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug12709-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug1271-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug1271-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug127267-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug127267-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug128229-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug128229-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug12908-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug12908-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug12908-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug12910-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug12910-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug12910-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug12910-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug1296-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug1296-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug1302-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug1302-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug131020-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug131020-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug131020-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug131020_iframe-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug131020_iframe-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug13105-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug13118-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug13118-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug13169-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug13169-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug1318-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug1318-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug13196-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug13196-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug133756-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug133756-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug133756-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug133756-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug133948-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug133948-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug13484-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug13484-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug13526-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug13526-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug137388-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug137388-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug137388-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug137388-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug137388-3-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug137388-3-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug138725-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug138725-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug139524-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug139524-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug139524-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug139524-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug139524-3-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug139524-3-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug139524-4-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug139524-4-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug14159-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug14159-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug14159-3-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug1430-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug1430-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug14323-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug14323-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug145572-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug145572-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug1474-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug1474-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug149275-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug149275-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug149275-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug149275-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug14929-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug14929-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug15247-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug15247-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug154780-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug154780-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug15544-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug15544-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug157890-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug157890-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug159108-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug159108-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug15933-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug15933-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug16012-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug16012-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug16252-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug16252-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug17130-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug17130-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug17130-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug17130-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug17138-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug17138-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug17168-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug17168-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug175455-4-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug175455-4-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug17548-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug17548-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug17587-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug17587-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug1800-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug1800-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug1802-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug1802-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug1802s-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug1802s-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug1809-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug1809-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug1818-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug1818-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug1818-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug1818-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug1818-3-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug1818-4-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug1818-4-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug1818-5-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug1818-5-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug1828-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug1828-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug18359-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug18359-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug18440-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug18440-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug18558-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug18558-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug18664-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug18664-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug18955-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug18955-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug19061-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug19061-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug19061-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug19061-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug19356-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug19356-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug194024-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug194024-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug19599-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug19599-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2050-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2050-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug20579-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug20579-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2065-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2065-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug20804-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug20804-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2123-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2123-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug21299-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug21299-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug215629-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug215629-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug21918-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug21918-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug219693-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug219693-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug219693-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug219693-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug22019-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug22019-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug220536-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug220536-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug221784-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug221784-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug221784-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug221784-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug222336-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug22246-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug22246-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug22246-2a-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug22246-2a-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug22246-3-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug22246-3-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug22246-3a-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug22246-3a-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug222846-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug222846-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug22513-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug22513-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2267-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2267-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug227123-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug227123-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2296-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2296-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug23072-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug23151-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug23151-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug23235-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug23235-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug23299-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug23299-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug23994-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug24200-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug24200-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug24503-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug24503-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug24627-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug24627-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug24661-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug24661-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2469-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2469-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2479-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2479-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2479-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2479-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2479-3-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2479-3-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2479-4-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2479-4-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug24880-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug24880-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug25004-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug25004-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug25074-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug25074-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug25086-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug25086-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2509-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2509-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2516-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2516-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug25367-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug25367-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug25663-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug25663-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2585-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2585-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug26178-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug26178-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug26553-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug26553-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2684-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2684-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug269566-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug27038-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug27038-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug27038-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug27038-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug27038-3-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug27038-3-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug275625-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2757-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2757-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2763-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2763-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug277062-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2773-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2773-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug278266-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug278266-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug278385-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug278385-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug27993-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug27993-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug28341-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug28341-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2886-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2886-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2886-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2886-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug28928-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug28928-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug28933-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug29058-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug29058-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug29058-3-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug29058-3-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug29157-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug29157-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug29314-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug29314-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug29326-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug29326-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug29429-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug29429-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2947-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2947-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2954-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2954-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2962-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2962-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2973-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2973-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2981-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2981-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2981-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2981-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug2997-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug2997-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug30273-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug30273-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug30332-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug30332-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug30332-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug30332-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug3037-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug3037-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug30418-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug30418-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug30559-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug30559-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug30692-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug30692-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug30985-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug30985-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug3103-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug3103-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug3191-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug3191-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug32205-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug32205-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug32205-3-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug32205-3-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug32205-5-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug32205-5-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug32447-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug3260-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug3260-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug3263-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug3263-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug32841-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug32841-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug3309-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug3309-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug3309-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug3309-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug33137-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug33137-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug33855-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug33855-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug34176-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug34176-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug34538-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug3454-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug3454-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug35662-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug35662-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug3681-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug3681-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug3681-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug3681-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug3718-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug3718-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug38916-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug38916-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug39209-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug39209-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug3977-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug3977-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug40828-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug40828-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug4093-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug4093-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug41890-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug41890-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug42187-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug42187-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug42443-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug42443-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug4284-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug4284-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug43039-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug43039-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug43204-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug43204-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug4382-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug4382-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug4385-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug4385-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug43854-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug43854-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug43854-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug43854-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug4427-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug4427-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug4429-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug4429-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug44505-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug44505-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug44523-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug44523-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug4501-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug4501-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug45055-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug45055-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug45055-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug45055-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug4520-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug4520-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug4523-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug4523-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug4527-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug4527-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug45350-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug45350-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug45486-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug45486-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug4576-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug4576-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug46268-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug46268-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug46268-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug46268-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug46268-3-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug46268-3-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug46268-5-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug46268-5-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug46268-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug46268-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug46368-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug46368-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug46368-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug46368-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug46480-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug46480-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug46480-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug46480-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug46623-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug46623-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug46623-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug46623-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug46924-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug46924-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug46944-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug46944-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug4739-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug4739-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug47432-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug47432-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug48028-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug48028-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug48028-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug48028-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug4803-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug4803-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug4849-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug4849-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug4849-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug4849-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug48827-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug48827-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug50695-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug50695-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug50695-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug51037-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug51037-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug51140-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug51140-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug51727-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug51727-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug5188-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug5188-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug52505-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug52505-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug52506-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug52506-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug53690-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug53690-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug53690-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug53690-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug53891-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug53891-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug54450-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug54450-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug5538-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug5538-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug55527-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug55527-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug55545-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug55545-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug55694-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug55694-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug55789-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug55789-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug56201-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug56201-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug56405-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug56563-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug56563-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug57300-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug57300-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug57378-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug57378-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug57828-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug57828-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug57828-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug57828-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug5797-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug5797-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug5798-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug5798-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug5799-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug5799-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug5835-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug5835-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug5838-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug5838-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug58402-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug58402-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug59354-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug59354-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug60013-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug60013-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug60749-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug60749-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug60804-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug60804-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug60807-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug60807-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug60992-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug60992-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug6184-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug6184-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug625-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug625-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug6304-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug6304-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug63785-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug63785-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug6404-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug6404-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug641-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug641-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug641-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug647-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug647-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug650-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug650-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug6674-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug6674-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug67864-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug67864-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug67915-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug67915-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug68912-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug68912-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug68998-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug68998-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug69187-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug69187-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug69382-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug69382-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug69382-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug69382-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug709-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug709-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug7112-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug7112-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug7112-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug7112-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug7121-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug7121-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug72359-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug72359-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug727-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug727-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug73321-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug73321-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug7342-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug7342-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug7471-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug7471-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug75250-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug7714-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug7714-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug78162-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug78162-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug8032-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug8032-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug80762-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug80762-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug81934-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug81934-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug82946-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug82946-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug82946-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug82946-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug8361-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug83786-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug83786-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug8381-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug8381-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug8411-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug8411-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug86220-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug86220-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug86708-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug86708-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug88035-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug88035-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug88035-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug88035-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug88524-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug88524-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug8858-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug8858-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug8950-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug8950-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug9072-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug9072-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug9123-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug9123-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug9123-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug9123-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug92143-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug92143-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug92647-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug92647-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug9271-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug9271-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug9271-2-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug9271-2-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug92868-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug92868-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug93363-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug93363-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug963-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug963-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug96334-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug96334-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug96343-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug96343-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug965-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug965-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug97138-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug97138-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug97383-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug97383-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug98196-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug98196-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug9879-1-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug9879-1-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug99923-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug99923-expected.txt: Removed.
  • platform/efl/tables/mozilla/bugs/bug99948-expected.png: Removed.
  • platform/efl/tables/mozilla/bugs/bug99948-expected.txt: Removed.
  • platform/efl/tables/mozilla/collapsing_borders: Removed.
  • platform/efl/tables/mozilla/collapsing_borders/bug127040-expected.png: Removed.
  • platform/efl/tables/mozilla/collapsing_borders/bug127040-expected.txt: Removed.
  • platform/efl/tables/mozilla/collapsing_borders/bug41262-3-expected.png: Removed.
  • platform/efl/tables/mozilla/collapsing_borders/bug41262-3-expected.txt: Removed.
  • platform/efl/tables/mozilla/collapsing_borders/bug41262-4-expected.png: Removed.
  • platform/efl/tables/mozilla/collapsing_borders/bug41262-4-expected.txt: Removed.
  • platform/efl/tables/mozilla/core: Removed.
  • platform/efl/tables/mozilla/core/bloomberg-expected.png: Removed.
  • platform/efl/tables/mozilla/core/bloomberg-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/borders-expected.png: Removed.
  • platform/efl/tables/mozilla/core/borders-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/box_sizing-expected.png: Removed.
  • platform/efl/tables/mozilla/core/box_sizing-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/captions-expected.png: Removed.
  • platform/efl/tables/mozilla/core/captions-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/cell_heights-expected.png: Removed.
  • platform/efl/tables/mozilla/core/cell_heights-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/col_span-expected.png: Removed.
  • platform/efl/tables/mozilla/core/col_span-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/col_widths_auto_auto-expected.png: Removed.
  • platform/efl/tables/mozilla/core/col_widths_auto_auto-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/col_widths_auto_autoFix-expected.png: Removed.
  • platform/efl/tables/mozilla/core/col_widths_auto_autoFix-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/col_widths_auto_autoFixPer-expected.png: Removed.
  • platform/efl/tables/mozilla/core/col_widths_auto_autoFixPer-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/col_widths_auto_autoPer-expected.png: Removed.
  • platform/efl/tables/mozilla/core/col_widths_auto_autoPer-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/col_widths_auto_fix-expected.png: Removed.
  • platform/efl/tables/mozilla/core/col_widths_auto_fix-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/col_widths_auto_fixPer-expected.png: Removed.
  • platform/efl/tables/mozilla/core/col_widths_auto_fixPer-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/col_widths_auto_per-expected.png: Removed.
  • platform/efl/tables/mozilla/core/col_widths_auto_per-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/col_widths_fix_auto-expected.png: Removed.
  • platform/efl/tables/mozilla/core/col_widths_fix_auto-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/col_widths_fix_autoFix-expected.png: Removed.
  • platform/efl/tables/mozilla/core/col_widths_fix_autoFix-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/col_widths_fix_autoPer-expected.png: Removed.
  • platform/efl/tables/mozilla/core/col_widths_fix_autoPer-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/col_widths_fix_fix-expected.png: Removed.
  • platform/efl/tables/mozilla/core/col_widths_fix_fix-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/col_widths_fix_fixPer-expected.png: Removed.
  • platform/efl/tables/mozilla/core/col_widths_fix_fixPer-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/col_widths_fix_per-expected.png: Removed.
  • platform/efl/tables/mozilla/core/col_widths_fix_per-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/margins-expected.png: Removed.
  • platform/efl/tables/mozilla/core/margins-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/misc-expected.png: Removed.
  • platform/efl/tables/mozilla/core/misc-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/nested1-expected.png: Removed.
  • platform/efl/tables/mozilla/core/nested1-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/one_row-expected.png: Removed.
  • platform/efl/tables/mozilla/core/one_row-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/row_span-expected.png: Removed.
  • platform/efl/tables/mozilla/core/row_span-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/table_frame-expected.png: Removed.
  • platform/efl/tables/mozilla/core/table_frame-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/table_heights-expected.png: Removed.
  • platform/efl/tables/mozilla/core/table_heights-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/table_rules-expected.png: Removed.
  • platform/efl/tables/mozilla/core/table_rules-expected.txt: Removed.
  • platform/efl/tables/mozilla/core/table_widths-expected.png: Removed.
  • platform/efl/tables/mozilla/core/table_widths-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom: Removed.
  • platform/efl/tables/mozilla/dom/appendCol2-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/appendCol2-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/appendRowsExpand1-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/appendRowsExpand1-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/appendTbodyExpand1-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/appendTbodyExpand1-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/deleteCellsRebuild1-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/deleteCellsRebuild1-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/deleteCellsShrink1-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/deleteCellsShrink1-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/deleteCellsShrink2-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/deleteCellsShrink2-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/deleteCol1-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/deleteCol1-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/deleteCol2-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/deleteCol2-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/deleteCol3-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/deleteCol3-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/deleteColGroup1-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/deleteColGroup1-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/deleteColGroup2-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/deleteColGroup2-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/deleteRowsRebuild1-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/deleteRowsRebuild1-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/deleteRowsShrink1-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/deleteRowsShrink1-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/deleteTbodyExpand1-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/deleteTbodyExpand1-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/deleteTbodyRebuild1-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/deleteTbodyRebuild1-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/insertCellsExpand1-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/insertCellsExpand1-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/insertCellsExpand2-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/insertCellsExpand2-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/insertCellsRebuild1-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/insertCellsRebuild1-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/insertCellsRebuild2-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/insertCellsRebuild2-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/insertColGroups1-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/insertColGroups1-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/insertColGroups2-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/insertColGroups2-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/insertCols1-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/insertCols1-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/insertCols2-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/insertCols2-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/insertCols3-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/insertCols3-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/insertCols4-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/insertCols4-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/insertCols5-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/insertCols5-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/insertRowsExpand1-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/insertRowsExpand1-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/insertRowsRebuild1-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/insertRowsRebuild1-expected.txt: Removed.
  • platform/efl/tables/mozilla/dom/tableDom-expected.png: Removed.
  • platform/efl/tables/mozilla/dom/tableDom-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin: Removed.
  • platform/efl/tables/mozilla/marvin/backgr_index-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/backgr_index-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/backgr_layers-opacity-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/backgr_layers-opacity-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/backgr_position-table-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/backgr_position-table-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/backgr_simple-table-cell-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/backgr_simple-table-cell-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/backgr_simple-table-column-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/backgr_simple-table-column-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/backgr_simple-table-column-group-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/backgr_simple-table-column-group-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/backgr_simple-table-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/backgr_simple-table-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/backgr_simple-table-row-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/backgr_simple-table-row-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/backgr_simple-table-row-group-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/backgr_simple-table-row-group-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/body_col-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/body_col-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/body_tbody-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/body_tbody-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/body_tfoot-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/body_tfoot-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/body_thead-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/body_thead-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/col_span-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/col_span-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/colgroup_align_center-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/colgroup_align_center-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/colgroup_align_justify-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/colgroup_align_justify-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/colgroup_align_left-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/colgroup_align_left-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/colgroup_align_right-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/colgroup_align_right-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/colgroup_span-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/colgroup_span-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/colgroup_valign_baseline-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/colgroup_valign_baseline-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/colgroup_valign_bottom-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/colgroup_valign_bottom-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/colgroup_valign_middle-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/colgroup_valign_middle-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/colgroup_valign_top-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/colgroup_valign_top-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/colgroup_width_pct-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/colgroup_width_pct-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/colgroup_width_px-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/colgroup_width_px-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/table_frame_border-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/table_frame_border-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/table_frame_box-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/table_frame_box-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/table_overflow_hidden_td-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/table_overflow_hidden_td-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/table_overflow_td_dynamic_deactivate-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/table_overflow_td_dynamic_deactivate-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/table_row_align_center-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/table_row_align_center-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/table_row_align_left-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/table_row_align_left-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/table_row_align_right-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/table_row_align_right-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/table_rules_all-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/table_rules_all-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/table_rules_groups-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/table_rules_groups-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/table_rules_none-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/table_rules_none-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_align_center-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_align_center-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_align_left-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_align_left-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_align_right-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_align_right-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_aqua-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_aqua-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_aqua_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_aqua_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_black-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_black-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_black_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_black_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_blue-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_blue-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_blue_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_blue_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_fuchsia-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_fuchsia-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_fuchsia_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_fuchsia_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_gray-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_gray-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_gray_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_gray_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_green-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_green-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_green_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_green_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_lime-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_lime-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_lime_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_lime_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_maroon-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_maroon-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_maroon_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_maroon_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_navy-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_navy-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_navy_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_navy_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_olive-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_olive-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_olive_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_olive_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_purple-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_purple-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_purple_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_purple_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_red-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_red-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_red_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_red_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_silver-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_silver-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_silver_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_silver_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_teal-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_teal-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_teal_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_teal_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_white-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_white-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_white_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_white_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_yellow-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_yellow-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_yellow_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_yellow_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_border_0-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_border_0-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_border_1-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_border_1-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_border_2-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_border_2-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_border_3-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_border_3-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_caption_align_bot-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_caption_align_bot-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_caption_align_top-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_caption_align_top-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_cellpadding-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_cellpadding-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_cellpadding_pct-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_cellpadding_pct-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_cellspacing-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_cellspacing-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_class-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_class-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_default-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_default-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_id-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_id-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_row_th_nowrap-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_row_th_nowrap-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_style-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_style-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_td_align_center-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_td_align_center-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_td_align_left-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_td_align_left-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_td_align_right-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_td_align_right-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_td_colspan-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_td_colspan-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_td_height-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_td_height-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_td_nowrap-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_td_nowrap-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_td_rowspan-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_td_rowspan-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_td_width-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_td_width-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_th_align_center-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_th_align_center-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_th_align_left-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_th_align_left-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_th_align_right-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_th_align_right-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_th_colspan-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_th_colspan-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_th_height-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_th_height-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_th_rowspan-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_th_rowspan-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_th_width-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_th_width-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_width_percent-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_width_percent-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tables_width_px-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tables_width_px-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tbody_align_center-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tbody_align_center-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tbody_align_char-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tbody_align_char-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tbody_align_justify-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tbody_align_justify-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tbody_align_left-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tbody_align_left-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tbody_align_right-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tbody_align_right-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tbody_char-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tbody_char-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tbody_valign_baseline-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tbody_valign_baseline-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tbody_valign_bottom-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tbody_valign_bottom-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tbody_valign_middle-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tbody_valign_middle-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tbody_valign_top-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tbody_valign_top-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/td_valign_baseline-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/td_valign_baseline-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/td_valign_bottom-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/td_valign_bottom-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/td_valign_middle-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/td_valign_middle-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/td_valign_top-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/td_valign_top-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tfoot_align_center-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tfoot_align_center-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tfoot_align_char-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tfoot_align_char-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tfoot_align_justify-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tfoot_align_justify-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tfoot_align_left-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tfoot_align_left-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tfoot_align_right-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tfoot_align_right-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tfoot_char-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tfoot_char-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tfoot_valign_baseline-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tfoot_valign_baseline-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tfoot_valign_bottom-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tfoot_valign_bottom-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tfoot_valign_middle-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tfoot_valign_middle-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tfoot_valign_top-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tfoot_valign_top-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/th_valign_baseline-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/th_valign_baseline-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/th_valign_bottom-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/th_valign_bottom-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/th_valign_middle-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/th_valign_middle-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/th_valign_top-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/th_valign_top-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/thead_align_center-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/thead_align_center-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/thead_align_char-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/thead_align_char-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/thead_align_justify-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/thead_align_justify-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/thead_align_left-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/thead_align_left-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/thead_align_right-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/thead_align_right-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/thead_char-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/thead_char-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/thead_valign_baseline-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/thead_valign_baseline-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/thead_valign_bottom-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/thead_valign_bottom-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/thead_valign_middle-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/thead_valign_middle-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/thead_valign_top-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/thead_valign_top-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_aqua_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_aqua_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_black-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_black-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_black_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_black_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_blue-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_blue-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_blue_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_blue_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_fuchsia-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_fuchsia-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_fuchsia_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_fuchsia_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_gray-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_gray-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_gray_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_gray_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_green-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_green-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_green_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_green_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_lime-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_lime-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_lime_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_lime_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_maroon-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_maroon-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_maroon_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_maroon_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_navy-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_navy-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_navy_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_navy_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_olive-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_olive-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_olive_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_olive_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_purple-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_purple-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_purple_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_purple_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_red-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_red-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_red_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_red_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_silver-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_silver-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_silver_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_silver_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_teal-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_teal-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_teal_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_teal_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_white-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_white-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_white_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_white_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_yellow-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_yellow-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_yellow_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_yellow_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_valign_baseline-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_valign_baseline-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_valign_bottom-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_valign_bottom-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_valign_middle-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_valign_middle-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/tr_valign_top-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/tr_valign_top-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_caption_align_bottom-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_caption_align_bottom-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_caption_align_top-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_caption_align_top-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_caption_class-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_caption_class-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_caption_id-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_caption_id-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_caption_style-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_caption_style-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_align_center-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_align_center-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_align_char-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_align_char-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_align_justify-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_align_justify-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_align_left-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_align_left-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_align_right-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_align_right-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_span-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_span-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_valign_baseline-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_valign_baseline-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_valign_bottom-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_valign_bottom-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_valign_middle-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_valign_middle-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_valign_top-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_valign_top-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_width_pct-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_width_pct-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_width_px-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_width_px-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_width_rel-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_col_width_rel-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_colgroup_align_center-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_colgroup_align_center-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_colgroup_align_char-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_colgroup_align_char-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_colgroup_align_justify-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_colgroup_align_justify-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_colgroup_align_left-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_colgroup_align_left-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_colgroup_align_right-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_colgroup_align_right-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_colgroup_span-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_colgroup_span-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_colgroup_valign_middle-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_colgroup_valign_middle-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_colgroup_valign_top-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_colgroup_valign_top-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_colgroup_width_pct-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_colgroup_width_pct-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_colgroup_width_rel-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_colgroup_width_rel-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_table-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_table-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_align_center-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_align_center-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_align_left-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_align_left-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_align_right-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_align_right-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_bgcolor_name-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_bgcolor_name-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_border-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_border-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_border_none-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_border_none-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_border_px-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_border_px-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_cellpadding-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_cellpadding-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_cellpadding_pct-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_cellpadding_pct-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_cellspacing-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_cellspacing-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_cellspacing_pct-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_cellspacing_pct-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_class-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_class-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_frame_void-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_frame_void-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_id-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_id-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_rules_groups-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_rules_groups-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_rules_none-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_rules_none-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_style-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_style-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_width_pct-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_width_pct-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_width_px-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_table_width_px-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tbody_align_center-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tbody_align_center-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tbody_align_char-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tbody_align_char-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tbody_align_justify-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tbody_align_justify-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tbody_align_left-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tbody_align_left-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tbody_align_right-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tbody_align_right-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tbody_class-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tbody_class-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tbody_id-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tbody_id-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tbody_style-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tbody_style-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tbody_valign_baseline-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tbody_valign_baseline-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tbody_valign_bottom-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tbody_valign_bottom-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tbody_valign_middle-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tbody_valign_middle-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tbody_valign_top-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tbody_valign_top-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_align_center-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_align_center-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_align_char-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_align_char-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_align_justify-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_align_justify-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_align_left-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_align_left-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_align_right-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_align_right-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_bgcolor_name-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_bgcolor_name-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_class-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_class-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_colspan-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_colspan-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_height-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_height-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_id-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_id-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_nowrap-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_nowrap-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_rowspan-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_rowspan-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_style-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_style-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_valign_baseline-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_valign_baseline-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_valign_bottom-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_valign_bottom-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_valign_middle-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_valign_middle-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_valign_top-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_valign_top-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_width-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_td_width-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tfoot_align_center-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tfoot_align_center-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tfoot_align_char-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tfoot_align_char-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tfoot_align_justify-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tfoot_align_justify-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tfoot_align_left-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tfoot_align_left-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tfoot_align_right-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tfoot_align_right-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tfoot_class-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tfoot_class-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tfoot_id-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tfoot_id-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tfoot_style-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tfoot_style-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tfoot_valign_middle-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tfoot_valign_middle-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tfoot_valign_top-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tfoot_valign_top-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_align_center-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_align_center-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_align_char-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_align_char-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_align_justify-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_align_justify-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_align_left-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_align_left-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_align_right-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_align_right-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_bgcolor_name-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_bgcolor_name-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_class-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_class-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_colspan-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_colspan-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_height-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_height-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_id-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_id-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_nowrap-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_nowrap-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_rowspan-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_rowspan-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_style-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_style-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_valign_baseline-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_valign_baseline-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_valign_bottom-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_valign_bottom-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_valign_middle-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_valign_middle-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_valign_top-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_valign_top-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_width-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_th_width-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_thead_align_center-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_thead_align_center-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_thead_align_char-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_thead_align_char-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_thead_align_justify-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_thead_align_justify-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_thead_align_left-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_thead_align_left-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_thead_align_right-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_thead_align_right-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_thead_class-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_thead_class-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_thead_id-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_thead_id-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_thead_style-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_thead_style-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_thead_valign_baseline-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_thead_valign_baseline-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_thead_valign_bottom-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_thead_valign_bottom-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_thead_valign_middle-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_thead_valign_middle-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_thead_valign_top-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_thead_valign_top-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_align_center-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_align_center-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_align_char-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_align_char-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_align_justify-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_align_justify-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_align_left-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_align_left-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_align_right-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_align_right-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_bgcolor_name-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_bgcolor_name-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_class-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_class-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_id-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_id-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_style-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_style-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_valign_baseline-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_valign_baseline-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_valign_bottom-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_valign_bottom-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_valign_middle-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_valign_middle-expected.txt: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_valign_top-expected.png: Removed.
  • platform/efl/tables/mozilla/marvin/x_tr_valign_top-expected.txt: Removed.
  • platform/efl/tables/mozilla/other: Removed.
  • platform/efl/tables/mozilla/other/body_col-expected.png: Removed.
  • platform/efl/tables/mozilla/other/body_col-expected.txt: Removed.
  • platform/efl/tables/mozilla/other/cell_widths-expected.png: Removed.
  • platform/efl/tables/mozilla/other/cell_widths-expected.txt: Removed.
  • platform/efl/tables/mozilla/other/cellspacing-expected.png: Removed.
  • platform/efl/tables/mozilla/other/cellspacing-expected.txt: Removed.
  • platform/efl/tables/mozilla/other/move_row-expected.png: Removed.
  • platform/efl/tables/mozilla/other/move_row-expected.txt: Removed.
  • platform/efl/tables/mozilla/other/ms-expected.png: Removed.
  • platform/efl/tables/mozilla/other/ms-expected.txt: Removed.
  • platform/efl/tables/mozilla/other/nested2-expected.png: Removed.
  • platform/efl/tables/mozilla/other/nested2-expected.txt: Removed.
  • platform/efl/tables/mozilla/other/nestedTables-expected.png: Removed.
  • platform/efl/tables/mozilla/other/nestedTables-expected.txt: Removed.
  • platform/efl/tables/mozilla/other/padding-expected.png: Removed.
  • platform/efl/tables/mozilla/other/padding-expected.txt: Removed.
  • platform/efl/tables/mozilla/other/slashlogo-expected.png: Removed.
  • platform/efl/tables/mozilla/other/slashlogo-expected.txt: Removed.
  • platform/efl/tables/mozilla/other/test3-expected.png: Removed.
  • platform/efl/tables/mozilla/other/test3-expected.txt: Removed.
  • platform/efl/tables/mozilla/other/test6-expected.png: Removed.
  • platform/efl/tables/mozilla/other/test6-expected.txt: Removed.
  • platform/efl/tables/mozilla/other/wa_table_thtd_rowspan-expected.png: Removed.
  • platform/efl/tables/mozilla/other/wa_table_thtd_rowspan-expected.txt: Removed.
  • platform/efl/tables/mozilla/other/wa_table_tr_align-expected.png: Removed.
  • platform/efl/tables/mozilla/other/wa_table_tr_align-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/97619-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/97619-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug1010-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug1010-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug10140-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug10140-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug101759-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug101759-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug10216-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug10216-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug104898-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug104898-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug1055-2-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug1055-2-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug106336-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug106336-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug106966-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug106966-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug1128-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug1128-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug11331-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug11331-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug1164-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug1164-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug11945-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug11945-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug1262-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug1262-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug128876-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug131020-3-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug131020-3-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug14007-1-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug14007-1-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug14007-2-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug14159-2-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug14159-2-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug14489-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug14489-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug1647-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug1647-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug1725-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug1725-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug17826-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug17826-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug178855-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug18770-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug18770-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug19526-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug19526-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug21518-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug21518-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug220653-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug220653-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug22122-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug22122-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug23847-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug23847-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug24880-1-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug24880-1-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug25707-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug25707-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug27993-2-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug27993-2-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug29058-2-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3105-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3105-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-1-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-1-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-10-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-10-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-11-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-11-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-12-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-12-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-13-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-13-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-14-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-14-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-15-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-15-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-16-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-16-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-17-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-17-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-18-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-18-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-2-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-2-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-3-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-3-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-4-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-4-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-5-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-5-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-6-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-6-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-7-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-7-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-8-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-8-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-9-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-9-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug32205-1-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug32205-1-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug32205-4-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug32205-4-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug33784-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug33784-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug42043-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug42043-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug4294-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug4294-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug45621-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug45621-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug46268-4-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug46268-4-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug47163-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug47163-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug51000-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug51000-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug56024-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug56024-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug58402-2-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug58402-2-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug59252-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug59252-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug61042-1-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug61042-1-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug61042-2-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug61042-2-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug65372-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug65372-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug67915-2-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug67915-2-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug6933-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug6933-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug7113-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug7113-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug7121-2-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug7121-2-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug72393-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug72393-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug7243-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug7243-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug73629-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug73629-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug80762-2-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug80762-2-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug8499-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug8499-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug85016-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug85016-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug89315-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug89315-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug91057-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug91057-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug92647-1-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug92647-1-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug92868_1-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug92868_1-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug9879-1-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug9879-1-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/collapsing_borders: Removed.
  • platform/efl/tables/mozilla_expected_failures/collapsing_borders/bug41262-1-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/collapsing_borders/bug41262-1-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/core: Removed.
  • platform/efl/tables/mozilla_expected_failures/core/backgrounds-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/core/backgrounds-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/core/captions1-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/core/captions1-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/core/captions2-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/core/captions2-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/core/captions3-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/core/captions3-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/core/col_span2-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/core/col_span2-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/core/cols1-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/core/cols1-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/core/columns-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/core/columns-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/core/conflicts-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/core/conflicts-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/core/standards1-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/core/standards1-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/dom: Removed.
  • platform/efl/tables/mozilla_expected_failures/dom/appendCells1-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/dom/appendCells1-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/dom/appendCellsRebuild1-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/dom/appendCellsRebuild1-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/dom/appendCol1-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/dom/appendCol1-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/dom/appendColGroup1-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/dom/appendColGroup1-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/dom/insertTbodyExpand1-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/dom/insertTbodyExpand1-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/dom/insertTbodyRebuild1-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/dom/insertTbodyRebuild1-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_frame_above-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_frame_above-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_frame_below-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_frame_below-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_frame_void-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_frame_void-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_table-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_table-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_hidden_table-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_hidden_table-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_hidden_tbody-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_hidden_tbody-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_hidden_tr-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_hidden_tr-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_align_right-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_align_right-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_dynamic_deactivate-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_dynamic_deactivate-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_bottom-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_bottom-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_middle-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_middle-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_top-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_top-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_colgroup_width_px-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_colgroup_width_px-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/other: Removed.
  • platform/efl/tables/mozilla_expected_failures/other/empty_cells-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/other/empty_cells-expected.txt: Removed.
  • platform/efl/tables/mozilla_expected_failures/other/test4-expected.png: Removed.
  • platform/efl/tables/mozilla_expected_failures/other/test4-expected.txt: Removed.
  • platform/efl/transforms: Removed.
  • platform/efl/transforms/2d: Removed.
  • platform/efl/transforms/2d/compound-transforms-vs-containers-expected.png: Removed.
  • platform/efl/transforms/2d/compound-transforms-vs-containers-expected.txt: Removed.
  • platform/efl/transforms/2d/hindi-rotated-expected.png: Removed.
  • platform/efl/transforms/2d/hindi-rotated-expected.txt: Removed.
  • platform/efl/transforms/2d/transform-borderbox-expected.png: Removed.
  • platform/efl/transforms/2d/transform-borderbox-expected.txt: Removed.
  • platform/efl/transforms/2d/transform-fixed-container-expected.png: Removed.
  • platform/efl/transforms/2d/transform-fixed-container-expected.txt: Removed.
  • platform/efl/transforms/2d/transform-origin-borderbox-expected.png: Removed.
  • platform/efl/transforms/2d/transform-origin-borderbox-expected.txt: Removed.
  • platform/efl/transforms/2d/zoom-menulist-expected.png: Removed.
  • platform/efl/transforms/2d/zoom-menulist-expected.txt: Removed.
  • platform/efl/transforms/3d: Removed.
  • platform/efl/transforms/3d/general: Removed.
  • platform/efl/transforms/3d/general/matrix-with-zoom-3d-expected.png: Removed.
  • platform/efl/transforms/3d/general/perspective-non-layer-expected.png: Removed.
  • platform/efl/transforms/3d/general/perspective-non-layer-expected.txt: Removed.
  • platform/efl/transforms/3d/general/perspective-units-expected.png: Removed.
  • platform/efl/transforms/3d/general/perspective-units-expected.txt: Removed.
  • platform/efl/transforms/3d/general/transform-origin-z-change-expected.png: Removed.
  • platform/efl/transforms/3d/hit-testing: Removed.
  • platform/efl/transforms/3d/hit-testing/backface-hit-test-expected.png: Removed.
  • platform/efl/transforms/3d/hit-testing/backface-hit-test-expected.txt: Removed.
  • platform/efl/transforms/3d/hit-testing/backface-no-transform-hit-test-expected.png: Removed.
  • platform/efl/transforms/3d/hit-testing/backface-no-transform-hit-test-expected.txt: Removed.
  • platform/efl/transforms/3d/point-mapping: Removed.
  • platform/efl/transforms/3d/point-mapping/3d-point-mapping-2-expected.png: Removed.
  • platform/efl/transforms/3d/point-mapping/3d-point-mapping-2-expected.txt: Removed.
  • platform/efl/transforms/3d/point-mapping/3d-point-mapping-3-expected.png: Removed.
  • platform/efl/transforms/3d/point-mapping/3d-point-mapping-3-expected.txt: Removed.
  • platform/efl/transforms/3d/point-mapping/3d-point-mapping-coplanar-expected.png: Removed.
  • platform/efl/transforms/3d/point-mapping/3d-point-mapping-coplanar-expected.txt: Removed.
  • platform/efl/transforms/3d/point-mapping/3d-point-mapping-deep-expected.txt: Removed.
  • platform/efl/transforms/3d/point-mapping/3d-point-mapping-expected.png: Removed.
  • platform/efl/transforms/3d/point-mapping/3d-point-mapping-expected.txt: Removed.
  • platform/efl/transforms/3d/point-mapping/3d-point-mapping-origins-expected.txt: Removed.
  • platform/efl/transforms/3d/point-mapping/3d-point-mapping-overlapping-expected.png: Removed.
  • platform/efl/transforms/3d/point-mapping/3d-point-mapping-overlapping-expected.txt: Removed.
  • platform/efl/transforms/3d/point-mapping/3d-point-mapping-preserve-3d-expected.png: Removed.
  • platform/efl/transforms/3d/point-mapping/3d-point-mapping-preserve-3d-expected.txt: Removed.
  • platform/efl/transforms/svg-vs-css-expected.png: Removed.
  • platform/efl/transforms/svg-vs-css-expected.txt: Removed.
  • platform/efl/transitions: Removed.
  • platform/efl/transitions/cross-fade-background-image-expected.png: Removed.
  • platform/efl/transitions/cross-fade-background-image-expected.txt: Removed.
  • platform/efl/transitions/cross-fade-border-image-expected.png: Removed.
  • platform/efl/transitions/cross-fade-border-image-expected.txt: Removed.
  • platform/efl/transitions/default-timing-function-expected.png: Removed.
  • platform/efl/transitions/default-timing-function-expected.txt: Removed.
  • platform/efl/transitions/move-after-transition-expected.png: Removed.
  • platform/efl/transitions/move-after-transition-expected.txt: Removed.
  • platform/efl/transitions/opacity-transition-zindex-expected.png: Removed.
  • platform/efl/transitions/suspend-transform-transition-expected.png: Removed.
  • platform/efl/transitions/svg-text-shadow-transition-expected.txt: Removed.
  • platform/efl/transitions/transition-end-event-rendering-expected.png: Removed.
  • platform/efl/userscripts: Removed.
  • platform/efl/userscripts/script-run-at-end-expected.txt: Removed.
  • platform/efl/webaudio: Removed.
  • platform/efl/webaudio/audiobuffersource-expected.wav: Removed.
  • platform/efl/webaudio/audiobuffersource-loop-points-expected.wav: Removed.
  • platform/efl/webaudio/audiobuffersource-multi-channels-expected.wav: Removed.
  • platform/efl/webaudio/audiobuffersource-playbackrate-expected.wav: Removed.
  • platform/efl/webaudio/codec-tests: Removed.
  • platform/efl/webaudio/codec-tests/aac: Removed.
  • platform/efl/webaudio/codec-tests/aac/vbr-128kbps-44khz-expected.wav: Removed.
  • platform/efl/webaudio/codec-tests/vorbis: Removed.
  • platform/efl/webaudio/codec-tests/vorbis/vbr-128kbps-44khz-expected.txt: Removed.
  • platform/efl/webaudio/codec-tests/vorbis/vbr-70kbps-44khz-expected.txt: Removed.
  • platform/efl/webaudio/codec-tests/vorbis/vbr-96kbps-44khz-expected.txt: Removed.
  • platform/efl/webaudio/codec-tests/wav: Removed.
  • platform/efl/webaudio/codec-tests/wav/24bit-22khz-resample-expected.wav: Removed.
  • platform/efl/webaudio/codec-tests/wav/24bit-44khz-expected.wav: Removed.
  • platform/efl/webaudio/gain-expected.wav: Removed.
  • platform/efl/webaudio/mixing-expected.wav: Removed.
  • platform/efl/webaudio/oscillator-custom-expected.wav: Removed.
  • platform/efl/webaudio/oscillator-sawtooth-expected.wav: Removed.
  • platform/efl/webaudio/oscillator-sine-expected.wav: Removed.
  • platform/efl/webaudio/oscillator-square-expected.wav: Removed.
  • platform/efl/webaudio/oscillator-triangle-expected.wav: Removed.
  • platform/efl/webaudio/up-mixing-mono-51-expected.wav: Removed.
  • platform/efl/webaudio/up-mixing-mono-stereo-expected.wav: Removed.
  • platform/efl/webaudio/up-mixing-stereo-51-expected.wav: Removed.
11:57 AM Changeset in webkit [212454] by andersca@apple.com
  • 2 edits
    136 deletes in trunk/Source/WebCore

Begin removing EFL code from WebCore.

Rubber-stamped by Alex Christensen.

Source/WebCore:

  • PlatformEfl.cmake: Removed.
  • editing/efl/EditorEfl.cpp: Removed.
  • page/efl/DragControllerEfl.cpp: Removed.
  • page/efl/EventHandlerEfl.cpp: Removed.
  • platform/audio/efl/AudioBusEfl.cpp: Removed.
  • platform/efl/CursorEfl.cpp: Removed.
  • platform/efl/DefaultTheme/CMakeLists.txt: Removed.
  • platform/efl/DefaultTheme/default.edc: Removed.
  • platform/efl/DefaultTheme/widget/button/button.edc: Removed.
  • platform/efl/DefaultTheme/widget/button/img_button_focus.png: Removed.
  • platform/efl/DefaultTheme/widget/button/img_button_hover.png: Removed.
  • platform/efl/DefaultTheme/widget/button/img_button_normal.png: Removed.
  • platform/efl/DefaultTheme/widget/button/img_button_press.png: Removed.
  • platform/efl/DefaultTheme/widget/check/check.edc: Removed.
  • platform/efl/DefaultTheme/widget/check/img_check_bg_disabled.png: Removed.
  • platform/efl/DefaultTheme/widget/check/img_check_bg_enabled.png: Removed.
  • platform/efl/DefaultTheme/widget/check/img_check_off.png: Removed.
  • platform/efl/DefaultTheme/widget/check/img_check_off_focus.png: Removed.
  • platform/efl/DefaultTheme/widget/check/img_check_off_hover.png: Removed.
  • platform/efl/DefaultTheme/widget/check/img_check_on.png: Removed.
  • platform/efl/DefaultTheme/widget/check/img_check_on_focus.png: Removed.
  • platform/efl/DefaultTheme/widget/check/img_check_on_hover.png: Removed.
  • platform/efl/DefaultTheme/widget/combo/combo.edc: Removed.
  • platform/efl/DefaultTheme/widget/combo/combo_focus.png: Removed.
  • platform/efl/DefaultTheme/widget/combo/combo_focus_button.png: Removed.
  • platform/efl/DefaultTheme/widget/combo/combo_focus_button_transparent.png: Removed.
  • platform/efl/DefaultTheme/widget/combo/combo_focus_transparent.png: Removed.
  • platform/efl/DefaultTheme/widget/combo/combo_hover.png: Removed.
  • platform/efl/DefaultTheme/widget/combo/combo_hover_button.png: Removed.
  • platform/efl/DefaultTheme/widget/combo/combo_hover_button_transparent.png: Removed.
  • platform/efl/DefaultTheme/widget/combo/combo_hover_transparent.png: Removed.
  • platform/efl/DefaultTheme/widget/combo/combo_normal.png: Removed.
  • platform/efl/DefaultTheme/widget/combo/combo_normal_button.png: Removed.
  • platform/efl/DefaultTheme/widget/combo/combo_normal_button_transparent.png: Removed.
  • platform/efl/DefaultTheme/widget/combo/combo_normal_transparent.png: Removed.
  • platform/efl/DefaultTheme/widget/combo/combo_press.png: Removed.
  • platform/efl/DefaultTheme/widget/combo/combo_press_button.png: Removed.
  • platform/efl/DefaultTheme/widget/combo/combo_press_button_transparent.png: Removed.
  • platform/efl/DefaultTheme/widget/combo/combo_press_transparent.png: Removed.
  • platform/efl/DefaultTheme/widget/combo/icon.png: Removed.
  • platform/efl/DefaultTheme/widget/entry/entry.edc: Removed.
  • platform/efl/DefaultTheme/widget/entry/img_focused.png: Removed.
  • platform/efl/DefaultTheme/widget/entry/img_hovered.png: Removed.
  • platform/efl/DefaultTheme/widget/entry/img_normal.png: Removed.
  • platform/efl/DefaultTheme/widget/progressbar/bt_base.png: Removed.
  • platform/efl/DefaultTheme/widget/progressbar/progressbar.edc: Removed.
  • platform/efl/DefaultTheme/widget/progressbar/shelf_inset.png: Removed.
  • platform/efl/DefaultTheme/widget/radio/img_radio_bg_disabled.png: Removed.
  • platform/efl/DefaultTheme/widget/radio/img_radio_bg_enabled.png: Removed.
  • platform/efl/DefaultTheme/widget/radio/img_radio_off.png: Removed.
  • platform/efl/DefaultTheme/widget/radio/img_radio_off_focus.png: Removed.
  • platform/efl/DefaultTheme/widget/radio/img_radio_off_hover.png: Removed.
  • platform/efl/DefaultTheme/widget/radio/img_radio_on.png: Removed.
  • platform/efl/DefaultTheme/widget/radio/img_radio_on_focus.png: Removed.
  • platform/efl/DefaultTheme/widget/radio/img_radio_on_hover.png: Removed.
  • platform/efl/DefaultTheme/widget/radio/radio.edc: Removed.
  • platform/efl/DefaultTheme/widget/scrollbar/scrollbar.edc: Removed.
  • platform/efl/DefaultTheme/widget/scrollbar/scrollbar_bg_horizontal.png: Removed.
  • platform/efl/DefaultTheme/widget/scrollbar/scrollbar_bg_vertical.png: Removed.
  • platform/efl/DefaultTheme/widget/scrollbar/scrollbar_thumb_horizontal.png: Removed.
  • platform/efl/DefaultTheme/widget/scrollbar/scrollbar_thumb_vertical.png: Removed.
  • platform/efl/DefaultTheme/widget/search/cancel/cancel_normal_button.png: Removed.
  • platform/efl/DefaultTheme/widget/search/cancel/cancel_normal_button2.png: Removed.
  • platform/efl/DefaultTheme/widget/search/cancel/search_cancel.edc: Removed.
  • platform/efl/DefaultTheme/widget/search/decoration/decoration_normal_button.png: Removed.
  • platform/efl/DefaultTheme/widget/search/decoration/search_decoration.edc: Removed.
  • platform/efl/DefaultTheme/widget/search/field/field_focused.png: Removed.
  • platform/efl/DefaultTheme/widget/search/field/field_hovered.png: Removed.
  • platform/efl/DefaultTheme/widget/search/field/field_normal.png: Removed.
  • platform/efl/DefaultTheme/widget/search/field/search_field.edc: Removed.
  • platform/efl/DefaultTheme/widget/slider/slider.edc: Removed.
  • platform/efl/DefaultTheme/widget/slider/slider_fill_h.png: Removed.
  • platform/efl/DefaultTheme/widget/slider/slider_fill_v.png: Removed.
  • platform/efl/DefaultTheme/widget/slider/slider_h.png: Removed.
  • platform/efl/DefaultTheme/widget/slider/slider_thumb_h.png: Removed.
  • platform/efl/DefaultTheme/widget/slider/slider_thumb_press_h.png: Removed.
  • platform/efl/DefaultTheme/widget/slider/slider_thumb_press_v.png: Removed.
  • platform/efl/DefaultTheme/widget/slider/slider_thumb_v.png: Removed.
  • platform/efl/DefaultTheme/widget/slider/slider_v.png: Removed.
  • platform/efl/DefaultTheme/widget/spinner/sp_bg.png: Removed.
  • platform/efl/DefaultTheme/widget/spinner/sp_down_default.png: Removed.
  • platform/efl/DefaultTheme/widget/spinner/sp_down_hover.png: Removed.
  • platform/efl/DefaultTheme/widget/spinner/sp_down_pressed.png: Removed.
  • platform/efl/DefaultTheme/widget/spinner/sp_up_default.png: Removed.
  • platform/efl/DefaultTheme/widget/spinner/sp_up_hover.png: Removed.
  • platform/efl/DefaultTheme/widget/spinner/sp_up_pressed.png: Removed.
  • platform/efl/DefaultTheme/widget/spinner/spinner.edc: Removed.
  • platform/efl/DragDataEfl.cpp: Removed.
  • platform/efl/DragImageEfl.cpp: Removed.
  • platform/efl/EflInspectorUtilities.cpp: Removed.
  • platform/efl/EflInspectorUtilities.h: Removed.
  • platform/efl/EflKeyboardUtilities.cpp: Removed.
  • platform/efl/EflKeyboardUtilities.h: Removed.
  • platform/efl/EflScreenUtilities.cpp: Removed.
  • platform/efl/EflScreenUtilities.h: Removed.
  • platform/efl/ErrorsEfl.cpp: Removed.
  • platform/efl/ErrorsEfl.h: Removed.
  • platform/efl/EventLoopEfl.cpp: Removed.
  • platform/efl/FileSystemEfl.cpp: Removed.
  • platform/efl/LocalizedStringsEfl.cpp: Removed.
  • platform/efl/MIMETypeRegistryEfl.cpp: Removed.
  • platform/efl/MainThreadSharedTimerEfl.cpp: Removed.
  • platform/efl/PasteboardEfl.cpp: Removed.
  • platform/efl/PlatformKeyboardEventEfl.cpp: Removed.
  • platform/efl/PlatformMouseEventEfl.cpp: Removed.
  • platform/efl/PlatformScreenEfl.cpp: Removed.
  • platform/efl/PlatformSpeechSynthesisProviderEfl.cpp: Removed.
  • platform/efl/PlatformSpeechSynthesisProviderEfl.h: Removed.
  • platform/efl/PlatformSpeechSynthesizerEfl.cpp: Removed.
  • platform/efl/PlatformWheelEventEfl.cpp: Removed.
  • platform/efl/ScrollbarThemeEfl.cpp: Removed.
  • platform/efl/ScrollbarThemeEfl.h: Removed.
  • platform/efl/SoundEfl.cpp: Removed.
  • platform/efl/TemporaryLinkStubs.cpp: Removed.
  • platform/efl/UserAgentEfl.cpp: Removed.
  • platform/efl/WidgetEfl.cpp: Removed.
  • platform/gamepad/efl/GamepadsEfl.cpp: Removed.
  • platform/graphics/efl/CairoUtilitiesEfl.cpp: Removed.
  • platform/graphics/efl/CairoUtilitiesEfl.h: Removed.
  • platform/graphics/efl/EvasGLContext.cpp: Removed.
  • platform/graphics/efl/EvasGLContext.h: Removed.
  • platform/graphics/efl/EvasGLSurface.cpp: Removed.
  • platform/graphics/efl/EvasGLSurface.h: Removed.
  • platform/graphics/efl/GraphicsContext3DEfl.cpp: Removed.
  • platform/graphics/efl/GraphicsContext3DPrivate.cpp: Removed.
  • platform/graphics/efl/GraphicsContext3DPrivate.h: Removed.
  • platform/graphics/efl/IconEfl.cpp: Removed.
  • platform/graphics/efl/ImageBufferEfl.cpp: Removed.
  • platform/graphics/efl/ImageEfl.cpp: Removed.
  • platform/graphics/efl/IntPointEfl.cpp: Removed.
  • platform/graphics/efl/IntRectEfl.cpp: Removed.
  • platform/graphics/surfaces/efl/GraphicsSurfaceCommon.cpp: Removed.
  • platform/network/efl/NetworkStateNotifierEfl.cpp: Removed.
  • rendering/RenderThemeEfl.cpp: Removed.
  • rendering/RenderThemeEfl.h: Removed.

Source/WebCore/PAL:

  • pal/PlatformEfl.cmake: Removed.
11:44 AM Changeset in webkit [212453] by keith_miller@apple.com
  • 19 edits
    8 adds in trunk/Source/JavaScriptCore

Refactor AccessCase to be more like B3Value
https://bugs.webkit.org/show_bug.cgi?id=168408

Reviewed by Filip Pizlo.

This patch makes AccessCase (and new subclasses) more like B3Value. In the new system each
type has an associated AccessCase subclass. For instance any getter should use the
GetterSetterAccessCase subclass. The new system is easier to follow since you no longer need
to know exactly which members are used by which types. The subclass to AccessType mapping is:

GetterSetterAccessCase:

Getter
CustomAccessorGetter
CustomValueGetter
Setter

ProxyableAccessCase:

Load
Miss
GetGetter

IntrinsicGetterAccessCase:

IntrinsicGetter

AccessCase:

Everything else

It also has the additional advantage that it uses less memory for the cases where we would have needed
rare data in the past but that case would only use a small bit of it.

This patch also removes megamorphic loads and renames some TryGetById related enum values from Pure to Try.

  • CMakeLists.txt:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • bytecode/AccessCase.cpp: Added.

(JSC::AccessCase::AccessCase):
(JSC::AccessCase::create):
(JSC::AccessCase::~AccessCase):
(JSC::AccessCase::fromStructureStubInfo):
(JSC::AccessCase::clone):
(JSC::AccessCase::commit):
(JSC::AccessCase::guardedByStructureCheck):
(JSC::AccessCase::doesCalls):
(JSC::AccessCase::couldStillSucceed):
(JSC::AccessCase::canReplace):
(JSC::AccessCase::dump):
(JSC::AccessCase::visitWeak):
(JSC::AccessCase::propagateTransitions):
(JSC::AccessCase::generateWithGuard):
(JSC::AccessCase::generate):
(JSC::AccessCase::generateImpl):

  • bytecode/AccessCase.h: Added.

(JSC::AccessCase::as):
(JSC::AccessCase::create):
(JSC::AccessCase::type):
(JSC::AccessCase::state):
(JSC::AccessCase::offset):
(JSC::AccessCase::structure):
(JSC::AccessCase::newStructure):
(JSC::AccessCase::conditionSet):
(JSC::AccessCase::alternateBase):
(JSC::AccessCase::additionalSet):
(JSC::AccessCase::viaProxy):
(JSC::AccessCase::isGetter):
(JSC::AccessCase::isAccessor):
(JSC::AccessCase::dumpImpl):
(JSC::AccessCase::resetState):

  • bytecode/GetByIdStatus.cpp:

(JSC::GetByIdStatus::computeForStubInfoWithoutExitSiteFeedback):

  • bytecode/GetterSetterAccessCase.cpp: Added.

(JSC::GetterSetterAccessCase::GetterSetterAccessCase):
(JSC::GetterSetterAccessCase::create):
(JSC::GetterSetterAccessCase::~GetterSetterAccessCase):
(JSC::GetterSetterAccessCase::clone):
(JSC::GetterSetterAccessCase::alternateBase):
(JSC::GetterSetterAccessCase::dumpImpl):
(JSC::GetterSetterAccessCase::emitDOMJITGetter):

  • bytecode/GetterSetterAccessCase.h: Added.

(JSC::GetterSetterAccessCase::callLinkInfo):
(JSC::GetterSetterAccessCase::customSlotBase):
(JSC::GetterSetterAccessCase::domJIT):

  • bytecode/IntrinsicGetterAccessCase.cpp: Added.

(JSC::IntrinsicGetterAccessCase::IntrinsicGetterAccessCase):
(JSC::IntrinsicGetterAccessCase::create):
(JSC::IntrinsicGetterAccessCase::~IntrinsicGetterAccessCase):
(JSC::IntrinsicGetterAccessCase::clone):

  • bytecode/IntrinsicGetterAccessCase.h: Added.

(JSC::IntrinsicGetterAccessCase::intrinsicFunction):
(JSC::IntrinsicGetterAccessCase::intrinsic):

  • bytecode/PolymorphicAccess.cpp:

(JSC::PolymorphicAccess::regenerate):
(WTF::printInternal):
(JSC::AccessCase::AccessCase): Deleted.
(JSC::AccessCase::tryGet): Deleted.
(JSC::AccessCase::get): Deleted.
(JSC::AccessCase::megamorphicLoad): Deleted.
(JSC::AccessCase::replace): Deleted.
(JSC::AccessCase::transition): Deleted.
(JSC::AccessCase::setter): Deleted.
(JSC::AccessCase::in): Deleted.
(JSC::AccessCase::getLength): Deleted.
(JSC::AccessCase::getIntrinsic): Deleted.
(JSC::AccessCase::~AccessCase): Deleted.
(JSC::AccessCase::fromStructureStubInfo): Deleted.
(JSC::AccessCase::clone): Deleted.
(JSC::AccessCase::commit): Deleted.
(JSC::AccessCase::guardedByStructureCheck): Deleted.
(JSC::AccessCase::alternateBase): Deleted.
(JSC::AccessCase::doesCalls): Deleted.
(JSC::AccessCase::couldStillSucceed): Deleted.
(JSC::AccessCase::canBeReplacedByMegamorphicLoad): Deleted.
(JSC::AccessCase::canReplace): Deleted.
(JSC::AccessCase::dump): Deleted.
(JSC::AccessCase::visitWeak): Deleted.
(JSC::AccessCase::propagateTransitions): Deleted.
(JSC::AccessCase::generateWithGuard): Deleted.
(JSC::AccessCase::generate): Deleted.
(JSC::AccessCase::generateImpl): Deleted.
(JSC::AccessCase::emitDOMJITGetter): Deleted.

  • bytecode/PolymorphicAccess.h:

(JSC::AccessCase::type): Deleted.
(JSC::AccessCase::state): Deleted.
(JSC::AccessCase::offset): Deleted.
(JSC::AccessCase::viaProxy): Deleted.
(JSC::AccessCase::structure): Deleted.
(JSC::AccessCase::newStructure): Deleted.
(JSC::AccessCase::conditionSet): Deleted.
(JSC::AccessCase::intrinsicFunction): Deleted.
(JSC::AccessCase::intrinsic): Deleted.
(JSC::AccessCase::domJIT): Deleted.
(JSC::AccessCase::additionalSet): Deleted.
(JSC::AccessCase::customSlotBase): Deleted.
(JSC::AccessCase::isGetter): Deleted.
(JSC::AccessCase::callLinkInfo): Deleted.
(JSC::AccessCase::RareData::RareData): Deleted.

  • bytecode/ProxyableAccessCase.cpp: Added.

(JSC::ProxyableAccessCase::ProxyableAccessCase):
(JSC::ProxyableAccessCase::create):
(JSC::ProxyableAccessCase::~ProxyableAccessCase):
(JSC::ProxyableAccessCase::clone):
(JSC::ProxyableAccessCase::dumpImpl):

  • bytecode/ProxyableAccessCase.h: Added.
  • bytecode/PutByIdStatus.cpp:

(JSC::PutByIdStatus::computeForStubInfo):

  • bytecode/StructureStubInfo.cpp:

(JSC::StructureStubInfo::reset):

  • bytecode/StructureStubInfo.h:
  • dfg/DFGByteCodeParser.cpp:

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

  • dfg/DFGSpeculativeJIT.cpp:

(JSC::DFG::SpeculativeJIT::compileTryGetById):

  • ftl/FTLLowerDFGToB3.cpp:

(JSC::FTL::DFG::LowerDFGToB3::compileNode):
(JSC::FTL::DFG::LowerDFGToB3::compileGetById):

  • jit/IntrinsicEmitter.cpp:

(JSC::IntrinsicGetterAccessCase::canEmitIntrinsicGetter):
(JSC::IntrinsicGetterAccessCase::emitIntrinsicGetter):
(JSC::AccessCase::canEmitIntrinsicGetter): Deleted.
(JSC::AccessCase::emitIntrinsicGetter): Deleted.

  • jit/JITOperations.cpp:
  • jit/JITPropertyAccess.cpp:

(JSC::JIT::emit_op_try_get_by_id):

  • jit/JITPropertyAccess32_64.cpp:

(JSC::JIT::emit_op_try_get_by_id):

  • jit/Repatch.cpp:

(JSC::tryCacheGetByID):
(JSC::tryCachePutByID):
(JSC::tryRepatchIn):

  • jit/Repatch.h:
  • runtime/Options.h:
11:43 AM Changeset in webkit [212452] by fpizlo@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

JSONParseTest needs to hold the lock when the VM is destroyed
https://bugs.webkit.org/show_bug.cgi?id=168450

Rubber stamped by Alex Christensen.

  • API/tests/JSONParseTest.cpp:

(testJSONParse):

11:40 AM Changeset in webkit [212451] by Brent Fulgham
  • 7 edits in trunk/Source/WebKit2

[WebRTC][Mac] Conditionally add sandbox extensions to the Network Process
https://bugs.webkit.org/show_bug.cgi?id=168010
<rdar://problem/30245503>

Reviewed by Youenn Fablet.

Conditionally add sandbox extensions to the Network Process when the WebRTC/Media Capture
features are enabled.

  • NetworkProcess/NetworkProcess.h:
  • NetworkProcess/NetworkProcessCreationParameters.cpp:

(WebKit::NetworkProcessCreationParameters::encode): Serialize new process configuration flag.
(WebKit::NetworkProcessCreationParameters::decode): Ditto.

  • NetworkProcess/NetworkProcessCreationParameters.h:
  • NetworkProcess/mac/NetworkProcessMac.mm:

(WebKit::NetworkProcess::platformInitializeNetworkProcess): Remember state of WebRTC for when the
sandbox is established.
(WebKit::NetworkProcess::initializeSandbox): Add ENABLE_WEB_RTC parameter to sandbox launch state.

  • NetworkProcess/mac/com.apple.WebKit.NetworkProcess.sb.in: Add conditional sandbox expansion to allow

bidirectional network access when the ENABLE_LIBWEBRTC flag is present in the sandbox launch parameters.

  • UIProcess/Cocoa/WebProcessPoolCocoa.mm:

(WebKit::WebProcessPool::platformInitializeWebProcess): Use proper compile guards and check media stream
preference, rather than the peer connection preference.
(WebKit::WebProcessPool::platformInitializeNetworkProcess): Notify NetworkProcess at launch time whether the
user wants WebRTC support.

11:23 AM Changeset in webkit [212450] by Joseph Pecoraro
  • 2 edits in trunk/LayoutTests

imported/w3c/web-platform-tests/resource-timing/idlharness.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=162414

Unreviewed test gardening.

This test is no longer flakey.

11:18 AM Changeset in webkit [212449] by Joseph Pecoraro
  • 44 edits
    57 adds in trunk

[Resource Timing] Support Resource Timing in Workers
https://bugs.webkit.org/show_bug.cgi?id=168086
<rdar://problem/30430117>

Reviewed by Alex Christensen.

LayoutTests/imported/w3c:

  • web-platform-tests/resource-timing/idlharness-expected.txt:
  • web-platform-tests/resource-timing/resource-timing-expected.txt:
  • web-platform-tests/resource-timing/resource_cached-expected.txt:
  • web-platform-tests/resource-timing/resource_connection_reuse-expected.txt:

Progressions.

  • web-platform-tests/resource-timing/resources/data.json: Added.
  • web-platform-tests/resource-timing/resources/rt-iframe-1.html: Added.
  • web-platform-tests/resource-timing/resources/rt-iframe-2.html: Added.
  • web-platform-tests/resource-timing/resources/rt-module.js: Added.
  • web-platform-tests/resource-timing/resources/rt-sub-module.js: Added.
  • web-platform-tests/resource-timing/resources/rt-utilities.js: Added.
  • web-platform-tests/resource-timing/resources/rt-worker-resources.js: Added.

New Resources.

  • web-platform-tests/resource-timing/rt-cors-expected.txt: Added.
  • web-platform-tests/resource-timing/rt-cors.html: Added.
  • web-platform-tests/resource-timing/rt-cors.js: Added.
  • web-platform-tests/resource-timing/rt-cors.worker-expected.txt: Added.
  • web-platform-tests/resource-timing/rt-cors.worker.html: Added.
  • web-platform-tests/resource-timing/rt-cors.worker.js: Added.

Tests for redirects and cross origin data hiding.

  • web-platform-tests/resource-timing/rt-initiatorType-css-expected.txt: Added.
  • web-platform-tests/resource-timing/rt-initiatorType-css.html: Added.
  • web-platform-tests/resource-timing/rt-initiatorType-element-expected.txt: Added.
  • web-platform-tests/resource-timing/rt-initiatorType-element.html: Added.
  • web-platform-tests/resource-timing/rt-initiatorType-fetch-expected.txt: Added.
  • web-platform-tests/resource-timing/rt-initiatorType-fetch.html: Added.
  • web-platform-tests/resource-timing/rt-initiatorType-fetch.js: Added.
  • web-platform-tests/resource-timing/rt-initiatorType-other-expected.txt: Added.
  • web-platform-tests/resource-timing/rt-initiatorType-other.html: Added.
  • web-platform-tests/resource-timing/rt-initiatorType-script-module-expected.txt: Added.
  • web-platform-tests/resource-timing/rt-initiatorType-script-module.html: Added.
  • web-platform-tests/resource-timing/rt-initiatorType-xmlhttprequest-expected.txt: Added.
  • web-platform-tests/resource-timing/rt-initiatorType-xmlhttprequest.html: Added.
  • web-platform-tests/resource-timing/rt-initiatorType-xmlhttprequest.js: Added.
  • web-platform-tests/resource-timing/rt-initiatorType.worker-expected.txt: Added.
  • web-platform-tests/resource-timing/rt-initiatorType.worker.html: Added.
  • web-platform-tests/resource-timing/rt-initiatorType.worker.js: Added.

Tests for producing different initiator types.

  • web-platform-tests/resource-timing/rt-initiatorType-media-expected.txt: Added.
  • web-platform-tests/resource-timing/rt-initiatorType-media.html: Added.

We currently fail these tests, so they are marked as fail.

  • web-platform-tests/resource-timing/rt-performance-extensions-expected.txt: Added.
  • web-platform-tests/resource-timing/rt-performance-extensions.html: Added.
  • web-platform-tests/resource-timing/rt-performance-extensions.js: Added.
  • web-platform-tests/resource-timing/rt-performance-extensions.worker-expected.txt: Added.
  • web-platform-tests/resource-timing/rt-performance-extensions.worker.html: Added.
  • web-platform-tests/resource-timing/rt-performance-extensions.worker.js: Added.

Tests for the new Performance APIs.

  • web-platform-tests/resource-timing/rt-serialization-expected.txt: Added.
  • web-platform-tests/resource-timing/rt-serialization.html: Added.

Tests for JSON serialization.

  • web-platform-tests/resource-timing/rt-resource-errors-expected.txt: Added.
  • web-platform-tests/resource-timing/rt-resource-errors.html: Added.
  • web-platform-tests/resource-timing/rt-resource-ignored-expected.txt: Added.
  • web-platform-tests/resource-timing/rt-resource-ignored.html: Added.

Tests for when PerformanceResourceTiming entries should not be included.

  • web-platform-tests/resource-timing/rt-resources-per-frame-expected.txt: Added.
  • web-platform-tests/resource-timing/rt-resources-per-frame.html: Added.
  • web-platform-tests/resource-timing/rt-resources-per-worker-expected.txt: Added.
  • web-platform-tests/resource-timing/rt-resources-per-worker.html: Added.
  • web-platform-tests/resource-timing/rt-shared-resource-in-frames-expected.txt: Added.
  • web-platform-tests/resource-timing/rt-shared-resource-in-frames.html: Added.
  • web-platform-tests/resource-timing/rt-shared-resource-in-workers-expected.txt: Added.
  • web-platform-tests/resource-timing/rt-shared-resource-in-workers.html: Added.

Tests for different entries in different contexts.

  • web-platform-tests/serve:

Make executable.

Source/WebCore:

Worker's load resources through the Document that loaded them. However,
their PerformanceResourceTiming entries should be added to the Performance
object inside the Worker context, not the Document's context.

This change adds an InitiatorContext to ResourceLoadOptions so that loaders
can determine if the load was initiated by the Document or a Worker. This
allows loaders to then know if the ResourceTiming data they collect should
be added to the Document's Performance object or forwarded on to the Worker's.

This adds a new ThreadableLoaderClient method intended only for the purpose
of adding the ResourceTiming information to the Worker's Performance object.
Unlike other ThreadableLoaderClient methods that are bridged and forwarded
on to a client inside the worker (e.g. XMLHttpRequest or FetchLoader) this
method never needs to be handled by clients and can be uniformly handled by
the WorkerThreadableLoader itself.

We also add a new ResourceTiming object that encapsulates all of the data
ultimately needed for a PerformanceResourceTimingEntry object. This allows
for all of the information to be gathered while loading on the Document
before serializing across to the Worker. That includes the Timing-Allow-Origin
check which uses the SecurityOrigin of the Worker.

This also modernizes and addresses issues in the Resource Timing implementation.
Better handling cases like loading from the Cache, Synchronous Loads, and
improving initiatorType information.

Tests: imported/w3c/web-platform-tests/resource-timing/rt-cors.html

imported/w3c/web-platform-tests/resource-timing/rt-cors.worker.html
imported/w3c/web-platform-tests/resource-timing/rt-initiatorType-css.html
imported/w3c/web-platform-tests/resource-timing/rt-initiatorType-element.html
imported/w3c/web-platform-tests/resource-timing/rt-initiatorType-fetch.html
imported/w3c/web-platform-tests/resource-timing/rt-initiatorType-media.html
imported/w3c/web-platform-tests/resource-timing/rt-initiatorType-other.html
imported/w3c/web-platform-tests/resource-timing/rt-initiatorType-script-module.html
imported/w3c/web-platform-tests/resource-timing/rt-initiatorType-xmlhttprequest.html
imported/w3c/web-platform-tests/resource-timing/rt-initiatorType.worker.html
imported/w3c/web-platform-tests/resource-timing/rt-performance-extensions.html
imported/w3c/web-platform-tests/resource-timing/rt-performance-extensions.worker.html
imported/w3c/web-platform-tests/resource-timing/rt-resource-errors.html
imported/w3c/web-platform-tests/resource-timing/rt-resource-ignored.html
imported/w3c/web-platform-tests/resource-timing/rt-resources-per-frame.html
imported/w3c/web-platform-tests/resource-timing/rt-resources-per-worker.html
imported/w3c/web-platform-tests/resource-timing/rt-serialization.html
imported/w3c/web-platform-tests/resource-timing/rt-shared-resource-in-frames.html
imported/w3c/web-platform-tests/resource-timing/rt-shared-resource-in-workers.html
performance-api/resource-timing-apis.html

  • CMakeLists.txt:
  • WebCore.xcodeproj/project.pbxproj:

New files.

  • platform/network/NetworkLoadTiming.h:

(WebCore::NetworkLoadTiming::reset): Deleted.
We no longer need to reset.

  • loader/ResourceTiming.cpp: Added.

(WebCore::passesTimingAllowCheck):
(WebCore::ResourceTiming::fromCache):
(WebCore::ResourceTiming::fromLoad):
(WebCore::ResourceTiming::fromSynchronousLoad):
(WebCore::ResourceTiming::ResourceTiming):
(WebCore::ResourceTiming::isolatedCopy):

  • loader/ResourceTiming.h: Added.

(WebCore::ResourceTiming::url):
(WebCore::ResourceTiming::initiator):
(WebCore::ResourceTiming::loadTiming):
(WebCore::ResourceTiming::networkLoadTiming):
(WebCore::ResourceTiming::allowTimingDetails):
(WebCore::ResourceTiming::overrideInitiatorName):
(WebCore::ResourceTiming::ResourceTiming):
Class that encapsulates all of the data needed for a PerformanceResourceTiming entry.
There are three static constructors indicating the different ways this object can
be constructed and the different data available at the time of construction.

  • loader/ResourceLoaderOptions.h:

Add the new InitiatorContext, default to Document.

  • loader/ThreadableLoaderClient.h:

(WebCore::ThreadableLoaderClient::didFinishTiming):
New client method only used by WorkerThreadableLoader.

  • loader/WorkerThreadableLoader.h:
  • loader/WorkerThreadableLoader.cpp:

(WebCore::WorkerThreadableLoader::MainThreadBridge::MainThreadBridge):
(WebCore::WorkerThreadableLoader::MainThreadBridge::didFinishTiming):
All loads initiated in a WorkerThreadableLoader get identified as InitiatorContext::Worker.
Add timing information to the Performance object when received. No need to inform clients.

  • loader/DocumentThreadableLoader.h:
  • loader/DocumentThreadableLoader.cpp:

(WebCore::DocumentThreadableLoader::finishedTimingForWorkerLoad):
(WebCore::DocumentThreadableLoader::loadRequest):
Provide APIs to pass timing data on to a WorkerThreadableLoader.
Create ResourceTiming data for synchronous loads.

  • loader/LoadTiming.h:
  • loader/LoadTiming.cpp:

(WebCore::LoadTiming::isolatedCopy):
Add isolatedCopy to allow this data to be passed across to a Worker.

  • loader/ResourceTimingInformation.h:
  • loader/ResourceTimingInformation.cpp:

(WebCore::ResourceTimingInformation::shouldAddResourceTiming):
(WebCore::ResourceTimingInformation::addResourceTiming):
(WebCore::ResourceTimingInformation::storeResourceTimingInitiatorInformation):
Refactor to remove unused / unnecessary bits. Extract out some helpful code.
Changed this to match when Blink decides when to add or ignore entries, however
this may change over time.

  • loader/SubresourceLoader.cpp:

(WebCore::SubresourceLoader::didFinishLoading):
(WebCore::SubresourceLoader::notifyDone):
(WebCore::SubresourceLoader::reportResourceTiming):

  • loader/SubresourceLoader.h:
  • loader/cache/CachedRawResource.cpp:

(WebCore::CachedRawResource::finishedTimingForWorkerLoad):

  • loader/cache/CachedRawResource.h:
  • loader/cache/CachedRawResourceClient.h:

(WebCore::CachedRawResourceClient::finishedTimingForWorkerLoad):
Plumbing to report timing information to Worker if this resource was loaded for a Worker.

  • loader/cache/CachedResource.cpp:

(WebCore::CachedResource::CachedResource):

  • loader/cache/CachedResource.h:

(WebCore::CachedResource::initiatorName):
Store the initiator name on the CachedResource like other data added to the original
CachedResourceRequest. This is a bit of a hack but follows an existing pattern, and
cleans up other hacks that worked around this later on.

  • loader/cache/CachedResourceLoader.h:
  • loader/cache/CachedResourceLoader.cpp:

(WebCore::CachedResourceLoader::requestResource):
(WebCore::CachedResourceLoader::revalidateResource):
(WebCore::CachedResourceLoader::loadResource):
Simply the creation of a ResourceTiming object for cache hits.
Report timing information to Worker if this resource was loaded for a Worker.

(WebCore::CachedResourceLoader::loadDone):
Eliminate this redundant point attempting to add a ResourceTiming entry.

  • loader/cache/CachedResourceRequest.cpp:

(WebCore::CachedResourceRequest::initiatorName):
Update to match the spec. The fallback is "other".

  • page/Performance.h:
  • page/Performance.cpp:

(WebCore::Performance::setResourceTimingBufferSize):
(WebCore::Performance::addResourceTiming):
Update to support PerformanceObservers.
Update to match spec (event should bubble).

  • page/PerformanceResourceTiming.h:
  • page/PerformanceResourceTiming.cpp:

(WebCore::PerformanceResourceTiming::create):
(WebCore::PerformanceResourceTiming::PerformanceResourceTiming):
(WebCore::PerformanceResourceTiming::fetchStart):
(WebCore::PerformanceResourceTiming::domainLookupStart):
(WebCore::PerformanceResourceTiming::domainLookupEnd):
(WebCore::PerformanceResourceTiming::connectStart):
(WebCore::PerformanceResourceTiming::connectEnd):
(WebCore::PerformanceResourceTiming::secureConnectionStart):
(WebCore::PerformanceResourceTiming::requestStart):
(WebCore::PerformanceResourceTiming::responseStart):
(WebCore::PerformanceResourceTiming::responseEnd):
(WebCore::PerformanceResourceTiming::networkLoadTimeToDOMHighResTimeStamp):
Construct with a ResourceTiming object containing all the data we need for the entry.
Update to match spec for what is required, should fallback, should be zero, etc.

(WebCore::passesTimingAllowCheck): Deleted.
Extracted this to ResourceTiming creation time in the loading context,
since this can't be determined on the Worker context without also having
all of the header information from each resource response.

  • page/PerformanceResourceTiming.idl:

Expose to Workers!

LayoutTests:

Pre-emptively mark some tests as flakey that have seen flakiness.

  • platform/mac/TestExpectations:

Skip some tests on ElCapitan because the network timing numbers appear incorrect.

  • js/dom/global-constructors-attributes-dedicated-worker-expected.txt:

PerformanceResourceTiming is now available in Workers.

  • performance-api/resource-timing-apis-expected.txt: Added.
  • performance-api/resource-timing-apis.html: Added.
  • performance-api/resources/resource-timing-api.js: Added.

Basic API test. We expect to fail nextHopProtocol and size properties right now.

10:49 AM Changeset in webkit [212448] by Yusuke Suzuki
  • 42 edits in trunk/Source

[JSC] Drop PassRefPtr in inspector/
https://bugs.webkit.org/show_bug.cgi?id=168420

Reviewed by Alex Christensen.

Source/JavaScriptCore:

Drop PassRefPtr uses.
And use Ref<Inspector::ScriptArguments> and Ref<ScriptCallStack> as much as possible.
It drops some unnecessary null checks.

  • debugger/Debugger.cpp:

(JSC::Debugger::hasBreakpoint):
(JSC::Debugger::currentDebuggerCallFrame):

  • debugger/Debugger.h:
  • inspector/AsyncStackTrace.cpp:

(Inspector::AsyncStackTrace::create):
(Inspector::AsyncStackTrace::AsyncStackTrace):
(Inspector::AsyncStackTrace::buildInspectorObject):
(Inspector::AsyncStackTrace::truncate):

  • inspector/AsyncStackTrace.h:
  • inspector/ConsoleMessage.cpp:

(Inspector::ConsoleMessage::ConsoleMessage):

  • inspector/ConsoleMessage.h:
  • inspector/InjectedScriptManager.cpp:

(Inspector::InjectedScriptManager::InjectedScriptManager):
(Inspector::InjectedScriptManager::injectedScriptHost):

  • inspector/InjectedScriptManager.h:
  • inspector/JSGlobalObjectConsoleClient.cpp:

(Inspector::JSGlobalObjectConsoleClient::messageWithTypeAndLevel):
(Inspector::JSGlobalObjectConsoleClient::count):
(Inspector::JSGlobalObjectConsoleClient::timeEnd):
(Inspector::JSGlobalObjectConsoleClient::timeStamp):
(Inspector::JSGlobalObjectConsoleClient::warnUnimplemented):

  • inspector/JSGlobalObjectConsoleClient.h:

ConsoleClient now takes Ref<ScriptArgument>&& instead of RefPtr<ScriptArgument>&&.

  • inspector/JSGlobalObjectInspectorController.cpp:

(Inspector::JSGlobalObjectInspectorController::appendAPIBacktrace):
(Inspector::JSGlobalObjectInspectorController::reportAPIException):

  • inspector/JSGlobalObjectInspectorController.h:
  • inspector/JSJavaScriptCallFrame.cpp:

(Inspector::JSJavaScriptCallFrame::JSJavaScriptCallFrame):
(Inspector::toJS):

  • inspector/JSJavaScriptCallFrame.h:

(Inspector::JSJavaScriptCallFrame::create):

  • inspector/JavaScriptCallFrame.cpp:

(Inspector::JavaScriptCallFrame::JavaScriptCallFrame):
(Inspector::JavaScriptCallFrame::caller):

  • inspector/JavaScriptCallFrame.h:

(Inspector::JavaScriptCallFrame::create):

  • inspector/ScriptDebugServer.cpp:

(Inspector::ScriptDebugServer::evaluateBreakpointAction):
(Inspector::ScriptDebugServer::dispatchDidPause):
(Inspector::ScriptDebugServer::exceptionOrCaughtValue):

  • inspector/agents/InspectorConsoleAgent.cpp:

(Inspector::InspectorConsoleAgent::stopTiming):
(Inspector::InspectorConsoleAgent::count):

  • inspector/agents/InspectorConsoleAgent.h:
  • inspector/agents/InspectorDebuggerAgent.cpp:

(Inspector::InspectorDebuggerAgent::didScheduleAsyncCall):

  • runtime/ConsoleClient.cpp:

(JSC::ConsoleClient::printConsoleMessageWithArguments):
(JSC::ConsoleClient::internalMessageWithTypeAndLevel):
(JSC::ConsoleClient::logWithLevel):
(JSC::ConsoleClient::dir):
(JSC::ConsoleClient::dirXML):
(JSC::ConsoleClient::table):
(JSC::ConsoleClient::trace):
(JSC::ConsoleClient::assertion):
(JSC::ConsoleClient::group):
(JSC::ConsoleClient::groupCollapsed):
(JSC::ConsoleClient::groupEnd):

  • runtime/ConsoleClient.h:
  • runtime/ConsoleObject.cpp:

(JSC::consoleLogWithLevel):
(JSC::consoleProtoFuncDir):
(JSC::consoleProtoFuncDirXML):
(JSC::consoleProtoFuncTable):
(JSC::consoleProtoFuncTrace):
(JSC::consoleProtoFuncAssert):
(JSC::consoleProtoFuncCount):
(JSC::consoleProtoFuncTimeStamp):
(JSC::consoleProtoFuncGroup):
(JSC::consoleProtoFuncGroupCollapsed):
(JSC::consoleProtoFuncGroupEnd):

Source/WebCore:

Use Ref<Inspector::ScriptArguments> and Ref<ScriptCallStack> as much as possible.
It drops some unnecessary null checks.

  • bindings/scripts/CodeGeneratorJS.pm:

(GenerateCallWith):

  • bindings/scripts/test/JS/JSTestObj.cpp:

(WebCore::jsTestObjPrototypeFunctionWithScriptArgumentsAndCallStackCaller):

  • dom/ScriptExecutionContext.cpp:

(WebCore::ScriptExecutionContext::PendingException::PendingException):

  • inspector/InspectorInstrumentation.cpp:

(WebCore::InspectorInstrumentation::consoleCountImpl):
(WebCore::InspectorInstrumentation::stopConsoleTimingImpl):
(WebCore::InspectorInstrumentation::consoleTimeStampImpl):

  • inspector/InspectorInstrumentation.h:

(WebCore::InspectorInstrumentation::consoleCount):
(WebCore::InspectorInstrumentation::stopConsoleTiming):
(WebCore::InspectorInstrumentation::consoleTimeStamp):

  • inspector/InspectorNetworkAgent.cpp:

(WebCore::InspectorNetworkAgent::buildInitiatorObject):

  • inspector/TimelineRecordFactory.cpp:

(WebCore::TimelineRecordFactory::createGenericRecord):

  • inspector/WebInjectedScriptManager.cpp:

(WebCore::WebInjectedScriptManager::WebInjectedScriptManager):

  • inspector/WebInjectedScriptManager.h:
  • page/DOMWindow.cpp:

(WebCore::DOMWindow::postMessageTimerFired):
We dispatch appropriate addMessage function according to whether
timer.stackTrace() is nullptr.

  • page/PageConsoleClient.cpp:

(WebCore::PageConsoleClient::addMessage):
(WebCore::PageConsoleClient::messageWithTypeAndLevel):
(WebCore::PageConsoleClient::count):
(WebCore::PageConsoleClient::timeEnd):
(WebCore::PageConsoleClient::timeStamp):

  • page/PageConsoleClient.h:
  • workers/WorkerConsoleClient.cpp:

(WebCore::WorkerConsoleClient::messageWithTypeAndLevel):
(WebCore::WorkerConsoleClient::count):
(WebCore::WorkerConsoleClient::timeEnd):
(WebCore::WorkerConsoleClient::timeStamp):

  • workers/WorkerConsoleClient.h:
  • workers/WorkerGlobalScope.cpp:

(WebCore::WorkerGlobalScope::addMessage):

Source/WebKit/mac:

  • WebView/WebScriptDebugger.mm:

(WebScriptDebugger::handlePause):

10:38 AM Changeset in webkit [212447] by matthew_hanson@apple.com
  • 5 edits in branches/safari-603-branch/Source

Versioning.

10:35 AM Changeset in webkit [212446] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Mark media/modern-media-controls/media-controller/media-controller-ios-do-not-hide-controls-when-tapping-button.html as flaky.
https://bugs.webkit.org/show_bug.cgi?id=168343

Unreviewed test gardening.

  • platform/ios-simulator/TestExpectations:
10:33 AM Changeset in webkit [212445] by BJ Burg
  • 4 edits in trunk/Source/WebInspectorUI

Web Inspector: add DebugUI setting to manually override UI layout direction
https://bugs.webkit.org/show_bug.cgi?id=168222

Reviewed by Joseph Pecoraro.

Expose three layout direction settings:

  • System (inherit system UI layout direction)
  • LTR (the default regardless of system language)
  • RTL (under development, only accessible via this menu)
  • UserInterface/Base/Main.js:

The UI layout direction is normally only set once per frontend load.
There is no expectation on macOS that applications can switch dynamically.
But, for DebugUI purposes we need to switch the layout direction quickly.
Store the new setting and trigger a hard reload of the frontend page.
If the 'system' setting is specified, fall back to the system layout
direction as provided by InspectorFrontendHost.

  • UserInterface/Base/Setting.js:

Add an application-level setting for (user interface) layout direction.

  • UserInterface/Views/SettingsTabContentView.js:

(WebInspector.SettingsTabContentView):
(WebInspector.SettingsTabContentView.prototype.layout):
(WebInspector.SettingsTabContentView.prototype.initialLayout): Deleted.
Make this a normal layout() method so that we can dirty the view
when DebugUI is turned on or off.

10:20 AM Changeset in webkit [212444] by Yusuke Suzuki
  • 2 edits in trunk/LayoutTests

Unreviewed, fix r212438 test
https://bugs.webkit.org/show_bug.cgi?id=167457

  • inspector/controller/runtime-controller-import.html:
10:10 AM Changeset in webkit [212443] by Brent Fulgham
  • 3 edits in trunk/Source/WebKit2

[WebRTC][Mac][WebKit2] Initial WebProcess does not support WebRTC
https://bugs.webkit.org/show_bug.cgi?id=168438
<rdar://problem/30401818>

Reviewed by Youenn Fablet.

The sandbox extension for microphone access does not take effect until the second WebProcess
is created, causing the initial browser tab to lack microphone support.

This patch checks the setting earlier in the boot process so that the initial WebProcess
instance gets the correct setting.

  • UIProcess/Cocoa/WebProcessPoolCocoa.mm:

(WebKit::WebProcessPool::platformInitializeWebProcess): Move microphone sandbox extension here, so that the
initial WebProcess has the correct microphone access.

  • UIProcess/WebProcessPool.cpp:

(WebKit::WebProcessPool::createNewWebProcess): Move microphone sandbox extension from here to platform-specific file.
(WebKit::WebProcessPool::createWebPage): Remove unneeded preference checks.

10:07 AM Changeset in webkit [212442] by keith_miller@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Weak should not use jsCast in its accessors
https://bugs.webkit.org/show_bug.cgi?id=168406

Reviewed by Filip Pizlo.

This can cause assertion failures in WebCore where classes might remove themselves
from a data structure in a weak reference, if that reference is still alive.

  • heap/WeakInlines.h:

(JSC::>):
(JSC::Weak<T>::operator):
(JSC::Weak<T>::get):

10:07 AM Changeset in webkit [212441] by Chris Fleizach
  • 2 edits in trunk/Source/WebCore

AX: Make form validation accessible on iOS
https://bugs.webkit.org/show_bug.cgi?id=168400

Reviewed by Chris Dumez.

Hide the popover content of form validation from accessibility (since its not interactable)
and instead announce the message.

  • platform/ios/ValidationBubbleIOS.mm:

(WebCore::ValidationBubble::show):

9:56 AM Changeset in webkit [212440] by jfernandez@igalia.com
  • 5 edits in trunk/LayoutTests

[GTK] Unreviewed test gardening
https://bugs.webkit.org/show_bug.cgi?id=168436

Unreviewed GTK+ gardening.

LayoutTests/imported/w3c:

  • rebaseline setrequestheader-content-type-expected.txt which still have FAILs as Mac does (bug 161003)
  • web-platform-tests/XMLHttpRequest/setrequestheader-content-type-expected.txt:

LayoutTests:

  • imported/w3c/web-platform-tests/XMLHttpRequest/event-readystatechange-loaded.htm marked as slow
  • rebaseline LayoutTests/platform/gtk/js/dom/constructor-length-expected.txt to it matches current Mac expected results.
  • the tests http/tests/xmlhttprequest/redirections-and-user-headers.html marked as Failure (bug 168433)
  • platform/gtk/TestExpectations:
  • platform/gtk/js/dom/constructor-length-expected.txt:
9:32 AM Changeset in webkit [212439] by Simon Fraser
  • 7 edits in trunk/Source

Clean up use of some CALayer-related SPI
https://bugs.webkit.org/show_bug.cgi?id=168401

Reviewed by Tim Horton.

Source/WebCore:

Use -setDrawsAsynchronously: rather than the old -setAcceleratesDrawing: SPI.

Remove CATiledLayer-related stuff from QuartzCoreSPI.h, since we don't use it any more.

  • platform/graphics/ca/cocoa/PlatformCALayerCocoa.mm:

(PlatformCALayerCocoa::acceleratesDrawing):
(PlatformCALayerCocoa::setAcceleratesDrawing):

  • platform/graphics/ca/cocoa/WebTiledBackingLayer.mm:

(-[WebTiledBackingLayer setDrawsAsynchronously:]): This override passes the state
onto the TileController.
(-[WebTiledBackingLayer setAcceleratesDrawing:]): Deleted.

  • platform/ios/LegacyTileGridTile.mm:

(WebCore::LegacyTileGridTile::LegacyTileGridTile):

  • platform/spi/cocoa/QuartzCoreSPI.h:

Source/WebKit/mac:

Include CALayer.h not CATiledLayer.h.

  • WebInspector/WebNodeHighlight.h:
9:32 AM Changeset in webkit [212438] by Yusuke Suzuki
  • 6 edits
    6 adds in trunk

Web Inspector: allow import() inside the inspector
https://bugs.webkit.org/show_bug.cgi?id=167457

Reviewed by Ryosuke Niwa.

Source/JavaScriptCore:

We relax import module hook to accept null SourceOrigin.
Such a script can be evaluated from the inspector console.

  • jsc.cpp:

(GlobalObject::moduleLoaderImportModule):

  • runtime/JSGlobalObjectFunctions.cpp:

(JSC::globalFuncImportModule):

Source/WebCore:

When evaluating import("..."), we need the caller's context to resolve
the module specifier correctly. For example, if import("./cocoa.js") is
evaluated in the script "drinks/hot.js", this module name is resolved to
"drinks/cocoa.js". If the same import operator is evaluated in the script
"menu/all.js", the module specifier becomes "menu/cocoa.js".

Previously we reject the import operator if the caller does not have such
a context. These context is SourceOrigin and its ScriptFetcher. While they
are offered in the script tag and other code evaluations, the inspector
console does not offer that. These class are offered in the WebCore side
and we should not touch these classes in the JSC's inspector code.

Now we relax the above restriction. If the above caller information is not
offered, we fallback to the default one. In the web page, we use the page's
URL as the caller's source origin. This allows us to evaluate the import
operator in the inspector console.

And as of r167698, the console recognizes await import("...") form. We use
this to test this import() in the console functionality.

Test: inspector/controller/runtime-controller-import.html

  • bindings/js/ScriptModuleLoader.cpp:

(WebCore::ScriptModuleLoader::importModule):

LayoutTests:

Extract the test to single file. And make it deterministic.

  • inspector/controller/resources/cappuccino.js: Added.
  • inspector/controller/resources/cocoa.js: Added.
  • inspector/controller/resources/drink.js: Added.
  • inspector/controller/runtime-controller-import-expected.txt: Added.
  • inspector/controller/runtime-controller-import.html: Added.
9:26 AM Changeset in webkit [212437] by clopez@igalia.com
  • 2 edits in trunk/Tools

[GTK] Add two new buildbots that build-only test on Debian stable and Ubuntu LTS.
https://bugs.webkit.org/show_bug.cgi?id=168321

This bots should be added to the trunk build scheduler.
Unreviewed fix after r212429.

  • BuildSlaveSupport/build.webkit.org-config/config.json:
9:17 AM Changeset in webkit [212436] by matthew_hanson@apple.com
  • 2 edits in branches/safari-603-branch/Source/WebKit2

Merge r212398. rdar://problem/29906848

9:11 AM Changeset in webkit [212435] by Konstantin Tokarev
  • 2 edits in trunk

[cmake] Use env command to set PYTHONPATH if cmake is new enough
https://bugs.webkit.org/show_bug.cgi?id=156833

Reviewed by Alex Christensen.

This change fixes 2 issues when CMake >= 3.1 is used:

  • When PYTHONPATH contains special characters, CMake adds quotes around

"PYTHONPATH=..." and produces broken build command in non-WIN32 case.

  • On WIN32, unix-like shell can be used instead of cmd.exe, but this case

cannot be easily detected in cmake.

  • Source/cmake/WebKitMacros.cmake:
9:05 AM Changeset in webkit [212434] by eric.carlson@apple.com
  • 4 edits in trunk/Source/WebKit2

Add WebRTC as an off-by-default experimental feature menu item.
https://bugs.webkit.org/show_bug.cgi?id=167972
<rdar://problem/30293429>

Reviewed by Alex Christensen.

  • Shared/WebPreferencesDefinitions.h:
  • UIProcess/WebPreferences.cpp:

(WebKit::WebPreferences::setPeerConnectionAndMediaStreamEnabled): We need to enable/disable
peer connection and media stream preferences at the same time, so special case them.
(WebKit::WebPreferences::setEnabledForFeature):

  • UIProcess/WebPreferences.h:
8:15 AM Changeset in webkit [212433] by Carlos Garcia Campos
  • 1 edit
    1 add in trunk/LayoutTests

Unreviewed GTK+ gardening. Rebaseline http/tests/xmlhttprequest/xmlhttprequest-test-custom-headers.html.

We always expect ',' since r212355.

  • platform/gtk/http/tests/xmlhttprequest/xmlhttprequest-test-custom-headers-expected.txt: Added.
6:53 AM Changeset in webkit [212432] by Carlos Garcia Campos
  • 2 edits in trunk/LayoutTests

Unreviewed GTK+ gardening. Mark several reftests as image only failures.

  • platform/gtk/TestExpectations:
5:47 AM Changeset in webkit [212431] by magomez@igalia.com
  • 3 edits
    2 adds in trunk

[GTK] scroll with transparent background not repainted after scrollY >= 32768
https://bugs.webkit.org/show_bug.cgi?id=154283

Reviewed by Carlos Garcia Campos.

Source/WebCore:

Due to a limitation of the pixman backend, which uses 16 bits to hold signed integers, cairo is
not able to draw anything when using transformation matrices with values bigger than 32768. When
drawing patterns into large pages, the matrices values can overflow those 16 bits, so cairo doesn't
draw anything in, which causes the reported transparent backgrounds.

The patch modifies the transformation matrices both from the current context and the pattern we
are painting, to avoid them to hold values that cannot stored in 16 bits.

There's still the possibility that this happens, but it would require using a pattern with a size
bigger than 32768.

Based on a previous patch by Gwang Yoon Hwang <yoon@igalia.com>.

Test: fast/backgrounds/background-repeat-long-scroll.html

  • platform/graphics/cairo/CairoUtilities.cpp:

(WebCore::drawPatternToCairoContext):

LayoutTests:

Test to ensure that the background pattern of an element is properly being drawn when it's in a position
bigger than 32768.

  • fast/backgrounds/background-repeat-long-scroll-expected.html: Added.
  • fast/backgrounds/background-repeat-long-scroll.html: Added.
4:41 AM Changeset in webkit [212430] by Yusuke Suzuki
  • 6 edits in trunk

[JSC] Update module namespace object according to the latest ECMA262
https://bugs.webkit.org/show_bug.cgi?id=168280

Reviewed by Saam Barati.

JSTests:

  • modules/namespace-object-symbol-iterator-name.js:
  • modules/namespace-object-typed-array-fast-path.js:
  • modules/namespace.js:

(shouldBe.JSON.stringify.Reflect.getOwnPropertyDescriptor):
(shouldThrow):

Source/JavaScriptCore:

Reflect updates to the module namespace object.

  1. @@iterator property is dropped[1].
  2. @@toStringTag property becomes non-configurable[1].
  3. delete with Symbol should be delegated to the JSObject's one[2].

[1]: https://tc39.github.io/ecma262/#sec-module-namespace-objects
[2]: https://github.com/tc39/ecma262/pull/767

  • runtime/JSModuleNamespaceObject.cpp:

(JSC::JSModuleNamespaceObject::finishCreation):
(JSC::JSModuleNamespaceObject::deleteProperty):
(JSC::moduleNamespaceObjectSymbolIterator): Deleted.

4:16 AM Changeset in webkit [212429] by clopez@igalia.com
  • 4 edits in trunk/Tools

[GTK] Add two new buildbots that build-only test on Debian stable and Ubuntu LTS
https://bugs.webkit.org/show_bug.cgi?id=168321

Reviewed by Michael Catanzaro.

The additionalArgument --default-cmake-features is used both to
skip the JHBuild (InstallGtkDependencies) build step and to build
with the default features from the CMake config.

  • BuildSlaveSupport/build.webkit.org-config/config.json:
  • BuildSlaveSupport/build.webkit.org-config/master.cfg:

(Factory.init):

  • BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py:
4:08 AM Changeset in webkit [212428] by Carlos Garcia Campos
  • 6 edits in trunk/Source/WebCore

[GTK] Images are never read from the clipboard
https://bugs.webkit.org/show_bug.cgi?id=168419

Reviewed by Sergio Villar Senin.

We write images in the clipboard, but we don't read them.

Fixes: editing/pasteboard/paste-image-using-image-data.html

  • editing/Editor.cpp:

(WebCore::Editor::createFragmentForImageAndURL): Moved from EditorMac.mm since it's cross-platform code.

  • editing/Editor.h:
  • editing/gtk/EditorGtk.cpp:

(WebCore::createFragmentFromPasteboardData): Check if there's an image in the selection, and use
Editor::createFragmentForImageAndURL in that case.

  • editing/mac/EditorMac.mm:

(WebCore::Editor::createFragmentForImageAndURL): Deleted.

  • platform/gtk/PasteboardHelper.cpp:

(WebCore::PasteboardHelper::getClipboardContents): Check also if there's an image in the clipboard.

2:17 AM Changeset in webkit [212427] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebInspectorUI

Web Inspector: popovers shouldn't be dismissed when Web Inspector window is dragged
https://bugs.webkit.org/show_bug.cgi?id=166935

Patch by Devin Rousso <Devin Rousso> on 2017-02-16
Reviewed by Joseph Pecoraro.

  • UserInterface/Base/Main.js:

(WebInspector.contentLoaded):
(WebInspector._mouseDown): Created.
(WebInspector._dockedResizerMouseDown):
(WebInspector._moveWindowMouseDown):
Applies Popover.EventPreventDismissSymbol whenever a mousedown event is fired for an element
that controls the positioning or size of the WebInspector window.

  • UserInterface/Views/Popover.js:

(WebInspector.Popover.prototype._handleEvent):
(WebInspector.Popover.EventPreventDismissSymbol):
Do not dismiss the popover if Popover.EventPreventDismissSymbol is applied to the event.

1:58 AM Changeset in webkit [212426] by Carlos Garcia Campos
  • 1 edit
    1 add in trunk/Source/JavaScriptCore

Unreviewed. Fix the build after r212424.

Add missing file.

  • inspector/remote/RemoteInspector.cpp: Added.

(Inspector::RemoteInspector::startDisabled):
(Inspector::RemoteInspector::nextAvailableTargetIdentifier):
(Inspector::RemoteInspector::registerTarget):
(Inspector::RemoteInspector::unregisterTarget):
(Inspector::RemoteInspector::updateTarget):
(Inspector::RemoteInspector::updateClientCapabilities):
(Inspector::RemoteInspector::setRemoteInspectorClient):
(Inspector::RemoteInspector::setupFailed):
(Inspector::RemoteInspector::setupCompleted):
(Inspector::RemoteInspector::waitingForAutomaticInspection):
(Inspector::RemoteInspector::clientCapabilitiesDidChange):
(Inspector::RemoteInspector::stop):
(Inspector::RemoteInspector::listingForTarget):
(Inspector::RemoteInspector::updateHasActiveDebugSession):

Feb 15, 2017:

11:56 PM Changeset in webkit [212425] by Yusuke Suzuki
  • 7 edits in trunk/Source/JavaScriptCore

[JSC] Drop PassRefPtr in bytecompiler/
https://bugs.webkit.org/show_bug.cgi?id=168374

Reviewed by Sam Weinig.

This patch drops PassRefPtr in bytecompiler directory.
We carefully change this to Ref<>. And we use Ref<Label>
as much as possible instead of using RefPtr<Label>.
And use Label& instead of Label* as much as possible.

Currently we do not apply this change for RefPtr<RegisterID>,
to reduce the size of this patch.

  • bytecompiler/BytecodeGenerator.cpp:

(JSC::BytecodeGenerator::BytecodeGenerator):
(JSC::BytecodeGenerator::initializeDefaultParameterValuesAndSetupFunctionScopeStack):
(JSC::BytecodeGenerator::newLabelScope):
(JSC::BytecodeGenerator::newLabel):
(JSC::BytecodeGenerator::newEmittedLabel):
Introduce a new helper function, which returns new label that is emitted right here.

(JSC::BytecodeGenerator::emitLabel):
(JSC::BytecodeGenerator::emitJump):
(JSC::BytecodeGenerator::emitJumpIfTrue):
(JSC::BytecodeGenerator::emitJumpIfFalse):
(JSC::BytecodeGenerator::emitJumpIfNotFunctionCall):
(JSC::BytecodeGenerator::emitJumpIfNotFunctionApply):
Drop returning Ref<Label> since nobody uses it.

(JSC::BytecodeGenerator::emitGetByVal):
(JSC::BytecodeGenerator::emitExpectedFunctionSnippet):
(JSC::BytecodeGenerator::emitCall):
(JSC::BytecodeGenerator::emitReturn):
(JSC::BytecodeGenerator::emitConstruct):
(JSC::BytecodeGenerator::pushFinallyControlFlowScope):
(JSC::BytecodeGenerator::breakTarget):
(JSC::BytecodeGenerator::pushTry):
(JSC::BytecodeGenerator::popTry):
(JSC::prepareJumpTableForSwitch):
(JSC::prepareJumpTableForStringSwitch):
(JSC::BytecodeGenerator::endSwitch):
(JSC::BytecodeGenerator::emitEnumeration):
(JSC::BytecodeGenerator::emitIteratorNext):
(JSC::BytecodeGenerator::emitIteratorNextWithValue):
(JSC::BytecodeGenerator::emitIteratorClose):
(JSC::BytecodeGenerator::pushIndexedForInScope):
(JSC::BytecodeGenerator::pushStructureForInScope):
(JSC::BytecodeGenerator::invalidateForInContextForLocal):
(JSC::BytecodeGenerator::emitRequireObjectCoercible):
(JSC::BytecodeGenerator::emitYieldPoint):
(JSC::BytecodeGenerator::emitYield):
(JSC::BytecodeGenerator::emitDelegateYield):
(JSC::BytecodeGenerator::emitJumpViaFinallyIfNeeded):
(JSC::BytecodeGenerator::emitReturnViaFinallyIfNeeded):
(JSC::BytecodeGenerator::emitFinallyCompletion):
(JSC::BytecodeGenerator::emitJumpIf):

  • bytecompiler/BytecodeGenerator.h:

FinallyJump, FinallyContext, TryData, TryContext and TryRange hold Ref<Label>
instead of RefPtr<Label>. They are never nullptr.

(JSC::FinallyJump::FinallyJump):
(JSC::FinallyContext::FinallyContext):
(JSC::FinallyContext::registerJump):
(JSC::BytecodeGenerator::emitNodeInConditionContext):
(JSC::BytecodeGenerator::emitNodeForLeftHandSide):

  • bytecompiler/Label.h:

Make Label noncopyable.

  • bytecompiler/LabelScope.h:

(JSC::LabelScope::LabelScope):
(JSC::LabelScope::breakTarget):
breakTarget always returns Label&. On the other hand, continueTarget may be nullptr.
So it returns Label*.

  • bytecompiler/NodesCodegen.cpp:

(JSC::ExpressionNode::emitBytecodeInConditionContext):
(JSC::ConstantNode::emitBytecodeInConditionContext):
(JSC::FunctionCallValueNode::emitBytecode):
(JSC::CallFunctionCallDotNode::emitBytecode):
(JSC::ApplyFunctionCallDotNode::emitBytecode):
(JSC::LogicalNotNode::emitBytecodeInConditionContext):
(JSC::BinaryOpNode::emitBytecodeInConditionContext):
(JSC::InstanceOfNode::emitBytecode):
(JSC::LogicalOpNode::emitBytecode):
(JSC::LogicalOpNode::emitBytecodeInConditionContext):
(JSC::ConditionalNode::emitBytecode):
(JSC::IfElseNode::emitBytecode):
(JSC::DoWhileNode::emitBytecode):
(JSC::WhileNode::emitBytecode):
(JSC::ForNode::emitBytecode):
(JSC::ForInNode::emitBytecode):
(JSC::ContinueNode::trivialTarget):
(JSC::ContinueNode::emitBytecode):
(JSC::BreakNode::trivialTarget):
(JSC::CaseBlockNode::emitBytecodeForBlock):
(JSC::TryNode::emitBytecode):
(JSC::FunctionNode::emitBytecode):
(JSC::ClassExprNode::emitBytecode):
(JSC::assignDefaultValueIfUndefined):
(JSC::ArrayPatternNode::bindValue):
Use Ref<Label> and Label&.

  • parser/Nodes.h:
11:40 PM Changeset in webkit [212424] by achristensen@apple.com
  • 11 edits
    1 copy
    4 deletes in trunk/Source

Unreviewed, rolling out r212394.

Fixed iOS WebInspector

Reverted changeset:

"Unreviewed, rolling out r212169."
https://bugs.webkit.org/show_bug.cgi?id=166681
http://trac.webkit.org/changeset/212394

10:14 PM Changeset in webkit [212423] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebInspectorUI

Web Inspector: Request headers when copied & pasted should follow HTTP format, colon instead of tab
https://bugs.webkit.org/show_bug.cgi?id=168155

Patch by Devin Rousso <Devin Rousso> on 2017-02-15
Reviewed by Matt Baker.

  • UserInterface/Views/DataGrid.js:

(WebInspector.DataGrid):
(WebInspector.DataGrid.prototype.set copyTextDelimiter):
(WebInspector.DataGrid.prototype._copyTextForDataGridNode):
(WebInspector.DataGrid.prototype._copyTextForDataGridHeaders):

  • UserInterface/Views/ResourceDetailsSidebarPanel.js:

(WebInspector.ResourceDetailsSidebarPanel.prototype._createNameValueDataGrid):
Allow instances of DataGrid to change the delimiter between items when copying rows.

9:53 PM Changeset in webkit [212422] by matthew_hanson@apple.com
  • 2 edits in tags/Safari-604.1.6/Source/WebCore

Merge r212420. <rdar://problem/30547188> REGRESSION (212311): Media player crashes on Facebook.com

9:00 PM Changeset in webkit [212421] by rniwa@webkit.org
  • 2 edits
    1 delete in trunk/Websites/perf.webkit.org

Update ReadMe.md and merge it with Install.md
https://bugs.webkit.org/show_bug.cgi?id=168405

Reviewed by Michael Catanzaro.

Merged Install.md and ReadMe.md into one file.

  • Install.md: Removed.
  • ReadMe.md: Merged Install.md at the top and updated the rest of the content.
8:25 PM Changeset in webkit [212420] by jer.noble@apple.com
  • 2 edits in trunk/Source/WebCore

REGRESSION (r212311): NULL-dereference in HTMLMediaElement::prepareToPlay()
https://bugs.webkit.org/show_bug.cgi?id=168404
<rdar://problem/30547188>

Reviewed by Brian Weinstein.

Prior to r212311, m_player was always guaranteed to be initialized when calling
prepareToPlay(). r212311 began calling prepareToPlay() on a subsequent run-loop iteration
after creating m_player. So now check whether m_player is NULL before calling methods on it.

  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::prepareToPlay):

8:23 PM Changeset in webkit [212419] by commit-queue@webkit.org
  • 2 edits in trunk/Source/JavaScriptCore

MIPS: add missing implementations of load8SignedExtendTo32()

JSC: missing implementations of MacroAssemblerMIPS::load8SignedExtendTo32()
https://bugs.webkit.org/show_bug.cgi?id=168350

Patch by Guillaume Emont <guijemont@igalia.com> on 2017-02-15
Reviewed by Yusuke Suzuki.

  • assembler/MacroAssemblerMIPS.h:

(JSC::MacroAssemblerMIPS::load8SignedExtendTo32):
Add missing implementations

6:01 PM Changeset in webkit [212418] by eric.carlson@apple.com
  • 10 edits in trunk/Source

[MediaStream] delete CaptureDeviceInfo struct
https://bugs.webkit.org/show_bug.cgi?id=168395

Source/WebCore:

The CaptureDeviceInfo struct and CaptureDevice class were almost identical, so
add an "enabled" field to the later, delete the former, and switch all uses of
CaptureDeviceInfo to CaptureDevice.

Do some minor drive-by cleanup of AVCaptureDeviceManager::refreshCaptureDevices
and CaptureDeviceManager::captureDeviceFromDeviceID.

Reviewed by Sam Weinig.

No new tests, no behavior change.

  • Modules/mediastream/MediaDevicesRequest.cpp:

(WebCore::MediaDevicesRequest::start): SourceKind -> DeviceType

  • platform/mediastream/CaptureDevice.h:

(WebCore::CaptureDevice::CaptureDevice):
(WebCore::CaptureDevice::type): Renamed from kind.
(WebCore::CaptureDevice::setType):
(WebCore::CaptureDevice::enabled): Added.
(WebCore::CaptureDevice::setEnabled):
(WebCore::CaptureDevice::kind): Deleted.
(WebCore::CaptureDevice::setKind): Deleted.

  • platform/mediastream/CaptureDeviceManager.cpp:

(CaptureDeviceManager::getSourcesInfo):
(CaptureDeviceManager::captureDeviceFromDeviceID): Don't call sourceWithUID.
(CaptureDeviceManager::bestSourcesForTypeAndConstraints):
(CaptureDeviceManager::sourceWithUID):

  • platform/mediastream/CaptureDeviceManager.h:

(WebCore::CaptureDeviceManager::refreshCaptureDevices):
(WebCore::CaptureDeviceManager::refreshCaptureDeviceList): Deleted.

  • platform/mediastream/mac/AVCaptureDeviceManager.h:
  • platform/mediastream/mac/AVCaptureDeviceManager.mm:

(WebCore::AVCaptureDeviceManager::captureDevices):
(WebCore::deviceIsAvailable):
(WebCore::AVCaptureDeviceManager::refreshCaptureDevices):
(WebCore::AVCaptureDeviceManager::createMediaSourceForCaptureDeviceWithConstraints):
(WebCore::AVCaptureDeviceManager::deviceConnected):
(WebCore::AVCaptureDeviceManager::deviceDisconnected):
(WebCore::AVCaptureDeviceManager::captureDeviceList): Deleted.
(WebCore::shouldConsiderDeviceInDeviceList): Deleted.
(WebCore::AVCaptureDeviceManager::refreshCaptureDeviceList): Deleted.

  • platform/mock/MockRealtimeMediaSource.cpp:

(WebCore::MockRealtimeMediaSource::audioDeviceInfo):
(WebCore::MockRealtimeMediaSource::videoDeviceInfo):

Source/WebKit2:

Reviewed by Sam Weinig.

  • Shared/WebCoreArgumentCoders.cpp:

(IPC::ArgumentCoder<CaptureDevice>::encode):
(IPC::ArgumentCoder<CaptureDevice>::decode):

5:17 PM Changeset in webkit [212417] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Mark inspector/debugger/search-scripts.html as flaky.
https://bugs.webkit.org/show_bug.cgi?id=168399

Unreviewed test gardening.

  • platform/mac/TestExpectations:
5:07 PM Changeset in webkit [212416] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Mark pageoverlay/overlay-remove-reinsert-view.html as flaky on ios-simulator.
https://bugs.webkit.org/show_bug.cgi?id=168053

Unreviewed test gardening.

  • platform/ios-simulator/TestExpectations:
4:59 PM Changeset in webkit [212415] by matthew_hanson@apple.com
  • 1 copy in tags/Safari-603.1.29

Tag Safari-603.1.29.

4:58 PM Changeset in webkit [212414] by matthew_hanson@apple.com
  • 1 copy in tags/Safari-603.1.28

Tag Safari-603.1.28.

4:54 PM Changeset in webkit [212413] by achristensen@apple.com
  • 3 edits in trunk/Source/ThirdParty/libwebrtc

Fix ASAN build after r212401
https://bugs.webkit.org/show_bug.cgi?id=168398

  • Source/webrtc/media/engine/webrtcvideocapturer.cc:
  • libwebrtc.xcodeproj/project.pbxproj:
4:42 PM Changeset in webkit [212412] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Rebaseline fast/text/font-face-javascript.html after r212405.

Unreviewed test gardening.

  • fast/text/font-face-javascript-expected.txt:
4:30 PM Changeset in webkit [212411] by jmarcell@apple.com
  • 1 copy in tags/Safari-604.1.6

Tag Safari-604.1.6.

4:30 PM Changeset in webkit [212410] by jmarcell@apple.com
  • 1 delete in tags/safari-604.1.6

Deleting tag.

4:13 PM Changeset in webkit [212409] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Mark media/modern-media-controls/macos-fullscreen-media-controls/macos-fullscreen-media-controls-buttons-containers-styles.html as flaky.
https://bugs.webkit.org/show_bug.cgi?id=167589

Unreviewed test gardening.

  • platform/mac-wk1/TestExpectations:
3:49 PM Changeset in webkit [212408] by andersca@apple.com
  • 2 edits in trunk/Source/WebKit2

Try again.

  • WebProcess/WebCoreSupport/gtk/WebDragClientGtk.cpp:

(WebKit::WebDragClient::startDrag):

3:45 PM Changeset in webkit [212407] by andersca@apple.com
  • 2 edits in trunk/Source/WebKit/win

Another attempt at fixing the Windows build.

  • WebCoreSupport/WebDragClient.cpp:

(WebDragClient::startDrag):

3:43 PM Changeset in webkit [212406] by andersca@apple.com
  • 2 edits in trunk/Source/WebKit2

Attempt to fix the GTK+ build.

  • WebProcess/WebCoreSupport/gtk/WebDragClientGtk.cpp:

(WebKit::WebDragClient::startDrag):

3:38 PM Changeset in webkit [212405] by weinig@apple.com
  • 6 edits in trunk

[WebIDL] Remove custom conversion from FontFace code by using a Variant
https://bugs.webkit.org/show_bug.cgi?id=168384

Reviewed by Alex Christensen.

Source/WebCore:

Match the font face spec and use a union rather than any in the FontFace constructor.

Test: Added additional cases to fast/text/font-face-javascript.html.

  • css/FontFace.cpp:

(WebCore::FontFace::create):

  • css/FontFace.h:
  • css/FontFace.idl:

LayoutTests:

  • fast/text/font-face-javascript.html:
3:37 PM Changeset in webkit [212404] by Simon Fraser
  • 3 edits in trunk/Source/WebKit2

Clean up WebProcessCreationParameters a little
https://bugs.webkit.org/show_bug.cgi?id=168349

Reviewed by Alex Christensen.

Initialize the data members better, and rearrange to group the types in a slightly more space-efficient manner.

  • Shared/WebProcessCreationParameters.cpp:

(WebKit::WebProcessCreationParameters::WebProcessCreationParameters):

  • Shared/WebProcessCreationParameters.h:
3:32 PM Changeset in webkit [212403] by Ryan Haddad
  • 2 edits in branches/safari-603-branch/Source/WebCore

Merge r212238. rdar://problem/30494165

3:29 PM Changeset in webkit [212402] by aakash_jain@apple.com
  • 2 edits in trunk/Source/WebKit

revert DOMTextEvent.h and DOMHTMLCanvasElement.h to private header
https://bugs.webkit.org/show_bug.cgi?id=168393

Reviewed by Dan Bernstein.

Reverting a seemingly accidental change from r204717.

  • WebKit.xcodeproj/project.pbxproj:
3:23 PM Changeset in webkit [212401] by achristensen@apple.com
  • 29 edits
    1 add in trunk/Source/ThirdParty/libwebrtc

Make libwebrtc.dylib
https://bugs.webkit.org/show_bug.cgi?id=168335

Reviewed by Dan Bernstein.

We were building libwebrtc as a static library, which would prevent us from weak linking with it.
We need to explicitly export what we use from WebCore or WebKit2, and RTCLogging.mm now needs to
be built on Mac, so we make it not automatically reference counted to make it work on 32-bit El Capitan.

  • Configurations/libwebrtc.xcconfig:
  • Source/webrtc/api/jsep.h:
  • Source/webrtc/api/mediastream.h:
  • Source/webrtc/api/notifier.h:

(webrtc::Notifier::Notifier): Deleted.
(webrtc::Notifier::RegisterObserver): Deleted.
(webrtc::Notifier::UnregisterObserver): Deleted.
(webrtc::Notifier::FireOnChanged): Deleted.

  • Source/webrtc/api/peerconnectioninterface.h:
  • Source/webrtc/base/asyncpacketsocket.h:
  • Source/webrtc/base/asyncresolverinterface.h:

(rtc::AsyncResolverInterface::address): Deleted.

  • Source/webrtc/base/copyonwritebuffer.h:

(rtc::CopyOnWriteBuffer::CopyOnWriteBuffer): Deleted.
(rtc::CopyOnWriteBuffer::data): Deleted.
(rtc::CopyOnWriteBuffer::cdata): Deleted.
(rtc::CopyOnWriteBuffer::size): Deleted.
(rtc::CopyOnWriteBuffer::capacity): Deleted.
(rtc::CopyOnWriteBuffer::operator=): Deleted.
(rtc::CopyOnWriteBuffer::operator!=): Deleted.
(rtc::CopyOnWriteBuffer::operator[]): Deleted.
(rtc::CopyOnWriteBuffer::SetData): Deleted.
(rtc::CopyOnWriteBuffer::AppendData): Deleted.
(rtc::CopyOnWriteBuffer::swap): Deleted.
(rtc::CopyOnWriteBuffer::IsConsistent): Deleted.

  • Source/webrtc/base/event.h:
  • Source/webrtc/base/export.h: Added.
  • Source/webrtc/base/helpers.h:
  • Source/webrtc/base/ipaddress.h:

(rtc::IPAddress::IPAddress): Deleted.
(rtc::IPAddress::~IPAddress): Deleted.
(rtc::IPAddress::operator=): Deleted.
(rtc::IPAddress::family): Deleted.

  • Source/webrtc/base/location.h:

(rtc::Location::function_name): Deleted.
(rtc::Location::file_and_line): Deleted.

  • Source/webrtc/base/messagehandler.h:

(rtc::MessageHandler::MessageHandler): Deleted.

  • Source/webrtc/base/network.h:

(rtc::NetworkManagerBase::ipv6_enabled): Deleted.
(rtc::NetworkManagerBase::set_ipv6_enabled): Deleted.
(rtc::NetworkManagerBase::set_max_ipv6_networks): Deleted.
(rtc::NetworkManagerBase::max_ipv6_networks): Deleted.
(rtc::NetworkManagerBase::set_enumeration_permission): Deleted.
(rtc::BasicNetworkManager::started): Deleted.
(rtc::BasicNetworkManager::set_network_ignore_list): Deleted.
(rtc::BasicNetworkManager::set_ignore_non_default_routes): Deleted.
(rtc::Network::default_local_address_provider): Deleted.
(rtc::Network::set_default_local_address_provider): Deleted.
(rtc::Network::name): Deleted.
(rtc::Network::description): Deleted.
(rtc::Network::prefix): Deleted.
(rtc::Network::prefix_length): Deleted.
(rtc::Network::key): Deleted.
(rtc::Network::ip): Deleted.
(rtc::Network::AddIP): Deleted.
(rtc::Network::GetIPs): Deleted.
(rtc::Network::ClearIPs): Deleted.
(rtc::Network::scope_id): Deleted.
(rtc::Network::set_scope_id): Deleted.
(rtc::Network::ignored): Deleted.
(rtc::Network::set_ignored): Deleted.
(rtc::Network::type): Deleted.
(rtc::Network::set_type): Deleted.
(rtc::Network::GetCost): Deleted.
(rtc::Network::id): Deleted.
(rtc::Network::set_id): Deleted.
(rtc::Network::preference): Deleted.
(rtc::Network::set_preference): Deleted.
(rtc::Network::active): Deleted.
(rtc::Network::set_active): Deleted.

  • Source/webrtc/base/proxyinfo.h:
  • Source/webrtc/base/refcountedobject.h:

(rtc::RefCountedObject::RefCountedObject): Deleted.
(rtc::RefCountedObject::AddRef): Deleted.
(rtc::RefCountedObject::Release): Deleted.
(rtc::RefCountedObject::HasOneRef): Deleted.
(rtc::RefCountedObject::~RefCountedObject): Deleted.

  • Source/webrtc/base/socketaddress.h:

(rtc::SocketAddress::hostname): Deleted.
(rtc::SocketAddress::family): Deleted.
(rtc::SocketAddress::scope_id): Deleted.
(rtc::SocketAddress::SetScopeID): Deleted.
(rtc::SocketAddress::operator !=): Deleted.

  • Source/webrtc/base/thread.h:
  • Source/webrtc/common_types.h:
  • Source/webrtc/common_video/include/video_frame_buffer.h:

(webrtc::I420Buffer::Copy): Deleted.
(webrtc::I420Buffer::CropAndScaleFrom): Deleted.
(webrtc::I420Buffer::ScaleFrom): Deleted.

  • Source/webrtc/common_video/libyuv/include/webrtc_libyuv.h:
  • Source/webrtc/p2p/base/basicpacketsocketfactory.h:
  • Source/webrtc/p2p/client/basicportallocator.h:

(cricket::BasicPortAllocator::network_ignore_mask): Deleted.
(cricket::BasicPortAllocator::network_manager): Deleted.
(cricket::BasicPortAllocator::socket_factory): Deleted.

  • Source/webrtc/sdk/objc/Framework/Classes/RTCLogging.mm:

(RTCFileName):

  • Source/webrtc/sdk/objc/Framework/Classes/videotoolboxvideocodecfactory.h:
  • Source/webrtc/video_frame.h:

(webrtc::VideoFrame::timestamp_us): Deleted.
(webrtc::VideoFrame::set_timestamp_us): Deleted.
(webrtc::VideoFrame::set_timestamp): Deleted.
(webrtc::VideoFrame::timestamp): Deleted.
(webrtc::VideoFrame::transport_frame_id): Deleted.
(webrtc::VideoFrame::set_ntp_time_ms): Deleted.
(webrtc::VideoFrame::ntp_time_ms): Deleted.
(webrtc::VideoFrame::rotation): Deleted.
(webrtc::VideoFrame::set_rotation): Deleted.
(webrtc::VideoFrame::set_render_time_ms): Deleted.
(webrtc::VideoFrame::render_time_ms): Deleted.
(webrtc::VideoFrame::is_texture): Deleted.

  • build: Added.
  • build/Debug: Added.
  • libwebrtc.xcodeproj/project.pbxproj:
2:48 PM Changeset in webkit [212400] by commit-queue@webkit.org
  • 6 edits in trunk/Source/WebInspectorUI

Web Inspector: Split console should be allowed when docked bottom on Elements/Resources/Debugger/Storage tabs
https://bugs.webkit.org/show_bug.cgi?id=168385

Patch by Devin Rousso <Devin Rousso> on 2017-02-15
Reviewed by Timothy Hatcher.

  • UserInterface/Base/Main.js:

(WebInspector.updateDockedState):
If the new docked configuration does not support the split console, hide it.

  • UserInterface/Views/DebuggerTabContentView.js:

(WebInspector.DebuggerTabContentView.prototype.get supportsSplitContentBrowser):

  • UserInterface/Views/ElementsTabContentView.js:

(WebInspector.ElementsTabContentView.prototype.get supportsSplitContentBrowser):

  • UserInterface/Views/ResourcesTabContentView.js:

(WebInspector.ResourcesTabContentView.prototype.get supportsSplitContentBrowser):

  • UserInterface/Views/StorageTabContentView.js:

(WebInspector.StorageTabContentView.prototype.get supportsSplitContentBrowser):

2:44 PM Changeset in webkit [212399] by jer.noble@apple.com
  • 13 edits
    2 adds in trunk

Disabled Media Sources should render black/silence
https://bugs.webkit.org/show_bug.cgi?id=168281
Source/WebCore:

Reviewed by Eric Carlson.

Test: webrtc/video-disabled-black.html

Pass the enabled flag setting down from the MediaStreamTrackPrivate to its underlying
source, including RealtimeMediaSource and RealtimeOutgoingAudio/VideoSource. When either
enabled is cleared or muted is set, generate empty (black or silent) media, as opposed to
pausing media or (worse) continuing to send generated media.

  • platform/mediastream/MediaStreamTrackPrivate.cpp:

(WebCore::MediaStreamTrackPrivate::setEnabled):
(WebCore::MediaStreamTrackPrivate::sourceEnabledChanged):

  • platform/mediastream/MediaStreamTrackPrivate.h:
  • platform/mediastream/RealtimeMediaSource.cpp:

(WebCore::RealtimeMediaSource::setEnabled):

  • platform/mediastream/RealtimeMediaSource.h:

(WebCore::RealtimeMediaSource::enabled):

  • platform/mediastream/mac/AudioTrackPrivateMediaStreamCocoa.h:
  • platform/mediastream/mac/MockRealtimeAudioSourceMac.mm:

(WebCore::MockRealtimeAudioSourceMac::render):

  • platform/mediastream/mac/RealtimeOutgoingAudioSource.cpp:

(WebCore::RealtimeOutgoingAudioSource::sourceMutedChanged):
(WebCore::RealtimeOutgoingAudioSource::sourceEnabledChanged):
(WebCore::RealtimeOutgoingAudioSource::pullAudioData):

  • platform/mediastream/mac/RealtimeOutgoingAudioSource.h:
  • platform/mediastream/mac/RealtimeOutgoingVideoSource.cpp:

(WebCore::RealtimeOutgoingVideoSource::sourceMutedChanged):
(WebCore::RealtimeOutgoingVideoSource::sourceEnabledChanged):
(WebCore::RealtimeOutgoingVideoSource::videoSampleAvailable):

  • platform/mediastream/mac/RealtimeOutgoingVideoSource.h:
  • platform/mock/MockRealtimeVideoSource.cpp:

(WebCore::MockRealtimeVideoSource::generateFrame):

LayoutTests:

<rdar://problem/30508003>

Reviewed by Eric Carlson.

  • webrtc/video-disabled-black-expected.txt: Added.
  • webrtc/video-disabled-black.html: Added.
2:43 PM Changeset in webkit [212398] by jer.noble@apple.com
  • 2 edits in trunk/Source/WebKit2

REGRESSION(r183937): Fullscreen Exit animation missing mask
https://bugs.webkit.org/show_bug.cgi?id=168360

Reviewed by Eric Carlson.

In r183937, the fullscreen window's clip layer has it's mask removed when the enter
fullscreen animation completes, allowing low-power video playback mode to be entered. But
this breaks the exit fullscreen animaiton, which assumes a mask is present. Abstract the
mask creation code out into a static helper method, and use it at the beginning of the exit
fullscreen animation to re-create the mask before adding animations to it.

  • UIProcess/mac/WKFullScreenWindowController.mm:

(createMask):
(-[WKFullScreenWindowController _startEnterFullScreenAnimationWithDuration:]):
(-[WKFullScreenWindowController _startExitFullScreenAnimationWithDuration:]):

2:43 PM Changeset in webkit [212397] by achristensen@apple.com
  • 6 edits in trunk/Source/ThirdParty/libwebrtc

[WebRTC] Remove libwebrtc ObjectiveC files that use UIKit
https://bugs.webkit.org/show_bug.cgi?id=168392

Patch by Youenn Fablet <youenn@apple.com> on 2017-02-15
Reviewed by Alex Christensen.

Removing default AudioDeviceModule as WebKit is providing its own.
Removing checks for active application in H264 codec as WebKit should be made responsible for that.
Removing no longer needed ObjectiveC files.

  • Configurations/libwebrtc.xcconfig:
  • Configurations/libwebrtcpcrtc.xcconfig:
  • Source/webrtc/sdk/objc/Framework/Classes/h264_video_toolbox_decoder.cc:
  • Source/webrtc/sdk/objc/Framework/Classes/h264_video_toolbox_encoder.mm:

(webrtc::H264VideoToolboxEncoder::Encode):

  • libwebrtc.xcodeproj/project.pbxproj:
2:42 PM Changeset in webkit [212396] by Lucas Forschler
  • 12 edits in trunk/Tools

https://bugs.webkit.org/show_bug.cgi?id=168386
Remove EFL from build.webkit.org

Reviewed by Alex Christensen

  • BuildSlaveSupport/build.webkit.org-config/config.json:
  • BuildSlaveSupport/build.webkit.org-config/master.cfg:

(DeleteStaleBuildFiles.start):
(appendCustomBuildFlags):
(RunWebKitTests.start):
(RunBuiltinsTests):
(Factory.init):
(TestFactory.init):
(loadBuilderConfig):
(InstallEflDependencies): Deleted.
(RunEflAPITests): Deleted.

  • BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py:
  • BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/config.js:
  • BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BubbleQueueServer.js:

(BubbleQueueServer):

  • BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Dashboard.js:
  • BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/MetricsAnalyzer.js:

(Analyzer.prototype._triggeringQueue):

  • BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/WebKitBuildbot.js:

(WebKitBuildbot):

  • BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Styles/Main.css:

(table.queue-grid tr.platform.linux-efl img.logo): Deleted.

  • BuildSlaveSupport/build.webkit.org-config/templates/root.html:
  • BuildSlaveSupport/build.webkit.org-config/wkbuild.py:

(_should_file_trigger_build):

2:36 PM Changeset in webkit [212395] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Remove ElCapitan flag from flaky test media/modern-media-controls/airplay-support/airplay-support.html.
https://bugs.webkit.org/show_bug.cgi?id=167442

Unreviewed test gardening.

2:31 PM Changeset in webkit [212394] by achristensen@apple.com
  • 12 edits
    4 copies
    2 deletes in trunk

Unreviewed, rolling out r212169.

Broke iOS WebInspector

Reverted changeset:

"WebInspector: refactor RemoteInspector to move cocoa specific
code to their own files"
https://bugs.webkit.org/show_bug.cgi?id=166681
http://trac.webkit.org/changeset/212169

1:50 PM Changeset in webkit [212393] by Wenson Hsieh
  • 2 edits in trunk/Source/WebCore

Editing history scripts should not add the contenteditable attribute or override key events
https://bugs.webkit.org/show_bug.cgi?id=168389
<rdar://problem/30529945>

Reviewed by Dan Bernstein.

Clients that hook into editing history tracking should handle setting the contenteditable attribute on the body
rather than have the script add it to the body. Additionally, this script should NOT be overriding any keydown
events. These were initially added for compatibility with a test harness early on, and should have been removed
earlier.

  • Scripts/DumpEditingHistory.js:
1:22 PM Changeset in webkit [212392] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Update TestExpectations for resourceLoadStatistics tests.

Unreviewed test gardening.

  • platform/wk2/TestExpectations:
1:22 PM Changeset in webkit [212391] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Skip fast/frames/exponential-frames.html on ios-simulator

Unreviewed test gardening.

  • platform/ios-simulator/TestExpectations:
12:49 PM Changeset in webkit [212390] by andersca@apple.com
  • 2 edits in trunk/Source/WebKit/win

Try to fix the Windows build.

  • WebCoreSupport/WebDragClient.h:
12:10 PM Changeset in webkit [212389] by matthew_hanson@apple.com
  • 5 edits in branches/safari-603-branch/Source

Versioning.

12:03 PM Changeset in webkit [212388] by matthew_hanson@apple.com
  • 6 edits in trunk/Source

Versioning.

12:01 PM Changeset in webkit [212387] by Jonathan Bedard
  • 2 edits in trunk/Tools

webkitpy: Fix DarwinPort._get_crash_log()
https://bugs.webkit.org/show_bug.cgi?id=168372
<rdar://problem/30535156>

Reviewed by Daniel Bates.

Callers of _get_crash_log expect a pair to be returned and do not check it's return value.
DarwinPort should return the expected return value for _get_crash_log.

  • Scripts/webkitpy/port/darwin.py:

(DarwinPort._get_crash_log): Call parent class's implementation of _get_crash_log.

11:55 AM Changeset in webkit [212386] by Wenson Hsieh
  • 2 edits in trunk/Source/WebKit/mac

Fix the build after r212379

Rubber-stamped by Anders Carlsson.

  • WebCoreSupport/WebDragClient.mm:

(WebDragClient::startDrag):

11:42 AM Changeset in webkit [212385] by jmarcell@apple.com
  • 1 copy in tags/safari-604.1.6

Tag safari-604.1.6.

11:42 AM Changeset in webkit [212384] by jer.noble@apple.com
  • 2 edits in trunk/Source/WebCore

Pass "RequiresCustomURLLoading" in AVURLAsset options dictionary
https://bugs.webkit.org/show_bug.cgi?id=168381

Reviewed by Eric Carlson.

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

(WebCore::MediaPlayerPrivateAVFoundationObjC::createAVAssetForURL):

11:24 AM Changeset in webkit [212383] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Skip fast/frames/exponential-frames.html.

Unreviewed test gardening.

  • platform/mac/TestExpectations:
11:24 AM Changeset in webkit [212382] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Remove Release flag from flaky test http/tests/xmlhttprequest/auth-reject-protection-space.html.
https://bugs.webkit.org/show_bug.cgi?id=163136

Unreviewed test gardening.

  • platform/mac-wk2/TestExpectations:
11:23 AM Changeset in webkit [212381] by Ryan Haddad
  • 2 edits in branches/safari-603-branch/LayoutTests

Merge r210898.

10:45 AM Changeset in webkit [212380] by andersca@apple.com
  • 2 edits in trunk/Source/WebCore

Fix build.

  • page/DragController.cpp:

(WebCore::DragController::doSystemDrag):

10:31 AM Changeset in webkit [212379] by andersca@apple.com
  • 14 edits in trunk/Source

Modernize DragClient::startDrag somewhat
https://bugs.webkit.org/show_bug.cgi?id=168379

Reviewed by Tim Horton.

Source/WebCore:

Change DragClient::startDrag to take a DragImage instead of a DragImageRef, and to pass along the source action
instead of whether it's a link or not.

  • loader/EmptyClients.cpp:
  • page/DragClient.h:
  • page/DragController.cpp:

(WebCore::DragController::startDrag):
(WebCore::DragController::doImageDrag):
(WebCore::DragController::doSystemDrag):

  • page/DragController.h:

Source/WebKit/mac:

Update for WebCore changes.

  • WebCoreSupport/WebDragClient.h:
  • WebCoreSupport/WebDragClient.mm:

(WebDragClient::startDrag):

Source/WebKit/win:

Update for WebCore changes.

  • WebCoreSupport/WebDragClient.cpp:

(WebDragClient::startDrag):

Source/WebKit2:

Update for WebCore changes.

  • WebProcess/WebCoreSupport/WebDragClient.cpp:

(WebKit::WebDragClient::startDrag):

  • WebProcess/WebCoreSupport/WebDragClient.h:
  • WebProcess/WebCoreSupport/mac/WebDragClientMac.mm:

(WebKit::WebDragClient::startDrag):

10:23 AM Changeset in webkit [212378] by Chris Dumez
  • 8 edits
    8 adds in trunk

Expose Symbol.toPrimitive / valueOf on Location instances
https://bugs.webkit.org/show_bug.cgi?id=168295

Reviewed by Geoffrey Garen, Keith Miller and Mark Lam.

LayoutTests/imported/w3c:

Import test coverage from upstream web-platform-tests.

  • web-platform-tests/html/browsers/history/the-location-interface/location-symbol-toprimitive-expected.txt: Added.
  • web-platform-tests/html/browsers/history/the-location-interface/location-symbol-toprimitive.html: Added.
  • web-platform-tests/html/browsers/history/the-location-interface/location-valueof-expected.txt: Added.
  • web-platform-tests/html/browsers/history/the-location-interface/location-valueof.html: Added.
  • web-platform-tests/html/browsers/history/the-location-interface/w3c-import.log:

Source/JavaScriptCore:

Cache origin objectProtoValueOf function on JSGlobalObject.

  • runtime/JSGlobalObject.cpp:

(JSC::JSGlobalObject::init):

  • runtime/JSGlobalObject.h:

(JSC::JSGlobalObject::objectProtoValueOfFunction):

Source/WebCore:

Expose Symbol.toPrimitive / valueOf on Location instances as per:

Firefox and Chrome already comply with the specification.

Tests: fast/dom/location-valueOf-after-object-prototype-update.html

fast/dom/location-valueOf-after-object-prototype-update2.html
imported/w3c/web-platform-tests/html/browsers/history/the-location-interface/location-symbol-toprimitive.html
imported/w3c/web-platform-tests/html/browsers/history/the-location-interface/location-valueof.html

  • bindings/scripts/CodeGeneratorJS.pm:

(GenerateImplementation):

LayoutTests:

Add test coverage for cases where the Object prototype has been updated before
the Location object is constructed.

  • fast/dom/location-valueOf-after-object-prototype-update-expected.txt: Added.
  • fast/dom/location-valueOf-after-object-prototype-update.html: Added.
  • fast/dom/location-valueOf-after-object-prototype-update2-expected.txt: Added.
  • fast/dom/location-valueOf-after-object-prototype-update2.html: Added.
10:22 AM Changeset in webkit [212377] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Mark media/modern-media-controls/media-controller/media-controller-resize.html as flaky.
https://bugs.webkit.org/show_bug.cgi?id=168378

Unreviewed test gardening.

  • platform/mac-wk1/TestExpectations:
10:13 AM Changeset in webkit [212376] by aakash_jain@apple.com
  • 10 edits in trunk/Source

Remove WebIOSEvent interface
https://bugs.webkit.org/show_bug.cgi?id=168368

Reviewed by Tim Horton.

Source/WebCore:

  • platform/ios/WebEvent.h: Removed WebIOSEvent.

Source/WebKit2:

  • Shared/NativeWebKeyboardEvent.h: Using WebEvent from WebCore instead of WebIOSEvent.
  • Shared/ios/NativeWebKeyboardEventIOS.mm: Ditto.
  • Shared/ios/WebIOSEventFactory.h: Ditto.
  • Shared/ios/WebIOSEventFactory.mm: Ditto.
  • UIProcess/ios/WKContentViewInteraction.h: Ditto.
  • UIProcess/ios/WKContentViewInteraction.mm: Ditto.
  • UIProcess/API/C/WKPage.cpp: Using WebEvent from WebKit.
10:12 AM Changeset in webkit [212375] by Chris Dumez
  • 8 edits in trunk

[iOS] Form Validation Bubble should be sensitive to Dynamic Type
https://bugs.webkit.org/show_bug.cgi?id=168291
<rdar://problem/30508593>

Reviewed by Tim Horton.

Source/WebCore:

Update ValidationBubble implementation on iOS to stop obeying the
minimum font size setting, given that this setting is not exposed
on iOS. Instead, we now rely on
[UIFont preferredFontForTextStyle:UIFontTextStyleCallout], which
will give us a font whose size obeys Dynamic Type [1] setting on iOS.

[1] https://developer.apple.com/ios/human-interface-guidelines/visual-design/typography/

No new tests, no easily testable.

  • platform/ios/ValidationBubbleIOS.mm:

(WebCore::ValidationBubble::ValidationBubble):

Tools:

Drop overridePreference() implementation in iOS's UIScriptController
as it was only used for the minimum font size setting and this setting
is not exposed on iOS.

  • DumpRenderTree/ios/UIScriptControllerIOS.mm:
  • TestRunnerShared/UIScriptContext/UIScriptController.cpp:

(WTR::UIScriptController::overridePreference):

  • WebKitTestRunner/ios/UIScriptControllerIOS.mm:

LayoutTests:

Skip fast/forms/validation-message-minimum-font-size.html on iOS now
that the ValidationBubble implementation no longer obeys the minimum
font size setting on iOS.

  • platform/ios-simulator/TestExpectations:
10:09 AM Changeset in webkit [212374] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Mark animations/trigger-container-scroll-empty.html as flaky.
https://bugs.webkit.org/show_bug.cgi?id=168089

Unreivewed test gardening.

  • platform/mac-wk2/TestExpectations:
10:06 AM Changeset in webkit [212373] by Ryan Haddad
  • 2 edits in branches/safari-603-branch/LayoutTests

Merge r211534.

9:58 AM Changeset in webkit [212372] by Jonathan Bedard
  • 2 edits in trunk/Tools

webkitpy: Memoize app_identifier_from_bundle for efficiency, call parent class for _get_crash_log
https://bugs.webkit.org/show_bug.cgi?id=168329
<rdar://problem/30518832>

Reviewed by Daniel Bates.

When testing on device, app_identifier_from_bundle is repeatedly called but the return value will
never change given the same input arguments. Memoize function for efficiency.

  • Scripts/webkitpy/port/darwin.py: Add memoized import.

(DarwinPort):
(DarwinPort.app_identifier_from_bundle): Memoize to avoid extra executions of PlistBuddy.

9:56 AM Changeset in webkit [212371] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Mark imported/w3c/web-platform-tests/media-source/SourceBuffer-abort-removed.html as flaky on macOS.
https://bugs.webkit.org/show_bug.cgi?id=167975

Unreviewed test gardening.

  • platform/mac/TestExpectations:
9:56 AM Changeset in webkit [212370] by Ryan Haddad
  • 3 edits in trunk/LayoutTests

Move TestExpectation from mac-wk1 to mac file.

Unreviewed test gardening.

  • platform/mac-wk1/TestExpectations:
  • platform/mac/TestExpectations:
9:56 AM Changeset in webkit [212369] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Mark inspector/dom-debugger/node-removed.html as flaky.
https://bugs.webkit.org/show_bug.cgi?id=154610

Unreviewed test gardening.

  • platform/mac/TestExpectations:
9:39 AM Changeset in webkit [212368] by Jonathan Bedard
  • 2 edits in trunk/Tools

webkitpy: Remove unused import from darwin.py
https://bugs.webkit.org/show_bug.cgi?id=168371

Reviewed by Alex Christensen.

  • Scripts/webkitpy/port/darwin.py: Remove unused 'time' module.
9:17 AM Changeset in webkit [212367] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Update TestExpectations for fast/frames/exponential-frames.html.

Unreviewed test gardening.

  • platform/mac-wk1/TestExpectations:
9:09 AM Changeset in webkit [212366] by Carlos Garcia Campos
  • 2 edits in trunk/LayoutTests

Unreviewed GTK+ gardening. Mark a11y and media tests currently failing.

  • platform/gtk/TestExpectations:
9:09 AM Changeset in webkit [212365] by Yusuke Suzuki
  • 67 edits in trunk/Source

[JSC] Drop PassRefPtr
https://bugs.webkit.org/show_bug.cgi?id=168320

Reviewed by Saam Barati.

Source/JavaScriptCore:

  • API/JSContextRef.cpp:

(JSGlobalContextCreateInGroup):
Use Ref<VM> from the factory function.

  • API/JSScriptRef.cpp:

(OpaqueJSScript::create):
Return Ref<> instead.

  • API/tests/JSONParseTest.cpp:

(testJSONParse):
Use Ref<VM>.

  • assembler/LinkBuffer.cpp:

(JSC::LinkBuffer::finalizeCodeWithoutDisassembly):
Use reference since we already perform null check.

  • assembler/MacroAssemblerCodeRef.h:

(JSC::MacroAssemblerCodeRef::MacroAssemblerCodeRef):
Take Ref<>&& instead of PassRefPtr<>.

  • bytecode/CallLinkInfo.h:

(JSC::CallLinkInfo::setStub):
(JSC::CallLinkInfo::setSlowStub):
Take Ref<>&& instead of PassRefPtr<>.

  • bytecode/CodeBlock.cpp:

(JSC::CodeBlock::CodeBlock):
Take RefPtr<SourceProvider>. Currently, the SourceProvider would be nullptr.
We will change it to Ref<SourceProvider> in https://bugs.webkit.org/show_bug.cgi?id=168325.

(JSC::CodeBlock::finishCreation):
Take Ref<TypeSet>&&.

  • bytecode/CodeBlock.h:

(JSC::CodeBlock::setJITCode):
Take Ref<>&& instead.

(JSC::CodeBlock::jitCode):
Return RefPtr<> instead.

  • bytecode/EvalCodeBlock.h:

(JSC::EvalCodeBlock::create):
Take RefPtr<>&& instead since SourceProvider woule be nullptr.

(JSC::EvalCodeBlock::EvalCodeBlock):

  • bytecode/FunctionCodeBlock.h:

(JSC::FunctionCodeBlock::create):
(JSC::FunctionCodeBlock::FunctionCodeBlock):
Take RefPtr<>&& instead since SourceProvider woule be nullptr.

  • bytecode/GlobalCodeBlock.h:

(JSC::GlobalCodeBlock::GlobalCodeBlock):
Take RefPtr<>&& instead since SourceProvider woule be nullptr.

  • bytecode/ModuleProgramCodeBlock.h:

(JSC::ModuleProgramCodeBlock::create):
(JSC::ModuleProgramCodeBlock::ModuleProgramCodeBlock):
Take RefPtr<>&& instead since SourceProvider woule be nullptr.

  • bytecode/ProgramCodeBlock.h:

(JSC::ProgramCodeBlock::create):
(JSC::ProgramCodeBlock::ProgramCodeBlock):
Take RefPtr<>&& instead since SourceProvider woule be nullptr.

  • debugger/DebuggerParseData.cpp:

(JSC::gatherDebuggerParseDataForSource):
Ensure the provider is not nullptr. It is OK because we already
touch provider->xxx values.

  • dfg/DFGBlockInsertionSet.cpp:

(JSC::DFG::BlockInsertionSet::insert):
Take Ref<>&& instead.

  • dfg/DFGBlockInsertionSet.h:
  • dfg/DFGByteCodeParser.cpp:

(JSC::DFG::ByteCodeParser::inlineCall):
(JSC::DFG::ByteCodeParser::handleInlining):
(JSC::DFG::ByteCodeParser::parseCodeBlock):
Pass Ref<>&& to appendBlock.

  • dfg/DFGDriver.cpp:

(JSC::DFG::compileImpl):
(JSC::DFG::compile):
Pass Ref<Plan>&&. And take Ref<>&& callback.

  • dfg/DFGDriver.h:
  • dfg/DFGGraph.h:

appendBlock takes Ref<>&&.

(JSC::DFG::Graph::appendBlock):

  • dfg/DFGJITCompiler.cpp:

(JSC::DFG::JITCompiler::compile):
(JSC::DFG::JITCompiler::compileFunction):

  • dfg/DFGJITCompiler.h:

(JSC::DFG::JITCompiler::jitCode):

  • dfg/DFGJITFinalizer.cpp:

(JSC::DFG::JITFinalizer::JITFinalizer):
Take Ref<JITCode>&&.

(JSC::DFG::JITFinalizer::finalize):
(JSC::DFG::JITFinalizer::finalizeFunction):
(JSC::DFG::JITFinalizer::finalizeCommon):
Pass compilation reference since we already perform null check.

  • dfg/DFGJITFinalizer.h:
  • dfg/DFGWorklist.cpp:

(JSC::DFG::Worklist::enqueue):
Take Ref<Plan>&&.

  • dfg/DFGWorklist.h:
  • ftl/FTLJITFinalizer.cpp:

(JSC::FTL::JITFinalizer::finalizeFunction):
Dereference and pass jitCode & compilation references.

  • jit/GCAwareJITStubRoutine.cpp:

(JSC::createJITStubRoutine):
Return Ref<> instead.

  • jit/GCAwareJITStubRoutine.h:

(JSC::createJITStubRoutine):

  • jit/JIT.cpp:

(JSC::JIT::link):
Pass compilation reference since we already perform null check.

  • jit/JITStubRoutine.h:

(JSC::JITStubRoutine::asCodePtr):
Take Ref<>&& instead. And this drops unnecessary null check.

  • jit/JITThunks.cpp:

(JSC::JITThunks::hostFunctionStub):
Pass Ref<> to NativeExecutable::create.

  • llint/LLIntEntrypoint.cpp:

(JSC::LLInt::setFunctionEntrypoint):
(JSC::LLInt::setEvalEntrypoint):
(JSC::LLInt::setProgramEntrypoint):
(JSC::LLInt::setModuleProgramEntrypoint):
Use Ref<>&& instead.

  • parser/SourceCode.h:

(JSC::SourceCode::SourceCode):
(JSC::SourceCode::subExpression):
Add constructors taking Ref<>&&.
We still have constructors that take RefPtr<>&&.
We will change it to Ref<SourceProvider>&& in https://bugs.webkit.org/show_bug.cgi?id=168325.

  • parser/UnlinkedSourceCode.h:

(JSC::UnlinkedSourceCode::UnlinkedSourceCode):
Add constructors taking Ref<>&&.
We still have constructors that take RefPtr<>&&.
We will change it to Ref<SourceProvider>&& in https://bugs.webkit.org/show_bug.cgi?id=168325.

  • profiler/ProfilerDatabase.cpp:

(JSC::Profiler::Database::addCompilation):
Take Ref<Compilation>&&.

  • profiler/ProfilerDatabase.h:

Change data structures to hold Ref<> instead of RefPtr<>.

  • runtime/EvalExecutable.h:

(JSC::EvalExecutable::generatedJITCode):
Return Ref<> instead.

  • runtime/ExecutableBase.h:

(JSC::ExecutableBase::generatedJITCodeForCall):
(JSC::ExecutableBase::generatedJITCodeForConstruct):
(JSC::ExecutableBase::generatedJITCodeFor):
Return Ref<> instead.

  • runtime/Identifier.cpp:

(JSC::Identifier::add):
(JSC::Identifier::add8):

  • runtime/Identifier.h:

(JSC::Identifier::add):

  • runtime/JSGlobalObject.cpp:

(JSC::JSGlobalObject::setInputCursor):
And take Ref<> in this method.

  • runtime/JSGlobalObject.h:

(JSC::JSGlobalObject::inputCursor):
Change m_inputCursor from RefPtr<> to Ref<>.

  • runtime/JSPropertyNameEnumerator.cpp:

(JSC::JSPropertyNameEnumerator::create):
(JSC::JSPropertyNameEnumerator::finishCreation):
Take Ref<PropertyNameArray>&&.

  • runtime/JSPropertyNameEnumerator.h:

(JSC::propertyNameEnumerator):

  • runtime/JSString.h:

(JSC::JSString::JSString):
Take Ref<StringImpl>&& since we do not allow nullptr in this constructor.

(JSC::JSString::create):
(JSC::JSString::createHasOtherOwner):
Take Ref<StringImpl>&& in these factory functions. And drop unnecessary assertions.

(JSC::jsSingleCharacterString):
Use StringImpl::create() which returns Ref<>.

(JSC::jsNontrivialString):
Dereference impl() since we ensure that s.length() > 1.

(JSC::jsString):
Use releaseNonNull() since we ensure that s.length() > 1.

(JSC::jsOwnedString):
Use releaseNonNull() since we ensure that s.length() > 1.

  • runtime/ModuleProgramExecutable.h:
  • runtime/NativeExecutable.cpp:

(JSC::NativeExecutable::create):
(JSC::NativeExecutable::finishCreation):
Take Ref<JITCode>&&.

  • runtime/NativeExecutable.h:
  • runtime/ProgramExecutable.h:

Return Ref<JITCode>.

  • runtime/PropertyNameArray.h:

(JSC::PropertyNameArray::releaseData):
(JSC::PropertyNameArray::setData): Deleted.
This is not used.

  • runtime/RegExpKey.h:

(JSC::RegExpKey::RegExpKey):
Take RefPtr<>&&.

  • runtime/SmallStrings.cpp:

(JSC::SmallStringsStorage::rep):
Return StringImpl& since m_reps is already initialized in the constructor.

(JSC::SmallStrings::createEmptyString):
Dereference StringImpl::empty().

(JSC::SmallStrings::createSingleCharacterString):
Use StringImpl&.

(JSC::SmallStrings::singleCharacterStringRep):
Return StringImpl&.

(JSC::SmallStrings::initialize):
Use AtomicStringImpl::add instead.

  • runtime/SmallStrings.h:
  • runtime/Structure.cpp:

(JSC::Structure::toStructureShape):
Return Ref<>.

  • runtime/Structure.h:
  • runtime/TypeLocationCache.cpp:

(JSC::TypeLocationCache::getTypeLocation):
Take RefPtr<TypeSet>&&.

  • runtime/TypeLocationCache.h:
  • runtime/TypeProfilerLog.cpp:

Pass Ref<>&&.

(JSC::TypeProfilerLog::processLogEntries):

  • runtime/TypeSet.cpp:

(JSC::TypeSet::addTypeInformation):
Take RefPtr<>&& since it can be nullptr.
And clean up "not found" code.

(JSC::TypeSet::allStructureRepresentations):
Use range based iteration.

(JSC::StructureShape::leastCommonAncestor):
We found that this method accidentally takes const Vector<> instead of const Vector<>&.
And internally, we just use raw pointers since these StructureShapes are owned by the m_proto trees which starts from the given Vector<>.

(JSC::StructureShape::hasSamePrototypeChain):
Take const reference instead. And use raw pointers internally.

(JSC::StructureShape::merge):
Take Ref<>&&.

  • runtime/TypeSet.h:

(JSC::StructureShape::setProto):
Take Ref<>&&.

  • runtime/VM.cpp:

(JSC::VM::getHostFunction):
Pass Ref<>&&.

(JSC::VM::queueMicrotask):
Take and pass Ref<>&&.

  • runtime/VM.h:

(JSC::QueuedTask::QueuedTask):
Take Ref<>&&.

  • tools/FunctionOverrides.cpp:

(JSC::initializeOverrideInfo):
We need this change due to Ref<>&& and RefPtr<>&& ambiguity of SourceCode constructors.
Once SourceCode is fixed to only take Ref<>&&, this change is unnecessary.

Source/WebCore:

  • bindings/js/ScriptSourceCode.h:

(WebCore::ScriptSourceCode::ScriptSourceCode):
Use Ref and pass it to SourceCode.

  • replay/ReplayController.cpp:

(WebCore::ReplayController::frameNavigated):
Pass reference.

8:35 AM Changeset in webkit [212364] by Carlos Garcia Campos
  • 2 edits in trunk

Unreviewed. Add ENABLE_INTERSECTION_OBSERVER option to CMake.

It's now a runtime enabled feature so we should always build it.

Fixes: intersection-observer/intersection-observer-entry-interface.html

intersection-observer/intersection-observer-interface.html

  • Source/cmake/WebKitFeatures.cmake:
8:26 AM Changeset in webkit [212363] by Csaba Osztrogonác
  • 2 edits in trunk/Source/JavaScriptCore

[Mac][cmake] Unreviewed trivial buildfix after r212169.
https://bugs.webkit.org/show_bug.cgi?id=166681

  • PlatformMac.cmake: Removed inspector/remote/RemoteInspectorXPCConnection.mm.
7:53 AM Changeset in webkit [212362] by Carlos Garcia Campos
  • 2 edits in trunk/LayoutTests

Unreviewed GTK+ gardening. Skip tests that need DASHBOARD_SUPPORT enabled.

  • platform/gtk/TestExpectations:
7:38 AM Changeset in webkit [212361] by Carlos Garcia Campos
  • 2 edits in trunk/LayoutTests

Unreviewed GTK+ gardening. Mark several IndexedDB tests as crashing.

  • platform/gtk/TestExpectations:
7:14 AM Changeset in webkit [212360] by calvaris@igalia.com
  • 3 edits in trunk/Source/WebCore

[GStreamer][MSE][EME] Handle protection event also at decryptor level
https://bugs.webkit.org/show_bug.cgi?id=168316

Reviewed by Žan Doberšek.

So far in MSE pipeline we were handling the encryption events
only when they arrived at the demuxer but this won't work in any
kind of key renegotiation as the event will never arrive. Now we
connect to the element messages, check for the drm id and send it
to the private player for processing.

  • platform/graphics/gstreamer/mse/AppendPipeline.cpp:

(WebCore::appendPipelineElementMessageCallback):
(WebCore::AppendPipeline::AppendPipeline):
(WebCore::AppendPipeline::handleElementMessage):

  • platform/graphics/gstreamer/mse/AppendPipeline.h:
6:33 AM Changeset in webkit [212359] by Carlos Garcia Campos
  • 2 edits in trunk/LayoutTests

Unreviewed GTK+ gardening. Rebaseline http/tests/security/video-cross-origin-accessfailure.html.

  • http/tests/security/video-cross-origin-accessfailure-expected.txt:
6:22 AM Changeset in webkit [212358] by Carlos Garcia Campos
  • 2 edits
    2 adds in trunk/Tools

[SOUP] Credentials stored by libsoup are used even StoredCredentials policy is DoNotAllowStoredCredentials
https://bugs.webkit.org/show_bug.cgi?id=168364

Reviewed by Michael Catanzaro.

This can happen if a previous load with allowed to use stored credentials authenticated successfully, saving the
credentials in libsoup. It's actually a libsoup bug, but since it's causing layout test failures and we have
patches for them, let's patch out jhbuild until we have a new libsoup version to depend on.

Fixes: http/tests/security/credentials-from-different-domains.html

http/tests/xmlhttprequest/cross-origin-no-authorization.html

  • gtk/jhbuild.modules:
  • gtk/patches/libsoup-auth-Fix-async-authentication-when-flag-SOUP_MESSAGE.patch: Added.
  • gtk/patches/libsoup-auth-do-not-use-cached-credentials-in-lookup-method-.patch: Added.
6:10 AM Changeset in webkit [212357] by Carlos Garcia Campos
  • 2 edits in trunk/LayoutTests

Unreviewed GTK+ gardening. Mark http/tests/security/credentials-iframes.html as expected failure.

  • platform/gtk/TestExpectations:
3:47 AM Changeset in webkit [212356] by zandobersek@gmail.com
  • 5 edits in trunk

[EME] MediaKeys::setServerCertificate() must resolve with 'false' when certificates aren't supported
https://bugs.webkit.org/show_bug.cgi?id=168362

Reviewed by Xabier Rodriguez-Calvar.

Source/WebCore:

In MediaKeys::setServerCertificate(), when the CDM implementation
doesn't support server certificates, it should resolve the promise
with the 'false' value, as mandated by the specification, and not
reject it.

A test case in mock-MediaKeys-setServerCertificate.html is updated.

  • Modules/encryptedmedia/MediaKeys.cpp:

(WebCore::MediaKeys::setServerCertificate):

LayoutTests:

Update the certificates-not-supported test case, making sure the promise
is resolved with the 'false' result.

  • media/encrypted-media/mock-MediaKeys-setServerCertificate-expected.txt:
  • media/encrypted-media/mock-MediaKeys-setServerCertificate.html:
2:00 AM Changeset in webkit [212355] by commit-queue@webkit.org
  • 7 edits
    2 copies in trunk

REGRESSION (r206014): HTTPHeaderMap does not consistently use comma without space to separate values of header fields
https://bugs.webkit.org/show_bug.cgi?id=168115

Patch by Carlos Garcia Campos <cgarcia@igalia.com> on 2017-02-15
Reviewed by Darin Adler.

LayoutTests/imported/w3c:

  • web-platform-tests/XMLHttpRequest/getresponseheader-case-insensitive-expected.txt:
  • web-platform-tests/XMLHttpRequest/setrequestheader-header-allowed-expected.txt:

Source/WebCore:

In r206014 HTTPHeaderMap::add() was updated to combine common headers with ',' instead of ", " to match the
fetch specification, but the uncommon headers are still combined with ", ".

  • platform/network/HTTPHeaderMap.cpp:

(WebCore::HTTPHeaderMap::add):

LayoutTests:

  • http/tests/xmlhttprequest/check-combining-headers-expected.txt:
  • platform/mac/imported/w3c/web-platform-tests/XMLHttpRequest/getresponseheader-case-insensitive-expected.txt: Added.
  • platform/ios-simulator/imported/w3c/web-platform-tests/XMLHttpRequest/getresponseheader-case-insensitive-expected.txt: Added.
1:57 AM Changeset in webkit [212354] by rniwa@webkit.org
  • 4 edits
    2 adds in trunk

An assertion failure inside removeChildren
https://bugs.webkit.org/show_bug.cgi?id=168069

Reviewed by Brent Fulgham.

Source/WebCore:

The bug was caused by notifyRemovePendingSheet executing scripts synchronously where it shouldn't.

Removed the call to notifyRemovePendingSheetIfNeeded in notifyChildNodeRemoved. Instead, invoke it
in its call sites when they're safe.

Test: http/tests/security/move-iframe-within-focus-handler-inside-removal.html

  • dom/ContainerNode.cpp:

(WebCore::ContainerNode::takeAllChildrenFrom):
(WebCore::ContainerNode::notifyChildInserted):
(WebCore::ContainerNode::removeChild):
(WebCore::ContainerNode::parserRemoveChild):
(WebCore::ContainerNode::replaceAllChildren):
(WebCore::ContainerNode::removeChildren):

  • dom/ContainerNodeAlgorithms.cpp:

(WebCore::notifyChildNodeRemoved):

LayoutTests:

  • http/tests/security/move-iframe-within-focus-handler-inside-removal-expected.txt: Added.
  • http/tests/security/move-iframe-within-focus-handler-inside-removal.html: Added.
12:58 AM Changeset in webkit [212353] by Carlos Garcia Campos
  • 2 edits in trunk/Source/WebCore

[GStreamer] Several tests are timing out after r212349
https://bugs.webkit.org/show_bug.cgi?id=168359

Reviewed by Žan Doberšek.

This is because they are failing the cross origin check. Those tests are not using WebKitWebSrc, but
GstFileSrc. I didn't consider the case of source not being a WebKitWebSrc.

Fixes several timeout instroduced in r212349.

  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:

(WebCore::MediaPlayerPrivateGStreamer::hasSingleSecurityOrigin): Split the source check in two. First check if
it's nullptr, and return false. Then check if it's a WebKitWebSrc and return true if it isn't.

12:17 AM Changeset in webkit [212352] by Carlos Garcia Campos
  • 1 copy in releases/WebKitGTK/webkit-2.14.5

WebKitGTK+ 2.14.5

12:16 AM Changeset in webkit [212351] by Carlos Garcia Campos
  • 4 edits in releases/WebKitGTK/webkit-2.14

Unreviewed. Update OptionsGTK.cmake and NEWS for 2.14.5 release.

.:

  • Source/cmake/OptionsGTK.cmake: Bump version numbers.

Source/WebKit2:

  • gtk/NEWS: Add release notes for 2.14.5.
Note: See TracTimeline for information about the timeline view.