profile/ivi/webkit-efl.git
12 years ago[chromium] Always pre-reserve scrollbar and scroll corner textures
enne@google.com [Mon, 30 Jan 2012 22:10:07 +0000 (22:10 +0000)]
[chromium] Always pre-reserve scrollbar and scroll corner textures
https://bugs.webkit.org/show_bug.cgi?id=77251

Reviewed by James Robinson.

Source/WebCore:

Add a flag to LayerChromium that says that a layer's textures should
always be reserved. Prior to painting layers, find all layers marked
as such and reserve their textures. This will prevent texture memory
limits from being hit before the root layer's scrollbars are reserved
and painted.

* platform/graphics/chromium/LayerChromium.cpp:
(WebCore::LayerChromium::LayerChromium):
* platform/graphics/chromium/LayerChromium.h:
(LayerChromium):
(WebCore::LayerChromium::reserveTextures):
(WebCore::LayerChromium::setAlwaysReserveTextures):
(WebCore::LayerChromium::alwaysReserveTextures):
* platform/graphics/chromium/TiledLayerChromium.cpp:
(WebCore::TiledLayerChromium::reserveTextures):
* platform/graphics/chromium/TiledLayerChromium.h:
():
* platform/graphics/chromium/cc/CCLayerTreeHost.cpp:
(WebCore::CCLayerTreeHost::updateLayers):
(WebCore::CCLayerTreeHost::reserveTextures):
(WebCore):
* platform/graphics/chromium/cc/CCLayerTreeHost.h:
():

Source/WebKit/chromium:

* src/NonCompositedContentHost.cpp:
(WebKit::reserveScrollbarLayers):
(WebKit):
(WebKit::NonCompositedContentHost::setViewport):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106289 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoSpeculative Windows build fix.
barraclough@apple.com [Mon, 30 Jan 2012 22:07:23 +0000 (22:07 +0000)]
Speculative Windows build fix.

* assembler/MacroAssemblerCodeRef.h:
(FunctionPtr):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106288 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[Qt] Disconnect the LayerTreeHost from layers when they get removed from their parent.
jocelyn.turcotte@nokia.com [Mon, 30 Jan 2012 22:01:42 +0000 (22:01 +0000)]
[Qt] Disconnect the LayerTreeHost from layers when they get removed from their parent.
https://bugs.webkit.org/show_bug.cgi?id=77362

Reviewed by Noam Rosenthal.

This fixes crashes seen in layout tests under certain timing circumstances
that appeared after r106109 was landed.

* WebProcess/WebCoreSupport/WebGraphicsLayer.cpp:
(WebCore::WebGraphicsLayer::replaceChild):
(WebCore::WebGraphicsLayer::removeFromParent):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106287 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoSpeculative 32-bit build-fix.
bdakin@apple.com [Mon, 30 Jan 2012 21:44:33 +0000 (21:44 +0000)]
Speculative 32-bit build-fix.

* WebCore.exp.in:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106286 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed gardening. Marking fast/js/dfg-int32array-overflow-values.html as slow
leviw@chromium.org [Mon, 30 Jan 2012 21:22:02 +0000 (21:22 +0000)]
Unreviewed gardening. Marking fast/js/dfg-int32array-overflow-values.html as slow
for Chromium Debug bots.

* platform/chromium/test_expectations.txt:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106285 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoRoll Chromium DEPS from 119623 to 119700.
rniwa@webkit.org [Mon, 30 Jan 2012 21:21:35 +0000 (21:21 +0000)]
Roll Chromium DEPS from 119623 to 119700.

* DEPS:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106284 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agofast/css/fontsize-unit-rems-crash.html should use dumpAsText
leviw@chromium.org [Mon, 30 Jan 2012 21:19:47 +0000 (21:19 +0000)]
fast/css/fontsize-unit-rems-crash.html should use dumpAsText
https://bugs.webkit.org/show_bug.cgi?id=77351

Reviewed by Simon Fraser.

Switching the above test to only use text results as the html element is display:none.

* fast/css/fontsize-unit-rems-crash-expected.txt:
* fast/css/fontsize-unit-rems-crash.html:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106283 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed. Add myself to CSS, GStreamer, Qt related watchlists.
alexis.menard@openbossa.org [Mon, 30 Jan 2012 21:15:38 +0000 (21:15 +0000)]
Unreviewed. Add myself to CSS, GStreamer, Qt related watchlists.

* Scripts/webkitpy/common/config/watchlist:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106282 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[CSSRegions]Add support for background-color in region styling
mihnea@adobe.com [Mon, 30 Jan 2012 21:11:48 +0000 (21:11 +0000)]
[CSSRegions]Add support for background-color in region styling
https://bugs.webkit.org/show_bug.cgi?id=71488

Reviewed by David Hyatt.

Source/WebCore:

Based on work by Alexandru Chiculita (achicu@adobe.com).
Previous patches for region styling were touching RenderObject::style() method. After several attempts to avoid regressions
(including caching of RenderObject::style() pointer in most used methods), we decided to attempt a different approach:
Step1: before each region is repainted, we compute the style for each box that falls into the region
Step2: before paint, we store the box original style
Step3: paint the region contents using the style in region
Step4: after paint is finished, we restore the box original style (and store the box style in region for future region paint)

Tests for region styling are also enabled with this patch.

* WebCore.exp.in:
* rendering/RenderFlowThread.cpp:
(WebCore::RenderFlowThread::clearRenderBoxCustomStyle):
(WebCore::RenderFlowThread::setRegionRangeForBox):
* rendering/RenderFlowThread.h:
():
* rendering/RenderLayer.cpp:
(WebCore::RenderLayer::paint):
(WebCore::RenderLayer::hitTest):
* rendering/RenderObject.cpp:
* rendering/RenderObject.h:
(WebCore::RenderObject::style):
(RenderObject):
* rendering/RenderObjectChildList.cpp:
(WebCore::RenderObjectChildList::removeChildNode):
* rendering/RenderRegion.cpp:
(WebCore::RenderRegion::RenderRegion):
(WebCore::RenderRegion::setRegionBoxesRegionStyle):
(WebCore):
(WebCore::RenderRegion::restoreRegionBoxesOriginalStyle):
(WebCore::RenderRegion::paintReplaced):
(WebCore::RenderRegion::setRenderBoxRegionInfo):
(WebCore::RenderRegion::takeRenderBoxRegionInfo):
(WebCore::RenderRegion::removeRenderBoxRegionInfo):
(WebCore::RenderRegion::renderBoxRegionStyle):
(WebCore::RenderRegion::computeStyleInRegion):
(WebCore::RenderRegion::clearBoxStyleInRegion):
* rendering/RenderRegion.h:
(RenderRegion):
* rendering/RenderView.cpp:
(WebCore::RenderView::RenderView):
* rendering/RenderView.h:
(WebCore):
(RenderView):

LayoutTests:

Enable the region styling tests again.

* platform/mac-snowleopard/Skipped:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106281 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoWebCore build exceeds address space on 32-bit Windows builders (again).
jberlin@webkit.org [Mon, 30 Jan 2012 21:08:48 +0000 (21:08 +0000)]
WebCore build exceeds address space on 32-bit Windows builders (again).
https://bugs.webkit.org/show_bug.cgi?id=77357

Reviewed by Adam Roben.

Add an Inspector All-In-One file, but only use it in Release and Production builds.
This differs from our other All-In-One files, but it is a better approach because it makes
debugging possible in the Debug configuration (the symbols will be in the correct .obj file
for the original .cpp files).

* WebCore.vcproj/WebCore.vcproj:
Also, let VS have its way with the vcproj file.
* inspector/InspectorAllInOne.cpp: Added.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106280 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoIndexedDB: Add tests for structured clone data
jsbell@chromium.org [Mon, 30 Jan 2012 21:07:25 +0000 (21:07 +0000)]
IndexedDB: Add tests for structured clone data
https://bugs.webkit.org/show_bug.cgi?id=74897

Validate that the types listed in the HTML5 "structured clone algorithm"
round trip properly through Indexed DB storage. Types with incomplete
support in the Chromium port are excluded (http://crbug.com/108012).
Landing disabled since cr-linux is failing test for unknown reasons.

Reviewed by Tony Chang.

* platform/chromium/test_expectations.txt:
* storage/indexeddb/resources/test-data.html: Added.
* storage/indexeddb/resources/test-data.txt: Added.
* storage/indexeddb/structured-clone-expected.txt: Added.
* storage/indexeddb/structured-clone.html: Added.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106279 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoLimit periodic flushing inside ImageBufferCG to just Lion
mdelaney@apple.com [Mon, 30 Jan 2012 20:59:01 +0000 (20:59 +0000)]
Limit periodic flushing inside ImageBufferCG to just Lion
https://bugs.webkit.org/show_bug.cgi?id=77353
<rdar://problem/10328309>

Reviewed by Chris Marrin.

* platform/graphics/cg/ImageBufferCG.cpp:
* platform/graphics/cg/ImageBufferDataCG.h:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106278 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agohttps://bugs.webkit.org/show_bug.cgi?id=77163
barraclough@apple.com [Mon, 30 Jan 2012 20:57:56 +0000 (20:57 +0000)]
https://bugs.webkit.org/show_bug.cgi?id=77163
MacroAssemblerCodeRef.h uses OS(WIN) instead of OS(WINDOWS)

Rubber stamped by Geoff Garen

* assembler/MacroAssemblerCodeRef.h:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106277 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed build fix for interpreter builds.
barraclough@apple.com [Mon, 30 Jan 2012 20:38:32 +0000 (20:38 +0000)]
Unreviewed build fix for interpreter builds.

* bytecode/CodeBlock.cpp:
(JSC::CodeBlock::CodeBlock):
* bytecode/CodeBlock.h:
(CodeBlock):
* interpreter/Interpreter.cpp:
(JSC::Interpreter::privateExecute):
* tools/CodeProfile.cpp:
(JSC::CodeProfile::sample):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106276 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoMemory leak caused by PeerConnection add a NULL media stream
tommyw@google.com [Mon, 30 Jan 2012 20:25:15 +0000 (20:25 +0000)]
Memory leak caused by PeerConnection add a NULL media stream
https://bugs.webkit.org/show_bug.cgi?id=76150

Source/WebCore:

It was my missunderstanding that the IDL keyword [StrictTypeChecking] also protects against
null or undefined arguments, it doesn't. Added checks for null pointers.

Reviewed by Adam Barth.

Test: fast/mediastream/peerconnection-addstream.html

* mediastream/PeerConnection.cpp:
(WebCore::PeerConnection::addStream):
(WebCore::PeerConnection::removeStream):

LayoutTests:

Added a basic LayoutTest for null/undefined arguments to PeerConnection::addStream().

Reviewed by Adam Barth.

* fast/mediastream/peerconnection-addstream-expected.txt: Added.
* fast/mediastream/peerconnection-addstream.html: Added.
* fast/mediastream/script-tests/peerconnection-addstream.js: Added.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106275 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[Windows] Optionally invert colors when drawing to a WebView's backing store.
aestes@apple.com [Mon, 30 Jan 2012 20:01:39 +0000 (20:01 +0000)]
[Windows] Optionally invert colors when drawing to a WebView's backing store.
https://bugs.webkit.org/show_bug.cgi?id=77168

Reviewed by Sam Weinig.

Source/WebCore:

* css/CSSPrimitiveValueMappings.h: Assert that CompositeDifference is
not converted to a CSS value. Exposing a new compositing operation to
CSS is outside the scope of this patch.
(WebCore::CSSPrimitiveValue::CSSPrimitiveValue):
* platform/graphics/GraphicsTypes.h: Add CompositeDifference as a
CompositeOperator. Also, remove an outdated comment.
* platform/graphics/cg/GraphicsContextCG.cpp:
(WebCore::GraphicsContext::setPlatformCompositeOperation): Map
CompositeDifference to kCGBlendModeDifference.

Source/WebKit/win:

* WebView.cpp:
(WebView::WebView): Initialize m_shouldInvertColors to false.
(WebView::paintIntoBackingStore): If m_shouldInvertColors is true, draw
an opaque white quad using the CompositeDifference blend mode. This
blend operation instructs CoreGraphics to take the difference between
the source pixel (white) and the background pixel, resulting in an
inverted pixel.
* WebView.h: Define m_shouldInvertColors.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106274 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoLimit the shadow offset CG hack to just SL and Lion
mdelaney@apple.com [Mon, 30 Jan 2012 19:50:48 +0000 (19:50 +0000)]
Limit the shadow offset CG hack to just SL and Lion
https://bugs.webkit.org/show_bug.cgi?id=77348
<rdar://problem/10158016>

Reviewed by Chris Marrin.

No new tests, current tests cover this.

* platform/graphics/cg/GraphicsContextCG.cpp:
(WebCore::GraphicsContext::setPlatformShadow):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106273 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agohttps://bugs.webkit.org/show_bug.cgi?id=77263
bdakin@apple.com [Mon, 30 Jan 2012 19:47:34 +0000 (19:47 +0000)]
https://bugs.webkit.org/show_bug.cgi?id=77263
PlatformScreenMac should not rely on NSWindow for important bits of data

Reviewed by Geoff Garen.

../WebCore:

The main problem is that we cannot rely on the NSWindow for information about
the deviceScaleFactor because we cannot access an NSWindow from within
WebCore for WebKit2 windows. Instead, we can fetch it from
WebCore::deviceScaleFactor(), but we need a Frame to call that. So
screenAvailableRect and screenRect both now take a FrameView* instead of a
Widget*. All existing call sites actually sent a FrameView in anyway, so this
is not a big change, but it does require touching a lot of platforms.
* WebCore.exp.in:
* platform/PlatformScreen.h:
(WebCore):
* platform/blackberry/PlatformScreenBlackBerry.cpp:
(WebCore::screenAvailableRect):
(WebCore::screenRect):
* platform/chromium/PlatformScreenChromium.cpp:
(WebCore::screenRect):
(WebCore::screenAvailableRect):
* platform/chromium/PlatformSupport.h:
(WebCore):
(PlatformSupport):
():
* platform/efl/PlatformScreenEfl.cpp:
(WebCore::screenRect):
(WebCore::screenAvailableRect):
* platform/gtk/PlatformScreenGtk.cpp:
(WebCore::screenRect):
(WebCore::screenAvailableRect):
* platform/qt/PlatformScreenQt.cpp:
(WebCore::screenRect):
(WebCore::screenAvailableRect):
* platform/win/PlatformScreenWin.cpp:
(WebCore::screenRect):
(WebCore::screenAvailableRect):
* platform/wx/ScreenWx.cpp:
(WebCore::screenRect):
(WebCore::screenAvailableRect):

The Mac-only functions toUserSpace() and toDeviceSpace() were also updated to
take a parameter for the deviceScaleFactor.
* platform/mac/PlatformScreenMac.mm:
(WebCore::screenRect):
(WebCore::screenAvailableRect):
(WebCore::toUserSpace):
(WebCore::toDeviceSpace):

../WebKit/chromium:

These two functions now take a FrameView instead of a Widget.
* src/PlatformSupport.cpp:
(WebCore::PlatformSupport::screenRect):
(WebCore::PlatformSupport::screenAvailableRect):

../WebKit/mac:

toUserSpace() and toDeviceSpace() now take a parameter for the
deviceScaleFactor.
* WebCoreSupport/WebChromeClient.mm:
(windowScaleFactor):
(WebChromeClient::setWindowRect):
(WebChromeClient::windowRect):

../WebKit2:

toUserSpace() and toDeviceSpace() now take a parameter for the
deviceScaleFactor.
* UIProcess/API/mac/WKView.mm:
(-[WKView _convertToDeviceSpace:]):
(-[WKView _convertToUserSpace:]):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106271 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoEnable web intents layout tests for Chromium build.
leviw@chromium.org [Mon, 30 Jan 2012 19:28:57 +0000 (19:28 +0000)]
Enable web intents layout tests for Chromium build.
https://bugs.webkit.org/show_bug.cgi?id=77347

Patch by Greg Billock <gbillock@google.com> on 2012-01-30
Reviewed by Ryosuke Niwa.

* platform/chromium/test_expectations.txt:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106266 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed build fix following bug#76855
barraclough@apple.com [Mon, 30 Jan 2012 19:26:48 +0000 (19:26 +0000)]
Unreviewed build fix following bug#76855

Source/JavaScriptCore:

* JavaScriptCore.exp:

Tools:

* TestWebKitAPI/Tests/WTF/MetaAllocator.cpp:
():
(TestWebKitAPI::TEST_F):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106264 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoCaseFoldingHash::hash() doesn't handle 8 bit strings directly
msaboff@apple.com [Mon, 30 Jan 2012 19:09:23 +0000 (19:09 +0000)]
CaseFoldingHash::hash() doesn't handle 8 bit strings directly
https://bugs.webkit.org/show_bug.cgi?id=76652

Reviewed by Andreas Kling.

* wtf/text/StringHash.h:
(WTF::CaseFoldingHash::hash): Added 8 bit string code path.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106260 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[chromium] enable -Wexit-time-destructors for webkit unit tests
commit-queue@webkit.org [Mon, 30 Jan 2012 19:06:59 +0000 (19:06 +0000)]
[chromium] enable -Wexit-time-destructors for webkit unit tests
https://bugs.webkit.org/show_bug.cgi?id=77300

Patch by Ami Fischman <fischman@chromium.org> on 2012-01-30
Reviewed by Tony Chang.

* WebKitUnitTests.gyp: Enable clang check for exit time destructors.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106259 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoKill CSSMutableStyleDeclarationConstIterator
antti@apple.com [Mon, 30 Jan 2012 18:52:16 +0000 (18:52 +0000)]
Kill CSSMutableStyleDeclarationConstIterator
https://bugs.webkit.org/show_bug.cgi?id=77342

Reviewed by Sam Weinig.

CSSMutableStyleDeclaration is an array and should be iterated using an index. This simplifies the code.

* css/CSSMutableStyleDeclaration.cpp:
(WebCore::CSSMutableStyleDeclaration::copyPropertiesFrom):
(WebCore::CSSMutableStyleDeclaration::removeProperty):
(WebCore::CSSMutableStyleDeclaration::setProperty):
(WebCore::CSSMutableStyleDeclaration::setPropertyInternal):
(WebCore::CSSMutableStyleDeclaration::parseDeclaration):
(WebCore::CSSMutableStyleDeclaration::addParsedProperties):
(WebCore::CSSMutableStyleDeclaration::addParsedProperty):
(WebCore::CSSMutableStyleDeclaration::merge):
(WebCore::CSSMutableStyleDeclaration::removePropertiesInSet):
* css/CSSMutableStyleDeclaration.h:
(WebCore):
(WebCore::CSSMutableStyleDeclaration::createForSVGFontFaceElement):
(CSSMutableStyleDeclaration):
* css/CSSStyleDeclaration.cpp:
(WebCore::CSSStyleDeclaration::CSSStyleDeclaration):
* css/CSSStyleDeclaration.h:
(CSSStyleDeclaration):
():
* css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::styleForKeyframe):
(WebCore::CSSStyleSelector::applyDeclaration):
* editing/EditingStyle.cpp:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106258 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agostringProtoFuncReplace converts 8 bit strings to 16 bit during replacement
msaboff@apple.com [Mon, 30 Jan 2012 18:51:36 +0000 (18:51 +0000)]
stringProtoFuncReplace converts 8 bit strings to 16 bit during replacement
https://bugs.webkit.org/show_bug.cgi?id=76651

Reviewed by Geoffrey Garen.

Made local function substituteBackreferencesSlow a template function
based on character width.  Cleaned up getCharacters() in both UString
and StringImpl.  Changed getCharacters<UChar> to up convert an 8 bit
string to 16 bits if necessary.

* runtime/StringPrototype.cpp:
(JSC::substituteBackreferencesSlow):
(JSC::substituteBackreferences):
* runtime/UString.h:
(JSC::LChar):
(JSC::UChar):
* wtf/text/StringImpl.h:
(WTF::UChar):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106257 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[chromium] MediaStream API: Fix a few memory leaks
tommyw@google.com [Mon, 30 Jan 2012 18:36:18 +0000 (18:36 +0000)]
[chromium] MediaStream API: Fix a few memory leaks
https://bugs.webkit.org/show_bug.cgi?id=77334

Reviewed by Darin Fisher.

It seems that either the behaviour of WebPrivatePtr has changed or I misunderstood
something, but I fixed a memory leak in WebMediaStreamDescriptor and safeguarded
WebMediaStreamSource.

* public/platform/WebMediaStreamDescriptor.h:
(WebKit::WebMediaStreamDescriptor::WebMediaStreamDescriptor):
* public/platform/WebMediaStreamSource.h:
(WebKit::WebMediaStreamSource::WebMediaStreamSource):
(WebKit::WebMediaStreamSource::operator=):
(WebMediaStreamSource):
* src/WebMediaStreamDescriptor.cpp:
(WebKit::WebMediaStreamDescriptor::assign):
* src/WebMediaStreamSource.cpp:
(WebKit::WebMediaStreamSource::assign):
(WebKit):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106256 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoClean up putDirect
barraclough@apple.com [Mon, 30 Jan 2012 18:28:39 +0000 (18:28 +0000)]
Clean up putDirect
https://bugs.webkit.org/show_bug.cgi?id=76232

Reviewed by Sam Weinig.

Part 3 - merge op_put_getter & op_put_setter.

Putting these separately is inefficient (and makes future optimiation,
e.g. making GetterSetter immutable) harder. Change to emit a single
op_put_getter_setter bytecode op. Ultimately we should probably be
able to merge this with put direct, to create a common op to initialize
object literal properties.

* bytecode/CodeBlock.cpp:
(JSC::CodeBlock::dump):
* bytecode/Opcode.h:
(JSC):
():
* bytecompiler/BytecodeGenerator.cpp:
(JSC::BytecodeGenerator::emitPutGetterSetter):
* bytecompiler/BytecodeGenerator.h:
(BytecodeGenerator):
* bytecompiler/NodesCodegen.cpp:
(JSC::PropertyListNode::emitBytecode):
* interpreter/Interpreter.cpp:
(JSC::Interpreter::privateExecute):
* jit/JIT.cpp:
(JSC::JIT::privateCompileMainPass):
* jit/JIT.h:
(JIT):
* jit/JITPropertyAccess.cpp:
(JSC::JIT::emit_op_put_getter_setter):
* jit/JITPropertyAccess32_64.cpp:
(JSC::JIT::emit_op_put_getter_setter):
* jit/JITStubs.cpp:
(JSC::DEFINE_STUB_FUNCTION):
* jit/JITStubs.h:
():
* runtime/JSObject.cpp:
(JSC::JSObject::putDirectVirtual):
(JSC::JSObject::putDirectAccessor):
(JSC):
(JSC::putDescriptor):
(JSC::JSObject::defineOwnProperty):
* runtime/JSObject.h:
():
(JSC::JSObject::putDirectInternal):
(JSC::JSObject::putDirect):
(JSC::JSObject::putDirectWithoutTransition):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106255 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoDromaeo tests call parseSimpleLengthValue() on 8 bit strings
msaboff@apple.com [Mon, 30 Jan 2012 18:22:50 +0000 (18:22 +0000)]
Dromaeo tests call parseSimpleLengthValue() on 8 bit strings
https://bugs.webkit.org/show_bug.cgi?id=76649

Reviewed by Geoffrey Garen.

Source/JavaScriptCore:

* JavaScriptCore.exp: Added export for charactersToDouble.

Source/WebCore:

No functionality change, therefore no new tests.

Added 8 bit patch for parseSimpleLengthValue().

* css/CSSParser.cpp:
(WebCore::parseSimpleLengthValue):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106254 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoWebCore decodeEscapeSequences unnecessarily converts 8 bit strings to 16 bit when...
msaboff@apple.com [Mon, 30 Jan 2012 18:10:43 +0000 (18:10 +0000)]
WebCore decodeEscapeSequences unnecessarily converts 8 bit strings to 16 bit when decoding.
https://bugs.webkit.org/show_bug.cgi?id=76648

Reviewed by Geoffrey Garen.

Source/JavaScriptCore:

Added a new overloaded append member that takes a String& argument, an offest
and a length to do direct sub string appending to a StringBuilder.

* wtf/text/StringBuilder.h:
(WTF::StringBuilder::append):

Source/WebCore:

Using new overloaded append(String&, offset, length)  member to build result string.
The new member properly handles 8/16 bit-ness of strings.

Functionality not changed, therefore no new tests.

* platform/text/DecodeEscapeSequences.h:
(WebCore::decodeEscapeSequences):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106253 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoNot reviewed: follow up to r105625, use proper event categoty in inspector frontend.
pfeldman@chromium.org [Mon, 30 Jan 2012 17:53:53 +0000 (17:53 +0000)]
Not reviewed: follow up to r105625, use proper event categoty in inspector frontend.

* inspector/front-end/BreakpointsSidebarPane.js:
(WebInspector.EventListenerBreakpointsSidebarPane):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106252 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoREGRESSION (r82580): Reproducible crash in CSSPrimitiveValue::computeLengthDouble
commit-queue@webkit.org [Mon, 30 Jan 2012 17:31:52 +0000 (17:31 +0000)]
REGRESSION (r82580): Reproducible crash in CSSPrimitiveValue::computeLengthDouble
https://bugs.webkit.org/show_bug.cgi?id=61989

Patch by Parag Radke <nrqv63@motorola.com> on 2012-01-30
Reviewed by Simon Fraser.

Source/WebCore:

According to css3 specs when font-size is specified in 'rems' for an element implies the font-size
of the root element. In this case as HTML element has a property 'display:none' and hence renderer
is NULL causes this crash.

Test: fast/css/fontsize-unit-rems-crash.html

* css/CSSPrimitiveValue.cpp:
(WebCore::CSSPrimitiveValue::computeLengthDouble):
Added a null check for the root element's RenderStyle as it can be null in case of html has a property
hidden or display:none.

LayoutTests:

Added a test case to check rems unit (css3) with html property display:none.

* fast/css/fontsize-unit-rems-crash-expected.txt: Added.
* fast/css/fontsize-unit-rems-crash.html: Added.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106251 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[Qt] WKTR: Use a software rendering pipiline when running tests.
jocelyn.turcotte@nokia.com [Mon, 30 Jan 2012 17:27:33 +0000 (17:27 +0000)]
[Qt] WKTR: Use a software rendering pipiline when running tests.
https://bugs.webkit.org/show_bug.cgi?id=76708

Reviewed by Kenneth Rohde Christiansen.

Source/WebCore:

* platform/graphics/qt/TextureMapperQt.cpp: Allow setting the context to null.
(WebCore::TextureMapperQt::setGraphicsContext):
* platform/graphics/qt/TextureMapperQt.h:
(WebCore::TextureMapperQt::initialize):

Source/WebKit2:

Animation layout tests require the graphics layers tree to be updated
to pass. WebkitTestRunner doesn't show its wrapping QQuickView, which
prevents the rendering pipeline to run and then in turn blocks the web
process from processing further graphics layer updates.

This allows the tests to use a TextureMapperQt to empty the LayerTreeHost's
message queue and render the layers in software on an offscreen buffer.

* UIProcess/API/qt/qquickwebpage.cpp:
(QQuickWebPagePrivate::paint):
* UIProcess/API/qt/qquickwebview.cpp:
(QQuickWebViewPrivate::QQuickWebViewPrivate):
(QQuickWebViewPrivate::setNeedsDisplay):
(QQuickWebViewExperimental::setRenderToOffscreenBuffer):
(QQuickWebViewExperimental::renderToOffscreenBuffer):
* UIProcess/API/qt/qquickwebview_p.h:
* UIProcess/API/qt/qquickwebview_p_p.h:
(QQuickWebViewPrivate::setRenderToOffscreenBuffer):
(QQuickWebViewPrivate::renderToOffscreenBuffer):
* UIProcess/qt/LayerTreeHostProxyQt.cpp:
(WebKit::LayerTreeHostProxy::paintToGraphicsContext):

Tools:

* WebKitTestRunner/qt/PlatformWebViewQt.cpp:
(WTR::WrapperWindow::WrapperWindow):
(WTR::PlatformWebView::PlatformWebView): Use software rendering of layers since the wrapping QQuickView isn't shown.

LayoutTests:

* platform/qt-wk2/Skipped:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106250 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[Qt][WK2] Render layers do not get flushed when the scroll animation finishes
abecsi@webkit.org [Mon, 30 Jan 2012 17:19:26 +0000 (17:19 +0000)]
[Qt][WK2] Render layers do not get flushed when the scroll animation finishes
https://bugs.webkit.org/show_bug.cgi?id=77338

Reviewed by Noam Rosenthal.

Schedule a layer flush when setting the visible content rect and scale.

Fixed with the help of Jocelyn Turcotte <jocelyn.turcotte@nokia.com>

* WebProcess/WebPage/qt/LayerTreeHostQt.cpp:
(WebKit::LayerTreeHostQt::setVisibleContentRectAndScale):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106249 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoRemove all references to NSPasteboard objects from the Pasteboard
enrica@apple.com [Mon, 30 Jan 2012 16:58:20 +0000 (16:58 +0000)]
Remove all references to NSPasteboard objects from the Pasteboard
class interface on Mac.
https://bugs.webkit.org/show_bug.cgi?id=77261

This is cleanup work needed as first step in the direction of
removing access to NSPasteboard from the WebProcess.
This way all access to the NSPasteboard object are internal to
the class.
Removed static methods taking NSPasteboard as paramenter and changed
the constructor of the class to take the pasteboard name instead of
the NSPasteboard object.

Reviewed by Alexey Proskuryakov.

No new tests. There is no change in behavior.

* editing/Editor.cpp: Removed ununsed private method writeSelectionToPasteboard.
(WebCore):
* editing/Editor.h: Ditto.
(Editor):
():
* editing/mac/EditorMac.mm:
(WebCore::Editor::writeSelectionToPasteboard):
(WebCore::Editor::readSelectionFromPasteboard):
* platform/Pasteboard.h:
(Pasteboard):
* platform/mac/ClipboardMac.mm:
(WebCore::ClipboardMac::writeRange):
(WebCore::ClipboardMac::writePlainText):
(WebCore::ClipboardMac::writeURL):
* platform/mac/DragDataMac.mm:
(WebCore::DragData::asPlainText):
(WebCore::DragData::asURL):
(WebCore::DragData::asFragment):
* platform/mac/PasteboardMac.mm:
(WebCore::Pasteboard::generalPasteboard):
(WebCore::Pasteboard::Pasteboard):
(WebCore::Pasteboard::writeSelectionForTypes): Added.
(WebCore::Pasteboard::writePlainText):
(WebCore::Pasteboard::writeSelection):
(WebCore::Pasteboard::writeURLForTypes): Added.
(WebCore::Pasteboard::writeURL):
(WebCore::Pasteboard::writeImage):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106248 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoReduce non-CSSOM API of CSSStyleDeclaration
antti@apple.com [Mon, 30 Jan 2012 16:46:56 +0000 (16:46 +0000)]
Reduce non-CSSOM API of CSSStyleDeclaration
https://bugs.webkit.org/show_bug.cgi?id=77299

Reviewed by Andreas Kling.

../WebCore:

CSSStyleDeclaration should expose the CSSOM API only. Subclasses should expose the internal API only.
This will move us closer to being able to split the CSSOM API from the internal implementation.

- Make CSSStyleDeclaration CSSOM functions virtual, internal functions non-virtual.
- Move implementations to subclasses (CSSComputedStyleDeclaration, CSSMutableStyleDeclaration).
- Make CSSOM functions in the subclasses private (making it harder to invoke them internally).
- Switch a bunch of places to use internal API instead of CSSOM.

* bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp:
(WebCore::V8CSSStyleDeclaration::namedPropertyGetter):
(WebCore::V8CSSStyleDeclaration::namedPropertySetter):

    Switch to *Internal versions of the CSSOM functions.

* css/CSSComputedStyleDeclaration.cpp:
(WebCore):
(WebCore::CSSComputedStyleDeclaration::length):
(WebCore::CSSComputedStyleDeclaration::cssPropertyMatches):
(WebCore::CSSComputedStyleDeclaration::copyPropertiesInSet):

    Move copyPropertiesInSet to subclasses, devirtualize.

(WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue):
(WebCore::CSSComputedStyleDeclaration::getPropertyValue):
(WebCore::CSSComputedStyleDeclaration::getPropertyPriority):
(WebCore::CSSComputedStyleDeclaration::getPropertyShorthand):
(WebCore::CSSComputedStyleDeclaration::isPropertyImplicit):
(WebCore::CSSComputedStyleDeclaration::setProperty):
(WebCore::CSSComputedStyleDeclaration::removeProperty):
* css/CSSComputedStyleDeclaration.h:
(CSSComputedStyleDeclaration):
* css/CSSFontFaceRule.cpp:
(WebCore::CSSFontFaceRule::cssText):
* css/CSSMutableStyleDeclaration.cpp:
(WebCore::CSSMutableStyleDeclaration::length):
(WebCore::CSSMutableStyleDeclaration::asText):
(WebCore::CSSMutableStyleDeclaration::cssText):
(WebCore):
(WebCore::CSSMutableStyleDeclaration::getPropertyCSSValue):
(WebCore::CSSMutableStyleDeclaration::getPropertyValue):
(WebCore::CSSMutableStyleDeclaration::getPropertyPriority):
(WebCore::CSSMutableStyleDeclaration::getPropertyShorthand):
(WebCore::CSSMutableStyleDeclaration::isPropertyImplicit):
(WebCore::CSSMutableStyleDeclaration::setProperty):
(WebCore::CSSMutableStyleDeclaration::removeProperty):
(WebCore::CSSMutableStyleDeclaration::copyPropertiesInSet):

    Move copyPropertiesInSet to subclasses, devirtualize.

(WebCore::CSSMutableStyleDeclaration::cssPropertyMatches):
(WebCore::CSSMutableStyleDeclaration::removeEquivalentProperties):

    Move diff() to CSSMutableStyleDeclaration, rename to removeEquivalentProperties, switch to mutate
    this object instead of the argument object.

* css/CSSMutableStyleDeclaration.h:
(CSSMutableStyleDeclaration):
(WebCore::CSSMutableStyleDeclaration::propertyCount):
(WebCore::CSSMutableStyleDeclaration::isEmpty):
(WebCore::CSSMutableStyleDeclaration::propertyAt):

    Expose properties and property count internally (iterator should be removed in favor of these).

* css/CSSStyleDeclaration.cpp:
(WebCore):
* css/CSSStyleDeclaration.h:
(CSSStyleDeclaration):
(WebCore::CSSStyleDeclaration::getPropertyCSSValueInternal):
(WebCore::CSSStyleDeclaration::getPropertyValueInternal):
(WebCore::CSSStyleDeclaration::setPropertyInternal):

    Add *Internal versions of some CSSOM APIs to support some editing and bindings uses.
    These take propertyIDs instead of strings names.

* css/CSSStyleRule.cpp:
(WebCore::CSSStyleRule::cssText):
* css/CSSStyleSelector.cpp:
(WebCore::leftToRightDeclaration):
(WebCore::rightToLeftDeclaration):
(WebCore::CSSStyleSelector::collectMatchingRulesForList):
(WebCore::CSSStyleSelector::matchPageRulesForList):
* css/WebKitCSSKeyframeRule.cpp:
(WebCore::WebKitCSSKeyframeRule::cssText):
* dom/StyledElement.cpp:
(WebCore::StyledElement::updateStyleAttribute):
* editing/ApplyStyleCommand.cpp:
(WebCore::ApplyStyleCommand::applyRelativeFontStyleChange):
(WebCore::ApplyStyleCommand::removeEmbeddingUpToEnclosingBlock):
(WebCore::ApplyStyleCommand::applyInlineStyleToNodeRange):
(WebCore::ApplyStyleCommand::applyInlineStyleToPushDown):
(WebCore::ApplyStyleCommand::addBlockStyle):
(WebCore::ApplyStyleCommand::addInlineStyleIfNeeded):
* editing/EditingStyle.cpp:
():
(WebCore::copyEditingProperties):
(WebCore):
(WebCore::propertyCSSValue):
(WebCore::getRGBAFontColor):
(WebCore::EditingStyle::overrideWithStyle):
(WebCore::EditingStyle::removeStyleAddedByNode):
(WebCore::EditingStyle::removeStyleConflictingWithStyleOfNode):
(WebCore::EditingStyle::triStateOfStyle):
(WebCore::EditingStyle::styleIsPresentInComputedStyleOfNode):
(WebCore::EditingStyle::prepareToApplyAt):
(WebCore::removePropertiesInStyle):
(WebCore::EditingStyle::removeStyleFromRulesAndContext):
(WebCore::EditingStyle::removePropertiesInElementDefaultStyle):
(WebCore::StyleChange::StyleChange):
(WebCore::fontWeightIsBold):
(WebCore::getPropertiesNotIn):
(WebCore::getIdentifierValue):
(WebCore::hasTransparentBackgroundColor):
* editing/EditingStyle.h:

    Adapt to changes.

(WebCore):
* editing/ReplaceSelectionCommand.cpp:
(WebCore::ReplaceSelectionCommand::removeRedundantStylesAndKeepStyleSpanInline):
(WebCore::handleStyleSpansBeforeInsertion):
(WebCore::ReplaceSelectionCommand::handleStyleSpans):
* editing/mac/EditorMac.mm:
(WebCore::styleForSelectionStart):
* editing/markup.cpp:
(WebCore::StyledMarkupAccumulator::appendStyleNodeOpenTag):
(WebCore::StyledMarkupAccumulator::appendElement):
* html/ImageDocument.cpp:
(WebCore::ImageDocument::resizeImageToFit):
(WebCore::ImageDocument::restoreImageSize):
(WebCore::ImageDocument::windowSizeChanged):
* html/canvas/CanvasRenderingContext2D.cpp:
(WebCore::CanvasRenderingContext2D::setFont):
* html/canvas/CanvasStyle.cpp:
(WebCore::currentColor):
* inspector/InspectorStyleSheet.cpp:
(WebCore::InspectorStyleSheet::revalidateStyle):
* page/PageSerializer.cpp:
(WebCore::PageSerializer::retrieveResourcesForCSSDeclaration):
* rendering/RenderTreeAsText.cpp:
(WebCore::isEmptyOrUnstyledAppleStyleSpan):
* svg/SVGStyledElement.cpp:
(WebCore::SVGStyledElement::getPresentationAttribute):

../WebKit/qt:

* Api/qwebelement.cpp:
(QWebElement::styleProperty):
(QWebElement::setStyleProperty):
* WebCoreSupport/DumpRenderTreeSupportQt.cpp:
(DumpRenderTreeSupportQt::computedStyleIncludingVisitedInfo):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106247 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoWeb Inspector: protocol validator should fail if one of response fields turns optional
pfeldman@chromium.org [Mon, 30 Jan 2012 16:40:55 +0000 (16:40 +0000)]
Web Inspector: protocol validator should fail if one of response fields turns optional
https://bugs.webkit.org/show_bug.cgi?id=76452

Reviewed by Yury Semikhatsky.

* inspector/Inspector-0.1.json:
* inspector/Inspector.json:
* inspector/generate-inspector-protocol-version:
(compare_commands):
(compare_events):
(compare_params_list):
(compare_types):
(self_test):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106246 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoWeb Inspector: keyboard navigation through comparison view in heap profiler should...
yurys@chromium.org [Mon, 30 Jan 2012 16:17:01 +0000 (16:17 +0000)]
Web Inspector: keyboard navigation through comparison view in heap profiler should update retainers view
https://bugs.webkit.org/show_bug.cgi?id=77326

Keyboard navigation in the detailed heap snapshot view now updates retainers view.

Reviewed by Pavel Feldman.

* inspector/front-end/DataGrid.js: Added SelectedNode/DeselectedNode events to DataGrid.
(WebInspector.DataGridNode.prototype.select):
(WebInspector.DataGridNode.prototype.deselect):
* inspector/front-end/DetailedHeapshotView.js:
(WebInspector.DetailedHeapshotView.prototype._selectionChanged):
(WebInspector.DetailedHeapshotView.prototype._setRetainmentDataGridSource):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106245 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago2012-01-30 Yury Semikhatsky <yurys@chromium.org>
yurys@chromium.org [Mon, 30 Jan 2012 15:49:23 +0000 (15:49 +0000)]
2012-01-30  Yury Semikhatsky  <yurys@chromium.org>

        Unreviewed. Fix inspector front-end compilation.

        * inspector/front-end/RemoteObject.js:
        (WebInspector.RemoteObject):
        (WebInspector.RemoteObject.fromPayload):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106244 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[chromium] remove exit time destructors from TextureManagerTest
jochen@chromium.org [Mon, 30 Jan 2012 15:24:22 +0000 (15:24 +0000)]
[chromium] remove exit time destructors from TextureManagerTest
https://bugs.webkit.org/show_bug.cgi?id=77333

Reviewed by Tony Gentilcore.

Non-trivial, global objects require an at-exit time destructor which add
unnecessary complexity and delays to shutdown.

* tests/FakeCCLayerTreeHostClient.h: added newline at EOF
* tests/TextureManagerTest.cpp:
(WTF::FakeTextureAllocator::~FakeTextureAllocator):
(TextureManagerTest):
(WTF::TextureManagerTest::TextureManagerTest):
(WTF::TextureManagerTest::~TextureManagerTest):
(WTF::TextureManagerTest::texturesMemorySize):
(WTF::TextureManagerTest::createTextureManager):
(WTF::TextureManagerTest::requestTexture):
(WTF::TEST_F):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106243 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoNode::parentOrHostElement(): Node::shadowHost() already returns an Element*
rolandsteiner@chromium.org [Mon, 30 Jan 2012 15:19:02 +0000 (15:19 +0000)]
Node::parentOrHostElement(): Node::shadowHost() already returns an Element*
https://bugs.webkit.org/show_bug.cgi?id=77332

Reviewed by Kent Tamura.

No new tests. (simple refactoring)

* dom/Node.cpp:
(WebCore::Node::parentOrHostElement):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106242 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoAdd manual tests for tap highlighting
kenneth@webkit.org [Mon, 30 Jan 2012 15:05:18 +0000 (15:05 +0000)]
Add manual tests for tap highlighting

Rubberstamped by Simon Hausmann.

* ManualTests/qt/tap-highlighting-colors.html: Added.
* ManualTests/qt/tap-highlighting-images.html: Added.
* ManualTests/qt/tap-highlighting-inlines.html: Added.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106241 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed. Fix make distcheck.
carlosgc@webkit.org [Mon, 30 Jan 2012 14:25:19 +0000 (14:25 +0000)]
Unreviewed. Fix make distcheck.

Source/WebCore:

* GNUmakefile.am: Add idl files in Source/WebCore/html/shadow/ to
EXTRA_DIST.
* GNUmakefile.list.am: Add missing files.

Source/WebKit2:

* GNUmakefile.am: Add missing files.
* WebProcess/WebPage/TapHighlightController.cpp: Add #if
ENABLE(TOUCH_EVENTS).

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106240 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[Qt][WK2] http/tests/history/replacestate-post-to-get-2.html fails with timeout
ossy@webkit.org [Mon, 30 Jan 2012 13:34:51 +0000 (13:34 +0000)]
[Qt][WK2] http/tests/history/replacestate-post-to-get-2.html fails with timeout
https://bugs.webkit.org/show_bug.cgi?id=76784

* platform/qt-wk2/Skipped: Unskip now passing test.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106239 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoWeb Inspector: TabbedEditorContainer should save open tabs.
vsevik@chromium.org [Mon, 30 Jan 2012 13:10:24 +0000 (13:10 +0000)]
Web Inspector: TabbedEditorContainer should save open tabs.
https://bugs.webkit.org/show_bug.cgi?id=76912

Reviewed by Pavel Feldman.

Source/WebCore:

Test: inspector/tabbed-editors-history.html

* inspector/front-end/ScriptsPanel.js:
(WebInspector.ScriptsPanel.prototype._uiSourceCodeAdded):
(WebInspector.ScriptsPanel.prototype._reset):
(WebInspector.ScriptsPanel.prototype._showFile):
(WebInspector.ScriptsPanel.prototype._updateExecutionLine):
(WebInspector.ScriptsPanel.prototype._editorSelected):
(WebInspector.EditorContainer.prototype.uiSourceCodeAdded):
(WebInspector.ScriptsPanel.SingleFileEditorContainer.prototype.showFile):
(WebInspector.ScriptsPanel.SingleFileEditorContainer.prototype.reset):
* inspector/front-end/TabbedEditorContainer.js:
(WebInspector.TabbedEditorContainer):
(WebInspector.TabbedEditorContainer.prototype.showFile):
(WebInspector.TabbedEditorContainer.prototype._editorClosedByUserAction):
(WebInspector.TabbedEditorContainer.prototype._editorSelectedByUserAction):
(WebInspector.TabbedEditorContainer.prototype._updateHistory.tabIdToURL):
(WebInspector.TabbedEditorContainer.prototype._updateHistory):
(WebInspector.TabbedEditorContainer.prototype._appendFileTab):
(WebInspector.TabbedEditorContainer.prototype._tabClosed):
(WebInspector.TabbedEditorContainer.prototype._tabSelected):
(WebInspector.TabbedEditorContainer.prototype.reset):
(WebInspector.TabbedEditorContainer.History):
(WebInspector.TabbedEditorContainer.History.prototype.index):
(WebInspector.TabbedEditorContainer.History.prototype.update):
(WebInspector.TabbedEditorContainer.History.prototype.remove):
(WebInspector.TabbedEditorContainer.History.prototype.save):
* inspector/front-end/TabbedPane.js:
(WebInspector.TabbedPane.prototype.appendTab):
(WebInspector.TabbedPane.prototype.closeTab):
(WebInspector.TabbedPane.prototype._innerCloseTab):
(WebInspector.TabbedPane.prototype.closeAllTabs):
(WebInspector.TabbedPane.prototype.lastOpenedTabIds):
(WebInspector.TabbedPane.prototype._tabsSelectChanged):

LayoutTests:

* inspector/tabbed-editors-history-expected.txt: Added.
* inspector/tabbed-editors-history.html: Added.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106238 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoWeb Inspector: [Styles] Unable to paste and subsequently edit multiple properties...
apavlov@chromium.org [Mon, 30 Jan 2012 13:04:28 +0000 (13:04 +0000)]
Web Inspector: [Styles] Unable to paste and subsequently edit multiple properties in the Styles pane
https://bugs.webkit.org/show_bug.cgi?id=77209

Reviewed by Pavel Feldman.

Source/WebCore:

Check if the property value contains a ";" before kicking the freeflow text update.

* inspector/front-end/StylesSidebarPane.js:
(WebInspector.StylePropertyTreeElement.prototype):

LayoutTests:

* inspector/styles/styles-add-blank-property-expected.txt:
* inspector/styles/styles-add-blank-property.html:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106237 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoWeb Inspector: Change Open Resource and Go To function shortcuts in scripts panel.
vsevik@chromium.org [Mon, 30 Jan 2012 13:02:57 +0000 (13:02 +0000)]
Web Inspector: Change Open Resource and Go To function shortcuts in scripts panel.
https://bugs.webkit.org/show_bug.cgi?id=77321

Reviewed by Pavel Feldman.

* inspector/front-end/FilteredItemSelectionDialog.js:
(WebInspector.JavaScriptOutlineDialog.createShortcut):
(WebInspector.OpenResourceDialog.createShortcut):
* inspector/front-end/ScriptsPanel.js:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106236 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoWeb Inspector: hide function popover in heap snapshot view before navigating to the...
yurys@chromium.org [Mon, 30 Jan 2012 13:00:50 +0000 (13:00 +0000)]
Web Inspector: hide function popover in heap snapshot view before navigating to the function definition
https://bugs.webkit.org/show_bug.cgi?id=77330

Reviewed by Pavel Feldman.

* inspector/front-end/DetailedHeapshotView.js:
(WebInspector.DetailedHeapshotView.prototype.willHide):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106235 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[BlackBerry] Credential backing store implementation
commit-queue@webkit.org [Mon, 30 Jan 2012 12:50:00 +0000 (12:50 +0000)]
[BlackBerry] Credential backing store implementation
https://bugs.webkit.org/show_bug.cgi?id=76761

Patch by Jonathan Dong <jonathan.dong@torchmobile.com.cn> on 2012-01-30
Reviewed by Antonio Gomes.

Implemented credential backing store database and related
operations in class CredentialBackingStore.

* platform/network/blackberry/CredentialBackingStore.cpp:
(WebCore::CredentialBackingStore::~CredentialBackingStore):
(WebCore::CredentialBackingStore::open):
(WebCore::CredentialBackingStore::close):
(WebCore::CredentialBackingStore::addLogin):
(WebCore::CredentialBackingStore::updateLogin):
(WebCore::CredentialBackingStore::hasLogin):
(WebCore::CredentialBackingStore::getLogin):
(WebCore::CredentialBackingStore::removeLogin):
(WebCore::CredentialBackingStore::clear):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106234 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[Qt] Store build config immediately instead of waiting for a successfull build
vestbo@webkit.org [Mon, 30 Jan 2012 12:47:28 +0000 (12:47 +0000)]
[Qt] Store build config immediately instead of waiting for a successfull build

Otherwise we will not pick up changes to the config if the build is aborted,
for example due to build errors or if the user pressed Ctrl+Z. We now write
the new config before starting a build, but still defer to write the SVN
revision once the build completes successfully.

Reviewed by Ossy.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106233 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago.: Manual test of number of resize events emitted during page generation.
commit-queue@webkit.org [Mon, 30 Jan 2012 12:36:41 +0000 (12:36 +0000)]
.: Manual test of number of resize events emitted during page generation.
https://bugs.webkit.org/show_bug.cgi?id=77212

Is needed to test if too many resize events are send when using fixed
layout, and needs to be a manual test because the test framework does
not currently support testing fixed layout.

Patch by Allan Sandfeld Jensen <allan.jensen@nokia.com> on 2012-01-30
Reviewed by Kenneth Rohde Christiansen.

* ManualTests/resize-events.html: Added.

Source/WebCore: Only send resize events when layout size changes.
https://bugs.webkit.org/show_bug.cgi?id=77212

When using fixed layout the widget size is the size of content, therefore
resize checks must check against layoutsize and not widget size.

Patch by Allan Sandfeld Jensen <allan.jensen@nokia.com> on 2012-01-30
Reviewed by Kenneth Rohde Christiansen.

Needs to be manual tests because the test framework does not currently
support testing fixed layout.

Tests: ManualTests/resize-events.html

* page/FrameView.cpp:
(WebCore::FrameView::layout):
(WebCore::FrameView::performPostLayoutTasks):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106232 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[Qt] Add "New Window" button to the Qt MiniBrowser
commit-queue@webkit.org [Mon, 30 Jan 2012 12:10:14 +0000 (12:10 +0000)]
[Qt] Add "New Window" button to the Qt MiniBrowser
https://bugs.webkit.org/show_bug.cgi?id=77281

Patch by Alexander Færøy <ahf@0x90.dk> on 2012-01-30
Reviewed by Tor Arne Vestbø.

* MiniBrowser/qt/BrowserWindow.cpp:
(BrowserWindow::BrowserWindow):
* MiniBrowser/qt/MiniBrowser.qrc:
* MiniBrowser/qt/icons/plus.png: Added.
* MiniBrowser/qt/qml/BrowserWindow.qml:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106231 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoWeb Inspector: TimelinePanel does not respect InspectorFrontendHost.canSaveAs
pfeldman@chromium.org [Mon, 30 Jan 2012 12:06:16 +0000 (12:06 +0000)]
Web Inspector: TimelinePanel does not respect InspectorFrontendHost.canSaveAs
https://bugs.webkit.org/show_bug.cgi?id=77301

Reviewed by Vsevolod Vlasov.

* inspector/front-end/TimelinePanel.js:
(WebInspector.TimelinePanel.prototype._registerShortcuts):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106230 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago2012-01-30 Nikolas Zimmermann <nzimmermann@rim.com>
zimmermann@webkit.org [Mon, 30 Jan 2012 11:39:50 +0000 (11:39 +0000)]
2012-01-30  Nikolas Zimmermann  <nzimmermann@rim.com>

        Not reviewed. Fix Clang build for real after r106218.

        * inspector/CodeGeneratorInspector.py:
        (Generator.go): Add virtual destructor to the ABCs.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106229 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoNo need to keep anonymous RenderBlock in DETAILS.
commit-queue@webkit.org [Mon, 30 Jan 2012 11:32:20 +0000 (11:32 +0000)]
No need to keep anonymous RenderBlock in DETAILS.
https://bugs.webkit.org/show_bug.cgi?id=77322

Patch by Shinya Kawanaka <shinyak@google.com> on 2012-01-30
Reviewed by Hajime Morita.

Anonymous RenderBlock of DETAILS element was not squashed when detaching them.
However, it should be removed.

No new tests. Should be covered by existing tests.

* rendering/RenderBlock.cpp:
(WebCore::canMergeContiguousAnonymousBlocks):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106228 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoCustom written CSS lexer
zherczeg@webkit.org [Mon, 30 Jan 2012 11:17:58 +0000 (11:17 +0000)]
Custom written CSS lexer
https://bugs.webkit.org/show_bug.cgi?id=70107

Rubber Stamped by Csaba Osztrogonác.

Do not advance pointer at the end of input, just
keep returning with END_TOKEN.

* css/CSSParser.cpp:
(WebCore::CSSParser::lex):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106227 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[Chromium] Unreviewed test expectation change.
yuzo@google.com [Mon, 30 Jan 2012 10:48:38 +0000 (10:48 +0000)]
[Chromium] Unreviewed test expectation change.
fast/js/dfg-int32array.html is slow on WIN DEBUG and MAC DEBUG.

* platform/chromium/test_expectations.txt:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106226 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoThe query selector for HTMLContentElement should follow the shadow dom spec.
commit-queue@webkit.org [Mon, 30 Jan 2012 10:40:23 +0000 (10:40 +0000)]
The query selector for HTMLContentElement should follow the shadow dom spec.
https://bugs.webkit.org/show_bug.cgi?id=75946

Patch by Shinya Kawanaka <shinyak@google.com> on 2012-01-30
Reviewed by Hajime Morita.

Source/WebCore:

Checks the query selector of HTMLContentElement is valid.
If not valid, the selector won't match anything, and shows fallback element.

Test: fast/dom/shadow/content-selector-query.html

* html/shadow/ContentSelectorQuery.cpp:
(WebCore::ContentSelectorQuery::ContentSelectorQuery):
(WebCore::ContentSelectorQuery::isValidSelector):
(WebCore::ContentSelectorQuery::matches):
  When a select query is not valid, any element won't be matched.
(WebCore::validateSubSelector):
(WebCore::validateSelector):
(WebCore::ContentSelectorQuery::validateSelectorList):
  Validate selectors.
* html/shadow/ContentSelectorQuery.h:
* html/shadow/HTMLContentElement.cpp:
(WebCore::HTMLContentElement::isSelectValid):
  Returns true if select attribute is valid.
* html/shadow/HTMLContentElement.h:
* testing/Internals.cpp:
(WebCore::Internals::isValidContentSelect):
* testing/Internals.h:
* testing/Internals.idl:

LayoutTests:

* fast/dom/shadow/content-selector-query-expected.txt: Added.
* fast/dom/shadow/content-selector-query.html: Added.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106225 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed rolling out r106222.
ossy@webkit.org [Mon, 30 Jan 2012 10:39:32 +0000 (10:39 +0000)]
Unreviewed rolling out r106222.

* Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
(SingleTestRunner.__init__):
* Scripts/webkitpy/layout_tests/controllers/worker.py:
(Worker.handle_test_list):
* Scripts/webkitpy/layout_tests/models/test_input.py:
(TestInput.__init__):
* Scripts/webkitpy/layout_tests/run_webkit_tests.py:
(_set_up_derived_options):
(parse_args):
* Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
(MainTest.test_repeat_each):
* WebKitTestRunner/TestInvocation.cpp:
(WTR::TestInvocation::setIsPixelTest):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106224 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed, rolling out r106219.
hans@chromium.org [Mon, 30 Jan 2012 10:10:33 +0000 (10:10 +0000)]
Unreviewed, rolling out r106219.
http://trac.webkit.org/changeset/106219
https://bugs.webkit.org/show_bug.cgi?id=77083

This broke Chromium's test_shell.

Source/WebCore:

* GNUmakefile.list.am:
* Target.pri:
* WebCore.gypi:
* WebCore.vcproj/WebCore.vcproj:
* WebCore.xcodeproj/project.pbxproj:
* platform/mock/SpeechInputClientMock.cpp: Added.
(WebCore):
(WebCore::SpeechInputClientMock::SpeechInputClientMock):
(WebCore::SpeechInputClientMock::setListener):
(WebCore::SpeechInputClientMock::startRecognition):
(WebCore::SpeechInputClientMock::stopRecording):
(WebCore::SpeechInputClientMock::cancelRecognition):
(WebCore::SpeechInputClientMock::addRecognitionResult):
(WebCore::SpeechInputClientMock::clearResults):
(WebCore::SpeechInputClientMock::timerFired):
* platform/mock/SpeechInputClientMock.h: Added.
(WebCore):
(SpeechInputClientMock):

Source/WebKit/chromium:

* WebKit.gyp:
* public/WebSpeechInputControllerMock.h: Added.
(WebKit):
(WebSpeechInputControllerMock):
(WebKit::WebSpeechInputControllerMock::~WebSpeechInputControllerMock):
* public/WebSpeechInputResult.h:
(WebSpeechInputResult):
* src/WebSpeechInputControllerMockImpl.cpp: Added.
(WebKit):
(WebKit::WebSpeechInputControllerMock::create):
(WebKit::WebSpeechInputControllerMockImpl::WebSpeechInputControllerMockImpl):
(WebKit::WebSpeechInputControllerMockImpl::~WebSpeechInputControllerMockImpl):
(WebKit::WebSpeechInputControllerMockImpl::addMockRecognitionResult):
(WebKit::WebSpeechInputControllerMockImpl::clearResults):
(WebKit::WebSpeechInputControllerMockImpl::didCompleteRecording):
(WebKit::WebSpeechInputControllerMockImpl::didCompleteRecognition):
(WebKit::WebSpeechInputControllerMockImpl::setRecognitionResult):
(WebKit::WebSpeechInputControllerMockImpl::startRecognition):
(WebKit::WebSpeechInputControllerMockImpl::cancelRecognition):
(WebKit::WebSpeechInputControllerMockImpl::stopRecording):
* src/WebSpeechInputControllerMockImpl.h: Added.
(WebCore):
(WebKit):
(WebSpeechInputControllerMockImpl):
* src/WebSpeechInputResult.cpp:

Tools:

* DumpRenderTree/DumpRenderTree.gypi:
* DumpRenderTree/chromium/LayoutTestController.cpp:
(LayoutTestController::addMockSpeechInputResult):
* DumpRenderTree/chromium/LayoutTestController.h:
(WebKit):
(LayoutTestController):
():
* DumpRenderTree/chromium/MockWebSpeechInputController.cpp: Removed.
* DumpRenderTree/chromium/MockWebSpeechInputController.h: Removed.
* DumpRenderTree/chromium/TestShell.cpp:
* DumpRenderTree/chromium/WebViewHost.cpp:
(WebViewHost::speechInputController):
* DumpRenderTree/chromium/WebViewHost.h:
(WebKit):
(WebViewHost::speechInputControllerMock):
(WebViewHost):
():

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106223 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago2012-01-30 Balazs Kelemen <kbalazs@webkit.org>
kbalazs@webkit.org [Mon, 30 Jan 2012 10:06:15 +0000 (10:06 +0000)]
2012-01-30  Balazs Kelemen  <kbalazs@webkit.org>

        [WK2] add flag to only check pixel results if png files exist
        https://bugs.webkit.org/show_bug.cgi?id=70484

        Reviewed by Dirk Pranke.

        * Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
        (SingleTestRunner.__init__):
        (SingleTestRunner._should_fetch_expected_checksum):
        * Scripts/webkitpy/layout_tests/controllers/worker.py:
        (Worker.handle_test_list):
        * Scripts/webkitpy/layout_tests/models/test_input.py:
        (TestInput.__init__):
        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
        (_set_up_derived_options):
        (parse_args):
        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
        (MainTest.test_skip_pixel_test_if_no_baseline_option):
        * WebKitTestRunner/TestInvocation.cpp:
        (WTR::TestInvocation::setIsPixelTest):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106222 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago2012-01-30 Yury Semikhatsky <yurys@chromium.org>
yurys@chromium.org [Mon, 30 Jan 2012 09:42:58 +0000 (09:42 +0000)]
2012-01-30  Yury Semikhatsky  <yurys@chromium.org>

        Unreviewed. Clang build fix after r106218

        * inspector/CodeGeneratorInspector.py:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106221 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoMake GraphicsContext3DPrivate of GTK port shareable.
commit-queue@webkit.org [Mon, 30 Jan 2012 09:40:38 +0000 (09:40 +0000)]
Make GraphicsContext3DPrivate of GTK port shareable.
https://bugs.webkit.org/show_bug.cgi?id=77296

Patch by ChangSeok Oh <shivamidow@gmail.com> on 2012-01-30
Reviewed by Eric Seidel.

GraphicsContext3DPrivate.cpp/h of GTK port look shareable with another port
using glx backend for WebGL. For example, EFL port.
Moved GraphicsContext3DPrivate.cpp and its header into Source/WebCore/platform/graphics/glx.

No new tests required, because of no new feature.

* GNUmakefile.am:
* GNUmakefile.list.am:
* platform/graphics/glx/GraphicsContext3DPrivate.cpp: Renamed from Source/WebCore/platform/graphics/gtk/GraphicsContext3DPrivate.cpp.
(sharedDisplay):
(WebCore):
(WebCore::activeGraphicsContexts):
(WebCore::GraphicsContext3DPrivate::addActiveGraphicsContext):
(WebCore::GraphicsContext3DPrivate::removeActiveGraphicsContext):
(WebCore::GraphicsContext3DPrivate::cleanupActiveContextsAtExit):
(WebCore::GraphicsContext3DPrivate::create):
(WebCore::GraphicsContext3DPrivate::createPbufferContext):
(WebCore::GraphicsContext3DPrivate::createPixmapContext):
(WebCore::GraphicsContext3DPrivate::GraphicsContext3DPrivate):
(WebCore::GraphicsContext3DPrivate::~GraphicsContext3DPrivate):
(WebCore::GraphicsContext3DPrivate::makeContextCurrent):
* platform/graphics/glx/GraphicsContext3DPrivate.h: Renamed from Source/WebCore/platform/graphics/gtk/GraphicsContext3DPrivate.h.
(WebCore):
(GraphicsContext3DPrivate):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106220 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoSpeech Input: move MockSpeechInputClient into Chromium DumpRenderTree implementation
hans@chromium.org [Mon, 30 Jan 2012 09:31:58 +0000 (09:31 +0000)]
Speech Input: move MockSpeechInputClient into Chromium DumpRenderTree implementation
https://bugs.webkit.org/show_bug.cgi?id=77083

Reviewed by Darin Fisher.

Source/WebCore:

Remove SpeechInputClientMock. The mock is moving to the DumpRenderTree
implementation.

No new tests, just refactoring.

* GNUmakefile.list.am:
* Target.pri:
* WebCore.gypi:
* WebCore.vcproj/WebCore.vcproj:
* WebCore.xcodeproj/project.pbxproj:
* platform/mock/SpeechInputClientMock.cpp: Removed.
* platform/mock/SpeechInputClientMock.h: Removed.

Source/WebKit/chromium:

Remove the WebSpeechInputControllerMock interface and proxy
implementation. The mock is moving to the DumpRenderTree
implementation instead, which removes the need to expose this
interface in the WebKit API.

Also add a proper copy constructor for WebSpeechInputResult.
The default one doesn't do a proper copy.

* WebKit.gyp:
* public/WebSpeechInputControllerMock.h: Removed.
* public/WebSpeechInputResult.h:
(WebKit::WebSpeechInputResult::WebSpeechInputResult):
(WebSpeechInputResult):
* src/WebSpeechInputControllerMockImpl.cpp: Removed.
* src/WebSpeechInputControllerMockImpl.h: Removed.
* src/WebSpeechInputResult.cpp:
(WebKit::WebSpeechInputResult::set):
(WebKit):

Tools:

Add MockWebSpeechInputController which provides a mock implementation
of the WebSpeechInputController interface, and use that in
DumpRenderTree.

* DumpRenderTree/DumpRenderTree.gypi:
* DumpRenderTree/chromium/LayoutTestController.cpp:
(LayoutTestController::addMockSpeechInputResult):
* DumpRenderTree/chromium/LayoutTestController.h:
():
* DumpRenderTree/chromium/MockWebSpeechInputController.cpp: Added.
(MockWebSpeechInputController::create):
(MockWebSpeechInputController::addMockRecognitionResult):
(MockWebSpeechInputController::clearResults):
(MockWebSpeechInputController::startRecognition):
(MockWebSpeechInputController::cancelRecognition):
(MockWebSpeechInputController::stopRecording):
(MockWebSpeechInputController::MockWebSpeechInputController):
(MockWebSpeechInputController::speechTaskFired):
(MockWebSpeechInputController::SpeechTask::SpeechTask):
(MockWebSpeechInputController::SpeechTask::stop):
(MockWebSpeechInputController::SpeechTask::runIfValid):
* DumpRenderTree/chromium/MockWebSpeechInputController.h: Added.
(WebKit):
(MockWebSpeechInputController):
(MockWebSpeechInputController::taskList):
(SpeechTask):
* DumpRenderTree/chromium/TestShell.cpp:
* DumpRenderTree/chromium/WebViewHost.cpp:
(WebViewHost::speechInputController):
* DumpRenderTree/chromium/WebViewHost.h:
(WebKit):
(WebViewHost::speechInputControllerMock):
(WebViewHost):
():

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106219 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoWeb Inspector: CodeGeneratorInspector.py: clean InspectorBackendDispatcher.h
yurys@chromium.org [Mon, 30 Jan 2012 08:57:18 +0000 (08:57 +0000)]
Web Inspector: CodeGeneratorInspector.py: clean InspectorBackendDispatcher.h
https://bugs.webkit.org/show_bug.cgi?id=77062

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

Code generator is changed. Now it generates InspectorBackendDispatcher
as an abstract class so that implementation details could be fully
hidden in .cpp file in a separate 'impl' class. This should make .h
file more clear.
Also new formal interfaces to domain agents are generated. This is an
improvement over the current case when interfaces to agents are
definen implicitly at calling sites.

* inspector/CodeGeneratorInspector.py:
(RawTypes):
(RawTypes.OutputPassModel):
(RawTypes.OutputPassModel.ByPointer):
(RawTypes.OutputPassModel.ByPointer.get_argument_prefix):
(RawTypes.OutputPassModel.ByPointer.get_parameter_type_suffix):
(RawTypes.OutputPassModel.ByReference):
(RawTypes.OutputPassModel.ByReference.get_argument_prefix):
(RawTypes.OutputPassModel.ByReference.get_parameter_type_suffix):
(RawTypes.BaseType.is_event_param_check_optional):
(RawTypes.String):
(RawTypes.String.get_output_pass_model):
(RawTypes.String.is_heavy_value):
(RawTypes.Int):
(RawTypes.Int.get_output_pass_model):
(RawTypes.Int.is_heavy_value):
(RawTypes.Number):
(RawTypes.Number.get_output_pass_model):
(RawTypes.Number.is_heavy_value):
(RawTypes.Bool.get_c_param_type):
(RawTypes.Bool):
(RawTypes.Bool.get_output_pass_model):
(RawTypes.Bool.is_heavy_value):
(RawTypes.Object):
(RawTypes.Object.get_output_pass_model):
(RawTypes.Object.is_heavy_value):
(RawTypes.Any.get_c_initializer):
(RawTypes.Any):
(RawTypes.Any.get_output_pass_model):
(RawTypes.Any.is_heavy_value):
(RawTypes.Array):
(RawTypes.Array.get_output_pass_model):
(RawTypes.Array.is_heavy_value):
(InspectorBackendDispatcherImpl):
(void):
(Generator):
(Generator.go):
(Generator.process_command):
* inspector/InspectorController.cpp:
(WebCore::InspectorController::connectFrontend):
* inspector/WorkerInspectorController.cpp:
(WebCore::WorkerInspectorController::connectFrontend):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106218 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoCustom written CSS lexer
zherczeg@webkit.org [Mon, 30 Jan 2012 07:30:14 +0000 (07:30 +0000)]
Custom written CSS lexer
https://bugs.webkit.org/show_bug.cgi?id=70107

Reviewed by Antti Koivisto and Oliver Hunt.

.:

Remove tokenizer.cpp from intermediate sources.

* wscript:

Source/JavaScriptCore:

Add new helper functions for the custom written CSS lexer.

* wtf/ASCIICType.h:
(WTF::toASCIILowerUnchecked):
(WTF):
(WTF::isASCIIAlphaCaselessEqual):

Source/WebCore:

This patch replaces the flex based CSS lexer to a
new, custom written one. The new code is more
than 2 times faster according to oprofile and CPU
cycle counters.

The code structure is quite straightforward: it choose
the possible token group based on the first character
and employ utility functions to parse the longer than
one character long ones. Most of the utilities are inline
to make the lexer fast.

All build systems updated. Including removing the flex support.

Existing tests cover this feature.

* CMakeLists.txt:
* DerivedSources.make:
* DerivedSources.pri:
* GNUmakefile.am:
* GNUmakefile.list.am:
* WebCore.gyp/WebCore.gyp:
* WebCore.gyp/scripts/action_maketokenizer.py: Removed.
* WebCore.gypi:
* WebCore.vcproj/WebCore.vcproj:
* WebCore.xcodeproj/project.pbxproj:
* css/CSSParser.cpp:
(WebCore::CSSParser::CSSParser):
(WebCore::CSSParser::setupParser):
(WebCore::parseSimpleLengthValue):
(WebCore::mightBeRGBA):
(WebCore::mightBeRGB):
():
(WebCore::isCSSLetter):
(WebCore):
(WebCore::isCSSEscape):
(WebCore::isURILetter):
(WebCore::isIdentifierStartAfterDash):
(WebCore::isEqualToCSSIdentifier):
(WebCore::checkAndSkipEscape):
(WebCore::skipWhiteSpace):
(WebCore::CSSParser::isIdentifierStart):
(WebCore::CSSParser::checkAndSkipString):
(WebCore::CSSParser::parseEscape):
(WebCore::CSSParser::parseIdentifier):
(WebCore::CSSParser::parseString):
(WebCore::CSSParser::parseURI):
(WebCore::CSSParser::parseUnicodeRange):
(WebCore::CSSParser::parseNthChild):
(WebCore::CSSParser::parseNthChildExtra):
(WebCore::CSSParser::detectFunctionTypeToken):
(WebCore::CSSParser::detectMediaQueryToken):
(WebCore::CSSParser::detectNumberToken):
(WebCore::CSSParser::detectDashToken):
(WebCore::CSSParser::detectAtToken):
(WebCore::CSSParser::lex):
(WebCore::CSSParser::markSelectorListStart):
(WebCore::CSSParser::markSelectorListEnd):
(WebCore::CSSParser::markRuleBodyStart):
(WebCore::CSSParser::markRuleBodyEnd):
(WebCore::CSSParser::markPropertyStart):
(WebCore::CSSParser::markPropertyEnd):
* css/CSSParser.h:
(WebCore::CSSParser::token):
(CSSParser):
():
* css/tokenizer.flex: Removed.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106217 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[Chromium] REGRESSION(r87067): WebFrame::setFindEndstateFocusAndSelection()
tkent@chromium.org [Mon, 30 Jan 2012 07:22:59 +0000 (07:22 +0000)]
[Chromium] REGRESSION(r87067): WebFrame::setFindEndstateFocusAndSelection()
doesn't set the selection for <input> and <textarea>
https://bugs.webkit.org/show_bug.cgi?id=77186

Reviewed by Hajime Morita.

When the find-in-page box is closed, WebFrame::stopFinding(false) is
called. It calls setFindEndstateFocusAndSelection(). Before r87067,
m_activeMatch was stored as the normal selection in <input> or
<textarea> by accident. r87067 stopped this accidental behavior.

However the behavior of pre-r87067 is useful and we should support it
for contentEditable elements too.

* src/WebFrameImpl.cpp:
(WebKit::WebFrameImpl::setFindEndstateFocusAndSelection):
- Add special handing for <input> and <textarea> to find a focusable parent.
- Sets the active match as the selection even if a focusable parent is found.
* tests/WebFrameTest.cpp:
(WebKit::TEST_F): Add tests for find() and stopFinding().
* tests/data/find.html: Added.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106216 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[Chromium] Unreviewed test expectation change.
yuzo@google.com [Mon, 30 Jan 2012 07:07:02 +0000 (07:07 +0000)]
[Chromium] Unreviewed test expectation change.
inspector/extensions/extensions-{events,sidebar}.html time out for WIN DBG.

* platform/chromium/test_expectations.txt:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106215 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[chromium/mac] Fix two-finger scrolling
commit-queue@webkit.org [Mon, 30 Jan 2012 06:55:15 +0000 (06:55 +0000)]
[chromium/mac] Fix two-finger scrolling
https://bugs.webkit.org/show_bug.cgi?id=77316

http://trac.webkit.org/changeset/106021/trunk changed the phase enums
to match AppKit. This changes WebMouseWheelEvent accordingly.

No tests, because DRT doesn't support synthetic scroll events with
event phases.

Patch by Nico Weber <nicolasweber@gmx.de> on 2012-01-29
Reviewed by Anders Carlsson.

* public/WebInputEvent.h:
* src/mac/WebInputEventFactory.mm:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106214 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[Chromium] Unreviewed test expectation change.
yuzo@google.com [Mon, 30 Jan 2012 05:50:36 +0000 (05:50 +0000)]
[Chromium] Unreviewed test expectation change.
svg/W3C-SVG-1.1/masking-intro-01-f.svg does not crash after r105978.

* platform/chromium/test_expectations.txt:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106213 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[Chromium] Unreviewed test expectation change.
yuzo@google.com [Mon, 30 Jan 2012 04:08:17 +0000 (04:08 +0000)]
[Chromium] Unreviewed test expectation change.
fast/events/touch/touch-gesture-scroll.html is flaky on MAC and WIN.

* platform/chromium/test_expectations.txt:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106212 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoDOM/DOMDivWalk.html result is unreliable
rniwa@webkit.org [Mon, 30 Jan 2012 03:59:37 +0000 (03:59 +0000)]
DOM/DOMDivWalk.html result is unreliable
https://bugs.webkit.org/show_bug.cgi?id=77313

Reviewed by Adam Birth.

Trigger garbage collection manually between test runs to avoid GC
to occur in the middle of runs.

* DOM/resources/dom-perf.js:
(BenchmarkSuite.prototype.RunSingle):
* resources/runner.js:
(gc.else.gcRec):
(gc):
(runLoop):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106211 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[Chromium] Unreviewed test expectation change.
yuzo@google.com [Mon, 30 Jan 2012 03:59:22 +0000 (03:59 +0000)]
[Chromium] Unreviewed test expectation change.
Layout Test fast/events/touch/send-oncancel-event.html is flaky on MAC and WIN.

* platform/chromium/test_expectations.txt:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106210 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoPrepare WebCore.gyp for ffmpeg source transition.
commit-queue@webkit.org [Mon, 30 Jan 2012 03:49:19 +0000 (03:49 +0000)]
Prepare WebCore.gyp for ffmpeg source transition.
https://bugs.webkit.org/show_bug.cgi?id=77254

We're migrating our ffmpeg repo from a set of patches living on top of
a tarball to an actual git fork of upstream.  The paths have changed
slightly.

In order to not break the current build, we'll keep both paths around
until the transition is complete.  Afterward the 'patched-ffmpeg' path
will be removed.

Patch by Dale Curtis <dalecurtis@chromium.org> on 2012-01-29
Reviewed by Tony Chang.

No new tests. GYP change, if it doesn't work, nothing will compile.

* WebCore.gyp/WebCore.gyp:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106209 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoAdd a ShadowRoot constructor as 'WebKitShadowRootConstructor', enabled by SHADOW_DOM...
hayato@chromium.org [Mon, 30 Jan 2012 03:47:32 +0000 (03:47 +0000)]
Add a ShadowRoot constructor as 'WebKitShadowRootConstructor', enabled by SHADOW_DOM flag.
https://bugs.webkit.org/show_bug.cgi?id=76354

Reviewed by Hajime Morita.

We use vendor-prefixed name, 'WebKitShadowRoot', instead of 'ShadowRoot'
since this is a feature under development.

Source/WebCore:

* dom/ShadowRoot.cpp:
(WebCore::ShadowRoot::create):
(WebCore):
* dom/ShadowRoot.h:
(WebCore):
(ShadowRoot):
* dom/ShadowRoot.idl:
* page/DOMWindow.idl:

LayoutTests:

* fast/dom/shadow/shadow-root-js-api.html:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106208 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoREGRESSION (r105576-r105582): Web Inspector Crash in JSC::JSValue::toString(JSC:...
fpizlo@apple.com [Mon, 30 Jan 2012 02:39:14 +0000 (02:39 +0000)]
REGRESSION (r105576-r105582): Web Inspector Crash in JSC::JSValue::toString(JSC::ExecState*) const
https://bugs.webkit.org/show_bug.cgi?id=77146
<rdar://problem/10770586>

Reviewed by Oliver Hunt.

The old JIT expects that the result of the last operation is in the lastResultRegister.  The DFG JIT is
designed to correctly track the lastResultRegister by looking at SetLocal nodes.  However, when the DFG
JIT inlines a code block, it forgets that the inlined code block's result would have been placed in the
lastResultRegister.  Hence if we OSR exit on the first node following the end of an inlined code block
that had a return value, and that first node uses the return value, the old JIT will get massively
confused.  This patch takes a surgical approach: instead of making the DFG smarter, it makes the old
JIT slightly dumber.

* jit/JITCall.cpp:
(JSC::JIT::emit_op_call_put_result):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106207 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[Chromium] Unreviewed test expectation change.
yuzo@google.com [Mon, 30 Jan 2012 02:23:12 +0000 (02:23 +0000)]
[Chromium] Unreviewed test expectation change.
fast/js/navigator-language.html is flaky.

* platform/chromium/test_expectations.txt:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106206 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed gardening. css3/flexbox/cross-axis-scrollbar.html is failing on Chromium...
leviw@chromium.org [Mon, 30 Jan 2012 02:08:22 +0000 (02:08 +0000)]
Unreviewed gardening. css3/flexbox/cross-axis-scrollbar.html is failing on Chromium Windows.
Removing an incorrect pixel expectation (it's a ref test) and marking it as failing on
Chromium Windows.

* platform/chromium-win/css3/flexbox/cross-axis-scrollbar-expected.png: Removed.
* platform/chromium/test_expectations.txt:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106205 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoBuild fix for Mac non-x64 platforms.
fpizlo@apple.com [Mon, 30 Jan 2012 01:41:09 +0000 (01:41 +0000)]
Build fix for Mac non-x64 platforms.

* tools/CodeProfiling.cpp:
(JSC):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106204 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[chromium] Use decoding swizzle only on libjpeg-turbo 1.1.90+
noel.gordon@gmail.com [Sun, 29 Jan 2012 23:59:44 +0000 (23:59 +0000)]
[chromium] Use decoding swizzle only on libjpeg-turbo 1.1.90+
https://bugs.webkit.org/show_bug.cgi?id=74286

Reviewed by Kenneth Russell.

No new tests. Covered by many existing tests: in particular
    fast/images/*, fast/canvas/*,
    tables/mozilla/bugs/bug29314.html
    tables/mozilla/bugs/bug13169.html
    tables/mozilla/bugs/bug10565.html
    tables/mozilla/bugs/bug11026.html
    fast/repaint/backgroundSizeRepaint.html
    fast/repaint/block-layout-inline-children-replaced.html
    fast/repaint/clipped-relative.html
    fast/repaint/selected-replaced.html
    tables/mozilla/bugs/bug12908-1.html

* platform/image-decoders/jpeg/JPEGImageDecoder.cpp:
(rgbOutputColorSpace): Swizzle decode iff libjpeg-turbo is r732 or above.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106203 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed, rolling out r106022.
ossy@webkit.org [Sun, 29 Jan 2012 23:49:39 +0000 (23:49 +0000)]
Unreviewed, rolling out r106022.
http://trac.webkit.org/changeset/106022
https://bugs.webkit.org/show_bug.cgi?id=77305

It broke Qt-WK2 API tests (Requested by Ossy_weekend on
#webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2012-01-29

* UIProcess/API/qt/qquickwebview.cpp:
(QQuickWebViewPrivate::setUseTraditionalDesktopBehaviour):
(QQuickWebView::geometryChanged):
* UIProcess/API/qt/qquickwebview_p.h:
* UIProcess/API/qt/qwebviewportinfo.cpp:
(QWebViewportInfo::currentScale):
(QWebViewportInfo::devicePixelRatio):
(QWebViewportInfo::initialScale):
(QWebViewportInfo::minimumScale):
(QWebViewportInfo::maximumScale):
(QWebViewportInfo::isScalable):
(QWebViewportInfo::layoutSize):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106202 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed, rolling out r105999.
leviw@chromium.org [Sun, 29 Jan 2012 23:41:33 +0000 (23:41 +0000)]
Unreviewed, rolling out r105999.
http://trac.webkit.org/changeset/105999
https://bugs.webkit.org/show_bug.cgi?id=77304

Validating that this caused a performance regression in page
load tests. (Requested by leviw on #webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2012-01-29

* dom/NamedNodeMap.cpp:
* dom/NamedNodeMap.h:
(NamedNodeMap):
* dom/StyledElement.cpp:
(WebCore::StyledElement::updateStyleAttribute):
(WebCore::StyledElement::createInlineStyleDecl):
(WebCore):
(WebCore::StyledElement::destroyInlineStyleDecl):
(WebCore::StyledElement::ensureInlineStyleDecl):
(WebCore::StyledElement::style):
(WebCore::StyledElement::addSubresourceAttributeURLs):
* dom/StyledElement.h:
(WebCore::StyledElement::inlineStyleDecl):
(StyledElement):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106201 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoReserved Word tests fail on Chromium after r106198
leviw@chromium.org [Sun, 29 Jan 2012 23:36:35 +0000 (23:36 +0000)]
Reserved Word tests fail on Chromium after r106198
https://bugs.webkit.org/show_bug.cgi?id=77303

Unreviewed gardening. disabling new reserved word tests on Chromium after r106198.

* platform/chromium/test_expectations.txt:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106200 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed, rolling out r106109.
ossy@webkit.org [Sun, 29 Jan 2012 23:23:17 +0000 (23:23 +0000)]
Unreviewed, rolling out r106109.
http://trac.webkit.org/changeset/106109
https://bugs.webkit.org/show_bug.cgi?id=77302

It made tests crash (Requested by Ossy_weekend on #webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2012-01-29

Source/WebCore:

* platform/graphics/qt/TextureMapperQt.cpp:
(WebCore::TextureMapperQt::setGraphicsContext):
* platform/graphics/qt/TextureMapperQt.h:
(WebCore::TextureMapperQt::initialize):

Source/WebKit2:

* UIProcess/API/qt/qquickwebpage.cpp:
* UIProcess/API/qt/qquickwebpage_p_p.h:
(QQuickWebPagePrivate):
* UIProcess/API/qt/qquickwebview.cpp:
(QQuickWebViewPrivate::QQuickWebViewPrivate):
* UIProcess/API/qt/qquickwebview_p.h:
* UIProcess/API/qt/qquickwebview_p_p.h:
(QQuickWebViewPrivate):
* UIProcess/DrawingAreaProxy.h:
* UIProcess/DrawingAreaProxyImpl.cpp:
* UIProcess/DrawingAreaProxyImpl.h:
(DrawingAreaProxyImpl):
* UIProcess/LayerTreeHostProxy.h:
(LayerTreeHostProxy):
* UIProcess/qt/LayerTreeHostProxyQt.cpp:
(WebKit::LayerTreeHostProxy::paintToCurrentGLContext):
* UIProcess/qt/QtPageClient.cpp:
(QtPageClient::setViewNeedsDisplay):

Tools:

* WebKitTestRunner/qt/PlatformWebViewQt.cpp:
(WTR::WrapperWindow::WrapperWindow):
(WTR::PlatformWebView::PlatformWebView):

LayoutTests:

* platform/qt-wk2/Skipped:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106199 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoReserve 'let'
barraclough@apple.com [Sun, 29 Jan 2012 08:23:48 +0000 (08:23 +0000)]
Reserve 'let'
https://bugs.webkit.org/show_bug.cgi?id=77293

Rubber stamped by Oliver Hunt.

'let' may become a keyword in ES6.  We're going to try experimentally reserving it,
to see if this breaks the web.

Source/JavaScriptCore:

* parser/Keywords.table:

LayoutTests:

* fast/js/keywords-and-reserved_words-expected.txt:
* fast/js/reserved-words-as-property-expected.txt:
* fast/js/reserved-words-strict-expected.txt:
* fast/js/script-tests/keywords-and-reserved_words.js:
* fast/js/script-tests/reserved-words-as-property.js:
* fast/js/script-tests/reserved-words-strict.js:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106198 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoImplement a JIT-code aware sampling profiler for JSC
barraclough@apple.com [Sun, 29 Jan 2012 03:47:13 +0000 (03:47 +0000)]
Implement a JIT-code aware sampling profiler for JSC
https://bugs.webkit.org/show_bug.cgi?id=76855

Reviewed by Oliver Hunt.

To enable the profiler, set the JSC_CODE_PROFILING environment variable to
1 (no tracing the C stack), 2 (trace one level of C code) or 3 (recursively
trace all samples).

The profiler requires -fomit-frame-pointer to be removed from the build flags.

* JavaScriptCore.exp:
    - Removed an export.
* JavaScriptCore.xcodeproj/project.pbxproj:
    - Added new files
* bytecode/CodeBlock.cpp:
    - For baseline codeblocks, cache the result of canCompileWithDFG.
* bytecode/CodeBlock.h:
    - For baseline codeblocks, cache the result of canCompileWithDFG.
* jit/ExecutableAllocator.cpp:
(JSC::ExecutableAllocator::initializeAllocator):
    - Notify the profiler when the allocator is created.
(JSC::ExecutableAllocator::allocate):
    - Inform the allocated of the ownerUID.
* jit/ExecutableAllocatorFixedVMPool.cpp:
(JSC::ExecutableAllocator::initializeAllocator):
    - Notify the profiler when the allocator is created.
(JSC::ExecutableAllocator::allocate):
    - Inform the allocated of the ownerUID.
* jit/JITStubs.cpp:
    - If profiling, don't mask the return address in JIT code.
      (We do so to provide nicer backtraces in debug builds).
* runtime/Completion.cpp:
(JSC::evaluate):
    - Notify the profiler of script evaluations.
* tools: Added.
* tools/CodeProfile.cpp: Added.
(JSC::symbolName):
    - Helper function to get the name of a symbol in the framework.
(JSC::truncateTrace):
    - Helper to truncate traces into methods know to have uninformatively deep stacks.
(JSC::CodeProfile::sample):
    - Record a stack trace classifying samples.
(JSC::CodeProfile::report):
    - {Print profiler output.
* tools/CodeProfile.h: Added.
    - new class, captures a set of samples associated with an evaluated script,
      and nested to record samples from subscripts.
* tools/CodeProfiling.cpp: Added.
(JSC::CodeProfiling::profilingTimer):
    - callback fired then a timer event occurs.
(JSC::CodeProfiling::notifyAllocator):
    - called when the executable allocator is constructed.
(JSC::CodeProfiling::getOwnerUIDForPC):
    - helper to lookup the codeblock from an address in JIT code
(JSC::CodeProfiling::begin):
    - enter a profiling scope.
(JSC::CodeProfiling::end):
    - exit a profiling scope.
* tools/CodeProfiling.h: Added.
    - new class, instantialed from Completion to define a profiling scope.
* tools/ProfileTreeNode.h: Added.
    - new class, used to construct a tree of samples.
* tools/TieredMMapArray.h: Added.
    - new class, a malloc-free vector (can be used while the main thread is suspended,
      possibly holding the malloc heap lock).
* wtf/MetaAllocator.cpp:
(WTF::MetaAllocatorHandle::MetaAllocatorHandle):
(WTF::MetaAllocator::allocate):
    - Allow allocation handles to track information about their owner.
* wtf/MetaAllocator.h:
(MetaAllocator):
    - Allow allocation handles to track information about their owner.
* wtf/MetaAllocatorHandle.h:
(MetaAllocatorHandle):
(WTF::MetaAllocatorHandle::ownerUID):
    - Allow allocation handles to track information about their owner.
* wtf/OSAllocator.h:
(WTF::OSAllocator::reallocateCommitted):
    - reallocate an existing, committed memory allocation.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106197 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed. Rolled DEPS.
commit-queue@webkit.org [Sun, 29 Jan 2012 00:20:09 +0000 (00:20 +0000)]
Unreviewed.  Rolled DEPS.

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2012-01-28

* DEPS:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106196 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[chromium] Add support for building standalone webkit/chromium checkouts with ninja.
thakis@chromium.org [Sat, 28 Jan 2012 23:43:30 +0000 (23:43 +0000)]
[chromium] Add support for building standalone webkit/chromium checkouts with ninja.
https://bugs.webkit.org/show_bug.cgi?id=77243

Reviewed by Adam Barth.

Source/WebKit/chromium:

* gyp_webkit:

Tools:

* Scripts/update-webkit:
* Scripts/webkitdirs.pm:
(isChromiumNinja):
(determineIsChromiumNinja):
(buildChromiumNinja):
(buildChromium):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106195 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed gardening. Adding Chromium platform expectations for canvas tests after...
leviw@chromium.org [Sat, 28 Jan 2012 21:41:18 +0000 (21:41 +0000)]
Unreviewed gardening. Adding Chromium platform expectations for canvas tests after 106184.

* platform/chromium-linux-x86/canvas: Added.
* platform/chromium-linux-x86/canvas/philip: Added.
* platform/chromium-linux-x86/canvas/philip/tests: Added.
* platform/chromium-linux-x86/canvas/philip/tests/2d.line.cap.round-expected.txt: Added.
* platform/chromium-linux-x86/canvas/philip/tests/2d.strokeRect.zero.5-expected.txt: Added.
* platform/chromium-linux-x86/fast/canvas: Added.
* platform/chromium-linux-x86/fast/canvas/canvas-fillRect-gradient-shadow-expected.txt: Added.
* platform/chromium-linux/canvas: Added.
* platform/chromium-linux/canvas/philip: Added.
* platform/chromium-linux/canvas/philip/tests: Added.
* platform/chromium-linux/canvas/philip/tests/2d.line.cap.round-expected.txt: Added.
* platform/chromium-linux/canvas/philip/tests/2d.strokeRect.zero.5-expected.txt: Added.
* platform/chromium-linux/fast/canvas/canvas-fillRect-gradient-shadow-expected.txt: Added.
* platform/chromium-win-vista/canvas: Added.
* platform/chromium-win-vista/canvas/philip: Added.
* platform/chromium-win-vista/canvas/philip/tests: Added.
* platform/chromium-win-vista/canvas/philip/tests/2d.line.cap.round-expected.txt: Added.
* platform/chromium-win-vista/canvas/philip/tests/2d.strokeRect.zero.5-expected.txt: Added.
* platform/chromium-win-vista/fast/canvas: Added.
* platform/chromium-win-vista/fast/canvas/canvas-fillRect-gradient-shadow-expected.txt: Added.
* platform/chromium-win-xp/canvas: Added.
* platform/chromium-win-xp/canvas/philip: Added.
* platform/chromium-win-xp/canvas/philip/tests: Added.
* platform/chromium-win-xp/canvas/philip/tests/2d.line.cap.round-expected.txt: Added.
* platform/chromium-win-xp/canvas/philip/tests/2d.strokeRect.zero.5-expected.txt: Added.
* platform/chromium-win-xp/fast/canvas: Added.
* platform/chromium-win-xp/fast/canvas/canvas-fillRect-gradient-shadow-expected.txt: Added.
* platform/chromium-win/canvas/philip/tests/2d.line.cap.round-expected.txt: Added.
* platform/chromium-win/canvas/philip/tests/2d.strokeRect.zero.5-expected.txt: Added.
* platform/chromium-win/fast/canvas/canvas-fillRect-gradient-shadow-expected.txt: Added.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106194 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoLayout Test webaudio/panner-set-model.html crashes on debug Chromium bots
leviw@chromium.org [Sat, 28 Jan 2012 21:31:33 +0000 (21:31 +0000)]
Layout Test webaudio/panner-set-model.html crashes on debug Chromium bots
https://bugs.webkit.org/show_bug.cgi?id=77283

Unreviewed gardening. Marking webaudio/panner-set-model.html crashing on Debug Chromium bots.

* platform/chromium/test_expectations.txt:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106193 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[Qt] Remove references to CSSBorderImageValue.h in Target.pri
commit-queue@webkit.org [Sat, 28 Jan 2012 20:19:30 +0000 (20:19 +0000)]
[Qt] Remove references to CSSBorderImageValue.h in Target.pri
https://bugs.webkit.org/show_bug.cgi?id=77277

Patch by Alexander Færøy <ahf@0x90.dk> on 2012-01-28
Reviewed by Antonio Gomes.

CSSBorderImageValue.h was removed in r105502.

* Target.pri:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106192 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoREGRESSION (r94016): Element with visibility:hidden but visible descendant may not...
jchaffraix@webkit.org [Sat, 28 Jan 2012 19:28:44 +0000 (19:28 +0000)]
REGRESSION (r94016): Element with visibility:hidden but visible descendant may not be properly repainted
https://bugs.webkit.org/show_bug.cgi?id=76126

Reviewed by Simon Fraser.

Source/WebCore:

Tests: fast/layers/scroll-no-visible-content-but-visible-descendant-expected.html
       fast/layers/scroll-no-visible-content-but-visible-descendant.html

The optimization missed out that if the current layer does not have some visible content
(m_hasVisibleContent is false), a descendant could totally be visible and would need to
have its repaint rectangles recomputed.

* rendering/RenderLayer.cpp:
(WebCore::RenderLayer::updateLayerPositionsAfterScroll):
Bail out only if the layer doesn't have visible content AND no visible descendants.

LayoutTests:

Added testing for a layer with no visible content but one of its descendant has some visible content.
The reverse case is already profusely tested.

* fast/layers/scroll-no-visible-content-but-visible-descendant-expected.html: Added.
* fast/layers/scroll-no-visible-content-but-visible-descendant.html: Added.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106191 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoGet rid of TransformOperationList
cmarrin@apple.com [Sat, 28 Jan 2012 19:02:34 +0000 (19:02 +0000)]
Get rid of TransformOperationList
https://bugs.webkit.org/show_bug.cgi?id=77249

Reviewed by Dan Bernstein.

Changed fetchTransformOperationList to validateTransformOperations and got rid of separately generated list
of transform operations. These are not needed, they are already available in the keyframe lists and they
make it more difficult to add support for hardware animated filters. No behavior changes.

* platform/graphics/GraphicsLayer.cpp:
(WebCore::GraphicsLayer::validateTransformOperations):
* platform/graphics/GraphicsLayer.h:
(GraphicsLayer):
* platform/graphics/ca/GraphicsLayerCA.cpp:
(WebCore::GraphicsLayerCA::appendToUncommittedAnimations):
(WebCore::GraphicsLayerCA::createTransformAnimationsFromKeyframes):
* platform/graphics/ca/GraphicsLayerCA.h:
():
* platform/graphics/texmap/GraphicsLayerTextureMapper.cpp:
(WebCore::GraphicsLayerTextureMapper::addAnimation):
* platform/graphics/texmap/TextureMapperAnimation.cpp:
(WebCore::applyTransformAnimation):
(WebCore::TextureMapperAnimation::TextureMapperAnimation):
(WebCore::TextureMapperAnimation::applyInternal):
* platform/graphics/texmap/TextureMapperAnimation.h:
(TextureMapperAnimation):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106190 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed, rolling out r106187.
commit-queue@webkit.org [Sat, 28 Jan 2012 15:23:19 +0000 (15:23 +0000)]
Unreviewed, rolling out r106187.
http://trac.webkit.org/changeset/106187
https://bugs.webkit.org/show_bug.cgi?id=77276

The last rollout was a false charge. (Requested by morrita on
#webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2012-01-28

* runtime/ExceptionHelpers.h:
(InterruptedExecutionError):
* runtime/JSBoundFunction.h:
(JSBoundFunction):
* runtime/RegExp.h:
(RegExp):
* runtime/RegExpMatchesArray.h:
(RegExpMatchesArray):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106189 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed, another attempt for warning elimination.
morrita@google.com [Sat, 28 Jan 2012 14:44:05 +0000 (14:44 +0000)]
Unreviewed, another attempt for warning elimination.

* platform/win/Skipped:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106188 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed, rolling out r106151.
commit-queue@webkit.org [Sat, 28 Jan 2012 13:39:28 +0000 (13:39 +0000)]
Unreviewed, rolling out r106151.
http://trac.webkit.org/changeset/106151
https://bugs.webkit.org/show_bug.cgi?id=77275

may break windows build (Requested by morrita on #webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2012-01-28

* runtime/ExceptionHelpers.h:
(InterruptedExecutionError):
* runtime/JSBoundFunction.h:
(JSBoundFunction):
* runtime/RegExp.h:
(RegExp):
* runtime/RegExpMatchesArray.h:
(RegExpMatchesArray):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106187 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agofixed
morrita@google.com [Sat, 28 Jan 2012 13:22:35 +0000 (13:22 +0000)]
fixed

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106186 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoGC invoked while doing an old JIT property storage reallocation may lead
fpizlo@apple.com [Sat, 28 Jan 2012 10:18:32 +0000 (10:18 +0000)]
GC invoked while doing an old JIT property storage reallocation may lead
to an object that refers to a dead structure
https://bugs.webkit.org/show_bug.cgi?id=77273
<rdar://problem/10770565>

Reviewed by Gavin Barraclough.

The put_by_id transition was already saving the old structure by virtue of
having the object on the stack, so that wasn't going to get deleted. But the
new structure was unprotected in the transition. I've now changed the
transition code to save the new structure, ensuring that the GC will know it
to be marked if invoked from within put_by_id_transition_realloc.

* jit/JITPropertyAccess.cpp:
(JSC::JIT::privateCompilePutByIdTransition):
* jit/JITPropertyAccess32_64.cpp:
(JSC::JIT::privateCompilePutByIdTransition):
* jit/JITStubs.cpp:
(JSC::DEFINE_STUB_FUNCTION):
* jit/JITStubs.h:
(JSC):
():

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106185 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUpdate mac-lion canvas results
mdelaney@apple.com [Sat, 28 Jan 2012 07:17:28 +0000 (07:17 +0000)]
Update mac-lion canvas results
https://bugs.webkit.org/show_bug.cgi?id=77178

These canvas tests were previously skipped on Lion and needed to be rebaselined for mac.

Reviewed by Filip Pizlo.

* platform/mac-lion/Skipped:
* platform/mac-snowleopard/canvas/philip/tests/2d.line.cap.round-expected.txt: Copied from LayoutTests/canvas/philip/tests/2d.line.cap.round-expected.txt.
* platform/mac-snowleopard/canvas/philip/tests/2d.strokeRect.zero.5-expected.txt: Copied from LayoutTests/canvas/philip/tests/2d.strokeRect.zero.5-expected.txt.
* platform/mac-snowleopard/fast/canvas/canvas-draw-canvas-on-canvas-shadow-expected.txt: Added.
* platform/mac-snowleopard/fast/canvas/canvas-fillRect-gradient-shadow-expected.txt: Added.
* platform/mac/canvas/philip/tests/2d.line.cap.round-expected.txt: Added.
* platform/mac/canvas/philip/tests/2d.strokeRect.zero.5-expected.txt: Added.
* platform/mac/fast/canvas/canvas-draw-canvas-on-canvas-shadow-expected.txt: Added.
* platform/mac/fast/canvas/canvas-fillRect-gradient-shadow-expected.txt: Added.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106184 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoThe cpp parser of prepare-ChangeLog treats if(...) {} as a method
haraken@chromium.org [Sat, 28 Jan 2012 06:24:22 +0000 (06:24 +0000)]
The cpp parser of prepare-ChangeLog treats if(...) {} as a method
https://bugs.webkit.org/show_bug.cgi?id=77241

Reviewed by Ryosuke Niwa.

The cpp parser of prepare-ChangeLog is wrong, and an inner {} block
in a method in some namespace or class is treated as a method.
This patch fixes the bug.

    class C {
        void func()
        {
            if (1) {    // This should not be treated as a method.
            }
        }
    };

* Scripts/prepare-ChangeLog:
(get_function_line_ranges_for_cpp):
* Scripts/webkitperl/prepare-ChangeLog_unittest/resources/cpp_unittests-expected.txt:
* Scripts/webkitperl/prepare-ChangeLog_unittest/resources/cpp_unittests.cpp:
(Class108):
(Class108::func35):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106183 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed, EFL tables rebaseline after r101343.
gyuyoung.kim@samsung.com [Sat, 28 Jan 2012 04:45:29 +0000 (04:45 +0000)]
Unreviewed, EFL tables rebaseline after r101343.

* platform/efl/tables/layering/paint-test-layering-1-expected.txt:
* platform/efl/tables/layering/paint-test-layering-2-expected.txt:
* platform/efl/tables/mozilla/bugs/45621-expected.txt:
* platform/efl/tables/mozilla/bugs/bug10009-expected.txt:
* platform/efl/tables/mozilla/bugs/bug100334-expected.txt:
* platform/efl/tables/mozilla/bugs/bug10036-expected.txt:
* platform/efl/tables/mozilla/bugs/bug10039-expected.txt:
* platform/efl/tables/mozilla/bugs/bug101201-expected.txt:
* platform/efl/tables/mozilla/bugs/bug102145-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug102145-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug102145-3-expected.txt:
* platform/efl/tables/mozilla/bugs/bug102145-4-expected.txt:
* platform/efl/tables/mozilla/bugs/bug10269-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug10296-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug103533-expected.txt:
* platform/efl/tables/mozilla/bugs/bug1055-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug10565-expected.txt:
* platform/efl/tables/mozilla/bugs/bug106158-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug106158-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug10633-expected.txt:
* platform/efl/tables/mozilla/bugs/bug1067-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug1067-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug106795-expected.txt:
* platform/efl/tables/mozilla/bugs/bug106816-expected.txt:
* platform/efl/tables/mozilla/bugs/bug109043-expected.txt:
* platform/efl/tables/mozilla/bugs/bug11026-expected.txt:
* platform/efl/tables/mozilla/bugs/bug110566-expected.txt:
* platform/efl/tables/mozilla/bugs/bug11321-expected.txt:
* platform/efl/tables/mozilla/bugs/bug113235-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug113235-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug113235-3-expected.txt:
* platform/efl/tables/mozilla/bugs/bug113424-expected.txt:
* platform/efl/tables/mozilla/bugs/bug1188-expected.txt:
* platform/efl/tables/mozilla/bugs/bug11944-expected.txt:
* platform/efl/tables/mozilla/bugs/bug12008-expected.txt:
* platform/efl/tables/mozilla/bugs/bug120364-expected.txt:
* platform/efl/tables/mozilla/bugs/bug1220-expected.txt:
* platform/efl/tables/mozilla/bugs/bug1224-expected.txt:
* platform/efl/tables/mozilla/bugs/bug12268-expected.txt:
* platform/efl/tables/mozilla/bugs/bug12384-expected.txt:
* platform/efl/tables/mozilla/bugs/bug123862-expected.txt:
* platform/efl/tables/mozilla/bugs/bug1261-expected.txt:
* platform/efl/tables/mozilla/bugs/bug12709-expected.txt:
* platform/efl/tables/mozilla/bugs/bug127267-expected.txt:
* platform/efl/tables/mozilla/bugs/bug12908-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug12910-expected.txt:
* platform/efl/tables/mozilla/bugs/bug1296-expected.txt:
* platform/efl/tables/mozilla/bugs/bug131020-expected.txt:
* platform/efl/tables/mozilla/bugs/bug131020_iframe-expected.txt:
* platform/efl/tables/mozilla/bugs/bug13105-expected.txt:
* platform/efl/tables/mozilla/bugs/bug13118-expected.txt:
* platform/efl/tables/mozilla/bugs/bug1318-expected.txt:
* platform/efl/tables/mozilla/bugs/bug13196-expected.txt:
* platform/efl/tables/mozilla/bugs/bug133756-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug133756-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug133948-expected.txt:
* platform/efl/tables/mozilla/bugs/bug13484-expected.txt:
* platform/efl/tables/mozilla/bugs/bug13526-expected.txt:
* platform/efl/tables/mozilla/bugs/bug138725-expected.txt:
* platform/efl/tables/mozilla/bugs/bug139524-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug139524-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug139524-3-expected.txt:
* platform/efl/tables/mozilla/bugs/bug139524-4-expected.txt:
* platform/efl/tables/mozilla/bugs/bug14159-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug14159-3-expected.txt:
* platform/efl/tables/mozilla/bugs/bug1430-expected.txt:
* platform/efl/tables/mozilla/bugs/bug14323-expected.txt:
* platform/efl/tables/mozilla/bugs/bug145572-expected.txt:
* platform/efl/tables/mozilla/bugs/bug1474-expected.txt:
* platform/efl/tables/mozilla/bugs/bug149275-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug15247-expected.txt:
* platform/efl/tables/mozilla/bugs/bug154780-expected.txt:
* platform/efl/tables/mozilla/bugs/bug15544-expected.txt:
* platform/efl/tables/mozilla/bugs/bug159108-expected.txt:
* platform/efl/tables/mozilla/bugs/bug15933-expected.txt:
* platform/efl/tables/mozilla/bugs/bug16012-expected.txt:
* platform/efl/tables/mozilla/bugs/bug16252-expected.txt:
* platform/efl/tables/mozilla/bugs/bug17130-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug17130-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug17138-expected.txt:
* platform/efl/tables/mozilla/bugs/bug17168-expected.txt:
* platform/efl/tables/mozilla/bugs/bug175455-4-expected.txt:
* platform/efl/tables/mozilla/bugs/bug17548-expected.txt:
* platform/efl/tables/mozilla/bugs/bug17587-expected.txt:
* platform/efl/tables/mozilla/bugs/bug1800-expected.txt:
* platform/efl/tables/mozilla/bugs/bug1802-expected.txt:
* platform/efl/tables/mozilla/bugs/bug1802s-expected.txt:
* platform/efl/tables/mozilla/bugs/bug1809-expected.txt:
* platform/efl/tables/mozilla/bugs/bug1818-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug1818-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug1818-4-expected.txt:
* platform/efl/tables/mozilla/bugs/bug1818-5-expected.txt:
* platform/efl/tables/mozilla/bugs/bug1828-expected.txt:
* platform/efl/tables/mozilla/bugs/bug18359-expected.txt:
* platform/efl/tables/mozilla/bugs/bug18440-expected.txt:
* platform/efl/tables/mozilla/bugs/bug18558-expected.txt:
* platform/efl/tables/mozilla/bugs/bug18664-expected.txt:
* platform/efl/tables/mozilla/bugs/bug18955-expected.txt:
* platform/efl/tables/mozilla/bugs/bug19061-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug19061-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug19356-expected.txt:
* platform/efl/tables/mozilla/bugs/bug194024-expected.txt:
* platform/efl/tables/mozilla/bugs/bug19599-expected.txt:
* platform/efl/tables/mozilla/bugs/bug2050-expected.txt:
* platform/efl/tables/mozilla/bugs/bug20579-expected.txt:
* platform/efl/tables/mozilla/bugs/bug2065-expected.txt:
* platform/efl/tables/mozilla/bugs/bug20804-expected.txt:
* platform/efl/tables/mozilla/bugs/bug2123-expected.txt:
* platform/efl/tables/mozilla/bugs/bug21299-expected.txt:
* platform/efl/tables/mozilla/bugs/bug215629-expected.txt:
* platform/efl/tables/mozilla/bugs/bug21918-expected.txt:
* platform/efl/tables/mozilla/bugs/bug219693-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug219693-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug22019-expected.txt:
* platform/efl/tables/mozilla/bugs/bug220536-expected.txt:
* platform/efl/tables/mozilla/bugs/bug221784-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug221784-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug22246-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug22246-2a-expected.txt:
* platform/efl/tables/mozilla/bugs/bug22246-3-expected.txt:
* platform/efl/tables/mozilla/bugs/bug22246-3a-expected.txt:
* platform/efl/tables/mozilla/bugs/bug2267-expected.txt:
* platform/efl/tables/mozilla/bugs/bug227123-expected.txt:
* platform/efl/tables/mozilla/bugs/bug2296-expected.txt:
* platform/efl/tables/mozilla/bugs/bug23072-expected.txt:
* platform/efl/tables/mozilla/bugs/bug23235-expected.txt:
* platform/efl/tables/mozilla/bugs/bug23299-expected.txt:
* platform/efl/tables/mozilla/bugs/bug23994-expected.txt:
* platform/efl/tables/mozilla/bugs/bug24200-expected.txt:
* platform/efl/tables/mozilla/bugs/bug24503-expected.txt:
* platform/efl/tables/mozilla/bugs/bug24627-expected.txt:
* platform/efl/tables/mozilla/bugs/bug24661-expected.txt:
* platform/efl/tables/mozilla/bugs/bug2469-expected.txt:
* platform/efl/tables/mozilla/bugs/bug2479-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug24880-expected.txt:
* platform/efl/tables/mozilla/bugs/bug25004-expected.txt:
* platform/efl/tables/mozilla/bugs/bug25074-expected.txt:
* platform/efl/tables/mozilla/bugs/bug25086-expected.txt:
* platform/efl/tables/mozilla/bugs/bug2509-expected.txt:
* platform/efl/tables/mozilla/bugs/bug2516-expected.txt:
* platform/efl/tables/mozilla/bugs/bug25367-expected.txt:
* platform/efl/tables/mozilla/bugs/bug25663-expected.txt:
* platform/efl/tables/mozilla/bugs/bug2585-expected.txt:
* platform/efl/tables/mozilla/bugs/bug26178-expected.txt:
* platform/efl/tables/mozilla/bugs/bug2684-expected.txt:
* platform/efl/tables/mozilla/bugs/bug27038-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug27038-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug275625-expected.txt:
* platform/efl/tables/mozilla/bugs/bug2757-expected.txt:
* platform/efl/tables/mozilla/bugs/bug2763-expected.txt:
* platform/efl/tables/mozilla/bugs/bug2773-expected.txt:
* platform/efl/tables/mozilla/bugs/bug278266-expected.txt:
* platform/efl/tables/mozilla/bugs/bug278385-expected.txt:
* platform/efl/tables/mozilla/bugs/bug27993-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug28341-expected.txt:
* platform/efl/tables/mozilla/bugs/bug2886-expected.txt:
* platform/efl/tables/mozilla/bugs/bug28928-expected.txt:
* platform/efl/tables/mozilla/bugs/bug29058-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug29326-expected.txt:
* platform/efl/tables/mozilla/bugs/bug29429-expected.txt:
* platform/efl/tables/mozilla/bugs/bug2962-expected.txt:
* platform/efl/tables/mozilla/bugs/bug2973-expected.txt:
* platform/efl/tables/mozilla/bugs/bug2981-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug2981-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug2997-expected.txt:
* platform/efl/tables/mozilla/bugs/bug30273-expected.txt:
* platform/efl/tables/mozilla/bugs/bug30332-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug30332-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug3037-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug3037-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug30418-expected.txt:
* platform/efl/tables/mozilla/bugs/bug30559-expected.txt:
* platform/efl/tables/mozilla/bugs/bug30692-expected.txt:
* platform/efl/tables/mozilla/bugs/bug30985-expected.txt:
* platform/efl/tables/mozilla/bugs/bug3103-expected.txt:
* platform/efl/tables/mozilla/bugs/bug3191-expected.txt:
* platform/efl/tables/mozilla/bugs/bug32205-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug32205-3-expected.txt:
* platform/efl/tables/mozilla/bugs/bug32205-5-expected.txt:
* platform/efl/tables/mozilla/bugs/bug32447-expected.txt:
* platform/efl/tables/mozilla/bugs/bug3260-expected.txt:
* platform/efl/tables/mozilla/bugs/bug3263-expected.txt:
* platform/efl/tables/mozilla/bugs/bug32841-expected.txt:
* platform/efl/tables/mozilla/bugs/bug3309-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug3309-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug33137-expected.txt:
* platform/efl/tables/mozilla/bugs/bug33855-expected.txt:
* platform/efl/tables/mozilla/bugs/bug34176-expected.txt:
* platform/efl/tables/mozilla/bugs/bug34538-expected.txt:
* platform/efl/tables/mozilla/bugs/bug3454-expected.txt:
* platform/efl/tables/mozilla/bugs/bug35662-expected.txt:
* platform/efl/tables/mozilla/bugs/bug3681-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug3681-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug3718-expected.txt:
* platform/efl/tables/mozilla/bugs/bug39209-expected.txt:
* platform/efl/tables/mozilla/bugs/bug3977-expected.txt:
* platform/efl/tables/mozilla/bugs/bug40828-expected.txt:
* platform/efl/tables/mozilla/bugs/bug4093-expected.txt:
* platform/efl/tables/mozilla/bugs/bug41890-expected.txt:
* platform/efl/tables/mozilla/bugs/bug42187-expected.txt:
* platform/efl/tables/mozilla/bugs/bug42443-expected.txt:
* platform/efl/tables/mozilla/bugs/bug4284-expected.txt:
* platform/efl/tables/mozilla/bugs/bug43039-expected.txt:
* platform/efl/tables/mozilla/bugs/bug43204-expected.txt:
* platform/efl/tables/mozilla/bugs/bug4382-expected.txt:
* platform/efl/tables/mozilla/bugs/bug4385-expected.txt:
* platform/efl/tables/mozilla/bugs/bug43854-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug43854-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug4427-expected.txt:
* platform/efl/tables/mozilla/bugs/bug4429-expected.txt:
* platform/efl/tables/mozilla/bugs/bug44505-expected.txt:
* platform/efl/tables/mozilla/bugs/bug44523-expected.txt:
* platform/efl/tables/mozilla/bugs/bug4501-expected.txt:
* platform/efl/tables/mozilla/bugs/bug45055-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug45055-expected.txt:
* platform/efl/tables/mozilla/bugs/bug4520-expected.txt:
* platform/efl/tables/mozilla/bugs/bug4523-expected.txt:
* platform/efl/tables/mozilla/bugs/bug4527-expected.txt:
* platform/efl/tables/mozilla/bugs/bug45350-expected.txt:
* platform/efl/tables/mozilla/bugs/bug45486-expected.txt:
* platform/efl/tables/mozilla/bugs/bug4576-expected.txt:
* platform/efl/tables/mozilla/bugs/bug46268-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug46268-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug46268-3-expected.txt:
* platform/efl/tables/mozilla/bugs/bug46268-5-expected.txt:
* platform/efl/tables/mozilla/bugs/bug46268-expected.txt:
* platform/efl/tables/mozilla/bugs/bug46480-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug46480-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug46623-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug46623-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug46924-expected.txt:
* platform/efl/tables/mozilla/bugs/bug46944-expected.txt:
* platform/efl/tables/mozilla/bugs/bug4739-expected.txt:
* platform/efl/tables/mozilla/bugs/bug47432-expected.txt:
* platform/efl/tables/mozilla/bugs/bug4803-expected.txt:
* platform/efl/tables/mozilla/bugs/bug4849-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug4849-expected.txt:
* platform/efl/tables/mozilla/bugs/bug48827-expected.txt:
* platform/efl/tables/mozilla/bugs/bug50695-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug51037-expected.txt:
* platform/efl/tables/mozilla/bugs/bug51140-expected.txt:
* platform/efl/tables/mozilla/bugs/bug51727-expected.txt:
* platform/efl/tables/mozilla/bugs/bug5188-expected.txt:
* platform/efl/tables/mozilla/bugs/bug52505-expected.txt:
* platform/efl/tables/mozilla/bugs/bug52506-expected.txt:
* platform/efl/tables/mozilla/bugs/bug53690-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug53690-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug53891-expected.txt:
* platform/efl/tables/mozilla/bugs/bug54450-expected.txt:
* platform/efl/tables/mozilla/bugs/bug5538-expected.txt:
* platform/efl/tables/mozilla/bugs/bug55527-expected.txt:
* platform/efl/tables/mozilla/bugs/bug55545-expected.txt:
* platform/efl/tables/mozilla/bugs/bug55789-expected.txt:
* platform/efl/tables/mozilla/bugs/bug56201-expected.txt:
* platform/efl/tables/mozilla/bugs/bug56405-expected.txt:
* platform/efl/tables/mozilla/bugs/bug56563-expected.txt:
* platform/efl/tables/mozilla/bugs/bug57300-expected.txt:
* platform/efl/tables/mozilla/bugs/bug57378-expected.txt:
* platform/efl/tables/mozilla/bugs/bug57828-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug57828-expected.txt:
* platform/efl/tables/mozilla/bugs/bug5797-expected.txt:
* platform/efl/tables/mozilla/bugs/bug5798-expected.txt:
* platform/efl/tables/mozilla/bugs/bug5799-expected.txt:
* platform/efl/tables/mozilla/bugs/bug5835-expected.txt:
* platform/efl/tables/mozilla/bugs/bug58402-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug59354-expected.txt:
* platform/efl/tables/mozilla/bugs/bug60013-expected.txt:
* platform/efl/tables/mozilla/bugs/bug60749-expected.txt:
* platform/efl/tables/mozilla/bugs/bug60804-expected.txt:
* platform/efl/tables/mozilla/bugs/bug60807-expected.txt:
* platform/efl/tables/mozilla/bugs/bug60992-expected.txt:
* platform/efl/tables/mozilla/bugs/bug6184-expected.txt:
* platform/efl/tables/mozilla/bugs/bug625-expected.txt:
* platform/efl/tables/mozilla/bugs/bug63785-expected.txt:
* platform/efl/tables/mozilla/bugs/bug6404-expected.txt:
* platform/efl/tables/mozilla/bugs/bug641-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug641-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug647-expected.txt:
* platform/efl/tables/mozilla/bugs/bug650-expected.txt:
* platform/efl/tables/mozilla/bugs/bug6674-expected.txt:
* platform/efl/tables/mozilla/bugs/bug67864-expected.txt:
* platform/efl/tables/mozilla/bugs/bug67915-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug68912-expected.txt:
* platform/efl/tables/mozilla/bugs/bug68998-expected.txt:
* platform/efl/tables/mozilla/bugs/bug69187-expected.txt:
* platform/efl/tables/mozilla/bugs/bug69382-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug69382-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug709-expected.txt:
* platform/efl/tables/mozilla/bugs/bug7112-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug7112-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug7121-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug72359-expected.txt:
* platform/efl/tables/mozilla/bugs/bug727-expected.txt:
* platform/efl/tables/mozilla/bugs/bug7342-expected.txt:
* platform/efl/tables/mozilla/bugs/bug7471-expected.txt:
* platform/efl/tables/mozilla/bugs/bug75250-expected.txt:
* platform/efl/tables/mozilla/bugs/bug7714-expected.txt:
* platform/efl/tables/mozilla/bugs/bug78162-expected.txt:
* platform/efl/tables/mozilla/bugs/bug8032-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug80762-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug81934-expected.txt:
* platform/efl/tables/mozilla/bugs/bug82946-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug82946-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug8361-expected.txt:
* platform/efl/tables/mozilla/bugs/bug8411-expected.txt:
* platform/efl/tables/mozilla/bugs/bug86220-expected.txt:
* platform/efl/tables/mozilla/bugs/bug88035-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug88035-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug88524-expected.txt:
* platform/efl/tables/mozilla/bugs/bug8858-expected.txt:
* platform/efl/tables/mozilla/bugs/bug8950-expected.txt:
* platform/efl/tables/mozilla/bugs/bug9072-expected.txt:
* platform/efl/tables/mozilla/bugs/bug9123-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug9123-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug92143-expected.txt:
* platform/efl/tables/mozilla/bugs/bug92647-2-expected.txt:
* platform/efl/tables/mozilla/bugs/bug92868-expected.txt:
* platform/efl/tables/mozilla/bugs/bug93363-expected.txt:
* platform/efl/tables/mozilla/bugs/bug963-expected.txt:
* platform/efl/tables/mozilla/bugs/bug96334-expected.txt:
* platform/efl/tables/mozilla/bugs/bug96343-expected.txt:
* platform/efl/tables/mozilla/bugs/bug965-expected.txt:
* platform/efl/tables/mozilla/bugs/bug97138-expected.txt:
* platform/efl/tables/mozilla/bugs/bug97383-expected.txt:
* platform/efl/tables/mozilla/bugs/bug98196-expected.txt:
* platform/efl/tables/mozilla/bugs/bug9879-1-expected.txt:
* platform/efl/tables/mozilla/bugs/bug99923-expected.txt:
* platform/efl/tables/mozilla/bugs/bug99948-expected.txt:
* platform/efl/tables/mozilla/collapsing_borders/bug127040-expected.txt:
* platform/efl/tables/mozilla/collapsing_borders/bug41262-3-expected.txt:
* platform/efl/tables/mozilla/collapsing_borders/bug41262-4-expected.txt:
* platform/efl/tables/mozilla/core/bloomberg-expected.txt:
* platform/efl/tables/mozilla/core/borders-expected.txt:
* platform/efl/tables/mozilla/core/box_sizing-expected.txt:
* platform/efl/tables/mozilla/core/cell_heights-expected.txt:
* platform/efl/tables/mozilla/core/col_span-expected.txt:
* platform/efl/tables/mozilla/core/col_widths_auto_auto-expected.txt:
* platform/efl/tables/mozilla/core/col_widths_auto_autoFix-expected.txt:
* platform/efl/tables/mozilla/core/col_widths_auto_autoFixPer-expected.txt:
* platform/efl/tables/mozilla/core/col_widths_auto_autoPer-expected.txt:
* platform/efl/tables/mozilla/core/col_widths_auto_fix-expected.txt:
* platform/efl/tables/mozilla/core/col_widths_auto_fixPer-expected.txt:
* platform/efl/tables/mozilla/core/col_widths_auto_per-expected.txt:
* platform/efl/tables/mozilla/core/col_widths_fix_auto-expected.txt:
* platform/efl/tables/mozilla/core/col_widths_fix_autoFix-expected.txt:
* platform/efl/tables/mozilla/core/col_widths_fix_autoPer-expected.txt:
* platform/efl/tables/mozilla/core/col_widths_fix_fix-expected.txt:
* platform/efl/tables/mozilla/core/col_widths_fix_fixPer-expected.txt:
* platform/efl/tables/mozilla/core/col_widths_fix_per-expected.txt:
* platform/efl/tables/mozilla/core/margins-expected.txt:
* platform/efl/tables/mozilla/core/misc-expected.txt:
* platform/efl/tables/mozilla/core/nested1-expected.txt:
* platform/efl/tables/mozilla/core/one_row-expected.txt:
* platform/efl/tables/mozilla/core/row_span-expected.txt:
* platform/efl/tables/mozilla/core/table_frame-expected.txt:
* platform/efl/tables/mozilla/core/table_heights-expected.txt:
* platform/efl/tables/mozilla/core/table_rules-expected.txt:
* platform/efl/tables/mozilla/core/table_widths-expected.txt:
* platform/efl/tables/mozilla/dom/appendCol2-expected.txt:
* platform/efl/tables/mozilla/dom/appendRowsExpand1-expected.txt:
* platform/efl/tables/mozilla/dom/appendTbodyExpand1-expected.txt:
* platform/efl/tables/mozilla/dom/deleteCellsRebuild1-expected.txt:
* platform/efl/tables/mozilla/dom/deleteCellsShrink1-expected.txt:
* platform/efl/tables/mozilla/dom/deleteCellsShrink2-expected.txt:
* platform/efl/tables/mozilla/dom/deleteCol1-expected.txt:
* platform/efl/tables/mozilla/dom/deleteCol2-expected.txt:
* platform/efl/tables/mozilla/dom/deleteCol3-expected.txt:
* platform/efl/tables/mozilla/dom/deleteColGroup1-expected.txt:
* platform/efl/tables/mozilla/dom/deleteColGroup2-expected.txt:
* platform/efl/tables/mozilla/dom/deleteRowsRebuild1-expected.txt:
* platform/efl/tables/mozilla/dom/deleteRowsShrink1-expected.txt:
* platform/efl/tables/mozilla/dom/deleteTbodyExpand1-expected.txt:
* platform/efl/tables/mozilla/dom/deleteTbodyRebuild1-expected.txt:
* platform/efl/tables/mozilla/dom/insertCellsExpand1-expected.txt:
* platform/efl/tables/mozilla/dom/insertCellsExpand2-expected.txt:
* platform/efl/tables/mozilla/dom/insertCellsRebuild1-expected.txt:
* platform/efl/tables/mozilla/dom/insertCellsRebuild2-expected.txt:
* platform/efl/tables/mozilla/dom/insertColGroups1-expected.txt:
* platform/efl/tables/mozilla/dom/insertColGroups2-expected.txt:
* platform/efl/tables/mozilla/dom/insertCols1-expected.txt:
* platform/efl/tables/mozilla/dom/insertCols2-expected.txt:
* platform/efl/tables/mozilla/dom/insertCols3-expected.txt:
* platform/efl/tables/mozilla/dom/insertCols4-expected.txt:
* platform/efl/tables/mozilla/dom/insertCols5-expected.txt:
* platform/efl/tables/mozilla/dom/insertRowsExpand1-expected.txt:
* platform/efl/tables/mozilla/dom/insertRowsRebuild1-expected.txt:
* platform/efl/tables/mozilla/dom/tableDom-expected.txt:
* platform/efl/tables/mozilla/marvin/backgr_index-expected.txt:
* platform/efl/tables/mozilla/marvin/body_col-expected.txt:
* platform/efl/tables/mozilla/marvin/body_tbody-expected.txt:
* platform/efl/tables/mozilla/marvin/body_tfoot-expected.txt:
* platform/efl/tables/mozilla/marvin/body_thead-expected.txt:
* platform/efl/tables/mozilla/marvin/col_span-expected.txt:
* platform/efl/tables/mozilla/marvin/colgroup_align_center-expected.txt:
* platform/efl/tables/mozilla/marvin/colgroup_align_justify-expected.txt:
* platform/efl/tables/mozilla/marvin/colgroup_align_left-expected.txt:
* platform/efl/tables/mozilla/marvin/colgroup_align_right-expected.txt:
* platform/efl/tables/mozilla/marvin/colgroup_span-expected.txt:
* platform/efl/tables/mozilla/marvin/colgroup_valign_baseline-expected.txt:
* platform/efl/tables/mozilla/marvin/colgroup_valign_bottom-expected.txt:
* platform/efl/tables/mozilla/marvin/colgroup_valign_middle-expected.txt:
* platform/efl/tables/mozilla/marvin/colgroup_valign_top-expected.txt:
* platform/efl/tables/mozilla/marvin/colgroup_width_pct-expected.txt:
* platform/efl/tables/mozilla/marvin/colgroup_width_px-expected.txt:
* platform/efl/tables/mozilla/marvin/table_overflow_td_dynamic_deactivate-expected.txt:
* platform/efl/tables/mozilla/marvin/table_row_align_center-expected.txt:
* platform/efl/tables/mozilla/marvin/table_row_align_left-expected.txt:
* platform/efl/tables/mozilla/marvin/table_row_align_right-expected.txt:
* platform/efl/tables/mozilla/marvin/table_rules_groups-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_align_center-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_align_left-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_align_right-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_aqua-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_aqua_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_black-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_black_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_blue-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_blue_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_fuchsia-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_fuchsia_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_gray-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_gray_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_green-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_green_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_lime-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_lime_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_maroon-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_maroon_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_navy-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_navy_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_olive-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_olive_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_purple-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_purple_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_red-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_red_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_silver-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_silver_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_teal-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_teal_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_white-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_white_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_yellow-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_bgcolor_yellow_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_border_0-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_border_1-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_border_2-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_border_3-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_cellpadding-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_cellpadding_pct-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_cellspacing-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_class-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_default-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_id-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_row_th_nowrap-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_style-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_td_align_center-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_td_align_left-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_td_align_right-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_td_colspan-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_td_height-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_td_nowrap-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_td_rowspan-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_td_width-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_th_align_center-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_th_align_left-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_th_align_right-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_th_colspan-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_th_height-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_th_rowspan-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_th_width-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_width_percent-expected.txt:
* platform/efl/tables/mozilla/marvin/tables_width_px-expected.txt:
* platform/efl/tables/mozilla/marvin/tbody_align_center-expected.txt:
* platform/efl/tables/mozilla/marvin/tbody_align_char-expected.txt:
* platform/efl/tables/mozilla/marvin/tbody_align_justify-expected.txt:
* platform/efl/tables/mozilla/marvin/tbody_align_left-expected.txt:
* platform/efl/tables/mozilla/marvin/tbody_align_right-expected.txt:
* platform/efl/tables/mozilla/marvin/tbody_char-expected.txt:
* platform/efl/tables/mozilla/marvin/tbody_valign_baseline-expected.txt:
* platform/efl/tables/mozilla/marvin/tbody_valign_bottom-expected.txt:
* platform/efl/tables/mozilla/marvin/tbody_valign_middle-expected.txt:
* platform/efl/tables/mozilla/marvin/tbody_valign_top-expected.txt:
* platform/efl/tables/mozilla/marvin/td_valign_baseline-expected.txt:
* platform/efl/tables/mozilla/marvin/td_valign_bottom-expected.txt:
* platform/efl/tables/mozilla/marvin/td_valign_middle-expected.txt:
* platform/efl/tables/mozilla/marvin/td_valign_top-expected.txt:
* platform/efl/tables/mozilla/marvin/tfoot_align_center-expected.txt:
* platform/efl/tables/mozilla/marvin/tfoot_align_char-expected.txt:
* platform/efl/tables/mozilla/marvin/tfoot_align_justify-expected.txt:
* platform/efl/tables/mozilla/marvin/tfoot_align_left-expected.txt:
* platform/efl/tables/mozilla/marvin/tfoot_align_right-expected.txt:
* platform/efl/tables/mozilla/marvin/tfoot_char-expected.txt:
* platform/efl/tables/mozilla/marvin/tfoot_valign_baseline-expected.txt:
* platform/efl/tables/mozilla/marvin/tfoot_valign_bottom-expected.txt:
* platform/efl/tables/mozilla/marvin/tfoot_valign_middle-expected.txt:
* platform/efl/tables/mozilla/marvin/tfoot_valign_top-expected.txt:
* platform/efl/tables/mozilla/marvin/th_valign_baseline-expected.txt:
* platform/efl/tables/mozilla/marvin/th_valign_bottom-expected.txt:
* platform/efl/tables/mozilla/marvin/th_valign_middle-expected.txt:
* platform/efl/tables/mozilla/marvin/th_valign_top-expected.txt:
* platform/efl/tables/mozilla/marvin/thead_align_center-expected.txt:
* platform/efl/tables/mozilla/marvin/thead_align_char-expected.txt:
* platform/efl/tables/mozilla/marvin/thead_align_justify-expected.txt:
* platform/efl/tables/mozilla/marvin/thead_align_left-expected.txt:
* platform/efl/tables/mozilla/marvin/thead_align_right-expected.txt:
* platform/efl/tables/mozilla/marvin/thead_char-expected.txt:
* platform/efl/tables/mozilla/marvin/thead_valign_baseline-expected.txt:
* platform/efl/tables/mozilla/marvin/thead_valign_bottom-expected.txt:
* platform/efl/tables/mozilla/marvin/thead_valign_middle-expected.txt:
* platform/efl/tables/mozilla/marvin/thead_valign_top-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_aqua_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_black-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_black_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_blue-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_blue_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_fuchsia-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_fuchsia_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_gray-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_gray_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_green-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_green_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_lime-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_lime_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_maroon-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_maroon_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_navy-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_navy_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_olive-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_olive_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_purple-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_purple_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_red-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_red_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_silver-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_silver_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_teal-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_teal_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_white-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_white_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_yellow-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_bgcolor_yellow_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_valign_baseline-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_valign_bottom-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_valign_middle-expected.txt:
* platform/efl/tables/mozilla/marvin/tr_valign_top-expected.txt:
* platform/efl/tables/mozilla/marvin/x_col_align_center-expected.txt:
* platform/efl/tables/mozilla/marvin/x_col_align_char-expected.txt:
* platform/efl/tables/mozilla/marvin/x_col_align_justify-expected.txt:
* platform/efl/tables/mozilla/marvin/x_col_align_left-expected.txt:
* platform/efl/tables/mozilla/marvin/x_col_align_right-expected.txt:
* platform/efl/tables/mozilla/marvin/x_col_span-expected.txt:
* platform/efl/tables/mozilla/marvin/x_col_valign_bottom-expected.txt:
* platform/efl/tables/mozilla/marvin/x_col_valign_middle-expected.txt:
* platform/efl/tables/mozilla/marvin/x_col_valign_top-expected.txt:
* platform/efl/tables/mozilla/marvin/x_col_width_pct-expected.txt:
* platform/efl/tables/mozilla/marvin/x_col_width_px-expected.txt:
* platform/efl/tables/mozilla/marvin/x_col_width_rel-expected.txt:
* platform/efl/tables/mozilla/marvin/x_colgroup_align_center-expected.txt:
* platform/efl/tables/mozilla/marvin/x_colgroup_align_char-expected.txt:
* platform/efl/tables/mozilla/marvin/x_colgroup_align_justify-expected.txt:
* platform/efl/tables/mozilla/marvin/x_colgroup_align_left-expected.txt:
* platform/efl/tables/mozilla/marvin/x_colgroup_align_right-expected.txt:
* platform/efl/tables/mozilla/marvin/x_colgroup_span-expected.txt:
* platform/efl/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.txt:
* platform/efl/tables/mozilla/marvin/x_colgroup_valign_middle-expected.txt:
* platform/efl/tables/mozilla/marvin/x_colgroup_valign_top-expected.txt:
* platform/efl/tables/mozilla/marvin/x_colgroup_width_pct-expected.txt:
* platform/efl/tables/mozilla/marvin/x_colgroup_width_rel-expected.txt:
* platform/efl/tables/mozilla/marvin/x_table-expected.txt:
* platform/efl/tables/mozilla/marvin/x_table_align_center-expected.txt:
* platform/efl/tables/mozilla/marvin/x_table_align_left-expected.txt:
* platform/efl/tables/mozilla/marvin/x_table_align_right-expected.txt:
* platform/efl/tables/mozilla/marvin/x_table_bgcolor_name-expected.txt:
* platform/efl/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/x_table_border-expected.txt:
* platform/efl/tables/mozilla/marvin/x_table_border_none-expected.txt:
* platform/efl/tables/mozilla/marvin/x_table_border_px-expected.txt:
* platform/efl/tables/mozilla/marvin/x_table_cellpadding-expected.txt:
* platform/efl/tables/mozilla/marvin/x_table_cellpadding_pct-expected.txt:
* platform/efl/tables/mozilla/marvin/x_table_cellspacing-expected.txt:
* platform/efl/tables/mozilla/marvin/x_table_cellspacing_pct-expected.txt:
* platform/efl/tables/mozilla/marvin/x_table_class-expected.txt:
* platform/efl/tables/mozilla/marvin/x_table_frame_void-expected.txt:
* platform/efl/tables/mozilla/marvin/x_table_id-expected.txt:
* platform/efl/tables/mozilla/marvin/x_table_rules_groups-expected.txt:
* platform/efl/tables/mozilla/marvin/x_table_rules_none-expected.txt:
* platform/efl/tables/mozilla/marvin/x_table_style-expected.txt:
* platform/efl/tables/mozilla/marvin/x_table_width_pct-expected.txt:
* platform/efl/tables/mozilla/marvin/x_table_width_px-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tbody_align_center-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tbody_align_char-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tbody_align_justify-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tbody_align_left-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tbody_align_right-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tbody_class-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tbody_id-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tbody_style-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tbody_valign_bottom-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tbody_valign_middle-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tbody_valign_top-expected.txt:
* platform/efl/tables/mozilla/marvin/x_td_align_center-expected.txt:
* platform/efl/tables/mozilla/marvin/x_td_align_char-expected.txt:
* platform/efl/tables/mozilla/marvin/x_td_align_justify-expected.txt:
* platform/efl/tables/mozilla/marvin/x_td_align_left-expected.txt:
* platform/efl/tables/mozilla/marvin/x_td_align_right-expected.txt:
* platform/efl/tables/mozilla/marvin/x_td_bgcolor_name-expected.txt:
* platform/efl/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/x_td_class-expected.txt:
* platform/efl/tables/mozilla/marvin/x_td_colspan-expected.txt:
* platform/efl/tables/mozilla/marvin/x_td_height-expected.txt:
* platform/efl/tables/mozilla/marvin/x_td_id-expected.txt:
* platform/efl/tables/mozilla/marvin/x_td_nowrap-expected.txt:
* platform/efl/tables/mozilla/marvin/x_td_rowspan-expected.txt:
* platform/efl/tables/mozilla/marvin/x_td_style-expected.txt:
* platform/efl/tables/mozilla/marvin/x_td_valign_bottom-expected.txt:
* platform/efl/tables/mozilla/marvin/x_td_valign_middle-expected.txt:
* platform/efl/tables/mozilla/marvin/x_td_valign_top-expected.txt:
* platform/efl/tables/mozilla/marvin/x_td_width-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tfoot_align_center-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tfoot_align_char-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tfoot_align_justify-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tfoot_align_left-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tfoot_align_right-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tfoot_class-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tfoot_id-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tfoot_style-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tfoot_valign_middle-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tfoot_valign_top-expected.txt:
* platform/efl/tables/mozilla/marvin/x_th_align_center-expected.txt:
* platform/efl/tables/mozilla/marvin/x_th_align_char-expected.txt:
* platform/efl/tables/mozilla/marvin/x_th_align_justify-expected.txt:
* platform/efl/tables/mozilla/marvin/x_th_align_left-expected.txt:
* platform/efl/tables/mozilla/marvin/x_th_align_right-expected.txt:
* platform/efl/tables/mozilla/marvin/x_th_bgcolor_name-expected.txt:
* platform/efl/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/x_th_class-expected.txt:
* platform/efl/tables/mozilla/marvin/x_th_colspan-expected.txt:
* platform/efl/tables/mozilla/marvin/x_th_height-expected.txt:
* platform/efl/tables/mozilla/marvin/x_th_id-expected.txt:
* platform/efl/tables/mozilla/marvin/x_th_nowrap-expected.txt:
* platform/efl/tables/mozilla/marvin/x_th_rowspan-expected.txt:
* platform/efl/tables/mozilla/marvin/x_th_style-expected.txt:
* platform/efl/tables/mozilla/marvin/x_th_valign_bottom-expected.txt:
* platform/efl/tables/mozilla/marvin/x_th_valign_middle-expected.txt:
* platform/efl/tables/mozilla/marvin/x_th_valign_top-expected.txt:
* platform/efl/tables/mozilla/marvin/x_th_width-expected.txt:
* platform/efl/tables/mozilla/marvin/x_thead_align_center-expected.txt:
* platform/efl/tables/mozilla/marvin/x_thead_align_char-expected.txt:
* platform/efl/tables/mozilla/marvin/x_thead_align_justify-expected.txt:
* platform/efl/tables/mozilla/marvin/x_thead_align_left-expected.txt:
* platform/efl/tables/mozilla/marvin/x_thead_align_right-expected.txt:
* platform/efl/tables/mozilla/marvin/x_thead_class-expected.txt:
* platform/efl/tables/mozilla/marvin/x_thead_id-expected.txt:
* platform/efl/tables/mozilla/marvin/x_thead_style-expected.txt:
* platform/efl/tables/mozilla/marvin/x_thead_valign_bottom-expected.txt:
* platform/efl/tables/mozilla/marvin/x_thead_valign_middle-expected.txt:
* platform/efl/tables/mozilla/marvin/x_thead_valign_top-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tr_align_center-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tr_align_char-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tr_align_justify-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tr_align_left-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tr_align_right-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tr_bgcolor_name-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tr_class-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tr_id-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tr_style-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tr_valign_bottom-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tr_valign_middle-expected.txt:
* platform/efl/tables/mozilla/marvin/x_tr_valign_top-expected.txt:
* platform/efl/tables/mozilla/other/body_col-expected.txt:
* platform/efl/tables/mozilla/other/cell_widths-expected.txt:
* platform/efl/tables/mozilla/other/cellspacing-expected.txt:
* platform/efl/tables/mozilla/other/move_row-expected.txt:
* platform/efl/tables/mozilla/other/ms-expected.txt:
* platform/efl/tables/mozilla/other/nested2-expected.txt:
* platform/efl/tables/mozilla/other/nestedTables-expected.txt:
* platform/efl/tables/mozilla/other/padding-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug1010-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug101759-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug106336-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug1128-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug11331-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug1164-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug11945-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug1262-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug131020-3-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug14007-1-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug14159-2-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug14489-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug1647-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug1725-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug17826-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug178855-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug18770-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug19526-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug21518-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug220653-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug22122-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug24880-1-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug25707-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug27993-2-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug3105-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug3166-1-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug3166-10-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug3166-15-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug3166-18-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug3166-2-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug3166-7-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug3166-8-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug32205-1-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug32205-4-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug33784-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug42043-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug4294-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug45621-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug46268-4-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug47163-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug51000-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug56024-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug58402-2-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug59252-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug61042-1-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug61042-2-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug65372-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug67915-2-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug6933-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug7113-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug7121-2-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug7243-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug73629-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug80762-2-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug8499-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug89315-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug92647-1-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug92868_1-expected.txt:
* platform/efl/tables/mozilla_expected_failures/bugs/bug9879-1-expected.txt:
* platform/efl/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.txt:
* platform/efl/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.txt:
* platform/efl/tables/mozilla_expected_failures/core/backgrounds-expected.txt:
* platform/efl/tables/mozilla_expected_failures/core/col_span2-expected.txt:
* platform/efl/tables/mozilla_expected_failures/core/cols1-expected.txt:
* platform/efl/tables/mozilla_expected_failures/core/columns-expected.txt:
* platform/efl/tables/mozilla_expected_failures/core/conflicts-expected.txt:
* platform/efl/tables/mozilla_expected_failures/dom/appendCells1-expected.txt:
* platform/efl/tables/mozilla_expected_failures/dom/appendCellsRebuild1-expected.txt:
* platform/efl/tables/mozilla_expected_failures/dom/appendCol1-expected.txt:
* platform/efl/tables/mozilla_expected_failures/dom/appendColGroup1-expected.txt:
* platform/efl/tables/mozilla_expected_failures/dom/insertTbodyExpand1-expected.txt:
* platform/efl/tables/mozilla_expected_failures/dom/insertTbodyRebuild1-expected.txt:
* platform/efl/tables/mozilla_expected_failures/marvin/table_frame_above-expected.txt:
* platform/efl/tables/mozilla_expected_failures/marvin/table_frame_below-expected.txt:
* platform/efl/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.txt:
* platform/efl/tables/mozilla_expected_failures/marvin/table_frame_void-expected.txt:
* platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow-expected.txt:
* platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_table-expected.txt:
* platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_align_right-expected.txt:
* platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_dynamic_deactivate-expected.txt:
* platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_bottom-expected.txt:
* platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_middle-expected.txt:
* platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_top-expected.txt:
* platform/efl/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.txt:
* platform/efl/tables/mozilla_expected_failures/marvin/x_colgroup_width_px-expected.txt:
* platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.txt:
* platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.txt:
* platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.txt:
* platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.txt:
* platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.txt:
* platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.txt:
* platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.txt:
* platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.txt:
* platform/efl/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.txt:
* platform/efl/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.txt:
* platform/efl/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.txt:
* platform/efl/tables/mozilla_expected_failures/other/empty_cells-expected.txt:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106182 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed, EFL fast rebaseline after r101343.
gyuyoung.kim@samsung.com [Sat, 28 Jan 2012 04:37:09 +0000 (04:37 +0000)]
Unreviewed, EFL fast rebaseline after r101343.

* platform/efl/fast/backgrounds/001-expected.txt:
* platform/efl/fast/backgrounds/animated-gif-as-background-expected.txt:
* platform/efl/fast/backgrounds/background-leakage-expected.txt:
* platform/efl/fast/backgrounds/background-leakage-transforms-expected.txt:
* platform/efl/fast/backgrounds/background-origin-root-element-expected.txt:
* platform/efl/fast/backgrounds/background-position-1-expected.txt:
* platform/efl/fast/backgrounds/background-position-parsing-expected.txt:
* platform/efl/fast/backgrounds/background-position-rounding-expected.txt:
* platform/efl/fast/backgrounds/body-generated-image-propagated-to-root-expected.txt:
* platform/efl/fast/backgrounds/mask-composite-expected.txt:
* platform/efl/fast/backgrounds/opacity-on-document-element-expected.txt:
* platform/efl/fast/backgrounds/quirks-mode-line-box-backgrounds-expected.txt:
* platform/efl/fast/backgrounds/repeat/mask-negative-offset-repeat-expected.txt:
* platform/efl/fast/backgrounds/repeat/negative-offset-repeat-expected.txt:
* platform/efl/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.txt:
* platform/efl/fast/backgrounds/repeat/noRepeatCorrectClip-expected.txt:
* platform/efl/fast/backgrounds/size/backgroundSize15-expected.txt:
* platform/efl/fast/backgrounds/size/backgroundSize16-expected.txt:
* platform/efl/fast/backgrounds/size/zero-expected.txt:
* platform/efl/fast/backgrounds/solid-color-context-restore-expected.txt:
* platform/efl/fast/block/basic/001-expected.txt:
* platform/efl/fast/block/basic/002-expected.txt:
* platform/efl/fast/block/basic/003-expected.txt:
* platform/efl/fast/block/basic/004-expected.txt:
* platform/efl/fast/block/basic/005-expected.txt:
* platform/efl/fast/block/basic/007-expected.txt:
* platform/efl/fast/block/basic/008-expected.txt:
* platform/efl/fast/block/basic/010-expected.txt:
* platform/efl/fast/block/basic/013-expected.txt:
* platform/efl/fast/block/basic/016-expected.txt:
* platform/efl/fast/block/basic/018-expected.txt:
* platform/efl/fast/block/basic/020-expected.txt:
* platform/efl/fast/block/basic/021-expected.txt:
* platform/efl/fast/block/basic/adding-near-anonymous-block-expected.txt:
* platform/efl/fast/block/basic/min-pref-width-nowrap-floats-expected.txt:
* platform/efl/fast/block/basic/percent-height-inside-anonymous-block-expected.txt:
* platform/efl/fast/block/basic/text-indent-rtl-expected.txt:
* platform/efl/fast/block/basic/truncation-rtl-expected.txt:
* platform/efl/fast/block/basic/white-space-pre-wraps-expected.txt:
* platform/efl/fast/block/float/002-expected.txt:
* platform/efl/fast/block/float/003-expected.txt:
* platform/efl/fast/block/float/004-expected.txt:
* platform/efl/fast/block/float/005-expected.txt:
* platform/efl/fast/block/float/006-expected.txt:
* platform/efl/fast/block/float/007-expected.txt:
* platform/efl/fast/block/float/010-expected.txt:
* platform/efl/fast/block/float/011-expected.txt:
* platform/efl/fast/block/float/012-expected.txt:
* platform/efl/fast/block/float/013-expected.txt:
* platform/efl/fast/block/float/014-expected.txt:
* platform/efl/fast/block/float/016-expected.txt:
* platform/efl/fast/block/float/017-expected.txt:
* platform/efl/fast/block/float/018-expected.txt:
* platform/efl/fast/block/float/020-expected.txt:
* platform/efl/fast/block/float/021-expected.txt:
* platform/efl/fast/block/float/023-expected.txt:
* platform/efl/fast/block/float/024-expected.txt:
* platform/efl/fast/block/float/025-expected.txt:
* platform/efl/fast/block/float/026-expected.txt:
* platform/efl/fast/block/float/027-expected.txt:
* platform/efl/fast/block/float/028-expected.txt:
* platform/efl/fast/block/float/029-expected.txt:
* platform/efl/fast/block/float/030-expected.txt:
* platform/efl/fast/block/float/031-expected.txt:
* platform/efl/fast/block/float/032-expected.txt:
* platform/efl/fast/block/float/avoidance-percent-width-compat-expected.txt:
* platform/efl/fast/block/float/avoidance-percent-width-strict-expected.txt:
* platform/efl/fast/block/float/clear-element-too-wide-for-containing-block-expected.txt:
* platform/efl/fast/block/float/dynamic-unfloat-pref-width-expected.txt:
* platform/efl/fast/block/float/editable-text-overlapping-float-expected.txt:
* platform/efl/fast/block/float/fit_line_below_floats-expected.txt:
* platform/efl/fast/block/float/float-avoidance-expected.txt:
* platform/efl/fast/block/float/float-not-removed-from-next-sibling-expected.txt:
* platform/efl/fast/block/float/float-not-removed-from-next-sibling2-expected.txt:
* platform/efl/fast/block/float/float-not-removed-from-next-sibling3-expected.txt:
* platform/efl/fast/block/float/float-not-removed-from-next-sibling4-expected.txt:
* platform/efl/fast/block/float/floats-and-text-indent-expected.txt:
* platform/efl/fast/block/float/floats-and-text-indent-rl-expected.txt:
* platform/efl/fast/block/float/independent-align-positioning-expected.txt:
* platform/efl/fast/block/float/intruding-float-add-in-sibling-block-on-static-position-expected.txt:
* platform/efl/fast/block/float/intruding-float-add-in-sibling-block-on-static-position2-expected.txt:
* platform/efl/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position-expected.txt:
* platform/efl/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position2-expected.txt:
* platform/efl/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position-expected.txt:
* platform/efl/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position2-expected.txt:
* platform/efl/fast/block/float/intruding-painted-twice-expected.txt:
* platform/efl/fast/block/float/marquee-shrink-to-avoid-floats-expected.txt:
* platform/efl/fast/block/float/multiple-float-positioning-expected.txt:
* platform/efl/fast/block/float/nested-clearance-expected.txt:
* platform/efl/fast/block/float/nestedAnonymousBlocks-expected.txt:
* platform/efl/fast/block/float/nestedAnonymousBlocks2-expected.txt:
* platform/efl/fast/block/float/nopaint-after-layer-destruction-expected.txt:
* platform/efl/fast/block/float/nopaint-after-layer-destruction2-expected.txt:
* platform/efl/fast/block/float/overhanging-after-height-decrease-expected.txt:
* platform/efl/fast/block/float/overhanging-float-add-in-static-position-block-expected.txt:
* platform/efl/fast/block/float/overhanging-float-add-in-static-position-block2-expected.txt:
* platform/efl/fast/block/float/overhanging-float-remove-from-absolute-position-block-expected.txt:
* platform/efl/fast/block/float/overhanging-float-remove-from-absolute-position-block2-expected.txt:
* platform/efl/fast/block/float/overhanging-float-remove-from-fixed-position-block-expected.txt:
* platform/efl/fast/block/float/overhanging-float-remove-from-fixed-position-block2-expected.txt:
* platform/efl/fast/block/float/overlapping-floats-with-overflow-hidden-expected.txt:
* platform/efl/fast/block/float/shrink-to-fit-width-expected.txt:
* platform/efl/fast/block/float/table-relayout-expected.txt:
* platform/efl/fast/block/float/vertical-move-relayout-expected.txt:
* platform/efl/fast/block/float/width-update-after-clear-expected.txt:
* platform/efl/fast/block/lineboxcontain/block-expected.txt:
* platform/efl/fast/block/lineboxcontain/block-font-expected.txt:
* platform/efl/fast/block/lineboxcontain/block-glyphs-expected.txt:
* platform/efl/fast/block/lineboxcontain/block-glyphs-replaced-expected.txt:
* platform/efl/fast/block/lineboxcontain/block-replaced-expected.txt:
* platform/efl/fast/block/lineboxcontain/font-expected.txt:
* platform/efl/fast/block/lineboxcontain/font-replaced-expected.txt:
* platform/efl/fast/block/lineboxcontain/glyphs-expected.txt:
* platform/efl/fast/block/lineboxcontain/inline-box-expected.txt:
* platform/efl/fast/block/lineboxcontain/inline-box-replaced-expected.txt:
* platform/efl/fast/block/lineboxcontain/inline-box-vertical-expected.txt:
* platform/efl/fast/block/lineboxcontain/inline-expected.txt:
* platform/efl/fast/block/lineboxcontain/inline-replaced-expected.txt:
* platform/efl/fast/block/lineboxcontain/none-expected.txt:
* platform/efl/fast/block/lineboxcontain/parsing-invalid-expected.txt:
* platform/efl/fast/block/lineboxcontain/replaced-expected.txt:
* platform/efl/fast/block/margin-collapse/002-expected.txt:
* platform/efl/fast/block/margin-collapse/003-expected.txt:
* platform/efl/fast/block/margin-collapse/004-expected.txt:
* platform/efl/fast/block/margin-collapse/006-expected.txt:
* platform/efl/fast/block/margin-collapse/010-expected.txt:
* platform/efl/fast/block/margin-collapse/011-expected.txt:
* platform/efl/fast/block/margin-collapse/012-expected.txt:
* platform/efl/fast/block/margin-collapse/015-expected.txt:
* platform/efl/fast/block/margin-collapse/016-expected.txt:
* platform/efl/fast/block/margin-collapse/017-expected.txt:
* platform/efl/fast/block/margin-collapse/018-expected.txt:
* platform/efl/fast/block/margin-collapse/019-expected.txt:
* platform/efl/fast/block/margin-collapse/020-expected.txt:
* platform/efl/fast/block/margin-collapse/021-expected.txt:
* platform/efl/fast/block/margin-collapse/022-expected.txt:
* platform/efl/fast/block/margin-collapse/025-expected.txt:
* platform/efl/fast/block/margin-collapse/026-expected.txt:
* platform/efl/fast/block/margin-collapse/027-expected.txt:
* platform/efl/fast/block/margin-collapse/028-expected.txt:
* platform/efl/fast/block/margin-collapse/029-expected.txt:
* platform/efl/fast/block/margin-collapse/030-expected.txt:
* platform/efl/fast/block/margin-collapse/031-expected.txt:
* platform/efl/fast/block/margin-collapse/032-expected.txt:
* platform/efl/fast/block/margin-collapse/033-expected.txt:
* platform/efl/fast/block/margin-collapse/034-expected.txt:
* platform/efl/fast/block/margin-collapse/035-expected.txt:
* platform/efl/fast/block/margin-collapse/037-expected.txt:
* platform/efl/fast/block/margin-collapse/038-expected.txt:
* platform/efl/fast/block/margin-collapse/039-expected.txt:
* platform/efl/fast/block/margin-collapse/040-expected.txt:
* platform/efl/fast/block/margin-collapse/041-expected.txt:
* platform/efl/fast/block/margin-collapse/042-expected.txt:
* platform/efl/fast/block/margin-collapse/043-expected.txt:
* platform/efl/fast/block/margin-collapse/044-expected.txt:
* platform/efl/fast/block/margin-collapse/045-expected.txt:
* platform/efl/fast/block/margin-collapse/055-expected.txt:
* platform/efl/fast/block/margin-collapse/056-expected.txt:
* platform/efl/fast/block/margin-collapse/057-expected.txt:
* platform/efl/fast/block/margin-collapse/058-expected.txt:
* platform/efl/fast/block/margin-collapse/059-expected.txt:
* platform/efl/fast/block/margin-collapse/100-expected.txt:
* platform/efl/fast/block/margin-collapse/101-expected.txt:
* platform/efl/fast/block/margin-collapse/102-expected.txt:
* platform/efl/fast/block/margin-collapse/103-expected.txt:
* platform/efl/fast/block/margin-collapse/104-expected.txt:
* platform/efl/fast/block/margin-collapse/block-inside-inline/002-expected.txt:
* platform/efl/fast/block/margin-collapse/block-inside-inline/003-expected.txt:
* platform/efl/fast/block/margin-collapse/block-inside-inline/004-expected.txt:
* platform/efl/fast/block/margin-collapse/block-inside-inline/006-expected.txt:
* platform/efl/fast/block/margin-collapse/block-inside-inline/010-expected.txt:
* platform/efl/fast/block/margin-collapse/block-inside-inline/011-expected.txt:
* platform/efl/fast/block/margin-collapse/block-inside-inline/012-expected.txt:
* platform/efl/fast/block/margin-collapse/block-inside-inline/015-expected.txt:
* platform/efl/fast/block/margin-collapse/block-inside-inline/016-expected.txt:
* platform/efl/fast/block/margin-collapse/block-inside-inline/017-expected.txt:
* platform/efl/fast/block/margin-collapse/block-inside-inline/018-expected.txt:
* platform/efl/fast/block/margin-collapse/block-inside-inline/019-expected.txt:
* platform/efl/fast/block/margin-collapse/block-inside-inline/020-expected.txt:
* platform/efl/fast/block/margin-collapse/block-inside-inline/021-expected.txt:
* platform/efl/fast/block/margin-collapse/block-inside-inline/022-expected.txt:
* platform/efl/fast/block/margin-collapse/block-inside-inline/025-expected.txt:
* platform/efl/fast/block/margin-collapse/empty-clear-blocks-expected.txt:
* platform/efl/fast/block/margin-collapse/negative-margins-expected.txt:
* platform/efl/fast/block/positioning/001-expected.txt:
* platform/efl/fast/block/positioning/002-expected.txt:
* platform/efl/fast/block/positioning/052-expected.txt:
* platform/efl/fast/block/positioning/053-expected.txt:
* platform/efl/fast/block/positioning/054-expected.txt:
* platform/efl/fast/block/positioning/055-expected.txt:
* platform/efl/fast/block/positioning/057-expected.txt:
* platform/efl/fast/block/positioning/058-expected.txt:
* platform/efl/fast/block/positioning/059-expected.txt:
* platform/efl/fast/block/positioning/abs-inside-inline-rel-expected.txt:
* platform/efl/fast/block/positioning/absolute-in-inline-ltr-2-expected.txt:
* platform/efl/fast/block/positioning/absolute-in-inline-ltr-3-expected.txt:
* platform/efl/fast/block/positioning/absolute-in-inline-ltr-expected.txt:
* platform/efl/fast/block/positioning/absolute-in-inline-rtl-2-expected.txt:
* platform/efl/fast/block/positioning/absolute-in-inline-rtl-3-expected.txt:
* platform/efl/fast/block/positioning/absolute-in-inline-rtl-expected.txt:
* platform/efl/fast/block/positioning/absolute-in-inline-short-ltr-expected.txt:
* platform/efl/fast/block/positioning/absolute-in-inline-short-rtl-expected.txt:
* platform/efl/fast/block/positioning/absolute-length-of-neg-666666-expected.txt:
* platform/efl/fast/block/positioning/absolute-position-direction-expected.txt:
* platform/efl/fast/block/positioning/absolute-positioned-overconstrained-expected.txt:
* platform/efl/fast/block/positioning/absolute-positioning-no-scrollbar-expected.txt:
* platform/efl/fast/block/positioning/absolute-with-html-border-quirks-expected.txt:
* platform/efl/fast/block/positioning/absolute-with-html-border-strict-expected.txt:
* platform/efl/fast/block/positioning/auto-height-with-top-and-bottom-expected.txt:
* platform/efl/fast/block/positioning/auto/001-expected.txt:
* platform/efl/fast/block/positioning/auto/002-expected.txt:
* platform/efl/fast/block/positioning/auto/003-expected.txt:
* platform/efl/fast/block/positioning/auto/004-expected.txt:
* platform/efl/fast/block/positioning/auto/005-expected.txt:
* platform/efl/fast/block/positioning/auto/006-expected.txt:
* platform/efl/fast/block/positioning/auto/vertical-lr/001-expected.txt:
* platform/efl/fast/block/positioning/auto/vertical-lr/002-expected.txt:
* platform/efl/fast/block/positioning/auto/vertical-lr/003-expected.txt:
* platform/efl/fast/block/positioning/auto/vertical-lr/004-expected.txt:
* platform/efl/fast/block/positioning/auto/vertical-lr/005-expected.txt:
* platform/efl/fast/block/positioning/auto/vertical-lr/006-expected.txt:
* platform/efl/fast/block/positioning/auto/vertical-rl/001-expected.txt:
* platform/efl/fast/block/positioning/auto/vertical-rl/002-expected.txt:
* platform/efl/fast/block/positioning/auto/vertical-rl/003-expected.txt:
* platform/efl/fast/block/positioning/auto/vertical-rl/004-expected.txt:
* platform/efl/fast/block/positioning/auto/vertical-rl/005-expected.txt:
* platform/efl/fast/block/positioning/auto/vertical-rl/006-expected.txt:
* platform/efl/fast/block/positioning/child-of-absolute-with-auto-height-expected.txt:
* platform/efl/fast/block/positioning/differing-writing-modes-expected.txt:
* platform/efl/fast/block/positioning/differing-writing-modes-replaced-expected.txt:
* platform/efl/fast/block/positioning/fixed-positioning-scrollbar-bug-expected.txt:
* platform/efl/fast/block/positioning/height-change-expected.txt:
* platform/efl/fast/block/positioning/hiding-inside-relpositioned-inline-expected.txt:
* platform/efl/fast/block/positioning/inline-block-relposition-expected.txt:
* platform/efl/fast/block/positioning/leftmargin-topmargin-expected.txt:
* platform/efl/fast/block/positioning/negative-right-pos-expected.txt:
* platform/efl/fast/block/positioning/padding-percent-expected.txt:
* platform/efl/fast/block/positioning/pref-width-change-expected.txt:
* platform/efl/fast/block/positioning/relative-overflow-block-expected.txt:
* platform/efl/fast/block/positioning/relative-overflow-replaced-expected.txt:
* platform/efl/fast/block/positioning/relative-overflow-replaced-float-expected.txt:
* platform/efl/fast/block/positioning/relative-positioned-inline-container-expected.txt:
* platform/efl/fast/block/positioning/relayout-on-position-change-expected.txt:
* platform/efl/fast/block/positioning/rtl-static-positioning-expected.txt:
* platform/efl/fast/block/positioning/rtl-static-positioning-inline-block-expected.txt:
* platform/efl/fast/block/positioning/static-distance-with-positioned-ancestor-expected.txt:
* platform/efl/fast/block/positioning/table-cell-static-position-expected.txt:
* platform/efl/fast/block/positioning/trailing-space-test-expected.txt:
* platform/efl/fast/block/positioning/vertical-lr/001-expected.txt:
* platform/efl/fast/block/positioning/vertical-lr/002-expected.txt:
* platform/efl/fast/block/positioning/vertical-rl/001-expected.txt:
* platform/efl/fast/block/positioning/vertical-rl/002-expected.txt:
* platform/efl/fast/block/positioning/window-height-change-expected.txt:
* platform/efl/fast/body-propagation/background-color/001-expected.txt:
* platform/efl/fast/body-propagation/background-color/001-xhtml-expected.txt:
* platform/efl/fast/body-propagation/background-color/002-expected.txt:
* platform/efl/fast/body-propagation/background-color/002-xhtml-expected.txt:
* platform/efl/fast/body-propagation/background-color/003-declarative-expected.txt:
* platform/efl/fast/body-propagation/background-color/003-expected.txt:
* platform/efl/fast/body-propagation/background-color/003-xhtml-expected.txt:
* platform/efl/fast/body-propagation/background-color/004-declarative-expected.txt:
* platform/efl/fast/body-propagation/background-color/004-expected.txt:
* platform/efl/fast/body-propagation/background-color/004-xhtml-expected.txt:
* platform/efl/fast/body-propagation/background-color/005-declarative-expected.txt:
* platform/efl/fast/body-propagation/background-color/005-expected.txt:
* platform/efl/fast/body-propagation/background-color/005-xhtml-expected.txt:
* platform/efl/fast/body-propagation/background-color/006-declarative-expected.txt:
* platform/efl/fast/body-propagation/background-color/006-expected.txt:
* platform/efl/fast/body-propagation/background-color/006-xhtml-expected.txt:
* platform/efl/fast/body-propagation/background-color/007-declarative-expected.txt:
* platform/efl/fast/body-propagation/background-color/007-expected.txt:
* platform/efl/fast/body-propagation/background-color/007-xhtml-expected.txt:
* platform/efl/fast/body-propagation/background-color/008-expected.txt:
* platform/efl/fast/body-propagation/background-color/008-xhtml-expected.txt:
* platform/efl/fast/body-propagation/background-image/001-expected.txt:
* platform/efl/fast/body-propagation/background-image/001-xhtml-expected.txt:
* platform/efl/fast/body-propagation/background-image/002-expected.txt:
* platform/efl/fast/body-propagation/background-image/002-xhtml-expected.txt:
* platform/efl/fast/body-propagation/background-image/003-declarative-expected.txt:
* platform/efl/fast/body-propagation/background-image/003-expected.txt:
* platform/efl/fast/body-propagation/background-image/003-xhtml-expected.txt:
* platform/efl/fast/body-propagation/background-image/004-declarative-expected.txt:
* platform/efl/fast/body-propagation/background-image/004-expected.txt:
* platform/efl/fast/body-propagation/background-image/004-xhtml-expected.txt:
* platform/efl/fast/body-propagation/background-image/005-declarative-expected.txt:
* platform/efl/fast/body-propagation/background-image/005-expected.txt:
* platform/efl/fast/body-propagation/background-image/005-xhtml-expected.txt:
* platform/efl/fast/body-propagation/background-image/006-declarative-expected.txt:
* platform/efl/fast/body-propagation/background-image/006-expected.txt:
* platform/efl/fast/body-propagation/background-image/006-xhtml-expected.txt:
* platform/efl/fast/body-propagation/background-image/007-declarative-expected.txt:
* platform/efl/fast/body-propagation/background-image/007-expected.txt:
* platform/efl/fast/body-propagation/background-image/007-xhtml-expected.txt:
* platform/efl/fast/body-propagation/background-image/008-expected.txt:
* platform/efl/fast/body-propagation/background-image/008-xhtml-expected.txt:
* platform/efl/fast/body-propagation/background-image/009-expected.txt:
* platform/efl/fast/body-propagation/background-image/009-xhtml-expected.txt:
* platform/efl/fast/body-propagation/background-image/010-expected.txt:
* platform/efl/fast/body-propagation/background-image/010-xhtml-expected.txt:
* platform/efl/fast/body-propagation/overflow/001-expected.txt:
* platform/efl/fast/body-propagation/overflow/001-xhtml-expected.txt:
* platform/efl/fast/body-propagation/overflow/002-expected.txt:
* platform/efl/fast/body-propagation/overflow/002-xhtml-expected.txt:
* platform/efl/fast/body-propagation/overflow/003-declarative-expected.txt:
* platform/efl/fast/body-propagation/overflow/003-expected.txt:
* platform/efl/fast/body-propagation/overflow/003-xhtml-expected.txt:
* platform/efl/fast/body-propagation/overflow/004-declarative-expected.txt:
* platform/efl/fast/body-propagation/overflow/004-expected.txt:
* platform/efl/fast/body-propagation/overflow/004-xhtml-expected.txt:
* platform/efl/fast/body-propagation/overflow/005-declarative-expected.txt:
* platform/efl/fast/body-propagation/overflow/005-expected.txt:
* platform/efl/fast/body-propagation/overflow/005-xhtml-expected.txt:
* platform/efl/fast/body-propagation/overflow/006-declarative-expected.txt:
* platform/efl/fast/body-propagation/overflow/006-expected.txt:
* platform/efl/fast/body-propagation/overflow/006-xhtml-expected.txt:
* platform/efl/fast/body-propagation/overflow/007-declarative-expected.txt:
* platform/efl/fast/body-propagation/overflow/007-expected.txt:
* platform/efl/fast/body-propagation/overflow/007-xhtml-expected.txt:
* platform/efl/fast/borders/bidi-002-expected.txt:
* platform/efl/fast/borders/bidi-009a-expected.txt:
* platform/efl/fast/borders/bidi-012-expected.txt:
* platform/efl/fast/borders/border-antialiasing-expected.txt:
* platform/efl/fast/borders/border-color-inherit-expected.txt:
* platform/efl/fast/borders/border-image-01-expected.txt:
* platform/efl/fast/borders/border-image-border-radius-expected.txt:
* platform/efl/fast/borders/border-image-longhand-expected.txt:
* platform/efl/fast/borders/border-image-massive-scale-expected.txt:
* platform/efl/fast/borders/border-image-outset-expected.txt:
* platform/efl/fast/borders/border-image-outset-in-shorthand-expected.txt:
* platform/efl/fast/borders/border-image-repeat-expected.txt:
* platform/efl/fast/borders/border-image-rotate-transform-expected.txt:
* platform/efl/fast/borders/border-image-scale-transform-expected.txt:
* platform/efl/fast/borders/border-image-scaled-expected.txt:
* platform/efl/fast/borders/border-image-scrambled-expected.txt:
* platform/efl/fast/borders/border-image-side-reduction-expected.txt:
* platform/efl/fast/borders/border-image-slices-expected.txt:
* platform/efl/fast/borders/border-image-source-expected.txt:
* platform/efl/fast/borders/border-radius-constraints-expected.txt:
* platform/efl/fast/borders/border-radius-huge-assert-expected.txt:
* platform/efl/fast/borders/border-radius-inset-outset-expected.txt:
* platform/efl/fast/borders/border-radius-split-inline-expected.txt:
* platform/efl/fast/borders/borderRadiusAllStylesAllCorners-expected.txt:
* platform/efl/fast/borders/borderRadiusInvalidColor-expected.txt:
* platform/efl/fast/borders/different-color-borders-expected.txt:
* platform/efl/fast/borders/mixed-border-styles-expected.txt:
* platform/efl/fast/borders/mixed-border-styles-radius-expected.txt:
* platform/efl/fast/borders/mixed-border-styles-radius2-expected.txt:
* platform/efl/fast/borders/rtl-border-01-expected.txt:
* platform/efl/fast/borders/rtl-border-02-expected.txt:
* platform/efl/fast/borders/rtl-border-03-expected.txt:
* platform/efl/fast/borders/rtl-border-05-expected.txt:
* platform/efl/fast/borders/table-borders-expected.txt:
* platform/efl/fast/box-shadow/border-radius-big-expected.txt:
* platform/efl/fast/box-shadow/box-shadow-transformed-expected.txt:
* platform/efl/fast/box-shadow/inset-box-shadows-expected.txt:
* platform/efl/fast/box-shadow/inset-expected.txt:
* platform/efl/fast/box-shadow/transform-fringing-expected.txt:
* platform/efl/fast/canvas/canvas-size-change-after-layout-expected.txt:
* platform/efl/fast/canvas/canvas-zoom-expected.txt:
* platform/efl/fast/clip/001-expected.txt:
* platform/efl/fast/clip/002-expected.txt:
* platform/efl/fast/clip/003-expected.txt:
* platform/efl/fast/clip/004-expected.txt:
* platform/efl/fast/clip/005-expected.txt:
* platform/efl/fast/clip/006-expected.txt:
* platform/efl/fast/clip/007-expected.txt:
* platform/efl/fast/clip/008-expected.txt:
* platform/efl/fast/clip/009-expected.txt:
* platform/efl/fast/clip/010-expected.txt:
* platform/efl/fast/clip/011-expected.txt:
* platform/efl/fast/clip/012-expected.txt:
* platform/efl/fast/clip/013-expected.txt:
* platform/efl/fast/clip/014-expected.txt:
* platform/efl/fast/clip/015-expected.txt:
* platform/efl/fast/clip/nestedTransparencyClip-expected.txt:
* platform/efl/fast/clip/outline-overflowClip-expected.txt:
* platform/efl/fast/clip/overflow-border-radius-clip-expected.txt:
* platform/efl/fast/clip/overflow-border-radius-combinations-expected.txt:
* platform/efl/fast/clip/overflow-border-radius-composited-expected.txt:
* platform/efl/fast/clip/overflow-border-radius-fixed-position-expected.txt:
* platform/efl/fast/clip/overflow-border-radius-transformed-expected.txt:
* platform/efl/fast/compact/001-expected.txt:
* platform/efl/fast/compact/002-expected.txt:
* platform/efl/fast/compact/003-expected.txt:
* platform/efl/fast/css-generated-content/002-expected.txt:
* platform/efl/fast/css-generated-content/004-expected.txt:
* platform/efl/fast/css-generated-content/005-expected.txt:
* platform/efl/fast/css-generated-content/007-expected.txt:
* platform/efl/fast/css-generated-content/008-expected.txt:
* platform/efl/fast/css-generated-content/010-expected.txt:
* platform/efl/fast/css-generated-content/015-expected.txt:
* platform/efl/fast/css-generated-content/016-expected.txt:
* platform/efl/fast/css-generated-content/after-order-expected.txt:
* platform/efl/fast/css-generated-content/before-with-first-letter-expected.txt:
* platform/efl/fast/css-generated-content/beforeAfter-interdocument-expected.txt:
* platform/efl/fast/css-generated-content/hover-style-change-expected.txt:
* platform/efl/fast/css-generated-content/no-openclose-quote-expected.txt:
* platform/efl/fast/css-generated-content/table-before-after-child-add-expected.txt:
* platform/efl/fast/css-generated-content/table-cell-before-after-child-add-expected.txt:
* platform/efl/fast/css-generated-content/table-cell-before-content-expected.txt:
* platform/efl/fast/css-generated-content/table-row-before-after-child-add-expected.txt:
* platform/efl/fast/css-generated-content/table-row-before-after-expected.txt:
* platform/efl/fast/css-generated-content/table-row-group-to-inline-expected.txt:
* platform/efl/fast/css-generated-content/table-row-group-with-before-expected.txt:
* platform/efl/fast/css-generated-content/table-row-with-before-expected.txt:
* platform/efl/fast/css-generated-content/table-table-before-after-child-add-expected.txt:
* platform/efl/fast/css-generated-content/table-with-before-expected.txt:
* platform/efl/fast/css-generated-content/wbr-with-before-content-expected.txt:
* platform/efl/fast/css/001-expected.txt:
* platform/efl/fast/css/007-expected.txt:
* platform/efl/fast/css/MarqueeLayoutTest-expected.txt:
* platform/efl/fast/css/ZeroOpacityLayers-expected.txt:
* platform/efl/fast/css/ZeroOpacityLayers2-expected.txt:
* platform/efl/fast/css/absolute-poition-in-rtl-parent-expected.txt:
* platform/efl/fast/css/apple-prefix-expected.txt:
* platform/efl/fast/css/attribute-selector-dynamic-expected.txt:
* platform/efl/fast/css/attribute-selector-empty-value-expected.txt:
* platform/efl/fast/css/beforeSelectorOnCodeElement-expected.txt:
* platform/efl/fast/css/begin-end-contain-selector-empty-value-expected.txt:
* platform/efl/fast/css/border-height-expected.txt:
* platform/efl/fast/css/border-radius-outline-offset-expected.txt:
* platform/efl/fast/css/color-correction-expected.txt:
* platform/efl/fast/css/color-correction-on-background-image-expected.txt:
* platform/efl/fast/css/color-correction-on-backgrounds-expected.txt:
* platform/efl/fast/css/color-correction-on-box-shadow-expected.txt:
* platform/efl/fast/css/color-correction-untagged-images-expected.txt:
* platform/efl/fast/css/color-quirk-expected.txt:
* platform/efl/fast/css/color-strict-expected.txt:
* platform/efl/fast/css/compare-content-style-expected.txt:
* platform/efl/fast/css/continuationCrash-expected.txt:
* platform/efl/fast/css/counters/counter-text-security-expected.txt:
* platform/efl/fast/css/counters/counter-text-transform-expected.txt:
* platform/efl/fast/css/create_element_align-expected.txt:
* platform/efl/fast/css/css-imports-expected.txt:
* platform/efl/fast/css/css1_forward_compatible_parsing-expected.txt:
* platform/efl/fast/css/css3-modsel-22-expected.txt:
* platform/efl/fast/css/css3-nth-child-expected.txt:
* platform/efl/fast/css/css3-space-in-nth-and-lang-expected.txt:
* platform/efl/fast/css/dynamic-sibling-selector-expected.txt:
* platform/efl/fast/css/empty-body-test-expected.txt:
* platform/efl/fast/css/empty-generated-content-expected.txt:
* platform/efl/fast/css/empty-pseudo-class-expected.txt:
* platform/efl/fast/css/error-in-last-decl-expected.txt:
* platform/efl/fast/css/ex-after-font-variant-expected.txt:
* platform/efl/fast/css/fieldset-display-row-expected.txt:
* platform/efl/fast/css/find-next-layer-expected.txt:
* platform/efl/fast/css/first-child-pseudo-class-expected.txt:
* platform/efl/fast/css/first-letter-capitalized-expected.txt:
* platform/efl/fast/css/first-letter-detach-expected.txt:
* platform/efl/fast/css/first-letter-float-after-float-expected.txt:
* platform/efl/fast/css/first-letter-float-expected.txt:
* platform/efl/fast/css/first-letter-hover-expected.txt:
* platform/efl/fast/css/first-letter-punctuation-expected.txt:
* platform/efl/fast/css/first-letter-recalculation-expected.txt:
* platform/efl/fast/css/first-letter-skip-out-of-flow-expected.txt:
* platform/efl/fast/css/first-letter-visibility-expected.txt:
* platform/efl/fast/css/first-of-type-pseudo-class-expected.txt:
* platform/efl/fast/css/focus-ring-detached-expected.txt:
* platform/efl/fast/css/focus-ring-multiline-expected.txt:
* platform/efl/fast/css/focus-ring-multiline-writingmode-vertical-expected.txt:
* platform/efl/fast/css/focus-ring-outline-color-expected.txt:
* platform/efl/fast/css/focus-ring-outline-offset-expected.txt:
* platform/efl/fast/css/focus-ring-outline-width-expected.txt:
* platform/efl/fast/css/font-face-default-font-expected.txt:
* platform/efl/fast/css/font-face-descriptor-multiple-values-expected.txt:
* platform/efl/fast/css/font-face-implicit-local-font-expected.txt:
* platform/efl/fast/css/font-face-locally-installed-expected.txt:
* platform/efl/fast/css/font-face-multiple-faces-expected.txt:
* platform/efl/fast/css/font-face-opentype-expected.txt:
* platform/efl/fast/css/font-face-unicode-range-expected.txt:
* platform/efl/fast/css/font-shorthand-weight-only-expected.txt:
* platform/efl/fast/css/h1-in-section-elements-expected.txt:
* platform/efl/fast/css/hover-subselector-expected.txt:
* platform/efl/fast/css/import-rule-regression-11590-expected.txt:
* platform/efl/fast/css/inline-element-line-break-expected.txt:
* platform/efl/fast/css/input-search-padding-expected.txt:
* platform/efl/fast/css/invalid-percentage-property-expected.txt:
* platform/efl/fast/css/invalid-pseudo-classes-expected.txt:
* platform/efl/fast/css/invalidation-errors-2-expected.txt:
* platform/efl/fast/css/invalidation-errors-expected.txt:
* platform/efl/fast/css/last-child-pseudo-class-expected.txt:
* platform/efl/fast/css/last-of-type-pseudo-class-expected.txt:
* platform/efl/fast/css/layerZOrderCrash-expected.txt:
* platform/efl/fast/css/line-after-floating-div-expected.txt:
* platform/efl/fast/css/line-height-expected.txt:
* platform/efl/fast/css/line-height-overflow-expected.txt:
* platform/efl/fast/css/link-outside-head-expected.txt:
* platform/efl/fast/css/list-outline-expected.txt:
* platform/efl/fast/css/live-cssrules-expected.txt:
* platform/efl/fast/css/margin-bottom-form-element-quirk-expected.txt:
* platform/efl/fast/css/margin-bottom-form-element-strict-expected.txt:
* platform/efl/fast/css/margin-top-bottom-dynamic-expected.txt:
* platform/efl/fast/css/namespaces/001-expected.txt:
* platform/efl/fast/css/namespaces/002-expected.txt:
* platform/efl/fast/css/namespaces/003-expected.txt:
* platform/efl/fast/css/namespaces/004-expected.txt:
* platform/efl/fast/css/namespaces/005-expected.txt:
* platform/efl/fast/css/namespaces/006-expected.txt:
* platform/efl/fast/css/namespaces/007-expected.txt:
* platform/efl/fast/css/namespaces/namespaces-comments-expected.txt:
* platform/efl/fast/css/namespaces/namespaces-empty-expected.txt:
* platform/efl/fast/css/namespaces/namespaces-escapes-expected.txt:
* platform/efl/fast/css/namespaces/namespaces-invalid-at-expected.txt:
* platform/efl/fast/css/negative-leading-expected.txt:
* platform/efl/fast/css/negative-nth-child-expected.txt:
* platform/efl/fast/css/nested-floating-relative-position-percentages-expected.txt:
* platform/efl/fast/css/nested-layers-with-hover-expected.txt:
* platform/efl/fast/css/nth-child-dynamic-expected.txt:
* platform/efl/fast/css/only-child-pseudo-class-expected.txt:
* platform/efl/fast/css/only-of-type-pseudo-class-expected.txt:
* platform/efl/fast/css/outline-auto-location-expected.txt:
* platform/efl/fast/css/outline-narrowLine-expected.txt:
* platform/efl/fast/css/pendingStylesheetFontSize-expected.txt:
* platform/efl/fast/css/percent-top-relative-container-height-unspecified-expected.txt:
* platform/efl/fast/css/percent-top-value-with-relative-position-expected.txt:
* platform/efl/fast/css/percentage-non-integer-expected.txt:
* platform/efl/fast/css/position-negative-top-margin-expected.txt:
* platform/efl/fast/css/pseudo-element-line-break-expected.txt:
* platform/efl/fast/css/quirk-orphaned-units-expected.txt:
* platform/efl/fast/css/resize-corner-tracking-expected.txt:
* platform/efl/fast/css/resize-corner-tracking-transformed-expected.txt:
* platform/efl/fast/css/rtl-ordering-expected.txt:
* platform/efl/fast/css/rtl-to-viewport-expected.txt:
* platform/efl/fast/css/simple-selector-chain-parsing-expected.txt:
* platform/efl/fast/css/style-outside-head-expected.txt:
* platform/efl/fast/css/style-parsed-outside-head-expected.txt:
* platform/efl/fast/css/table-text-align-quirk-expected.txt:
* platform/efl/fast/css/table-text-align-strict-expected.txt:
* platform/efl/fast/css/target-fragment-match-expected.txt:
* platform/efl/fast/css/text-align-expected.txt:
* platform/efl/fast/css/text-input-with-webkit-border-radius-expected.txt:
* platform/efl/fast/css/text-overflow-ellipsis-bidi-expected.txt:
* platform/efl/fast/css/text-overflow-ellipsis-expected.txt:
* platform/efl/fast/css/text-overflow-ellipsis-strict-expected.txt:
* platform/efl/fast/css/text-security-expected.txt:
* platform/efl/fast/css/text-transform-select-expected.txt:
* platform/efl/fast/css/textCapitalizeEdgeCases-expected.txt:
* platform/efl/fast/css/transformed-mask-expected.txt:
* platform/efl/fast/css/universal-hover-quirk-expected.txt:
* platform/efl/fast/css/value-list-out-of-bounds-crash-expected.txt:
* platform/efl/fast/css/word-space-extra-expected.txt:
* platform/efl/fast/doctypes/001-expected.txt:
* platform/efl/fast/doctypes/002-expected.txt:
* platform/efl/fast/doctypes/003-expected.txt:
* platform/efl/fast/doctypes/004-expected.txt:
* platform/efl/fast/dom/34176-expected.txt:
* platform/efl/fast/dom/52776-expected.txt:
* platform/efl/fast/dom/Element/class-attribute-whitespace-expected.txt:
* platform/efl/fast/dom/Element/getBoundingClientRect-expected.txt:
* platform/efl/fast/dom/Element/null-offset-parent-expected.txt:
* platform/efl/fast/dom/HTMLDocument/frameless-location-bugzilla10837-expected.txt:
* platform/efl/fast/dom/HTMLElement/bdo-expected.txt:
* platform/efl/fast/dom/HTMLHeadElement/head-link-style-href-check-expected.txt:
* platform/efl/fast/dom/HTMLImageElement/image-alt-text-expected.txt:
* platform/efl/fast/dom/HTMLInputElement/input-image-alt-text-expected.txt:
* platform/efl/fast/dom/HTMLLinkElement/pending-stylesheet-count-expected.txt:
* platform/efl/fast/dom/HTMLMeterElement/meter-appearances-capacity-expected.txt:
* platform/efl/fast/dom/HTMLMeterElement/meter-appearances-rating-relevancy-expected.txt:
* platform/efl/fast/dom/HTMLMeterElement/meter-styles-expected.txt:
* platform/efl/fast/dom/HTMLObjectElement/vspace-hspace-as-number-expected.txt:
* platform/efl/fast/dom/HTMLProgressElement/indeterminate-progress-001-expected.txt:
* platform/efl/fast/dom/HTMLProgressElement/progress-bar-value-pseudo-element-expected.txt:
* platform/efl/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.txt:
* platform/efl/fast/dom/HTMLTextAreaElement/reset-textarea-expected.txt:
* platform/efl/fast/dom/Range/create-contextual-fragment-expected.txt:
* platform/efl/fast/dom/Range/getBoundingClientRect-expected.txt:
* platform/efl/fast/dom/Range/getClientRects-expected.txt:
* platform/efl/fast/dom/Range/surroundContents-1-expected.txt:
* platform/efl/fast/dom/Window/btoa-pnglet-expected.txt:
* platform/efl/fast/dom/Window/open-existing-pop-up-blocking-expected.txt:
* platform/efl/fast/dom/Window/webkitConvertPoint-expected.txt:
* platform/efl/fast/dom/blur-contenteditable-expected.txt:
* platform/efl/fast/dom/children-nodes-expected.txt:
* platform/efl/fast/dom/clone-contents-0-end-offset-expected.txt:
* platform/efl/fast/dom/createDocumentType-expected.txt:
* platform/efl/fast/dom/css-mediarule-deleteRule-update-expected.txt:
* platform/efl/fast/dom/css-mediarule-insertRule-update-expected.txt:
* platform/efl/fast/dom/css-rule-functions-expected.txt:
* platform/efl/fast/dom/focus-contenteditable-expected.txt:
* platform/efl/fast/dom/gc-10-expected.txt:
* platform/efl/fast/dom/importNodeHTML-expected.txt:
* platform/efl/fast/dom/importNodeXML-expected.txt:
* platform/efl/fast/dom/isindex-001-expected.txt:
* platform/efl/fast/dom/isindex-002-expected.txt:
* platform/efl/fast/dom/outerText-expected.txt:
* platform/efl/fast/dom/row-inner-text-expected.txt:
* platform/efl/fast/dynamic/002-expected.txt:
* platform/efl/fast/dynamic/004-expected.txt:
* platform/efl/fast/dynamic/006-expected.txt:
* platform/efl/fast/dynamic/007-expected.txt:
* platform/efl/fast/dynamic/008-expected.txt:
* platform/efl/fast/dynamic/009-expected.txt:
* platform/efl/fast/dynamic/011-expected.txt:
* platform/efl/fast/dynamic/012-expected.txt:
* platform/efl/fast/dynamic/013-expected.txt:
* platform/efl/fast/dynamic/014-expected.txt:
* platform/efl/fast/dynamic/015-expected.txt:
* platform/efl/fast/dynamic/anonymous-block-orphaned-lines-expected.txt:
* platform/efl/fast/dynamic/containing-block-change-expected.txt:
* platform/efl/fast/dynamic/create-renderer-for-whitespace-only-text-expected.txt:
* platform/efl/fast/dynamic/first-letter-display-change-expected.txt:
* platform/efl/fast/dynamic/float-in-trailing-whitespace-after-last-line-break-expected.txt:
* platform/efl/fast/dynamic/float-withdrawal-expected.txt:
* platform/efl/fast/dynamic/insert-before-table-part-in-continuation-expected.txt:
* platform/efl/fast/dynamic/layer-hit-test-crash-expected.txt:
* platform/efl/fast/dynamic/move-node-with-selection-expected.txt:
* platform/efl/fast/dynamic/noninlinebadness-expected.txt:
* platform/efl/fast/dynamic/outerHTML-doc-expected.txt:
* platform/efl/fast/dynamic/outerHTML-img-expected.txt:
* platform/efl/fast/dynamic/positioned-movement-with-positioned-children-expected.txt:
* platform/efl/fast/dynamic/selection-highlight-adjust-expected.txt:
* platform/efl/fast/dynamic/staticY-marking-parents-regression-expected.txt:
* platform/efl/fast/dynamic/view-overflow-expected.txt:
* platform/efl/fast/encoding/denormalised-voiced-japanese-chars-expected.txt:
* platform/efl/fast/encoding/invalid-UTF-8-expected.txt:
* platform/efl/fast/encoding/utf-16-big-endian-expected.txt:
* platform/efl/fast/encoding/utf-16-little-endian-expected.txt:
* platform/efl/fast/encoding/xmacroman-encoding-test-expected.txt:
* platform/efl/fast/events/autoscroll-expected.txt:
* platform/efl/fast/events/event-listener-on-link-expected.txt:
* platform/efl/fast/events/onload-re-entry-expected.txt:
* platform/efl/fast/events/reveal-link-when-focused-expected.txt:
* platform/efl/fast/events/updateLayoutForHitTest-expected.txt:
* platform/efl/fast/fast-mobile-scrolling/fixed-position-element-expected.txt:
* platform/efl/fast/fast-mobile-scrolling/no-fixed-position-elements-expected.txt:
* platform/efl/fast/flexbox/001-expected.txt:
* platform/efl/fast/flexbox/002-expected.txt:
* platform/efl/fast/flexbox/003-expected.txt:
* platform/efl/fast/flexbox/004-expected.txt:
* platform/efl/fast/flexbox/005-expected.txt:
* platform/efl/fast/flexbox/006-expected.txt:
* platform/efl/fast/flexbox/007-expected.txt:
* platform/efl/fast/flexbox/008-expected.txt:
* platform/efl/fast/flexbox/009-expected.txt:
* platform/efl/fast/flexbox/010-expected.txt:
* platform/efl/fast/flexbox/011-expected.txt:
* platform/efl/fast/flexbox/012-expected.txt:
* platform/efl/fast/flexbox/013-expected.txt:
* platform/efl/fast/flexbox/014-expected.txt:
* platform/efl/fast/flexbox/015-expected.txt:
* platform/efl/fast/flexbox/016-expected.txt:
* platform/efl/fast/flexbox/017-expected.txt:
* platform/efl/fast/flexbox/018-expected.txt:
* platform/efl/fast/flexbox/019-expected.txt:
* platform/efl/fast/flexbox/020-expected.txt:
* platform/efl/fast/flexbox/021-expected.txt:
* platform/efl/fast/flexbox/022-expected.txt:
* platform/efl/fast/flexbox/023-expected.txt:
* platform/efl/fast/flexbox/024-expected.txt:
* platform/efl/fast/flexbox/026-expected.txt:
* platform/efl/fast/flexbox/overhanging-floats-removed-expected.txt:
* platform/efl/fast/forms/003-expected.txt:
* platform/efl/fast/forms/004-expected.txt:
* platform/efl/fast/forms/006-expected.txt:
* platform/efl/fast/forms/007-expected.txt:
* platform/efl/fast/forms/HTMLOptionElement_label01-expected.txt:
* platform/efl/fast/forms/HTMLOptionElement_label02-expected.txt:
* platform/efl/fast/forms/HTMLOptionElement_label03-expected.txt:
* platform/efl/fast/forms/HTMLOptionElement_label04-expected.txt:
* platform/efl/fast/forms/HTMLOptionElement_label05-expected.txt:
* platform/efl/fast/forms/HTMLOptionElement_label06-expected.txt:
* platform/efl/fast/forms/HTMLOptionElement_label07-expected.txt:
* platform/efl/fast/forms/basic-buttons-expected.txt:
* platform/efl/fast/forms/basic-inputs-expected.txt:
* platform/efl/fast/forms/blankbuttons-expected.txt:
* platform/efl/fast/forms/box-shadow-override-expected.txt:
* platform/efl/fast/forms/button-align-expected.txt:
* platform/efl/fast/forms/button-cannot-be-nested-expected.txt:
* platform/efl/fast/forms/button-default-title-expected.txt:
* platform/efl/fast/forms/button-generated-content-expected.txt:
* platform/efl/fast/forms/button-inner-block-reuse-expected.txt:
* platform/efl/fast/forms/button-positioned-expected.txt:
* platform/efl/fast/forms/button-sizes-expected.txt:
* platform/efl/fast/forms/button-style-color-expected.txt:
* platform/efl/fast/forms/button-submit-expected.txt:
* platform/efl/fast/forms/button-table-styles-expected.txt:
* platform/efl/fast/forms/button-text-transform-expected.txt:
* platform/efl/fast/forms/button-white-space-expected.txt:
* platform/efl/fast/forms/checkbox-radio-onchange-expected.txt:
* platform/efl/fast/forms/control-clip-expected.txt:
* platform/efl/fast/forms/control-clip-overflow-expected.txt:
* platform/efl/fast/forms/control-restrict-line-height-expected.txt:
* platform/efl/fast/forms/disabled-select-change-index-expected.txt:
* platform/efl/fast/forms/encoding-test-expected.txt:
* platform/efl/fast/forms/fieldset-align-expected.txt:
* platform/efl/fast/forms/file/file-input-direction-expected.txt:
* platform/efl/fast/forms/file/file-input-disabled-expected.txt:
* platform/efl/fast/forms/float-before-fieldset-expected.txt:
* platform/efl/fast/forms/floating-textfield-relayout-expected.txt:
* platform/efl/fast/forms/form-added-to-table-expected.txt:
* platform/efl/fast/forms/form-hides-table-expected.txt:
* platform/efl/fast/forms/form-in-malformed-markup-expected.txt:
* platform/efl/fast/forms/formmove-expected.txt:
* platform/efl/fast/forms/formmove2-expected.txt:
* platform/efl/fast/forms/formmove3-expected.txt:
* platform/efl/fast/forms/hidden-listbox-expected.txt:
* platform/efl/fast/forms/image-border-expected.txt:
* platform/efl/fast/forms/input-align-expected.txt:
* platform/efl/fast/forms/input-align-image-expected.txt:
* platform/efl/fast/forms/input-appearance-bkcolor-expected.txt:
* platform/efl/fast/forms/input-appearance-default-bkcolor-expected.txt:
* platform/efl/fast/forms/input-appearance-focus-expected.txt:
* platform/efl/fast/forms/input-appearance-height-expected.txt:
* platform/efl/fast/forms/input-appearance-preventDefault-expected.txt:
* platform/efl/fast/forms/input-appearance-selection-expected.txt:
* platform/efl/fast/forms/input-appearance-visibility-expected.txt:
* platform/efl/fast/forms/input-appearance-width-expected.txt:
* platform/efl/fast/forms/input-button-sizes-expected.txt:
* platform/efl/fast/forms/input-disabled-color-expected.txt:
* platform/efl/fast/forms/input-double-click-selection-gap-bug-expected.txt:
* platform/efl/fast/forms/input-first-letter-expected.txt:
* platform/efl/fast/forms/input-readonly-dimmed-expected.txt:
* platform/efl/fast/forms/input-readonly-empty-expected.txt:
* platform/efl/fast/forms/input-spaces-expected.txt:
* platform/efl/fast/forms/input-table-expected.txt:
* platform/efl/fast/forms/input-text-click-inside-expected.txt:
* platform/efl/fast/forms/input-text-option-delete-expected.txt:
* platform/efl/fast/forms/input-text-self-emptying-click-expected.txt:
* platform/efl/fast/forms/input-text-word-wrap-expected.txt:
* platform/efl/fast/forms/input-type-text-min-width-expected.txt:
* platform/efl/fast/forms/input-value-expected.txt:
* platform/efl/fast/forms/input-width-expected.txt:
* platform/efl/fast/forms/linebox-overflow-in-textarea-padding-expected.txt:
* platform/efl/fast/forms/listbox-bidi-align-expected.txt:
* platform/efl/fast/forms/listbox-hit-test-zoomed-expected.txt:
* platform/efl/fast/forms/listbox-scrollbar-incremental-load-expected.txt:
* platform/efl/fast/forms/listbox-width-change-expected.txt:
* platform/efl/fast/forms/menulist-clip-expected.txt:
* platform/efl/fast/forms/menulist-deselect-update-expected.txt:
* platform/efl/fast/forms/menulist-narrow-width-expected.txt:
* platform/efl/fast/forms/menulist-no-overflow-expected.txt:
* platform/efl/fast/forms/menulist-option-wrap-expected.txt:
* platform/efl/fast/forms/menulist-restrict-line-height-expected.txt:
* platform/efl/fast/forms/menulist-separator-painting-expected.txt:
* platform/efl/fast/forms/menulist-style-color-expected.txt:
* platform/efl/fast/forms/menulist-width-change-expected.txt:
* platform/efl/fast/forms/minWidthPercent-expected.txt:
* platform/efl/fast/forms/negativeLineHeight-expected.txt:
* platform/efl/fast/forms/number/input-appearance-number-rtl-expected.txt:
* platform/efl/fast/forms/number/input-appearance-spinbutton-disabled-readonly-expected.txt:
* platform/efl/fast/forms/number/input-appearance-spinbutton-layer-expected.txt:
* platform/efl/fast/forms/option-index-expected.txt:
* platform/efl/fast/forms/option-script-expected.txt:
* platform/efl/fast/forms/option-strip-whitespace-expected.txt:
* platform/efl/fast/forms/option-text-clip-expected.txt:
* platform/efl/fast/forms/preserveFormDuringResidualStyle-expected.txt:
* platform/efl/fast/forms/radio-attr-order-expected.txt:
* platform/efl/fast/forms/radio-nested-labels-expected.txt:
* platform/efl/fast/forms/radio_checked-expected.txt:
* platform/efl/fast/forms/radio_checked_dynamic-expected.txt:
* platform/efl/fast/forms/range/input-appearance-range-expected.txt:
* platform/efl/fast/forms/range/range-thumb-height-percentage-expected.txt:
* platform/efl/fast/forms/range/slider-padding-expected.txt:
* platform/efl/fast/forms/range/slider-thumb-shared-style-expected.txt:
* platform/efl/fast/forms/search-cancel-button-style-sharing-expected.txt:
* platform/efl/fast/forms/search-display-none-cancel-button-expected.txt:
* platform/efl/fast/forms/search-rtl-expected.txt:
* platform/efl/fast/forms/search-vertical-alignment-expected.txt:
* platform/efl/fast/forms/searchfield-heights-expected.txt:
* platform/efl/fast/forms/select-align-expected.txt:
* platform/efl/fast/forms/select-background-none-expected.txt:
* platform/efl/fast/forms/select-baseline-expected.txt:
* platform/efl/fast/forms/select-block-background-expected.txt:
* platform/efl/fast/forms/select-change-listbox-size-expected.txt:
* platform/efl/fast/forms/select-change-listbox-to-popup-expected.txt:
* platform/efl/fast/forms/select-change-popup-to-listbox-expected.txt:
* platform/efl/fast/forms/select-dirty-parent-pref-widths-expected.txt:
* platform/efl/fast/forms/select-display-none-style-resolve-expected.txt:
* platform/efl/fast/forms/select-empty-option-height-expected.txt:
* platform/efl/fast/forms/select-initial-position-expected.txt:
* platform/efl/fast/forms/select-item-background-clip-expected.txt:
* platform/efl/fast/forms/select-list-box-with-height-expected.txt:
* platform/efl/fast/forms/select-selected-expected.txt:
* platform/efl/fast/forms/select-size-expected.txt:
* platform/efl/fast/forms/select-style-expected.txt:
* platform/efl/fast/forms/select-visual-hebrew-expected.txt:
* platform/efl/fast/forms/select-writing-direction-natural-expected.txt:
* platform/efl/fast/forms/selectlist-minsize-expected.txt:
* platform/efl/fast/forms/stuff-on-my-optgroup-expected.txt:
* platform/efl/fast/forms/tabbing-input-iframe-expected.txt:
* platform/efl/fast/forms/targeted-frame-submission-expected.txt:
* platform/efl/fast/forms/text-style-color-expected.txt:
* platform/efl/fast/forms/textAreaLineHeight-expected.txt:
* platform/efl/fast/forms/textarea-align-expected.txt:
* platform/efl/fast/forms/textarea-scroll-height-expected.txt:
* platform/efl/fast/forms/textarea-scrolled-type-expected.txt:
* platform/efl/fast/forms/textarea-setinnerhtml-expected.txt:
* platform/efl/fast/forms/textarea-width-expected.txt:
* platform/efl/fast/forms/textfield-focus-ring-expected.txt:
* platform/efl/fast/forms/textfield-outline-expected.txt:
* platform/efl/fast/forms/textfield-overflow-by-value-update-expected.txt:
* platform/efl/fast/forms/visual-hebrew-text-field-expected.txt:
* platform/efl/fast/frames/001-expected.txt:
* platform/efl/fast/frames/flattening/frameset-flattening-subframe-resize-expected.txt:
* platform/efl/fast/frames/flattening/iframe-flattening-fixed-width-and-height-no-scrolling-expected.txt:
* platform/efl/fast/frames/flattening/iframe-flattening-nested-expected.txt:
* platform/efl/fast/frames/frame-navigation-expected.txt:
* platform/efl/fast/frames/frame-scrolling-attribute-expected.txt:
* platform/efl/fast/frames/frameElement-frame-expected.txt:
* platform/efl/fast/frames/frameElement-iframe-expected.txt:
* platform/efl/fast/frames/frameset-style-recalc-expected.txt:
* platform/efl/fast/frames/iframe-option-crash-expected.txt:
* platform/efl/fast/frames/iframe-scrolling-attribute-expected.txt:
* platform/efl/fast/frames/iframe-with-frameborder-expected.txt:
* platform/efl/fast/frames/inline-object-inside-frameset-expected.txt:
* platform/efl/fast/frames/onlyCommentInIFrame-expected.txt:
* platform/efl/fast/frames/take-focus-from-iframe-expected.txt:
* platform/efl/fast/frames/viewsource-attribute-expected.txt:
* platform/efl/fast/frames/viewsource-on-image-file-expected.txt:
* platform/efl/fast/gradients/list-item-gradient-expected.txt:
* platform/efl/fast/html/keygen-expected.txt:
* platform/efl/fast/html/link-rel-stylesheet-expected.txt:
* platform/efl/fast/html/listing-expected.txt:
* platform/efl/fast/html/marquee-scroll-expected.txt:
* platform/efl/fast/html/marquee-scrollamount-expected.txt:
* platform/efl/fast/images/animated-gif-with-offsets-expected.txt:
* platform/efl/fast/images/favicon-as-image-expected.txt:
* platform/efl/fast/images/image-map-anchor-children-expected.txt:
* platform/efl/fast/images/imagemap-case-expected.txt:
* platform/efl/fast/images/imagemap-circle-focus-ring-expected.txt:
* platform/efl/fast/images/imagemap-focus-ring-expected.txt:
* platform/efl/fast/images/imagemap-focus-ring-outline-color-expected.txt:
* platform/efl/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.txt:
* platform/efl/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.txt:
* platform/efl/fast/images/imagemap-focus-ring-zero-outline-width-expected.txt:
* platform/efl/fast/images/imagemap-polygon-focus-ring-expected.txt:
* platform/efl/fast/images/pixel-crack-image-background-webkit-transform-scale-expected.txt:
* platform/efl/fast/inline-block/001-expected.txt:
* platform/efl/fast/inline-block/002-expected.txt:
* platform/efl/fast/inline-block/003-expected.txt:
* platform/efl/fast/inline-block/006-expected.txt:
* platform/efl/fast/inline-block/14498-positionForCoordinates-expected.txt:
* platform/efl/fast/inline-block/inline-block-vertical-align-expected.txt:
* platform/efl/fast/inline-block/overflow-clip-expected.txt:
* platform/efl/fast/inline-block/tricky-baseline-expected.txt:
* platform/efl/fast/inline/001-expected.txt:
* platform/efl/fast/inline/25277-2-expected.txt:
* platform/efl/fast/inline/25277-expected.txt:
* platform/efl/fast/inline/br-text-decoration-expected.txt:
* platform/efl/fast/inline/continuation-outlines-expected.txt:
* platform/efl/fast/inline/continuation-outlines-with-layers-2-expected.txt:
* platform/efl/fast/inline/continuation-outlines-with-layers-expected.txt:
* platform/efl/fast/inline/drawStyledEmptyInlines-expected.txt:
* platform/efl/fast/inline/drawStyledEmptyInlinesWithWS-expected.txt:
* platform/efl/fast/inline/emptyInlinesWithinLists-expected.txt:
* platform/efl/fast/inline/inline-borders-with-bidi-override-expected.txt:
* platform/efl/fast/inline/inline-continuation-borders-expected.txt:
* platform/efl/fast/inline/inline-focus-ring-expected.txt:
* platform/efl/fast/inline/inline-padding-disables-text-quirk-expected.txt:
* platform/efl/fast/inline/inline-text-quirk-bpm-expected.txt:
* platform/efl/fast/inline/inline-wrap-with-parent-padding-expected.txt:
* platform/efl/fast/inline/positioned-object-between-replaced-elements-expected.txt:
* platform/efl/fast/inline/styledEmptyInlinesWithBRs-expected.txt:
* platform/efl/fast/inline/vertical-align-text-bottom-expected.txt:
* platform/efl/fast/innerHTML/001-expected.txt:
* platform/efl/fast/innerHTML/002-expected.txt:
* platform/efl/fast/innerHTML/003-expected.txt:
* platform/efl/fast/innerHTML/006-expected.txt:
* platform/efl/fast/inspector-support/matchedrules-expected.txt:
* platform/efl/fast/invalid/001-expected.txt:
* platform/efl/fast/invalid/002-expected.txt:
* platform/efl/fast/invalid/003-expected.txt:
* platform/efl/fast/invalid/005-expected.txt:
* platform/efl/fast/invalid/007-expected.txt:
* platform/efl/fast/invalid/008-expected.txt:
* platform/efl/fast/invalid/012-expected.txt:
* platform/efl/fast/invalid/014-expected.txt:
* platform/efl/fast/invalid/016-expected.txt:
* platform/efl/fast/invalid/017-expected.txt:
* platform/efl/fast/invalid/018-expected.txt:
* platform/efl/fast/invalid/019-expected.txt:
* platform/efl/fast/invalid/020-expected.txt:
* platform/efl/fast/invalid/021-expected.txt:
* platform/efl/fast/invalid/missing-address-end-tag-expected.txt:
* platform/efl/fast/invalid/missing-dl-end-tag-expected.txt:
* platform/efl/fast/invalid/missing-dt-end-tag-expected.txt:
* platform/efl/fast/invalid/missing-end-tag-expected.txt:
* platform/efl/fast/invalid/missing-font-end-tag-expected.txt:
* platform/efl/fast/invalid/table-inside-stray-table-content-expected.txt:
* platform/efl/fast/invalid/td-inside-object-expected.txt:
* platform/efl/fast/layers/inline-dirty-z-order-lists-expected.txt:
* platform/efl/fast/layers/layer-visibility-expected.txt:
* platform/efl/fast/layers/layer-visibility-sublayer-expected.txt:
* platform/efl/fast/layers/normal-flow-hit-test-expected.txt:
* platform/efl/fast/layers/opacity-outline-expected.txt:
* platform/efl/fast/layers/opacity-transforms-expected.txt:
* platform/efl/fast/layers/overflow-scroll-auto-switch-expected.txt:
* platform/efl/fast/layers/remove-layer-with-nested-stacking-expected.txt:
* platform/efl/fast/layers/remove-only-this-layer-update-expected.txt:
* platform/efl/fast/layers/scroll-rect-to-visible-expected.txt:
* platform/efl/fast/layers/video-layer-expected.txt:
* platform/efl/fast/layers/zindex-inherit-expected.txt:
* platform/efl/fast/lists/001-expected.txt:
* platform/efl/fast/lists/001-vertical-expected.txt:
* platform/efl/fast/lists/002-expected.txt:
* platform/efl/fast/lists/002-vertical-expected.txt:
* platform/efl/fast/lists/003-expected.txt:
* platform/efl/fast/lists/003-vertical-expected.txt:
* platform/efl/fast/lists/004-expected.txt:
* platform/efl/fast/lists/005-expected.txt:
* platform/efl/fast/lists/005-vertical-expected.txt:
* platform/efl/fast/lists/006-expected.txt:
* platform/efl/fast/lists/006-vertical-expected.txt:
* platform/efl/fast/lists/007-expected.txt:
* platform/efl/fast/lists/007-vertical-expected.txt:
* platform/efl/fast/lists/008-expected.txt:
* platform/efl/fast/lists/008-vertical-expected.txt:
* platform/efl/fast/lists/009-expected.txt:
* platform/efl/fast/lists/009-vertical-expected.txt:
* platform/efl/fast/lists/anonymous-items-expected.txt:
* platform/efl/fast/lists/big-list-marker-expected.txt:
* platform/efl/fast/lists/dynamic-marker-crash-expected.txt:
* platform/efl/fast/lists/inlineBoxWrapperNullCheck-expected.txt:
* platform/efl/fast/lists/li-br-expected.txt:
* platform/efl/fast/lists/li-style-alpha-huge-value-crash-expected.txt:
* platform/efl/fast/lists/list-item-line-height-expected.txt:
* platform/efl/fast/lists/list-style-none-crash-expected.txt:
* platform/efl/fast/lists/marker-before-empty-inline-expected.txt:
* platform/efl/fast/lists/marker-image-error-expected.txt:
* platform/efl/fast/lists/markers-in-selection-expected.txt:
* platform/efl/fast/lists/numeric-markers-outside-list-expected.txt:
* platform/efl/fast/lists/ol-display-types-expected.txt:
* platform/efl/fast/lists/ol-start-dynamic-expected.txt:
* platform/efl/fast/lists/ol-start-parsing-expected.txt:
* platform/efl/fast/lists/olstart-expected.txt:
* platform/efl/fast/lists/ordered-list-with-no-ol-tag-expected.txt:
* platform/efl/fast/lists/scrolled-marker-paint-expected.txt:
* platform/efl/fast/media/media-descriptor-syntax-01-expected.txt:
* platform/efl/fast/media/media-descriptor-syntax-02-expected.txt:
* platform/efl/fast/media/media-descriptor-syntax-03-expected.txt:
* platform/efl/fast/media/media-descriptor-syntax-04-expected.txt:
* platform/efl/fast/media/media-descriptor-syntax-05-expected.txt:
* platform/efl/fast/media/media-descriptor-syntax-06-expected.txt:
* platform/efl/fast/media/media-type-syntax-01-expected.txt:
* platform/efl/fast/media/media-type-syntax-02-expected.txt:
* platform/efl/fast/media/mq-animation-expected.txt:
* platform/efl/fast/media/mq-aspect-ratio-expected.txt:
* platform/efl/fast/media/mq-compound-query-01-expected.txt:
* platform/efl/fast/media/mq-compound-query-02-expected.txt:
* platform/efl/fast/media/mq-compound-query-03-expected.txt:
* platform/efl/fast/media/mq-compound-query-04-expected.txt:
* platform/efl/fast/media/mq-compound-query-05-expected.txt:
* platform/efl/fast/media/mq-grid-01-expected.txt:
* platform/efl/fast/media/mq-grid-02-expected.txt:
* platform/efl/fast/media/mq-invalid-media-feature-01-expected.txt:
* platform/efl/fast/media/mq-invalid-media-feature-02-expected.txt:
* platform/efl/fast/media/mq-invalid-media-feature-03-expected.txt:
* platform/efl/fast/media/mq-invalid-media-feature-04-expected.txt:
* platform/efl/fast/media/mq-invalid-syntax-01-expected.txt:
* platform/efl/fast/media/mq-invalid-syntax-02-expected.txt:
* platform/efl/fast/media/mq-invalid-syntax-03-expected.txt:
* platform/efl/fast/media/mq-invalid-syntax-04-expected.txt:
* platform/efl/fast/media/mq-invalid-syntax-05-expected.txt:
* platform/efl/fast/media/mq-js-media-except-01-expected.txt:
* platform/efl/fast/media/mq-js-media-except-02-expected.txt:
* platform/efl/fast/media/mq-js-media-except-03-expected.txt:
* platform/efl/fast/media/mq-js-media-forward-syntax-expected.txt:
* platform/efl/fast/media/mq-js-stylesheet-media-01-expected.txt:
* platform/efl/fast/media/mq-js-stylesheet-media-02-expected.txt:
* platform/efl/fast/media/mq-js-stylesheet-media-03-expected.txt:
* platform/efl/fast/media/mq-js-stylesheet-media-04-expected.txt:
* platform/efl/fast/media/mq-max-pixel-ratio-expected.txt:
* platform/efl/fast/media/mq-min-constraint-expected.txt:
* platform/efl/fast/media/mq-orientation-expected.txt:
* platform/efl/fast/media/mq-pixel-ratio-expected.txt:
* platform/efl/fast/media/mq-relative-constraints-02-expected.txt:
* platform/efl/fast/media/mq-relative-constraints-03-expected.txt:
* platform/efl/fast/media/mq-relative-constraints-04-expected.txt:
* platform/efl/fast/media/mq-relative-constraints-05-expected.txt:
* platform/efl/fast/media/mq-relative-constraints-06-expected.txt:
* platform/efl/fast/media/mq-relative-constraints-07-expected.txt:
* platform/efl/fast/media/mq-relative-constraints-08-expected.txt:
* platform/efl/fast/media/mq-relative-constraints-09-expected.txt:
* platform/efl/fast/media/mq-simple-neg-query-01-expected.txt:
* platform/efl/fast/media/mq-simple-neg-query-02-expected.txt:
* platform/efl/fast/media/mq-simple-neg-query-03-expected.txt:
* platform/efl/fast/media/mq-simple-neg-query-04-expected.txt:
* platform/efl/fast/media/mq-simple-neg-query-05-expected.txt:
* platform/efl/fast/media/mq-simple-query-01-expected.txt:
* platform/efl/fast/media/mq-simple-query-02-expected.txt:
* platform/efl/fast/media/mq-simple-query-03-expected.txt:
* platform/efl/fast/media/mq-simple-query-04-expected.txt:
* platform/efl/fast/media/mq-simple-query-05-expected.txt:
* platform/efl/fast/media/mq-transform-01-expected.txt:
* platform/efl/fast/media/mq-transform-02-expected.txt:
* platform/efl/fast/media/mq-transform-03-expected.txt:
* platform/efl/fast/media/mq-transform-04-expected.txt:
* platform/efl/fast/media/mq-transition-expected.txt:
* platform/efl/fast/media/mq-valueless-expected.txt:
* platform/efl/fast/media/mq-width-absolute-01-expected.txt:
* platform/efl/fast/media/mq-width-absolute-02-expected.txt:
* platform/efl/fast/media/mq-width-absolute-03-expected.txt:
* platform/efl/fast/media/mq-width-absolute-04-expected.txt:
* platform/efl/fast/media/viewport-media-query-expected.txt:
* platform/efl/fast/multicol/column-break-with-balancing-expected.txt:
* platform/efl/fast/multicol/column-count-with-rules-expected.txt:
* platform/efl/fast/multicol/column-rules-expected.txt:
* platform/efl/fast/multicol/column-rules-stacking-expected.txt:
* platform/efl/fast/multicol/columns-shorthand-parsing-expected.txt:
* platform/efl/fast/multicol/float-avoidance-expected.txt:
* platform/efl/fast/multicol/float-multicol-expected.txt:
* platform/efl/fast/multicol/float-paginate-empty-lines-expected.txt:
* platform/efl/fast/multicol/float-paginate-expected.txt:
* platform/efl/fast/multicol/layers-in-multicol-expected.txt:
* platform/efl/fast/multicol/layers-split-across-columns-expected.txt:
* platform/efl/fast/multicol/margin-collapse-expected.txt:
* platform/efl/fast/multicol/max-height-columns-block-expected.txt:
* platform/efl/fast/multicol/paginate-block-replaced-expected.txt:
* platform/efl/fast/multicol/positioned-split-expected.txt:
* platform/efl/fast/multicol/positioned-with-constrained-height-expected.txt:
* platform/efl/fast/multicol/scrolling-overflow-expected.txt:
* platform/efl/fast/multicol/shadow-breaking-expected.txt:
* platform/efl/fast/multicol/span/anonymous-before-child-parent-crash-expected.txt:
* platform/efl/fast/multicol/span/anonymous-split-block-crash-expected.txt:
* platform/efl/fast/multicol/span/clone-anonymous-block-non-inline-child-crash-expected.txt:
* platform/efl/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.txt:
* platform/efl/fast/multicol/span/span-as-immediate-child-generated-content-expected.txt:
* platform/efl/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.txt:
* platform/efl/fast/multicol/span/span-as-immediate-columns-child-expected.txt:
* platform/efl/fast/multicol/span/span-as-nested-columns-child-dynamic-expected.txt:
* platform/efl/fast/multicol/span/span-as-nested-columns-child-expected.txt:
* platform/efl/fast/multicol/span/span-as-nested-inline-block-child-expected.txt:
* platform/efl/fast/multicol/span/span-margin-collapsing-expected.txt:
* platform/efl/fast/multicol/table-margin-collapse-expected.txt:
* platform/efl/fast/multicol/unsplittable-inline-block-expected.txt:
* platform/efl/fast/multicol/vertical-lr/column-break-with-balancing-expected.txt:
* platform/efl/fast/multicol/vertical-lr/column-count-with-rules-expected.txt:
* platform/efl/fast/multicol/vertical-lr/column-rules-expected.txt:
* platform/efl/fast/multicol/vertical-lr/float-avoidance-expected.txt:
* platform/efl/fast/multicol/vertical-lr/float-multicol-expected.txt:
* platform/efl/fast/multicol/vertical-lr/float-paginate-expected.txt:
* platform/efl/fast/multicol/vertical-lr/unsplittable-inline-block-expected.txt:
* platform/efl/fast/multicol/vertical-rl/column-break-with-balancing-expected.txt:
* platform/efl/fast/multicol/vertical-rl/column-count-with-rules-expected.txt:
* platform/efl/fast/multicol/vertical-rl/column-rules-expected.txt:
* platform/efl/fast/multicol/vertical-rl/float-avoidance-expected.txt:
* platform/efl/fast/multicol/vertical-rl/float-multicol-expected.txt:
* platform/efl/fast/multicol/vertical-rl/float-paginate-expected.txt:
* platform/efl/fast/multicol/vertical-rl/unsplittable-inline-block-expected.txt:
* platform/efl/fast/overflow/001-expected.txt:
* platform/efl/fast/overflow/002-expected.txt:
* platform/efl/fast/overflow/003-expected.txt:
* platform/efl/fast/overflow/004-expected.txt:
* platform/efl/fast/overflow/006-expected.txt:
* platform/efl/fast/overflow/007-expected.txt:
* platform/efl/fast/overflow/008-expected.txt:
* platform/efl/fast/overflow/border-radius-clipping-expected.txt:
* platform/efl/fast/overflow/childFocusRingClip-expected.txt:
* platform/efl/fast/overflow/clip-rects-fixed-ancestor-expected.txt:
* platform/efl/fast/overflow/dynamic-hidden-expected.txt:
* platform/efl/fast/overflow/float-in-relpositioned-expected.txt:
* platform/efl/fast/overflow/hidden-scrollbar-resize-expected.txt:
* platform/efl/fast/overflow/hit-test-overflow-controls-expected.txt:
* platform/efl/fast/overflow/image-selection-highlight-expected.txt:
* platform/efl/fast/overflow/line-clamp-expected.txt:
* platform/efl/fast/overflow/overflow-auto-table-expected.txt:
* platform/efl/fast/overflow/overflow-focus-ring-expected.txt:
* platform/efl/fast/overflow/overflow-rtl-expected.txt:
* platform/efl/fast/overflow/overflow-rtl-inline-scrollbar-expected.txt:
* platform/efl/fast/overflow/overflow-rtl-vertical-expected.txt:
* platform/efl/fast/overflow/overflow-text-hit-testing-expected.txt:
* platform/efl/fast/overflow/overflow-with-local-background-attachment-expected.txt:
* platform/efl/fast/overflow/overflow-x-y-expected.txt:
* platform/efl/fast/overflow/overflow_hidden-expected.txt:
* platform/efl/fast/overflow/position-fixed-transform-clipping-expected.txt:
* platform/efl/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.txt:
* platform/efl/fast/overflow/scrollRevealButton-expected.txt:
* platform/efl/fast/overflow/scrollbar-position-update-expected.txt:
* platform/efl/fast/overflow/table-overflow-float-expected.txt:
* platform/efl/fast/overflow/unreachable-overflow-rtl-bug-expected.txt:
* platform/efl/fast/parser/001-expected.txt:
* platform/efl/fast/parser/broken-comments-vs-parsing-mode-expected.txt:
* platform/efl/fast/parser/document-write-option-expected.txt:
* platform/efl/fast/parser/entity-comment-in-textarea-expected.txt:
* platform/efl/fast/parser/fonts-expected.txt:
* platform/efl/fast/parser/nofoo-tags-inside-paragraph-expected.txt:
* platform/efl/fast/parser/open-comment-in-textarea-expected.txt:
* platform/efl/fast/parser/title-error-test-expected.txt:
* platform/efl/fast/parser/xhtml-alternate-entities-expected.txt:
* platform/efl/fast/reflections/abs-position-in-reflection-expected.txt:
* platform/efl/fast/reflections/inline-crash-expected.txt:
* platform/efl/fast/reflections/opacity-reflection-transform-expected.txt:
* platform/efl/fast/reflections/reflection-direction-expected.txt:
* platform/efl/fast/reflections/reflection-nesting-expected.txt:
* platform/efl/fast/reflections/reflection-overflow-hidden-expected.txt:
* platform/efl/fast/regions/bottom-overflow-out-of-first-region-expected.txt:
* platform/efl/fast/regions/float-pushed-width-change-expected.txt:
* platform/efl/fast/regions/floats-basic-in-variable-width-regions-expected.txt:
* platform/efl/fast/regions/flow-content-basic-vertical-expected.txt:
* platform/efl/fast/regions/flow-content-basic-vertical-rl-expected.txt:
* platform/efl/fast/regions/multiple-directionality-changes-in-variable-width-regions-expected.txt:
* platform/efl/fast/regions/overflow-in-uniform-regions-dynamic-expected.txt:
* platform/efl/fast/regions/overflow-moving-below-floats-in-variable-width-regions-expected.txt:
* platform/efl/fast/regions/overflow-not-moving-below-floats-in-variable-width-regions-expected.txt:
* platform/efl/fast/regions/overflow-size-change-with-stacking-context-rtl-expected.txt:
* platform/efl/fast/regions/percentage-margins-mixed-ltr-dominant-regions-expected.txt:
* platform/efl/fast/regions/percentage-margins-mixed-rtl-dominant-regions-expected.txt:
* platform/efl/fast/regions/percentage-margins-rtl-variable-width-regions-expected.txt:
* platform/efl/fast/regions/percentage-margins-variable-width-regions-expected.txt:
* platform/efl/fast/regions/position-writing-modes-in-variable-width-regions-expected.txt:
* platform/efl/fast/regions/positioned-objects-in-regions-expected.txt:
* platform/efl/fast/regions/positioned-objects-in-rtl-regions-expected.txt:
* platform/efl/fast/regions/positioned-objects-inline-static-in-regions-expected.txt:
* platform/efl/fast/regions/positioned-objects-inline-static-in-rtl-regions-expected.txt:
* platform/efl/fast/regions/positioned-objects-inline-static-spanning-regions-expected.txt:
* platform/efl/fast/regions/positioned-objects-inline-static-spanning-regions-rtl-expected.txt:
* platform/efl/fast/regions/positioned-objects-perpendicular-flows-in-regions-expected.txt:
* platform/efl/fast/regions/positioned-objects-spanning-regions-expected.txt:
* platform/efl/fast/regions/text-region-split-small-pagination-expected.txt:
* platform/efl/fast/regions/top-overflow-out-of-second-region-expected.txt:
* platform/efl/fast/regions/webkit-flow-double-pagination-float-push-expected.txt:
* platform/efl/fast/regions/webkit-flow-float-pushed-to-last-region-expected.txt:
* platform/efl/fast/regions/webkit-flow-float-unable-to-push-expected.txt:
* platform/efl/fast/regions/webkit-flow-floats-inside-regions-bounds-expected.txt:
* platform/efl/fast/regions/webkit-flow-inlines-inside-regions-bounds-expected.txt:
* platform/efl/fast/regions/webkit-flow-inlines-inside-regions-bounds-vertical-expected.txt:
* platform/efl/fast/regions/webkit-flow-inlines-inside-regions-bounds-vertical-rl-expected.txt:
* platform/efl/fast/repaint/backgroundSizeRepaint-expected.txt:
* platform/efl/fast/repaint/block-layout-inline-children-float-positioned-expected.txt:
* platform/efl/fast/repaint/block-no-inflow-children-expected.txt:
* platform/efl/fast/repaint/block-selection-gap-in-composited-layer-expected.txt:
* platform/efl/fast/repaint/block-selection-gap-in-table-cell-expected.txt:
* platform/efl/fast/repaint/block-selection-gap-stale-cache-2-expected.txt:
* platform/efl/fast/repaint/block-selection-gap-stale-cache-expected.txt:
* platform/efl/fast/repaint/body-background-image-expected.txt:
* platform/efl/fast/repaint/border-fit-lines-expected.txt:
* platform/efl/fast/repaint/border-radius-repaint-expected.txt:
* platform/efl/fast/repaint/border-repaint-glitch-expected.txt:
* platform/efl/fast/repaint/box-shadow-dynamic-expected.txt:
* platform/efl/fast/repaint/box-shadow-h-expected.txt:
* platform/efl/fast/repaint/box-shadow-v-expected.txt:
* platform/efl/fast/repaint/bugzilla-3509-expected.txt:
* platform/efl/fast/repaint/bugzilla-5699-expected.txt:
* platform/efl/fast/repaint/bugzilla-6278-expected.txt:
* platform/efl/fast/repaint/bugzilla-6388-expected.txt:
* platform/efl/fast/repaint/bugzilla-6473-expected.txt:
* platform/efl/fast/repaint/bugzilla-7235-expected.txt:
* platform/efl/fast/repaint/button-spurious-layout-hint-expected.txt:
* platform/efl/fast/repaint/caret-outside-block-expected.txt:
* platform/efl/fast/repaint/change-transform-expected.txt:
* platform/efl/fast/repaint/clipped-relative-expected.txt:
* platform/efl/fast/repaint/containing-block-position-change-expected.txt:
* platform/efl/fast/repaint/continuation-after-outline-expected.txt:
* platform/efl/fast/repaint/control-clip-expected.txt:
* platform/efl/fast/repaint/create-layer-repaint-expected.txt:
* platform/efl/fast/repaint/dynamic-table-vertical-alignment-change-expected.txt:
* platform/efl/fast/repaint/fixed-child-move-after-scroll-expected.txt:
* platform/efl/fast/repaint/fixed-child-of-fixed-move-after-scroll-expected.txt:
* platform/efl/fast/repaint/fixed-child-of-transformed-move-after-scroll-expected.txt:
* platform/efl/fast/repaint/fixed-expected.txt:
* platform/efl/fast/repaint/fixed-move-after-keyboard-scroll-expected.txt:
* platform/efl/fast/repaint/fixed-move-after-scroll-expected.txt:
* platform/efl/fast/repaint/flexible-box-overflow-expected.txt:
* platform/efl/fast/repaint/flexible-box-overflow-horizontal-expected.txt:
* platform/efl/fast/repaint/float-move-during-layout-expected.txt:
* platform/efl/fast/repaint/float-overflow-expected.txt:
* platform/efl/fast/repaint/float-overflow-right-expected.txt:
* platform/efl/fast/repaint/focus-layers-expected.txt:
* platform/efl/fast/repaint/gradients-em-stops-repaint-expected.txt:
* platform/efl/fast/repaint/iframe-scroll-repaint-expected.txt:
* platform/efl/fast/repaint/inline-block-overflow-expected.txt:
* platform/efl/fast/repaint/inline-color-change-expected.txt:
* platform/efl/fast/repaint/layer-child-outline-expected.txt:
* platform/efl/fast/repaint/layer-outline-expected.txt:
* platform/efl/fast/repaint/layer-outline-horizontal-expected.txt:
* platform/efl/fast/repaint/layout-state-relative-expected.txt:
* platform/efl/fast/repaint/layout-state-scrolloffset-expected.txt:
* platform/efl/fast/repaint/layout-state-scrolloffset2-expected.txt:
* platform/efl/fast/repaint/layout-state-scrolloffset3-expected.txt:
* platform/efl/fast/repaint/line-flow-with-floats-1-expected.txt:
* platform/efl/fast/repaint/line-flow-with-floats-10-expected.txt:
* platform/efl/fast/repaint/line-flow-with-floats-2-expected.txt:
* platform/efl/fast/repaint/line-flow-with-floats-3-expected.txt:
* platform/efl/fast/repaint/line-flow-with-floats-4-expected.txt:
* platform/efl/fast/repaint/line-flow-with-floats-5-expected.txt:
* platform/efl/fast/repaint/line-flow-with-floats-6-expected.txt:
* platform/efl/fast/repaint/line-flow-with-floats-7-expected.txt:
* platform/efl/fast/repaint/line-flow-with-floats-8-expected.txt:
* platform/efl/fast/repaint/line-flow-with-floats-9-expected.txt:
* platform/efl/fast/repaint/line-flow-with-floats-in-regions-expected.txt:
* platform/efl/fast/repaint/line-overflow-expected.txt:
* platform/efl/fast/repaint/lines-with-layout-delta-expected.txt:
* platform/efl/fast/repaint/list-marker-2-expected.txt:
* platform/efl/fast/repaint/list-marker-expected.txt:
* platform/efl/fast/repaint/make-children-non-inline-expected.txt:
* platform/efl/fast/repaint/opacity-change-on-overflow-float-expected.txt:
* platform/efl/fast/repaint/outline-child-repaint-expected.txt:
* platform/efl/fast/repaint/outline-inset-expected.txt:
* platform/efl/fast/repaint/outline-repaint-glitch-expected.txt:
* platform/efl/fast/repaint/outline-shrinking-expected.txt:
* platform/efl/fast/repaint/overflow-delete-line-expected.txt:
* platform/efl/fast/repaint/overflow-outline-repaint-expected.txt:
* platform/efl/fast/repaint/overflow-scroll-body-appear-expected.txt:
* platform/efl/fast/repaint/overflow-scroll-delete-expected.txt:
* platform/efl/fast/repaint/positioned-document-element-expected.txt:
* platform/efl/fast/repaint/reflection-redraw-expected.txt:
* platform/efl/fast/repaint/rel-positioned-inline-with-overflow-expected.txt:
* platform/efl/fast/repaint/renderer-destruction-by-invalidateSelection-crash-expected.txt:
* platform/efl/fast/repaint/repaint-resized-overflow-expected.txt:
* platform/efl/fast/repaint/scale-page-shrink-expected.txt:
* platform/efl/fast/repaint/search-field-cancel-expected.txt:
* platform/efl/fast/repaint/select-option-background-color-expected.txt:
* platform/efl/fast/repaint/selected-replaced-expected.txt:
* platform/efl/fast/repaint/selection-after-remove-expected.txt:
* platform/efl/fast/repaint/selection-gap-overflow-scroll-2-expected.txt:
* platform/efl/fast/repaint/selection-gap-overflow-scroll-expected.txt:
* platform/efl/fast/repaint/selection-rl-expected.txt:
* platform/efl/fast/repaint/stacked-diacritics-expected.txt:
* platform/efl/fast/repaint/static-to-positioned-expected.txt:
* platform/efl/fast/repaint/subtree-layoutstate-transform-expected.txt:
* platform/efl/fast/repaint/subtree-root-skipped-expected.txt:
* platform/efl/fast/repaint/table-cell-collapsed-border-expected.txt:
* platform/efl/fast/repaint/table-cell-move-expected.txt:
* platform/efl/fast/repaint/table-collapsed-border-expected.txt:
* platform/efl/fast/repaint/table-extra-bottom-grow-expected.txt:
* platform/efl/fast/repaint/text-append-dirty-lines-expected.txt:
* platform/efl/fast/repaint/text-emphasis-v-expected.txt:
* platform/efl/fast/repaint/text-selection-rect-in-overflow-2-expected.txt:
* platform/efl/fast/repaint/text-selection-rect-in-overflow-expected.txt:
* platform/efl/fast/repaint/text-shadow-expected.txt:
* platform/efl/fast/repaint/text-shadow-horizontal-expected.txt:
* platform/efl/fast/repaint/transform-absolute-in-positioned-container-expected.txt:
* platform/efl/fast/repaint/transform-relative-position-expected.txt:
* platform/efl/fast/repaint/transform-repaint-descendants-expected.txt:
* platform/efl/fast/replaced/001-expected.txt:
* platform/efl/fast/replaced/002-expected.txt:
* platform/efl/fast/replaced/003-expected.txt:
* platform/efl/fast/replaced/004-expected.txt:
* platform/efl/fast/replaced/005-expected.txt:
* platform/efl/fast/replaced/006-expected.txt:
* platform/efl/fast/replaced/007-expected.txt:
* platform/efl/fast/replaced/absolute-image-sizing-expected.txt:
* platform/efl/fast/replaced/absolute-position-percentage-height-expected.txt:
* platform/efl/fast/replaced/absolute-position-percentage-width-expected.txt:
* platform/efl/fast/replaced/absolute-position-with-auto-height-and-top-and-bottom-expected.txt:
* platform/efl/fast/replaced/absolute-position-with-auto-width-and-left-and-right-expected.txt:
* platform/efl/fast/replaced/applet-disabled-positioned-expected.txt:
* platform/efl/fast/replaced/applet-display-none-expected.txt:
* platform/efl/fast/replaced/applet-rendering-java-disabled-expected.txt:
* platform/efl/fast/replaced/border-radius-clip-expected.txt:
* platform/efl/fast/replaced/embed-display-none-expected.txt:
* platform/efl/fast/replaced/image-onload-expected.txt:
* platform/efl/fast/replaced/image-resize-width-expected.txt:
* platform/efl/fast/replaced/image-sizing-expected.txt:
* platform/efl/fast/replaced/image-solid-color-with-alpha-expected.txt:
* platform/efl/fast/replaced/inline-box-wrapper-handover-expected.txt:
* platform/efl/fast/replaced/max-width-percent-expected.txt:
* platform/efl/fast/replaced/maxheight-percent-expected.txt:
* platform/efl/fast/replaced/maxheight-pxs-expected.txt:
* platform/efl/fast/replaced/maxwidth-percent-expected.txt:
* platform/efl/fast/replaced/maxwidth-pxs-expected.txt:
* platform/efl/fast/replaced/minheight-percent-expected.txt:
* platform/efl/fast/replaced/minheight-pxs-expected.txt:
* platform/efl/fast/replaced/minwidth-percent-expected.txt:
* platform/efl/fast/replaced/minwidth-pxs-expected.txt:
* platform/efl/fast/replaced/object-align-hspace-vspace-expected.txt:
* platform/efl/fast/replaced/object-display-none-expected.txt:
* platform/efl/fast/replaced/percent-height-in-anonymous-block-in-table-expected.txt:
* platform/efl/fast/replaced/percent-height-in-anonymous-block-widget-expected.txt:
* platform/efl/fast/replaced/replaced-breaking-expected.txt:
* platform/efl/fast/replaced/replaced-breaking-mixture-expected.txt:
* platform/efl/fast/replaced/replaced-child-of-absolute-with-auto-height-expected.txt:
* platform/efl/fast/replaced/selection-rect-in-table-cell-expected.txt:
* platform/efl/fast/replaced/selection-rect-transform-expected.txt:
* platform/efl/fast/replaced/three-selects-break-expected.txt:
* platform/efl/fast/replaced/vertical-lr/absolute-position-percentage-width-expected.txt:
* platform/efl/fast/replaced/vertical-lr/absolute-position-with-auto-height-and-top-and-bottom-expected.txt:
* platform/efl/fast/replaced/vertical-lr/absolute-position-with-auto-width-and-left-and-right-expected.txt:
* platform/efl/fast/replaced/vertical-rl/absolute-position-percentage-width-expected.txt:
* platform/efl/fast/replaced/vertical-rl/absolute-position-with-auto-height-and-top-and-bottom-expected.txt:
* platform/efl/fast/replaced/vertical-rl/absolute-position-with-auto-width-and-left-and-right-expected.txt:
* platform/efl/fast/replaced/width100percent-button-expected.txt:
* platform/efl/fast/replaced/width100percent-checkbox-expected.txt:
* platform/efl/fast/replaced/width100percent-image-expected.txt:
* platform/efl/fast/replaced/width100percent-menulist-expected.txt:
* platform/efl/fast/replaced/width100percent-radio-expected.txt:
* platform/efl/fast/replaced/width100percent-textarea-expected.txt:
* platform/efl/fast/replaced/width100percent-textfield-expected.txt:
* platform/efl/fast/ruby/nested-ruby-expected.txt:
* platform/efl/fast/ruby/ruby-beforeafter-expected.txt:
* platform/efl/fast/ruby/ruby-empty-rt-expected.txt:
* platform/efl/fast/ruby/ruby-inline-table-expected.txt:
* platform/efl/fast/ruby/ruby-length-expected.txt:
* platform/efl/fast/ruby/ruby-run-break-expected.txt:
* platform/efl/fast/ruby/ruby-runs-expected.txt:
* platform/efl/fast/ruby/ruby-runs-spans-expected.txt:
* platform/efl/fast/ruby/ruby-simple-expected.txt:
* platform/efl/fast/ruby/ruby-simple-rp-expected.txt:
* platform/efl/fast/ruby/ruby-trailing-expected.txt:
* platform/efl/fast/ruby/rubyDOM-insert-rt-expected.txt:
* platform/efl/fast/ruby/rubyDOM-insert-text1-expected.txt:
* platform/efl/fast/ruby/rubyDOM-insert-text2-expected.txt:
* platform/efl/fast/ruby/rubyDOM-insert-text3-expected.txt:
* platform/efl/fast/ruby/rubyDOM-remove-rt1-expected.txt:
* platform/efl/fast/ruby/rubyDOM-remove-rt2-expected.txt:
* platform/efl/fast/ruby/rubyDOM-remove-text1-expected.txt:
* platform/efl/fast/ruby/rubyDOM-remove-text2-expected.txt:
* platform/efl/fast/runin/001-expected.txt:
* platform/efl/fast/runin/002-expected.txt:
* platform/efl/fast/runin/generated-expected.txt:
* platform/efl/fast/runin/generated2-expected.txt:
* platform/efl/fast/runin/generated3-expected.txt:
* platform/efl/fast/runin/generated4-expected.txt:
* platform/efl/fast/selectors/001-expected.txt:
* platform/efl/fast/selectors/002-expected.txt:
* platform/efl/fast/selectors/003-expected.txt:
* platform/efl/fast/selectors/004-expected.txt:
* platform/efl/fast/selectors/005-expected.txt:
* platform/efl/fast/selectors/006-expected.txt:
* platform/efl/fast/selectors/007a-expected.txt:
* platform/efl/fast/selectors/007b-expected.txt:
* platform/efl/fast/selectors/008-expected.txt:
* platform/efl/fast/selectors/009-expected.txt:
* platform/efl/fast/selectors/010-expected.txt:
* platform/efl/fast/selectors/011-expected.txt:
* platform/efl/fast/selectors/012-expected.txt:
* platform/efl/fast/selectors/013-expected.txt:
* platform/efl/fast/selectors/014-expected.txt:
* platform/efl/fast/selectors/015-expected.txt:
* platform/efl/fast/selectors/016-expected.txt:
* platform/efl/fast/selectors/017-expected.txt:
* platform/efl/fast/selectors/018-expected.txt:
* platform/efl/fast/selectors/018b-expected.txt:
* platform/efl/fast/selectors/019-expected.txt:
* platform/efl/fast/selectors/020-expected.txt:
* platform/efl/fast/selectors/021-expected.txt:
* platform/efl/fast/selectors/021b-expected.txt:
* platform/efl/fast/selectors/027-expected.txt:
* platform/efl/fast/selectors/032-expected.txt:
* platform/efl/fast/selectors/034-expected.txt:
* platform/efl/fast/selectors/038-expected.txt:
* platform/efl/fast/selectors/040-expected.txt:
* platform/efl/fast/selectors/041-expected.txt:
* platform/efl/fast/selectors/042-expected.txt:
* platform/efl/fast/selectors/043-expected.txt:
* platform/efl/fast/selectors/043b-expected.txt:
* platform/efl/fast/selectors/044-expected.txt:
* platform/efl/fast/selectors/044b-expected.txt:
* platform/efl/fast/selectors/044c-expected.txt:
* platform/efl/fast/selectors/044d-expected.txt:
* platform/efl/fast/selectors/045-expected.txt:
* platform/efl/fast/selectors/045b-expected.txt:
* platform/efl/fast/selectors/045c-expected.txt:
* platform/efl/fast/selectors/046-expected.txt:
* platform/efl/fast/selectors/054-expected.txt:
* platform/efl/fast/selectors/056-expected.txt:
* platform/efl/fast/selectors/058-expected.txt:
* platform/efl/fast/selectors/059-expected.txt:
* platform/efl/fast/selectors/060-expected.txt:
* platform/efl/fast/selectors/061-expected.txt:
* platform/efl/fast/selectors/062-expected.txt:
* platform/efl/fast/selectors/063-expected.txt:
* platform/efl/fast/selectors/064-expected.txt:
* platform/efl/fast/selectors/065-expected.txt:
* platform/efl/fast/selectors/066-expected.txt:
* platform/efl/fast/selectors/066b-expected.txt:
* platform/efl/fast/selectors/072-expected.txt:
* platform/efl/fast/selectors/072b-expected.txt:
* platform/efl/fast/selectors/077-expected.txt:
* platform/efl/fast/selectors/077b-expected.txt:
* platform/efl/fast/selectors/078b-expected.txt:
* platform/efl/fast/selectors/083-expected.txt:
* platform/efl/fast/selectors/087b-expected.txt:
* platform/efl/fast/selectors/088b-expected.txt:
* platform/efl/fast/selectors/089-expected.txt:
* platform/efl/fast/selectors/090b-expected.txt:
* platform/efl/fast/selectors/154-expected.txt:
* platform/efl/fast/selectors/155-expected.txt:
* platform/efl/fast/selectors/155a-expected.txt:
* platform/efl/fast/selectors/155b-expected.txt:
* platform/efl/fast/selectors/155c-expected.txt:
* platform/efl/fast/selectors/155d-expected.txt:
* platform/efl/fast/selectors/156b-expected.txt:
* platform/efl/fast/selectors/157-expected.txt:
* platform/efl/fast/selectors/158-expected.txt:
* platform/efl/fast/selectors/160-expected.txt:
* platform/efl/fast/selectors/166a-expected.txt:
* platform/efl/fast/selectors/167-expected.txt:
* platform/efl/fast/selectors/167a-expected.txt:
* platform/efl/fast/selectors/168-expected.txt:
* platform/efl/fast/selectors/168a-expected.txt:
* platform/efl/fast/selectors/169-expected.txt:
* platform/efl/fast/selectors/169a-expected.txt:
* platform/efl/fast/selectors/170-expected.txt:
* platform/efl/fast/selectors/170a-expected.txt:
* platform/efl/fast/selectors/170b-expected.txt:
* platform/efl/fast/selectors/170c-expected.txt:
* platform/efl/fast/selectors/170d-expected.txt:
* platform/efl/fast/selectors/175a-expected.txt:
* platform/efl/fast/selectors/175b-expected.txt:
* platform/efl/fast/selectors/175c-expected.txt:
* platform/efl/fast/selectors/177b-expected.txt:
* platform/efl/fast/selectors/lang-inheritance-expected.txt:
* platform/efl/fast/selectors/lang-inheritance2-expected.txt:
* platform/efl/fast/selectors/lang-vs-xml-lang-expected.txt:
* platform/efl/fast/selectors/lang-vs-xml-lang-xhtml-expected.txt:
* platform/efl/fast/selectors/nondeterministic-combinators-expected.txt:
* platform/efl/fast/selectors/unqualified-hover-quirks-expected.txt:
* platform/efl/fast/selectors/unqualified-hover-strict-expected.txt:
* platform/efl/fast/selectors/visited-descendant-expected.txt:
* platform/efl/fast/table/001-expected.txt:
* platform/efl/fast/table/002-expected.txt:
* platform/efl/fast/table/003-expected.txt:
* platform/efl/fast/table/004-expected.txt:
* platform/efl/fast/table/005-expected.txt:
* platform/efl/fast/table/006-expected.txt:
* platform/efl/fast/table/007-expected.txt:
* platform/efl/fast/table/009-expected.txt:
* platform/efl/fast/table/010-expected.txt:
* platform/efl/fast/table/011-expected.txt:
* platform/efl/fast/table/012-expected.txt:
* platform/efl/fast/table/013-expected.txt:
* platform/efl/fast/table/014-expected.txt:
* platform/efl/fast/table/015-expected.txt:
* platform/efl/fast/table/016-expected.txt:
* platform/efl/fast/table/017-expected.txt:
* platform/efl/fast/table/018-expected.txt:
* platform/efl/fast/table/020-expected.txt:
* platform/efl/fast/table/021-expected.txt:
* platform/efl/fast/table/023-expected.txt:
* platform/efl/fast/table/025-expected.txt:
* platform/efl/fast/table/026-expected.txt:
* platform/efl/fast/table/028-expected.txt:
* platform/efl/fast/table/028-vertical-expected.txt:
* platform/efl/fast/table/029-expected.txt:
* platform/efl/fast/table/030-expected.txt:
* platform/efl/fast/table/033-expected.txt:
* platform/efl/fast/table/035-expected.txt:
* platform/efl/fast/table/035-vertical-expected.txt:
* platform/efl/fast/table/036-expected.txt:
* platform/efl/fast/table/037-expected.txt:
* platform/efl/fast/table/038-expected.txt:
* platform/efl/fast/table/038-vertical-expected.txt:
* platform/efl/fast/table/039-expected.txt:
* platform/efl/fast/table/041-expected.txt:
* platform/efl/fast/table/100-percent-cell-width-expected.txt:
* platform/efl/fast/table/add-before-anonymous-child-expected.txt:
* platform/efl/fast/table/align-right-within-left-aligned-div-expected.txt:
* platform/efl/fast/table/append-cells-expected.txt:
* platform/efl/fast/table/append-cells2-expected.txt:
* platform/efl/fast/table/auto-with-percent-height-expected.txt:
* platform/efl/fast/table/auto-with-percent-height-vertical-expected.txt:
* platform/efl/fast/table/border-collapsing/001-expected.txt:
* platform/efl/fast/table/border-collapsing/001-vertical-expected.txt:
* platform/efl/fast/table/border-collapsing/002-expected.txt:
* platform/efl/fast/table/border-collapsing/002-vertical-expected.txt:
* platform/efl/fast/table/border-collapsing/003-expected.txt:
* platform/efl/fast/table/border-collapsing/003-vertical-expected.txt:
* platform/efl/fast/table/border-collapsing/border-collapsing-head-foot-expected.txt:
* platform/efl/fast/table/border-collapsing/border-collapsing-head-foot-vertical-expected.txt:
* platform/efl/fast/table/border-collapsing/rtl-border-collapsing-expected.txt:
* platform/efl/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.txt:
* platform/efl/fast/table/cell-absolute-child-expected.txt:
* platform/efl/fast/table/cell-coalescing-expected.txt:
* platform/efl/fast/table/cell-pref-width-invalidation-expected.txt:
* platform/efl/fast/table/cell-width-auto-expected.txt:
* platform/efl/fast/table/cellindex-expected.txt:
* platform/efl/fast/table/colgroup-preceded-by-caption-expected.txt:
* platform/efl/fast/table/colgroup-spanning-groups-rules-expected.txt:
* platform/efl/fast/table/colspanMinWidth-expected.txt:
* platform/efl/fast/table/colspanMinWidth-vertical-expected.txt:
* platform/efl/fast/table/dynamic-caption-add-remove-before-child-expected.txt:
* platform/efl/fast/table/dynamic-cellpadding-expected.txt:
* platform/efl/fast/table/dynamic-descendant-percentage-height-expected.txt:
* platform/efl/fast/table/early-table-layout-expected.txt:
* platform/efl/fast/table/edge-offsets-expected.txt:
* platform/efl/fast/table/empty-cells-expected.txt:
* platform/efl/fast/table/empty-row-crash-expected.txt:
* platform/efl/fast/table/empty-section-crash-expected.txt:
* platform/efl/fast/table/empty-table-percent-height-expected.txt:
* platform/efl/fast/table/fixed-nested-expected.txt:
* platform/efl/fast/table/fixed-table-non-cell-in-row-expected.txt:
* platform/efl/fast/table/fixed-table-with-percent-inside-percent-table-expected.txt:
* platform/efl/fast/table/fixed-table-with-percent-width-inside-auto-table-expected.txt:
* platform/efl/fast/table/fixed-table-with-percent-width-inside-div-expected.txt:
* platform/efl/fast/table/fixed-table-with-percent-width-inside-fixed-width-table-expected.txt:
* platform/efl/fast/table/fixed-table-with-small-percent-width-expected.txt:
* platform/efl/fast/table/floating-th-expected.txt:
* platform/efl/fast/table/floatingTablePaintBackground-expected.txt:
* platform/efl/fast/table/form-with-table-style-expected.txt:
* platform/efl/fast/table/generated-caption-expected.txt:
* platform/efl/fast/table/giantRowspan2-expected.txt:
* platform/efl/fast/table/inline-form-assert-expected.txt:
* platform/efl/fast/table/insert-before-anonymous-ancestors-expected.txt:
* platform/efl/fast/table/insert-cell-before-form-expected.txt:
* platform/efl/fast/table/insert-row-before-form-expected.txt:
* platform/efl/fast/table/invisible-cell-background-expected.txt:
* platform/efl/fast/table/large-width-expected.txt:
* platform/efl/fast/table/multiple-percent-height-rows-expected.txt:
* platform/efl/fast/table/nested-percent-height-table-expected.txt:
* platform/efl/fast/table/nobr-expected.txt:
* platform/efl/fast/table/overflowHidden-expected.txt:
* platform/efl/fast/table/percent-heights-expected.txt:
* platform/efl/fast/table/relative-position-containment-expected.txt:
* platform/efl/fast/table/relative-position-offsets-expected.txt:
* platform/efl/fast/table/relative-position-stacking-expected.txt:
* platform/efl/fast/table/remove-td-display-none-expected.txt:
* platform/efl/fast/table/replaced-percent-height-expected.txt:
* platform/efl/fast/table/row-height-recalc-expected.txt:
* platform/efl/fast/table/rowindex-expected.txt:
* platform/efl/fast/table/rowspan-paint-order-expected.txt:
* platform/efl/fast/table/rowspan-paint-order-vertical-expected.txt:
* platform/efl/fast/table/rtl-cell-display-none-assert-expected.txt:
* platform/efl/fast/table/rules-attr-dynchange1-expected.txt:
* platform/efl/fast/table/rules-attr-dynchange2-expected.txt:
* platform/efl/fast/table/spanOverlapRepaint-expected.txt:
* platform/efl/fast/table/stale-grid-crash-expected.txt:
* platform/efl/fast/table/table-after-child-in-table-expected.txt:
* platform/efl/fast/table/table-and-parts-outline-expected.txt:
* platform/efl/fast/table/table-before-child-in-table-expected.txt:
* platform/efl/fast/table/table-cell-after-child-in-block-expected.txt:
* platform/efl/fast/table/table-cell-after-child-in-table-expected.txt:
* platform/efl/fast/table/table-cell-before-child-in-block-expected.txt:
* platform/efl/fast/table/table-cell-before-child-in-table-expected.txt:
* platform/efl/fast/table/table-continuation-outline-paint-crash-expected.txt:
* platform/efl/fast/table/table-display-types-expected.txt:
* platform/efl/fast/table/table-display-types-strict-expected.txt:
* platform/efl/fast/table/table-display-types-vertical-expected.txt:
* platform/efl/fast/table/table-hspace-align-center-expected.txt:
* platform/efl/fast/table/table-row-after-child-in-block-expected.txt:
* platform/efl/fast/table/table-row-after-child-in-table-expected.txt:
* platform/efl/fast/table/table-row-before-child-in-block-expected.txt:
* platform/efl/fast/table/table-row-before-child-in-table-expected.txt:
* platform/efl/fast/table/tableInsideCaption-expected.txt:
* platform/efl/fast/table/text-field-baseline-expected.txt:
* platform/efl/fast/table/unbreakable-images-quirk-expected.txt:
* platform/efl/fast/table/unused-percent-heights-expected.txt:
* platform/efl/fast/table/vertical-align-baseline-expected.txt:
* platform/efl/fast/text/atsui-kerning-and-ligatures-expected.txt:
* platform/efl/fast/text/atsui-multiple-renderers-expected.txt:
* platform/efl/fast/text/atsui-negative-spacing-features-expected.txt:
* platform/efl/fast/text/atsui-partial-selection-expected.txt:
* platform/efl/fast/text/atsui-pointtooffset-calls-cg-expected.txt:
* platform/efl/fast/text/atsui-rtl-override-selection-expected.txt:
* platform/efl/fast/text/atsui-small-caps-punctuation-size-expected.txt:
* platform/efl/fast/text/atsui-spacing-features-expected.txt:
* platform/efl/fast/text/backslash-to-yen-sign-dynamic-expected.txt:
* platform/efl/fast/text/backslash-to-yen-sign-euc-expected.txt:
* platform/efl/fast/text/backslash-to-yen-sign-expected.txt:
* platform/efl/fast/text/basic/001-expected.txt:
* platform/efl/fast/text/basic/002-expected.txt:
* platform/efl/fast/text/basic/003-expected.txt:
* platform/efl/fast/text/basic/004-expected.txt:
* platform/efl/fast/text/basic/005-expected.txt:
* platform/efl/fast/text/basic/006-expected.txt:
* platform/efl/fast/text/basic/007-expected.txt:
* platform/efl/fast/text/basic/008-expected.txt:
* platform/efl/fast/text/basic/012-expected.txt:
* platform/efl/fast/text/basic/014-expected.txt:
* platform/efl/fast/text/basic/015-expected.txt:
* platform/efl/fast/text/basic/generic-family-changes-expected.txt:
* platform/efl/fast/text/basic/generic-family-reset-expected.txt:
* platform/efl/fast/text/bidi-embedding-pop-and-push-same-expected.txt:
* platform/efl/fast/text/break-word-expected.txt:
* platform/efl/fast/text/capitalize-boundaries-expected.txt:
* platform/efl/fast/text/capitalize-empty-generated-string-expected.txt:
* platform/efl/fast/text/capitalize-preserve-nbsp-expected.txt:
* platform/efl/fast/text/cg-fallback-bolding-expected.txt:
* platform/efl/fast/text/cg-vs-atsui-expected.txt:
* platform/efl/fast/text/complex-preferred-logical-widths-expected.txt:
* platform/efl/fast/text/decorations-transformed-expected.txt:
* platform/efl/fast/text/drawBidiText-expected.txt:
* platform/efl/fast/text/embed-at-end-of-pre-wrap-line-expected.txt:
* platform/efl/fast/text/emphasis-avoid-ruby-expected.txt:
* platform/efl/fast/text/emphasis-overlap-expected.txt:
* platform/efl/fast/text/fake-italic-expected.txt:
* platform/efl/fast/text/font-initial-expected.txt:
* platform/efl/fast/text/hyphenate-limit-before-after-expected.txt:
* platform/efl/fast/text/in-rendered-text-rtl-expected.txt:
* platform/efl/fast/text/international/003-expected.txt:
* platform/efl/fast/text/international/bidi-L2-run-reordering-expected.txt:
* platform/efl/fast/text/international/bidi-european-terminators-expected.txt:
* platform/efl/fast/text/international/bidi-explicit-embedding-expected.txt:
* platform/efl/fast/text/international/bidi-ignored-for-first-child-inline-expected.txt:
* platform/efl/fast/text/international/bidi-innertext-expected.txt:
* platform/efl/fast/text/international/bidi-layout-across-linebreak-expected.txt:
* platform/efl/fast/text/international/bidi-listbox-expected.txt:
* platform/efl/fast/text/international/bidi-neutral-directionality-paragraph-start-expected.txt:
* platform/efl/fast/text/international/bidi-override-expected.txt:
* platform/efl/fast/text/international/rtl-caret-expected.txt:
* platform/efl/fast/text/international/rtl-white-space-pre-wrap-expected.txt:
* platform/efl/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.txt:
* platform/efl/fast/text/justified-selection-at-edge-expected.txt:
* platform/efl/fast/text/justified-selection-expected.txt:
* platform/efl/fast/text/justify-ideograph-leading-expansion-expected.txt:
* platform/efl/fast/text/line-breaks-after-white-space-expected.txt:
* platform/efl/fast/text/line-breaks-expected.txt:
* platform/efl/fast/text/monospace-width-cache-expected.txt:
* platform/efl/fast/text/reset-emptyRun-expected.txt:
* platform/efl/fast/text/selection-hard-linebreak-expected.txt:
* platform/efl/fast/text/shadow-translucent-fill-expected.txt:
* platform/efl/fast/text/should-use-atsui-expected.txt:
* platform/efl/fast/text/soft-hyphen-4-expected.txt:
* platform/efl/fast/text/softHyphen-expected.txt:
* platform/efl/fast/text/text-letter-spacing-expected.txt:
* platform/efl/fast/text/textIteratorNilRenderer-expected.txt:
* platform/efl/fast/text/trailing-white-space-2-expected.txt:
* platform/efl/fast/text/trailing-white-space-expected.txt:
* platform/efl/fast/text/wbr-expected.txt:
* platform/efl/fast/text/wbr-in-pre-crash-expected.txt:
* platform/efl/fast/text/wbr-styled-expected.txt:
* platform/efl/fast/text/whitespace/002-expected.txt:
* platform/efl/fast/text/whitespace/003-expected.txt:
* platform/efl/fast/text/whitespace/004-expected.txt:
* platform/efl/fast/text/whitespace/005-expected.txt:
* platform/efl/fast/text/whitespace/006-expected.txt:
* platform/efl/fast/text/whitespace/007-expected.txt:
* platform/efl/fast/text/whitespace/008-expected.txt:
* platform/efl/fast/text/whitespace/009-expected.txt:
* platform/efl/fast/text/whitespace/010-expected.txt:
* platform/efl/fast/text/whitespace/011-expected.txt:
* platform/efl/fast/text/whitespace/012-expected.txt:
* platform/efl/fast/text/whitespace/013-expected.txt:
* platform/efl/fast/text/whitespace/014-expected.txt:
* platform/efl/fast/text/whitespace/015-expected.txt:
* platform/efl/fast/text/whitespace/016-expected.txt:
* platform/efl/fast/text/whitespace/018-expected.txt:
* platform/efl/fast/text/whitespace/020-expected.txt:
* platform/efl/fast/text/whitespace/021-expected.txt:
* platform/efl/fast/text/whitespace/022-expected.txt:
* platform/efl/fast/text/whitespace/025-expected.txt:
* platform/efl/fast/text/whitespace/026-expected.txt:
* platform/efl/fast/text/whitespace/027-expected.txt:
* platform/efl/fast/text/whitespace/030-expected.txt:
* platform/efl/fast/text/whitespace/nowrap-clear-float-expected.txt:
* platform/efl/fast/text/whitespace/pre-break-word-expected.txt:
* platform/efl/fast/text/whitespace/pre-wrap-last-char-expected.txt:
* platform/efl/fast/text/whitespace/pre-wrap-line-test-expected.txt:
* platform/efl/fast/text/whitespace/pre-wrap-overflow-selection-expected.txt:
* platform/efl/fast/text/whitespace/pre-wrap-spaces-after-newline-expected.txt:
* platform/efl/fast/text/whitespace/span-in-word-space-causes-overflow-expected.txt:
* platform/efl/fast/text/whitespace/tab-character-basics-expected.txt:
* platform/efl/fast/text/wide-zero-width-space-expected.txt:
* platform/efl/fast/text/word-break-expected.txt:
* platform/efl/fast/text/word-break-run-rounding-expected.txt:
* platform/efl/fast/text/word-break-soft-hyphen-expected.txt:
* platform/efl/fast/text/word-space-expected.txt:
* platform/efl/fast/tokenizer/001-expected.txt:
* platform/efl/fast/tokenizer/003-expected.txt:
* platform/efl/fast/transforms/bounding-rect-zoom-expected.txt:
* platform/efl/fast/transforms/diamond-expected.txt:
* platform/efl/fast/transforms/identity-matrix-expected.txt:
* platform/efl/fast/transforms/overflow-with-transform-expected.txt:
* platform/efl/fast/transforms/skew-with-unitless-zero-expected.txt:
* platform/efl/fast/transforms/transform-on-inline-expected.txt:
* platform/efl/fast/transforms/transform-overflow-expected.txt:
* platform/efl/fast/transforms/transform-positioned-ancestor-expected.txt:
* platform/efl/fast/transforms/transform-table-row-expected.txt:
* platform/efl/fast/transforms/transformed-document-element-expected.txt:
* platform/efl/fast/transforms/transformed-focused-text-input-expected.txt:
* platform/efl/fast/transforms/transforms-with-opacity-expected.txt:
* platform/efl/fast/writing-mode/basic-vertical-line-expected.txt:
* platform/efl/fast/writing-mode/english-bt-text-expected.txt:
* platform/efl/fast/writing-mode/english-rl-text-expected.txt:
* platform/efl/fast/writing-mode/fieldsets-expected.txt:
* platform/efl/fast/xsl/document-function-expected.txt:
* platform/efl/fast/xsl/xslt-enc-cyr-expected.txt:
* platform/efl/fast/xsl/xslt-enc-expected.txt:
* platform/efl/fast/xsl/xslt-enc16-expected.txt:
* platform/efl/fast/xsl/xslt-enc16to16-expected.txt:
* platform/efl/fast/xsl/xslt-entity-expected.txt:
* platform/efl/fast/xsl/xslt-extra-content-at-end-expected.txt:
* platform/efl/fast/xsl/xslt-import-depth-expected.txt:
* platform/efl/fast/xsl/xslt-missing-namespace-in-xslt-expected.txt:
* platform/efl/fast/xsl/xslt-relative-path-expected.txt:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@106181 268f45cc-cd09-0410-ab3c-d52691b4dbfc