Timeline



Jun 9, 2013:

11:25 PM Changeset in webkit [151364] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit2

[CoordinatedGraphics] Typo in argument decoder for CoordinatedGraphicsState
https://bugs.webkit.org/show_bug.cgi?id=117384

Patch by Jae Hyun Park <jae.park@company100.net> on 2013-06-09
Reviewed by Noam Rosenthal.

For CSS Shaders, it must decode state.customFiltersToRemove instead of
state.updateAtlasesToRemove.

  • Shared/CoordinatedGraphics/CoordinatedGraphicsArgumentCoders.cpp:

(CoreIPC::::decode):

10:45 PM Changeset in webkit [151363] by ggaren@apple.com
  • 93 edits
    4 adds
    4 deletes in branches/dfgFourthTier

Re-worked non-local variable resolution
https://bugs.webkit.org/show_bug.cgi?id=117375

Reviewed by Filip Pizlo.

Source/JavaScriptCore:

This patch has two goals:

(1) Simplicity.

  • Net removes 15 opcodes.
  • Net removes 2,000 lines of code.
  • Removes setPair() from the DFG: All DFG nodes have 1 result register now.

(2) Performance.

  • 2%-3% speedup on SunSpider (20% in LLInt and Baseline JIT)
  • 2% speedup on v8-spider
  • 10% speedup on js-regress-hashmap*
  • Amusing 2X speedup on js-regress-poly-stricteq

The bytecode now separates the scope chain resolution opcode from the
scope access opcode.

OLD:

get_scoped_var r0, 1, 0
inc r0
put_scoped_var 1, 0, r0

NEW:

resolve_scope r0, x(@id0)
get_from_scope r1, r0, x(@id0)
inc r1
put_to_scope r0, x(@id0), r1

Also, we link non-local variable resolution opcodes at CodeBlock link
time instead of time of first opcode execution.

This means that we can represent all possible non-local variable
resolutions using just three opcodes, and any optimizations in these
opcodes naturally apply across-the-board.

  • API/JSCTestRunnerUtils.cpp:

(JSC::numberOfDFGCompiles):

  • bytecode/CodeBlock.cpp:

(JSC::CodeBlock::dumpBytecode): Updated for removed things.

(JSC::CodeBlock::CodeBlock): Always provide the full scope chain when
creating a CodeBlock, so we can perform non-local variable resolution.

Added code to perform linking for these opcodes. This is where we figure
out which non-local variable resolutions are optimizable, and how.

(JSC::CodeBlock::finalizeUnconditionally):
(JSC::CodeBlock::noticeIncomingCall):
(JSC::CodeBlock::optimizeAfterWarmUp):
(JSC::CodeBlock::optimizeAfterLongWarmUp):
(JSC::CodeBlock::optimizeSoon): Updated for removed things.

  • bytecode/CodeBlock.h:

(JSC::CodeBlock::needsActivation):
(JSC::GlobalCodeBlock::GlobalCodeBlock):
(JSC::ProgramCodeBlock::ProgramCodeBlock):
(JSC::EvalCodeBlock::EvalCodeBlock):
(JSC::FunctionCodeBlock::FunctionCodeBlock):

  • bytecode/EvalCodeCache.h:

(JSC::EvalCodeCache::getSlow): Updated for interface changes.

  • bytecode/GetByIdStatus.cpp:

(JSC::GetByIdStatus::computeFor): Treat global object access as
optimizable even though the global object has a custom property access
callback. This is what we've always done since, otherwise, we can't
optimize globals. (In future, we probably want to figure out a more
targeted policy than "any property access callback means no
optimization".)

  • bytecode/GlobalResolveInfo.h: Removed.
  • bytecode/Instruction.h:
  • bytecode/Opcode.h:

(JSC::padOpcodeName):

  • bytecode/PutByIdStatus.cpp:

(JSC::PutByIdStatus::computeFor): Like GetByIdStatus.

  • bytecode/ResolveGlobalStatus.cpp: Removed.
  • bytecode/ResolveGlobalStatus.h: Removed.
  • bytecode/ResolveOperation.h: Removed.
  • bytecode/UnlinkedCodeBlock.cpp:

(JSC::generateFunctionCodeBlock):
(JSC::UnlinkedFunctionExecutable::codeBlockFor):
(JSC::UnlinkedCodeBlock::UnlinkedCodeBlock):

  • bytecode/UnlinkedCodeBlock.h: Don't provide a scope chain to unlinked

code blocks. Giving a scope to an unscoped compilation unit invites
programming errors.

  • bytecode/Watchpoint.h:

(JSC::WatchpointSet::addressOfIsInvalidated):

  • bytecompiler/BytecodeGenerator.cpp:

(JSC::BytecodeGenerator::BytecodeGenerator):
(JSC::BytecodeGenerator::resolveCallee):
(JSC::BytecodeGenerator::local):
(JSC::BytecodeGenerator::constLocal):
(JSC::BytecodeGenerator::resolveType):
(JSC::BytecodeGenerator::emitResolveScope):
(JSC::BytecodeGenerator::emitGetFromScope):
(JSC::BytecodeGenerator::emitPutToScope):
(JSC::BytecodeGenerator::emitInstanceOf):
(JSC::BytecodeGenerator::emitPushWithScope):
(JSC::BytecodeGenerator::emitPopScope):
(JSC::BytecodeGenerator::pushFinallyContext):
(JSC::BytecodeGenerator::emitComplexPopScopes):
(JSC::BytecodeGenerator::popTryAndEmitCatch):
(JSC::BytecodeGenerator::emitPushNameScope):
(JSC::BytecodeGenerator::isArgumentNumber):

  • bytecompiler/BytecodeGenerator.h:

(JSC::Local::Local):
(JSC::Local::operator bool):
(JSC::Local::get):
(JSC::Local::isReadOnly):
(JSC::BytecodeGenerator::scopeDepth):
(JSC::BytecodeGenerator::shouldOptimizeLocals):
(JSC::BytecodeGenerator::canOptimizeNonLocals): Refactored the bytecode
generator to resolve all variables within local scope, as if there
were no non-local scope. This helps provide a separation of concerns:
unlinked bytecode is always scope-free, and the linking stage links
in the provided scope.

  • bytecompiler/NodesCodegen.cpp:

(JSC::ResolveNode::isPure):
(JSC::ResolveNode::emitBytecode):
(JSC::EvalFunctionCallNode::emitBytecode):
(JSC::FunctionCallResolveNode::emitBytecode):
(JSC::PostfixNode::emitResolve):
(JSC::DeleteResolveNode::emitBytecode):
(JSC::TypeOfResolveNode::emitBytecode):
(JSC::PrefixNode::emitResolve):
(JSC::ReadModifyResolveNode::emitBytecode):
(JSC::AssignResolveNode::emitBytecode):
(JSC::ConstDeclNode::emitCodeSingle):
(JSC::ForInNode::emitBytecode): A bunch of this codegen is no longer
necessary, since it's redundant with the linking stage.

  • dfg/DFGAbstractState.cpp:

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

  • dfg/DFGByteCodeParser.cpp:

(JSC::DFG::ByteCodeParser::ByteCodeParser):
(JSC::DFG::ByteCodeParser::cellConstantWithStructureCheck):
(JSC::DFG::ByteCodeParser::handlePutByOffset):
(JSC::DFG::ByteCodeParser::handleGetById):
(JSC::DFG::ByteCodeParser::parseBlock): Updated for interface changes.
Notably, we can reuse existing DFG nodes -- but the mapping between
bytecode and DFG nodes has changed, and some nodes and corner cases have
been removed.

  • dfg/DFGCSEPhase.cpp:

(JSC::DFG::CSEPhase::scopedVarLoadElimination):
(JSC::DFG::CSEPhase::varInjectionWatchpointElimination):
(JSC::DFG::CSEPhase::globalVarStoreElimination):
(JSC::DFG::CSEPhase::scopedVarStoreElimination):
(JSC::DFG::CSEPhase::getLocalLoadElimination):
(JSC::DFG::CSEPhase::setLocalStoreElimination):
(JSC::DFG::CSEPhase::performNodeCSE): Added CSE for var injection
watchpoints. Even though watchpoints are "free", they're quite common
inside code that's subject to var injection, so I figured we'd save a
little memory.

  • dfg/DFGCapabilities.cpp:

(JSC::DFG::capabilityLevel):

  • dfg/DFGCapabilities.h: Removed detection for old forms.
  • dfg/DFGDriver.h:

(JSC::DFG::tryCompile):
(JSC::DFG::tryCompileFunction):

  • dfg/DFGFixupPhase.cpp:

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

  • dfg/DFGGraph.h:
  • dfg/DFGJITCode.cpp:
  • dfg/DFGNode.h:

(JSC::DFG::Node::convertToStructureTransitionWatchpoint):
(JSC::DFG::Node::hasVarNumber):
(JSC::DFG::Node::hasIdentifierNumberForCheck):
(JSC::DFG::Node::hasRegisterPointer):
(JSC::DFG::Node::hasHeapPrediction):

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

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

  • dfg/DFGRepatch.h:

(JSC::DFG::dfgResetGetByID):
(JSC::DFG::dfgResetPutByID):

  • dfg/DFGSpeculativeJIT.h:

(JSC::DFG::SpeculativeJIT::callOperation): Removed some unneeded things,
and updated for renames.

  • dfg/DFGSpeculativeJIT32_64.cpp:

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

  • dfg/DFGSpeculativeJIT64.cpp:

(JSC::DFG::SpeculativeJIT::compile): The two primary changes here are:

(1) Use a watchpoint for var injection instead of looping over the scope
chain and checking. This is more efficient and much easier to model in
code generation.

(2) I've eliminated the notion of an optimized global assignment that
needs to check for whether it should fire a watchpiont. Instead, we
fire pre-emptively at the point of optimization. This removes a bunch
of edge cases, and it seems like a more honest representation of
the fact that our new optimization contradicts our old one.

  • dfg/DFGTypeCheckHoistingPhase.cpp:

(JSC::DFG::TypeCheckHoistingPhase::identifyRedundantStructureChecks):
(JSC::DFG::TypeCheckHoistingPhase::identifyRedundantArrayChecks):

  • heap/DFGCodeBlocks.cpp:

(JSC::DFGCodeBlocks::jettison):

  • interpreter/CallFrame.h:

(JSC::ExecState::trueCallFrame): Removed stuff that's unused now, and
fixed the build.

  • interpreter/Interpreter.cpp:

(JSC::eval):
(JSC::getBytecodeOffsetForCallFrame):
(JSC::getCallerInfo):
(JSC::Interpreter::throwException): Updated exception scope tracking
to match the rest of our linking strategy: The unlinked bytecode compiles
exception scope as if non-local scope did not exist, and we add in
non-local scope at link time. This means that we can restore the right
scope depth based on a simple number, without checking the contents of
the scope chain.

(JSC::Interpreter::execute): Make sure to establish the full scope chain
before linking eval code. We now require the full scope chain at link
time, in order to link non-local variable resolution opcodes.

  • jit/JIT.cpp:

(JSC::JIT::JIT):
(JSC::JIT::privateCompileMainPass):
(JSC::JIT::privateCompileSlowCases):

  • jit/JIT.h:
  • jit/JITArithmetic.cpp:

(JSC::JIT::emit_op_add):

  • jit/JITCode.cpp:
  • jit/JITOpcodes.cpp:

(JSC::JIT::emitSlow_op_bitxor):
(JSC::JIT::emitSlow_op_bitor):

  • jit/JITOpcodes32_64.cpp:

(JSC::JIT::emitSlow_op_to_primitive):
(JSC::JIT::emit_op_strcat):
(JSC::JIT::emitSlow_op_create_this):
(JSC::JIT::emitSlow_op_to_this):

  • jit/JITPropertyAccess.cpp:

(JSC::JIT::emitVarInjectionCheck):
(JSC::JIT::emitResolveClosure):
(JSC::JIT::emit_op_resolve_scope):
(JSC::JIT::emitSlow_op_resolve_scope):
(JSC::JIT::emitLoadWithStructureCheck):
(JSC::JIT::emitGetGlobalProperty):
(JSC::JIT::emitGetGlobalVar):
(JSC::JIT::emitGetClosureVar):
(JSC::JIT::emit_op_get_from_scope):
(JSC::JIT::emitSlow_op_get_from_scope):
(JSC::JIT::emitPutGlobalProperty):
(JSC::JIT::emitPutGlobalVar):
(JSC::JIT::emitPutClosureVar):
(JSC::JIT::emit_op_put_to_scope):
(JSC::JIT::emitSlow_op_put_to_scope):
(JSC::JIT::emit_op_init_global_const):

  • jit/JITPropertyAccess32_64.cpp:

(JSC::JIT::emitVarInjectionCheck):
(JSC::JIT::emitResolveClosure):
(JSC::JIT::emit_op_resolve_scope):
(JSC::JIT::emitSlow_op_resolve_scope):
(JSC::JIT::emitLoadWithStructureCheck):
(JSC::JIT::emitGetGlobalProperty):
(JSC::JIT::emitGetGlobalVar):
(JSC::JIT::emitGetClosureVar):
(JSC::JIT::emit_op_get_from_scope):
(JSC::JIT::emitSlow_op_get_from_scope):
(JSC::JIT::emitPutGlobalProperty):
(JSC::JIT::emitPutGlobalVar):
(JSC::JIT::emitPutClosureVar):
(JSC::JIT::emit_op_put_to_scope):
(JSC::JIT::emitSlow_op_put_to_scope):
(JSC::JIT::emit_op_init_global_const):

  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION):

  • jit/JITStubs.h: Re-wrote baseline JIT codegen for our new variable

resolution model.

  • llint/LLIntData.cpp:

(JSC::LLInt::Data::performAssertions):

  • llint/LLIntSlowPaths.cpp:
  • llint/LLIntSlowPaths.h:
  • llint/LowLevelInterpreter.asm:
  • llint/LowLevelInterpreter.cpp:

(JSC::CLoop::execute):

  • llint/LowLevelInterpreter32_64.asm:
  • llint/LowLevelInterpreter64.asm: Ditto for LLInt.
  • offlineasm/x86.rb: Fixed a pre-existing encoding bug for a syntactic

form that we never used before.

  • runtime/ArrayPrototype.cpp:

(JSC::arrayProtoFuncToString):
(JSC::arrayProtoFuncToLocaleString):
(JSC::arrayProtoFuncJoin):
(JSC::arrayProtoFuncConcat):
(JSC::arrayProtoFuncPop):
(JSC::arrayProtoFuncPush):
(JSC::arrayProtoFuncReverse):
(JSC::arrayProtoFuncShift):
(JSC::arrayProtoFuncSlice):
(JSC::arrayProtoFuncSort):
(JSC::arrayProtoFuncSplice):
(JSC::arrayProtoFuncUnShift):
(JSC::arrayProtoFuncFilter):
(JSC::arrayProtoFuncMap):
(JSC::arrayProtoFuncEvery):
(JSC::arrayProtoFuncForEach):
(JSC::arrayProtoFuncSome):
(JSC::arrayProtoFuncReduce):
(JSC::arrayProtoFuncReduceRight):
(JSC::arrayProtoFuncIndexOf):
(JSC::arrayProtoFuncLastIndexOf): Fixed some pre-existing bugs in
'this' value conversion, which I made much more common by removing
special cases in bytecode generation.

These functions need to invoke toThis() because they observe the 'this'
value. Also, toLocaleString() is specified to accept non-array 'this'
values.

(Most other host functions don't need this fix because they perform
strict 'this' checking, which never coerces unexpected types.)

  • runtime/CodeCache.cpp:

(JSC::CodeCache::getCodeBlock):
(JSC::CodeCache::getProgramCodeBlock):
(JSC::CodeCache::getEvalCodeBlock):

  • runtime/CodeCache.h: Don't supply a scope to the unlinked code cache.

Unlinked code is supposed to be scope-free, so let's have the compiler
help verify that.

  • runtime/CommonSlowPaths.cpp:

(JSC::SLOW_PATH_DECL):

  • runtime/CommonSlowPaths.h:
  • runtime/Executable.cpp:

(JSC::EvalExecutable::create):
(JSC::EvalExecutable::compileInternal):
(JSC::ProgramExecutable::compileInternal):
(JSC::FunctionExecutable::produceCodeBlockFor):
(JSC::FunctionExecutable::compileForCallInternal):
(JSC::FunctionExecutable::compileForConstructInternal):

  • runtime/Executable.h:

(JSC::EvalExecutable::numVariables):
(JSC::EvalExecutable::numberOfFunctionDecls):

  • runtime/ExecutionHarness.h:

(JSC::prepareForExecutionImpl):
(JSC::prepareFunctionForExecutionImpl):
(JSC::installOptimizedCode): Fiddled with executable initialization so
that we can always generate a full scope chain before we go to link a
code block. We need this because code block linking now depends on the
scope chain to link non-local variable resolution opcodes.

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

(JSC::JSGlobalObject::JSGlobalObject):
(JSC::JSGlobalObject::createEvalCodeBlock):

  • runtime/JSGlobalObject.h:

(JSC::JSGlobalObject::varInjectionWatchpoint):

  • runtime/JSGlobalObjectFunctions.cpp:

(JSC::globalFuncEval):

  • runtime/JSNameScope.h:
  • runtime/JSScope.cpp:

(JSC::abstractAccess):
(JSC::JSScope::objectAtScope):
(JSC::JSScope::depth):
(JSC::JSScope::resolve):
(JSC::JSScope::abstractResolve): Updated to match changes explained above.

  • runtime/JSScope.h:

(JSC::makeType):
(JSC::needsVarInjectionChecks):
(JSC::ResolveOp::ResolveOp):
(JSC::ResolveModeAndType::ResolveModeAndType):
(JSC::ResolveModeAndType::mode):
(JSC::ResolveModeAndType::type):
(JSC::ResolveModeAndType::operand): Removed the old variable resolution
state machine, since it's unused now. Added logic for performing abstract
variable resolution at link time. This is used by codeblock linking.

  • runtime/ObjectPrototype.cpp:

(JSC::objectProtoFuncValueOf):
(JSC::objectProtoFuncHasOwnProperty):
(JSC::objectProtoFuncIsPrototypeOf):
(JSC::objectProtoFuncDefineGetter):
(JSC::objectProtoFuncDefineSetter):
(JSC::objectProtoFuncLookupGetter):
(JSC::objectProtoFuncLookupSetter):
(JSC::objectProtoFuncPropertyIsEnumerable):
(JSC::objectProtoFuncToLocaleString):
(JSC::objectProtoFuncToString): Fixed some pre-existing bugs in
'this' value conversion, which I made much more common by removing
special cases in bytecode generation.

These functions need to invoke toThis() because they observe the 'this'
value.

  • runtime/StringPrototype.cpp:

(JSC::checkObjectCoercible):
(JSC::stringProtoFuncReplace):
(JSC::stringProtoFuncCharAt):
(JSC::stringProtoFuncCharCodeAt):
(JSC::stringProtoFuncConcat):
(JSC::stringProtoFuncIndexOf):
(JSC::stringProtoFuncLastIndexOf):
(JSC::stringProtoFuncMatch):
(JSC::stringProtoFuncSearch):
(JSC::stringProtoFuncSlice):
(JSC::stringProtoFuncSplit):
(JSC::stringProtoFuncSubstr):
(JSC::stringProtoFuncSubstring):
(JSC::stringProtoFuncToLowerCase):
(JSC::stringProtoFuncToUpperCase):
(JSC::stringProtoFuncLocaleCompare):
(JSC::stringProtoFuncBig):
(JSC::stringProtoFuncSmall):
(JSC::stringProtoFuncBlink):
(JSC::stringProtoFuncBold):
(JSC::stringProtoFuncFixed):
(JSC::stringProtoFuncItalics):
(JSC::stringProtoFuncStrike):
(JSC::stringProtoFuncSub):
(JSC::stringProtoFuncSup):
(JSC::stringProtoFuncFontcolor):
(JSC::stringProtoFuncFontsize):
(JSC::stringProtoFuncAnchor):
(JSC::stringProtoFuncLink):
(JSC::trimString): Fixed some pre-existing bugs in
'this' value conversion, which I made much more common by removing
special cases in bytecode generation.

These functions need to invoke toThis() because they observe the 'this'
value.

  • runtime/StructureRareData.cpp:
  • runtime/VM.cpp:

(JSC::VM::~VM):

  • runtime/WriteBarrier.h:

(JSC::WriteBarrierBase::slot): Modified to reduce casting in client code.

LayoutTests:

This patch removed special-case 'this' resolution from bytecode, making
some pre-existing edge cases in 'this' value treatment much more common.

I updated the test results below, and added some tests, to match bug
fixes for these cases.

  • fast/js/script-tests/array-functions-non-arrays.js:
  • fast/js/array-functions-non-arrays-expected.txt: As specified, it's

not an error to pass a non-array to toLocaleString. Our new result
matches Firefox and Chrome.

  • fast/js/array-prototype-properties-expected.txt: Updated for slightly

clearer error message.

  • fast/js/basic-strict-mode-expected.txt: Updated for slightly more

standard error message.

  • fast/js/object-prototype-toString-expected.txt: Added.
  • fast/js/object-prototype-toString.html: Added. This test demonstrates

why we now fail a Sputnik test below, while Firefox and Chrome pass it.
(The test doesn't test what it thinks it tests, and this test verifies
that we get right what it does think it tests.)

  • fast/js/string-prototype-function-this-expected.txt: Added.
  • fast/js/string-prototype-function-this.html: Added. This test shows

that we CheckObjectCoercible in string prototype functions. (We used
to get this wrong, but Sputnik tests made it seem like we got it right
because they didn't test the dynamic scope case.)

  • sputnik/Conformance/11_Expressions/11.1_Primary_Expressions/11.1.1_The_this_Keyword/S11.1.1_A2-expected.txt:
  • sputnik/Conformance/15_Native_Objects/15.4_Array/15.4.4/15.4.4.3_Array_prototype_toLocaleString/S15.4.4.3_A2_T1-expected.txt:
  • sputnik/Conformance/15_Native_Objects/15.5_String/15.5.4/15.5.4.10_String.prototype.match/S15.5.4.10_A1_T3-expected.txt:
  • sputnik/Conformance/15_Native_Objects/15.5_String/15.5.4/15.5.4.11_String.prototype.replace/S15.5.4.11_A1_T3-expected.txt:
  • sputnik/Conformance/15_Native_Objects/15.5_String/15.5.4/15.5.4.12_String.prototype.search/S15.5.4.12_A1_T3-expected.txt:
  • sputnik/Conformance/15_Native_Objects/15.5_String/15.5.4/15.5.4.13_String.prototype.slice/S15.5.4.13_A1_T3-expected.txt:
  • sputnik/Conformance/15_Native_Objects/15.5_String/15.5.4/15.5.4.14_String.prototype.split/S15.5.4.14_A1_T3-expected.txt:
  • sputnik/Conformance/15_Native_Objects/15.5_String/15.5.4/15.5.4.15_String.prototype.substring/S15.5.4.15_A1_T3-expected.txt:
  • sputnik/Conformance/15_Native_Objects/15.5_String/15.5.4/15.5.4.6_String.prototype.concat/S15.5.4.6_A1_T3-expected.txt:
  • sputnik/Conformance/15_Native_Objects/15.5_String/15.5.4/15.5.4.7_String.prototype.indexOf/S15.5.4.7_A1_T3-expected.txt:
  • sputnik/Conformance/15_Native_Objects/15.5_String/15.5.4/15.5.4.8_String.prototype.lastIndexOf/S15.5.4.8_A1_T3-expected.txt:

Updated to show failing results. Firefox and Chrome also fail these
tests, and the ES5 spec seems to mandate failure. Because these tests
resolve a String.prototype function at global scope, the 'this' value
for the call is an environment record. Logically, an environment record
converts to 'undefined' at the call site, and should then fail the
CheckObjectCoercible test.

10:15 PM Changeset in webkit [151362] by ggaren@apple.com
  • 28 edits
    2 adds in branches/dfgFourthTier/Source/JavaScriptCore

Unreviewed, rolled back in http://trac.webkit.org/changeset/151342.

I filled in the missing return register loads, and tests
seem to pass now.

2013-06-07 Michael Saboff <msaboff@apple.com>

fourthTier: The baseline jit and LLint should use common slow paths
https://bugs.webkit.org/show_bug.cgi?id=116889

8:08 PM Changeset in webkit [151361] by Brent Fulgham
  • 2 edits in trunk/Tools

[Windows] Unreviewed test correction: Prevent DumpRenderTree crashes

  • DumpRenderTree/win/AccessibilityUIElementWin.cpp:

(AccessibilityUIElement::role): Prevent crashes when m_element is null. This
happends in some of the 'accessibility' test cases.

2:22 PM Changeset in webkit [151360] by roger_fong@apple.com
  • 8 edits
    2 adds in trunk

Layout info should never be cleared before delayed scroll information updates.
https://bugs.webkit.org/show_bug.cgi?id=116689.

Reviewed by Darin Adler.

Test: fast/flexbox/clear-overflow-before-scroll-update.html

Make sure that clearLayoutOverflow only gets called after layer()->updateScrollInfoAfterLayout().
Also move clearLayoutOverflow to RenderBlock so we can keep all the delayed scroll update logic in RenderBlock.

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::finishDelayUpdateScrollInfo): Call clearLayoutOverflow here.
(WebCore::RenderBlock::layout): Only call clearLayoutOverflow here if scrolling isn't being delayed.
(WebCore::RenderBlock::clearLayoutOverflow): Remove clearLayoutOverflow, move into RenderBlock to keep delayed scrolling logic in the same file.

  • rendering/RenderBlock.h:
  • rendering/RenderBox.cpp:
  • rendering/RenderBox.h:
  • rendering/RenderDeprecatedFlexibleBox.cpp: Should call updateScrollInfoAfterLayout, not layer()->updateScrollInfoAfterLayout(), so that it takes delayed scrolling logic into account.

(WebCore::RenderDeprecatedFlexibleBox::layoutBlock):

  • rendering/RenderGrid.cpp: Ditto

(WebCore::RenderGrid::layoutBlock):

1:57 PM Changeset in webkit [151359] by benjamin@webkit.org
  • 3 edits in trunk/Source/WebCore

Split the 3 paths of SelectorDataList::execute() into 3 separate functions
https://bugs.webkit.org/show_bug.cgi?id=117378

Patch by Benjamin Poulain <bpoulain@apple.com> on 2013-06-09
Reviewed by Ryosuke Niwa.

Split those to have several small execute() fucntions instead of a giant one.

  • dom/SelectorQuery.cpp:

(WebCore::selectorForIdLookup):
(WebCore::isTreeScopeRoot):
(WebCore::SelectorDataList::executeFastPathForIdSelector):
(WebCore::SelectorDataList::executeSingleSelectorData):
(WebCore::SelectorDataList::executeSingleMultiSelectorData):
(WebCore::SelectorDataList::execute):

  • dom/SelectorQuery.h:
1:56 PM Changeset in webkit [151358] by fpizlo@apple.com
  • 2 edits in branches/dfgFourthTier/Tools

Unreviewed, fix minor goof in profiling output layout. We weren't accounting
for the "/" that is printed between engine counts.

  • Scripts/display-profiler-output:
1:04 PM Changeset in webkit [151357] by fpizlo@apple.com
  • 4 edits in branches/dfgFourthTier/Source

Source/WebCore: Unreviewed, fix build. Use at() instead of operator[] because of ambiguity on some compilers.

  • page/CaptionUserPreferencesMac.mm:

(WebCore::languageIdentifier):

Source/WTF: Unreviewed, fix build. On some compilers the automatic coercion from WTF::String to NSString*
causes operator[] to appear ambiguous. One way around this is to make WTF::String behave like
most of our other classes: at(unsigned) is always a valid synonym for operator[](unsigned).

  • wtf/text/WTFString.h:

(WTF::String::at):
(WTF::String::operator[]):

12:52 PM Changeset in webkit [151356] by benjamin@webkit.org
  • 3 edits in trunk/Source/WebCore

Scrolling with platformWidget and delegateScrolling is incorrectly clamped
https://bugs.webkit.org/show_bug.cgi?id=117369
<rdar://problem/13985064>

Patch by Benjamin Poulain <bpoulain@apple.com> on 2013-06-09
Reviewed by Darin Adler.

The patch http://trac.webkit.org/changeset/142526 clamps the input position
in the ScrollView scroll range. This was done for the path to the ScrollingCoordinator.

The problem with that change is ScrollView::setScrollPosition() can delegate the scrolling
to either a platformWidget, or through delegateScrolling. After r142526, the position is clamped,
and we do not let those external scrolling mechanims handle the out-of-bound scrolling.

This patch fixes the issue by moving the threaded scrolling call to ScrollView,
after the delegate handling code.

  • page/FrameView.cpp:

(WebCore::FrameView::setScrollPosition):
(WebCore::FrameView::requestScrollPositionUpdate):

12:19 PM Changeset in webkit [151355] by fpizlo@apple.com
  • 7 edits
    6 adds in branches/dfgFourthTier

fourthTier: DFG GetById patching shouldn't distinguish between self lists and proto lists
https://bugs.webkit.org/show_bug.cgi?id=117377

Source/JavaScriptCore:

Reviewed by Geoffrey Garen.

Previously if you did self accesses and then wanted to do a prototype access, you'd
have a bad time: the prototype accesses would be forced to take slow path because
the self list wouldn't allow prototype accesses. Likewise if you did prototype (or
chain) accesses and then wanted to do a self access, similar stupidity would ensue.

This fixes the stupidity.

I believe that this was introduced way back in the days of the old interpreter,
where distinguishing between self lists, proto lists, and chain lists was meaningful
for interpreter performance: it meant fewer branches to evaluate those lists. Then
it got mostly carried over to the old JIT since the old JIT was just initially an
optimized version of the old interpreter, and then later it got carried over to the
DFG because I didn't know any better at the time. Now I do know better and I'm
fixing it.

  • bytecode/PolymorphicAccessStructureList.h:

(JSC::PolymorphicAccessStructureList::PolymorphicStubInfo::set):

  • bytecode/StructureStubInfo.h:

(JSC::StructureStubInfo::initGetByIdSelfList):

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

(JSC::DFG::tryCacheGetByID):
(JSC::DFG::getPolymorphicStructureList):
(DFG):
(JSC::DFG::patchJumpToGetByIdStub):
(JSC::DFG::tryBuildGetByIDList):
(JSC::DFG::dfgBuildGetByIDList):

LayoutTests:

Reviewed by Geoffrey Garen.

Add tests that show why this is important. These tests speed up by more than 3x.

  • fast/js/regress/get-by-id-proto-or-self-expected.txt: Added.
  • fast/js/regress/get-by-id-proto-or-self.html: Added.
  • fast/js/regress/get-by-id-self-or-proto-expected.txt: Added.
  • fast/js/regress/get-by-id-self-or-proto.html: Added.
  • fast/js/regress/script-tests/get-by-id-proto-or-self.js: Added.

(foo):
(bar):
(Foo):

  • fast/js/regress/script-tests/get-by-id-self-or-proto.js: Added.

(foo):
(bar):
(Foo):

12:04 PM Changeset in webkit [151354] by mark.lam@apple.com
  • 14 edits in branches/dfgFourthTier/Source/JavaScriptCore

Fix broken no-DFG build.
https://bugs.webkit.org/show_bug.cgi?id=117381.

Reviewed by Geoffrey Garen.

  • bytecode/CodeBlock.cpp:
  • bytecode/CodeBlock.h:

(CodeBlock):
(ProgramCodeBlock):
(EvalCodeBlock):
(FunctionCodeBlock):

  • dfg/DFGCapabilities.h:
  • dfg/DFGDriver.h:

(JSC::DFG::tryCompile):
(JSC::DFG::tryCompileFunction):

  • dfg/DFGJITCode.cpp:
  • dfg/DFGRepatch.h:

(JSC::DFG::dfgResetGetByID):
(JSC::DFG::dfgResetPutByID):

  • heap/DFGCodeBlocks.cpp:

(JSC::DFGCodeBlocks::jettison):

  • interpreter/CallFrame.h:

(ExecState):
(JSC::ExecState::trueCallFrame):

  • interpreter/Interpreter.cpp:

(JSC::getCallerInfo):

  • runtime/Executable.cpp:
  • runtime/Executable.h:

(EvalExecutable):
(ProgramExecutable):
(FunctionExecutable):

  • runtime/ExecutionHarness.h:
  • runtime/VM.cpp:

(JSC::VM::~VM):

Jun 8, 2013:

11:36 PM Changeset in webkit [151353] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit2

[Coordinated Graphics] Pass the ownership of GraphicsSurface explicitly
https://bugs.webkit.org/show_bug.cgi?id=117379

Patch by Jae Hyun Park <jae.park@company100.net> on 2013-06-08
Reviewed by Noam Rosenthal.

When creating WebCoordinatedSurface with GraphicsSurface, it is clearer
to pass the ownership of the created GraphicsSurface explicitly.

  • Shared/CoordinatedGraphics/WebCoordinatedSurface.cpp:

(WebKit::WebCoordinatedSurface::create):

10:38 PM Changeset in webkit [151352] by fpizlo@apple.com
  • 4 edits in branches/dfgFourthTier/Source

fourthTier: Recursive deadlock in DFG::ByteCodeParser
https://bugs.webkit.org/show_bug.cgi?id=117376

Source/JavaScriptCore:

Reviewed by Mark Hahnenberg.

Leave the lock early to prevent a deadlock beneath get().

  • dfg/DFGByteCodeParser.cpp:

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

Source/WTF:

Reviewed by Mark Hahnenberg.

I've often wanted to leave a lock early. Now I have that power!

  • wtf/Locker.h:

(WTF::Locker::Locker):
(WTF::Locker::~Locker):
(Locker):
(WTF::Locker::unlockEarly):
(WTF::Locker::lock):

7:43 PM Changeset in webkit [151351] by igor.o@sisa.samsung.com
  • 4 edits
    3 adds in trunk

before/after generated content is not working with HTMLSummaryElement and HTMLDetailsElement.
https://bugs.webkit.org/show_bug.cgi?id=117374

Source/WebCore:

Allow before/after pseudo generated content be added in HTMLDetailsElement and HTMLSumamaryElement.

Reviewed by Ryosuke Niwa.

Test: fast/css-generated-content/details-summary-before-after.html

  • html/HTMLDetailsElement.cpp:

(WebCore::HTMLDetailsElement::childShouldCreateRenderer):

  • html/HTMLSummaryElement.cpp:

(WebCore::HTMLSummaryElement::childShouldCreateRenderer):

LayoutTests:

Reviewed by Ryosuke Niwa.

  • fast/css-generated-content/details-summary-before-after.html: Added.
  • platform/mac/fast/css-generated-content/details-summary-before-after-expected.txt: Added.
  • platform/mac/fast/css-generated-content/details-summary-before-after-expected.png: Added
4:58 PM Changeset in webkit [151350] by kalyan.kondapally@intel.com
  • 2 edits
    2 adds in trunk/LayoutTests

[EFL][WebGL] Enable webgl-background-color test.
https://bugs.webkit.org/show_bug.cgi?id=111428

Reviewed by Christophe Dumez.

This patch adds platform specific test expectation files for the
test and enables it for efl port.

  • platform/efl/TestExpectations:
  • platform/efl/compositing/webgl/webgl-background-color-expected.png: Added.
  • platform/efl/compositing/webgl/webgl-background-color-expected.txt: Added.
2:42 PM Changeset in webkit [151349] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

[WinCairo] TestWebKitAPI fails to link.
https://bugs.webkit.org/show_bug.cgi?id=117345

Patch by peavo@outlook.com <peavo@outlook.com> on 2013-06-08
Reviewed by Brent Fulgham.

Need to link with WTF.lib.

  • TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPICommonWinCairo.props: Link with WTF.lib.
2:33 PM Changeset in webkit [151348] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

[curl] Allow headers with empty value
https://bugs.webkit.org/show_bug.cgi?id=117344

Patch by Peter Gal <galpeter@inf.u-szeged.hu> on 2013-06-08
Reviewed by Brent Fulgham.

No new tests, already covered by:
http/tests/xmlhttprequest/xmlhttprequest-setrequestheader-no-value.html
http/tests/xmlhttprequest/post-blob-content-type-sync.html

  • platform/network/curl/ResourceHandleManager.cpp:

(WebCore::ResourceHandleManager::initializeHandle):

1:36 PM Changeset in webkit [151347] by mark.lam@apple.com
  • 2 edits in branches/dfgFourthTier/Source/JavaScriptCore

Removed bogus assertion in CallFrame::setLocationAsBytecodeOffset().
https://bugs.webkit.org/show_bug.cgi?id=117373.

Reviewed by Oliver Hunt.

The assertion wrongly assumes that the incoming offset argument is in
units of bytes. This is not true. It is in units of Instruction*. Hence,
the assertion which checks for the low 2 bits to be clear can fail.

  • interpreter/CallFrame.cpp:

(JSC::CallFrame::setLocationAsBytecodeOffset):

4:34 AM Changeset in webkit [151346] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

[curl] Handling of blob elements is incorrect
https://bugs.webkit.org/show_bug.cgi?id=117301

Patch by Peter Gal <galpeter@inf.u-szeged.hu> on 2013-06-08
Reviewed by Kenneth Rohde Christiansen.

No new tests, covered by existing ones:
http/tests/fileapi/xhr-send-form-data-filename-escaping.html
http/tests/fileapi/xhr-send-form-data-mimetype-normalization.html

  • platform/network/curl/ResourceHandleManager.cpp:

(WebCore::getFormElementsCount): Resolve Blob elements.

Jun 7, 2013:

7:11 PM Changeset in webkit [151345] by fpizlo@apple.com
  • 28 edits
    2 deletes in branches/dfgFourthTier/Source/JavaScriptCore

Unreviewed, roll out http://trac.webkit.org/changeset/151342
It broke Kraken crypto tests in debug build. That results in a pretty bad
loss of test coverage.

(JSC):
(JSC::JIT::privateCompileMainPass):

  • jit/JIT.h:

(JIT):

  • jit/JITArithmetic.cpp:

(JSC::JIT::emitSlow_op_negate):
(JSC::JIT::emitSlow_op_lshift):
(JSC::JIT::emitSlow_op_rshift):
(JSC::JIT::emitSlow_op_urshift):
(JSC::JIT::emitSlow_op_bitand):
(JSC::JIT::emitSlow_op_inc):
(JSC::JIT::emitSlow_op_dec):
(JSC::JIT::emitSlow_op_mod):
(JSC::JIT::emit_op_mod):
(JSC::JIT::compileBinaryArithOpSlowCase):
(JSC::JIT::emit_op_add):
(JSC::JIT::emitSlow_op_add):
(JSC::JIT::emitSlow_op_mul):
(JSC::JIT::emitSlow_op_div):
(JSC::JIT::emitSlow_op_sub):

  • jit/JITArithmetic32_64.cpp:

(JSC::JIT::emitSlow_op_negate):
(JSC::JIT::emitSlow_op_lshift):
(JSC::JIT::emitRightShiftSlowCase):
(JSC::JIT::emitSlow_op_bitand):
(JSC::JIT::emitSlow_op_bitor):
(JSC::JIT::emitSlow_op_bitxor):
(JSC::JIT::emitSlow_op_inc):
(JSC::JIT::emitSlow_op_dec):
(JSC::JIT::emit_op_add):
(JSC::JIT::emitSlow_op_add):
(JSC::JIT::emitSlow_op_sub):
(JSC::JIT::emitSlow_op_mul):
(JSC::JIT::emitSlow_op_div):
(JSC::JIT::emit_op_mod):
(JSC::JIT::emitSlow_op_mod):

  • jit/JITExceptions.cpp:

(JSC):
(JSC::genericThrow):

  • jit/JITExceptions.h:

(ExceptionHandler):
(JSC):

  • jit/JITOpcodes.cpp:

(JSC::JIT::emit_op_strcat):
(JSC::JIT::emitSlow_op_create_this):
(JSC::JIT::emitSlow_op_to_this):
(JSC::JIT::emitSlow_op_to_primitive):
(JSC::JIT::emitSlow_op_not):
(JSC::JIT::emitSlow_op_bitxor):
(JSC::JIT::emitSlow_op_bitor):
(JSC::JIT::emitSlow_op_stricteq):
(JSC::JIT::emitSlow_op_nstricteq):
(JSC::JIT::emitSlow_op_to_number):

  • jit/JITOpcodes32_64.cpp:

(JSC::JIT::privateCompileCTINativeCall):
(JSC::JIT::emitSlow_op_to_primitive):
(JSC::JIT::emit_op_strcat):
(JSC::JIT::emitSlow_op_not):
(JSC::JIT::emitSlow_op_stricteq):
(JSC::JIT::emitSlow_op_nstricteq):
(JSC::JIT::emitSlow_op_to_number):
(JSC::JIT::emit_op_create_arguments):
(JSC::JIT::emitSlow_op_create_this):
(JSC::JIT::emitSlow_op_to_this):
(JSC::JIT::emitSlow_op_get_argument_by_val):

  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION):
(JSC):

  • jit/JITStubs.h:

(JSC):

  • jit/JITStubsARM.h:

(JSC):

  • jit/JITStubsARMv7.h:

(JSC):

  • jit/JITStubsMIPS.h:

(JSC):

  • jit/JITStubsSH4.h:

(JSC):

  • jit/JITStubsX86.h:

(JSC):

  • jit/JITStubsX86_64.h:

(JSC):

  • jit/JSInterfaceJIT.h:

(JSInterfaceJIT):

  • jit/SlowPathCall.h: Removed.
  • jit/ThunkGenerators.cpp:

(JSC::nativeForGenerator):

  • llint/LLIntSlowPaths.cpp:

(JSC::LLInt::LLINT_SLOW_PATH_DECL):
(LLInt):

  • llint/LLIntSlowPaths.h:

(LLInt):
(SlowPathReturnType):
(JSC::LLInt::encodeResult):
(JSC::LLInt::decodeResult):

  • llint/LowLevelInterpreter.asm:
  • llint/LowLevelInterpreter.cpp:
  • llint/LowLevelInterpreter32_64.asm:
  • llint/LowLevelInterpreter64.asm:
  • runtime/CommonSlowPaths.cpp: Removed.
  • runtime/CommonSlowPaths.h:
  • runtime/JSCJSValue.h:

(JSValue):

5:11 PM Changeset in webkit [151344] by andersca@apple.com
  • 2 edits in trunk/Source/WebKit2

Coalesce multiple calls to WebPageProxy::windowAndViewFramesChanged
https://bugs.webkit.org/show_bug.cgi?id=117364
<rdar://problem/14042099>

Reviewed by Geoffrey Garen.

-[WKView _updateWindowAndViewFrames] can be called many times per run loop iteration so coalesce calls
to WebPageProxy::windowAndViewFrames using dispatch_async.

  • UIProcess/API/mac/WKView.mm:

(-[WKView _updateWindowAndViewFrames]):

5:05 PM Changeset in webkit [151343] by fpizlo@apple.com
  • 10 edits in branches/dfgFourthTier

fourthTier: don't insert ForceOSRExits except for inadequate coverage
https://bugs.webkit.org/show_bug.cgi?id=117363

Source/JavaScriptCore:

Reviewed by Mark Hahnenberg.

Previously (in http://trac.webkit.org/changeset/151303) I made it so that we
inserted ForceOSRExits more eagerly. I now think it's better to have
contradictions execute normally and exit with full OSR exit profiling. It's
better at catching the few cases where the DFG will end up with different
types than the baseline engines.

This simplifies a bunch of code. For example it gets rid of
ConstantFoldingPhase::paintUnreachableCode().

You can think of this as a partial roll-out of r151303, except that it uses
the facilities introduced by that patch to give us run-time assertions that
check the CFA's correctness: if the CFA thought that something was a
contradiction but the code didn't exit, we'll now trap.

  • dfg/DFGAbstractState.cpp:

(JSC::DFG::AbstractState::AbstractState):
(JSC::DFG::AbstractState::startExecuting):
(JSC::DFG::AbstractState::executeEffects):
(JSC::DFG::AbstractState::execute):
(JSC::DFG::AbstractState::filter):
(JSC::DFG::AbstractState::filterArrayModes):
(JSC::DFG::AbstractState::filterByValue):
(DFG):

  • dfg/DFGAbstractState.h:

(AbstractState):
(JSC::DFG::AbstractState::filter):
(JSC::DFG::AbstractState::filterArrayModes):
(JSC::DFG::AbstractState::filterByValue):

  • dfg/DFGCFAPhase.cpp:

(JSC::DFG::CFAPhase::performBlockCFA):

  • dfg/DFGConstantFoldingPhase.cpp:

(JSC::DFG::ConstantFoldingPhase::run):
(JSC::DFG::ConstantFoldingPhase::foldConstants):
(ConstantFoldingPhase):

  • dfg/DFGSpeculativeJIT.cpp:

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

  • ftl/FTLLowerDFGToLLVM.cpp:

(JSC::FTL::LowerDFGToLLVM::compileNode):

LayoutTests:

Reviewed by Mark Hahnenberg.

Convert this test, since this was the test originally added for
ConstantFoldingPhase::paintUnreachableCode(). I wanted to make sure that I had good coverage
for this since I am removing that method.

  • fast/js/dfg-force-exit-then-sparse-conditional-constant-prop-in-loop-expected.txt:
  • fast/js/script-tests/dfg-force-exit-then-sparse-conditional-constant-prop-in-loop.js:
4:46 PM Changeset in webkit [151342] by msaboff@apple.com
  • 28 edits
    2 adds in branches/dfgFourthTier/Source/JavaScriptCore

fourthTier: The baseline jit and LLint should use common slow paths
https://bugs.webkit.org/show_bug.cgi?id=116889

Reviewed by Filip Pizlo.

Moved the llint_slow_paths that return JSValue along with several others to CommonSlowPaths.cpp.
Eliminated the related JIT stubs. Changes the baseline JIT to call these new common stubs.
Added a simple slow path call class that uses argument registers or the stack instead of
JITStackFrame. Changes the exception mechanism for to check for an exception after making
a slowpath call instead of returning to the handler directly form the slowpath function.

(JSC::JIT::privateCompileMainPass):

  • jit/JIT.h:

(JIT):

  • jit/JITArithmetic.cpp:

(JSC::JIT::emitSlow_op_negate):
(JSC::JIT::emitSlow_op_lshift):
(JSC::JIT::emitSlow_op_rshift):
(JSC::JIT::emitSlow_op_urshift):
(JSC::JIT::emitSlow_op_bitand):
(JSC::JIT::emitSlow_op_inc):
(JSC::JIT::emitSlow_op_dec):
(JSC::JIT::emitSlow_op_mod):
(JSC::JIT::emit_op_mod):
(JSC::JIT::compileBinaryArithOpSlowCase):
(JSC::JIT::emit_op_add):
(JSC::JIT::emitSlow_op_add):
(JSC::JIT::emitSlow_op_mul):
(JSC::JIT::emitSlow_op_div):
(JSC::JIT::emitSlow_op_sub):

  • jit/JITArithmetic32_64.cpp:

(JSC::JIT::emitSlow_op_negate):
(JSC::JIT::emitSlow_op_lshift):
(JSC::JIT::emitRightShiftSlowCase):
(JSC::JIT::emitSlow_op_bitand):
(JSC::JIT::emitSlow_op_bitor):
(JSC::JIT::emitSlow_op_bitxor):
(JSC::JIT::emitSlow_op_inc):
(JSC::JIT::emitSlow_op_dec):
(JSC::JIT::emit_op_add):
(JSC::JIT::emitSlow_op_add):
(JSC::JIT::emitSlow_op_sub):
(JSC::JIT::emitSlow_op_mul):
(JSC::JIT::emitSlow_op_div):
(JSC::JIT::emit_op_mod):
(JSC::JIT::emitSlow_op_mod):

  • jit/JITExceptions.cpp:

(JSC::getExceptionLocation):
(JSC::genericThrow):
(JSC::jitThrowNew):

  • jit/JITExceptions.h:

(ExceptionHandler):

  • jit/JITOpcodes.cpp:

(JSC::JIT::emit_op_strcat):
(JSC::JIT::emitSlow_op_create_this):
(JSC::JIT::emitSlow_op_to_this):
(JSC::JIT::emitSlow_op_to_primitive):
(JSC::JIT::emitSlow_op_not):
(JSC::JIT::emitSlow_op_bitxor):
(JSC::JIT::emitSlow_op_bitor):
(JSC::JIT::emitSlow_op_stricteq):
(JSC::JIT::emitSlow_op_nstricteq):
(JSC::JIT::emitSlow_op_to_number):

  • jit/JITOpcodes32_64.cpp:

(JSC::JIT::privateCompileCTINativeCall):
(JSC::JIT::emitSlow_op_to_primitive):
(JSC::JIT::emit_op_strcat):
(JSC::JIT::emitSlow_op_not):
(JSC::JIT::emitSlow_op_stricteq):
(JSC::JIT::emitSlow_op_nstricteq):
(JSC::JIT::emitSlow_op_to_number):
(JSC::JIT::emit_op_create_arguments):
(JSC::JIT::emitSlow_op_create_this):
(JSC::JIT::emitSlow_op_to_this):
(JSC::JIT::emitSlow_op_get_argument_by_val):

  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION):
(JSC::cti_vm_throw_slowpath):

  • jit/JITStubs.h:
  • jit/JITStubsARM.h:
  • jit/JITStubsARMv7.h:
  • jit/JITStubsMIPS.h:
  • jit/JITStubsSH4.h:
  • jit/JITStubsX86.h:
  • jit/JITStubsX86_64.h:
  • jit/JSInterfaceJIT.h:

(JSInterfaceJIT):

  • jit/SlowPathCall.h: Added.

(JITSlowPathCall):
(JSC::JITSlowPathCall::JITSlowPathCall):
(JSC::JITSlowPathCall::call):

  • jit/ThunkGenerators.cpp:

(JSC::nativeForGenerator):

  • llint/LLIntSlowPaths.cpp:

(LLInt):

  • llint/LLIntSlowPaths.h:

(LLInt):

  • llint/LowLevelInterpreter.asm:
  • llint/LowLevelInterpreter.cpp:
  • llint/LowLevelInterpreter32_64.asm:
  • llint/LowLevelInterpreter64.asm:
  • runtime/CommonSlowPaths.cpp: Added.

(JSC::SLOW_PATH_DECL):

  • runtime/CommonSlowPaths.h:

(SlowPathReturnType):
(JSC::encodeResult):
(JSC::decodeResult):

  • runtime/JSCJSValue.h:

(JSValue):

4:25 PM Changeset in webkit [151341] by Chris Fleizach
  • 3 edits in trunk/LayoutTests

MathML line fraction needs to parse number values
https://bugs.webkit.org/show_bug.cgi?id=117305

Unreviewed. Rebaseline math fractions test on EFL.

  • platform/efl/mathml/presentation/fractions-expected.png:
  • platform/efl/mathml/presentation/fractions-expected.txt:
4:21 PM Changeset in webkit [151340] by Chris Fleizach
  • 3 edits in trunk/LayoutTests

MathML line fraction needs to parse number values
https://bugs.webkit.org/show_bug.cgi?id=117305

Unreviewed. Rebaseline math fractions test on GTK.

  • platform/gtk/mathml/presentation/fractions-expected.png:
  • platform/gtk/mathml/presentation/fractions-expected.txt:
3:36 PM Changeset in webkit [151339] by Alexandru Chiculita
  • 3 edits in trunk/Source/WebCore

[CSS Regions] Layers inside the RenderFlowThread should be collected by the layer of RenderView
https://bugs.webkit.org/show_bug.cgi?id=117270

Reviewed by David Hyatt.

RenderNamedFlowThreads are attached to the RenderView, but they are painted
and hit-tested through their regions. The easiest way to prevent the RenderView
from seeing the RenderNamedFlowThreads as its own children was to avoid collecting
the layers of the RenderNamedFlowThreads as children layers of the RenderView.

However, most of the code is analyzing the layers tree starting from the root,
so having the RenderNamedFlowThread participate in the layer tree is needed
in order to enable compositing for layers inside the flow thread.

This patch makes the RenderNamedFlowThread visible to the RenderView, but
ignores it when iterates the children of the RenderView in paint and hit-test methods.

No new tests, no visible changes.

  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::paintList):
(WebCore::RenderLayer::hitTestList):
(WebCore::RenderLayer::calculateLayerBounds):
(WebCore::RenderLayer::collectLayers):

  • rendering/RenderTreeAsText.cpp:

(WebCore::writeLayers):

3:04 PM Changeset in webkit [151338] by betravis@adobe.com
  • 2 edits in trunk/Source/WebCore

[CSS Exclusions][CSS Shapes] Incorrect compile flag in LayoutState.h
https://bugs.webkit.org/show_bug.cgi?id=117318

Reviewed by Alexandru Chiculita.

m_exclusionShapeInsideInfo should be guarded by the CSS_SHAPES flag,
not the CSS_EXCLUSIONS flag.

No tests required.

  • rendering/LayoutState.h:
2:53 PM Changeset in webkit [151337] by roger_fong@apple.com
  • 2 edits in trunk/Tools

Get rid of not very helpful test that fails only on some machines because xcrun is not installed.

Rubberstamped by Ryousuke Niwa.

  • Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:

(RunTest.test_build_check):

2:27 PM Changeset in webkit [151336] by Christophe Dumez
  • 147 edits in trunk/Source

Get rid of outdated raises() from Web IDL
https://bugs.webkit.org/show_bug.cgi?id=117350

Reviewed by Darin Adler.

Source/WebCore:

Stop using "raises()" in the IDL as this is no longer part of the Web IDL
specification. Web IDL no longer specifies exceptions for operations. Instead
it is now explained in prose.

WebKit still needs to know if the method can throw an exception (but does not
need the exception name) so this patch adds a WebKit specific IDL extended
attribute: [RaisesException]. The naming is consistent with Blink.

This results in more standard and concise IDL. This also simplifies a lot
the code of the IDL parser.

No new tests, no behavior change.

  • Modules/battery/BatteryManager.idl:
  • Modules/encryptedmedia/MediaKeySession.idl:
  • Modules/encryptedmedia/MediaKeys.idl:
  • Modules/filesystem/DirectoryEntrySync.idl:
  • Modules/filesystem/DirectoryReaderSync.idl:
  • Modules/filesystem/EntrySync.idl:
  • Modules/filesystem/FileEntrySync.idl:
  • Modules/filesystem/FileWriter.idl:
  • Modules/filesystem/FileWriterSync.idl:
  • Modules/filesystem/WorkerContextFileSystem.idl:
  • Modules/indexeddb/IDBCursor.idl:
  • Modules/indexeddb/IDBDatabase.idl:
  • Modules/indexeddb/IDBFactory.idl:
  • Modules/indexeddb/IDBIndex.idl:
  • Modules/indexeddb/IDBKeyRange.idl:
  • Modules/indexeddb/IDBObjectStore.idl:
  • Modules/indexeddb/IDBRequest.idl:
  • Modules/indexeddb/IDBTransaction.idl:
  • Modules/mediasource/MediaSource.idl:
  • Modules/mediasource/SourceBuffer.idl:
  • Modules/mediasource/SourceBufferList.idl:
  • Modules/mediastream/MediaStream.idl:
  • Modules/mediastream/MediaStreamTrack.idl:
  • Modules/mediastream/NavigatorMediaStream.idl:
  • Modules/mediastream/RTCDTMFSender.idl:
  • Modules/mediastream/RTCDataChannel.idl:
  • Modules/mediastream/RTCPeerConnection.idl:
  • Modules/navigatorcontentutils/NavigatorContentUtils.idl:
  • Modules/networkinfo/NetworkInfoConnection.idl:
  • Modules/notifications/Notification.idl:
  • Modules/notifications/NotificationCenter.idl:
  • Modules/speech/SpeechRecognition.idl:
  • Modules/vibration/NavigatorVibration.idl:
  • Modules/webaudio/AudioBuffer.idl:
  • Modules/webaudio/AudioContext.idl:
  • Modules/webaudio/AudioNode.idl:
  • Modules/webdatabase/DOMWindowWebDatabase.idl:
  • Modules/webdatabase/DatabaseSync.idl:
  • Modules/webdatabase/WorkerContextWebDatabase.idl:
  • Modules/websockets/WebSocket.idl:
  • bindings/scripts/CodeGeneratorCPP.pm:

(GenerateImplementation):

  • bindings/scripts/CodeGeneratorGObject.pm:

(GenerateFunction):
(GenerateFunctions):

  • bindings/scripts/CodeGeneratorJS.pm:

(GenerateImplementation):
(GenerateParametersCheck):
(GenerateImplementationFunctionCall):
(GenerateConstructorDefinition):

  • bindings/scripts/CodeGeneratorObjC.pm:

(GenerateImplementation):

  • bindings/scripts/IDLAttributes.txt:
  • bindings/scripts/IDLParser.pm:

(parseOperationRest):

  • bindings/scripts/test/TestEventTarget.idl:
  • bindings/scripts/test/TestObj.idl:
  • bindings/scripts/test/TestSupplemental.idl:
  • bindings/scripts/test/TestTypedefs.idl:
  • css/CSSHostRule.idl:
  • css/CSSMediaRule.idl:
  • css/CSSPrimitiveValue.idl:
  • css/CSSStyleDeclaration.idl:
  • css/CSSStyleSheet.idl:
  • css/CSSSupportsRule.idl:
  • css/FontLoader.idl:
  • css/MediaList.idl:
  • css/WebKitCSSMatrix.idl:
  • dom/CharacterData.idl:
  • dom/DOMImplementation.idl:
  • dom/DataTransferItemList.idl:
  • dom/Document.idl:
  • dom/DocumentFragment.idl:
  • dom/DocumentType.idl:
  • dom/Element.idl:
  • dom/EventTarget.idl:
  • dom/MessagePort.idl:
  • dom/MutationObserver.idl:
  • dom/NamedNodeMap.idl:
  • dom/Node.idl:
  • dom/NodeIterator.idl:
  • dom/Range.idl:
  • dom/ShadowRoot.idl:
  • dom/Text.idl:
  • dom/WebKitNamedFlow.idl:
  • fileapi/FileReader.idl:
  • fileapi/FileReaderSync.idl:
  • html/DOMTokenList.idl:
  • html/HTMLCanvasElement.idl:
  • html/HTMLDialogElement.idl:
  • html/HTMLElement.idl:
  • html/HTMLEmbedElement.idl:
  • html/HTMLFrameElement.idl:
  • html/HTMLIFrameElement.idl:
  • html/HTMLInputElement.idl:
  • html/HTMLMediaElement.idl:
  • html/HTMLObjectElement.idl:
  • html/HTMLOptionsCollection.idl:
  • html/HTMLSelectElement.idl:
  • html/HTMLTableElement.idl:
  • html/HTMLTableRowElement.idl:
  • html/HTMLTableSectionElement.idl:
  • html/HTMLTextAreaElement.idl:
  • html/HTMLVideoElement.idl:
  • html/MediaController.idl:
  • html/TimeRanges.idl:
  • html/canvas/CanvasGradient.idl:
  • html/canvas/CanvasRenderingContext2D.idl:
  • html/canvas/DOMPath.idl:
  • html/canvas/DataView.idl:
  • html/canvas/OESVertexArrayObject.idl:
  • html/canvas/WebGLDebugShaders.idl:
  • html/canvas/WebGLRenderingContext.idl:
  • html/track/AudioTrackList.idl:
  • html/track/TextTrack.idl:
  • html/track/TextTrackCue.idl:
  • html/track/TextTrackList.idl:
  • html/track/VideoTrackList.idl:
  • loader/appcache/DOMApplicationCache.idl:
  • page/Crypto.idl:
  • page/DOMSelection.idl:
  • page/DOMWindow.idl:
  • page/EventSource.idl:
  • page/History.idl:
  • page/Performance.idl:
  • storage/Storage.idl:
  • svg/SVGAngle.idl:
  • svg/SVGAnimationElement.idl:
  • svg/SVGColor.idl:
  • svg/SVGDocument.idl:
  • svg/SVGLength.idl:
  • svg/SVGLengthList.idl:
  • svg/SVGLocatable.idl:
  • svg/SVGMatrix.idl:
  • svg/SVGNumberList.idl:
  • svg/SVGPaint.idl:
  • svg/SVGPathSegList.idl:
  • svg/SVGPointList.idl:
  • svg/SVGStringList.idl:
  • svg/SVGTextContentElement.idl:
  • svg/SVGTransformList.idl:
  • testing/InternalSettings.idl:
  • testing/Internals.idl:
  • workers/AbstractWorker.idl:
  • workers/DedicatedWorkerContext.idl:
  • workers/Worker.idl:
  • workers/WorkerContext.idl:
  • xml/XMLHttpRequest.idl:
  • xml/XMLHttpRequestUpload.idl:
  • xml/XMLSerializer.idl:
  • xml/XPathEvaluator.idl:
  • xml/XPathExpression.idl:
  • xml/XPathResult.idl:

Source/WebKit/win:

Replace raises() by [RaisesException].

  • Interfaces/DOMEvents.idl:
1:52 PM Changeset in webkit [151335] by beidson@apple.com
  • 3 edits
    2 adds in trunk

REGRESSION (r151088): Crash navigating away from non-loaded main resources with non-loaded scripts.
<rdar://problem/14052886> and https://bugs.webkit.org/show_bug.cgi?id=117278

Reviewed by Anders Carlsson.

Source/WebCore:

Test: http/tests/navigation/slow-loading-page-with-slow-script.php

  • html/parser/HTMLScriptRunner.cpp:

(WebCore::HTMLScriptRunner::isPendingScriptReady): The script runner might be told about a script

after it has already been detached (the main resource load has finished/failed/cancelled).
Don't dereference a null document in that case.

LayoutTests:

  • http/tests/navigation/slow-loading-page-with-slow-script-expected.txt: Added.
  • http/tests/navigation/slow-loading-page-with-slow-script.php: Added.
1:33 PM Changeset in webkit [151334] by aestes@apple.com
  • 3 edits in trunk/Source/WebCore

Compile WebCoreTestShimLibrary.cpp on iOS, but exclude the Carbon bits
https://bugs.webkit.org/show_bug.cgi?id=117360

Reviewed by Mark Rowe.

In r150114 we tried to make the WebCoreTestShim target build on iOS by
excluding its only source file from the build. While this allowed the
target to build, it prevented the target's product (WebCoreTestShim.dylib)
from being created. This causes xcodebuild to fail if you ask it to
install the target.

Fix this by building the target's product on iOS. Just use the
preprocessor to exclude the bits that won't build on iOS.

  • Configurations/WebCoreTestShim.xcconfig:
  • testing/WebCoreTestShimLibrary.cpp:
1:25 PM Changeset in webkit [151333] by fpizlo@apple.com
  • 2 edits in branches/dfgFourthTier/Source/JavaScriptCore

Unreviewed, fix release build.

  • ftl/FTLLink.cpp:
1:16 PM Changeset in webkit [151332] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit2

Reproducible crash with triple-finger-tap "define word" gesture on a Netflix video
https://bugs.webkit.org/show_bug.cgi?id=117020

Patch by Thomas Deniau <deniau@apple.com> on 2013-06-07
Reviewed by Ryosuke Niwa.

  • WebProcess/WebPage/mac/WebPageMac.mm:

(WebKit::WebPage::performDictionaryLookupAtLocation):
Don't invoke the Dictionary lookup when we failed to extract the range of the token
surrounding the tapped position.

1:11 PM Changeset in webkit [151331] by Hugo Parente Lima
  • 2 edits in trunk/Tools

[Qt] Remove Qt bits from Scripts/webkitperl/FeatureList.pm
https://bugs.webkit.org/show_bug.cgi?id=117315

Reviewed by Benjamin Poulain.

Qt doesn't use the default values specified on FeatureList since r44681,
this patch just remove a bit of noise.

  • Scripts/webkitperl/FeatureList.pm:
12:07 PM Changeset in webkit [151330] by roger_fong@apple.com
  • 2 edits in trunk/Source/WTF

Unreviewed. Makefile fix. Copy WTF.dll over as well.

  • WTF.vcxproj/WTF.make:
11:23 AM Changeset in webkit [151329] by mark.lam@apple.com
  • 10 edits in branches/dfgFourthTier/Source/JavaScriptCore

32-bit CallFrame::Location should use Instruction* for BytecodeLocation, not bytecodeOffset.
https://bugs.webkit.org/show_bug.cgi?id=117327.

Reviewed by Michael Saboff.

  • Renamed CallFrame::Location's Type to TypeTag.
  • Made the CallFrame::Location::TypeTag private, and provided type specific encoder functions. This reduces verbosity in client code.
  • Fixed the DFG's reifyInlinedCallFrames() on 32-bit ports to store a bytecode Instruction* in the CallFrame location instead of a bytecode offset.
  • Fixed places in JIT and FTL code which populate the CallFrame location (i.e. ArgumentCount tag) to use a Location encoder instead of storing the bytecodeOffset directly. This doesn't make any semantic difference, but it does assert that the stored value does not have bits where we would expect Location TypeTags to be.
  • dfg/DFGJITCompiler.h:

(JSC::DFG::JITCompiler::beginCall):

  • dfg/DFGOSRExitCompilerCommon.cpp:

(JSC::DFG::reifyInlinedCallFrames):

  • ftl/FTLLink.cpp:

(JSC::FTL::link):

  • interpreter/CallFrame.cpp:

(JSC::CallFrame::setLocationAsBytecodeOffset):

  • interpreter/CallFrame.h:

(Location):

  • interpreter/CallFrameInlines.h:

(JSC::CallFrame::Location::encodeAsBytecodeOffset):
(JSC::CallFrame::Location::encodeAsBytecodeInstruction):
(JSC::CallFrame::Location::encodeAsCodeOriginIndex):
(JSC::CallFrame::Location::encodeAsInlinedCode):
(JSC::CallFrame::Location::isBytecodeLocation):
(JSC::CallFrame::setIsInlinedFrame):
(JSC::CallFrame::hasLocationAsBytecodeOffset):
(JSC::CallFrame::setLocationAsBytecodeOffset):

  • jit/JITCall.cpp:

(JSC::JIT::compileOpCall):

  • jit/JITCall32_64.cpp:

(JSC::JIT::compileOpCall):

  • jit/JITInlines.h:

(JSC::JIT::updateTopCallFrame):

11:20 AM Changeset in webkit [151328] by commit-queue@webkit.org
  • 5 edits
    1 delete in trunk/Source/WTF

Unreviewed, rolling out r151318.
http://trac.webkit.org/changeset/151318
https://bugs.webkit.org/show_bug.cgi?id=117356

Broke Windows Release Build (Requested by bfulgham on
#webkit).

  • WTF.vcxproj/WTF.vcxproj:
  • WTF.vcxproj/WTFCommon.props:
  • WTF.vcxproj/WTFCoreFoundation.props: Removed.
  • WTF.vcxproj/WTFDebug.props:
  • WTF.vcxproj/WTFRelease.props:
10:59 AM Changeset in webkit [151327] by rniwa@webkit.org
  • 4 edits in trunk/Source/WebCore

REGRESSION: Lines jump up and down while typing Chinese or Japanese
https://bugs.webkit.org/show_bug.cgi?id=115931

Reviewed by Darin Adler.

The bug was caused by Font::width caching the width of text even when the font fallbacks existed when fallbackFonts
argument was null; because of this, a later call to Font::width was returning the width without filling up
fallbackFonts even if it was not null this time.

Fixed the bug by adding a local fallback fonts hash set, and checking the emptiness of this variable in Font::width.
Also added pass fallbackFonts around in various places to make use of the cached font fallbacks.

No new tests. Unfortunately I haven't been able to make a reliable reduction for this bug.

  • platform/graphics/Font.cpp:

(WebCore::Font::width):

  • rendering/RenderBlockLineLayout.cpp:

(WebCore::measureHyphenWidth):
(WebCore::setLogicalWidthForTextRun):
(WebCore::textWidth):
(WebCore::tryHyphenating):
(WebCore::RenderBlock::LineBreaker::nextSegmentBreak):

  • rendering/RenderText.cpp:

(WebCore::maxWordFragmentWidth):
(WebCore::RenderText::computePreferredLogicalWidths):

10:22 AM Changeset in webkit [151326] by fpizlo@apple.com
  • 2 edits in branches/dfgFourthTier/Source/JavaScriptCore

fourthTier: Reenable the DFG optimization fixpoint now that it's profitable to do so with concurrent compilation
https://bugs.webkit.org/show_bug.cgi?id=117331

Rubber stamped by Sam Weinig.

  • dfg/DFGPlan.cpp:

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

10:15 AM Changeset in webkit [151325] by zandobersek@gmail.com
  • 4 edits in trunk

[regression] build failure WebKitFontFamilyNames.h missing
https://bugs.webkit.org/show_bug.cgi?id=117178

Reviewed by Sam Weinig.

.:

  • GNUmakefile.am: List platform_sources under the BUILT_SOURCES list.

Source/WebCore:

  • GNUmakefile.am: Make libPlatform and other sources depend on the generated platform sources. This should prevent

build failures in source code that's depending on the generated platform sources.

9:37 AM Changeset in webkit [151324] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit2

[GTK] Weird behaviour and no clues to the user when the shared memory file can't be opened
https://bugs.webkit.org/show_bug.cgi?id=117063

Patch by Enrique Ocana Gonzalez <eocanha@igalia.com> on 2013-06-07
Reviewed by Anders Carlsson.

Log error message when the shared memory file can't be opened in
Unix platform using a release build

  • Platform/unix/SharedMemoryUnix.cpp:

(WebKit::SharedMemory::create):

8:57 AM Changeset in webkit [151323] by Chris Fleizach
  • 10 edits in trunk

MathML line fraction needs to parse number values
https://bugs.webkit.org/show_bug.cgi?id=117305

Reviewed by Darin Adler.

Source/WebCore:

The line fraction thickness was not handling arbitrary thickness numbers.
The accessibility code was not handling default values for line thickness, so
it made sense to have AX rely on the RenderFraction object to retrive the thickness.

Modified existing tests to cover new behavior.

  • accessibility/AccessibilityRenderObject.cpp:

(WebCore::AccessibilityRenderObject::mathLineThickness):

  • rendering/mathml/RenderMathMLFraction.cpp:

(WebCore::RenderMathMLFraction::updateFromElement):

  • rendering/mathml/RenderMathMLFraction.h:

(WebCore::RenderMathMLFraction::lineThickness):
(WebCore::toRenderMathMLFraction):

LayoutTests:

Math fractions test now encodes for an arbitrary thickness number.
Accessibility test handles the default line thickness.

  • mathml/presentation/fractions.xhtml:
  • platform/mac/accessibility/mathml-line-fraction-expected.txt:
  • platform/mac/accessibility/mathml-line-fraction.html:
  • platform/mac/mathml/presentation/fractions-expected.png:
  • platform/mac/mathml/presentation/fractions-expected.txt:
8:38 AM WebKitIDL edited by Christophe Dumez
Add documentation for [GetterRaisesException] / … (diff)
8:36 AM Changeset in webkit [151322] by Claudio Saavedra
  • 4 edits in trunk/Source/WebCore

[rendering] Use foreground color to render the overtype caret
https://bugs.webkit.org/show_bug.cgi?id=117347

Reviewed by Darin Adler.

Currently, the overtype caret is rendered using the colors of
a normal selection, which is confusing. This patch enables RenderObject
to differentiate between a normal and a overtype caret selection,
in order to use a different color for the latter.

Also, let RenderView update the selection if this is unchanged
when going from a overtype caret to one character selection and
viceversa.

  • rendering/RenderObject.cpp:

(WebCore::RenderObject::selectionBackgroundColor):

  • rendering/RenderView.cpp:

(WebCore::RenderView::setSelection):

  • rendering/RenderView.h:
8:32 AM Changeset in webkit [151321] by Christophe Dumez
  • 67 edits in trunk/Source/WebCore

Get rid of outdated getter / setter raises from Web IDL
https://bugs.webkit.org/show_bug.cgi?id=117346

Reviewed by Darin Adler.

Stop using "getter / setter raises" in the IDL as this is no longer part of
the Web IDL specification. Web IDL no longer specifies exceptions for
attribute getters or setters. Instead, it is now explained in prose.

WebKit still needs to know if the getter / setter can throw an exception
(but does not need the exception name) so this patch adds 2 WebKit specific
IDL extended attributes: [GetterRaisesException] / [SetterRaisesException].
The naming is consistent with Blink.

This results in more standard and concise IDL. This also simplifies a lot
the code of the IDL parser.

Note that this patch does not remove "raises()" from the IDL methods yet.
This should be replaced by [RaisesException] IDL extended attribute in a
later patch.

No new tests, no behavior change.

  • Modules/indexeddb/IDBRequest.idl:
  • Modules/mediasource/MediaSource.idl:
  • Modules/mediasource/SourceBuffer.idl:
  • Modules/mediastream/RTCDataChannel.idl:
  • Modules/mediastream/RTCPeerConnection.idl:
  • Modules/mediastream/RTCSessionDescription.idl:
  • Modules/mediastream/RTCStatsResponse.idl:
  • Modules/webaudio/AnalyserNode.idl:
  • Modules/webaudio/AudioBufferSourceNode.idl:
  • Modules/webaudio/AudioNode.idl:
  • Modules/webdatabase/SQLResultSet.idl:
  • bindings/scripts/CodeGeneratorCPP.pm:

(GenerateImplementation):

  • bindings/scripts/CodeGeneratorGObject.pm:

(GenerateProperty):
(GenerateFunctions):

  • bindings/scripts/CodeGeneratorJS.pm:

(GenerateImplementation):

  • bindings/scripts/CodeGeneratorObjC.pm:

(GenerateImplementation):

  • bindings/scripts/IDLAttributes.txt:
  • bindings/scripts/IDLParser.pm:

(parseAttributeRest):
(parseAttributeRestOld):

  • bindings/scripts/test/TestObj.idl:
  • bindings/scripts/test/TestTypedefs.idl:
  • css/CSSCharsetRule.idl:
  • css/CSSRule.idl:
  • css/CSSStyleDeclaration.idl:
  • css/CSSValue.idl:
  • css/MediaList.idl:
  • dom/Attr.idl:
  • dom/CharacterData.idl:
  • dom/Document.idl:
  • dom/Node.idl:
  • dom/ProcessingInstruction.idl:
  • dom/Range.idl:
  • dom/ShadowRoot.idl:
  • dom/TreeWalker.idl:
  • html/HTMLElement.idl:
  • html/HTMLInputElement.idl:
  • html/HTMLMarqueeElement.idl:
  • html/HTMLMediaElement.idl:
  • html/HTMLMeterElement.idl:
  • html/HTMLOptionElement.idl:
  • html/HTMLOptionsCollection.idl:
  • html/HTMLProgressElement.idl:
  • html/HTMLSelectElement.idl:
  • html/HTMLTableElement.idl:
  • html/HTMLTextAreaElement.idl:
  • html/MediaController.idl:
  • html/track/TextTrackCue.idl:
  • html/track/TextTrackRegion.idl:
  • page/DOMWindow.idl:
  • storage/Storage.idl:
  • svg/SVGAltGlyphElement.idl:
  • svg/SVGAngle.idl:
  • svg/SVGAnimatedBoolean.idl:
  • svg/SVGAnimatedEnumeration.idl:
  • svg/SVGAnimatedInteger.idl:
  • svg/SVGAnimatedNumber.idl:
  • svg/SVGAnimatedString.idl:
  • svg/SVGElement.idl:
  • svg/SVGGlyphRefElement.idl:
  • svg/SVGLangSpace.idl:
  • svg/SVGLength.idl:
  • svg/SVGPreserveAspectRatio.idl:
  • svg/SVGSVGElement.idl:
  • svg/SVGScriptElement.idl:
  • svg/SVGStyleElement.idl:
  • svg/SVGViewSpec.idl:
  • xml/XMLHttpRequest.idl:
  • xml/XPathResult.idl:
8:19 AM Changeset in webkit [151320] by kangil.han@samsung.com
  • 3 edits in trunk/Source/WebCore

Remove unused header includes in Document
https://bugs.webkit.org/show_bug.cgi?id=117339

Reviewed by Andreas Kling.

Minor code cleanup.

  • dom/Document.cpp:
  • dom/Document.h:
8:12 AM Changeset in webkit [151319] by allan.jensen@digia.com
  • 2 edits in trunk/Source/WebCore

Unnecessary use of Layout types in GraphicsLayer::paintGraphicsLayerContents
https://bugs.webkit.org/show_bug.cgi?id=117340

Reviewed by Darin Adler.

There is no reason to use Layout types when copying from Int types to Int types.

  • platform/graphics/GraphicsLayer.cpp:

(WebCore::GraphicsLayer::paintGraphicsLayerContents):

7:43 AM Changeset in webkit [151318] by commit-queue@webkit.org
  • 5 edits
    1 add in trunk/Source/WTF

[WinCairo] WTF.dll is linking with CoreFoundation.lib in VS2010.
https://bugs.webkit.org/show_bug.cgi?id=117294

Patch by peavo@outlook.com <peavo@outlook.com> on 2013-06-07
Reviewed by Darin Adler.

WinCairo build should not use CoreFoundation.

  • WTF.vcxproj/WTF.vcxproj: Exclude unneeded file from WinCairo build.
  • WTF.vcxproj/WTFCommon.props: Removed CoreFoundation.lib from common props.
  • WTF.vcxproj/WTFCoreFoundation.props: Added.
  • WTF.vcxproj/WTFDebug.props: Inherit from WTFCoreFoundations.props.
  • WTF.vcxproj/WTFRelease.props: Inherit from WTFCoreFoundations.props.
7:40 AM Changeset in webkit [151317] by kihong.kwon@samsung.com
  • 3 edits in trunk/LayoutTests

REGRESSION: r149001 made proximity test fail.
https://bugs.webkit.org/show_bug.cgi?id=117343

Reviewed by Christophe Dumez.

Update window-property.html test cases for Device Proximity Event.
The global constructors are no longer enumerable after r149001.

  • proximity/window-property-expected.txt:
  • proximity/window-property.html:
6:36 AM Changeset in webkit [151316] by g.czajkowski@samsung.com
  • 2 edits in trunk/Source/WebCore

[EFL][GTK] TextCheckerEnchant uses deprecated enchant_dict_add_to_personal
https://bugs.webkit.org/show_bug.cgi?id=117335

Reviewed by Christophe Dumez.

enchant_dict_add_to_personal has been deprecated at r22321 in Enchant repository.

No behavior change, no new tests needed.

  • platform/text/enchant/TextCheckerEnchant.cpp:

(WebCore::TextCheckerEnchant::learnWord):
Use enchant_dict_add instead of enchant_dict_add_to_personal.

6:09 AM Changeset in webkit [151315] by zarvai@inf.u-szeged.hu
  • 3 edits in trunk/LayoutTests

[Qt] Unreviewed gardening. Skipping failing tests.
https://bugs.webkit.org/show_bug.cgi?id=117295
https://bugs.webkit.org/show_bug.cgi?id=117336
https://bugs.webkit.org/show_bug.cgi?id=117338

Patch by Gabor Abraham <abrhm@inf.u-szeged.hu> on 2013-06-07

  • platform/qt-5.0-wk1/TestExpectations:
  • platform/qt/TestExpectations:
5:26 AM Changeset in webkit [151314] by g.czajkowski@samsung.com
  • 5 edits in trunk/Source/WebKit2

[EFL][WK2] Context menu spellchecking items are not available when "Check Spelling While Typing" is off
https://bugs.webkit.org/show_bug.cgi?id=117190

Reviewed by Christophe Dumez.

Context menu items (suggestions, learn and ignore word) are not available
due to missing dictionary. To get the suggestions for the misspelled word,
the dictionary has to be loaded first.

WebKit loads the default dictionary when check spelling while typing is being enabled.
However, context menu spellchecking items should be present even if this setting is off.

  • UIProcess/API/efl/ewk_context.cpp:

(EwkContext::EwkContext):
Load the user's default dictionary to ensure context menu spellchecking items.
The dictionary is loaded asynchronously so it shouldn't delay application.

  • UIProcess/API/efl/ewk_text_checker.h:

Update doc. Spelling suggestions, learn and ignore word should be available
independently of checking spelling while typing setting.

  • UIProcess/API/efl/tests/test_ewk2_text_checker.cpp:

(onContextMenuShow):
(TEST_F):
Add two unit tests to check whether the default dictionary is loaded and
whether the context menu spelling items are available.

  • UIProcess/efl/TextCheckerEfl.cpp:

(WebKit::TextChecker::setContinuousSpellCheckingEnabled):
(WebKit::TextChecker::continuousSpellCheckingEnabledStateChanged):
Not set the default dictionary while enabling the setting, it's already loaded.

4:20 AM Changeset in webkit [151313] by commit-queue@webkit.org
  • 5 edits in trunk/Source/WebKit2

[EFL][WK2] Implement customContextMenuItemSelected
https://bugs.webkit.org/show_bug.cgi?id=117298

Patch by Michał Pakuła vel Rutka <Michał Pakuła vel Rutka> on 2013-06-07
Reviewed by Christophe Dumez.

When custom context menu item is selected using ewk API, the feedback is not
sent back to application, as customContextMenuItemSelected was unimplemented in
contextMenuClientEfl.

  • UIProcess/API/efl/EwkView.cpp:

(EwkView::customContextMenuItemSelected):

  • UIProcess/API/efl/EwkView.h:
  • UIProcess/API/efl/ewk_view.h: added custom_item_selected callback.
  • UIProcess/efl/ContextMenuClientEfl.cpp:

(customContextMenuItemSelected):
(ContextMenuClientEfl::ContextMenuClientEfl):

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

Frame flattening: crash when child iframe is removed during beforeload.
https://bugs.webkit.org/show_bug.cgi?id=116220

Patch by Zalan Bujtas <Alan Bujtas> on 2013-06-07
Reviewed by Antti Koivisto.

FrameView can get destroyed in updateWidget(). Normally, it is protected by layout()
but with frame flattening on, it can also be called asynchronously through the
post layout timer.

Source/WebCore:

Test: fast/frames/flattening/crash-remove-iframe-during-object-beforeload.html

  • page/FrameView.cpp:

(WebCore::FrameView::performPostLayoutTasks):

LayoutTests:

  • fast/frames/flattening/crash-remove-iframe-during-object-beforeload-expected.txt: Added.
  • fast/frames/flattening/crash-remove-iframe-during-object-beforeload.html: Added.
3:07 AM Changeset in webkit [151311] by commit-queue@webkit.org
  • 1 edit
    8 adds in trunk/LayoutTests

[CSS Regions] The presence of a flow-from declaration in a CSS rule using :hover effectively disables the rule
https://bugs.webkit.org/show_bug.cgi?id=111585

Created tests for changing flow-into and flow-from inside the :hover pseudo-class.
The actual problem was fixed along with https://bugs.webkit.org/show_bug.cgi?id=7555

Patch by Radu Stavila <stavila@adobe.com> on 2013-06-07
Reviewed by Antti Koivisto.

  • fast/regions/hover-single-flow-from-none-expected.html: Added.
  • fast/regions/hover-single-flow-from-none.html: Added.
  • fast/regions/hover-single-flow-from-other-expected.html: Added.
  • fast/regions/hover-single-flow-from-other.html: Added.
  • fast/regions/hover-single-flow-into-none-expected.html: Added.
  • fast/regions/hover-single-flow-into-none.html: Added.
  • fast/regions/hover-single-flow-into-other-expected.html: Added.
  • fast/regions/hover-single-flow-into-other.html: Added.
1:57 AM Changeset in webkit [151310] by Carlos Garcia Campos
  • 11 edits in trunk/Source/WebCore

Make CachedResource virtual methods overridden in derived classes private
https://bugs.webkit.org/show_bug.cgi?id=117289

Reviewed by Darin Adler.

And mark them as OVERRIDE too. Also mark all CachedResource
derived classes as FINAL.

  • inspector/InspectorPageAgent.cpp:

(WebCore::cachedResourcesForFrame):

  • loader/cache/CachedCSSStyleSheet.h:
  • loader/cache/CachedFont.h:
  • loader/cache/CachedImage.h:
  • loader/cache/CachedRawResource.h:
  • loader/cache/CachedSVGDocument.h:
  • loader/cache/CachedScript.h:
  • loader/cache/CachedShader.h:
  • loader/cache/CachedTextTrack.h:
  • loader/cache/CachedXSLStyleSheet.h:
1:00 AM Changeset in webkit [151309] by mihnea@adobe.com
  • 7 edits
    2 adds in trunk

[CSSRegions] getBoundingClientRect wrong for inline content nodes
https://bugs.webkit.org/show_bug.cgi?id=117290

Reviewed by Alexandru Chiculita.

Source/WebCore:

getBoundingClientRect returned incorrect values for inline content that
was directly flowed inside regions because its mapLocalToContainer was not
properly patched as its RenderBox counterpart. This patch adds mapLocalToContainer
method in RenderFlowThread so that is properly called for all the elements inside the
flow thread.

Also, modified offsetFromContainer so that if the container is the flow thread,
offsetDependsOnPoint is set to true which further sets RenderGeometryMapStep::m_isNonUniform
to true for each step added in pushMappingToContainer methods.

Test: fast/regions/flowed-inline-content-bounding-client-rect.html

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::mapLocalToContainer):
(WebCore::RenderBox::pushMappingToContainer):
(WebCore::RenderBox::offsetFromContainer):

  • rendering/RenderFlowThread.cpp:

(WebCore::RenderFlowThread::mapLocalToContainer):

  • rendering/RenderFlowThread.h:
  • rendering/RenderInline.cpp:

(WebCore::RenderInline::offsetFromContainer):

  • rendering/RenderObject.cpp:

(WebCore::RenderObject::offsetFromContainer):

LayoutTests:

Add test for inline content nodes flowed in regions and in regions with transform.

  • fast/regions/flowed-inline-content-bounding-client-rect-expected.txt: Added.
  • fast/regions/flowed-inline-content-bounding-client-rect.html: Added.
12:51 AM Changeset in webkit [151308] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

[EFL] Implement colorpicker for HTML5 input type color on Minibrowser
https://bugs.webkit.org/show_bug.cgi?id=115890

Patch by Jungsik Tae <davidtlay88@gmail.com> on 2013-06-07
Reviewed by Christophe Dumez.

When user clicks HTML5 input type color,
color selector window is created on browser object by using elm_colorchooser_add().
It can listen a signal dismissing colorpicker by calling the ewk_color_picker_color_set().
The evas_object_color_set() sets a color value returning to browser.

  • MiniBrowser/efl/main.c:

(window_free): When we delete parent window, deleting the colorpicker object.
(on_color_changed): Change color of rectangle to show color selected by user.
(on_color_item_selected): Change color of rectangle when clicked color palettes offered by elm_color_chooser().
(on_color_picker_ok_clicked): Call on_colorpicker_dismiss() and set the color.
(on_color_picker_cancel_clicked): Get a preexisting color and call ewk_color_picker_color_set().
(on_color_picker_dismiss): Delete colorpicker object.
(on_color_picker_request): Create colorpicker window object.
(window_create):

Jun 6, 2013:

10:27 PM Changeset in webkit [151307] by kangil.han@samsung.com
  • 6 edits in trunk/Source/WebCore

Minor code cleanup to remove unused header includes
https://bugs.webkit.org/show_bug.cgi?id=117283

Reviewed by Andreas Kling.

  • loader/cache/CachedResourceClient.h:
  • rendering/RenderBlock.cpp:
  • rendering/RenderBox.cpp:
  • rendering/RenderBoxModelObject.cpp:
  • rendering/RenderObject.cpp:
6:24 PM Changeset in webkit [151306] by Lucas Forschler
  • 2 edits in tags/Safari-537.44/Source/WebKit2

Merged r151305. <rdar://problem/14029144>

6:12 PM Changeset in webkit [151305] by oliver@apple.com
  • 2 edits in trunk/Source/WebKit2

Completely initialize ChildProcess state on launch
https://bugs.webkit.org/show_bug.cgi?id=117328

Reviewed by Sam Weinig.

Use setProcessSuppressionEnabledInternal to avoid setProcessSuppressionEnabled
"optimizing" our initialization away.

  • Shared/mac/ChildProcessMac.mm:

(WebKit::ChildProcess::platformInitialize):

5:56 PM Changeset in webkit [151304] by roger_fong@apple.com
  • 2 edits in trunk/Source/WebKit

Unreviewed. Build configuration fix. WebKitExportGenerator's include path should fall back to
$(WebKit_Libraries)\include\WebCore if $(ConfigurationBuildDir)\include\WebCore doesn't exist.

  • WebKit.vcxproj/WebKitExportGenerator/WebKitExportGeneratorCommon.props:
5:15 PM Changeset in webkit [151303] by fpizlo@apple.com
  • 26 edits
    1 add in branches/dfgFourthTier/Source/JavaScriptCore

fourthTier: DFG CFA should know when it hits a contradiction
https://bugs.webkit.org/show_bug.cgi?id=117272

Reviewed by Oliver Hunt.

This makes the DFG CFA immediately detect when it hit a contradiction. Previously
we might not know this: for example if we did an int32 type check on a known string;
the code would definitely always exit but the CFA would think that we wouldn't have
even though it would have computed a BOTTOM (i.e. contradictory) value for that
variable.

This requires two other changes:

  • CFA must report contradictions as if they are frequent exit sites, since contradictory speculations will subsequently get replaced with ForceOSRExit. ForceOSRExit cannot itself report profiling data back to the DFG::ExitProfile. So, we do this on behalf of the speculation, eagerly, within the CFA. This also has the effect of speeding convergence somewhat. We may want to revisit this later; for example we might want to instead have the notion of a ForceOSRExit that knows the set of speculations that got folded into it.


  • This revealed a bug where the CFA was modeling CheckStructure on a node that had a known singleton m_futurePossibleStructure set somewhat differently than the constant folder. If the CheckStructure was checking a structure set with two or more structures in it, it would not filter the abstract value. But the constant folder would turn this into a watchpoint on the singleton structure, thereby filtering the value. This discrepancy meant that we wouldn't realize the contradiction until the backend, and the AbstractState::bail() method asserts that we always realize contradictions in the constant folder.

(JSC::CodeBlock::addFrequentExitSite):
(JSC::CodeBlock::hasExitSite):
(CodeBlock):

  • bytecode/DFGExitProfile.cpp:

(JSC::DFG::ExitProfile::add):
(JSC::DFG::ExitProfile::hasExitSite):
(JSC::DFG::QueryableExitProfile::QueryableExitProfile):
(JSC::DFG::QueryableExitProfile::~QueryableExitProfile):
(DFG):
(JSC::DFG::QueryableExitProfile::initialize):

  • bytecode/DFGExitProfile.h:

(JSC::DFG::FrequentExitSite::FrequentExitSite):
(ExitProfile):
(JSC::DFG::ExitProfile::hasExitSite):
(QueryableExitProfile):

  • bytecode/ExitKind.cpp:

(JSC::exitKindToString):

  • dfg/DFGAbstractState.cpp:

(JSC::DFG::AbstractState::AbstractState):
(JSC::DFG::AbstractState::beginBasicBlock):
(JSC::DFG::AbstractState::reset):
(JSC::DFG::AbstractState::startExecuting):
(JSC::DFG::AbstractState::executeEffects):
(JSC::DFG::AbstractState::execute):
(JSC::DFG::AbstractState::filter):
(DFG):
(JSC::DFG::AbstractState::filterArrayModes):
(JSC::DFG::AbstractState::filterByValue):
(JSC::DFG::AbstractState::bail):

  • dfg/DFGAbstractState.h:

(AbstractState):
(JSC::DFG::AbstractState::filter):
(JSC::DFG::AbstractState::filterArrayModes):
(JSC::DFG::AbstractState::filterByValue):
(JSC::DFG::AbstractState::filterByType):

  • dfg/DFGAbstractValue.cpp:

(JSC::DFG::AbstractValue::filter):
(JSC::DFG::AbstractValue::filterArrayModes):
(DFG):
(JSC::DFG::AbstractValue::filterByValue):
(JSC::DFG::AbstractValue::normalizeClarity):

  • dfg/DFGAbstractValue.h:

(AbstractValue):

  • dfg/DFGByteCodeParser.cpp:

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

  • dfg/DFGCFAPhase.cpp:

(JSC::DFG::CFAPhase::performBlockCFA):

  • dfg/DFGCapabilities.cpp:

(JSC::DFG::debugFail):
(JSC::DFG::capabilityLevel):

  • dfg/DFGConstantFoldingPhase.cpp:

(JSC::DFG::ConstantFoldingPhase::foldConstants):
(ConstantFoldingPhase):
(JSC::DFG::ConstantFoldingPhase::paintUnreachableCode):

  • dfg/DFGFiltrationResult.h: Added.

(DFG):

  • dfg/DFGFixupPhase.cpp:

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

  • dfg/DFGNodeType.h:

(DFG):

  • dfg/DFGOSRExitBase.cpp:

(JSC::DFG::OSRExitBase::considerAddingAsFrequentExitSiteSlow):

  • dfg/DFGOSRExitBase.h:

(JSC::DFG::OSRExitBase::considerAddingAsFrequentExitSite):

  • dfg/DFGPredictionPropagationPhase.cpp:

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

  • dfg/DFGSpeculativeJIT.cpp:

(JSC::DFG::SpeculativeJIT::backwardTypeCheck):
(JSC::DFG::SpeculativeJIT::bail):
(DFG):
(JSC::DFG::SpeculativeJIT::compile):
(JSC::DFG::SpeculativeJIT::compileToStringOnCell):
(JSC::DFG::SpeculativeJIT::speculateStringObject):
(JSC::DFG::SpeculativeJIT::speculateStringOrStringObject):

  • dfg/DFGSpeculativeJIT.h:

(SpeculativeJIT):

  • dfg/DFGSpeculativeJIT32_64.cpp:

(JSC::DFG::SpeculativeJIT::fillSpeculateIntInternal):
(JSC::DFG::SpeculativeJIT::fillSpeculateDouble):
(JSC::DFG::SpeculativeJIT::fillSpeculateCell):
(JSC::DFG::SpeculativeJIT::fillSpeculateBoolean):
(JSC::DFG::SpeculativeJIT::compile):

  • dfg/DFGSpeculativeJIT64.cpp:

(JSC::DFG::SpeculativeJIT::fillSpeculateIntInternal):
(JSC::DFG::SpeculativeJIT::fillSpeculateDouble):
(JSC::DFG::SpeculativeJIT::fillSpeculateCell):
(JSC::DFG::SpeculativeJIT::fillSpeculateBoolean):
(JSC::DFG::SpeculativeJIT::compile):

  • ftl/FTLCapabilities.cpp:

(JSC::FTL::canCompile):

  • ftl/FTLLowerDFGToLLVM.cpp:

(JSC::FTL::LowerDFGToLLVM::compileNode):
(JSC::FTL::LowerDFGToLLVM::appendTypeCheck):

5:12 PM Changeset in webkit [151302] by jer.noble@apple.com
  • 4 edits in trunk/Source/WebCore

Restrict WebAudio from playing when disallowed by page.
https://bugs.webkit.org/show_bug.cgi?id=117310

Reviewed by Eric Carlson.

Add a new behavior restriction which would mute WebAudio
when media playback is disallowed by the page.

  • Modules/webaudio/AudioContext.cpp:

(WebCore::AudioContext::constructCommon): Set the RequirePageConsentForAudioStartRestriction

restriction for the Mac port

(WebCore::AudioContext::document): Cast the execution context to a document.
(WebCore::AudioContext::lazyInitialize): Call startRendering() instead of

m_destinationNode->startRendering() directly.

(WebCore::AudioContext::startRendering): If media loading is disabled, add

a mediaCanStart listener.

(WebCore::AudioContext::mediaCanStart): Remove the RequirePageConsentForAudioStartRestriction.

  • Modules/webaudio/AudioContext.h:

(WebCore::AudioContext::pageConsentRequiredForAudioStart): Added; simple wrapper.

  • Modules/webaudio/AudioDestinationNode.cpp:

(WebCore::AudioDestinationNode::render): Mute output if pageConsentRequiredForAudioStart().

4:53 PM Changeset in webkit [151301] by jer.noble@apple.com
  • 6 edits in trunk/Source/WebCore

Upstream iOS WebAudio behavior restrictions.
https://bugs.webkit.org/show_bug.cgi?id=117151

Reviewed by Eric Carlson.

2012-06-25 Jeffrey Pfau <jpfau@apple.com>

<rdar://problem/11041007> WebAudio should restrict playback to user interaction on iOS

Added a bevahior restrictions field in AudioContext that behaviors similarly to
the one in HTMLMediaElement. Restrictions are lifted when JavaScript calls noteOn,
noteGrainOn or startRendering from a user gesture event.

Reviewed by Dean Jackson.

No new tests, testing framework doesn't support web audio.

  • Modules/webaudio/AudioBufferSourceNode.cpp: (WebCore::AudioBufferSourceNode::startGrain):
  • Modules/webaudio/AudioContext.cpp: (WebCore::AudioContext::AudioContext): (WebCore::AudioContext::constructCommon): (WebCore::AudioContext::lazyInitialize): (WebCore::AudioContext::startRendering):
  • Modules/webaudio/AudioContext.h: (WebCore::AudioContext::userGestureRequiredForAudioStart): (WebCore::AudioContext::addBehaviorRestriction): (WebCore::AudioContext::removeBehaviorRestriction):
  • Modules/webaudio/AudioDestinationNode.cpp: (WebCore::AudioDestinationNode::render):
  • Modules/webaudio/AudioScheduledSourceNode.cpp: (WebCore::AudioScheduledSourceNode::start):
4:37 PM Changeset in webkit [151300] by commit-queue@webkit.org
  • 5 edits in trunk/Tools

svn-apply cannot apply patches which is generated by git to files that contain space characters in their path
https://bugs.webkit.org/show_bug.cgi?id=111066

Patch by Yuki Sekiguchi <yuki.sekiguchi@access-company.com> on 2013-06-06
Reviewed by Daniel Bates.

Fixes an issue where parseGitDiffHeader() would extract the wrong substring of the diff --git line as the target file path when the source file path contains a space character.

ParseGitDiffHeader() should support the path which line has space characters.
To support this, I changed parsing algorithm like the following:

  • When the diff have prefix, we consider next characters after "b/" as part of a file path.
  • When the diff have no prefix, we assume that both path have same directory prefix, and we split the diff line using the prefix.

We only support --src-prefix and --dst-prefix don't contain a non-word character (\W) and end with '/' because we cannot distinguish the prefix from directory path.

If the path has a tab, the patch(1) command thinks file path is characters before the tab.
I added a dummy tab and revision when we convert git diff to svn diff.

  • Scripts/VCSUtils.pm:

(parseGitDiffHeader):

  • Scripts/webkitperl/VCSUtils_unittest/parseDiff.pl: Update expectations for dummy revision.
  • Scripts/webkitperl/VCSUtils_unittest/parseDiffWithMockFiles.pl: Ditto.
  • Scripts/webkitperl/VCSUtils_unittest/parseGitDiffHeader.pl: Ditto.
    • Added test case for files which have space in their path and --src-prefix and --dst-prefix option.
4:33 PM Changeset in webkit [151299] by Lucas Forschler
  • 4 edits in branches/safari-537.43-branch/Source

Versioning.

4:33 PM Changeset in webkit [151298] by commit-queue@webkit.org
  • 8 edits
    2 adds in trunk

Expose HTMLCanvasElement supportsContext
https://bugs.webkit.org/show_bug.cgi?id=70117

Patch by Ruth Fong <ruth_fong@apple.com> on 2013-06-06
Reviewed by Darin Adler.

Source/WebCore:

Adds the supportsContext function for <canvas> elements as speced here:
http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#dom-canvas-supportscontext

Test: fast/canvas/webgl/canvas-supports-context.html

  • bindings/js/JSHTMLCanvasElementCustom.cpp:

(WebCore::get3DContextAttributes): Added.
Refactored function from JSHTMLCanvasElement::getContext that parses attributes.
(WebCore::JSHTMLCanvasElement::getContext): Updated to use refactored function.
(WebCore::JSHTMLCanvasElement::supportsContext): Added.
Exposes JS function supportsContext.

  • html/HTMLCanvasElement.cpp:

(WebCore::HTMLCanvasElement::getContext): Updated to use refactored functions.
(WebCore::HTMLCanvasElement::supportsContext): Added.
Implements supportsContext function based on contextId parameter (i.e. '2d').

  • html/HTMLCanvasElement.h: Added refactored functions from HTMLCanvasElement::getContext.
  • html/HTMLCanvasElement.idl:

LayoutTests:

  • fast/canvas/webgl/canvas-supports-context-expected.txt: Added.
  • fast/canvas/webgl/canvas-supports-context.html: Added.

tests the supportsContext function for <canvas> elements, ensures that
supportsContext's implementation is consistent with that of getContext,
and tests that supportsContext and getContext behave appropriately when
malformed attributes are passed in.

  • fast/canvas/webgl/context-attributes-alpha-depth-stencil-antialias-expected.txt: Updated.
  • fast/canvas/webgl/context-attributes-alpha-depth-stencil-antialias.html: Updated.

Now also tests default values for context attributes (i.e. when attributes aren't explicitly set).

4:31 PM Changeset in webkit [151297] by Lucas Forschler
  • 1 copy in tags/Safari-537.43.8

New Tag.

3:56 PM Changeset in webkit [151296] by Brent Fulgham
  • 2 edits in trunk/LayoutTests

[Windows] More unreviewed TestExpectation gardening.

  • platform/win/TestExpectations:
3:48 PM Changeset in webkit [151295] by zoltan@webkit.org
  • 3 edits in trunk/Source/WebCore

[CSS Shapes] Rename updateLineBoundariesForExclusions to updateShapeAndSegmentsForCurrentLine
https://bugs.webkit.org/show_bug.cgi?id=117308

Reviewed by Alexandru Chiculita.

We have a standalone specification for CSS Shapes now: http://dev.w3.org/csswg/css-shapes/
this change renames updateLineBoundariesForExclusions to updateShapeAndSegmentsForCurrentLine.

No behavior change, no new tests needed.

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

(WebCore::RenderBlock::updateLineBoundariesForShapes):
(WebCore::RenderBlock::layoutRunsAndFloatsInRange):

3:45 PM Changeset in webkit [151294] by Simon Fraser
  • 5 edits in trunk/Tools

Add a menu item to MiniBrowser to toggle Transparent windows
https://bugs.webkit.org/show_bug.cgi?id=117316

Reviewed by Anders Carlsson.

Add a menu item that toggles "Transparent window" mode, which is exposed
via private WebKit API and WebKit2 API.

  • MiniBrowser/mac/BrowserWindowController.h:
  • MiniBrowser/mac/MainMenu.xib:
  • MiniBrowser/mac/MiniBrowser_Prefix.pch:
  • MiniBrowser/mac/WK1BrowserWindowController.m:

(-[WK1BrowserWindowController validateMenuItem:]):
(-[WK1BrowserWindowController toggleTransparentWindow:]):

  • MiniBrowser/mac/WK2BrowserWindowController.m:

(-[WK2BrowserWindowController validateMenuItem:]):
(-[WK2BrowserWindowController toggleTransparentWindow:]):
(-[WK2BrowserWindowController dumpSourceToConsole:]): Fix a crash that was seen
when testing.

3:23 PM Changeset in webkit [151293] by Brent Fulgham
  • 2 edits in trunk/LayoutTests

[Windows] Unreviewed TestExpectation cleanup.

  • platform/win/TestExpectations:
2:56 PM Changeset in webkit [151292] by roger_fong@apple.com
  • 9 edits in trunk

Stop copying AAS binaries into build folder.
https://bugs.webkit.org/show_bug.cgi?id=117319.

Rubberstamped by Darin Adler.

2:35 PM Changeset in webkit [151291] by mark.lam@apple.com
  • 4 edits in branches/dfgFourthTier/Source/JavaScriptCore

Encode CallFrame::Location flags in the low bits when USE(JSVALUE32_64).
https://bugs.webkit.org/show_bug.cgi?id=117312.

Reviewed by Michael Saboff.

For USE(JSVALUE32_64), we store the location flags in the low 2 bits of
the word because we need the high bits for address bits.

  • interpreter/CallFrame.cpp:

(JSC::CallFrame::setLocationAsBytecodeOffset):

  • interpreter/CallFrame.h:
  • interpreter/CallFrameInlines.h:

(JSC::CallFrame::Location::encode):
(JSC::CallFrame::Location::decode):
(JSC::CallFrame::Location::isCodeOriginIndex):
(JSC::CallFrame::Location::isInlinedCode):

2:29 PM Changeset in webkit [151290] by fpizlo@apple.com
  • 3 edits in branches/dfgFourthTier/Source/JavaScriptCore

Merge trunk r149154.

2013-04-25 Filip Pizlo <fpizlo@apple.com>


PreciseJumpTargets should treat loop_hint as a jump target
https://bugs.webkit.org/show_bug.cgi?id=115209


Reviewed by Mark Hahnenberg.


I didn't add a test but I turned this into a release assertion. Running Octane is enough
to trigger it.


  • bytecode/PreciseJumpTargets.cpp: (JSC::computePreciseJumpTargets):
  • dfg/DFGByteCodeParser.cpp: (JSC::DFG::ByteCodeParser::parseBlock):
1:49 PM Changeset in webkit [151289] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/blackberry

[BlackBerry] Crash in InRegionScrollerPrivate::clearDocumentData
https://bugs.webkit.org/show_bug.cgi?id=117317

Patch by Genevieve Mak <gmak@rim.com> on 2013-06-06
Reviewed by Rob Buis.

PR #348994
Need to check the scrollableArea instead of asserting because in this case for the
selection subframe it is allowed to be null.

  • Api/InRegionScroller.cpp:

(BlackBerry::WebKit::InRegionScrollerPrivate::clearDocumentData):

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

[GTK] Parameter 'refChild' from function 'webkit_dom_node_insert_before' should be allowed to be NULL
https://bugs.webkit.org/show_bug.cgi?id=117303

Patch by Diego Pino Garcia <Diego Pino Garcia> on 2013-06-06
Reviewed by Xan Lopez.

Source/WebCore:

Add parameter 'refChild' to the list of parameters that are allowed to
be NULL.

  • bindings/scripts/CodeGeneratorGObject.pm:

Source/WebKit/gtk:

Add test for function 'webkit_dom_node_insert_before'.

  • tests/testdomnode.c: Checks function dom_document_node_insert_before

(test_dom_node_insertion):

1:43 PM Changeset in webkit [151287] by roger_fong@apple.com
  • 2 edits in trunk/Source/WTF

Unreviewed. Fix typo with winmm linker input.

  • WTF.vcxproj/WTFCommon.props:
1:40 PM Changeset in webkit [151286] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

Fix formatting in BasicShapes.cpp
https://bugs.webkit.org/show_bug.cgi?id=117309

Patch by Bem Jones-Bey <Bem Jones-Bey> on 2013-06-06
Reviewed by Alexandru Chiculita.

I reformatted the code in BasicShapes.cpp (bug 116734) to fix the
style issues, and I got some of the formatting wrong, which makes the
code much harder to read. This patch fixes that formatting.

No new tests, formatting clean up.

  • rendering/style/BasicShapes.cpp:

(WebCore::BasicShapeRectangle::path): Fix formatting.
(WebCore::BasicShapeInsetRectangle::path): Fix formatting.

1:29 PM Changeset in webkit [151285] by mark.lam@apple.com
  • 11 edits in branches/dfgFourthTier/Source/JavaScriptCore

CallFrame::trueCallFrame() should populate the bytecodeOffset field
when reifying inlined frames..
https://bugs.webkit.org/show_bug.cgi?id=117209.

Reviewed by Geoffrey Garen.

When reifying an inlined frame, we fill in its CodeBlock, and
bytecodeOffset. We also set the InlinedFrame bit in the location field.
This is needed in order to iterate the stack correctly. Here's why:

Let's say we have the following stack trace:

X calls A inlines B inlines C calls D

Based on the above scenario,

  1. D's callerFrame points to A (not C).
  2. A has a codeOriginIndex that points to C.

When iterating the stack (from D back towards X), we will encounter A
twice:

t1. when trying to find C as D's caller.

This is the time when we reify B and C using the
codeOriginIndex in A, and return C as the caller frame of D.

t2. when getting's the reified B's caller.

This time, we don't run the reification process, and
just take A as the caller frame of B.

To discern which treatment of the DFG frame (i.e. A) we need to apply,
we check if the callee is an inlined frame:

If callee is NOT an inlined frame (e.g. frame D), apply treatment t1.
If callee is an inlined frame (e.g. frame B), apply treatment t2.

Why not just reify A by replacing its codeOriginIndex with A's
bytecodeOffset?

We can't do this because D's callerFrame pointer still points to A, and
needs to remain that way because we did not deopt A. It remains a DFG
frame which inlined B and C.

If we replace the codeOriginIndex in A with A's bytecodeOffset, we will
only get to iterate the stack correctly once. If we try to iterate the
stack a second time, we will not have the information from the
codeOriginIndex to tell us that D's caller is actually the inlined C,
and not A.

To recap, when reifying frames for stack iteration purposes, the DFG
frame needs to hold on to its codeOriginIndex. This in turn means the
DFG frame will need to be treated in 2 possible ways, and we need to
know if a callee frame is an inlined frame in order to choose the
correct treatment for the DFG frame.

Other changes:

  • Simplified Interpreter::getCallerInfo().
  • Removed CodeBlock::codeOriginForReturn() and supporting code which is now unneeded.
  • Moved CallFrame location bit encoding from the CodeOrigin to the new CallFrame::Location class.
  • Explicitly tagged inlined frames. This is necessary in order to iterate the stack correctly as explained above.
  • bytecode/CodeBlock.cpp:
  • bytecode/CodeBlock.h:

(JSC::CodeBlock::codeOrigins):
(CodeBlock):
(JSC::CodeBlock::codeOrigin):
(RareData):

  • bytecode/CodeOrigin.h:

(CodeOrigin):

  • dfg/DFGJITCompiler.cpp:

(JSC::DFG::JITCompiler::link):

  • dfg/DFGJITCompiler.h:

(JSC::DFG::JITCompiler::beginCall):

  • interpreter/CallFrame.cpp:

(JSC::CallFrame::trueCallFrame):
(JSC::CallFrame::trueCallerFrame):
(JSC::CallFrame::bytecodeOffsetFromCodeOriginIndex):

  • interpreter/CallFrame.h:

(Location):
(ExecState):
(JSC::ExecState::trueCallerFrame):
(JSC::ExecState::callerFrameNoFlags):

  • interpreter/CallFrameInlines.h:

(JSC::CallFrame::Location::encode):
(JSC::CallFrame::Location::decode):
(JSC::CallFrame::Location::isBytecodeOffset):
(JSC::CallFrame::Location::isCodeOriginIndex):
(JSC::CallFrame::Location::isInlinedFrame):
(JSC::CallFrame::isInlinedFrame):
(JSC::CallFrame::setIsInlinedFrame):
(JSC::CallFrame::hasLocationAsBytecodeOffset):
(JSC::CallFrame::hasLocationAsCodeOriginIndex):
(JSC::CallFrame::locationAsBytecodeOffset):
(JSC::CallFrame::setLocationAsBytecodeOffset):
(JSC::CallFrame::locationAsCodeOriginIndex):

  • interpreter/Interpreter.cpp:

(JSC::getCallerInfo):
(JSC::Interpreter::getStackTrace):
(JSC::Interpreter::findFunctionCallFrameFromVMCode):

  • runtime/Arguments.cpp:

(JSC::Arguments::tearOff):

12:58 PM Changeset in webkit [151284] by fpizlo@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

DFG CFA shouldn't filter ArrayModes with ALL_NON_ARRAY_ARRAY_MODES if the speculated type is not SpecArray
https://bugs.webkit.org/show_bug.cgi?id=117279
<rdar://problem/14078025>

Reviewed by Mark Hahnenberg.

  • dfg/DFGAbstractValue.h:

(JSC::DFG::AbstractValue::filterArrayModesByType):

11:45 AM Changeset in webkit [151283] by Christophe Dumez
  • 3 edits in trunk/Source/WebCore

Clean up AddIncludesForType in JSC bindings generators
https://bugs.webkit.org/show_bug.cgi?id=117297

Reviewed by Kentaro Hara.

Clean up AddIncludesForType in JSC bindings generators:

  • Add JSC specific SkipIncludeHeader() subroutine and move

exceptions there.

  • Remove special case for SerializedScriptValue by improving

the condition for callbacks: "JS" prefix is now only added to
headers in callbacks if they are wrapper types. Non-wrapper
types such as SerializedScriptValue do not have a JS*.h
header.

No new tests, code clean up.

  • bindings/scripts/CodeGenerator.pm:

(SkipIncludeHeader):

  • Reuse IsPrimitiveType() to avoid code duplication.
  • Remove special case for String as this is not a valid IDL type

and it is not currently used.

  • bindings/scripts/CodeGeneratorJS.pm:

(SkipIncludeHeader):
(AddIncludesForType):

11:26 AM TypesForSize edited by Carlos Garcia Campos
Fix formatting (diff)
10:18 AM Changeset in webkit [151282] by commit-queue@webkit.org
  • 67 edits
    4 adds in trunk

:hover style not applied on hover if its display property is different from original style's
https://bugs.webkit.org/show_bug.cgi?id=7555

Source/WebCore:

Properly apply the :hover pseudo-class when reattaching is required (e.g. when changing the display type)

A new AttachContext class was created to be passed along as an optional parameter to the attach/detach/reattach methods.
This new parameter is used to:

  • prevent the element from being removed from the list of hovered/active elements upon detach when a reattach is in progress
  • prevent the style from being incorrectly computed (due to the previous point)
  • prevent the style from being computed twice (the attach() method used to recompute it)

Special care was required to the case when display:none is specified in the :hover class. Enabling the :hover style
was leaving the element without a renderer, which was causing it to remain stuck in the :hover state (subsequent mouseMove
events were not able to reset the element to its normal style due to the fact that it had no renderer).

The DragController::startDrag method was updated to properly handle the case when dragImage is NULL
(for instance by setting display:none inside the -webkit-drag pseudo-class).

Patch by Radu Stavila <stavila@adobe.com> on 2013-06-06
Reviewed by Antti Koivisto.

Tests: fast/regions/hover-display-block-inline.html

fast/regions/hover-display-block-none.html

  • page/DragController.cpp:

(WebCore::DragController::startDrag):

  • dom/ContainerNode.cpp:

(WebCore::ContainerNode::attach):
(WebCore::ContainerNode::detach):

  • dom/ContainerNode.h:
  • dom/Document.cpp:

(WebCore::Document::attach):
(WebCore::Document::detach):
(WebCore::Document::updateHoverActiveState):

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

(WebCore::Element::setHovered):
(WebCore::Element::createRendererIfNeeded):
(WebCore::Element::attach):
(WebCore::Element::detach):
(WebCore::Element::recalcStyle):

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

(WebCore::Node::AttachDetachContext::AttachDetachContext):
(WebCore::Node::AttachDetachContext::~AttachDetachContext):
(WebCore::Node::attach):
(WebCore::Node::detach):

  • dom/Node.h:

(WebCore::Node::reattach):
(WebCore::Node::reattachIfAttached):

  • dom/NodeRenderingContext.cpp:

(WebCore::NodeRenderingContext::NodeRenderingContext):

  • dom/PseudoElement.cpp:

(WebCore::PseudoElement::attach):

  • dom/PseudoElement.h:
  • dom/ShadowRoot.cpp:

(WebCore::ShadowRoot::attach):

  • dom/ShadowRoot.h:
  • dom/Text.cpp:

(WebCore::Text::attach):

  • dom/Text.h:
  • html/HTMLCanvasElement.cpp:

(WebCore::HTMLCanvasElement::attach):

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

(WebCore::HTMLFormControlElement::attach):

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

(WebCore::HTMLFrameElement::attach):

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

(WebCore::HTMLFrameElementBase::attach):

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

(WebCore::HTMLFrameSetElement::attach):

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

(WebCore::HTMLImageElement::attach):

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

(WebCore::HTMLInputElement::attach):
(WebCore::HTMLInputElement::detach):

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

(WebCore::HTMLLIElement::attach):

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

(WebCore::HTMLMediaElement::attach):

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

(WebCore::HTMLOptGroupElement::attach):
(WebCore::HTMLOptGroupElement::detach):

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

(WebCore::HTMLOptionElement::attach):
(WebCore::HTMLOptionElement::detach):

  • html/HTMLOptionElement.h:
  • html/HTMLPlugInElement.cpp:

(WebCore::HTMLPlugInElement::detach):

  • html/HTMLPlugInElement.h:
  • html/HTMLPlugInImageElement.cpp:

(WebCore::HTMLPlugInImageElement::attach):
(WebCore::HTMLPlugInImageElement::detach):

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

(WebCore::HTMLProgressElement::attach):

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

(WebCore::HTMLTextAreaElement::attach):

  • html/HTMLTextAreaElement.h:
  • html/HTMLVideoElement.cpp:

(WebCore::HTMLVideoElement::attach):

  • html/HTMLVideoElement.h:
  • html/PluginDocument.cpp:

(WebCore::PluginDocument::detach):

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

(WebCore::InsertionPoint::attach):
(WebCore::InsertionPoint::detach):

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

(WebCore::SliderThumbElement::detach):

  • html/shadow/SliderThumbElement.h:
  • html/shadow/SpinButtonElement.cpp:

(WebCore::SpinButtonElement::detach):

  • html/shadow/SpinButtonElement.h:
  • html/shadow/TextControlInnerElements.cpp:

(WebCore::SearchFieldCancelButtonElement::detach):
(WebCore::InputFieldSpeechButtonElement::attach):
(WebCore::InputFieldSpeechButtonElement::detach):

  • html/shadow/TextControlInnerElements.h:
  • loader/PlaceholderDocument.cpp:

(WebCore::PlaceholderDocument::attach):

  • loader/PlaceholderDocument.h:
  • svg/SVGImageElement.cpp:

(WebCore::SVGImageElement::attach):

  • svg/SVGImageElement.h:

LayoutTests:

Patch by Radu Stavila <stavila@adobe.com> on 2013-06-06
Reviewed by Antti Koivisto.

  • fast/regions/hover-display-block-inline-expected.txt: Added.
  • fast/regions/hover-display-block-inline.html: Added.
  • fast/regions/hover-display-block-none-expected.txt: Added.
  • fast/regions/hover-display-block-none.html: Added.
  • fast/events/drag-display-none-element-expected.txt:
  • fast/events/drag-display-none-element:
10:18 AM TypesForSize created by Carlos Garcia Campos
10:10 AM Changeset in webkit [151281] by allan.jensen@digia.com
  • 2 edits in trunk/Source/WebCore

ENABLE(PAN_SCROLLING) AutoscrollController::updateAutoscrollRenderer calls hitTestResultAtPoint with true for HitTestRequestType
https://bugs.webkit.org/show_bug.cgi?id=116896

Reviewed by Andreas Kling.

Update hitTestResultAtPoint call to new API.

  • page/AutoscrollController.cpp:

(WebCore::AutoscrollController::updateAutoscrollRenderer):

10:07 AM Changeset in webkit [151280] by Hugo Parente Lima
  • 2 edits in trunk/Tools

Aligning build-webkit command line switch names to the WebKit flag names
https://bugs.webkit.org/show_bug.cgi?id=117254

Reviewed by Laszlo Gombos.

  • Scripts/webkitperl/FeatureList.pm: Rename some command line switches.
10:04 AM Changeset in webkit [151279] by mihnea@adobe.com
  • 3 edits in trunk/LayoutTests

[CSSRegions] Make positioned-object-inline-cb-crash.html output readable in browser
https://bugs.webkit.org/show_bug.cgi?id=117291

Reviewed by Alexandru Chiculita.

Make the output in browser readable by setting the style only on the required p element.

  • fast/regions/positioned-object-inline-cb-crash-expected.txt:
  • fast/regions/positioned-object-inline-cb-crash.html:
9:37 AM Changeset in webkit [151278] by zarvai@inf.u-szeged.hu
  • 1 edit
    21 deletes in trunk/LayoutTests

[Qt] Unreviewed gardening. Removing accidentally added png files for ref tests.

  • platform/qt-5.0-wk2/compositing/patterns/direct-pattern-compositing-contain-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/patterns/direct-pattern-compositing-contain-no-repeat-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/patterns/direct-pattern-compositing-cover-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/patterns/direct-pattern-compositing-position-expected.png: Removed.
  • platform/qt-5.0-wk2/compositing/patterns/direct-pattern-compositing-size-expected.png: Removed.
  • platform/qt-5.0-wk2/css2.1/20110323/margin-collapse-clear-016-expected.png: Removed.
  • platform/qt-5.0-wk2/css3/filters/custom/custom-filter-clamp-css-color-matrix-expected.png: Removed.
  • platform/qt-5.0-wk2/css3/filters/custom/custom-filter-nonseparable-blend-mode-luminosity-expected.png: Removed.
  • platform/qt-5.0-wk2/fast/css/sticky/sticky-left-expected.png: Removed.
  • platform/qt-5.0-wk2/fast/css/sticky/sticky-side-margins-expected.png: Removed.
  • platform/qt-5.0-wk2/fast/css/sticky/sticky-top-expected.png: Removed.
  • platform/qt-5.0-wk2/fast/css/sticky/sticky-top-margins-expected.png: Removed.
  • platform/qt-5.0-wk2/fast/css/sticky/sticky-writing-mode-horizontal-bt-expected.png: Removed.
  • platform/qt-5.0-wk2/fast/forms/textarea-placeholder-set-attribute-expected.png: Removed.
  • platform/qt-5.0-wk2/fast/regions/autosize-region-window-resize-expected.png: Removed.
  • platform/qt-5.0-wk2/fast/regions/overflow-size-change-with-stacking-context-rtl-expected.png: Removed.
  • platform/qt-5.0-wk2/fast/regions/region-style-image-background-color-expected.png: Removed.
  • platform/qt-5.0-wk2/fast/regions/region-style-inline-background-color-expected.png: Removed.
  • platform/qt-5.0-wk2/fast/regions/render-region-custom-style-mark-expected.png: Removed.
  • platform/qt-5.0-wk2/svg/animations/animateMotion-additive-2c-expected.png: Removed.
  • platform/qt-5.0-wk2/svg/animations/animateMotion-additive-2d-expected.png: Removed.
9:36 AM Changeset in webkit [151277] by Carlos Garcia Campos
  • 25 edits in trunk/Source/WebCore

ResourceLoader::resourceData() should not return a PassRefPtr
https://bugs.webkit.org/show_bug.cgi?id=117288

Reviewed by Darin Adler.

Change ResourceLoader::resourceData() to return a raw pointer
instead of a PassRefPtr since we don't want to transfer the
ownership of the resource data. Also pass a raw pointer to
CachedResource::data() so that the cached resource can decide
whether to take a reference of the data or not, for example,
CachedRawResource only takes a reference when buffering policy is
BufferData.

  • html/ImageDocument.cpp:

(WebCore::ImageDocumentParser::appendBytes):
(WebCore::ImageDocumentParser::finish):

  • loader/ResourceLoader.cpp:
  • loader/ResourceLoader.h:

(WebCore::ResourceLoader::resourceData):

  • loader/SubresourceLoader.cpp:

(WebCore::SubresourceLoader::sendDataToResource):

  • loader/cache/CachedCSSStyleSheet.cpp:

(WebCore::CachedCSSStyleSheet::data):

  • loader/cache/CachedCSSStyleSheet.h:
  • loader/cache/CachedFont.cpp:

(WebCore::CachedFont::data):

  • loader/cache/CachedFont.h:
  • loader/cache/CachedImage.cpp:

(WebCore::CachedImage::data):

  • loader/cache/CachedImage.h:
  • loader/cache/CachedRawResource.cpp:

(WebCore::CachedRawResource::data):

  • loader/cache/CachedRawResource.h:
  • loader/cache/CachedResource.cpp:

(WebCore::CachedResource::data):

  • loader/cache/CachedResource.h:
  • loader/cache/CachedSVGDocument.cpp:

(WebCore::CachedSVGDocument::data):

  • loader/cache/CachedSVGDocument.h:
  • loader/cache/CachedScript.cpp:

(WebCore::CachedScript::data):

  • loader/cache/CachedScript.h:
  • loader/cache/CachedShader.cpp:

(WebCore::CachedShader::data):

  • loader/cache/CachedShader.h:
  • loader/cache/CachedTextTrack.cpp:

(WebCore::CachedTextTrack::data):

  • loader/cache/CachedTextTrack.h:
  • loader/cache/CachedXSLStyleSheet.cpp:

(WebCore::CachedXSLStyleSheet::data):

  • loader/cache/CachedXSLStyleSheet.h:
9:29 AM Changeset in webkit [151276] by eustas@chromium.org
  • 3 edits in trunk/LayoutTests

selectionStart/selectionEnd return "obsolete" values when requested during "input" event
https://bugs.webkit.org/show_bug.cgi?id=117287

Reviewed by Darin Adler.

Qt-WK2 test crashes when eventSender.keyDown invocations are nested.

This patch unrolls recursion to avoid crash.

  • editing/selection/caret-after-keypress.html:

unroll recursive eventSender.keyDown invocations

  • platform/qt-5.0-wk2/TestExpectations: Unskip test.
9:27 AM Changeset in webkit [151275] by Chris Fleizach
  • 5 edits
    2 adds in trunk

AX: iOS ignores ARIA progressbar elements
https://bugs.webkit.org/show_bug.cgi?id=116727

Reviewed by David Kilzer.

Source/WebCore:

Make this an accessible element on iOS.

Test: platform/iphone-simulator/accessibility/progressbar.html

  • accessibility/ios/WebAccessibilityObjectWrapperIOS.mm:

(-[WebAccessibilityObjectWrapper determineIsAccessibilityElement]):
(-[WebAccessibilityObjectWrapper _accessibilityMinValue]):
(-[WebAccessibilityObjectWrapper _accessibilityMaxValue]):

Tools:

  • DumpRenderTree/ios/AccessibilityUIElementIOS.mm:

(AccessibilityUIElement::minValue):
(AccessibilityUIElement::maxValue):

LayoutTests:

  • platform/iphone-simulator/accessibility/progressbar-expected.txt: Added.
  • platform/iphone-simulator/accessibility/progressbar.html: Added.
9:07 AM Changeset in webkit [151274] by Brent Fulgham
  • 4 edits in trunk/LayoutTests

Unreviewed TestExpectation gardening. Clean up some lint warnings.

  • platform/qt-mac/TestExpectations: Remove references to removed tests.
  • platform/qt/TestExpectations: Ditto.
  • platform/win/TestExpectations: Remove 'skip' entries for (1) removed tests, and

(2) tests that have since been rebaselined and now pass.

8:35 AM Changeset in webkit [151273] by msaboff@apple.com
  • 3 edits in trunk/Source/JavaScriptCore

JSC: Crash beneath cti_op_div @ http://gmailblog.blogspot.com
https://bugs.webkit.org/show_bug.cgi?id=117280

Reviewed by Filip Pizlo.

Updated the merging of VariableAccessData nodes in ArgumentPosition lists
to find the unified VariableAccessData node that is the root of the
current node instead of using the current node directly when merging
attributes.
Added new dump code to dump the ArgumentPosition list.

  • dfg/DFGArgumentPosition.h:

(JSC::DFG::rgumentPosition::mergeArgumentPredictionAwareness):
(JSC::DFG::ArgumentPosition::mergeArgumentUnboxingAwareness):
(JSC::DFG::ArgumentPosition::dump):

  • dfg/DFGGraph.cpp:

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

7:59 AM Changeset in webkit [151272] by zarvai@inf.u-szeged.hu
  • 29 edits
    8 copies
    187 adds in trunk/LayoutTests

[Qt] Unreviewed gardening. Rebaselining after r151205.

  • platform/qt-5.0-wk2/compositing/geometry/abs-position-inside-opacity-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/border_right-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-max-height-002-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-max-height-010-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-015-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/background-intrinsic-003-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-011-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/fast/repaint/scroll-fixed-reflected-layer-expected.png.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-height-007-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-007-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/replaced-intrinsic-005-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040103-escapes-05-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040103-escapes-06-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0510-c25-pseudo-elmnt-00-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t051202-c24-first-lttr-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/fast/repaint/scroll-fixed-reflected-layer-expected.png.
  • platform/qt-5.0-wk2/css2.1/t0804-c5507-padn-r-03-f-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5515-ibrdr-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5516-brdr-c-00-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5516-ibrdr-c-00-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5517-brdr-s-00-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5517-ibrdr-s-00-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5518-brdr-t-00-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5519-brdr-r-02-e-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5520-brdr-b-00-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5520-brdr-b-01-e-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5520-ibrdr-b-00-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5521-brdr-l-00-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5521-brdr-l-01-e-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5521-brdr-l-02-e-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5521-ibrdr-l-00-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5522-brdr-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5522-brdr-01-b-g-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5522-brdr-02-e-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5522-ibrdr-00-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t09-c5526c-display-00-e-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t090402-c42-ibx-pad-00-d-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0905-c414-flt-01-d-g-expected.png:
  • platform/qt-5.0-wk2/css2.1/t0905-c414-flt-02-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0905-c414-flt-03-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0905-c414-flt-04-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0905-c414-flt-fit-00-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0905-c414-flt-fit-01-d-g-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0905-c414-flt-wrap-00-e-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0905-c414-flt-wrap-01-d-g-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0905-c5525-fltblck-01-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0905-c5525-fltclr-00-c-ag-expected.png:
  • platform/qt-5.0-wk2/css2.1/t0905-c5525-fltcont-00-d-g-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0905-c5525-flthw-00-c-g-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0905-c5525-fltinln-00-c-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0905-c5525-fltmrgn-00-c-ag-expected.png:
  • platform/qt-5.0-wk2/css2.1/t0905-c5525-fltmult-00-d-g-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counter-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counter-06-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-03-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-04-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-55-d-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-41-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-42a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-82b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-125b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-15-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-29b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-44b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-45c-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/fast/repaint/scroll-fixed-reflected-layer-expected.png.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-90-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-3865854-fix-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-at-paragraph-boundaries-004-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-at-paragraph-boundaries-005-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-first-list-item-expected.png: Added.
  • platform/qt-5.0-wk2/editing/execCommand/4580583-1-expected.png:
  • platform/qt-5.0-wk2/editing/inserting/4840662-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/redo-expected.png:
  • platform/qt-5.0-wk2/editing/inserting/return-key-with-selection-002-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/typing-001-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/5075944-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/4960116-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/5195166-2-expected.png:
  • platform/qt-5.0-wk2/editing/selection/6476-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/move-by-character-004-expected.png:
  • platform/qt-5.0-wk2/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/empty-clear-blocks-expected.png:
  • platform/qt-5.0-wk2/fast/block/positioning/auto-height-with-top-and-bottom-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-color/001-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/overflow/006-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css-generated-content/before-with-first-letter-expected.png:
  • platform/qt-5.0-wk2/fast/css/create_element_align-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/max-height-none-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/pendingStylesheetFontSize-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/fast/repaint/scroll-fixed-reflected-layer-expected.png.
  • platform/qt-5.0-wk2/fast/dom/children-nodes-expected.png: Added.
  • platform/qt-5.0-wk2/fast/flexbox/013-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/form-added-to-table-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/fast/repaint/scroll-fixed-reflected-layer-expected.png.
  • platform/qt-5.0-wk2/fast/forms/input-button-sizes-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/search-vertical-alignment-expected.png: Added.
  • platform/qt-5.0-wk2/fast/inline/25277-2-expected.png: Added.
  • platform/qt-5.0-wk2/fast/inline/inline-borders-with-bidi-override-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/float-avoidance-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/float-paginate-complex-expected.png:
  • platform/qt-5.0-wk2/fast/overflow/007-expected.png: Added.
  • platform/qt-5.0-wk2/fast/overflow/hidden-scrollbar-resize-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/caret-with-transformation-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/dynamic-table-vertical-alignment-change-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/opacity-change-on-overflow-float-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/scroll-fixed-reflected-layer-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/table-extra-bottom-grow-expected.png:
  • platform/qt-5.0-wk2/fast/selectors/010-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/015-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/060-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/160-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/041-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/empty-cells-expected.png:
  • platform/qt-5.0-wk2/fast/text/whitespace/026-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/fast/repaint/scroll-fixed-reflected-layer-expected.png.
  • platform/qt-5.0-wk2/fast/text/whitespace/span-in-word-space-causes-overflow-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/fast/repaint/scroll-fixed-reflected-layer-expected.png.
  • platform/qt-5.0-wk2/ietestcenter/css3/text/textshadow-007-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/fast/repaint/scroll-fixed-reflected-layer-expected.png.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-03-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-04-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-06-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-07-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-08-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-22-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-27-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-28-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-32-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-34-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-46-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-52-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-60-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-63-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-64-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-65-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-66-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-67-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-68-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-69-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-70-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-77-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-78-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-81-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/color-prop-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/coords-trans-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/coords-trans-05-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/coords-units-03-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/filters-color-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/filters-composite-02-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/filters-gauss-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/filters-turb-01-f-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/fonts-elem-05-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/fonts-elem-06-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/linking-a-04-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/linking-a-05-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/masking-path-05-f-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/painting-fill-01-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/painting-fill-02-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/painting-fill-04-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/painting-stroke-02-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/painting-stroke-03-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/paths-data-04-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/paths-data-05-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/paths-data-14-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/pservers-grad-02-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.png:
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/pservers-grad-11-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/pservers-grad-17-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/render-elems-02-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/render-elems-03-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/render-elems-07-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/render-groups-03-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/script-handle-03-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/shapes-circle-02-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/shapes-ellipse-02-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/shapes-line-01-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/struct-dom-02-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/struct-dom-05-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/struct-dom-06-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/struct-frag-02-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/struct-frag-06-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/struct-group-01-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/struct-group-02-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/struct-image-04-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/struct-use-03-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/styling-css-02-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/styling-css-03-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/text-fonts-03-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/text-spacing-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/text-text-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/text-text-04-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/text-text-05-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/text-text-07-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/text-text-08-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/text-tref-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/text-tspan-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/text-ws-02-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/types-basicDOM-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/textEffect-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/xmlSpace-expected.png: Added.
  • platform/qt-5.0-wk2/svg/css/css-box-min-width-expected.png: Added.
  • platform/qt-5.0-wk2/svg/css/group-with-shadow-expected.png:
  • platform/qt-5.0-wk2/svg/custom/altglyph-expected.png:
  • platform/qt-5.0-wk2/svg/custom/recursive-clippath-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/shape-rendering-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/text-filter-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/use-modify-container-in-target-expected.png: Added.
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGClipPathElement-transform-influences-hitTesting-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-dom-stitchTiles-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-stitchTiles-prop-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug106158-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug11384s-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug2509-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug27038-3-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug650-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/marvin/col_span-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_blue_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_cellspacing-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_class-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_row_th_nowrap-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_th_align_right-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_black-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_id-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tbody_align_justify-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_valign_top-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_align_right-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.png: Added.
7:42 AM Changeset in webkit [151271] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

[WinCairo] Fix build-webkit to build WinCairo under VS2010.
https://bugs.webkit.org/show_bug.cgi?id=117255

Patch by peavo@outlook.com <peavo@outlook.com> on 2013-06-06
Reviewed by Daniel Bates.

Need to update configuration names according to solution file.

  • Scripts/webkitdirs.pm:

(determineConfiguration):
(determinePassedConfiguration):

7:41 AM Changeset in webkit [151270] by rafael.lobo@openbossa.org
  • 2 edits in trunk/Source/WebKit2

[Gtk] Connection is leaking when WebProcess is terminated
https://bugs.webkit.org/show_bug.cgi?id=117293

Reviewed by Martin Robinson.

Connection is leaking because WorkQueue::SocketEventSource inherits from
WorkQueue::EventSource but when it is destroyed, the actual destructor running
is the one from base class; however, subclass contains a function binded from
Connection (m_closeFunction) and we need to do this extra cleanup, otherwise
WorkQueue will keep Connection alive. A better explanation of this fix is provided
on http://stackoverflow.com/questions/461203/when-to-use-virtual-destructors

A quick way to see the leak is to change WK2 test "ReloadPageAfterCrash" to terminate
WebProcess N times and add a printf on Connection destructor.

  • Platform/gtk/WorkQueueGtk.cpp:

(WorkQueue::EventSource::~EventSource): Adds a virtual destructor to enable
the subclass to do its own cleanup.

6:54 AM Changeset in webkit [151269] by Christophe Dumez
  • 2 edits in trunk/Source/WebCore

Remove unused HashValueForClassAndName() from JSC bindings generator
https://bugs.webkit.org/show_bug.cgi?id=117292

Reviewed by Kentaro Hara.

Remove HashValueForClassAndName() subroutine from JSC bindings generator
as it is dead code.

No new tests, code clean up.

  • bindings/scripts/CodeGeneratorJS.pm:
6:52 AM Changeset in webkit [151268] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebCore

Cannot set a new timer inside of timer callback in RunLoopTimerGtk & RunLoopTimerEFL
https://bugs.webkit.org/show_bug.cgi?id=117224

Patch by Gwang Yoon Hwang <ryumiel@company100.net> on 2013-06-06
Reviewed by Christophe Dumez.

RunLoopTimer should clear its isActive flag before invoking timer
callback.

  • platform/efl/RunLoopEfl.cpp:

(WebCore::RunLoop::TimerBase::timerFired):

  • platform/gtk/RunLoopGtk.cpp:

(WebCore::RunLoop::TimerBase::timerFiredCallback):

6:39 AM Changeset in webkit [151267] by commit-queue@webkit.org
  • 4 edits in trunk/Source

[GTK] Parameters 'inResult' and 'resolver' from function 'webkit_dom_document_evaluate' should be allowed to be NULL
https://bugs.webkit.org/show_bug.cgi?id=117129

Patch by Diego Pino Garcia <Diego Pino Garcia> on 2013-06-06
Reviewed by Xan Lopez.

Source/WebCore:

At this moment there was a temporary fix that allowed parameter
'inResult' to be NULL (see: webk.it/42115). However, there was no fix
for parameter 'resolver'.

This patch refactors the code of the previous fix, moving the code for
determine whether a parameter can be NULL or not to GetGReturnMacro.
The solution is quite general and will alow to add other parameters in
the future if needed.

  • bindings/scripts/CodeGeneratorGObject.pm:

(GetGReturnMacro): Pass functionName, as in some cases the code
generated depends on the paramName and the functionName
(ParamCanBeNull): Checks if a parameter is allowed to be NULL
(GenerateFunction):

Source/WebKit/gtk:

Add test for function 'webkit_dom_document_evaluate'.

  • tests/testdomdocument.c:

(test_dom_document_evaluate): Checks function dom_document_evaluate,
executes an XPath expression on a HTML document.
(main):

5:57 AM Changeset in webkit [151266] by zarvai@inf.u-szeged.hu
  • 91 edits
    425 adds in trunk/LayoutTests

[Qt] Unreviewed gardening. Rebaselining after r151205.

  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug92143-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug9271-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug9271-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug92868-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug93363-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug963-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug96334-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug96343-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug965-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug97138-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug9879-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug99923-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug99948-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/collapsing_borders/bug127040-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/collapsing_borders/bug41262-3-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/collapsing_borders/bug41262-4-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/core/bloomberg-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/core/borders-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/core/captions-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/core/col_span-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/core/col_widths_auto_autoFix-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/core/col_widths_auto_autoFixPer-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/core/col_widths_auto_autoPer-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/core/col_widths_auto_fix-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/core/col_widths_auto_fixPer-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/core/col_widths_auto_per-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/core/col_widths_fix_auto-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/core/col_widths_fix_autoFix-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/core/col_widths_fix_autoPer-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/core/col_widths_fix_fix-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/core/col_widths_fix_fixPer-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/core/col_widths_fix_per-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/core/margins-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/core/misc-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/core/nested1-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/core/one_row-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/core/row_span-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/core/table_frame-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/core/table_rules-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/core/table_widths-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/appendCol2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/appendRowsExpand1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/appendTbodyExpand1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/deleteCellsRebuild1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/deleteCellsShrink1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/deleteCellsShrink2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/deleteCol1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/deleteCol2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/deleteCol3-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/deleteColGroup1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/deleteColGroup2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/deleteRowsRebuild1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/deleteRowsShrink1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/deleteTbodyExpand1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/deleteTbodyRebuild1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/insertCellsExpand1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/insertCellsExpand2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/insertCellsRebuild1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/insertCellsRebuild2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/insertColGroups1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/insertColGroups2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/insertCols1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/insertCols2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/insertCols3-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/insertCols4-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/insertCols5-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/insertRowsExpand1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/insertRowsRebuild1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/dom/tableDom-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/backgr_index-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/marvin/backgr_layers-opacity-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/marvin/backgr_position-table-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/marvin/backgr_simple-table-cell-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/marvin/backgr_simple-table-column-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/marvin/backgr_simple-table-column-group-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/marvin/backgr_simple-table-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/marvin/backgr_simple-table-row-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/marvin/backgr_simple-table-row-group-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/marvin/body_col-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/body_tbody-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/body_tfoot-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/body_thead-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/colgroup_align_center-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/colgroup_align_justify-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/colgroup_align_left-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/colgroup_align_right-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/colgroup_span-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/colgroup_valign_baseline-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/colgroup_valign_bottom-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/colgroup_valign_middle-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/colgroup_valign_top-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/colgroup_width_pct-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/colgroup_width_px-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/table_frame_border-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/table_frame_box-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/table_row_align_center-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/table_row_align_left-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/table_row_align_right-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/table_rules_all-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/table_rules_groups-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/table_rules_none-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_align_center-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_align_left-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_align_right-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_aqua-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_aqua_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_black-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_black_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_blue-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_fuchsia-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_fuchsia_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_gray-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_gray_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_green-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_green_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_lime-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_lime_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_maroon-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_maroon_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_navy-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_navy_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_olive-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_olive_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_purple-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_purple_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_red_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_silver-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_silver_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_teal-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_teal_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_white-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_white_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_yellow-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_bgcolor_yellow_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_border_0-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_border_2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_border_3-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_caption_align_bot-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_caption_align_top-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_cellpadding-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_cellpadding_pct-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_default-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_id-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_style-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_td_align_center-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_td_align_left-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_td_align_right-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_td_colspan-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_td_height-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_td_nowrap-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_td_rowspan-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_td_width-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_th_align_center-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_th_align_left-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_th_colspan-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_th_height-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_th_rowspan-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_th_width-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_width_percent-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tables_width_px-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tbody_align_center-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tbody_align_char-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tbody_align_justify-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tbody_align_left-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tbody_align_right-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tbody_char-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tbody_valign_baseline-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tbody_valign_bottom-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tbody_valign_middle-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tbody_valign_top-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/td_valign_baseline-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/td_valign_bottom-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/td_valign_middle-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/td_valign_top-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tfoot_align_center-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tfoot_align_char-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tfoot_align_justify-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tfoot_align_right-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tfoot_char-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tfoot_valign_baseline-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tfoot_valign_bottom-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tfoot_valign_middle-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tfoot_valign_top-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/th_valign_baseline-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/th_valign_bottom-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/th_valign_middle-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/th_valign_top-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/thead_align_center-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/thead_align_char-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/thead_align_justify-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/thead_align_left-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/thead_align_right-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/thead_char-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/thead_valign_baseline-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/thead_valign_bottom-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/thead_valign_middle-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/thead_valign_top-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_aqua_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_black_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_blue-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_fuchsia-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_fuchsia_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_gray-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_gray_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_green-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_green_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_lime-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_lime_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_maroon-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_maroon_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_navy-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_navy_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_olive-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_olive_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_purple-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_purple_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_red-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_red_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_silver-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_silver_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_teal-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_teal_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_white-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_white_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_yellow-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_bgcolor_yellow_rgb-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_valign_baseline-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_valign_bottom-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_valign_middle-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/tr_valign_top-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_caption_align_bottom-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_caption_align_top-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_caption_class-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_caption_id-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_caption_style-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_align_center-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_align_char-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_align_justify-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_align_left-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_align_right-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_span-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_valign_baseline-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_valign_bottom-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_valign_middle-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_valign_top-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_width_pct-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_width_px-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_col_width_rel-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_colgroup_align_center-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_colgroup_align_char-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_colgroup_align_justify-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_colgroup_align_left-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_colgroup_align_right-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_colgroup_span-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_colgroup_valign_middle-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_colgroup_valign_top-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_colgroup_width_pct-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_colgroup_width_rel-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_table-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_align_center-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_align_left-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_align_right-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_bgcolor_name-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_border-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_border_none-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_border_px-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_cellpadding-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_cellpadding_pct-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_cellspacing-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_cellspacing_pct-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_class-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_frame_void-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_rules_groups-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_rules_none-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_style-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_width_pct-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_table_width_px-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tbody_align_center-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tbody_align_char-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tbody_align_left-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tbody_align_right-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tbody_class-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tbody_id-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tbody_style-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tbody_valign_baseline-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tbody_valign_bottom-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tbody_valign_middle-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tbody_valign_top-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_align_center-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_align_char-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_align_justify-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_align_left-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_bgcolor_name-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_class-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_colspan-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_height-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_id-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_nowrap-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_rowspan-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_style-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_valign_baseline-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_valign_bottom-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_valign_middle-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_valign_top-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_td_width-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tfoot_align_center-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tfoot_align_char-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tfoot_align_justify-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tfoot_align_left-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tfoot_align_right-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tfoot_class-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tfoot_id-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tfoot_style-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tfoot_valign_middle-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tfoot_valign_top-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_align_center-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_align_char-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_align_justify-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_align_left-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_align_right-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_bgcolor_name-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_colspan-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_height-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_id-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_nowrap-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_rowspan-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_style-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_valign_baseline-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_valign_bottom-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_valign_middle-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_th_width-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_thead_align_center-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_thead_align_char-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_thead_align_justify-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_thead_align_left-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_thead_align_right-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_thead_class-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_thead_id-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_thead_style-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_thead_valign_baseline-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_thead_valign_bottom-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_thead_valign_middle-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_thead_valign_top-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_align_center-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_align_char-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_align_justify-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_align_left-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_bgcolor_name-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_class-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_id-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_style-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_valign_baseline-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_valign_bottom-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_valign_middle-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/marvin/x_tr_valign_top-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/other/body_col-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/other/cell_widths-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/other/cellspacing-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/other/move_row-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/other/ms-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/other/nested2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/other/nestedTables-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/other/padding-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/other/test3-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/other/test6-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/other/wa_table_thtd_rowspan-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/other/wa_table_tr_align-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/97619-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug1010-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug10140-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug101759-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug10216-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug104898-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug1055-2-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug106966-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug1128-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug11331-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug1164-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug11945-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug131020-3-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug14007-1-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug14159-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug14489-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug1725-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug17826-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug18770-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug19526-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug21518-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug22122-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug24880-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug25707-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug27993-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug3166-12-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug3166-18-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug3166-5-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug3166-6-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug3166-7-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug3166-8-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug3166-9-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug32205-1-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug32205-4-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug42043-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug4294-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug46268-4-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug47163-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug51000-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug56024-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug58402-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug59252-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug61042-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug61042-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug65372-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug7121-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug72393-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug7243-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug73629-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug80762-2-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug89315-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug91057-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug92868_1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/bugs/bug9879-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/collapsing_borders/bug41262-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/core/backgrounds-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/core/captions1-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/core/captions2-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/core/captions3-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/core/col_span2-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/core/cols1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/core/columns-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/core/conflicts-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/core/standards1-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/dom/appendCells1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/dom/appendCellsRebuild1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/dom/appendCol1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/dom/appendColGroup1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/dom/insertTbodyExpand1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/dom/insertTbodyRebuild1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_frame_above-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_frame_below-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_frame_void-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_colgroup_width_px-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/other/empty_cells-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla_expected_failures/other/test4-expected.png:
  • platform/qt-5.0-wk2/transforms/2d/compound-transforms-vs-containers-expected.png: Added.
  • platform/qt-5.0-wk2/transforms/2d/transform-borderbox-expected.png: Added.
  • platform/qt-5.0-wk2/transforms/2d/transform-fixed-container-expected.png:
  • platform/qt-5.0-wk2/transforms/2d/transform-origin-borderbox-expected.png: Added.
  • platform/qt-5.0-wk2/transforms/2d/zoom-menulist-expected.png: Added.
  • platform/qt-5.0-wk2/transforms/3d/hit-testing/backface-hit-test-expected.png:
  • platform/qt-5.0-wk2/transforms/3d/hit-testing/backface-no-transform-hit-test-expected.png:
  • platform/qt-5.0-wk2/transforms/3d/point-mapping/3d-point-mapping-3-expected.png:
  • platform/qt-5.0-wk2/transforms/3d/point-mapping/3d-point-mapping-coplanar-expected.png:
  • platform/qt-5.0-wk2/transforms/3d/point-mapping/3d-point-mapping-overlapping-expected.png:
  • platform/qt-5.0-wk2/transforms/svg-vs-css-expected.png: Added.
  • platform/qt-5.0-wk2/transitions/cross-fade-background-image-expected.png: Added.
  • platform/qt-5.0-wk2/transitions/cross-fade-border-image-expected.png:
  • platform/qt-5.0-wk2/transitions/move-after-transition-expected.png: Added.
  • platform/qt-5.0-wk2/transitions/svg-text-shadow-transition-expected.png: Added.
3:34 AM WebKitGTK/Wayland edited by itoral@igalia.com
(diff)
3:25 AM Changeset in webkit [151265] by commit-queue@webkit.org
  • 3 edits
    2 adds in trunk

SVG objects are misplaced when SVG root has CSS transform.
https://bugs.webkit.org/show_bug.cgi?id=117252

Patch by Zalan Bujtas <Alan Bujtas> on 2013-06-06
Reviewed by Simon Fraser.

Update layer transforms for SVG if needed.

SVG root, similarly to RenderBlock needs to call RenderLayer
to get transforms updated after layout, in order to
position the transformed objects properly.

Source/WebCore:

Test: fast/transforms/transform-svg.html

  • rendering/svg/RenderSVGRoot.cpp:

(WebCore::RenderSVGRoot::layout):

LayoutTests:

  • fast/transforms/transform-svg-expected.html: Added.
  • fast/transforms/transform-svg.html: Added.
3:21 AM Changeset in webkit [151264] by zarvai@inf.u-szeged.hu
  • 499 edits
    513 adds in trunk/LayoutTests

[Qt] Unreviewed gardening. Rebaselining after r151205.

  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/struct-frag-04-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/struct-image-01-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/struct-image-02-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/struct-image-03-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/struct-image-05-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/struct-image-07-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/struct-image-08-t-expected.png:
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/struct-image-09-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/struct-image-10-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/struct-symbol-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/struct-use-01-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/struct-use-05-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/styling-css-04-f-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/styling-css-05-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/styling-css-06-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/text-align-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/text-align-03-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/text-align-06-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/text-altglyph-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/text-intro-01-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/text-intro-02-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/text-intro-03-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/text-intro-04-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/text-path-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/text-text-06-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/text-tselect-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/text-ws-01-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.2-Tiny/struct-use-recursion-01-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.2-Tiny/struct-use-recursion-02-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.2-Tiny/struct-use-recursion-03-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/as-background-image/animated-svg-as-background-expected.png:
  • platform/qt-5.0-wk2/svg/as-background-image/background-image-preserveaspectRatio-support-expected.png: Added.
  • platform/qt-5.0-wk2/svg/as-background-image/svg-as-background-3-expected.png: Added.
  • platform/qt-5.0-wk2/svg/as-background-image/svg-as-background-5-expected.png: Added.
  • platform/qt-5.0-wk2/svg/as-background-image/svg-as-background-6-expected.png: Added.
  • platform/qt-5.0-wk2/svg/as-background-image/svg-background-partial-redraw-expected.png:
  • platform/qt-5.0-wk2/svg/as-border-image/svg-as-border-image-2-expected.png: Added.
  • platform/qt-5.0-wk2/svg/as-border-image/svg-as-border-image-expected.png:
  • platform/qt-5.0-wk2/svg/as-image/animated-svg-as-image-expected.png:
  • platform/qt-5.0-wk2/svg/as-image/animated-svg-as-image-no-fixed-intrinsic-size-expected.png:
  • platform/qt-5.0-wk2/svg/as-image/animated-svg-as-image-same-image-expected.png:
  • platform/qt-5.0-wk2/svg/as-image/image-respects-pageScaleFactor-expected.png:
  • platform/qt-5.0-wk2/svg/as-image/img-preserveAspectRatio-support-1-expected.png:
  • platform/qt-5.0-wk2/svg/as-image/img-preserveAspectRatio-support-2-expected.png: Added.
  • platform/qt-5.0-wk2/svg/as-image/svg-image-change-content-size-expected.png:
  • platform/qt-5.0-wk2/svg/as-object/embedded-svg-immediate-offsetWidth-query-expected.png:
  • platform/qt-5.0-wk2/svg/as-object/embedded-svg-size-changes-expected.png:
  • platform/qt-5.0-wk2/svg/as-object/nested-embedded-svg-size-changes-expected.png:
  • platform/qt-5.0-wk2/svg/batik/filters/feTile-expected.png:
  • platform/qt-5.0-wk2/svg/batik/filters/filterRegions-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/masking/maskRegions-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/paints/patternPreserveAspectRatioA-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/paints/patternRegionA-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/paints/patternRegions-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/paints/patternRegions-positioned-objects-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/smallFonts-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/textAnchor-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/textAnchor2-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/textAnchor3-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/textDecoration-expected.png:
  • platform/qt-5.0-wk2/svg/batik/text/textDecoration2-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/textEffect2-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/textEffect3-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/textFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/batik/text/textGlyphOrientationHorizontal-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/textLayout-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/textLayout2-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/textLength-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/textOnPath-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/textOnPath2-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/textOnPath3-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/textOnPathSpaces-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/textPCDATA-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/textPosition-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/textPosition2-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/textProperties-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/textProperties2-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/textStyles-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/verticalText-expected.png: Added.
  • platform/qt-5.0-wk2/svg/batik/text/verticalTextOnPath-expected.png: Added.
  • platform/qt-5.0-wk2/svg/carto.net/button-expected.png: Added.
  • platform/qt-5.0-wk2/svg/carto.net/colourpicker-expected.png: Added.
  • platform/qt-5.0-wk2/svg/carto.net/slider-expected.png: Added.
  • platform/qt-5.0-wk2/svg/carto.net/textbox-expected.png: Added.
  • platform/qt-5.0-wk2/svg/carto.net/window-expected.png:
  • platform/qt-5.0-wk2/svg/clip-path/clip-path-pixelation-expected.png: Added.
  • platform/qt-5.0-wk2/svg/clip-path/deep-nested-clip-in-mask-different-unitTypes-expected.png: Added.
  • platform/qt-5.0-wk2/svg/css/composite-shadow-text-expected.png: Added.
  • platform/qt-5.0-wk2/svg/css/text-shadow-multiple-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/SVGMatrix-interface-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/SVGPoint-matrixTransform-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/absolute-sized-content-with-resources-expected.png:
  • platform/qt-5.0-wk2/svg/custom/alignment-baseline-modes-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/bug45331-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/circle-move-invalidation-expected.png:
  • platform/qt-5.0-wk2/svg/custom/clip-mask-negative-scale-expected.png:
  • platform/qt-5.0-wk2/svg/custom/clip-path-referencing-use-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/clone-element-with-animated-svg-properties-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/container-opacity-clip-viewBox-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/coords-relative-units-transforms-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/dominant-baseline-hanging-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/dominant-baseline-modes-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/dynamic-svg-document-creation-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/embedding-external-svgs-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/empty-clip-path-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/feComponentTransfer-Discrete-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/feComponentTransfer-Gamma-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/feComponentTransfer-Linear-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/feComponentTransfer-Table-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/fill-SVGPaint-interface-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/fill-fallback-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/focus-ring-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/font-face-cascade-order-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/font-face-simple-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/foreignObject-crash-on-hover-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/getPresentationAttribute-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/getscreenctm-in-mixed-content-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/getscreenctm-in-scrollable-div-area-nested-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/getsvgdocument-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/gradient-cycle-detection-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/gradient-deep-referencing-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/gradient-with-1d-boundingbox-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/hit-test-path-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/hit-test-path-stroke-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/hit-test-unclosed-subpaths-expected.png:
  • platform/qt-5.0-wk2/svg/custom/hit-test-with-br-expected.png:
  • platform/qt-5.0-wk2/svg/custom/image-parent-translation-expected.png:
  • platform/qt-5.0-wk2/svg/custom/image-rescale-clip-expected.png:
  • platform/qt-5.0-wk2/svg/custom/image-rescale-scroll-expected.png:
  • platform/qt-5.0-wk2/svg/custom/image-small-width-height-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/image-with-transform-clip-filter-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/inline-svg-in-xhtml-expected.png:
  • platform/qt-5.0-wk2/svg/custom/invalid-css-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/invalid-fill-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/invalid-fill-hex-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/invalid-lengthlist-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/invalid-stroke-hex-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/invalid-uri-stroke-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/invisible-text-after-scrolling-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/js-update-stop-linked-gradient-expected.png:
  • platform/qt-5.0-wk2/svg/custom/junk-data-expected.png:
  • platform/qt-5.0-wk2/svg/custom/linking-a-03-b-preserveAspectRatio-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/linking-a-03-b-transform-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/linking-a-03-b-viewBox-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/linking-a-03-b-viewBox-transform-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/linking-a-03-b-viewTarget-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/linking-a-03-b-zoomAndPan-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/linking-uri-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/marker-default-width-height-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/marker-overflow-clip-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/missing-xlink-expected.png:
  • platform/qt-5.0-wk2/svg/custom/mouse-move-on-svg-container-standalone-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/no-inherited-dashed-stroke-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/object-sizing-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/path-bad-data-expected.png:
  • platform/qt-5.0-wk2/svg/custom/pattern-cycle-detection-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/pattern-deep-referencing-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/pattern-incorrect-tiling-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/pattern-rotate-expected.png:
  • platform/qt-5.0-wk2/svg/custom/pattern-rotate-gaps-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/pattern-userSpaceOnUse-userToBaseTransform-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/percentage-of-html-parent-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/pointer-events-image-css-transform-expected.png:
  • platform/qt-5.0-wk2/svg/custom/pointer-events-image-expected.png:
  • platform/qt-5.0-wk2/svg/custom/pointer-events-path-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/pointer-events-text-css-transform-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/pointer-events-text-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/preserve-aspect-ratio-syntax-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/recursive-filter-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/recursive-gradient-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/recursive-mask-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/recursive-pattern-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/relative-sized-content-expected.png:
  • platform/qt-5.0-wk2/svg/custom/relative-sized-content-with-resources-expected.png:
  • platform/qt-5.0-wk2/svg/custom/relative-sized-deep-shadow-tree-content-expected.png:
  • platform/qt-5.0-wk2/svg/custom/relative-sized-image-expected.png:
  • platform/qt-5.0-wk2/svg/custom/relative-sized-inner-svg-expected.png:
  • platform/qt-5.0-wk2/svg/custom/relative-sized-shadow-tree-content-expected.png:
  • platform/qt-5.0-wk2/svg/custom/relative-sized-shadow-tree-content-with-symbol-expected.png:
  • platform/qt-5.0-wk2/svg/custom/relative-sized-use-on-symbol-expected.png:
  • platform/qt-5.0-wk2/svg/custom/relative-sized-use-without-attributes-on-symbol-expected.png:
  • platform/qt-5.0-wk2/svg/custom/rootmost-svg-xy-attrs-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.png:
  • platform/qt-5.0-wk2/svg/custom/second-inline-text-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/shapes-supporting-markers-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/simple-text-double-shadow-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/simpleCDF-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/stroke-fallback-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/stroke-width-large-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/stroked-pattern-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/style-attribute-font-size-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/svg-curve-with-relative-cordinates-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/svg-float-border-padding-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/svg-fonts-in-html-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/svg-fonts-segmented-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/svg-fonts-without-missing-glyph-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/svg-fonts-word-spacing-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/svg-overflow-types-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/text-clip-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/text-decoration-visibility-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/text-dom-01-f-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/text-hit-test-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/text-image-opacity-expected.png:
  • platform/qt-5.0-wk2/svg/custom/text-letter-spacing-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/text-linking-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/text-rotated-gradient-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/text-rotation-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/text-tref-03-b-change-href-dom-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/text-tref-03-b-change-href-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/text-tref-03-b-referenced-element-removal-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/text-tref-03-b-tref-removal-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/text-whitespace-handling-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/text-x-dx-lists-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/text-x-dy-lists-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/text-x-override-in-tspan-child-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/text-xy-updates-SVGList-expected.png:
  • platform/qt-5.0-wk2/svg/custom/tref-own-content-removal-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/tref-update-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/use-detach-expected.png:
  • platform/qt-5.0-wk2/svg/custom/use-dynamic-append-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/use-elementInstance-event-target-expected.png:
  • platform/qt-5.0-wk2/svg/custom/use-instanceRoot-modifications-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/use-modify-target-container-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/use-modify-target-symbol-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/use-on-g-containing-symbol-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/use-on-g-containing-use-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/use-on-g-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/use-on-rect-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/use-on-symbol-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/use-on-text-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/use-on-use-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/use-property-changes-through-dom-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/use-property-changes-through-svg-dom-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/use-recursion-1-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/use-recursion-2-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/use-recursion-3-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/use-recursion-4-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/use-transform-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/viewbox-syntax-expected.png: Added.
  • platform/qt-5.0-wk2/svg/custom/viewport-em-expected.png: Added.
  • platform/qt-5.0-wk2/svg/dom/SVGLengthList-appendItem-expected.png:
  • platform/qt-5.0-wk2/svg/dom/SVGLengthList-getItem-expected.png: Added.
  • platform/qt-5.0-wk2/svg/dom/SVGLengthList-initialize-expected.png:
  • platform/qt-5.0-wk2/svg/dom/SVGLengthList-insertItemBefore-expected.png:
  • platform/qt-5.0-wk2/svg/dom/SVGLengthList-removeItem-expected.png:
  • platform/qt-5.0-wk2/svg/dom/SVGLengthList-replaceItem-expected.png:
  • platform/qt-5.0-wk2/svg/dom/SVGLengthList-xml-dom-modifications-expected.png:
  • platform/qt-5.0-wk2/svg/dom/SVGLocatable-getCTM-svg-root-expected.png: Added.
  • platform/qt-5.0-wk2/svg/dom/SVGPathSegList-appendItem-expected.png:
  • platform/qt-5.0-wk2/svg/dom/SVGPathSegList-clear-and-initialize-expected.png:
  • platform/qt-5.0-wk2/svg/dom/SVGPathSegList-cloning-expected.png: Added.
  • platform/qt-5.0-wk2/svg/dom/SVGPathSegList-insertItemBefore-expected.png:
  • platform/qt-5.0-wk2/svg/dom/SVGPathSegList-removeItem-expected.png:
  • platform/qt-5.0-wk2/svg/dom/SVGPathSegList-replaceItem-expected.png:
  • platform/qt-5.0-wk2/svg/dom/SVGPathSegList-segment-modification-expected.png:
  • platform/qt-5.0-wk2/svg/dom/SVGPathSegList-xml-dom-synchronization-expected.png:
  • platform/qt-5.0-wk2/svg/dom/SVGPathSegList-xml-dom-synchronization2-expected.png:
  • platform/qt-5.0-wk2/svg/dom/SVGRectElement/rect-modify-rx-expected.png: Added.
  • platform/qt-5.0-wk2/svg/dom/SVGStringList-basics-expected.png:
  • platform/qt-5.0-wk2/svg/dom/css-transforms-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVG-dynamic-css-transform-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGCircleElement-dom-cx-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGCircleElement-dom-cy-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGCircleElement-dom-r-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGCircleElement-dom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGCircleElement-svgdom-cx-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGCircleElement-svgdom-cy-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGCircleElement-svgdom-r-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGCircleElement-svgdom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGClipPath-influences-hitTesting-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGClipPathElement-css-transform-influences-hitTesting-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGClipPathElement-dom-clipPathUnits-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGClipPathElement-svgdom-clipPathUnits-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGCursorElement-dom-x-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGCursorElement-dom-y-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGCursorElement-svgdom-x-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGCursorElement-svgdom-y-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGEllipseElement-dom-cx-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGEllipseElement-dom-cy-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGEllipseElement-dom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGEllipseElement-dom-rx-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGEllipseElement-dom-ry-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGEllipseElement-svgdom-cx-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGEllipseElement-svgdom-cy-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGEllipseElement-svgdom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGEllipseElement-svgdom-rx-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGEllipseElement-svgdom-ry-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEBlendElement-dom-in-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEBlendElement-dom-in2-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEBlendElement-dom-mode-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEBlendElement-svgdom-in-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEBlendElement-svgdom-in2-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEBlendElement-svgdom-mode-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEColorMatrixElement-dom-in-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEColorMatrixElement-dom-type-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEColorMatrixElement-dom-values-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-in-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-type-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-dom-amplitude-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-dom-exponent-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-dom-intercept-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-dom-offset-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-dom-slope-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-dom-tableValues-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-dom-type-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-amplitude-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-exponent-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-intercept-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-offset-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-slope-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-tableValues-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-type-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-dom-in-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-dom-k1-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-dom-k2-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-dom-k3-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-dom-k4-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-dom-operator-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-svgdom-in-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-svgdom-in2-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-svgdom-k1-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-svgdom-k2-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-svgdom-k3-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-svgdom-k4-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFECompositeElement-svgdom-operator-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-bias-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-divisor-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-edgeMode-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-in-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelMatrix-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelUnitLength-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-order-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-preserveAlpha-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-targetX-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-targetY-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-bias-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-divisor-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-edgeMode-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-in-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelMatrix-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelUnitLength-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-order-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-preserveAlpha-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-targetX-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-targetY-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-diffuseConstant-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-in-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-lighting-color-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-surfaceScale-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDiffuseLightingElement-inherit-lighting-color-css-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDiffuseLightingElement-lighting-color-css-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-diffuseConstant-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-in-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-surfaceScale-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-in-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-in2-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-scale-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-xChannelSelector-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-yChannelSelector-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-in-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-in2-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-scale-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-xChannelSelector-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-yChannelSelector-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDistantLightElement-dom-azimuth-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDistantLightElement-dom-elevation-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDistantLightElement-svgdom-azimuth-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDistantLightElement-svgdom-elevation-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-dom-dx-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-dom-dy-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-dom-in-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-color-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-opacity-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-dom-stdDeviation-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-dx-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-dy-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-in-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-color-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-opacity-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-stdDeviation-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEFloodElement-dom-flood-color-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEFloodElement-inherit-flood-color-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-color-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-opacity-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-in-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-call-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEGaussianBlurElement-svgdom-in-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEMergeNodeElement-dom-in-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEMergeNodeElement-svgdom-in-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEMorphologyElement-dom-in-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEMorphologyElement-dom-operator-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEMorphologyElement-dom-radius-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-in-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-operator-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-radius-call-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEOffsetElement-dom-dx-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEOffsetElement-dom-dy-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEOffsetElement-dom-in-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEOffsetElement-svgdom-dx-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEOffsetElement-svgdom-dy-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEOffsetElement-svgdom-in-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEPointLightElement-dom-x-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEPointLightElement-dom-y-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEPointLightElement-dom-z-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEPointLightElement-svgdom-x-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEPointLightElement-svgdom-y-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFEPointLightElement-svgdom-z-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-dom-in-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-dom-specularConstant-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-dom-specularExponent-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-dom-suraceScale-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-inherit-lighting-color-css-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-lighting-color-css-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-remove-lightSource-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-in-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-specularConstant-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-specularExponent-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-suraceScale-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-dom-limitingConeAngle-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtX-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtY-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtZ-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-dom-specularExponent-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-dom-x-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-dom-y-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-dom-z-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-svgdom-limitingConeAngle-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtX-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtY-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtZ-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-svgdom-specularExponent-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-svgdom-x-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-svgdom-y-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFESpotLightElement-svgdom-z-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETileElement-dom-in-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETileElement-svgdom-in-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-dom-baseFrequency-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-dom-numOctaves-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-dom-seed-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-dom-type-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-baseFrequency-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-numOctaves-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-seed-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-type-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-dom-filterRes-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-dom-filterUnits-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-dom-height-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-dom-primitiveUnits-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-dom-width-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-dom-x-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-dom-y-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-svgdom-filterRes-call-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-svgdom-filterResX-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-svgdom-filterResY-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-svgdom-filterUnits-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-svgdom-height-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-svgdom-primitiveUnits-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-svgdom-width-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-svgdom-x-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterElement-svgdom-y-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-height-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-result-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-width-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-x-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-y-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-height-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-result-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-width-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-x-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-y-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGForeignObjectElement-dom-height-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGForeignObjectElement-dom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGForeignObjectElement-dom-width-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGForeignObjectElement-dom-x-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGForeignObjectElement-dom-y-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGForeignObjectElement-svgdom-height-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGForeignObjectElement-svgdom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGForeignObjectElement-svgdom-width-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGForeignObjectElement-svgdom-x-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGForeignObjectElement-svgdom-y-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGGElement-dom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGGElement-svgdom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGImageElement-dom-height-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGImageElement-dom-preserveAspectRatio-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGImageElement-dom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGImageElement-dom-width-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGImageElement-dom-x-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGImageElement-dom-y-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGImageElement-svgdom-height-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGImageElement-svgdom-preserveAspectRatio-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGImageElement-svgdom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGImageElement-svgdom-width-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGImageElement-svgdom-x-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGImageElement-svgdom-y-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGLineElement-dom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGLineElement-dom-x1-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGLineElement-dom-x2-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGLineElement-dom-y1-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGLineElement-dom-y2-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGLineElement-svgdom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGLineElement-svgdom-x1-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGLineElement-svgdom-x2-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGLineElement-svgdom-y1-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGLineElement-svgdom-y2-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientTransform-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientUnits-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGLinearGradientElement-dom-x1-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGLinearGradientElement-dom-x2-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGLinearGradientElement-dom-y1-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGLinearGradientElement-dom-y2-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientTransform-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientUnits-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x1-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x2-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y1-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y2-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-dom-markerHeight-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-dom-markerUnits-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-dom-markerWidth-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-dom-orient-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-dom-refX-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-dom-refY-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-svgdom-markerHeight-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-svgdom-markerUnits-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-svgdom-markerWidth-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-svgdom-orientAngle-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-svgdom-orientType-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-svgdom-refX-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-svgdom-refY-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-svgdom-setOrientToAngle-call-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMarkerElement-svgdom-setOrientToAuto-call-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMaskElement-dom-height-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMaskElement-dom-maskContentUnits-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMaskElement-dom-maskUnits-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMaskElement-dom-width-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMaskElement-dom-x-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMaskElement-dom-y-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMaskElement-svgdom-height-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMaskElement-svgdom-maskContentUnits-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMaskElement-svgdom-maskUnits-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMaskElement-svgdom-width-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMaskElement-svgdom-x-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGMaskElement-svgdom-y-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGPathElement-dom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGPathElement-svgdom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGPatternElement-dom-height-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGPatternElement-dom-patternContentUnits-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGPatternElement-dom-patternTransform-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGPatternElement-dom-patternUnits-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGPatternElement-dom-width-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGPatternElement-dom-x-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGPatternElement-dom-y-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGPatternElement-svgdom-height-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGPatternElement-svgdom-patternContentUnits-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGPatternElement-svgdom-patternTransform-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGPatternElement-svgdom-patternUnits-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGPatternElement-svgdom-width-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGPatternElement-svgdom-x-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGPatternElement-svgdom-y-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGPolygonElement-dom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGPolygonElement-svgdom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGPolylineElement-dom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGPolylineElement-svgdom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGRadialGradientElement-dom-cx-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGRadialGradientElement-dom-cy-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGRadialGradientElement-dom-fx-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGRadialGradientElement-dom-fy-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientTransform-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientUnits-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGRadialGradientElement-dom-r-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cx-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cy-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fx-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fy-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientTransform-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientUnits-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGRadialGradientElement-svgdom-r-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGRectElement-dom-height-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGRectElement-dom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGRectElement-dom-width-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGRectElement-dom-x-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGRectElement-dom-y-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGRectElement-svgdom-height-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGRectElement-svgdom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGRectElement-svgdom-width-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGRectElement-svgdom-x-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGRectElement-svgdom-y-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGSVGElement-dom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGSVGElement-svgdom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGTRefElement-dom-href-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGTextElement-dom-dx-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGTextElement-dom-dy-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGTextElement-dom-lengthAdjust-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGTextElement-dom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGTextElement-dom-rotate-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGTextElement-dom-textLength-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGTextElement-dom-transform-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGTextElement-dom-x-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGTextElement-dom-y-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGTextElement-svgdom-dx-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGTextElement-svgdom-dy-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGTextElement-svgdom-lengthAdjust-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGTextElement-svgdom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGTextElement-svgdom-rotate-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGTextElement-svgdom-textLength-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGTextElement-svgdom-transform-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGTextElement-svgdom-x-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGTextElement-svgdom-y-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGUseElement-dom-href1-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGUseElement-dom-href2-attr-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGUseElement-dom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGUseElement-svgdom-href1-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGUseElement-svgdom-href2-prop-expected.png:
  • platform/qt-5.0-wk2/svg/dynamic-updates/SVGUseElement-svgdom-requiredFeatures-expected.png:
  • platform/qt-5.0-wk2/svg/filters/feComposite-expected.png: Added.
  • platform/qt-5.0-wk2/svg/filters/filter-on-filter-for-text-expected.png: Added.
  • platform/qt-5.0-wk2/svg/filters/filter-width-update-expected.png:
  • platform/qt-5.0-wk2/svg/foreignObject/svg-document-in-html-document-expected.png: Added.
  • platform/qt-5.0-wk2/svg/hixie/data-types/002-expected.png: Added.
  • platform/qt-5.0-wk2/svg/hixie/error/003-expected.png: Added.
  • platform/qt-5.0-wk2/svg/hixie/error/010-expected.png: Added.
  • platform/qt-5.0-wk2/svg/hixie/error/011-expected.png: Added.
  • platform/qt-5.0-wk2/svg/hixie/error/012-expected.png:
  • platform/qt-5.0-wk2/svg/hixie/error/013-expected.png: Added.
  • platform/qt-5.0-wk2/svg/hixie/intrinsic/001-expected.png: Added.
  • platform/qt-5.0-wk2/svg/hixie/intrinsic/002-expected.png: Added.
  • platform/qt-5.0-wk2/svg/hixie/intrinsic/003-expected.png: Added.
  • platform/qt-5.0-wk2/svg/hixie/mixed/003-expected.png: Added.
  • platform/qt-5.0-wk2/svg/hixie/mixed/006-expected.png: Added.
  • platform/qt-5.0-wk2/svg/hixie/mixed/008-expected.png: Added.
  • platform/qt-5.0-wk2/svg/hixie/mixed/009-expected.png: Added.
  • platform/qt-5.0-wk2/svg/hixie/mixed/010-expected.png: Added.
  • platform/qt-5.0-wk2/svg/hixie/mixed/011-expected.png: Added.
  • platform/qt-5.0-wk2/svg/hixie/perf/003-expected.png:
  • platform/qt-5.0-wk2/svg/hixie/perf/007-expected.png:
  • platform/qt-5.0-wk2/svg/hixie/rendering-model/003-expected.png: Added.
  • platform/qt-5.0-wk2/svg/hixie/rendering-model/004-expected.png: Added.
  • platform/qt-5.0-wk2/svg/hixie/text/003-expected.png: Added.
  • platform/qt-5.0-wk2/svg/hixie/viewbox/preserveAspectRatio/001-expected.png: Added.
  • platform/qt-5.0-wk2/svg/hixie/viewbox/preserveAspectRatio/002-expected.png: Added.
  • platform/qt-5.0-wk2/svg/in-html/circle-expected.png:
  • platform/qt-5.0-wk2/svg/text/bidi-embedded-direction-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/ems-display-none-expected.png:
  • platform/qt-5.0-wk2/svg/text/exs-display-none-expected.png:
  • platform/qt-5.0-wk2/svg/text/font-size-below-point-five-2-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/font-size-below-point-five-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/foreignObject-repaint-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/kerning-expected.png:
  • platform/qt-5.0-wk2/svg/text/multichar-glyph-expected.png:
  • platform/qt-5.0-wk2/svg/text/scaled-font-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/select-textLength-spacing-squeeze-1-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/select-textLength-spacing-squeeze-2-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/select-textLength-spacing-squeeze-4-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/select-textLength-spacing-stretch-2-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/select-textLength-spacing-stretch-3-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/select-textLength-spacing-stretch-4-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/select-textLength-spacingAndGlyphs-squeeze-2-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/select-textLength-spacingAndGlyphs-squeeze-3-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/select-textLength-spacingAndGlyphs-squeeze-4-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/select-x-list-2-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/select-x-list-3-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/select-x-list-4-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/select-x-list-with-tspans-2-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/select-x-list-with-tspans-3-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/select-x-list-with-tspans-4-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/selection-background-color-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/selection-doubleclick-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/selection-styles-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/selection-tripleclick-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/small-fonts-2-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/small-fonts-3-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/small-fonts-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/small-fonts-in-html5-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-align-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-align-02-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-align-03-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-align-04-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-align-05-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-align-06-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-altglyph-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-deco-01-b-expected.png:
  • platform/qt-5.0-wk2/svg/text/text-fill-opacity-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-fonts-02-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-gradient-positioning-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-midpoint-split-bug-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-overflow-ellipsis-svgfont-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-path-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-repaint-rects-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-rescale-expected.png:
  • platform/qt-5.0-wk2/svg/text/text-spacing-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-text-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-text-03-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-text-04-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-text-05-t-expected.png:
  • platform/qt-5.0-wk2/svg/text/text-text-06-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-text-07-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-tref-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-tselect-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-tspan-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-viewbox-rescale-expected.png:
  • platform/qt-5.0-wk2/svg/text/text-ws-01-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/text-ws-02-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/text/tspan-dynamic-positioning-expected.png:
  • platform/qt-5.0-wk2/svg/transforms/animated-path-inside-transformed-html-expected.png:
  • platform/qt-5.0-wk2/svg/transforms/svg-css-transforms-clip-path-expected.png: Added.
  • platform/qt-5.0-wk2/svg/transforms/svg-css-transforms-expected.png: Added.
  • platform/qt-5.0-wk2/svg/transforms/text-with-mask-with-svg-transform-expected.png: Added.
  • platform/qt-5.0-wk2/svg/transforms/text-with-pattern-inside-transformed-html-expected.png:
  • platform/qt-5.0-wk2/svg/transforms/text-with-pattern-with-svg-transform-expected.png:
  • platform/qt-5.0-wk2/svg/wicd/rightsizing-grid-expected.png:
  • platform/qt-5.0-wk2/svg/wicd/test-rightsizing-a-expected.png: Added.
  • platform/qt-5.0-wk2/svg/wicd/test-rightsizing-b-expected.png:
  • platform/qt-5.0-wk2/svg/wicd/test-scalable-background-image1-expected.png:
  • platform/qt-5.0-wk2/svg/wicd/test-scalable-background-image2-expected.png:
  • platform/qt-5.0-wk2/svg/zoom/page/zoom-coords-viewattr-01-b-expected.png:
  • platform/qt-5.0-wk2/svg/zoom/page/zoom-hixie-mixed-008-expected.png:
  • platform/qt-5.0-wk2/svg/zoom/page/zoom-hixie-rendering-model-004-expected.png:
  • platform/qt-5.0-wk2/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.png:
  • platform/qt-5.0-wk2/svg/zoom/page/zoom-mask-with-percentages-expected.png:
  • platform/qt-5.0-wk2/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png:
  • platform/qt-5.0-wk2/svg/zoom/page/zoom-svg-float-border-padding-expected.png:
  • platform/qt-5.0-wk2/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.png:
  • platform/qt-5.0-wk2/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png:
  • platform/qt-5.0-wk2/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.png:
  • platform/qt-5.0-wk2/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png:
  • platform/qt-5.0-wk2/svg/zoom/text/zoom-coords-viewattr-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/zoom/text/zoom-foreignObject-expected.png: Added.
  • platform/qt-5.0-wk2/svg/zoom/text/zoom-hixie-mixed-008-expected.png:
  • platform/qt-5.0-wk2/svg/zoom/text/zoom-hixie-rendering-model-004-expected.png:
  • platform/qt-5.0-wk2/svg/zoom/text/zoom-svg-float-border-padding-expected.png:
  • platform/qt-5.0-wk2/tables/layering/paint-test-layering-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/layering/paint-test-layering-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/45621-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug10009-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug100334-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug10036-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug101201-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug101674-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug102145-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug102145-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug102145-3-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug102145-4-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug10269-2-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug10296-1-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug1055-1-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug10565-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug10633-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug106816-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug109043-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug11026-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug110566-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug113235-1-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug113235-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug113235-3-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug113424-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug11384q-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug1163-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug1188-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug11944-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug119786-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug12008-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug120364-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug1224-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug12268-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug123862-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug1261-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug126742-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug12709-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug127267-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug128229-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug12908-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug1296-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug1302-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug131020-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug131020_iframe-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug13105-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug13118-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug1318-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug13196-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug133756-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug133756-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug13484-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug139524-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug14159-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug14159-3-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug1430-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug14323-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug149275-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug14929-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug15247-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug15544-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug157890-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug16012-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug16252-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug17130-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug17130-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug17138-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug17168-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug17587-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug1800-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug1802-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug1802s-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug1809-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug1828-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug18359-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug18558-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug18664-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug18955-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug19061-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug19061-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug19356-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug194024-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug19599-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug2050-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug20579-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug20804-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug2123-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug21299-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug215629-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug22019-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug220536-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug22246-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug22246-2a-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug22246-3-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug22246-3a-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug222846-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug2267-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug227123-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug23151-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug23235-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug23299-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug24200-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug24503-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug24627-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug24661-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug2469-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug2479-1-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug2479-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug2479-3-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug2479-4-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug24880-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug25004-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug25086-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug2509-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug25663-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug2684-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug27038-2-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug275625-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug2757-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug2763-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug2773-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug278266-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug27993-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug28341-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug2886-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug2886-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug28928-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug29058-3-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug29157-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug29429-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug2947-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug2962-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug2973-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug2981-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug2981-2-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug2997-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug30273-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug30332-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug30332-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug30418-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug30559-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug30692-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug30985-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug3103-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug3191-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug32205-2-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug32205-3-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug3260-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug32841-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug3309-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug33137-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug33855-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug3454-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug35662-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug3681-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug3681-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug38916-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug39209-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug3977-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug40828-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug4093-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug41890-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug42187-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug42443-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug4284-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug43039-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug43204-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug4382-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug4385-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug43854-1-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug43854-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug4427-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug44505-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug44523-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug4501-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug45055-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug45055-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug4523-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug45486-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug4576-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug46268-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug46268-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug46268-3-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug46268-5-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug46268-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug46368-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug46368-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug46480-1-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug46480-2-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug46623-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug46623-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug46924-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug47432-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug48028-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug48028-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug4803-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug4849-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug4849-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug48827-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug50695-1-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug51037-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug51140-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug51727-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug5188-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug52505-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug52506-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug53891-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug54450-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug5538-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug55527-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug55694-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug57300-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug57378-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug57828-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug57828-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug5798-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug5799-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug5835-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug5838-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug58402-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug59354-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug60013-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug60749-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug60804-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug60807-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug60992-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug6184-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug63785-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug6404-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug647-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug6674-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug67864-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug67915-1-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug68912-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug68998-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug69187-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug69382-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug69382-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug709-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug7112-1-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug7112-2-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug7121-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug72359-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug73321-expected.png:
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug7342-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug7471-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug75250-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug7714-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug78162-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug8032-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug80762-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug82946-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug82946-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug83786-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug8381-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug8411-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug86708-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug88035-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug88035-2-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug8858-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug8950-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug9123-1-expected.png: Added.
  • platform/qt-5.0-wk2/tables/mozilla/bugs/bug9123-2-expected.png: Added.
  • pwarning: inexact rename detection was skipped due to too many files.: Added.
3:15 AM WebKitGTK/Wayland created by itoral@igalia.com
3:07 AM Changeset in webkit [151263] by rniwa@webkit.org
  • 1 edit
    1 delete in trunk/Tools

Remove run-performance-tests
https://bugs.webkit.org/show_bug.cgi?id=117285

Reviewed by Andreas Kling.

Remove the script since it's not used anywhere.

  • BuildSlaveSupport/run-performance-tests: Removed.
2:43 AM Changeset in webkit [151262] by commit-queue@webkit.org
  • 14 edits in trunk/Source

Coordinated Graphics : Refactor CoordinatedSurface to manage the lifecycle of GraphicsContext
https://bugs.webkit.org/show_bug.cgi?id=108899

Patch by Jae Hyun Park <jae.park@company100.net> on 2013-06-06
Reviewed by Noam Rosenthal.

This is a preparation patch for Threaded Coordinated Graphics.

This patch changes CoordinatedSurface to be responsible for the
lifecycle of GraphicsContext used in Coordinated Graphics System.
CoordinatedImageBacking and UpdateAtlas do not ask for the ownership
of GraphicsContext anymore. Instead, those classes use client pattern to
ask the CoordiantedSurface to paint to the GraphicsContext.

This refactoring is needed to implement CoordinatedSurface for Threaded
Coordinated Graphics.

Source/WebCore:

No new tests, covered by existing tests.

  • platform/graphics/texmap/coordinated/CoordinatedGraphicsLayer.cpp:

(WebCore::CoordinatedGraphicsLayer::paintToSurface):

  • platform/graphics/texmap/coordinated/CoordinatedGraphicsLayer.h:
  • platform/graphics/texmap/coordinated/CoordinatedImageBacking.cpp:

(WebCore::ImageBackingSurfaceClient::ImageBackingSurfaceClient):
(WebCore::CoordinatedImageBacking::update):

  • platform/graphics/texmap/coordinated/CoordinatedSurface.h:

(WebCore::CoordinatedSurface::Client::~Client):

  • platform/graphics/texmap/coordinated/CoordinatedTile.cpp:

(WebCore::CoordinatedTile::updateBackBuffer):
(WebCore::CoordinatedTile::paintToSurfaceContext):

  • platform/graphics/texmap/coordinated/CoordinatedTile.h:
  • platform/graphics/texmap/coordinated/UpdateAtlas.cpp:

(WebCore::UpdateAtlasSurfaceClient::UpdateAtlasSurfaceClient):
(WebCore::UpdateAtlas::paintOnAvailableBuffer):

  • platform/graphics/texmap/coordinated/UpdateAtlas.h:

Source/WebKit2:

  • Shared/CoordinatedGraphics/WebCoordinatedSurface.cpp:

(WebKit::WebCoordinatedSurface::paintToSurface):

  • Shared/CoordinatedGraphics/WebCoordinatedSurface.h:
  • WebProcess/WebPage/CoordinatedGraphics/CoordinatedLayerTreeHost.cpp:

(WebKit::CoordinatedLayerTreeHost::paintToSurface):

  • WebProcess/WebPage/CoordinatedGraphics/CoordinatedLayerTreeHost.h:
2:40 AM WebKitGTK edited by itoral@igalia.com
(diff)
2:19 AM Changeset in webkit [151261] by zarvai@inf.u-szeged.hu
  • 219 edits
    803 adds in trunk/LayoutTests

[Qt] Unreviewed gardening. Rebaselining after r151205.

  • platform/qt-5.0-wk2/fast/flexbox/025-expected.png: Added.
  • platform/qt-5.0-wk2/fast/flexbox/026-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/003-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/006-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/007-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/HTMLOptionElement_label01-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/HTMLOptionElement_label02-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/HTMLOptionElement_label03-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/HTMLOptionElement_label04-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/HTMLOptionElement_label05-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/basic-buttons-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/basic-inputs-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/basic-selects-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/basic-textareas-quirks-expected.png:
  • platform/qt-5.0-wk2/fast/forms/box-shadow-override-expected.png:
  • platform/qt-5.0-wk2/fast/forms/button-align-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/button-default-title-expected.png:
  • platform/qt-5.0-wk2/fast/forms/button-generated-content-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/button-inner-block-reuse-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/button-positioned-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/button-sizes-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/button-style-color-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/button-submit-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/button-table-styles-expected.png:
  • platform/qt-5.0-wk2/fast/forms/button-text-transform-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/caret-rtl-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/control-clip-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/control-restrict-line-height-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/datalist/input-appearance-range-with-padding-with-datalist-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/disabled-select-change-index-expected.png:
  • platform/qt-5.0-wk2/fast/forms/fieldset-align-expected.png:
  • platform/qt-5.0-wk2/fast/forms/fieldset-legend-padding-unclipped-fieldset-border-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/file/file-input-direction-expected.png:
  • platform/qt-5.0-wk2/fast/forms/file/file-input-disabled-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/file/file-input-pressed-state-expected.png:
  • platform/qt-5.0-wk2/fast/forms/float-before-fieldset-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/floating-textfield-relayout-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/form-hides-table-expected.png:
  • platform/qt-5.0-wk2/fast/forms/form-in-malformed-markup-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/formmove-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/formmove2-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/hidden-listbox-expected.png:
  • platform/qt-5.0-wk2/fast/forms/image-border-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/indeterminate-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-align-image-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-appearance-bkcolor-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-appearance-disabled-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-appearance-focus-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-appearance-preventDefault-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-appearance-readonly-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-appearance-selection-expected.png:
  • platform/qt-5.0-wk2/fast/forms/input-appearance-visibility-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-baseline-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-disabled-color-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-double-click-selection-gap-bug-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-field-text-truncated-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-first-letter-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-no-renderer-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-placeholder-paint-order-expected.png:
  • platform/qt-5.0-wk2/fast/forms/input-placeholder-visibility-1-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-placeholder-visibility-3-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-readonly-dimmed-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-readonly-empty-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-spaces-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-text-click-inside-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-text-double-click-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-text-option-delete-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-text-self-emptying-click-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/input-text-word-wrap-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/linebox-overflow-in-textarea-padding-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/listbox-scrollbar-incremental-load-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/menulist-clip-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/menulist-no-overflow-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/menulist-option-wrap-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/menulist-style-color-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/negativeLineHeight-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/number/number-appearance-spinbutton-disabled-readonly-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/option-index-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/option-script-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/option-strip-whitespace-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/option-text-clip-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/placeholder-position-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/placeholder-pseudo-style-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/preserveFormDuringResidualStyle-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/range/range-thumb-height-percentage-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/range/slider-padding-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/search-cancel-button-style-sharing-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/search-display-none-cancel-button-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/select-align-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/select-block-background-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/select-change-listbox-size-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/select-change-listbox-to-popup-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/select-change-popup-to-listbox-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/select-dirty-parent-pref-widths-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/select-disabled-appearance-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/select-display-none-style-resolve-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/select-initial-position-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/select-item-background-clip-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/select-list-box-with-height-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/select-listbox-multiple-no-focusring-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/select-overflow-scroll-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/select-overflow-scroll-inherited-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/select-selected-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/select-size-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/select-style-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/select/optgroup-rendering-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/targeted-frame-submission-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/text-style-color-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/textarea-align-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/textarea-placeholder-pseudo-style-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/textarea-placeholder-set-attribute-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/textarea-placeholder-visibility-1-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/textarea-placeholder-visibility-2-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/textarea/textarea-placeholder-paint-order-expected.png:
  • platform/qt-5.0-wk2/fast/forms/textfield-focus-ring-expected.png: Added.
  • platform/qt-5.0-wk2/fast/forms/textfield-outline-expected.png: Added.
  • platform/qt-5.0-wk2/fast/frames/flattening/frameset-flattening-advanced-expected.png:
  • platform/qt-5.0-wk2/fast/frames/flattening/frameset-flattening-grid-expected.png:
  • platform/qt-5.0-wk2/fast/frames/flattening/frameset-flattening-simple-expected.png:
  • platform/qt-5.0-wk2/fast/frames/flattening/frameset-flattening-subframe-resize-expected.png:
  • platform/qt-5.0-wk2/fast/frames/flattening/iframe-flattening-fixed-height-expected.png: Added.
  • platform/qt-5.0-wk2/fast/frames/flattening/iframe-flattening-fixed-width-and-height-expected.png: Added.
  • platform/qt-5.0-wk2/fast/frames/flattening/iframe-flattening-fixed-width-and-height-no-scrolling-expected.png: Added.
  • platform/qt-5.0-wk2/fast/frames/flattening/iframe-flattening-fixed-width-expected.png: Added.
  • platform/qt-5.0-wk2/fast/frames/flattening/iframe-flattening-nested-expected.png: Added.
  • platform/qt-5.0-wk2/fast/frames/flattening/iframe-flattening-offscreen-expected.png: Added.
  • platform/qt-5.0-wk2/fast/frames/flattening/iframe-flattening-out-of-view-and-scroll-expected.png:
  • platform/qt-5.0-wk2/fast/frames/flattening/iframe-flattening-out-of-view-expected.png:
  • platform/qt-5.0-wk2/fast/frames/flattening/iframe-flattening-out-of-view-scroll-and-relayout-expected.png:
  • platform/qt-5.0-wk2/fast/frames/flattening/iframe-flattening-simple-expected.png: Added.
  • platform/qt-5.0-wk2/fast/frames/frame-scrolling-attribute-expected.png: Added.
  • platform/qt-5.0-wk2/fast/frames/frameElement-frame-expected.png: Added.
  • platform/qt-5.0-wk2/fast/frames/frameElement-iframe-expected.png: Added.
  • platform/qt-5.0-wk2/fast/frames/frameset-style-recalc-expected.png: Added.
  • platform/qt-5.0-wk2/fast/frames/iframe-option-crash-expected.png: Added.
  • platform/qt-5.0-wk2/fast/frames/iframe-scrolling-attribute-expected.png:
  • platform/qt-5.0-wk2/fast/frames/iframe-with-frameborder-expected.png: Added.
  • platform/qt-5.0-wk2/fast/frames/transparent-scrollbar-expected.png:
  • platform/qt-5.0-wk2/fast/frames/viewsource-attribute-expected.png: Added.
  • platform/qt-5.0-wk2/fast/frames/viewsource-on-image-file-expected.png: Added.
  • platform/qt-5.0-wk2/fast/gradients/crash-on-zero-radius-expected.png: Added.
  • platform/qt-5.0-wk2/fast/gradients/css3-color-stop-units-expected.png:
  • platform/qt-5.0-wk2/fast/gradients/gradient-after-transparent-border-expected.png:
  • platform/qt-5.0-wk2/fast/gradients/list-item-gradient-expected.png: Added.
  • platform/qt-5.0-wk2/fast/gradients/radial-centered-expected.png: Added.
  • platform/qt-5.0-wk2/fast/html/details-add-child-1-expected.png: Added.
  • platform/qt-5.0-wk2/fast/html/details-add-child-2-expected.png: Added.
  • platform/qt-5.0-wk2/fast/html/details-add-details-child-1-expected.png: Added.
  • platform/qt-5.0-wk2/fast/html/details-add-details-child-2-expected.png: Added.
  • platform/qt-5.0-wk2/fast/html/details-add-summary-child-1-expected.png: Added.
  • platform/qt-5.0-wk2/fast/html/details-add-summary-child-2-expected.png: Added.
  • platform/qt-5.0-wk2/fast/html/details-marker-style-expected.png: Added.
  • platform/qt-5.0-wk2/fast/html/details-nested-1-expected.png: Added.
  • platform/qt-5.0-wk2/fast/html/details-nested-2-expected.png: Added.
  • platform/qt-5.0-wk2/fast/html/details-remove-child-1-expected.png: Added.
  • platform/qt-5.0-wk2/fast/html/details-remove-child-2-expected.png: Added.
  • platform/qt-5.0-wk2/fast/html/details-remove-summary-child-1-expected.png: Added.
  • platform/qt-5.0-wk2/fast/html/details-remove-summary-child-2-expected.png: Added.
  • platform/qt-5.0-wk2/fast/html/details-replace-text-expected.png: Added.
  • platform/qt-5.0-wk2/fast/html/details-writing-mode-expected.png:
  • platform/qt-5.0-wk2/fast/html/font-weight-bold-for-b-and-strong-expected.png: Added.
  • platform/qt-5.0-wk2/fast/html/link-rel-stylesheet-expected.png: Added.
  • platform/qt-5.0-wk2/fast/html/listing-expected.png: Added.
  • platform/qt-5.0-wk2/fast/html/marquee-scroll-expected.png: Added.
  • platform/qt-5.0-wk2/fast/html/marquee-scrollamount-expected.png: Added.
  • platform/qt-5.0-wk2/fast/images/animated-gif-with-offsets-expected.png: Added.
  • platform/qt-5.0-wk2/fast/images/favicon-as-image-expected.png: Added.
  • platform/qt-5.0-wk2/fast/images/image-map-anchor-children-expected.png: Added.
  • platform/qt-5.0-wk2/fast/images/imagemap-circle-focus-ring-expected.png: Added.
  • platform/qt-5.0-wk2/fast/images/imagemap-focus-ring-expected.png: Added.
  • platform/qt-5.0-wk2/fast/images/imagemap-focus-ring-outline-color-expected.png: Added.
  • platform/qt-5.0-wk2/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.png: Added.
  • platform/qt-5.0-wk2/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.png:
  • platform/qt-5.0-wk2/fast/images/imagemap-focus-ring-zero-outline-width-expected.png: Added.
  • platform/qt-5.0-wk2/fast/images/imagemap-focus-ring-zoom-expected.png: Added.
  • platform/qt-5.0-wk2/fast/images/imagemap-polygon-focus-ring-expected.png: Added.
  • platform/qt-5.0-wk2/fast/images/jpeg-with-color-profile-expected.png:
  • platform/qt-5.0-wk2/fast/images/png-with-color-profile-expected.png:
  • platform/qt-5.0-wk2/fast/inline-block/001-expected.png: Added.
  • platform/qt-5.0-wk2/fast/inline-block/002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/inline-block/003-expected.png: Added.
  • platform/qt-5.0-wk2/fast/inline-block/006-expected.png: Added.
  • platform/qt-5.0-wk2/fast/inline-block/14498-positionForCoordinates-expected.png: Added.
  • platform/qt-5.0-wk2/fast/inline-block/contenteditable-baseline-expected.png: Added.
  • platform/qt-5.0-wk2/fast/inline-block/overflow-clip-expected.png:
  • platform/qt-5.0-wk2/fast/inline-block/tricky-baseline-expected.png: Added.
  • platform/qt-5.0-wk2/fast/inline/001-expected.png: Added.
  • platform/qt-5.0-wk2/fast/inline/25277-expected.png: Added.
  • platform/qt-5.0-wk2/fast/inline/br-text-decoration-expected.png: Added.
  • platform/qt-5.0-wk2/fast/inline/continuation-outlines-expected.png:
  • platform/qt-5.0-wk2/fast/inline/continuation-outlines-with-layers-2-expected.png: Added.
  • platform/qt-5.0-wk2/fast/inline/drawStyledEmptyInlines-expected.png: Added.
  • platform/qt-5.0-wk2/fast/inline/drawStyledEmptyInlinesWithWS-expected.png: Added.
  • platform/qt-5.0-wk2/fast/inline/emptyInlinesWithinLists-expected.png: Added.
  • platform/qt-5.0-wk2/fast/inline/inline-continuation-borders-expected.png:
  • platform/qt-5.0-wk2/fast/inline/inline-focus-ring-expected.png: Added.
  • platform/qt-5.0-wk2/fast/inline/inline-padding-disables-text-quirk-expected.png: Added.
  • platform/qt-5.0-wk2/fast/inline/inline-text-quirk-bpm-expected.png: Added.
  • platform/qt-5.0-wk2/fast/inline/left-right-center-inline-alignment-in-ltr-and-rtl-blocks-expected.png:
  • platform/qt-5.0-wk2/fast/inline/long-wrapped-line-expected.png:
  • platform/qt-5.0-wk2/fast/inline/nested-top-alignment-expected.png: Added.
  • platform/qt-5.0-wk2/fast/inline/percentage-margins-expected.png: Added.
  • platform/qt-5.0-wk2/fast/inline/vertical-align-text-bottom-expected.png: Added.
  • platform/qt-5.0-wk2/fast/inspector-support/matchedrules-expected.png: Added.
  • platform/qt-5.0-wk2/fast/invalid/001-expected.png: Added.
  • platform/qt-5.0-wk2/fast/invalid/002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/invalid/004-expected.png: Added.
  • platform/qt-5.0-wk2/fast/invalid/006-expected.png: Added.
  • platform/qt-5.0-wk2/fast/invalid/008-expected.png: Added.
  • platform/qt-5.0-wk2/fast/invalid/009-expected.png: Added.
  • platform/qt-5.0-wk2/fast/invalid/010-expected.png: Added.
  • platform/qt-5.0-wk2/fast/invalid/011-expected.png: Added.
  • platform/qt-5.0-wk2/fast/invalid/012-expected.png: Added.
  • platform/qt-5.0-wk2/fast/invalid/013-expected.png: Added.
  • platform/qt-5.0-wk2/fast/invalid/016-expected.png: Added.
  • platform/qt-5.0-wk2/fast/invalid/018-expected.png: Added.
  • platform/qt-5.0-wk2/fast/invalid/019-expected.png: Added.
  • platform/qt-5.0-wk2/fast/invalid/021-expected.png: Added.
  • platform/qt-5.0-wk2/fast/invalid/missing-address-end-tag-expected.png: Added.
  • platform/qt-5.0-wk2/fast/invalid/missing-dl-end-tag-expected.png: Added.
  • platform/qt-5.0-wk2/fast/invalid/missing-dt-end-tag-expected.png: Added.
  • platform/qt-5.0-wk2/fast/invalid/missing-font-end-tag-expected.png: Added.
  • platform/qt-5.0-wk2/fast/invalid/nestedh3s-expected.png: Added.
  • platform/qt-5.0-wk2/fast/invalid/table-inside-stray-table-content-expected.png: Added.
  • platform/qt-5.0-wk2/fast/invalid/td-inside-object-expected.png: Added.
  • platform/qt-5.0-wk2/fast/layers/inline-dirty-z-order-lists-expected.png:
  • platform/qt-5.0-wk2/fast/layers/normal-flow-hit-test-expected.png: Added.
  • platform/qt-5.0-wk2/fast/layers/opacity-outline-expected.png: Added.
  • platform/qt-5.0-wk2/fast/layers/opacity-transforms-expected.png: Added.
  • platform/qt-5.0-wk2/fast/layers/overflow-scroll-auto-switch-expected.png: Added.
  • platform/qt-5.0-wk2/fast/layers/remove-layer-with-nested-stacking-expected.png:
  • platform/qt-5.0-wk2/fast/layers/remove-only-this-layer-update-expected.png: Added.
  • platform/qt-5.0-wk2/fast/layers/scroll-rect-to-visible-expected.png:
  • platform/qt-5.0-wk2/fast/layers/scroll-with-transform-composited-layer-expected.png: Added.
  • platform/qt-5.0-wk2/fast/layers/scroll-with-transform-layer-expected.png: Added.
  • platform/qt-5.0-wk2/fast/layers/zindex-inherit-expected.png: Added.
  • platform/qt-5.0-wk2/fast/line-grid/line-grid-contains-value-expected.png: Added.
  • platform/qt-5.0-wk2/fast/line-grid/line-grid-floating-expected.png: Added.
  • platform/qt-5.0-wk2/fast/line-grid/line-grid-inside-columns-expected.png:
  • platform/qt-5.0-wk2/fast/line-grid/line-grid-into-columns-expected.png: Added.
  • platform/qt-5.0-wk2/fast/line-grid/line-grid-into-floats-expected.png: Added.
  • platform/qt-5.0-wk2/fast/line-grid/line-grid-positioned-expected.png: Added.
  • platform/qt-5.0-wk2/fast/lists/001-expected.png:
  • platform/qt-5.0-wk2/fast/lists/001-vertical-expected.png:
  • platform/qt-5.0-wk2/fast/lists/002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/lists/002-vertical-expected.png: Added.
  • platform/qt-5.0-wk2/fast/lists/003-expected.png: Added.
  • platform/qt-5.0-wk2/fast/lists/003-vertical-expected.png: Added.
  • platform/qt-5.0-wk2/fast/lists/005-expected.png: Added.
  • platform/qt-5.0-wk2/fast/lists/005-vertical-expected.png: Added.
  • platform/qt-5.0-wk2/fast/lists/006-expected.png: Added.
  • platform/qt-5.0-wk2/fast/lists/006-vertical-expected.png: Added.
  • platform/qt-5.0-wk2/fast/lists/007-expected.png: Added.
  • platform/qt-5.0-wk2/fast/lists/007-vertical-expected.png: Added.
  • platform/qt-5.0-wk2/fast/lists/008-expected.png:
  • platform/qt-5.0-wk2/fast/lists/008-vertical-expected.png:
  • platform/qt-5.0-wk2/fast/lists/009-expected.png: Added.
  • platform/qt-5.0-wk2/fast/lists/009-vertical-expected.png: Added.
  • platform/qt-5.0-wk2/fast/lists/anonymous-items-expected.png: Added.
  • platform/qt-5.0-wk2/fast/lists/big-list-marker-expected.png: Added.
  • platform/qt-5.0-wk2/fast/lists/li-br-expected.png:
  • platform/qt-5.0-wk2/fast/lists/li-style-alpha-huge-value-crash-expected.png: Added.
  • platform/qt-5.0-wk2/fast/lists/list-item-line-height-expected.png: Added.
  • platform/qt-5.0-wk2/fast/lists/list-marker-with-line-height-expected.png: Added.
  • platform/qt-5.0-wk2/fast/lists/list-style-none-crash-expected.png: Added.
  • platform/qt-5.0-wk2/fast/lists/marker-before-empty-inline-expected.png: Added.
  • platform/qt-5.0-wk2/fast/lists/marker-image-error-expected.png: Added.
  • platform/qt-5.0-wk2/fast/lists/markers-in-selection-expected.png: Added.
  • platform/qt-5.0-wk2/fast/lists/numeric-markers-outside-list-expected.png: Added.
  • platform/qt-5.0-wk2/fast/lists/ol-display-types-expected.png: Added.
  • platform/qt-5.0-wk2/fast/lists/ol-start-parsing-expected.png:
  • platform/qt-5.0-wk2/fast/lists/olstart-expected.png:
  • platform/qt-5.0-wk2/fast/lists/ordered-list-with-no-ol-tag-expected.png:
  • platform/qt-5.0-wk2/fast/lists/scrolled-marker-paint-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/block-axis-horizontal-bt-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/block-axis-horizontal-tb-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/block-axis-vertical-lr-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/block-axis-vertical-rl-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/client-rects-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/column-break-with-balancing-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/column-count-with-rules-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/column-rules-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/column-rules-stacking-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/columns-shorthand-parsing-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/float-multicol-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/float-paginate-empty-lines-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/float-paginate-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/layers-in-multicol-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/layers-split-across-columns-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/margin-collapse-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/max-height-columns-block-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/nested-columns-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/overflow-across-columns-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/overflow-across-columns-percent-height-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/overflow-unsplittable-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/paginate-block-replaced-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/positioned-split-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/positioned-with-constrained-height-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/positive-leading-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/shadow-breaking-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/single-line-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/span/anonymous-before-child-parent-crash-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/span/anonymous-split-block-crash-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/span/anonymous-style-inheritance-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/span/clone-anonymous-block-non-inline-child-crash-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/span/span-as-immediate-child-generated-content-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/span/span-as-immediate-child-property-removal-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/span/span-as-immediate-columns-child-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/span/span-as-immediate-columns-child-removal-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/span/span-as-nested-columns-child-dynamic-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/span/span-as-nested-columns-child-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/span/span-as-nested-inline-block-child-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/span/span-margin-collapsing-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/table-margin-collapse-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/table-vertical-align-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/unsplittable-inline-block-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/vertical-lr/column-break-with-balancing-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/vertical-lr/column-count-with-rules-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/vertical-lr/column-rules-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/vertical-lr/float-avoidance-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/vertical-lr/float-multicol-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/vertical-lr/float-paginate-complex-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/vertical-lr/float-paginate-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/vertical-lr/nested-columns-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/vertical-lr/unsplittable-inline-block-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/vertical-rl/column-break-with-balancing-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/vertical-rl/column-count-with-rules-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/vertical-rl/column-rules-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/vertical-rl/float-avoidance-expected.png: Added.
  • platform/qt-5.0-wk2/fast/multicol/vertical-rl/float-paginate-complex-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/vertical-rl/float-paginate-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/vertical-rl/nested-columns-expected.png:
  • platform/qt-5.0-wk2/fast/multicol/vertical-rl/unsplittable-inline-block-expected.png:
  • platform/qt-5.0-wk2/fast/overflow/001-expected.png: Added.
  • platform/qt-5.0-wk2/fast/overflow/002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/overflow/003-expected.png: Added.
  • platform/qt-5.0-wk2/fast/overflow/004-expected.png: Added.
  • platform/qt-5.0-wk2/fast/overflow/006-expected.png:
  • platform/qt-5.0-wk2/fast/overflow/008-expected.png: Added.
  • platform/qt-5.0-wk2/fast/overflow/border-radius-clipping-expected.png: Added.
  • platform/qt-5.0-wk2/fast/overflow/dynamic-hidden-expected.png: Added.
  • platform/qt-5.0-wk2/fast/overflow/float-in-relpositioned-expected.png: Added.
  • platform/qt-5.0-wk2/fast/overflow/image-selection-highlight-expected.png: Added.
  • platform/qt-5.0-wk2/fast/overflow/line-clamp-expected.png: Added.
  • platform/qt-5.0-wk2/fast/overflow/overflow-auto-position-absolute-expected.png: Added.
  • platform/qt-5.0-wk2/fast/overflow/overflow-auto-table-expected.png:
  • platform/qt-5.0-wk2/fast/overflow/overflow-float-stacking-expected.png: Added.
  • platform/qt-5.0-wk2/fast/overflow/overflow-focus-ring-expected.png: Added.
  • platform/qt-5.0-wk2/fast/overflow/overflow-rtl-inline-scrollbar-expected.png: Added.
  • platform/qt-5.0-wk2/fast/overflow/overflow-rtl-vertical-expected.png: Added.
  • platform/qt-5.0-wk2/fast/overflow/overflow-stacking-expected.png:
  • platform/qt-5.0-wk2/fast/overflow/overflow-with-local-background-attachment-expected.png: Added.
  • platform/qt-5.0-wk2/fast/overflow/paged-x-div-expected.png: Added.
  • platform/qt-5.0-wk2/fast/overflow/paged-x-div-with-column-gap-expected.png: Added.
  • platform/qt-5.0-wk2/fast/overflow/paged-x-on-root-expected.png:
  • platform/qt-5.0-wk2/fast/overflow/paged-y-div-expected.png: Added.
  • platform/qt-5.0-wk2/fast/overflow/paged-y-on-root-expected.png:
  • platform/qt-5.0-wk2/fast/overflow/position-fixed-transform-clipping-expected.png:
  • platform/qt-5.0-wk2/fast/overflow/scrollbar-position-update-expected.png: Added.
  • platform/qt-5.0-wk2/fast/overflow/table-overflow-float-expected.png: Added.
  • platform/qt-5.0-wk2/fast/parser/001-expected.png: Added.
  • platform/qt-5.0-wk2/fast/parser/bad-xml-slash-expected.png: Added.
  • platform/qt-5.0-wk2/fast/parser/broken-comments-vs-parsing-mode-expected.png: Added.
  • platform/qt-5.0-wk2/fast/parser/document-write-option-expected.png: Added.
  • platform/qt-5.0-wk2/fast/parser/entity-comment-in-style-expected.png: Added.
  • platform/qt-5.0-wk2/fast/parser/entity-comment-in-textarea-expected.png: Added.
  • platform/qt-5.0-wk2/fast/parser/nofoo-tags-inside-paragraph-expected.png: Added.
  • platform/qt-5.0-wk2/fast/parser/open-comment-in-style-expected.png: Added.
  • platform/qt-5.0-wk2/fast/parser/open-comment-in-textarea-expected.png: Added.
  • platform/qt-5.0-wk2/fast/parser/title-error-test-expected.png: Added.
  • platform/qt-5.0-wk2/fast/reflections/abs-position-in-reflection-expected.png: Added.
  • platform/qt-5.0-wk2/fast/reflections/inline-crash-expected.png:
  • platform/qt-5.0-wk2/fast/reflections/opacity-reflection-transform-expected.png: Added.
  • platform/qt-5.0-wk2/fast/reflections/reflection-nesting-expected.png: Added.
  • platform/qt-5.0-wk2/fast/reflections/reflection-overflow-hidden-expected.png: Added.
  • platform/qt-5.0-wk2/fast/reflections/transparent-reflected-sublayers-expected.png: Added.
  • platform/qt-5.0-wk2/fast/regions/flow-content-basic-expected.png: Added.
  • platform/qt-5.0-wk2/fast/regions/flow-content-basic-vertical-expected.png: Added.
  • platform/qt-5.0-wk2/fast/regions/flow-content-basic-vertical-rl-expected.png: Added.
  • platform/qt-5.0-wk2/fast/regions/multiple-directionality-changes-in-variable-width-regions-expected.png: Added.
  • platform/qt-5.0-wk2/fast/regions/overflow-in-uniform-regions-dynamic-expected.png: Added.
  • platform/qt-5.0-wk2/fast/regions/overflow-in-variable-width-regions-expected.png: Added.
  • platform/qt-5.0-wk2/fast/regions/overflow-moving-below-floats-in-variable-width-regions-expected.png: Added.
  • platform/qt-5.0-wk2/fast/regions/overflow-not-moving-below-floats-in-variable-width-regions-expected.png: Added.
  • platform/qt-5.0-wk2/fast/regions/overflow-rtl-in-variable-width-regions-expected.png: Added.
  • platform/qt-5.0-wk2/fast/regions/overflow-size-change-in-variable-width-regions-expected.png: Added.
  • platform/qt-5.0-wk2/fast/regions/overflow-size-change-with-stacking-context-rtl-expected.png: Added.
  • platform/qt-5.0-wk2/fast/regions/percentage-margins-mixed-ltr-dominant-regions-expected.png: Added.
  • platform/qt-5.0-wk2/fast/regions/percentage-margins-mixed-rtl-dominant-regions-expected.png: Added.
  • platform/qt-5.0-wk2/fast/regions/percentage-margins-rtl-variable-width-regions-expected.png: Added.
  • platform/qt-5.0-wk2/fast/regions/percentage-margins-variable-width-regions-expected.png: Added.
  • platform/qt-5.0-wk2/fast/regions/text-region-split-small-pagination-expected.png: Added.
  • platform/qt-5.0-wk2/fast/regions/top-overflow-out-of-second-region-expected.png: Added.
  • platform/qt-5.0-wk2/fast/repaint/4774354-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/4776765-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/backgroundSizeRepaint-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/block-layout-inline-children-float-positioned-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/block-layout-inline-children-replaced-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/border-radius-repaint-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/border-repaint-glitch-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/box-shadow-dynamic-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/bugzilla-3509-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/bugzilla-5699-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/bugzilla-6278-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/bugzilla-6388-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/bugzilla-6473-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/bugzilla-7235-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/canvas-putImageData-expected.png: Added.
  • platform/qt-5.0-wk2/fast/repaint/change-transform-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/clipped-relative-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/containing-block-position-change-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/control-clip-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/create-layer-repaint-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/delete-into-nested-block-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/fixed-child-of-fixed-move-after-scroll-expected.png: Added.
  • platform/qt-5.0-wk2/fast/repaint/fixed-move-after-keyboard-scroll-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/fixed-scale-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/float-move-during-layout-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/focus-layers-expected.png: Added.
  • platform/qt-5.0-wk2/fast/repaint/inline-block-resize-expected.png: Added.
  • platform/qt-5.0-wk2/fast/repaint/inline-color-change-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/inline-outline-repaint-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/layout-state-relative-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/layout-state-scrolloffset-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/layout-state-scrolloffset2-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/layout-state-scrolloffset3-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/line-flow-with-floats-1-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/line-flow-with-floats-10-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/line-flow-with-floats-2-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/line-flow-with-floats-3-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/line-flow-with-floats-4-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/line-flow-with-floats-5-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/line-flow-with-floats-6-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/line-flow-with-floats-7-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/line-flow-with-floats-8-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/line-flow-with-floats-9-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/line-flow-with-floats-in-regions-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/line-overflow-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/list-marker-2-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/make-children-non-inline-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/no-caret-repaint-in-non-content-editable-element-expected.png: Added.
  • platform/qt-5.0-wk2/fast/repaint/outline-child-repaint-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/outline-repaint-glitch-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/outline-shrinking-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/overflow-delete-line-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/overflow-scroll-body-appear-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/overflow-scroll-delete-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/positioned-document-element-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/reflection-redraw-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/rel-positioned-inline-with-overflow-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/repaint-resized-overflow-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/scroll-absolute-layer-with-reflection-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/select-option-background-color-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/selected-replaced-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/selection-after-delete-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/selection-after-remove-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/selection-gap-overflow-scroll-2-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/selection-rl-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/stacked-diacritics-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/subtree-layoutstate-transform-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/table-cell-collapsed-border-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/table-cell-move-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/table-collapsed-border-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/text-append-dirty-lines-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/transform-absolute-in-positioned-container-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/transform-relative-position-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/transform-repaint-descendants-expected.png:
  • platform/qt-5.0-wk2/fast/repaint/transform-translate-expected.png:
  • platform/qt-5.0-wk2/fast/replaced/001-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/003-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/004-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/007-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/absolute-image-sizing-expected.png:
  • platform/qt-5.0-wk2/fast/replaced/absolute-position-percentage-height-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/absolute-position-percentage-width-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/absolute-position-with-auto-height-and-top-and-bottom-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/absolute-position-with-auto-width-and-left-and-right-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/applet-display-none-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/embed-display-none-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/image-resize-width-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/image-sizing-expected.png:
  • platform/qt-5.0-wk2/fast/replaced/inline-box-wrapper-handover-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/max-width-percent-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/maxheight-percent-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/maxheight-pxs-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/maxwidth-percent-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/maxwidth-pxs-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/minheight-percent-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/minheight-pxs-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/minwidth-percent-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/minwidth-pxs-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/object-align-hspace-vspace-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/object-display-none-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/outline-replaced-elements-expected.png:
  • platform/qt-5.0-wk2/fast/replaced/percent-height-in-anonymous-block-in-table-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/percent-height-in-anonymous-block-widget-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/replaced-child-of-absolute-with-auto-height-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/selection-rect-in-table-cell-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/selection-rect-transform-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/vertical-lr/absolute-position-percentage-width-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/vertical-lr/absolute-position-with-auto-height-and-top-and-bottom-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/vertical-lr/absolute-position-with-auto-width-and-left-and-right-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/vertical-rl/absolute-position-percentage-width-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/vertical-rl/absolute-position-with-auto-height-and-top-and-bottom-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/vertical-rl/absolute-position-with-auto-width-and-left-and-right-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/width100percent-button-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/width100percent-checkbox-expected.png: Added.
  • platform/qt-5.0-wk2/fast/replaced/width100percent-image-expected.png:
  • platform/qt-5.0-wk2/fast/replaced/width100percent-radio-expected.png: Added.
  • platform/qt-5.0-wk2/fast/ruby/ruby-beforeafter-expected.png:
  • platform/qt-5.0-wk2/fast/ruby/ruby-empty-rt-expected.png:
  • platform/qt-5.0-wk2/fast/ruby/ruby-inline-table-expected.png: Added.
  • platform/qt-5.0-wk2/fast/ruby/ruby-length-expected.png:
  • platform/qt-5.0-wk2/fast/ruby/ruby-run-break-expected.png:
  • platform/qt-5.0-wk2/fast/ruby/ruby-runs-expected.png:
  • platform/qt-5.0-wk2/fast/ruby/ruby-runs-spans-expected.png:
  • platform/qt-5.0-wk2/fast/ruby/ruby-simple-expected.png:
  • platform/qt-5.0-wk2/fast/ruby/ruby-simple-rp-expected.png:
  • platform/qt-5.0-wk2/fast/ruby/ruby-text-before-after-content-expected.png: Added.
  • platform/qt-5.0-wk2/fast/ruby/ruby-trailing-expected.png:
  • platform/qt-5.0-wk2/fast/runin/001-expected.png: Added.
  • platform/qt-5.0-wk2/fast/runin/generated2-expected.png: Added.
  • platform/qt-5.0-wk2/fast/runin/generated3-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/001-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/003-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/004-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/005-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/006-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/007a-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/007b-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/008-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/009-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/011-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/012-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/013-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/014-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/016-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/017-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/018-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/018b-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/019-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/020-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/021-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/021b-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/027-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/032-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/034-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/038-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/039-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/039b-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/040-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/041-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/042-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/043-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/043b-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/044-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/044b-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/044c-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/044d-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/045-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/045b-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/045c-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/046-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/054-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/056-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/058-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/059-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/062-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/063-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/064-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/065-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/066-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/066b-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/072-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/072b-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/077-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/077b-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/078b-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/083-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/087b-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/088b-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/090b-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/154-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/155-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/155a-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/155b-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/155c-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/155d-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/156b-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/157-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/158-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/159-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/166-expected.png:
  • platform/qt-5.0-wk2/fast/selectors/166a-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/167-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/167a-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/168-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/168a-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/169-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/169a-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/177a-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/lang-inheritance-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/lang-inheritance2-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/lang-vs-xml-lang-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/lang-vs-xml-lang-xhtml-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/nondeterministic-combinators-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/unqualified-hover-quirks-expected.png: Added.
  • platform/qt-5.0-wk2/fast/selectors/visited-descendant-expected.png: Added.
  • platform/qt-5.0-wk2/fast/spatial-navigation/snav-multiple-select-focusring-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/003-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/007-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/009-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/012-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/016-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/017-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/018-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/020-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/021-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/022-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/023-expected.png:
  • platform/qt-5.0-wk2/fast/table/025-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/027-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/027-vertical-expected.png:
  • platform/qt-5.0-wk2/fast/table/028-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/028-vertical-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/029-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/030-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/033-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/034-expected.png:
  • platform/qt-5.0-wk2/fast/table/035-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/035-vertical-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/036-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/037-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/038-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/038-vertical-expected.png:
  • platform/qt-5.0-wk2/fast/table/039-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/040-expected.png:
  • platform/qt-5.0-wk2/fast/table/040-vertical-expected.png:
  • platform/qt-5.0-wk2/fast/table/100-percent-cell-width-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/absolute-table-at-bottom-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/add-before-anonymous-child-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/append-cells-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/append-cells2-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/auto-with-percent-height-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/auto-with-percent-height-vertical-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/border-collapsing/001-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/border-collapsing/001-vertical-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/border-collapsing/002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/border-collapsing/002-vertical-expected.png:
  • platform/qt-5.0-wk2/fast/table/border-collapsing/003-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/border-collapsing/003-vertical-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/border-collapsing/004-expected.png:
  • platform/qt-5.0-wk2/fast/table/border-collapsing/004-vertical-expected.png:
  • platform/qt-5.0-wk2/fast/table/border-collapsing/border-collapsing-head-foot-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/border-collapsing/border-collapsing-head-foot-vertical-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/border-collapsing/rtl-border-collapsing-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/cell-absolute-child-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/cell-width-auto-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/cellindex-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/click-near-anonymous-table-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/colgroup-preceded-by-caption-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/colgroup-spanning-groups-rules-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/dynamic-caption-add-before-child-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/dynamic-descendant-percentage-height-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/edge-offsets-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/fixed-table-non-cell-in-row-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/fixed-table-with-percent-width-inside-extra-large-div-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/floating-th-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/floatingTablePaintBackground-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/form-with-table-style-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/frame-and-rules-expected.png:
  • platform/qt-5.0-wk2/fast/table/generated-caption-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/giantRowspan2-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/insert-before-anonymous-ancestors-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/insert-cell-before-form-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/insert-row-before-form-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/invisible-cell-background-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/large-width-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/mozilla-bug10296-vertical-align-1-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/mozilla-bug10296-vertical-align-2-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/nested-percent-height-table-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/nobr-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/overflowHidden-expected.png:
  • platform/qt-5.0-wk2/fast/table/percent-heights-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/prepend-in-anonymous-table-expected.png:
  • platform/qt-5.0-wk2/fast/table/relative-position-containment-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/relative-position-offsets-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/relative-position-stacking-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/row-height-recalc-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/rowindex-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/rowspan-paint-order-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/rowspan-paint-order-vertical-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/rtl-cell-display-none-assert-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/rules-attr-dynchange1-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/rules-attr-dynchange2-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/stale-grid-crash-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/table-and-parts-outline-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/table-continuation-outline-paint-crash-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/table-display-types-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/table-display-types-vertical-expected.png:
  • platform/qt-5.0-wk2/fast/table/table-hspace-align-center-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/tableInsideCaption-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/text-field-baseline-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/unbreakable-images-quirk-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/unused-percent-heights-expected.png: Added.
  • platform/qt-5.0-wk2/fast/table/vertical-align-baseline-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/atsui-kerning-and-ligatures-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/atsui-small-caps-punctuation-size-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/backslash-to-yen-sign-dynamic-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/backslash-to-yen-sign-euc-expected.png:
  • platform/qt-5.0-wk2/fast/text/backslash-to-yen-sign-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/basic/001-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/basic/002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/basic/003-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/basic/004-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/basic/005-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/basic/006-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/basic/007-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/basic/008-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/basic/009-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/basic/011-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/basic/012-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/basic/013-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/basic/015-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/basic/generic-family-changes-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/basic/generic-family-reset-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/break-word-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/capitalize-empty-generated-string-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/capitalize-preserve-nbsp-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/cg-vs-atsui-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/complex-preferred-logical-widths-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/complex-synthetic-bold-space-width-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/complex-text-opacity-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/delete-hard-break-character-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/embed-at-end-of-pre-wrap-line-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/fake-italic-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/fallback-traits-fixup-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/firstline/001-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/firstline/002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/firstline/003-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/font-initial-expected.png:
  • platform/qt-5.0-wk2/fast/text/hyphenate-limit-before-after-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/hyphenate-limit-lines-expected.png:
  • platform/qt-5.0-wk2/fast/text/international/arabic-justify-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/international/hindi-whitespace-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/international/text-spliced-font-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/justified-selection-at-edge-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/justified-selection-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/large-text-composed-char-expected.png:
  • platform/qt-5.0-wk2/fast/text/line-breaks-after-white-space-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/line-breaks-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/midword-break-hang-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/reset-emptyRun-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/selection-hard-linebreak-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/shadow-no-blur-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/shadow-translucent-fill-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/should-use-atsui-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/softHyphen-expected.png:
  • platform/qt-5.0-wk2/fast/text/text-letter-spacing-expected.png:
  • platform/qt-5.0-wk2/fast/text/text-shadow-no-default-color-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/textIteratorNilRenderer-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/unicode-variation-selector-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/wbr-expected.png:
  • platform/qt-5.0-wk2/fast/text/wbr-in-pre-crash-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/wbr-pre-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/wbr-styled-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/whitespace/002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/whitespace/003-expected.png:
  • platform/qt-5.0-wk2/fast/text/whitespace/006-expected.png:
  • platform/qt-5.0-wk2/fast/text/whitespace/007-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/whitespace/008-expected.png:
  • platform/qt-5.0-wk2/fast/text/whitespace/009-expected.png:
  • platform/qt-5.0-wk2/fast/text/whitespace/018-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/whitespace/020-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/whitespace/021-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/whitespace/022-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/whitespace/025-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/whitespace/027-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/whitespace/030-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/whitespace/nbsp-mode-and-linewraps-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/whitespace/normal-after-nowrap-breaking-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/whitespace/nowrap-clear-float-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/whitespace/pre-break-word-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/whitespace/pre-wrap-last-char-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/whitespace/pre-wrap-line-test-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/whitespace/pre-wrap-overflow-selection-expected.png: Added.
  • platform/qt-5.0-wk2/fast/text/word-break-expected.png:
  • platform/qt-5.0-wk2/fast/text/zero-font-size-expected.png: Added.
  • platform/qt-5.0-wk2/fast/tokenizer/001-expected.png: Added.
  • platform/qt-5.0-wk2/fast/tokenizer/003-expected.png: Added.
  • platform/qt-5.0-wk2/fast/transforms/bounding-rect-zoom-expected.png: Added.
  • platform/qt-5.0-wk2/fast/transforms/diamond-expected.png: Added.
  • platform/qt-5.0-wk2/fast/transforms/identity-matrix-expected.png: Added.
  • platform/qt-5.0-wk2/fast/transforms/overflow-with-transform-expected.png: Added.
  • platform/qt-5.0-wk2/fast/transforms/shadows-expected.png: Added.
  • platform/qt-5.0-wk2/fast/transforms/skew-with-unitless-zero-expected.png: Added.
  • platform/qt-5.0-wk2/fast/transforms/transform-on-inline-expected.png: Added.
  • platform/qt-5.0-wk2/fast/transforms/transform-overflow-expected.png: Added.
  • platform/qt-5.0-wk2/fast/transforms/transform-positioned-ancestor-expected.png: Added.
  • platform/qt-5.0-wk2/fast/transforms/transform-table-row-expected.png: Added.
  • platform/qt-5.0-wk2/fast/transforms/transformed-caret-expected.png: Added.
  • platform/qt-5.0-wk2/fast/transforms/transformed-document-element-expected.png: Added.
  • platform/qt-5.0-wk2/fast/transforms/transforms-with-opacity-expected.png: Added.
  • platform/qt-5.0-wk2/fast/transforms/transforms-with-zoom-expected.png: Added.
  • platform/qt-5.0-wk2/fast/writing-mode/border-radius-clipping-vertical-lr-expected.png:
  • platform/qt-5.0-wk2/fast/writing-mode/box-shadow-horizontal-bt-expected.png: Added.
  • platform/qt-5.0-wk2/fast/writing-mode/box-shadow-vertical-lr-expected.png:
  • platform/qt-5.0-wk2/fast/writing-mode/box-shadow-vertical-rl-expected.png:
  • platform/qt-5.0-wk2/fast/writing-mode/english-bt-text-expected.png: Added.
  • platform/qt-5.0-wk2/fast/writing-mode/english-lr-text-expected.png: Added.
  • platform/qt-5.0-wk2/fast/writing-mode/english-rl-text-expected.png: Added.
  • platform/qt-5.0-wk2/fast/writing-mode/fallback-orientation-expected.png: Added.
  • platform/qt-5.0-wk2/fast/writing-mode/fieldsets-expected.png:
  • platform/qt-5.0-wk2/fast/writing-mode/horizontal-bt-replaced-selection-expected.png: Added.
  • platform/qt-5.0-wk2/fast/writing-mode/vertical-lr-replaced-selection-expected.png: Added.
  • platform/qt-5.0-wk2/fast/writing-mode/vertical-rl-replaced-selection-expected.png: Added.
  • platform/qt-5.0-wk2/fast/xsl/document-function-expected.png: Added.
  • platform/qt-5.0-wk2/fonts/cursive-expected.png:
  • platform/qt-5.0-wk2/fonts/default-expected.png:
  • platform/qt-5.0-wk2/fonts/fantasy-expected.png:
  • platform/qt-5.0-wk2/fonts/monospace-expected.png:
  • platform/qt-5.0-wk2/fonts/sans-serif-expected.png:
  • platform/qt-5.0-wk2/fonts/serif-expected.png:
  • platform/qt-5.0-wk2/fullscreen/full-screen-remove-ancestor-after-expected.png:
  • platform/qt-5.0-wk2/fullscreen/full-screen-zIndex-after-expected.png:
  • platform/qt-5.0-wk2/http/tests/loading/simple-subframe-expected.png: Added.
  • platform/qt-5.0-wk2/http/tests/local/file-url-sent-as-referer-expected.png: Added.
  • platform/qt-5.0-wk2/http/tests/misc/acid2-expected.png: Added.
  • platform/qt-5.0-wk2/http/tests/misc/acid3-expected.png: Added.
  • platform/qt-5.0-wk2/http/tests/misc/error404-expected.png: Added.
  • platform/qt-5.0-wk2/http/tests/misc/favicon-as-image-expected.png: Added.
  • platform/qt-5.0-wk2/http/tests/misc/frame-access-during-load-expected.png: Added.
  • platform/qt-5.0-wk2/http/tests/misc/iframe404-expected.png: Added.
  • platform/qt-5.0-wk2/http/tests/misc/slow-loading-image-in-pattern-expected.png:
  • platform/qt-5.0-wk2/http/tests/navigation/error404-basic-expected.png: Added.
  • platform/qt-5.0-wk2/http/tests/navigation/error404-goback-expected.png: Added.
  • platform/qt-5.0-wk2/http/tests/navigation/javascriptlink-frames-expected.png:
  • platform/qt-5.0-wk2/http/tests/navigation/postredirect-basic-expected.png: Added.
  • platform/qt-5.0-wk2/http/tests/navigation/postredirect-goback1-expected.png: Added.
  • platform/qt-5.0-wk2/http/tests/uri/css-href-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/background-attachment-local-scrolling-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/background-color-applied-to-rounded-inline-element-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/background-color-border-box-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/background-size-002-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/background-size-applies-to-block-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/background-size-aspect-ratio-expected.png:
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/background_color_padding_box-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/background_position_three_four_values-expected.png:
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/background_properties_greater_than_images-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/background_repeat_space_border_box-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/background_repeat_space_content_box-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-001-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-002-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-003-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-004-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-005-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-006-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-007-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-008-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-009-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-010-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-011-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-012-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-013-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-015-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-016-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-clip-001-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-clip-002-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-content-edge-001-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-different-width-001-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-initial-value-001-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-not-inherited-001-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-shorthand-001-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-style-003-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-style-004-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-style-005-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-001-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-002-expected.png:
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-with-three-values-001-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-radius-with-two-values-001-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-001-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-003-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-004-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/border-top-right-radius-values-004-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/box-shadow-001-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/box-shadow-002-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/box-shadow-003-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/box-shadow-004-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/color-behind-images-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/none-as-image-layer-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/bordersbackgrounds/order-of-images-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/text/textshadow-001-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/text/textshadow-003-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/text/textshadow-004-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/text/textshadow-005-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/text/textshadow-006-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/text/textshadow-008-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/text/textshadow-009-expected.png: Added.
  • platform/qt-5.0-wk2/ietestcenter/css3/text/textshadow-010-expected.png: Added.
  • platform/qt-5.0-wk2/platform/qt/fast/forms/button-line-break-expected.png: Added.
  • platform/qt-5.0-wk2/scrollbars/basic-scrollbar-expected.png: Added.
  • platform/qt-5.0-wk2/scrollbars/custom-scrollbar-with-incomplete-style-expected.png: Added.
  • platform/qt-5.0-wk2/scrollbars/disabled-scrollbar-expected.png: Added.
  • platform/qt-5.0-wk2/scrollbars/listbox-scrollbar-combinations-expected.png:
  • platform/qt-5.0-wk2/scrollbars/overflow-scrollbar-combinations-expected.png:
  • platform/qt-5.0-wk2/scrollbars/scrollbar-buttons-expected.png: Added.
  • platform/qt-5.0-wk2/scrollbars/scrollbar-orientation-expected.png: Added.
  • platform/qt-5.0-wk2/scrollbars/scrollbars-on-positioned-content-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1-SE/filters-image-05-f-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1-SE/struct-dom-11-f-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1-SE/struct-use-11-f-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1-SE/styling-css-04-f-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-09-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-10-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-11-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-15-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-17-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-18-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-19-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-20-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-21-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-25-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-30-t-expected.png:
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-33-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png:
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-37-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-39-t-expected.png:
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-40-t-expected.png:
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-44-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-61-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/animate-elem-82-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/color-prof-01-f-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/color-prop-02-f-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/color-prop-03-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/coords-coord-01-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/coords-coord-02-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/coords-trans-03-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/coords-trans-06-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/coords-viewattr-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/extend-namespace-01-f-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/filters-blend-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/filters-conv-01-f-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/filters-diffuse-01-f-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/filters-displace-01-f-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/filters-example-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/filters-light-01-f-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/filters-light-04-f-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/filters-morph-01-f-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/filters-specular-01-f-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/fonts-elem-01-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/fonts-elem-02-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/fonts-elem-03-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/fonts-elem-04-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/fonts-elem-07-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/fonts-glyph-03-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/interact-cursor-01-f-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/interact-dom-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/interact-events-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/interact-order-02-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/interact-order-03-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/interact-zoom-01-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/linking-a-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/linking-a-02-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/linking-a-07-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/linking-uri-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/masking-intro-01-f-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/masking-mask-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/masking-path-02-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/masking-path-04-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/metadata-example-01-b-expected.png:
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/painting-marker-03-f-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/painting-render-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/painting-stroke-07-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/paths-data-02-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/paths-data-07-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/paths-data-08-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/paths-data-09-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/paths-data-13-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/paths-data-15-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/pservers-grad-04-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/pservers-grad-05-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/pservers-grad-07-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/pservers-grad-13-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/pservers-grad-15-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/render-elems-01-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/render-elems-08-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/render-groups-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/shapes-circle-01-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/shapes-intro-01-t-expewarning: inexact rename detection was skipped due to too many files.: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/shapes-polygon-01-t-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/struct-dom-04-b-expected.png: Added.
  • platform/qt-5.0-wk2/svg/W3C-SVG-1.1/struct-frag-03-t-expected.png: Added.

Jun 5, 2013:

10:01 PM Changeset in webkit [151260] by Lucas Forschler
  • 4 edits in trunk/Source

Versioning.

9:42 PM Changeset in webkit [151259] by rniwa@webkit.org
  • 2 edits in trunk/Source/WebCore

Revert the second half of r151257. WebGLRenderingContext::create can return null.

  • html/HTMLCanvasElement.cpp:

(WebCore::HTMLCanvasElement::getContext):

9:40 PM Changeset in webkit [151258] by Lucas Forschler
  • 1 copy in tags/Safari-537.44

New Tag.

9:40 PM Changeset in webkit [151257] by rniwa@webkit.org
  • 2 edits in trunk/Source/WebCore

Remove unnecessary null check in HTMLCanvasElement.cpp.

Rubber-stamped by Benjamin Poulain.

  • html/HTMLCanvasElement.cpp:

(WebCore::HTMLCanvasElement::getContext):

9:35 PM Changeset in webkit [151256] by fpizlo@apple.com
  • 5 edits in branches/dfgFourthTier/Source/JavaScriptCore

DFG CFA shouldn't filter ArrayModes with ALL_NON_ARRAY_ARRAY_MODES if the speculated type is not SpecArray
https://bugs.webkit.org/show_bug.cgi?id=117279

Reviewed by Mark Hahnenberg.

The normalization of abstract value clarity introduced in r151229 revealed a
long-standing bug where we filtered ArrayModes incorrectly and sometimes ended
up with BOTTOM incorrectly.

This patch fixes that bug, and cleans up a bunch of debugging infrastructure
that I needed to resurrect to track this down.

  • bytecode/CodeBlock.cpp:

(JSC::CodeBlock::resetStubInternal):
(JSC::CodeBlock::noticeIncomingCall):

  • dfg/DFGAbstractValue.cpp:

(JSC::DFG::AbstractValue::filterArrayModesByType):

  • dfg/DFGCFAPhase.cpp:

(CFAPhase):
(JSC::DFG::CFAPhase::run):
(JSC::DFG::CFAPhase::performBlockCFA):
(JSC::DFG::CFAPhase::performForwardCFA):

  • runtime/Options.h:

(JSC):

9:28 PM Changeset in webkit [151255] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

[curl] Add implementation for HTTP PUT method.
https://bugs.webkit.org/show_bug.cgi?id=117256

Patch by Peter Gal <galpeter@inf.u-szeged.hu> on 2013-06-05
Reviewed by Brent Fulgham.

No new tests, covered by existing tests.

  • platform/network/curl/ResourceHandleManager.cpp:

(WebCore::getFormSize):
(WebCore::setupFormData):
(WebCore::ResourceHandleManager::setupPUT):
(WebCore::ResourceHandleManager::setupPOST):

9:18 PM Changeset in webkit [151254] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

[curl] Normalize mime type information
https://bugs.webkit.org/show_bug.cgi?id=117194

Patch by Peter Gal <galpeter@inf.u-szeged.hu> on 2013-06-05
Reviewed by Brent Fulgham.

  • platform/MIMETypeRegistry.cpp: Enable MIME type normalization for curl.
9:13 PM Changeset in webkit [151253] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebCore

Move OleGetClipboard to Pasteboard::createForCopyAndPaste.
https://bugs.webkit.org/show_bug.cgi?id=117064

Patch by Xueqing Huang <huangxueqing@baidu.com> on 2013-06-05
Reviewed by Darin Adler.

No behavior change, no new tests.

  • platform/win/EditorWin.cpp:

(WebCore::Editor::newGeneralClipboard): Editor should not create IDataObject explicitly then set it to Pasteboard.

  • platform/win/PasteboardWin.cpp:

(WebCore::Pasteboard::createForCopyAndPaste): Construct a Pasteboard and create IDataObject by "OleGetClipboard".

9:02 PM Changeset in webkit [151252] by fpizlo@apple.com
  • 3 edits in branches/dfgFourthTier/Source/JavaScriptCore

Unreviewed, fix release build.

  • interpreter/Interpreter.cpp:
  • jit/JITStubs.cpp:
7:38 PM Changeset in webkit [151251] by kangil.han@samsung.com
  • 2 edits in trunk/Source/WebKit2

[EFL][WK2] Fix test_ewk2_view unit test timed out issue
https://bugs.webkit.org/show_bug.cgi?id=117251

Reviewed by Christophe Dumez.

'ewk_view_contents_size_changed' unit test case has been timed out since r150802 because
same size is filtered by WebView class. So create one different test html string that has
different size to continue unit tests.

  • UIProcess/API/efl/tests/test_ewk2_view.cpp:

(onContentsSizeChangedPortrait):
(onContentsSizeChangedLandscape):
(TEST_F):

7:13 PM Changeset in webkit [151250] by mark.lam@apple.com
  • 13 edits
    1 add in branches/dfgFourthTier/Source/JavaScriptCore

Disambiguate between CallFrame bytecodeOffset and codeOriginIndex.
https://bugs.webkit.org/show_bug.cgi?id=117262.

Reviewed by Geoffrey Garen.

When writing to the ArgumentCount tag in CallFrame, we will set the high
bit if the written value is a codeOriginIndex.

(CodeOrigin):
(JSC::CodeOrigin::isHandle):
(JSC::CodeOrigin::encodeHandle):
(JSC::CodeOrigin::decodeHandle):

  • dfg/DFGJITCompiler.h:

(JSC::DFG::JITCompiler::beginCall):

  • dfg/DFGRepatch.cpp:

(JSC::DFG::tryBuildGetByIDList):

  • interpreter/CallFrame.cpp:

(JSC::CallFrame::locationAsBytecodeOffset):
(JSC::CallFrame::setLocationAsBytecodeOffset):
(JSC::CallFrame::currentVPC):
(JSC::CallFrame::setCurrentVPC):
(JSC::CallFrame::trueCallFrame):

  • interpreter/CallFrame.h:

(ExecState):
(JSC::ExecState::inlineCallFrame):

  • interpreter/CallFrameInlines.h: Added.

(JSC::CallFrame::hasLocationAsBytecodeOffset):
(JSC::CallFrame::hasLocationAsCodeOriginIndex):
(JSC::CallFrame::locationAsRawBits):
(JSC::CallFrame::setLocationAsRawBits):
(JSC::CallFrame::locationAsBytecodeOffset):
(JSC::CallFrame::setLocationAsBytecodeOffset):
(JSC::CallFrame::locationAsCodeOriginIndex):

  • interpreter/Interpreter.cpp:

(JSC::getBytecodeOffsetForCallFrame):
(JSC::getCallerInfo):

  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION):

6:00 PM Changeset in webkit [151249] by Brent Fulgham
  • 2 edits in trunk/LayoutTests

[Windows] Switch to NRWT
https://bugs.webkit.org/show_bug.cgi?id=117200

Reviewed by Anders Carlsson.

  • platform/win/TestExpectations: Skip MathML, which was not being tested under

old-run-webkit-tests.

4:31 PM Changeset in webkit [151248] by benjamin@webkit.org
  • 6 edits in trunk/Source

WebSQL forces 16-bit strings
https://bugs.webkit.org/show_bug.cgi?id=116935

Patch by Benjamin Poulain <bpoulain@apple.com> on 2013-06-05
Reviewed by Darin Adler.

Merge chromium 49c9632ac135f6f06e623a7a81d9da1f6bb7196f.
https://chromium.googlesource.com/chromium/blink/+/49c9632ac135f6f06e623a7a81d9da1f6bb7196f

Source/WebCore:

  • platform/sql/SQLiteStatement.cpp:

(WebCore::SQLiteStatement::getColumnValue):

Source/WTF:

  • wtf/text/StringImpl.cpp:

(WTF::StringImpl::create8BitIfPossible):

  • wtf/text/StringImpl.h:

(WTF::lengthOfNullTerminatedString):

  • wtf/text/WTFString.cpp:

(WTF::String::String):

4:05 PM Changeset in webkit [151247] by betravis@adobe.com
  • 173 edits in trunk

[CSS Exclusions][CSS Shapes] Split CSS Exclusions & Shapes compile & runtime flags
https://bugs.webkit.org/show_bug.cgi?id=117172

Reviewed by Alexandru Chiculita.

.:

Adding the CSS_SHAPES compile flag.

  • Source/autotools/SetupWebKitFeatures.m4:
  • Source/autotools/symbols.filter:
  • Source/cmake/WebKitFeatures.cmake:
  • Source/cmakeconfig.h.cmake:

Source/JavaScriptCore:

Adding the CSS_SHAPES compile flag.

  • Configurations/FeatureDefines.xcconfig:

Source/WebCore:

This patch adds a new compile and runtime flag for the CSS Shapes feature, which
has split off from the previous CSS Exclusions and Shapes specification. The
specifications are available here:
http://dev.w3.org/csswg/css-exclusions/
http://dev.w3.org/csswg/css-shapes/

The changes introduce a new CSS_SHAPES compile flag, and a new cssShapesEnabled
runtime flag. In general, the code changes are simple renames.

Refactoring, no new tests.

  • bindings/generic/RuntimeEnabledFeatures.h:

(WebCore::RuntimeEnabledFeatures::setCSSShapesEnabled):
(WebCore::RuntimeEnabledFeatures::cssShapesEnabled):

  • css/CSSComputedStyleDeclaration.cpp:

(WebCore::ComputedStyleExtractor::propertyValue):

  • css/CSSParser.cpp:

(WebCore::isSimpleLengthPropertyID):
(WebCore::CSSParser::parseValue):

  • css/CSSProperty.cpp:

(WebCore::CSSProperty::isInheritedProperty):

  • css/DeprecatedStyleBuilder.cpp:

(WebCore::DeprecatedStyleBuilder::DeprecatedStyleBuilder):

  • css/StyleResolver.cpp:

(WebCore::StyleResolver::applyProperty):
(WebCore::StyleResolver::loadPendingImages):

  • page/animation/CSSPropertyAnimation.cpp:

(WebCore::CSSPropertyAnimation::ensurePropertyMap):

  • rendering/BidiRun.h:

(WebCore::BidiRun::BidiRun):

  • rendering/ExclusionShapeInfo.cpp:
  • rendering/ExclusionShapeInfo.h:
  • rendering/ExclusionShapeInsideInfo.cpp:
  • rendering/ExclusionShapeInsideInfo.h:
  • rendering/ExclusionShapeOutsideInfo.cpp:
  • rendering/ExclusionShapeOutsideInfo.h:
  • rendering/LayoutState.cpp:

(WebCore::LayoutState::LayoutState):

  • rendering/LayoutState.h:

(WebCore::LayoutState::LayoutState):

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::styleDidChange):
(WebCore::exclusionInfoRequiresRelayout):
(WebCore::RenderBlock::updateRegionsAndExclusionsBeforeChildLayout):
(WebCore::RenderBlock::updateRegionsAndExclusionsAfterChildLayout):
(WebCore::RenderBlock::insertFloatingObject):
(WebCore::RenderBlock::computeLogicalLocationForFloat):
(WebCore::RenderBlock::positionNewFloats):
(WebCore::::collectIfNeeded):
(WebCore::RenderBlock::logicalLeftOffsetForLine):
(WebCore::RenderBlock::logicalRightOffsetForLine):

  • rendering/RenderBlock.h:

(WebCore::RenderBlock::xPositionForFloatIncludingMargin):
(WebCore::RenderBlock::yPositionForFloatIncludingMargin):
(WebCore::RenderBlock::FloatIntervalSearchAdapter::FloatIntervalSearchAdapter):

  • rendering/RenderBlockLineLayout.cpp:

(WebCore::LineWidth::LineWidth):
(WebCore::LineWidth::updateAvailableWidth):
(WebCore::LineWidth::shrinkAvailableWidthForNewFloatIfNeeded):
(WebCore::RenderBlock::constructLine):
(WebCore::computeExpansionForJustifiedText):
(WebCore::RenderBlock::computeInlineDirectionPositionsForLine):
(WebCore::RenderBlock::computeInlineDirectionPositionsForSegment):
(WebCore::constructBidiRunsForLine):
(WebCore::RenderBlock::layoutRunsAndFloatsInRange):
(WebCore::RenderBlock::LineBreaker::nextLineBreak):
(WebCore::RenderBlock::LineBreaker::nextSegmentBreak):

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::willBeDestroyed):
(WebCore::RenderBox::styleDidChange):

  • rendering/RenderBox.h:
  • rendering/RenderBoxModelObject.cpp:

(WebCore::RenderBoxModelObject::paintOffset):

  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::shouldBeNormalFlowOnly):

  • rendering/RenderObject.h:

(WebCore::RenderObject::hasPaintOffset):

  • rendering/RenderView.h:

(WebCore::RenderView::pushLayoutState):

  • rendering/style/RenderStyle.cpp:

(WebCore::RenderStyle::changeRequiresLayout):

  • rendering/style/RenderStyle.h:
  • testing/InternalSettings.cpp:

(WebCore::InternalSettings::Backup::Backup):
(WebCore::InternalSettings::Backup::restoreTo):
(WebCore::InternalSettings::setCSSShapesEnabled):

Source/WebKit/blackberry:

Adding the CSS_SHAPES compile flag.

  • WebCoreSupport/AboutDataEnableFeatures.in:

Source/WebKit/mac:

Adding the CSS_SHAPES compile flag.

  • Configurations/FeatureDefines.xcconfig:

Source/WebKit2:

Adding the CSS_SHAPES compile flag.

  • Configurations/FeatureDefines.xcconfig:

Tools:

Adding the CSS_SHAPES compile flag.

  • Scripts/webkitperl/FeatureList.pm:
  • qmake/mkspecs/features/features.pri:

WebKitLibraries:

Adding the CSS_SHAPES compile flag.

  • win/tools32/vsprops/FeatureDefines.vsprops:
  • win/tools32/vsprops/FeatureDefinesCairo.vsprops:

LayoutTests:

Adjusting the shape inside tests to use the new setCSSShapesEnabled method, rather
than the older setCSSExclusionsEnabled method.

  • fast/exclusions/css-exclusions-disabled.html:
  • fast/exclusions/parsing/script-tests/parsing-shape-inside.js:
  • fast/exclusions/parsing/script-tests/parsing-shape-lengths.js:
  • fast/exclusions/parsing/script-tests/parsing-shape-margin.js:
  • fast/exclusions/parsing/script-tests/parsing-shape-outside.js:
  • fast/exclusions/parsing/script-tests/parsing-shape-padding.js:
  • fast/exclusions/resources/multi-segment-polygon.js:

(generatePolygon):

  • fast/exclusions/resources/simple-polygon.js:
  • fast/exclusions/resources/simple-rectangle.js:
  • fast/exclusions/shape-inside/shape-inside-animation.html:
  • fast/exclusions/shape-inside/shape-inside-bottom-edge.html:
  • fast/exclusions/shape-inside/shape-inside-box-sizing.html:
  • fast/exclusions/shape-inside/shape-inside-circle-padding.html:
  • fast/exclusions/shape-inside/shape-inside-circle.html:
  • fast/exclusions/shape-inside/shape-inside-coincident-vertices-expected.html:
  • fast/exclusions/shape-inside/shape-inside-coincident-vertices.html:
  • fast/exclusions/shape-inside/shape-inside-collinear-vertices-expected.html:
  • fast/exclusions/shape-inside/shape-inside-collinear-vertices.html:
  • fast/exclusions/shape-inside/shape-inside-counterclockwise-polygon-expected.html:
  • fast/exclusions/shape-inside/shape-inside-counterclockwise-polygon.html:
  • fast/exclusions/shape-inside/shape-inside-dynamic-nested-expected.html:
  • fast/exclusions/shape-inside/shape-inside-dynamic-nested.html:
  • fast/exclusions/shape-inside/shape-inside-dynamic-shape.html:
  • fast/exclusions/shape-inside/shape-inside-dynamic-text.html:
  • fast/exclusions/shape-inside/shape-inside-ellipse-padding.html:
  • fast/exclusions/shape-inside/shape-inside-ellipse.html:
  • fast/exclusions/shape-inside/shape-inside-empty-expected.html:
  • fast/exclusions/shape-inside/shape-inside-empty.html:
  • fast/exclusions/shape-inside/shape-inside-first-fit-001.html:
  • fast/exclusions/shape-inside/shape-inside-first-fit-002.html:
  • fast/exclusions/shape-inside/shape-inside-first-fit-003.html:
  • fast/exclusions/shape-inside/shape-inside-first-fit-004-expected.html:
  • fast/exclusions/shape-inside/shape-inside-first-fit-004.html:
  • fast/exclusions/shape-inside/shape-inside-first-fit-reflex.html:
  • fast/exclusions/shape-inside/shape-inside-inline-elements.html:
  • fast/exclusions/shape-inside/shape-inside-multiple-blocks-vertical.html:
  • fast/exclusions/shape-inside/shape-inside-multiple-blocks.html:
  • fast/exclusions/shape-inside/shape-inside-on-nested-container-with-unresolved-height.html:
  • fast/exclusions/shape-inside/shape-inside-overflow-fixed-dimensions.html:
  • fast/exclusions/shape-inside/shape-inside-overflow.html:
  • fast/exclusions/shape-inside/shape-inside-partial-fill-001.html:
  • fast/exclusions/shape-inside/shape-inside-partial-fill-002.html:
  • fast/exclusions/shape-inside/shape-inside-percentage-auto.html:
  • fast/exclusions/shape-inside/shape-inside-percentage.html:
  • fast/exclusions/shape-inside/shape-inside-polygon-layout.html:
  • fast/exclusions/shape-inside/shape-inside-polygon-padding-001.html:
  • fast/exclusions/shape-inside/shape-inside-polygon-padding-002.html:
  • fast/exclusions/shape-inside/shape-inside-polygon-padding-003.html:
  • fast/exclusions/shape-inside/shape-inside-polygon-rectangle.html:
  • fast/exclusions/shape-inside/shape-inside-polygon-zoom.html:
  • fast/exclusions/shape-inside/shape-inside-rectangle-padding.html:
  • fast/exclusions/shape-inside/shape-inside-rectilinear-polygon-001-expected.html:
  • fast/exclusions/shape-inside/shape-inside-rectilinear-polygon-001.html:
  • fast/exclusions/shape-inside/shape-inside-rectilinear-polygon-002-expected.html:
  • fast/exclusions/shape-inside/shape-inside-rectilinear-polygon-002.html:
  • fast/exclusions/shape-inside/shape-inside-rectilinear-polygon-003-expected.html:
  • fast/exclusions/shape-inside/shape-inside-rectilinear-polygon-003.html:
  • fast/exclusions/shape-inside/shape-inside-rectilinear-polygon-004-expected.html:
  • fast/exclusions/shape-inside/shape-inside-rectilinear-polygon-004.html:
  • fast/exclusions/shape-inside/shape-inside-regular-polygon16-expected.html:
  • fast/exclusions/shape-inside/shape-inside-regular-polygon16.html:
  • fast/exclusions/shape-inside/shape-inside-regular-polygon8-expected.html:
  • fast/exclusions/shape-inside/shape-inside-regular-polygon8.html:
  • fast/exclusions/shape-inside/shape-inside-rounded-rectangle-001.html:
  • fast/exclusions/shape-inside/shape-inside-rounded-rectangle-fit-001-expected.html:
  • fast/exclusions/shape-inside/shape-inside-rounded-rectangle-fit-001.html:
  • fast/exclusions/shape-inside/shape-inside-rounded-rectangle-fit-002-expected.html:
  • fast/exclusions/shape-inside/shape-inside-rounded-rectangle-fit-002.html:
  • fast/exclusions/shape-inside/shape-inside-rounded-rectangle-fit-003-expected.html:
  • fast/exclusions/shape-inside/shape-inside-rounded-rectangle-fit-003.html:
  • fast/exclusions/shape-inside/shape-inside-rounded-rectangle-padding.html:
  • fast/exclusions/shape-inside/shape-inside-shape-logical-top.html:
  • fast/exclusions/shape-inside/shape-inside-sibling-block-dimension-change-needs-relayout-expected.html:
  • fast/exclusions/shape-inside/shape-inside-sibling-block-dimension-change-needs-relayout.html:
  • fast/exclusions/shape-inside/shape-inside-text.html:
  • fast/exclusions/shape-inside/shape-inside-vertical-text.html:
  • fast/exclusions/shape-outside-floats/shape-outside-floats-diamond-margin-polygon.html:
  • fast/exclusions/shape-outside-floats/shape-outside-floats-ellipse-margin-bottom.html:
  • fast/exclusions/shape-outside-floats/shape-outside-floats-ellipse-margin-left.html:
  • fast/exclusions/shape-outside-floats/shape-outside-floats-ellipse-margin-right.html:
  • fast/exclusions/shape-outside-floats/shape-outside-floats-left-margin-polygon.html:
  • fast/exclusions/shape-outside-floats/shape-outside-floats-margin-is-ignored.html:
  • fast/exclusions/shape-outside-floats/shape-outside-floats-non-zero-y.html:
  • fast/exclusions/shape-outside-floats/shape-outside-floats-overflow-hidden.html:
  • fast/exclusions/shape-outside-floats/shape-outside-floats-overhang.html:
  • fast/exclusions/shape-outside-floats/shape-outside-floats-positioning.html:
  • fast/exclusions/shape-outside-floats/shape-outside-floats-right-margin-polygon.html:
  • fast/exclusions/shape-outside-floats/shape-outside-floats-simple-circle.html:
  • fast/exclusions/shape-outside-floats/shape-outside-floats-simple-ellipse.html:
  • fast/exclusions/shape-outside-floats/shape-outside-floats-simple-inset-rectangle-percentage.html:
  • fast/exclusions/shape-outside-floats/shape-outside-floats-simple-inset-rectangle.html:
  • fast/exclusions/shape-outside-floats/shape-outside-floats-simple-polygon.html:
  • fast/exclusions/shape-outside-floats/shape-outside-floats-simple-rectangle-horizontal-multiple.html:
  • fast/exclusions/shape-outside-floats/shape-outside-floats-simple-rectangle-percentage.html:
  • fast/exclusions/shape-outside-floats/shape-outside-floats-simple-rectangle.html:
  • fast/exclusions/shape-outside-floats/shape-outside-floats-simple-rounded-inset-rectangle.html:
  • fast/exclusions/shape-outside-floats/shape-outside-floats-simple-rounded-rectangle-001.html:
  • fast/exclusions/shape-outside-floats/shape-outside-floats-simple-rounded-rectangle-002.html:
  • fast/exclusions/shape-outside-floats/shape-outside-floats-simple-rounded-rectangle-003.html:
  • fast/exclusions/shape-outside-floats/shape-outside-floats-stacked.html:
  • fast/regions/shape-inside/shape-inside-on-additional-regions.html:
  • fast/regions/shape-inside/shape-inside-on-first-region-block-content.html:
  • fast/regions/shape-inside/shape-inside-on-first-region-inline-content-expected.html:
  • fast/regions/shape-inside/shape-inside-on-first-region-inline-content.html:
  • fast/regions/shape-inside/shape-inside-on-regions-block-content-basic-overflow-shape-top-offset.html:
  • fast/regions/shape-inside/shape-inside-on-regions-block-content-overflow-multiple-shapes.html:
  • fast/regions/shape-inside/shape-inside-on-regions-expected.html:
  • fast/regions/shape-inside/shape-inside-on-regions-inline-content-basic-overflow-shape-top-offset.html:
  • fast/regions/shape-inside/shape-inside-on-regions-inline-content-overflow-multiple-shapes.html:
  • fast/regions/shape-inside/shape-inside-on-regions-inline-content.html:
  • fast/regions/shape-inside/shape-inside-on-regions.html:
  • fast/regions/shape-inside/shape-inside-on-second-region-block-content.html:
  • fast/regions/shape-inside/shape-inside-on-second-region-inline-content.html:
  • fast/regions/shape-inside/shape-inside-recursive-layout.html:
  • fast/regions/shape-inside/shape-inside-with-region-borders.html:
  • fast/regions/shape-inside/shape-inside-with-region-padding.html:
3:54 PM Changeset in webkit [151246] by andersca@apple.com
  • 2 edits in trunk/Source/WebKit2

Crash if an IPC connection is invalidated before it's completely set up
https://bugs.webkit.org/show_bug.cgi?id=117274
<rdar://problem/13319035>

Reviewed by Andreas Kling.

Resume our dispatch sources on the connection queue so we won't get invalidation callbacks before
all sources have been set up.

  • Platform/CoreIPC/mac/ConnectionMac.cpp:

(CoreIPC::Connection::open):
(CoreIPC::Connection::sendOutgoingMessage):
(CoreIPC::Connection::initializeDeadNameSource):
(CoreIPC::Connection::receiveSourceEventHandler):

3:43 PM Changeset in webkit [151245] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/gtk

[GTK] AcceleratedCompositingContext: fix layerFlushTimerFiredCallback condition
https://bugs.webkit.org/show_bug.cgi?id=117258

Patch by Alberto Garcia <agarcia@igalia.com> on 2013-06-05
Reviewed by Martin Robinson.

The expressions were incorrectly grouped, a timeout handler can
only be added only if there's none running already.

  • WebCoreSupport/AcceleratedCompositingContextGL.cpp:

(WebKit::AcceleratedCompositingContext::renderLayersToWindow):

3:24 PM Changeset in webkit [151244] by oliver@apple.com
  • 4 edits in trunk/Source/WebCore

Don't throttle timers if a page is doing something that might be interesting
https://bugs.webkit.org/show_bug.cgi?id=117273

Reviewed by Gavin Barraclough.

Make the decision about whether or not to throttle timers be
determined by the PageThrottler

  • page/Page.cpp:

(WebCore::Page::throttleTimers):
(WebCore::Page::unthrottleTimers):
(WebCore::Page::setVisibilityState):
(WebCore::Page::hiddenPageDOMTimerThrottlingStateChanged):

  • page/Page.h:
  • page/PageThrottler.cpp:

(WebCore::PageThrottler::throttlePage):
(WebCore::PageThrottler::unthrottlePage):

3:19 PM Changeset in webkit [151243] by Lucas Forschler
  • 4 edits in tags/Safari-537.43.58/Source

Versioning.

3:15 PM Changeset in webkit [151242] by Lucas Forschler
  • 1 copy in tags/Safari-537.43.58

New Tag.

2:42 PM Changeset in webkit [151241] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebKit/blackberry

[BlackBerry] Deleting the pendingSelectionCandidate on the wrong thread causes an assert.
https://bugs.webkit.org/show_bug.cgi?id=117276

Patch by Genevieve Mak <gmak@rim.com> on 2013-06-05
Reviewed by Rob Buis.

Reviewed Internally by Nima Ghanavatian.
PR #342399
Store and delete the selectionScrollView in webkit which is what we already do for
scrolling subframes.

  • Api/InRegionScroller.cpp:

(BlackBerry::WebKit::InRegionScrollerPrivate::InRegionScrollerPrivate):
(BlackBerry::WebKit::InRegionScrollerPrivate::resetSelectionScrollView):
(WebKit):
(BlackBerry::WebKit::InRegionScrollerPrivate::clearDocumentData):
(BlackBerry::WebKit::InRegionScrollerPrivate::calculateInRegionScrollableAreasForPoint):
(BlackBerry::WebKit::InRegionScrollerPrivate::updateSelectionScrollView):
(BlackBerry::WebKit::InRegionScrollerPrivate::firstScrollableInRegionForNode):

  • Api/InRegionScroller_p.h:

(InRegionScrollerPrivate):

2:40 PM Changeset in webkit [151240] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/blackberry

[BlackBerry] Make image clickable when it has anchor as parent node.
https://bugs.webkit.org/show_bug.cgi?id=117271

Patch by Tiancheng Jiang <tijiang@rim.com> on 2013-06-05
Reviewed by Rob Buis.

BlackBerry PR 345995
Internally Reviewed by Genevieve Mak.

  • WebKitSupport/FatFingers.cpp:

(BlackBerry::WebKit::FatFingers::isElementClickable):

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

[WinCE,WinCairo] RenderThemeWin.cpp needs to include FrameSelection.h.
https://bugs.webkit.org/show_bug.cgi?id=116583

Patch by Mark Salisbury <mark.salisbury@hp.com> on 2013-06-05
Reviewed by Brent Fulgham.

  • rendering/RenderThemeWin.cpp:
2:30 PM Changeset in webkit [151238] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

[curl] Restrict allowed protocols
https://bugs.webkit.org/show_bug.cgi?id=117257

Patch by Peter Gal <galpeter@inf.u-szeged.hu> on 2013-06-05
Reviewed by Brent Fulgham.

curl supports various protocols (like: HTTP,...,POP3,IMAP...) and by
default all of the are enabled for a single curl handle. Furthermore
all of the protocols are allowed during Location header follow.
This could pose a security risk for example: a malicious server responds
with a crafted Location header pointing to an imap/../(etc) url and the
curl backend will follow it and will give the result for the WebCore.

This patch will restrict the allowed protocols to: HTTP(S), FTP(S), FILE

  • platform/network/curl/ResourceHandleManager.cpp:

(WebCore::ResourceHandleManager::initializeHandle):

2:25 PM Changeset in webkit [151237] by betravis@adobe.com
  • 6 edits in trunk/Source/WebCore

[css exclusions] Clean up ExclusionShapeInsideInfo dynamic removal code
https://bugs.webkit.org/show_bug.cgi?id=116236

Reviewed by David Hyatt.

Instead of keeping the ExclusionShapeInsideInfo around after it has
become stale, we can immediately remove it and just mark descendants
for relayout. This patch removes most of the code added by
https://bugs.webkit.org/show_bug.cgi?id=111029
in favor of this simpler approach.

This patch does not introduce new functionality.

  • rendering/ExclusionShapeInsideInfo.h:

(WebCore::ExclusionShapeInsideInfo::ExclusionShapeInsideInfo):
(ExclusionShapeInsideInfo): Remove needsRemoval code.

  • rendering/LayoutState.cpp:

(WebCore::LayoutState::LayoutState): Ditto.

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::updateExclusionShapeInsideInfoAfterStyleChange): Remove
needsRemoval code and mark descendants for layout.
(WebCore):
(WebCore::RenderBlock::markShapeInsideDescendantsForLayout): Method to mark
descendants of a shape inside with inline content for layout.
(WebCore::exclusionInfoRequiresRelayout): Remove needsRemoval code.
(WebCore::RenderBlock::updateRegionsAndExclusionsAfterChildLayout): Ditto.

  • rendering/RenderBlock.h:

(WebCore::RenderBlock::exclusionShapeInsideInfo): Ditto.
(RenderBlock):

  • rendering/RenderBlockLineLayout.cpp:

(WebCore::RenderBlock::layoutExclusionShapeInsideInfo): Ditto.

2:20 PM Changeset in webkit [151236] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebCore

Avoid multiple copies of inline script & style strings
https://bugs.webkit.org/show_bug.cgi?id=117202

Patch by Arunprasad Rajkumar <arurajku@cisco.com> on 2013-06-05
Reviewed by Darin Adler.

Merge from https://chromiumcodereview.appspot.com/16005007.

No new tests needed.

The HTML parser breaks up large text nodes into small chunks to avoid some
O(n2) editing algorithms. This fix skips that workaround for <script> and
<style> elements, which aren't likely to need editing. As a result, <script>
ends up with a single text node, containing a contiguous String, which is the
source code of that inline script block.

Prior this fix, we could end up with two copies of large inline scripts: one
monolithic string retained by JSC and a number of shards retained by the DOM.
After this fix, both the DOM and JSC use the same monolithic string, removing a
copy.

  • dom/Text.cpp:

(WebCore::Text::createWithLengthLimit):

  • html/parser/HTMLConstructionSite.cpp:

(WebCore::shouldUseLengthLimit):
(WebCore::HTMLConstructionSite::insertTextNode):

12:57 PM Changeset in webkit [151235] by timothy_horton@apple.com
  • 4 edits in trunk/Source/WebKit2

[wk2] WebProcess' page-in-window count can be wrong
https://bugs.webkit.org/show_bug.cgi?id=117106
<rdar://problem/14040991>

Reviewed by Anders Carlsson.

If we're using a single WebProcess and a window is closed, we were
not decrementing the page-in-window count (because we apparently don't
setIsInWindow(false) a WebPage in a closing window before tearing it down).

Turn the page-in-window count into a HashSet of pageIDs instead.

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::WebPage):
(WebKit::WebPage::setIsInWindow):
Send the pageID instead (this change is just so that I don't need to
fetch the WebPage in WebProcess::removeWebPage).

  • WebProcess/WebProcess.cpp:

(WebKit::WebProcess::WebProcess):
Remove m_inWindowPageCount.

(WebKit::WebProcess::removeWebPage):
Ensure that WebPages being torn-down are removed from the in-window WebPage set.

(WebKit::WebProcess::pageDidEnterWindow):
(WebKit::WebProcess::pageWillLeaveWindow):
Use our new HashSet instead of a count.

(WebKit::WebProcess::nonVisibleProcessCleanupTimerFired):
Make sure that we don't have any visible pages before doing cleanup.

  • WebProcess/WebProcess.h:

Remove m_inWindowPageCount.
Add m_inWindowPageSet.
Make pageDidEnterWindow/pageWillLeaveWindow take pageID instead of WebPage.

12:41 PM Changeset in webkit [151234] by timothy_horton@apple.com
  • 2 edits in trunk/Source/WebKit2

REGRESSION (r148713): Crash under waitForDidUpdateInWindowState
https://bugs.webkit.org/show_bug.cgi?id=117268
<rdar://problem/13822353>

Reviewed by Anders Carlsson.

Check if the WebProcess is valid before waiting for a message from it.
Reset the bool that tells us that we have an outstanding didUpdateInWindowState message if the WebProcess quits.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::waitForDidUpdateInWindowState):
(WebKit::WebPageProxy::resetStateAfterProcessExited):

12:38 PM Changeset in webkit [151233] by mifenton@rim.com
  • 2 edits in trunk/Source/WebKit/blackberry

[BlackBerry] Selection handles are inverted on directional selections
https://bugs.webkit.org/show_bug.cgi?id=117269

Reviewed by Rob Buis.

PR 336178

Don't invert the handles leave them in the visual order.

Internally Reviewed by Nima Ghanavatian.

  • WebKitSupport/SelectionHandler.cpp:

(BlackBerry::WebKit::SelectionHandler::selectionPositionChanged):

12:18 PM Changeset in webkit [151232] by Brent Fulgham
  • 3 edits in trunk/Tools

[Windows] Unreviewed build fix. Add CRLF eol-style for DOS shell scripts; if they accidentally change
to UNIX-style they will not execute properly.

  • DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreePostBuild.cmd: Added property svn:eol-style.
  • DumpRenderTree/DumpRenderTree.vcxproj/DumpRenderTree/DumpRenderTreePreBuild.cmd: Added property svn:eol-style.
11:31 AM Changeset in webkit [151231] by roger_fong@apple.com
  • 2 edits in trunk/Tools

Unreviewed build fix. Don't pass in --use-remote-links argument on Windows now that we use NRWT.

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

(RunWebKitTests.start):

11:14 AM Changeset in webkit [151230] by Brent Fulgham
  • 2 edits in trunk/Tools

[Windows] Switch to NRWT
https://bugs.webkit.org/show_bug.cgi?id=117200

Reviewed by Anders Carlsson.

  • Scripts/run-webkit-tests:

(useNewRunWebKitTests): No longer use old-run-webkit-tests for Windows port.

11:10 AM Changeset in webkit [151229] by fpizlo@apple.com
  • 4 edits in branches/dfgFourthTier/Source/JavaScriptCore

fourthTier: Clean up AbstractValue
https://bugs.webkit.org/show_bug.cgi?id=117217

Reviewed by Oliver Hunt.

This started as an attempt to make it so that when AbstractValue becomes empty,
its m_type always becomes SpecNone. I wanted this to happen naturally. That turns
out to be basically impossible, since AbstractValue is a set that is dynamically
computed from the intersection of several internal sets: so the value becomes
empty when any of the sets go empty. It's OK if we're imprecise here because it's
always safe for the AbstractValue to seem to overapproximate the set of values
that we see. So I mostly gave up on cleaning up that aspect of AbstractValue. But
while trying to make this happen, I encountered two bugs:

  • filterValueByType() ignores the case when m_type contravenes m_value. Namely, we might filter the AbstractValue against a SpeculatedType leading to m_value becoming inconsistent with the new m_type. This change fixes that case. This wasn't a symptomatic bug but it was a silly oversight.


  • filterFuturePossibleStructure() was never right. The one call to this method, in filter(Graph&, const StructureSet&), assumed that the previous notions of what structures the value could have in the future were still relevant. This could lead to a bug where we:


1) CheckStructure(@foo, S1)


Where S1 has a valid watchpoint. Now @foo's abstract value will have current
and future structure = S1.


2) Clobber the world.


Now @foo's abstract value will have current structure = TOP, and future
possible structure = S1.


3) CheckStructure(@foo, S2)


Now @foo's abstract value will have current structure = S2 and future
possible structure = S1 intersect S2 = BOTTOM.


Now we will think that any subsequent watchpoint on @foo is valid because the
value is effectively BOTTOM. That would only be correct if we had actually set
a watchpoint on S1. If we had done so, then (3) would only pass (i.e. @foo
would only have structure S2) if S1's watchpoint fired, in which case (3)
wouldn't have been reachable. But we didn't actually set a watchpoint on S1:
we just observed that we *could* have set the watchpoint. Hence future possible
structure should only be set to either the known structure at compile-time, or
it should be the structure we just checked; in both cases it should only be set
if the structure is watchable.


Then, in addition to all of this, I changed AbstractValue's filtering methods to
call clear() if the AbstractValue is effectively clear. This is just meant to
simplify the recognition of truly empty AbstractValues, but doesn't actually have
any other implications.

  • bytecode/StructureSet.h:

(JSC::StructureSet::dump):

  • dfg/DFGAbstractValue.cpp:

(JSC::DFG::AbstractValue::filter):
(DFG):
(JSC::DFG::AbstractValue::filterArrayModes):
(JSC::DFG::AbstractValue::filterValueByType):
(JSC::DFG::AbstractValue::filterArrayModesByType):
(JSC::DFG::AbstractValue::shouldBeClear):
(JSC::DFG::AbstractValue::normalizeClarity):
(JSC::DFG::AbstractValue::checkConsistency):

  • dfg/DFGAbstractValue.h:

(JSC::DFG::AbstractValue::isClear):
(AbstractValue):

10:16 AM Changeset in webkit [151228] by commit-queue@webkit.org
  • 2 edits in trunk/Source/JavaScriptCore

JSC Assertion tests failures on MIPS.
https://bugs.webkit.org/show_bug.cgi?id=116552

Patch by Balazs Kilvady <kilvadyb@homejinni.com> on 2013-06-05
Reviewed by Geoffrey Garen.

Fix condition handlig in branchAdd32 implemetations.

  • assembler/MacroAssemblerMIPS.h:

(JSC::MacroAssemblerMIPS::branchAdd32):

10:15 AM Changeset in webkit [151227] by kalyan.kondapally@intel.com
  • 8 edits in trunk/Source/WebCore

[EFL] Build fix with EGL and GLES2 backend.
https://bugs.webkit.org/show_bug.cgi?id=117246

Reviewed by Kenneth Rohde Christiansen.

r150958 added support for EGLTransportSurfaceClient.
This patch adds the missing changes.

  • platform/graphics/surfaces/efl/GLTransportSurface.cpp:

(WebCore::GLTransportSurfaceClient::createTransportSurfaceClient):
(WebCore::GLTransportSurfaceClient::GLTransportSurfaceClient):

  • platform/graphics/surfaces/efl/GLTransportSurface.h:
  • platform/graphics/surfaces/efl/GraphicsSurfaceCommon.cpp:

(WebCore::GraphicsSurfacePrivate::initializeClient):

  • platform/graphics/surfaces/egl/EGLXSurface.cpp:

(WebCore::EGLXTransportSurfaceClient::EGLXTransportSurfaceClient):

  • platform/graphics/surfaces/egl/EGLXSurface.h:
  • platform/graphics/surfaces/glx/GLXSurface.cpp:

(WebCore::GLXTransportSurfaceClient::GLXTransportSurfaceClient):

  • platform/graphics/surfaces/glx/GLXSurface.h:
  • platform/graphics/surfaces/glx/X11Helper.cpp:

(WebCore::X11Helper::createOffScreenWindow):
(WebCore::X11Helper::createPixmap):

  • platform/graphics/surfaces/glx/X11Helper.h:
8:54 AM Changeset in webkit [151226] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

[GTK] Support using GLContext from multiple threads
https://bugs.webkit.org/show_bug.cgi?id=117238

Patch by Jae Hyun Park <jae.park@company100.net> on 2013-06-05
Reviewed by Martin Robinson.

Current implementation assumes that GLContext is only used in the main thread.
However, to support using GLContext from multiple threads, we need to change it
to thread local. Therefore, ASSERT(isMainThread()) is removed and GLContext is
changed to thread local.

  • platform/graphics/cairo/GLContext.cpp:

(WebCore::ThreadGlobalGLContext::setContext):
(WebCore::ThreadGlobalGLContext::context):
(WebCore::currentContext):
(WebCore::GLContext::sharingContext):
(WebCore::GLContext::~GLContext):
(WebCore::GLContext::makeContextCurrent):
(WebCore::GLContext::getCurrent):

8:21 AM Changeset in webkit [151225] by zarvai@inf.u-szeged.hu
  • 158 edits
    126 copies
    740 adds in trunk/LayoutTests

[Qt] Unreviewed gardening. Rebaselining after r151205.

  • platform/qt-5.0-wk2/editing/deleting/merge-no-br-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/merge-unrendered-space-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/merge-whitespace-pre-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/move-nodes-001-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/non-smart-delete-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/pruning-after-merge-2-expected.png:
  • platform/qt-5.0-wk2/editing/deleting/smart-delete-001-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/smart-delete-002-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/smart-delete-003-expected.png:
  • platform/qt-5.0-wk2/editing/deleting/table-cells-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/type-delete-after-quote-expected.png:
  • platform/qt-5.0-wk2/editing/execCommand/4580583-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/execCommand/4641880-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/execCommand/4641880-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/execCommand/4747450-expected.png: Added.
  • platform/qt-5.0-wk2/editing/execCommand/4916402-expected.png: Added.
  • platform/qt-5.0-wk2/editing/execCommand/4916541-expected.png: Added.
  • platform/qt-5.0-wk2/editing/execCommand/4924441-expected.png:
  • platform/qt-5.0-wk2/editing/execCommand/5080333-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/execCommand/5080333-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/execCommand/5136770-expected.png: Added.
  • platform/qt-5.0-wk2/editing/execCommand/5138441-expected.png: Added.
  • platform/qt-5.0-wk2/editing/execCommand/5142012-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/execCommand/5142012-2-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/execCommand/5190926-expected.png: Added.
  • platform/qt-5.0-wk2/editing/execCommand/5481523-expected.png: Added.
  • platform/qt-5.0-wk2/editing/execCommand/5482023-expected.png: Added.
  • platform/qt-5.0-wk2/editing/execCommand/5569741-expected.png: Added.
  • platform/qt-5.0-wk2/editing/execCommand/findString-2-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/execCommand/findString-expected.png: Added.
  • platform/qt-5.0-wk2/editing/execCommand/indent-empty-root-expected.png:
  • platform/qt-5.0-wk2/editing/execCommand/indent-list-item-expected.png: Added.
  • platform/qt-5.0-wk2/editing/execCommand/indent-selection-expected.png: Added.
  • platform/qt-5.0-wk2/editing/execCommand/insert-list-and-stitch-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/execCommand/insertHorizontalRule-expected.png:
  • platform/qt-5.0-wk2/editing/execCommand/insertImage-expected.png:
  • platform/qt-5.0-wk2/editing/execCommand/nsresponder-indent-expected.png:
  • platform/qt-5.0-wk2/editing/execCommand/nsresponder-outdent-expected.png:
  • platform/qt-5.0-wk2/editing/execCommand/paste-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/execCommand/print-expected.png: Added.
  • platform/qt-5.0-wk2/editing/execCommand/remove-list-from-range-selection-expected.png: Added.
  • platform/qt-5.0-wk2/editing/execCommand/remove-list-item-1-expected.png:
  • platform/qt-5.0-wk2/editing/execCommand/selectAll-expected.png: Added.
  • platform/qt-5.0-wk2/editing/input/caret-at-the-edge-of-input-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/input/reveal-caret-of-multiline-input-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/12882-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/4278698-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/4875189-1-expected.png:
  • platform/qt-5.0-wk2/editing/inserting/4875189-2-expected.png:
  • platform/qt-5.0-wk2/editing/inserting/4959067-expected.png:
  • platform/qt-5.0-wk2/editing/inserting/4960120-1-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/inserting/5002441-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/5058163-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/5058163-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/5156401-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/5418891-expected.png:
  • platform/qt-5.0-wk2/editing/inserting/5510537-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/5549929-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/5549929-3-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/inserting/6703873-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/before-after-input-element-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/editable-html-element-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/editable-inline-element-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/inserting/edited-whitespace-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/editing-empty-divs-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-at-end-01-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-at-end-02-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-br-002-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-br-005-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-br-009-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-br-quoted-001-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-br-quoted-002-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-br-quoted-003-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-br-quoted-004-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-br-quoted-005-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-br-quoted-006-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-div-011-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-div-012-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-div-013-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-div-014-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-div-015-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-div-016-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-div-017-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-div-018-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-div-019-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-div-020-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-div-022-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-div-023-expected.png:
  • platform/qt-5.0-wk2/editing/inserting/insert-div-024-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-div-025-expected.png:
  • platform/qt-5.0-wk2/editing/inserting/insert-div-026-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-div-027-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-paragraph-01-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-paragraph-02-expected.png:
  • platform/qt-5.0-wk2/editing/inserting/insert-paragraph-03-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-paragraph-04-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-paragraph-05-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/insert-text-with-newlines-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/line-break-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/inserting/paragraph-separator-01-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/inserting/paragraph-separator-02-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/inserting/paragraph-separator-03-expected.png:
  • platform/qt-5.0-wk2/editing/inserting/paragraph-separator-in-table-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/paragraph-separator-in-table-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/return-key-with-selection-001-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/return-key-with-selection-003-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/typing-002-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/inserting/typing-003-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/typing-around-br-001-expected.png: Added.
  • platform/qt-5.0-wk2/editing/inserting/typing-around-image-001-expected.png:
  • platform/qt-5.0-wk2/editing/pasteboard/3976872-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/4076267-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/4076267-3-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/4076267-expected.png:
  • platform/qt-5.0-wk2/editing/pasteboard/4242293-expected.png:
  • platform/qt-5.0-wk2/editing/pasteboard/4631972-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/4641033-expected.png:
  • platform/qt-5.0-wk2/editing/pasteboard/4806874-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/pasteboard/4944770-1-expected.png:
  • platform/qt-5.0-wk2/editing/pasteboard/4944770-2-expected.png:
  • platform/qt-5.0-wk2/editing/pasteboard/4989774-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/5006779-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/5028447-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/pasteboard/5032095-expected.png:
  • platform/qt-5.0-wk2/editing/pasteboard/5071074-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/5071074-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/5134759-expected.png:
  • platform/qt-5.0-wk2/editing/pasteboard/5156401-1-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/pasteboard/5387578-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/5478250-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/5601583-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/8145-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/8145-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/8145-3-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/bad-placeholder-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/displaced-generic-placeholder-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/displaced-placeholder-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/innerText-inline-table-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/input-field-1-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/pasteboard/merge-after-delete-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/merge-after-delete-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/merge-end-blockquote-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/merge-end-borders-expected.png:
  • platform/qt-5.0-wk2/editing/pasteboard/merge-start-blockquote-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/merge-start-list-expected.png:
  • platform/qt-5.0-wk2/editing/pasteboard/paste-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/paste-4038267-fix-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/paste-blockquote-after-blockquote-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/pasteboard/paste-blockquote-into-blockquote-4-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/paste-line-endings-001-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/paste-line-endings-002-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/paste-line-endings-003-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/paste-line-endings-004-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/paste-line-endings-005-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/paste-line-endings-006-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/paste-line-endings-007-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/paste-line-endings-008-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/paste-line-endings-009-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/paste-line-endings-010-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/paste-match-style-001-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/paste-match-style-002-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/paste-text-004-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/paste-text-008-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/paste-text-009-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/paste-text-013-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/paste-text-014-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/paste-text-016-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/paste-text-019-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/pasting-object-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/quirks-mode-br-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/smart-paste-007-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/smart-paste-008-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/styled-element-markup-expected.png:
  • platform/qt-5.0-wk2/editing/pasteboard/undoable-fragment-removes-expected.png: Added.
  • platform/qt-5.0-wk2/editing/pasteboard/unrendered-br-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/13804-expected.png:
  • platform/qt-5.0-wk2/editing/selection/3690703-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/3690703-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/3690719-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/4397952-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/4402375-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/4776665-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/4818145-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/4866671-expected.png:
  • platform/qt-5.0-wk2/editing/selection/4889598-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/4895428-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/4895428-3-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/4932260-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/4932260-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/4932260-3-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/4947387-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/4960137-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/4975120-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/4983858-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/5007143-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/5007143-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/5057506-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/5076323-1-expected.png:
  • platform/qt-5.0-wk2/editing/selection/5076323-2-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/selection/5076323-3-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/5081257-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/5081257-2-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/selection/5099303-expected.png:
  • platform/qt-5.0-wk2/editing/selection/5131716-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/5131716-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/5131716-3-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/5131716-4-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/5234383-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/5234383-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/5240265-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/7152-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/7152-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/addRange-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/after-line-wrap-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/caret-ltr-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/caret-ltr-2-left-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/caret-ltr-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/caret-ltr-right-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/clear-selection-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/selection/click-start-of-line-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/contenteditable-click-inside-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/display-table-text-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/drag-select-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/editable-html-element-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/editable-non-editable-crash-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/selection/end-of-document-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/expanding-selections-expected.png:
  • platform/qt-5.0-wk2/editing/selection/expanding-selections2-expected.png:
  • platform/qt-5.0-wk2/editing/selection/extend-by-character-002-expected.png:
  • platform/qt-5.0-wk2/editing/selection/extend-by-character-003-expected.png:
  • platform/qt-5.0-wk2/editing/selection/extend-by-character-004-expected.png:
  • platform/qt-5.0-wk2/editing/selection/extend-by-character-005-expected.png:
  • platform/qt-5.0-wk2/editing/selection/extend-by-sentence-001-expected.png:
  • platform/qt-5.0-wk2/editing/selection/extend-by-word-002-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/extend-inside-transforms-backward-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/extend-inside-transforms-forward-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/fake-doubleclick-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/selection/focus-body-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/selection/focus_editable_html-expected.png:
  • platform/qt-5.0-wk2/editing/selection/iframe-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/image-before-linebreak-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/inline-closest-leaf-child-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/inline-table-expected.png:
  • platform/qt-5.0-wk2/editing/selection/leave-requested-block-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/line-wrap-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/line-wrap-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/mixed-editability-1-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/selection/mixed-editability-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/mixed-editability-3-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/mixed-editability-4-expected.png:
  • platform/qt-5.0-wk2/editing/selection/mixed-editability-5-expected.png:
  • platform/qt-5.0-wk2/editing/selection/mixed-editability-6-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/mixed-editability-7-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/mixed-editability-8-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/mixed-editability-9-expected.png:
  • platform/qt-5.0-wk2/editing/selection/move-3875618-fix-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/move-3875641-fix-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/move-backwords-by-word-001-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/move-between-blocks-no-001-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/move-between-blocks-yes-001-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/selection/move-by-character-002-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/move-by-character-003-expected.png:
  • platform/qt-5.0-wk2/editing/selection/move-by-character-004-expected.png:
  • platform/qt-5.0-wk2/editing/selection/move-by-character-005-expected.png:
  • platform/qt-5.0-wk2/editing/selection/move-by-character-6-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/selection/move-by-line-001-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/move-by-line-002-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/move-by-sentence-001-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/move-by-sentence-linebreak-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/move-past-trailing-space-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/selection/node-removal-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/node-removal-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/paragraph-granularity-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/previous-line-position-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/range-between-block-and-inline-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/replace-selection-1-expected.png:
  • platform/qt-5.0-wk2/editing/selection/replaced-boundaries-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/replaced-boundaries-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/replaced-boundaries-3-expected.png:
  • platform/qt-5.0-wk2/editing/selection/select-across-readonly-input-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/select-across-readonly-input-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/select-across-readonly-input-3-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/select-across-readonly-input-4-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/select-across-readonly-input-5-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/select-all-001-expected.png:
  • platform/qt-5.0-wk2/editing/selection/select-all-002-expected.png:
  • platform/qt-5.0-wk2/editing/selection/select-all-003-expected.png:
  • platform/qt-5.0-wk2/editing/selection/select-all-005-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/select-all-006-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/select-all-iframe-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/select-box-expected.png:
  • platform/qt-5.0-wk2/editing/selection/select-element-paragraph-boundary-expected.png:
  • platform/qt-5.0-wk2/editing/selection/select-text-overflow-ellipsis-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/selection/selectNode-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/selectNodeContents-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/selection-actions-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/selection-button-text-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/table-caret-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/table-caret-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/table-caret-3-expected.png:
  • platform/qt-5.0-wk2/editing/selection/unrendered-space-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/selection/word-granularity-expected.png: Added.
  • platform/qt-5.0-wk2/editing/selection/wrapped-line-caret-1-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/selection/wrapped-line-caret-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/spelling/grammar-markers-expected.png:
  • platform/qt-5.0-wk2/editing/style/4916887-expected.png:
  • platform/qt-5.0-wk2/editing/style/5017613-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/5017613-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/5046875-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/5046875-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/5065910-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/5084241-expected.png:
  • platform/qt-5.0-wk2/editing/style/5228141-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/5279521-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/apple-style-editable-mix-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/block-style-001-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/block-style-002-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/block-style-003-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/block-styles-007-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/create-block-for-style-001-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/create-block-for-style-002-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/create-block-for-style-003-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/create-block-for-style-004-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/create-block-for-style-005-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/create-block-for-style-006-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/create-block-for-style-007-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/create-block-for-style-008-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/create-block-for-style-009-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/create-block-for-style-010-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/create-block-for-style-011-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/create-block-for-style-012-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/create-block-for-style-013-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/designmode-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/style/font-family-with-space-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/style/highlight-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/style/relative-font-size-change-001-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/relative-font-size-change-002-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/relative-font-size-change-003-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/relative-font-size-change-004-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/style-3681552-fix-001-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/style/style-3681552-fix-002-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/editing/style/style-3998892-fix-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/style-boundary-001-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/style-boundary-002-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/style-boundary-003-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/style-boundary-004-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/typing-style-001-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/typing-style-002-expected.png: Added.
  • platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png:
  • platform/qt-5.0-wk2/editing/undo/4063751-expected.png: Added.
  • platform/qt-5.0-wk2/editing/undo/undo-combined-delete-boundary-expected.png: Added.
  • platform/qt-5.0-wk2/editing/undo/undo-combined-delete-expected.png: Added.
  • platform/qt-5.0-wk2/editing/undo/undo-delete-boundary-expected.png: Added.
  • platform/qt-5.0-wk2/editing/undo/undo-delete-expected.png: Added.
  • platform/qt-5.0-wk2/editing/undo/undo-forward-delete-boundary-expected.png: Added.
  • platform/qt-5.0-wk2/editing/undo/undo-forward-delete-expected.png: Added.
  • platform/qt-5.0-wk2/editing/unsupported-content/list-delete-001-expected.png: Added.
  • platform/qt-5.0-wk2/editing/unsupported-content/list-delete-003-expected.png: Added.
  • platform/qt-5.0-wk2/editing/unsupported-content/list-type-after-expected.png: Added.
  • platform/qt-5.0-wk2/editing/unsupported-content/list-type-before-expected.png: Added.
  • platform/qt-5.0-wk2/editing/unsupported-content/table-delete-001-expected.png: Added.
  • platform/qt-5.0-wk2/editing/unsupported-content/table-delete-002-expected.png: Added.
  • platform/qt-5.0-wk2/editing/unsupported-content/table-delete-003-expected.png: Added.
  • platform/qt-5.0-wk2/editing/unsupported-content/table-type-after-expected.png: Added.
  • platform/qt-5.0-wk2/editing/unsupported-content/table-type-before-expected.png: Added.
  • platform/qt-5.0-wk2/fast/backgrounds/001-expected.png: Added.
  • platform/qt-5.0-wk2/fast/backgrounds/animated-svg-as-mask-expected.png: Added.
  • platform/qt-5.0-wk2/fast/backgrounds/background-clip-text-expected.png: Added.
  • platform/qt-5.0-wk2/fast/backgrounds/background-inherit-color-bug-expected.png:
  • platform/qt-5.0-wk2/fast/backgrounds/background-origin-root-element-expected.png: Added.
  • platform/qt-5.0-wk2/fast/backgrounds/background-position-1-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/backgrounds/background-position-parsing-expected.png:
  • platform/qt-5.0-wk2/fast/backgrounds/background-position-rounding-expected.png: Added.
  • platform/qt-5.0-wk2/fast/backgrounds/body-generated-image-propagated-to-root-expected.png: Added.
  • platform/qt-5.0-wk2/fast/backgrounds/mask-composite-expected.png: Added.
  • platform/qt-5.0-wk2/fast/backgrounds/opacity-on-document-element-expected.png: Added.
  • platform/qt-5.0-wk2/fast/backgrounds/quirks-mode-line-box-backgrounds-expected.png: Added.
  • platform/qt-5.0-wk2/fast/backgrounds/repeat/mask-negative-offset-repeat-expected.png: Added.
  • platform/qt-5.0-wk2/fast/backgrounds/repeat/negative-offset-repeat-expected.png: Added.
  • platform/qt-5.0-wk2/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.png:
  • platform/qt-5.0-wk2/fast/backgrounds/size/backgroundSize16-expected.png: Added.
  • platform/qt-5.0-wk2/fast/backgrounds/size/zero-expected.png:
  • platform/qt-5.0-wk2/fast/backgrounds/solid-color-context-restore-expected.png:
  • platform/qt-5.0-wk2/fast/block/basic/001-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/basic/003-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/basic/004-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/basic/005-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/basic/006-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/basic/007-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/basic/008-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/basic/009-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/basic/011-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/basic/012-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/basic/013-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/basic/014-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/basic/015-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/basic/016-expected.png:
  • platform/qt-5.0-wk2/fast/block/basic/018-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/basic/019-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/basic/021-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/basic/adding-near-anonymous-block-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/basic/minheight-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/basic/percent-height-inside-anonymous-block-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/basic/quirk-height-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/basic/truncation-rtl-expected.png:
  • platform/qt-5.0-wk2/fast/block/basic/white-space-pre-wraps-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/003-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/007-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/float/010-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/011-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/012-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/float/013-expected.png:
  • platform/qt-5.0-wk2/fast/block/float/014-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/015-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/016-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/017-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/020-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/021-expected.png:
  • platform/qt-5.0-wk2/fast/block/float/022-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/023-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/float/024-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/025-expected.png:
  • platform/qt-5.0-wk2/fast/block/float/027-expected.png:
  • platform/qt-5.0-wk2/fast/block/float/029-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/030-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/031-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/avoidance-percent-width-compat-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/avoidance-percent-width-strict-expected.png:
  • platform/qt-5.0-wk2/fast/block/float/avoiding-float-centered-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/centered-float-avoidance-complexity-expected.png:
  • platform/qt-5.0-wk2/fast/block/float/clamped-right-float-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/clear-element-too-wide-for-containing-block-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/float/editable-text-overlapping-float-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/fit_line_below_floats-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/float-avoidance-expected.png:
  • platform/qt-5.0-wk2/fast/block/float/float-in-float-painting-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/floats-and-text-indent-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/float/floats-and-text-indent-rl-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/float/intruding-painted-twice-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/marquee-shrink-to-avoid-floats-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/multiple-float-positioning-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/nestedAnonymousBlocks-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/float/nestedAnonymousBlocks2-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/nopaint-after-layer-destruction-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/nopaint-after-layer-destruction2-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/overhanging-after-height-decrease-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/overlapping-floats-with-overflow-hidden-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/shrink-to-avoid-float-complexity-expected.png:
  • platform/qt-5.0-wk2/fast/block/float/shrink-to-fit-width-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/table-relayout-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/vertical-move-relayout-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/float/width-update-after-clear-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/lineboxcontain/inline-box-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/lineboxcontain/inline-box-vertical-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/lineboxcontain/inline-replaced-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/lineboxcontain/none-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/lineboxcontain/parsing-invalid-expected.png:
  • platform/qt-5.0-wk2/fast/block/lineboxcontain/replaced-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/001-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/003-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/004-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/005-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/006-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/010-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/011-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/012-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/015-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/016-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/017-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/018-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/019-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/020-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/021-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/022-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/025-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/026-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/027-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/028-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/029-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/031-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/032-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/033-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/034-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/035-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/037-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/038-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/039-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/040-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/041-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/042-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/043-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/055-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/056-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/057-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/058-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/059-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/062-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/063-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/100-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/101-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/102-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/103-expected.png:
  • platform/qt-5.0-wk2/fast/block/margin-collapse/104-expected.png:
  • platform/qt-5.0-wk2/fast/block/margin-collapse/block-inside-inline/001-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/block-inside-inline/002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/block-inside-inline/003-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/block-inside-inline/004-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/block-inside-inline/005-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/block-inside-inline/006-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/block-inside-inline/010-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/block-inside-inline/011-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/block-inside-inline/012-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/block-inside-inline/015-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/block-inside-inline/016-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/block-inside-inline/017-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/block-inside-inline/018-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/block-inside-inline/019-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/block-inside-inline/020-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/block-inside-inline/021-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/block-inside-inline/022-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/block-inside-inline/025-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/margin-collapse/negative-margins-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/047-expected.png:
  • platform/qt-5.0-wk2/fast/block/positioning/051-expected.png:
  • platform/qt-5.0-wk2/fast/block/positioning/053-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/055-expected.png:
  • platform/qt-5.0-wk2/fast/block/positioning/057-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/positioning/058-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/059-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/060-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/abs-inside-inline-rel-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/absolute-in-inline-ltr-3-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/absolute-in-inline-short-ltr-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/absolute-in-inline-short-rtl-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/absolute-length-of-neg-666666-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/absolute-position-direction-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/positioning/absolute-positioned-overconstrained-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/positioning/absolute-positioning-no-scrollbar-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/positioning/absolute-with-html-border-quirks-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/absolute-with-html-border-strict-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/auto/001-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/auto/002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/auto/003-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/auto/004-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/auto/005-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/auto/006-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/auto/vertical-lr/001-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/auto/vertical-lr/002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/auto/vertical-lr/003-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/auto/vertical-lr/004-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/auto/vertical-lr/005-expected.png:
  • platform/qt-5.0-wk2/fast/block/positioning/auto/vertical-lr/006-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/auto/vertical-rl/002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/auto/vertical-rl/003-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/auto/vertical-rl/004-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/auto/vertical-rl/005-expected.png:
  • platform/qt-5.0-wk2/fast/block/positioning/auto/vertical-rl/006-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/child-of-absolute-with-auto-height-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/differing-writing-modes-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/differing-writing-modes-replaced-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/fixed-positioning-scrollbar-bug-expected.png:
  • platform/qt-5.0-wk2/fast/block/positioning/height-change-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/hiding-inside-relpositioned-inline-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/leftmargin-topmargin-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/negative-right-pos-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/padding-percent-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/block/positioning/relative-overflow-block-expected.png:
  • platform/qt-5.0-wk2/fast/block/positioning/relative-overflow-replaced-expected.png:
  • platform/qt-5.0-wk2/fast/block/positioning/relative-overflow-replaced-float-expected.png:
  • platform/qt-5.0-wk2/fast/block/positioning/relayout-on-position-change-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/rtl-fixed-positioning-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/rtl-static-positioning-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/rtl-static-positioning-inline-block-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/static-distance-with-positioned-ancestor-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/trailing-space-test-expected.png: Added.
  • platform/qt-5.0-wk2/fast/block/positioning/window-height-change-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-color/001-xhtml-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/body-propagation/background-color/002-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/body-propagation/background-color/002-xhtml-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/body-propagation/background-color/003-declarative-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-color/003-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-color/003-xhtml-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-color/004-declarative-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/body-propagation/background-color/004-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/body-propagation/background-color/004-xhtml-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/body-propagation/background-color/005-declarative-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-color/005-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/body-propagation/background-color/005-xhtml-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/body-propagation/background-color/006-declarative-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-color/006-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-color/006-xhtml-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-color/007-declarative-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-color/007-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-color/007-xhtml-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-color/008-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-color/008-xhtml-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/001-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/001-xhtml-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/002-xhtml-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/003-declarative-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/003-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/003-xhtml-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/004-declarative-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/004-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/004-xhtml-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/005-declarative-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/005-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/005-xhtml-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/006-declarative-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/006-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/006-xhtml-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/007-declarative-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/007-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/007-xhtml-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/008-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/008-xhtml-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/009-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/009-xhtml-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/010-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/background-image/010-xhtml-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/overflow/001-expected.png:
  • platform/qt-5.0-wk2/fast/body-propagation/overflow/001-xhtml-expected.png:
  • platform/qt-5.0-wk2/fast/body-propagation/overflow/002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/overflow/002-xhtml-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/overflow/003-declarative-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/overflow/003-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/overflow/003-xhtml-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/overflow/004-declarative-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/overflow/004-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/overflow/004-xhtml-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/overflow/005-declarative-expected.png:
  • platform/qt-5.0-wk2/fast/body-propagation/overflow/005-expected.png:
  • platform/qt-5.0-wk2/fast/body-propagation/overflow/005-xhtml-expected.png:
  • platform/qt-5.0-wk2/fast/body-propagation/overflow/006-declarative-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/overflow/006-xhtml-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/overflow/007-declarative-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/overflow/007-expected.png: Added.
  • platform/qt-5.0-wk2/fast/body-propagation/overflow/007-xhtml-expected.png: Added.
  • platform/qt-5.0-wk2/fast/borders/bidi-002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/borders/bidi-009a-expected.png: Added.
  • platform/qt-5.0-wk2/fast/borders/bidi-012-expected.png: Added.
  • platform/qt-5.0-wk2/fast/borders/block-mask-overlay-image-expected.png:
  • platform/qt-5.0-wk2/fast/borders/block-mask-overlay-image-outset-expected.png:
  • platform/qt-5.0-wk2/fast/borders/border-color-inherit-expected.png: Added.
  • platform/qt-5.0-wk2/fast/borders/border-image-border-radius-expected.png:
  • platform/qt-5.0-wk2/fast/borders/border-image-scaled-expected.png:
  • platform/qt-5.0-wk2/fast/borders/border-radius-constraints-expected.png: Added.
  • platform/qt-5.0-wk2/fast/borders/border-radius-huge-assert-expected.png: Added.
  • platform/qt-5.0-wk2/fast/borders/border-radius-inline-flow-expected.png: Added.
  • platform/qt-5.0-wk2/fast/borders/border-radius-split-inline-expected.png: Added.
  • platform/qt-5.0-wk2/fast/borders/borderRadiusInvalidColor-expected.png: Added.
  • platform/qt-5.0-wk2/fast/borders/different-color-borders-expected.png: Added.
  • platform/qt-5.0-wk2/fast/borders/inline-mask-overlay-image-outset-expected.png:
  • platform/qt-5.0-wk2/fast/borders/inline-mask-overlay-image-outset-vertical-rl-expected.png:
  • platform/qt-5.0-wk2/fast/borders/outline-alpha-block-expected.png:
  • platform/qt-5.0-wk2/fast/borders/outline-alpha-inline-expected.png:
  • platform/qt-5.0-wk2/fast/borders/rtl-border-01-expected.png:
  • platform/qt-5.0-wk2/fast/borders/rtl-border-02-expected.png:
  • platform/qt-5.0-wk2/fast/borders/rtl-border-03-expected.png:
  • platform/qt-5.0-wk2/fast/box-shadow/basic-shadows-expected.png:
  • platform/qt-5.0-wk2/fast/box-shadow/border-radius-big-expected.png: Added.
  • platform/qt-5.0-wk2/fast/box-shadow/no-blur-multiple-offsets-expected.png:
  • platform/qt-5.0-wk2/fast/box-shadow/transform-fringing-expected.png: Added.
  • platform/qt-5.0-wk2/fast/box-sizing/box-sizing-expected.png:
  • platform/qt-5.0-wk2/fast/box-sizing/panels-one-expected.png: Added.
  • platform/qt-5.0-wk2/fast/box-sizing/panels-two-expected.png: Added.
  • platform/qt-5.0-wk2/fast/canvas/arc360-expected.png:
  • platform/qt-5.0-wk2/fast/canvas/canvas-before-css-expected.png: Added.
  • platform/qt-5.0-wk2/fast/canvas/canvas-composite-expected.png: Added.
  • platform/qt-5.0-wk2/fast/canvas/canvas-resize-reset-expected.png:
  • platform/qt-5.0-wk2/fast/canvas/canvas-size-change-after-layout-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/canvas/canvas-text-alignment-expected.png:
  • platform/qt-5.0-wk2/fast/canvas/canvas-text-baseline-expected.png: Added.
  • platform/qt-5.0-wk2/fast/canvas/canvas-transforms-during-path-expected.png:
  • platform/qt-5.0-wk2/fast/canvas/canvas-zoom-expected.png: Added.
  • platform/qt-5.0-wk2/fast/canvas/canvasDrawingIntoSelf-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/canvas/check-stale-putImageData-expected.png: Added.
  • platform/qt-5.0-wk2/fast/canvas/drawImage-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/canvas/drawImage-with-globalAlpha-expected.png: Added.
  • platform/qt-5.0-wk2/fast/canvas/fill-stroke-clip-reset-path-expected.png: Added.
  • platform/qt-5.0-wk2/fast/canvas/fillrect-gradient-zero-stops-expected.png: Added.
  • platform/qt-5.0-wk2/fast/canvas/fillrect_gradient-expected.png: Added.
  • platform/qt-5.0-wk2/fast/canvas/image-object-in-canvas-expected.png:
  • platform/qt-5.0-wk2/fast/canvas/image-pattern-rotate-expected.png:
  • platform/qt-5.0-wk2/fast/canvas/patternfill-repeat-expected.png: Added.
  • platform/qt-5.0-wk2/fast/canvas/quadraticCurveTo-expected.png: Added.
  • platform/qt-5.0-wk2/fast/canvas/shadow-offset-1-expected.png: Added.
  • platform/qt-5.0-wk2/fast/canvas/shadow-offset-2-expected.png: Added.
  • platform/qt-5.0-wk2/fast/canvas/shadow-offset-3-expected.png: Added.
  • platform/qt-5.0-wk2/fast/canvas/shadow-offset-4-expected.png: Added.
  • platform/qt-5.0-wk2/fast/canvas/shadow-offset-5-expected.png: Added.
  • platform/qt-5.0-wk2/fast/canvas/shadow-offset-6-expected.png: Added.
  • platform/qt-5.0-wk2/fast/canvas/shadow-offset-7-expected.png: Added.
  • platform/qt-5.0-wk2/fast/canvas/toDataURL-alpha-expected.png:
  • platform/qt-5.0-wk2/fast/canvas/zero-size-fill-rect-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/clip/001-expected.png: Added.
  • platform/qt-5.0-wk2/fast/clip/002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/clip/003-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/clip/004-expected.png: Added.
  • platform/qt-5.0-wk2/fast/clip/005-expected.png: Added.
  • platform/qt-5.0-wk2/fast/clip/006-expected.png: Added.
  • platform/qt-5.0-wk2/fast/clip/007-expected.png: Added.
  • platform/qt-5.0-wk2/fast/clip/008-expected.png: Added.
  • platform/qt-5.0-wk2/fast/clip/009-expected.png: Added.
  • platform/qt-5.0-wk2/fast/clip/010-expected.png: Added.
  • platform/qt-5.0-wk2/fast/clip/011-expected.png: Added.
  • platform/qt-5.0-wk2/fast/clip/012-expected.png: Added.
  • platform/qt-5.0-wk2/fast/clip/013-expected.png: Added.
  • platform/qt-5.0-wk2/fast/clip/014-expected.png: Added.
  • platform/qt-5.0-wk2/fast/clip/015-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/clip/016-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/clip/nestedTransparencyClip-expected.png: Added.
  • platform/qt-5.0-wk2/fast/clip/outline-overflowClip-expected.png: Added.
  • platform/qt-5.0-wk2/fast/clip/overflow-border-radius-clip-expected.png: Added.
  • platform/qt-5.0-wk2/fast/clip/overflow-border-radius-combinations-expected.png: Added.
  • platform/qt-5.0-wk2/fast/clip/overflow-border-radius-composited-expected.png:
  • platform/qt-5.0-wk2/fast/clip/overflow-border-radius-fixed-position-expected.png: Added.
  • platform/qt-5.0-wk2/fast/clip/overflow-border-radius-transformed-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css-generated-content/001-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css-generated-content/002-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css-generated-content/003-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css-generated-content/005-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css-generated-content/007-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css-generated-content/008-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css-generated-content/009-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css-generated-content/010-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css-generated-content/012-expected.png:
  • platform/qt-5.0-wk2/fast/css-generated-content/013-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css-generated-content/014-expected.png:
  • platform/qt-5.0-wk2/fast/css-generated-content/015-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css-generated-content/016-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css-generated-content/after-duplicated-after-split-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css-generated-content/after-order-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css-generated-content/beforeAfter-interdocument-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css-generated-content/hover-style-change-expected.png:
  • platform/qt-5.0-wk2/fast/css-generated-content/inline-display-types-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css-generated-content/no-openclose-quote-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css-generated-content/table-before-after-child-add-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css-generated-content/table-cell-before-after-child-add-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css-generated-content/table-cell-before-content-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css-generated-content/table-row-before-after-child-add-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css-generated-content/table-row-before-after-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css-generated-content/table-row-group-to-inline-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css-generated-content/table-row-group-with-before-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css-generated-content/table-row-with-before-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css-generated-content/table-table-before-after-child-add-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css-generated-content/table-with-before-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css-generated-content/visibleContentHiddenParent-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css-generated-content/wbr-with-before-content-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css/001-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css/002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/003-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/004-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/005-expected.png:
  • platform/qt-5.0-wk2/fast/css/007-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css/008-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css/ZeroOpacityLayers-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/ZeroOpacityLayers2-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/absolute-poition-in-rtl-parent-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/acid2-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/attribute-selector-dynamic-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/attribute-selector-empty-value-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css/background-image-with-baseurl-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/background-shorthand-invalid-url-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/beforeSelectorOnCodeElement-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/begin-end-contain-selector-empty-value-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/border-height-expected.png:
  • platform/qt-5.0-wk2/fast/css/border-radius-outline-offset-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/child-style-can-override-visited-style-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/clip-text-in-scaled-div-expected.png:
  • platform/qt-5.0-wk2/fast/css/clip-zooming-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/color-correction-backgrounds-and-text-expected.png:
  • platform/qt-5.0-wk2/fast/css/color-quirk-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/color-strict-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/compare-content-style-expected.png:
  • platform/qt-5.0-wk2/fast/css/continuationCrash-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/counters/counter-text-security-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/counters/counter-text-transform-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css/css-imports-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/css1_forward_compatible_parsing-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/css2-system-fonts-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/css3-modsel-22-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/css3-nth-child-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/css3-space-in-nth-and-lang-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/disabled-author-styles-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/dynamic-sibling-selector-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/empty-body-test-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css/empty-generated-content-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css/empty-pseudo-class-expected.png:
  • platform/qt-5.0-wk2/fast/css/fieldset-display-row-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css/find-next-layer-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/first-child-pseudo-class-expected.png:
  • platform/qt-5.0-wk2/fast/css/first-letter-capitalized-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/first-letter-detach-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/first-letter-first-line-hover-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/first-letter-float-after-float-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/first-letter-float-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/first-letter-hover-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/first-letter-punctuation-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/first-letter-recalculation-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/first-letter-skip-out-of-flow-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/first-letter-visibility-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/first-line-text-decoration-expected.png:
  • platform/qt-5.0-wk2/fast/css/first-line-text-decoration-inherited-from-parent-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/first-of-type-pseudo-class-expected.png:
  • platform/qt-5.0-wk2/fast/css/focus-ring-detached-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/focus-ring-multiline-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/focus-ring-multiline-writingmode-vertical-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/focus-ring-outline-color-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/focus-ring-outline-offset-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/focus-ring-outline-width-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css/font-face-implicit-local-font-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/font-face-multiple-faces-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/font-face-opentype-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/font-face-synthetic-bold-italic-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/font-face-weight-matching-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/font-shorthand-weight-only-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/font-smoothing-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/font_property_normal-expected.png:
  • platform/qt-5.0-wk2/fast/css/h1-in-section-elements-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/hover-subselector-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/hsl-color-expected.png:
  • platform/qt-5.0-wk2/fast/css/hsla-color-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/image-rendering-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/import-rule-regression-11590-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/import_with_baseurl-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/inline-element-line-break-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/inline-properties-important-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/invalid-percentage-property-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/invalidation-errors-2-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/invalidation-errors-3-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/invalidation-errors-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/last-child-pseudo-class-expected.png:
  • platform/qt-5.0-wk2/fast/css/last-of-type-pseudo-class-expected.png:
  • platform/qt-5.0-wk2/fast/css/layerZOrderCrash-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css/line-height-font-order-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/line-height-negative-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/line-height-overflow-expected.png:
  • platform/qt-5.0-wk2/fast/css/link-outside-head-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/list-outline-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css/margin-bottom-form-element-quirk-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/margin-bottom-form-element-strict-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/margin-top-bottom-dynamic-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/namespaces/005-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css/namespaces/006-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/namespaces/namespaces-comments-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/namespaces/namespaces-empty-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/namespaces/namespaces-escapes-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/namespaces/namespaces-invalid-at-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/negative-leading-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/negative-nth-child-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/nested-floating-relative-position-percentages-expected.png:
  • platform/qt-5.0-wk2/fast/css/non-empty-span-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/non-standard-checkbox-size-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css/nth-child-dynamic-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/only-child-pseudo-class-expected.png:
  • platform/qt-5.0-wk2/fast/css/only-of-type-pseudo-class-expected.png:
  • platform/qt-5.0-wk2/fast/css/outline-auto-empty-rects-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/outline-auto-location-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/percent-top-relative-container-height-unspecified-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/percent-top-value-with-relative-position-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css/position-negative-top-margin-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css/preserve-user-specified-zoom-level-on-reload-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/pseudo-element-line-break-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/relative-positioned-block-nested-with-inline-parent-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.png:
  • platform/qt-5.0-wk2/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.png:
  • platform/qt-5.0-wk2/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.png:
  • platform/qt-5.0-wk2/fast/css/relative-positioned-block-with-inline-ancestor-expected.png:
  • platform/qt-5.0-wk2/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.png:
  • platform/qt-5.0-wk2/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/rem-dynamic-scaling-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/rem-units-on-root-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/resize-corner-tracking-transformed-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/rgb-float-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/selector-set-attribute-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/shadow-multiple-expected.png:
  • platform/qt-5.0-wk2/fast/css/simple-selector-chain-parsing-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css/style-outside-head-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/style-parsed-outside-head-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css/table-text-align-quirk-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/target-fragment-match-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/text-align-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/text-input-with-webkit-border-radius-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/text-overflow-ellipsis-text-align-center-expected.png:
  • platform/qt-5.0-wk2/fast/css/text-overflow-ellipsis-text-align-justify-expected.png:
  • platform/qt-5.0-wk2/fast/css/text-overflow-ellipsis-text-align-left-expected.png:
  • platform/qt-5.0-wk2/fast/css/text-overflow-ellipsis-text-align-right-expected.png:
  • platform/qt-5.0-wk2/fast/css/text-rendering-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/text-transform-select-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/textCapitalizeEdgeCases-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/transform-default-parameter-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/transformed-mask-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/universal-hover-quirk-expected.png: Added.
  • platform/qt-5.0-wk2/fast/css/value-list-out-of-bounds-crash-expected.png:
  • platform/qt-5.0-wk2/fast/css/vertical-text-overflow-ellipsis-text-align-center-expected.png:
  • platform/qt-5.0-wk2/fast/css/vertical-text-overflow-ellipsis-text-align-justify-expected.png:
  • platform/qt-5.0-wk2/fast/css/vertical-text-overflow-ellipsis-text-align-left-expected.png:
  • platform/qt-5.0-wk2/fast/css/vertical-text-overflow-ellipsis-text-align-right-expected.png:
  • platform/qt-5.0-wk2/fast/css/visibility-hit-test-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/css/zoom-font-size-expected.png: Added.
  • platform/qt-5.0-wk2/fast/doctypes/001-expected.png: Added.
  • platform/qt-5.0-wk2/fast/doctypes/002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/doctypes/003-expected.png: Added.
  • platform/qt-5.0-wk2/fast/doctypes/004-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/Element/class-attribute-whitespace-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/Element/null-offset-parent-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/HTMLElement/bdo-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/HTMLHeadElement/head-link-style-href-check-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/HTMLInputElement/input-image-alt-text-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/HTMLLinkElement/pending-stylesheet-count-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/HTMLMeterElement/meter-boundary-values-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/HTMLMeterElement/meter-optimums-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/HTMLMeterElement/meter-styles-changing-pseudo-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/HTMLMeterElement/meter-styles-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/HTMLObjectElement/vspace-hspace-as-number-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/HTMLProgressElement/progress-bar-value-pseudo-element-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/HTMLTableElement/colSpan-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/HTMLTableElement/createCaption-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/HTMLTextAreaElement/reset-textarea-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/Range/create-contextual-fragment-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/dom/Range/surroundContents-1-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/Window/open-existing-pop-up-blocking-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/anchor-text-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/dom/blur-contenteditable-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/dom/clone-contents-0-end-offset-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/dom/clone-node-dynamic-style-expected.png:
  • platform/qt-5.0-wk2/fast/dom/createDocumentType-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/css-rule-functions-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/gc-10-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/importNodeHTML-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/importNodeXML-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/outerText-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dom/row-inner-text-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dynamic/002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dynamic/004-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/dynamic/006-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dynamic/007-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dynamic/011-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dynamic/013-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dynamic/014-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/dynamic/015-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dynamic/anchor-lock-expected.png:
  • platform/qt-5.0-wk2/fast/dynamic/anonymous-block-orphaned-lines-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dynamic/create-renderer-for-whitespace-only-text-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dynamic/float-in-trailing-whitespace-after-last-line-break-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dynamic/float-withdrawal-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dynamic/insert-before-table-part-in-continuation-expected.png:
  • platform/qt-5.0-wk2/fast/dynamic/link-href-change-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dynamic/noninlinebadness-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dynamic/outerHTML-doc-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dynamic/outerHTML-img-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dynamic/selection-highlight-adjust-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dynamic/staticY-marking-parents-regression-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dynamic/view-overflow-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dynamic/window-resize-scrollbars-test-expected.png: Added.
  • platform/qt-5.0-wk2/fast/dynamic/window-scrollbars-test-expected.png: Added.
  • platform/qt-5.0-wk2/fast/encoding/utf-16-big-endian-expected.png:
  • platform/qt-5.0-wk2/fast/encoding/utf-16-little-endian-expected.png:
  • platform/qt-5.0-wk2/fast/events/event-listener-on-link-expected.png: Added.
  • platform/qt-5.0-wk2/fast/events/pointer-events-2-expected.png:
  • platform/qt-5.0-wk2/fast/events/resize-events-expected.png:
  • platform/qt-5.0-wk2/fast/fast-mobile-scrolling/fixed-position-element-expected.png: Added.
  • platform/qt-5.0-wk2/fast/flexbox/001-expected.png: Added.
  • platform/qt-5.0-wk2/fast/flexbox/002-expected.png: Added.
  • platform/qt-5.0-wk2/fast/flexbox/003-expected.png: Added.
  • platform/qt-5.0-wk2/fast/flexbox/004-expected.png: Added.
  • platform/qt-5.0-wk2/fast/flexbox/005-expected.png: Added.
  • platform/qt-5.0-wk2/fast/flexbox/006-expected.png: Added.
  • platform/qt-5.0-wk2/fast/flexbox/007-expected.png: Added.
  • platform/qt-5.0-wk2/fast/flexbox/008-expected.png: Added.
  • platform/qt-5.0-wk2/fast/flexbox/009-expected.png: Added.
  • platform/qt-5.0-wk2/fast/flexbox/010-expected.png: Added.
  • platform/qt-5.0-wk2/fast/flexbox/011-expected.png: Added.
  • platform/qt-5.0-wk2/fast/flexbox/012-expected.png: Added.
  • platform/qt-5.0-wk2/fast/flexbox/014-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/flexbox/015-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/editing/style/unbold-in-bold-expected.png.
  • platform/qt-5.0-wk2/fast/flexbox/016-expected.png:
  • platform/qt-5.0-wk2/fast/flexbox/017-expected.png: Added.
  • platform/qt-5.0-wk2/fast/flexbox/018-expected.png: Added.
  • platform/qt-5.0-wk2/fast/flexbox/019-expected.png: Added.
  • platform/qt-5.0-wk2/fast/flexbox/020-expected.png: Added.
  • platform/qt-5.0-wk2/fast/flexbox/021-expected.png: Added.
  • platform/qt-5.0-wk2/fast/flexbox/022-expected.png: Added.
  • platform/qt-5.0-wk2/fast/flexbox/023-expected.png: Added.
  • platform/qt-5.0-wk2/fast/flexbox/024-expected.png: Added.
7:31 AM Changeset in webkit [151224] by Christophe Dumez
  • 2 edits in trunk/Source/WebCore

Unreviewed build fix when CHANNEL_MESSAGING is disabled.

Add #if ENABLE(CHANNEL_MESSAGING) to JSMessageChannelCustom.cpp.

  • bindings/js/JSMessageChannelCustom.cpp:
7:16 AM Changeset in webkit [151223] by Christophe Dumez
  • 13 edits
    1 delete in trunk/Source/WebCore

Remove remaining custom getters for WorkerContext constructor attributes
https://bugs.webkit.org/show_bug.cgi?id=117247

Reviewed by Kentaro Hara.

Remove custom getter code for remaining constructor attribute on WorkerContext
interface. The custom code wasn't needed as it was doing nothing more than the
generated one. These constructor attributes are now automatically generated.

No new tests, no behavior change.

  • CMakeLists.txt:
  • DerivedSources.make:
  • DerivedSources.pri:
  • GNUmakefile.list.am:
  • Modules/websockets/WebSocket.idl:
  • Modules/websockets/WorkerContextWebSocket.idl: Removed.
  • WebCore.order:
  • WebCore.xcodeproj/project.pbxproj:
  • bindings/js/JSWorkerContextCustom.cpp:
  • dom/MessageChannel.idl:
  • page/EventSource.idl:
  • workers/WorkerContext.idl:
  • xml/XMLHttpRequest.idl:
7:02 AM Changeset in webkit [151222] by zarvai@inf.u-szeged.hu
  • 31 edits
    974 adds in trunk/LayoutTests

[Qt] Unreviewed gardening. Rebaselining after r151205.

  • platform/qt-5.0-wk2/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png:
  • platform/qt-5.0-wk2/css2.1/t0905-c5525-fltwidth-01-c-g-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0905-c5525-fltwidth-02-c-g-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0905-c5525-fltwidth-03-c-g-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0905-c5525-fltwrap-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0905-c5526-fltclr-00-c-ag-expected.png:
  • platform/qt-5.0-wk2/css2.1/t0905-c5526-flthw-00-c-g-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t090501-c414-flt-00-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t090501-c414-flt-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t090501-c414-flt-ln-00-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t090501-c414-flt-ln-02-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t090501-c414-flt-ln-03-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t090501-c5525-flt-l-00-b-g-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t090501-c5525-flt-r-00-b-g-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1001-abs-pos-cb-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1001-abs-pos-cb-02-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1001-abs-pos-cb-03-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1001-abs-pos-cb-04-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1001-abs-pos-cb-05-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1001-abs-pos-cb-06-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1001-abs-pos-cb-07-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1001-abs-pos-cb-08-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1001-abs-pos-cb-09-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1002-c5523-width-00-b-g-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1002-c5523-width-01-b-g-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1002-c5523-width-02-b-g-expected.png:
  • platform/qt-5.0-wk2/css2.1/t100303-c412-blockw-00-d-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1004-c43-rpl-bbx-00-d-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1004-c5524-width-00-b-g-expected.png:
  • platform/qt-5.0-wk2/css2.1/t1005-c5524-width-00-b-g-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1005-c5524-width-01-b-g-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1008-c44-ln-box-00-d-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1008-c44-ln-box-01-d-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1008-c44-ln-box-03-d-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t100801-c42-ibx-ht-00-d-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t100801-c544-valgn-00-a-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t100801-c544-valgn-02-d-agi-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t100801-c544-valgn-03-d-agi-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t100801-c544-valgn-04-d-agi-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t100801-c548-leadin-00-d-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t100801-c548-ln-ht-00-c-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t100801-c548-ln-ht-03-d-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t100801-c548-ln-ht-04-d-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counter-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counter-02-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counter-03-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counter-04-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counter-05-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counter-07-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counter-08-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counter-11-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counter-12-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counter-13-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counter-14-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counter-16-f-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counters-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counters-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counters-02-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counters-03-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counters-05-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counters-06-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counters-07-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counters-08-b-expected.png:
  • platform/qt-5.0-wk2/css2.1/t1202-counters-11-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counters-12-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counters-13-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counters-14-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counters-16-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counters-17-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1202-counters-18-f-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1204-implied-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1204-implied-01-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1204-implied-02-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1204-multiple-00-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1204-multiple-01-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1204-order-00-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1204-order-01-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1204-root-e-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t120401-scope-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t120401-scope-01-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t120401-scope-02-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t120401-scope-03-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t120401-scope-04-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t120403-content-none-00-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t120403-display-none-00-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t120403-visibility-00-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1205-c561-list-displ-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1205-c563-list-type-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1205-c563-list-type-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1205-c564-list-img-00-b-g-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1205-c565-list-pos-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1205-c566-list-stl-00-e-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1205-c566-list-stl-01-c-g-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1401-c531-color-00-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1402-c45-bg-canvas-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t140201-c532-bgcolor-00-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t140201-c533-bgimage-00-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t140201-c534-bgre-00-b-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t140201-c534-bgre-01-b-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t140201-c535-bg-fixd-00-b-g-expected.png:
  • platform/qt-5.0-wk2/css2.1/t140201-c536-bgpos-00-b-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t140201-c536-bgpos-01-b-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t140201-c537-bgfxps-00-c-ag-expected.png:
  • platform/qt-5.0-wk2/css2.1/t1503-c522-font-family-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1504-c523-font-style-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1505-c524-font-var-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1506-c525-font-wt-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1507-c526-font-sz-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1507-c526-font-sz-01-b-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1507-c526-font-sz-02-b-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1507-c526-font-sz-03-f-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1508-c527-font-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1508-c527-font-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1508-c527-font-02-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1508-c527-font-03-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1508-c527-font-04-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1508-c527-font-05-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1508-c527-font-06-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1508-c527-font-07-b-expected.png:
  • platform/qt-5.0-wk2/css2.1/t1508-c527-font-08-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1508-c527-font-09-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1508-c527-font-10-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1601-c547-indent-01-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1602-c546-txt-align-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t1606-c562-white-sp-00-b-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-00-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-01-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-02-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-05-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-06-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-07-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-08-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-10-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-11-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-12-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-13-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-14-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-15-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-16-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-17-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-18-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-19-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-20-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-21-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-22-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-23-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-24-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-25-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-26-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-27-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-28-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-29-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-30-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-31-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-32-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-33-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-34-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-35-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-36-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-37-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-38-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-39-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-40-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-41-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-42-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-43-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-44-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-45-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-46-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-47-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-48-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-49-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-50-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-51-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-52-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-53-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-54-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-56-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-57-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-58-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-59-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-60-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-61-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-62-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-63-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-64-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-65-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-66-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-67-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-68-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-69-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-70-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-71-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-72-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-73-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-74-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-75-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-76-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-77-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-78-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-79-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-80-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-81-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-82-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-83-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-84-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-85-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-86-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-87-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-88-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-89-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-90-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-91-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-92-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-93-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-94-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-95-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-96-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-97-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-98-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t170602-bdr-conflct-w-99-d-expected.png: Added.
  • platform/qt-5.0-wk2/css3/css3-modsel-33-expected.png: Added.
  • platform/qt-5.0-wk2/css3/css3-modsel-35-expected.png: Added.
  • platform/qt-5.0-wk2/css3/css3-modsel-36-expected.png: Added.
  • platform/qt-5.0-wk2/css3/css3-modsel-37-expected.png: Added.
  • platform/qt-5.0-wk2/css3/flexbox/button-expected.png: Added.
  • platform/qt-5.0-wk2/css3/flexbox/flexbox-baseline-expected.png: Added.
  • platform/qt-5.0-wk2/css3/flexbox/flexbox-baseline-margins-expected.png: Added.
  • platform/qt-5.0-wk2/css3/flexbox/repaint-expected.png:
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-1-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-10-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-11-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-13-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-14-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-144-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-148-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-149-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-149b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-14b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-14c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-14e-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-15-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-150-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-151-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-152-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-154-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-155-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-155a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-155b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-155c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-155d-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-156-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-156b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-156c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-157-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-158-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-159-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-15b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-16-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-160-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-161-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-166-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-166a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-167-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-167a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-168-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-168a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-169-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-169a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-17-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-176-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-177a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-18-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-181-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-183-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-184a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-184b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-184c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-184d-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-184e-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-184f-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-18a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-18b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-18c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-19-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-19b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-2-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-20-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-21-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-21b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-21c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-22-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-23-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-24-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-25-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-27-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-27a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-27b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-28-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-28b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-29-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-29b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-30-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-31-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-32-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-33-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-34-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-35-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-36-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-37-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-38-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-39a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-39b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-39c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-3a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-4-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-41a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-42-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-43-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-43b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-44-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-44b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-44c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-44d-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-45-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-45b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-45c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-46-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-46b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-5-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-54-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-55-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-56-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-59-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-6-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-60-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-61-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-62-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-63-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-64-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-65-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-66-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-66b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-67-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-68-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-69-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-7-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-72-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-72b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-73-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-73b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-74-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-74b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-75-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-75b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-76-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-76b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-77-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-77b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-78-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-78b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-79-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-7b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-8-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-80-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-81-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-81b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-82-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-83-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-87-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-87b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-88-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-88b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-9-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-90-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-90b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-d1-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-d1b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/html/css3-modsel-d2-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-1-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-10-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-100-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-100b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-101-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-101b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-102-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-102b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-103-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-103b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-104-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-104b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-105-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-105b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-106-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-106b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-107-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-107b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-108-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-108b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-109-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-109b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-11-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-110-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-110b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-111-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-111b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-112-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-112b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-113-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-113b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-114-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-114b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-115-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-115b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-116-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-116b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-117-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-117b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-118-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-119-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-120-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-121-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-122-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-123-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-123b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-124-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-124b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-125-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-126-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-126b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-127-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-127b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-128-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-128b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-129-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-129b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-13-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-130-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-130b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-131-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-132-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-132b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-133-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-133b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-134-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-134b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-135-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-135b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-136-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-136b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-137-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-137b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-138-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-138b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-139-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-139b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-14-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-140-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-140b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-141-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-141b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-142-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-142b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-143-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-143b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-144-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-145a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-145b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-146a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-146b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-147a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-147b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-148-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-149-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-149b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-14b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-14c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-14e-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-150-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-151-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-152-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-153-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-154-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-155-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-155a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-155b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-155c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-155d-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-156-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-156b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-156c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-157-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-158-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-159-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-15b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-16-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-160-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-161-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-166-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-166a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-167-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-167a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-168-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-168a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-169-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-169a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-17-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-172a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-172b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-173a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-173b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-174a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-174b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-176-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-177a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-18-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-181-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-183-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-184a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-184b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-184c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-184d-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-184e-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-184f-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-18a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-18b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-18c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-19-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-19b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-2-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-20-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-21-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-21b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-21c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-22-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-23-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-24-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-25-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-27-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-27a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-27b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-28-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-28b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-29-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-3-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-30-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-31-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-32-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-33-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-34-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-35-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-36-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-37-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-38-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-39-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-39a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-39b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-39c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-3a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-4-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-41-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-41a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-42-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-42a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-43-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-43b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-44-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-44b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-44c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-44d-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-45-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-45b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-45c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-46-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-46b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-47-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-48-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-49-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-5-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-50-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-51-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-52-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-53-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-54-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-55-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-56-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-57-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-57b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-59-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-6-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-60-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-61-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-62-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-63-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-64-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-65-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-66-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-66b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-67-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-68-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-69-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-7-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-70-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-72-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-72b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-73-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-73b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-74-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-74b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-75-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-75b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-76-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-76b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-77-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-77b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-78-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-78b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-79-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-7b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-8-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-80-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-81-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-81b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-82-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-82b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-83-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-87-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-87b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-88-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-88b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-9-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-90-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-90b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-91-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-92-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-93-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-94-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-94b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-95-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-96-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-96b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-97-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-97b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-98-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-98b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-99-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-99b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xhtml/css3-modsel-d4-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-1-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-10-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-100-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-100b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-101-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-101b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-102-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-102b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-103-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-103b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-104-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-104b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-105-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-105b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-106-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-106b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-107-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-107b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-108-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-108b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-109-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-109b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-11-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-110-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-110b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-111-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-111b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-112-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-112b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-113-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-113b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-114-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-114b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-115-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-115b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-116-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-116b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-117-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-117b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-118-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-119-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-120-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-121-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-122-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-123-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-123b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-124-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-124b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-125-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-125b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-126-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-126b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-127-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-127b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-128-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-128b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-129-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-129b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-13-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-130-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-130b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-131-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-131b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-132-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-132b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-133-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-133b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-134-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-134b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-135-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-135b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-136-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-136b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-137-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-137b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-138-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-138b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-139-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-139b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-14-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-140-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-140b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-141-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-141b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-142-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-142b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-143-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-143b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-144-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-145a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-145b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-146a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-146b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-147a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-147b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-148-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-149-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-149b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-14b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-14c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-14e-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-15-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-150-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-151-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-152-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-153-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-154-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-155-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-155a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-155b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-155c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-155d-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-156-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-156b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-156c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-157-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-158-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-159-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-15b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-16-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-160-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-161-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-166-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-166a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-167-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-167a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-168-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-168a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-169-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-169a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-17-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-172a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-172b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-173a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-173b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-174a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-174b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-176-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-177a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-18-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-181-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-183-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-184a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-184b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-184c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-184d-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-184e-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-184f-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-18a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-18b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-18c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-19-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-19b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-2-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-20-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-21-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-21b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-21c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-22-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-23-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-24-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-25-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-27-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-27a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-27b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-28-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-28b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-29-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-29b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-3-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-30-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-31-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-32-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-33-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-34-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-35-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-36-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-37-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-38-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-39-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-39a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-39b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-39c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-3a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-4-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-41-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-41a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-42-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-42a-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-43-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-43b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-44-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-44c-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-44d-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-45-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-45b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-46-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-46b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-47-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-48-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-49-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-5-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-50-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-51-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-52-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-53-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-54-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-55-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-56-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-57-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-57b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-59-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-6-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-60-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-61-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-62-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-63-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-64-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-65-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-66-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-66b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-67-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-68-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-69-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-7-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-70-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-72-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-72b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-73-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-73b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-74-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-74b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-75-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-75b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-76-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-76b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-77-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-77b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-78-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-78b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-79-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-7b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-8-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-80-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-81-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-81b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-82-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-82b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-83-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-87-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-87b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-88-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-88b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-9-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-90b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-91-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-92-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-93-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-94-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-94b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-95-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-96-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-96b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-97-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-97b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-98-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-98b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-99-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-99b-expected.png: Added.
  • platform/qt-5.0-wk2/css3/selectors3/xml/css3-modsel-d4-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/4922367-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/5099303-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/5126166-expected.png:
  • platform/qt-5.0-wk2/editing/deleting/5144139-2-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/5206311-1-expected.png:
  • platform/qt-5.0-wk2/editing/deleting/5272440-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/5369009-expected.png:
  • platform/qt-5.0-wk2/editing/deleting/5433862-2-expected.png:
  • platform/qt-5.0-wk2/editing/deleting/5483370-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-3608445-fix-expected.png:
  • platform/qt-5.0-wk2/editing/deleting/delete-3608462-fix-expected.png:
  • platform/qt-5.0-wk2/editing/deleting/delete-3857753-fix-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-3928305-fix-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-and-undo-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-at-paragraph-boundaries-002-expected.png:
  • platform/qt-5.0-wk2/editing/deleting/delete-at-paragraph-boundaries-003-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-at-paragraph-boundaries-006-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-at-paragraph-boundaries-007-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-at-paragraph-boundaries-008-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-at-paragraph-boundaries-009-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-at-paragraph-boundaries-010-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-at-paragraph-boundaries-011-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-002-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-003-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-004-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-005-expected.png:
  • platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-006-expected.png:
  • platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-007-expected.png:
  • platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-008-expected.png:
  • platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-009-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-010-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-011-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-012-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-013-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-014-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-015-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-016-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-017-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-018-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-019-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-020-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-021-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-022-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-023-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-block-merge-contents-024-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-br-001-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-br-002-expected.png:
  • platform/qt-5.0-wk2/editing/deleting/delete-br-003-expected.png:
  • platform/qt-5.0-wk2/editing/deleting/delete-br-004-expected.png:
  • platform/qt-5.0-wk2/editing/deleting/delete-br-005-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-br-006-expected.png:
  • platform/qt-5.0-wk2/editing/deleting/delete-br-007-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-br-013-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-image-001-expected.png:
  • platform/qt-5.0-wk2/editing/deleting/delete-image-002-expected.png:
  • platform/qt-5.0-wk2/editing/deleting/delete-line-001-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-line-002-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-line-003-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-line-004-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-line-005-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-line-006-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-line-007-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-line-008-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-line-009-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-line-010-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-line-011-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-line-012-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-line-013-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-line-014-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-line-015-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-line-016-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-line-017-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-line-end-ws-001-expected.png:
  • platform/qt-5.0-wk2/editing/deleting/delete-line-end-ws-002-expected.png:
  • platform/qt-5.0-wk2/editing/deleting/delete-listitem-001-expected.png:
  • platform/qt-5.0-wk2/editing/deleting/delete-listitem-002-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-ws-fixup-001-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/delete-ws-fixup-002-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/forward-delete-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/list-item-1-expected.png: Added.
  • platform/qt-5.0-wk2/editing/deleting/merge-different-styles-expected.png:
  • platform/qt-5.0-wk2/editing/deleting/merge-endOfParagraph-expected.png: Added.
6:37 AM Changeset in webkit [151221] by ryuan.choi@samsung.com
  • 3 edits in trunk/Source/WebCore

Remove ChromeClient::deviceOrPageScaleFactorChanged
https://bugs.webkit.org/show_bug.cgi?id=117245

Reviewed by Andreas Kling.

It was introduced for chromium at r147357.
But now, there are no ports to use this.

No new tests - no behavior change.

  • page/ChromeClient.h:
  • page/Frame.cpp:

(WebCore::Frame::deviceOrPageScaleFactorChanged):

6:33 AM Changeset in webkit [151220] by commit-queue@webkit.org
  • 5 edits in trunk/Source

[Coordinated Graphics] Prevent a recursive painting in CoordinatedGraphicsLayer
https://bugs.webkit.org/show_bug.cgi?id=117222

Patch by Gwang Yoon Hwang <ryumiel@company100.net> on 2013-06-05
Reviewed by Noam Rosenthal.

CoordinatedGraphicsLayer::flushCompositingState() will cross frame
boundaries if the GraphicsLayers are connected. In this case,
updateContentBuffers will invoke a painting of a sub-frame that causes
flushCompositingState recursively.

Source/WebCore:

To prevent this behavior this patch extracts updateContentBuffers from
flushCompositingState, and places it in
updateContentBuffersIncludeSublayers, which is another tree traveler for
painting.

No new tests, covered by existing tests.

  • platform/graphics/texmap/coordinated/CoordinatedGraphicsLayer.cpp:

(WebCore::CoordinatedGraphicsLayer::flushCompositingStateForThisLayerOnly):
(WebCore::CoordinatedGraphicsLayer::syncPendingStateChangesIncludingSubLayers):
(WebCore::CoordinatedGraphicsLayer::updateContentBuffersIncludingSubLayers):

  • platform/graphics/texmap/coordinated/CoordinatedGraphicsLayer.h:

Source/WebKit2:

To prevent this behavior this patch extracts updateContentBuffers from
flushCompositingState, and places it in
updateContentBuffersIncludeSublayers, which traverses the tree
separately from flushing the state for painting.

No new tests, covered by existing tests.

  • WebProcess/WebPage/CoordinatedGraphics/CoordinatedLayerTreeHost.cpp:

(WebKit::CoordinatedLayerTreeHost::flushPendingLayerChanges):

6:33 AM Changeset in webkit [151219] by dominik.rottsches@intel.com
  • 2 edits in trunk/Tools

Unreviewed name fix after r150662

My firstname got duplicated when fixing bug 116737.

  • Scripts/webkitpy/common/config/contributors.json:
5:49 AM Changeset in webkit [151218] by akling@apple.com
  • 3 edits in trunk/Source/WebCore

Fix some inefficiencies in AnimationController's composite animation map.
<http://webkit.org/b/117248>

Reviewed by Antti Koivisto.

Clean up some small things that were showing up in a window resizing profile (0.4%)

  • page/animation/AnimationControllerPrivate.h:
  • page/animation/AnimationController.cpp:

(WebCore::AnimationControllerPrivate::ensureCompositeAnimation):

Renamed this ensure* to conform to the WebKit Design Patterns, 2013 edition.
Always do a single hash lookup instead of two.

(WebCore::AnimationControllerPrivate::clear):

Use RefPtr<T> for local variables, never PassRefPtr<T>. See WKDP, 2013 ed.

(WebCore::AnimationControllerPrivate::updateAnimationTimerForRenderer):
(WebCore::AnimationControllerPrivate::isRunningAnimationOnRenderer):
(WebCore::AnimationControllerPrivate::isRunningAcceleratedAnimationOnRenderer):
(WebCore::AnimationControllerPrivate::getAnimatedStyleForRenderer):

Peek into m_compositeAnimations through "const CompositeAnimation*" instead
of using RefPtrs. There's no need to hold a reference on the animation while
querying some const method on it.

(WebCore::AnimationControllerPrivate::pauseAnimationAtTime):
(WebCore::AnimationControllerPrivate::pauseTransitionAtTime):
(WebCore::AnimationController::updateAnimations):

Poke into m_compositeAnimations through "CompositeAnimation*" instead of using
RefPtrs. There's no need to hold a reference here either, we can modify the
animations through a raw pointer.

5:37 AM Changeset in webkit [151217] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

Web Inspector: Clear button doesn't clean Memory graph in Overview pane.
https://bugs.webkit.org/show_bug.cgi?id=112429

Patch by Roland Takacs <rtakacs@inf.u-szeged.hu> on 2013-06-05
Reviewed by Noam Rosenthal.

There is an early return from TimelineMemoryOverview.update() when
record array is empty. Thats why if you click onto the clear button,
the canvas won't be updated.
Moved this "return condition" after the canvas size definition
because we need to know the canvas size for refreshing.
Overridden TimelineOverviewBase's reset function to clear
HeapSizeLabels' content.

  • inspector/front-end/TimelineOverviewPane.js:

(WebInspector.TimelineMemoryOverview.prototype.reset):
(WebInspector.TimelineMemoryOverview.prototype.update):

5:34 AM Changeset in webkit [151216] by rakuco@webkit.org
  • 2 edits in trunk/Tools

Use WEBKITOUTPUTDIR if WEBKIT_OUTPUTDIR is not present.
https://bugs.webkit.org/show_bug.cgi?id=117244

Reviewed by Daniel Bates.

Fixed a regression introduced by r151196: not only does webkit.org
still mention WEBKITOUTPUTDIR instead of WEBKIT_OUTPUTDIR, but the
infrastructure used by ports such as GTK+ and EFL also use on it for
things such as jhbuild.

While everything is not fully transitioned to WEBKIT_OUTPUTDIR, read
both environment variables.

  • Scripts/webkitdirs.pm:

(determineBaseProductDir):

5:26 AM Changeset in webkit [151215] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

[GTK] Forwarding headers not generated for incremental build
https://bugs.webkit.org/show_bug.cgi?id=117198

Patch by Wojciech Bielawski <w.bielawski@samsung.com> on 2013-06-05
Reviewed by Carlos Garcia Campos.

  • WebKitTestRunner/GNUmakefile.am: libTestRunnerInjectedBundle added to dependencies.
5:04 AM Changeset in webkit [151214] by commit-queue@webkit.org
  • 7 edits in trunk/Source

[Coordinated Graphics] Rename client classes for CoordinatedImageBacking and UpdateAtlas.
https://bugs.webkit.org/show_bug.cgi?id=111948

Patch by Gwang Yoon Hwang <ryumiel@company100.net> on 2013-06-05
Reviewed by Noam Rosenthal.

This patch renames CoordinatedImageBacking::Coordinator to
CoordinatedImageBacking::Client, and UpdateAtlasClient to
UpdateAtlas::Client for naming consistency and clarification.

No new tests, covered by existing tests.

Source/WebCore:

  • platform/graphics/texmap/coordinated/CoordinatedImageBacking.cpp:

(WebCore::CoordinatedImageBacking::create):
(WebCore::CoordinatedImageBacking::CoordinatedImageBacking):
(WebCore::CoordinatedImageBacking::removeHost):
(WebCore::CoordinatedImageBacking::update):
(WebCore::CoordinatedImageBacking::clearContentsTimerFired):

  • platform/graphics/texmap/coordinated/CoordinatedImageBacking.h:
  • platform/graphics/texmap/coordinated/UpdateAtlas.cpp:

(WebCore::UpdateAtlas::UpdateAtlas):

  • platform/graphics/texmap/coordinated/UpdateAtlas.h:

Source/WebKit2:

  • WebProcess/WebPage/CoordinatedGraphics/CoordinatedLayerTreeHost.h:
4:55 AM Changeset in webkit [151213] by allan.jensen@digia.com
  • 4 edits in trunk/Source

[Qt] Handle Return key without key text
https://bugs.webkit.org/show_bug.cgi?id=117239

Reviewed by Andreas Kling.

Source/WebCore:

Test added to tst_qwebpage.cpp.

  • platform/qt/PlatformKeyboardEventQt.cpp:

(WebCore::keyTextForKeyEvent):

Source/WebKit/qt:

Test for QKeyEvent(Return_Key) without key text.

  • tests/qwebpage/tst_qwebpage.cpp:

(tst_QWebPage::inputMethods):

4:52 AM Changeset in webkit [151212] by commit-queue@webkit.org
  • 15 edits in trunk/Source

Source/WebCore: Coordinated Graphics: Unify messages related object's lifecycles into CoordinatedGraphicsState.
https://bugs.webkit.org/show_bug.cgi?id=111919

Patch by Gwang Yoon Hwang <ryumiel@company100.net> on 2013-06-05
Reviewed by Noam Rosenthal.

CoordinatedLayerTreeHostProxy has several methods, which simply passes
these calls to CoordinatedGraphicsScene.

This patch removes methods in CoordinatedLayerTreeHostProxy just for
message chaining. Instead of that, messages for creation/deletion of objects
(Layers, CustomFilters, UpdateAtlas, and ImageBacking) are unified into
CommitCoordinatedGraphicsState.

And this patch also removes codes for WebCoordinatedSurface in
CoordinatedLayerTreeHost, except for a factory method.
CoordinatedGraphicsArgumentCoders [en|de]codes CoordinatedSurface itself
using WebCoordinatedSurface.

No new tests, covered by existing tests.

  • platform/graphics/texmap/coordinated/CoordinatedGraphicsScene.cpp:

(WebCore::CoordinatedGraphicsScene::syncCustomFilterPrograms):
(WebCore::CoordinatedGraphicsScene::syncUpdateAtlases):
(WebCore::CoordinatedGraphicsScene::syncImageBackings):
(WebCore::CoordinatedGraphicsScene::commitSceneState):

  • platform/graphics/texmap/coordinated/CoordinatedGraphicsScene.h:
  • platform/graphics/texmap/coordinated/CoordinatedGraphicsState.h:
  • platform/graphics/texmap/coordinated/CoordinatedImageBacking.cpp:

(WebCore::CoordinatedImageBacking::update):

  • platform/graphics/texmap/coordinated/CoordinatedImageBacking.h:
  • platform/graphics/texmap/coordinated/UpdateAtlas.cpp:

(WebCore::UpdateAtlas::UpdateAtlas):

  • platform/graphics/texmap/coordinated/UpdateAtlas.h:

Source/WebKit2: [Coordinated Graphics] Unify messages related object's lifecycles into CoordinatedGraphicsState.
https://bugs.webkit.org/show_bug.cgi?id=111919

Patch by Gwang Yoon Hwang <ryumiel@company100.net> on 2013-06-05
Reviewed by Noam Rosenthal.

CoordinatedLayerTreeHostProxy has several methods, which simply passes
these calls to CoordinatedGraphicsScene.

This patch removes methods in CoordinatedLayerTreeHostProxy just for
message chaining. Instead of that, messages for creation/deletion of objects
(Layers, CustomFilters, UpdateAtlas, and ImageBacking) are unified into
CommitCoordinatedGraphicsState.

And this patch also removes codes for WebCoordinatedSurface in
CoordinatedLayerTreeHost, except for a factory method.
CoordinatedGraphicsArgumentCoders [en|de]codes CoordinatedSurface itself
using WebCoordinatedSurface.

No new tests, covered by existing tests.

  • Shared/CoordinatedGraphics/CoordinatedGraphicsArgumentCoders.cpp:

(CoreIPC::encodeCoordinatedSurface):
(CoreIPC::decodeCoordinatedSurface):
(CoreIPC::::encode):
(CoreIPC::::decode):

  • UIProcess/CoordinatedGraphics/CoordinatedLayerTreeHostProxy.cpp:
  • UIProcess/CoordinatedGraphics/CoordinatedLayerTreeHostProxy.h:
  • UIProcess/CoordinatedGraphics/CoordinatedLayerTreeHostProxy.messages.in:
  • WebProcess/WebPage/CoordinatedGraphics/CoordinatedLayerTreeHost.cpp:

(WebKit::CoordinatedLayerTreeHost::flushPendingLayerChanges):
(WebKit::CoordinatedLayerTreeHost::clearPendingStateChanges):
(WebKit::CoordinatedLayerTreeHost::checkCustomFilterProgramProxies):
(WebKit::CoordinatedLayerTreeHost::removeCustomFilterProgramProxy):
(WebKit::CoordinatedLayerTreeHost::detachLayer):
(WebKit::CoordinatedLayerTreeHost::createImageBacking):
(WebKit::CoordinatedLayerTreeHost::updateImageBacking):
(WebKit::CoordinatedLayerTreeHost::clearImageBackingContents):
(WebKit::CoordinatedLayerTreeHost::removeImageBacking):
(WebKit::CoordinatedLayerTreeHost::createGraphicsLayer):
(WebKit::CoordinatedLayerTreeHost::createUpdateAtlas):
(WebKit::CoordinatedLayerTreeHost::removeUpdateAtlas):

  • WebProcess/WebPage/CoordinatedGraphics/CoordinatedLayerTreeHost.h:
4:45 AM Changeset in webkit [151211] by commit-queue@webkit.org
  • 5 edits in trunk/LayoutTests

[EFL] Unreviewed gardening
https://bugs.webkit.org/show_bug.cgi?id=117240

Patch by Michał Pakuła vel Rutka <Michał Pakuła vel Rutka> on 2013-06-05

  • platform/efl/editing/deleting/delete-block-merge-contents-001-expected.txt: Rebaselining after r151140
  • platform/efl/editing/deleting/delete-block-merge-contents-019-expected.txt:
  • platform/efl/editing/deleting/delete-block-merge-contents-020-expected.txt:
  • platform/efl/editing/pasteboard/8145-2-expected.txt:
4:41 AM Changeset in webkit [151210] by akling@apple.com
  • 2 edits in trunk/Source/WebCore

Remove unnecessary null checks in SelectorChecker::checkOne().
<http://webkit.org/b/117243>

Reviewed by Antti Koivisto.

This function was riddled with unnecessary null checks of 'element', despite ASSERT(element)
being the first thing it does.

  • css/SelectorChecker.cpp:

(WebCore::SelectorChecker::checkOne):

4:15 AM Changeset in webkit [151209] by zarvai@inf.u-szeged.hu
  • 113 edits
    41 copies
    354 adds in trunk/LayoutTests

[Qt] Unreviewed gardening. Rebaselining after r151205.

  • platform/qt-5.0-wk2/animations/3d/state-at-end-event-transform-expected.png: Added.
  • platform/qt-5.0-wk2/animations/cross-fade-border-image-source-expected.png: Added.
  • platform/qt-5.0-wk2/animations/cross-fade-list-style-image-expected.png: Added.
  • platform/qt-5.0-wk2/animations/cross-fade-webkit-mask-image-expected.png: Added.
  • platform/qt-5.0-wk2/animations/state-at-end-event-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/animation/state-at-end-event-transform-layer-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/color-matching/image-color-matching-expected.png:
  • platform/qt-5.0-wk2/compositing/compositing-visible-descendant-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/direct-image-compositing-expected.png:
  • platform/qt-5.0-wk2/compositing/generated-content-expected.png:
  • platform/qt-5.0-wk2/compositing/geometry/clipping-foreground-expected.png:
  • platform/qt-5.0-wk2/compositing/geometry/layer-due-to-layer-children-expected.png:
  • platform/qt-5.0-wk2/compositing/geometry/outline-change-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/geometry/partial-layout-update-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/geometry/root-layer-update-expected.png:
  • platform/qt-5.0-wk2/compositing/geometry/transfrom-origin-on-zero-size-layer-expected.png:
  • platform/qt-5.0-wk2/compositing/geometry/video-fixed-scrolling-expected.png:
  • platform/qt-5.0-wk2/compositing/geometry/video-opacity-overlay-expected.png:
  • platform/qt-5.0-wk2/compositing/iframes/composited-iframe-alignment-expected.png:
  • platform/qt-5.0-wk2/compositing/iframes/iframe-copy-on-scroll-expected.png:
  • platform/qt-5.0-wk2/compositing/images/direct-image-background-color-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/masks/direct-image-mask-expected.png:
  • platform/qt-5.0-wk2/compositing/masks/masked-ancestor-expected.png:
  • platform/qt-5.0-wk2/compositing/masks/multiple-masks-expected.png:
  • platform/qt-5.0-wk2/compositing/masks/simple-composited-mask-expected.png:
  • platform/qt-5.0-wk2/compositing/overflow/ancestor-overflow-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/overflow/nested-scrolling-expected.png:
  • platform/qt-5.0-wk2/compositing/overflow/overflow-compositing-descendant-expected.png:
  • platform/qt-5.0-wk2/compositing/overflow/overflow-positioning-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/overflow/overflow-scroll-expected.png:
  • platform/qt-5.0-wk2/compositing/overflow/parent-overflow-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/overflow/remove-overflow-crash2-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/overflow/scroll-ancestor-update-expected.png:
  • platform/qt-5.0-wk2/compositing/overflow/scrollbar-painting-expected.png:
  • platform/qt-5.0-wk2/compositing/reflections/compositing-change-inside-reflection-expected.png:
  • platform/qt-5.0-wk2/compositing/reflections/nested-reflection-mask-change-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/reflections/nested-reflection-transformed-expected.png:
  • platform/qt-5.0-wk2/compositing/reflections/nested-reflection-transformed2-expected.png:
  • platform/qt-5.0-wk2/compositing/reflections/reflection-in-composited-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/reflections/reflection-on-composited-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/reflections/reflection-ordering-expected.png:
  • platform/qt-5.0-wk2/compositing/reflections/reflection-positioning-expected.png:
  • platform/qt-5.0-wk2/compositing/reflections/reflection-positioning2-expected.png:
  • platform/qt-5.0-wk2/compositing/reflections/simple-composited-reflections-expected.png:
  • platform/qt-5.0-wk2/compositing/repaint/become-overlay-composited-layer-expected.png:
  • platform/qt-5.0-wk2/compositing/repaint/composited-document-element-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/repaint/layer-repaint-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/repaint/layer-repaint-rects-expected.png:
  • platform/qt-5.0-wk2/compositing/repaint/opacity-between-absolute-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/repaint/opacity-between-absolute2-expected.png: Added.
  • platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png:
  • platform/qt-5.0-wk2/compositing/self-painting-layers-expected.png:
  • platform/qt-5.0-wk2/compositing/shadows/shadow-drawing-expected.png:
  • platform/qt-5.0-wk2/compositing/sibling-positioning-expected.png:
  • platform/qt-5.0-wk2/compositing/text-on-large-layer-expected.png:
  • platform/qt-5.0-wk2/css1/basic/containment-expected.png:
  • platform/qt-5.0-wk2/css1/basic/contextual_selectors-expected.png: Added.
  • platform/qt-5.0-wk2/css1/basic/grouping-expected.png: Added.
  • platform/qt-5.0-wk2/css1/basic/id_as_selector-expected.png:
  • platform/qt-5.0-wk2/css1/basic/inheritance-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/acid_test-expected.png: Added.
  • platform/qt-5.0-wk2/css1/box_properties/border-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/border_bottom-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/border_bottom_inline-expected.png: Added.
  • platform/qt-5.0-wk2/css1/box_properties/border_bottom_width-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/border_bottom_width_inline-expected.png: Added.
  • platform/qt-5.0-wk2/css1/box_properties/border_color-expected.png: Added.
  • platform/qt-5.0-wk2/css1/box_properties/border_color_inline-expected.png: Added.
  • platform/qt-5.0-wk2/css1/box_properties/border_inline-expected.png: Added.
  • platform/qt-5.0-wk2/css1/box_properties/border_left-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/border_left_inline-expected.png: Added.
  • platform/qt-5.0-wk2/css1/box_properties/border_left_width-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/border_left_width_inline-expected.png: Added.
  • platform/qt-5.0-wk2/css1/box_properties/border_right_inline-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/border_right_width-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/border_right_width_inline-expected.png: Added.
  • platform/qt-5.0-wk2/css1/box_properties/border_style-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/border_style_inline-expected.png: Added.
  • platform/qt-5.0-wk2/css1/box_properties/border_top-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/border_top_inline-expected.png: Added.
  • platform/qt-5.0-wk2/css1/box_properties/border_top_width-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/border_top_width_inline-expected.png: Added.
  • platform/qt-5.0-wk2/css1/box_properties/border_width-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/border_width_inline-expected.png: Added.
  • platform/qt-5.0-wk2/css1/box_properties/clear-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/clear_float-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/float-expected.png: Added.
  • platform/qt-5.0-wk2/css1/box_properties/float_elements_in_series-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/float_margin-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/float_on_text_elements-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/height-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/margin-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/margin_bottom-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/margin_bottom_inline-expected.png: Added.
  • platform/qt-5.0-wk2/css1/box_properties/margin_inline-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/margin_left-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/margin_left_inline-expected.png: Added.
  • platform/qt-5.0-wk2/css1/box_properties/margin_right-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/margin_right_inline-expected.png: Added.
  • platform/qt-5.0-wk2/css1/box_properties/margin_top-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/margin_top_inline-expected.png: Added.
  • platform/qt-5.0-wk2/css1/box_properties/padding-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/padding_bottom-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/padding_bottom_inline-expected.png: Added.
  • platform/qt-5.0-wk2/css1/box_properties/padding_inline-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/padding_left-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/padding_left_inline-expected.png: Added.
  • platform/qt-5.0-wk2/css1/box_properties/padding_right-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/padding_right_inline-expected.png: Added.
  • platform/qt-5.0-wk2/css1/box_properties/padding_top-expected.png:
  • platform/qt-5.0-wk2/css1/box_properties/padding_top_inline-expected.png: Added.
  • platform/qt-5.0-wk2/css1/box_properties/width-expected.png:
  • platform/qt-5.0-wk2/css1/cascade/cascade_order-expected.png:
  • platform/qt-5.0-wk2/css1/cascade/important-expected.png: Added.
  • platform/qt-5.0-wk2/css1/classification/display-expected.png:
  • platform/qt-5.0-wk2/css1/classification/list_style-expected.png: Added.
  • platform/qt-5.0-wk2/css1/classification/list_style_image-expected.png: Added.
  • platform/qt-5.0-wk2/css1/classification/list_style_position-expected.png: Added.
  • platform/qt-5.0-wk2/css1/classification/list_style_type-expected.png:
  • platform/qt-5.0-wk2/css1/classification/white_space-expected.png:
  • platform/qt-5.0-wk2/css1/color_and_background/background-expected.png:
  • platform/qt-5.0-wk2/css1/color_and_background/background_attachment-expected.png:
  • platform/qt-5.0-wk2/css1/color_and_background/background_color-expected.png: Added.
  • platform/qt-5.0-wk2/css1/color_and_background/background_image-expected.png: Added.
  • platform/qt-5.0-wk2/css1/color_and_background/background_position-expected.png:
  • platform/qt-5.0-wk2/css1/color_and_background/background_repeat-expected.png:
  • platform/qt-5.0-wk2/css1/color_and_background/color-expected.png: Added.
  • platform/qt-5.0-wk2/css1/conformance/forward_compatible_parsing-expected.png:
  • platform/qt-5.0-wk2/css1/font_properties/font-expected.png:
  • platform/qt-5.0-wk2/css1/font_properties/font_family-expected.png:
  • platform/qt-5.0-wk2/css1/font_properties/font_size-expected.png:
  • platform/qt-5.0-wk2/css1/font_properties/font_style-expected.png: Added.
  • platform/qt-5.0-wk2/css1/font_properties/font_variant-expected.png: Added.
  • platform/qt-5.0-wk2/css1/font_properties/font_weight-expected.png:
  • platform/qt-5.0-wk2/css1/formatting_model/canvas-expected.png: Added.
  • platform/qt-5.0-wk2/css1/formatting_model/floating_elements-expected.png:
  • platform/qt-5.0-wk2/css1/formatting_model/height_of_lines-expected.png:
  • platform/qt-5.0-wk2/css1/formatting_model/horizontal_formatting-expected.png:
  • platform/qt-5.0-wk2/css1/formatting_model/inline_elements-expected.png:
  • platform/qt-5.0-wk2/css1/formatting_model/replaced_elements-expected.png:
  • platform/qt-5.0-wk2/css1/formatting_model/vertical_formatting-expected.png:
  • platform/qt-5.0-wk2/css1/pseudo/anchor-expected.png:
  • platform/qt-5.0-wk2/css1/pseudo/firstletter-expected.png:
  • platform/qt-5.0-wk2/css1/pseudo/firstline-expected.png:
  • platform/qt-5.0-wk2/css1/pseudo/multiple_pseudo_elements-expected.png:
  • platform/qt-5.0-wk2/css1/pseudo/pseudo_elements_in_selectors-expected.png: Added.
  • platform/qt-5.0-wk2/css1/text_properties/letter_spacing-expected.png:
  • platform/qt-5.0-wk2/css1/text_properties/line_height-expected.png:
  • platform/qt-5.0-wk2/css1/text_properties/text_align-expected.png: Added.
  • platform/qt-5.0-wk2/css1/text_properties/text_decoration-expected.png:
  • platform/qt-5.0-wk2/css1/text_properties/text_indent-expected.png:
  • platform/qt-5.0-wk2/css1/text_properties/text_transform-expected.png:
  • platform/qt-5.0-wk2/css1/text_properties/vertical_align-expected.png:
  • platform/qt-5.0-wk2/css1/text_properties/word_spacing-expected.png:
  • platform/qt-5.0-wk2/css1/units/color_units-expected.png:
  • platform/qt-5.0-wk2/css1/units/length_units-expected.png:
  • platform/qt-5.0-wk2/css1/units/percentage_units-expected.png: Added.
  • platform/qt-5.0-wk2/css1/units/urls-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-height-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-height-003-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-height-004-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-height-005-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-height-006-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-height-007-expected.png:
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-height-008-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-height-009-expected.png:
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-height-010-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-height-011-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-height-012-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-max-height-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-max-height-003-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-max-height-004-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-max-height-005-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-max-height-006-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-max-height-007-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-max-height-008-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-max-height-009-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-max-height-011-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-max-height-012-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-width-015-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-width-017-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-width-018-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-width-019-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-width-020-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-width-021-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-width-022-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-width-023-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-non-replaced-width-024-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-002-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-003-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-005-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-007-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-008-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-009-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-010-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-011-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-012-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-014-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-016-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-017-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-018-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-019-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-021-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-023-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-024-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-025-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-026-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-028-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-029-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-030-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-031-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-032-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-033-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-height-035-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-006-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-008-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-013-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-020-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-022-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-027-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-029-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-034-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-036-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-041-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-043-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-048-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-050-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-055-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-057-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-062-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-064-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-069-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-071-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/absolute-replaced-width-076-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/background-intrinsic-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/background-intrinsic-002-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/background-intrinsic-004-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/background-intrinsic-005-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/20110323/background-intrinsic-006-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/background-intrinsic-007-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/background-intrinsic-008-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/background-intrinsic-009-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-002-expected.png:
  • platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-003-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-004-expected.png:
  • platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-007-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-008-expected.png:
  • platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-009-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-010-expected.png:
  • platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-012-expected.png:
  • platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-013-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-014-expected.png:
  • platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-015-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-height-016-expected.png:
  • platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-width-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-width-002-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-width-003-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-width-004-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-width-005-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-width-006-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/block-non-replaced-width-008-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/block-replaced-height-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/block-replaced-height-002-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/20110323/block-replaced-height-003-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/block-replaced-height-004-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/block-replaced-height-005-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/block-replaced-height-007-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/block-replaced-width-006-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/border-conflict-style-079-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/border-conflict-style-088-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/border-spacing-applies-to-015-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/c543-txt-decor-000-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/empty-inline-001-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/20110323/empty-inline-002-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/empty-inline-003-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/float-non-replaced-height-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/float-non-replaced-width-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/float-non-replaced-width-002-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/float-non-replaced-width-003-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/float-non-replaced-width-004-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/float-non-replaced-width-005-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/float-non-replaced-width-007-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/float-non-replaced-width-008-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/float-non-replaced-width-009-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/float-non-replaced-width-010-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/float-non-replaced-width-011-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/float-non-replaced-width-012-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/float-replaced-height-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/float-replaced-height-002-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/20110323/float-replaced-height-003-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/float-replaced-height-004-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/float-replaced-height-005-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/float-replaced-height-007-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/float-replaced-width-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/float-replaced-width-002-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/float-replaced-width-003-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/float-replaced-width-004-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/float-replaced-width-005-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/float-replaced-width-006-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/float-replaced-width-011-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/floating-replaced-height-008-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/height-width-inline-table-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/height-width-table-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-block-non-replaced-height-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-block-non-replaced-height-002-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-block-non-replaced-width-003-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-block-non-replaced-width-004-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-block-replaced-height-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-block-replaced-height-002-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-block-replaced-height-003-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-block-replaced-height-004-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-block-replaced-height-005-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-block-replaced-height-007-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-block-replaced-height-008-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-block-replaced-width-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-block-replaced-width-006-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-non-replaced-width-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-non-replaced-width-002-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-height-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-height-002-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-height-003-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-height-004-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-height-005-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-height-008-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-width-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-width-006-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-width-011-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-width-012-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-width-013-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-width-014-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-replaced-width-015-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/inline-table-001-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-002-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-003-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-004-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-005-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-006-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-008-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-009-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-010-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-012-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-013-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-014-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/margin-applies-to-015-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/outline-color-applies-to-008-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/replaced-elements-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/replaced-intrinsic-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/replaced-intrinsic-002-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/replaced-intrinsic-003-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/replaced-intrinsic-004-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/20110323/replaced-intrinsic-ratio-001-expected.png:
  • platform/qt-5.0-wk2/css2.1/20110323/replaced-min-max-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/table-caption-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/table-caption-002-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/table-caption-horizontal-alignment-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/table-caption-margins-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/table-caption-optional-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/table-caption-optional-002-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/table-height-algorithm-023-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/table-height-algorithm-024-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/width-non-replaced-inline-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/20110323/width-replaced-element-001-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t010403-shand-border-00-c-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t010403-shand-font-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t010403-shand-font-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t010403-shand-font-02-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t010403-shand-font-03-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040102-keywords-00-b-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t040102-keywords-01-b-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t040103-case-00-b-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t040103-case-01-c-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t040103-escapes-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040103-escapes-01-b-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t040103-escapes-02-d-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040103-escapes-03-b-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t040103-escapes-04-b-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t040103-escapes-07-b-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t040103-escapes-08-b-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t040103-ident-00-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040103-ident-01-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040103-ident-02-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040103-ident-03-c-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t040103-ident-04-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040103-ident-05-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040103-ident-06-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040103-ident-07-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040103-ident-08-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040103-ident-09-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040103-ident-10-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040103-ident-11-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040103-ident-12-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040103-ident-13-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040105-import-10-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040109-c17-comments-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040109-c17-comments-01-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0402-c71-fwd-parsing-00-f-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0402-c71-fwd-parsing-01-f-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0402-c71-fwd-parsing-02-f-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0402-c71-fwd-parsing-03-f-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0402-c71-fwd-parsing-04-f-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t040302-c61-ex-len-00-b-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040302-c61-phys-len-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040302-c61-rel-len-00-b-ag-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t040303-c62-percent-00-b-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040304-c64-uri-00-a-g-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040306-c63-color-00-b-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t040306-syntax-01-f-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t050201-c12-grouping-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0505-c16-descendant-00-e-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0505-c16-descendant-01-e-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t050803-c14-classes-00-e-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0509-c15-ids-00-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0509-c15-ids-01-e-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0511-c21-pseud-anch-00-e-i-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0511-c21-pseud-link-00-e-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0511-c21-pseud-link-01-e-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0511-c21-pseud-link-02-e-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0511-c21-pseud-link-03-e-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t051103-c21-activ-ln-00-e-i-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t051103-c21-focus-ln-00-e-i-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t051103-c21-hover-ln-00-e-i-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t051103-dom-hover-01-c-io-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t051103-dom-hover-02-c-io-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t051201-c23-first-line-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t051202-c26-psudo-nest-00-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0602-c13-inh-underlin-00-e-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0602-c13-inheritance-00-e-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0602-inherit-bdr-pad-b-00-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0603-c11-import-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t060401-c32-cascading-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t060402-c31-important-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t060403-c21-pseu-cls-00-e-i-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t060403-c21-pseu-id-00-e-i-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t0801-c412-hz-box-00-b-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0803-c5502-mrgn-r-02-c-expected.png:
  • platform/qt-5.0-wk2/css2.1/t0803-c5502-mrgn-r-03-c-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0803-c5504-mrgn-l-02-c-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t0803-c5504-mrgn-l-03-c-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t0803-c5505-imrgn-00-a-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0803-c5505-mrgn-00-b-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0803-c5505-mrgn-02-c-expected.png:
  • platform/qt-5.0-wk2/css2.1/t080301-c411-vt-mrgn-00-b-expected.png:
  • platform/qt-5.0-wk2/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0804-c5507-padn-r-00-c-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0804-c5507-padn-r-02-f-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0804-c5509-padn-l-00-b-ag-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t0804-c5509-padn-l-02-f-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0804-c5509-padn-l-03-f-g-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0804-c5510-ipadn-00-b-ag-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0804-c5510-padn-02-f-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5511-brdr-tw-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5511-brdr-tw-02-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5511-brdr-tw-03-b-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5512-brdr-rw-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5512-brdr-rw-02-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5512-brdr-rw-03-b-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t0805-c5513-brdr-bw-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5513-brdr-bw-01-b-g-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t0805-c5513-brdr-bw-02-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5513-brdr-bw-03-b-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t0805-c5513-ibrdr-bw-00-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5514-brdr-lw-00-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5514-brdr-lw-01-b-g-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5514-brdr-lw-02-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5514-brdr-lw-03-b-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5514-ibrdr-lw-00-a-expected.png: Copied from LayoutTests/platform/qt-5.0-wk2/compositing/rtl/rtl-overflow-invalidation-expected.png.
  • platform/qt-5.0-wk2/css2.1/t0805-c5515-brdr-w-00-a-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5515-brdr-w-01-b-g-expected.png: Added.
  • platform/qt-5.0-wk2/css2.1/t0805-c5515-brdr-w-02-b-expected.png: Added.
4:08 AM Changeset in webkit [151208] by abecsi@webkit.org
  • 3 edits in trunk/Tools

[Qt][WK2] Fix layout testing with Qt 5.1
https://bugs.webkit.org/show_bug.cgi?id=117203

Reviewed by Jocelyn Turcotte.

With Qt 5.1 synchronous requests via QNetworkAccessManager do not
go into loading state but directly call handler functions for
finished state instead of relying on a connection.
Our wrapper QQuickView uses a data URI scheme to create the root
item for testing which results in a synchronous request when loading
the QML data, therefore the state of the QQuickWindow immediately
becomes Ready.
Since the final initialization of the root item depended on the
emission of QQuickView::statusChanged(QQuickView::Ready) we ended
up with a partially initialized wrapper window, thus most of our
layout tests were failing.
For compatibility with pre-5.1 Qt versions keep the old behaviour
in case the WrapperWindow is not ready in the constructor yet.

  • WebKitTestRunner/qt/PlatformWebViewQt.cpp:

(WTR::WrapperWindow::WrapperWindow):

  • TestWebKitAPI/qt/PlatformWebViewQt.cpp:

(TestWebKitAPI::WrapperWindow::WrapperWindow):

3:52 AM WebKitIDL edited by Christophe Dumez
Remove [OmitConstructor] as it was obsoleted by [NoInterfaceObject] (diff)
3:46 AM Changeset in webkit [151207] by Christophe Dumez
  • 66 edits in trunk/Source/WebCore

Merge [NoInterfaceObject] and [OmitConstructor] extended attributes
https://bugs.webkit.org/show_bug.cgi?id=115853

Reviewed by Geoffrey Garen.

Remove [OmitConstructor] extended attribute as it is overlapping with
the standard [NoInterfaceObject] Web IDL extended attribute.

Having [NoInterfaceObject] extended attribute on an interface now
implies that its constructor is omitted (i.e. not generated).

No new tests, no behavior change.

  • Modules/geolocation/Coordinates.idl:
  • Modules/geolocation/Geolocation.idl:
  • Modules/geolocation/Geoposition.idl:
  • Modules/notifications/Notification.idl:
  • Modules/notifications/NotificationCenter.idl:
  • Modules/quota/StorageInfo.idl:
  • Modules/quota/StorageQuota.idl:
  • Modules/webdatabase/Database.idl:
  • Modules/webdatabase/DatabaseSync.idl:
  • Modules/webdatabase/SQLError.idl:
  • Modules/webdatabase/SQLResultSet.idl:
  • Modules/webdatabase/SQLResultSetRowList.idl:
  • Modules/webdatabase/SQLTransaction.idl:
  • Modules/webdatabase/SQLTransactionSync.idl:
  • bindings/scripts/CodeGeneratorJS.pm:

(GenerateHeader):
(GenerateAttributesHashTable):
(GenerateImplementation):

  • bindings/scripts/IDLAttributes.txt:
  • css/CSSUnknownRule.idl:
  • css/MediaQueryListListener.idl:
  • dom/EventListener.idl:
  • dom/EventTarget.idl:
  • html/MicroDataItemValue.idl:
  • html/ValidityState.idl:
  • html/canvas/EXTDrawBuffers.idl:
  • html/canvas/EXTTextureFilterAnisotropic.idl:
  • html/canvas/OESElementIndexUint.idl:
  • html/canvas/OESStandardDerivatives.idl:
  • html/canvas/OESTextureFloat.idl:
  • html/canvas/OESTextureHalfFloat.idl:
  • html/canvas/OESVertexArrayObject.idl:
  • html/canvas/WebGLCompressedTextureATC.idl:
  • html/canvas/WebGLCompressedTexturePVRTC.idl:
  • html/canvas/WebGLCompressedTextureS3TC.idl:
  • html/canvas/WebGLContextAttributes.idl:
  • html/canvas/WebGLDebugRendererInfo.idl:
  • html/canvas/WebGLDebugShaders.idl:
  • html/canvas/WebGLDepthTexture.idl:
  • html/canvas/WebGLLoseContext.idl:
  • inspector/JavaScriptCallFrame.idl:
  • inspector/ScriptProfile.idl:
  • inspector/ScriptProfileNode.idl:
  • loader/appcache/DOMApplicationCache.idl:
  • page/AbstractView.idl:
  • page/Console.idl:
  • page/Crypto.idl:
  • page/PerformanceEntryList.idl:
  • page/WorkerNavigator.idl:
  • page/make_settings.pl:

(generateInternalSettingsIdlFile):

  • svg/ElementTimeControl.idl:
  • svg/SVGAnimationElement.idl:
  • svg/SVGExternalResourcesRequired.idl:
  • svg/SVGFitToViewBox.idl:
  • svg/SVGLangSpace.idl:
  • svg/SVGLocatable.idl:
  • svg/SVGTests.idl:
  • svg/SVGTransformable.idl:
  • svg/SVGURIReference.idl:
  • testing/InternalSettings.idl:
  • testing/Internals.idl:
  • testing/MallocStatistics.idl:
  • testing/MemoryInfo.idl:
  • testing/TypeConversions.idl:
  • workers/DedicatedWorkerContext.idl:
  • workers/SharedWorkerContext.idl:
  • workers/WorkerContext.idl:
  • xml/XPathNSResolver.idl:
3:28 AM WK2-EFLTextCheckerApiTutorial edited by Dariusz Frankiewicz
(diff)
3:09 AM Changeset in webkit [151206] by zandobersek@gmail.com
  • 2 edits in trunk/Source/WebKit

Unreviewed. Attempting a build fix for the AppleWin port after r151199.

  • WebKit.vcxproj/WebKitExportGenerator/WebKitExports.def.in: Export the required symbol.
2:29 AM Changeset in webkit [151205] by allan.jensen@digia.com
  • 2 edits in trunk/Source/WebCore

[Qt] Font::shouldUseSmoothing() has fake dependency on Qt 5.1
https://bugs.webkit.org/show_bug.cgi?id=117195

Reviewed by Jocelyn Turcotte.

Remove the fake dependency on Qt 5.1 so we may rebase the layout tests
before switching to Qt 5.1

  • platform/graphics/qt/FontPlatformDataQt.cpp:

(WebCore::FontPlatformData::FontPlatformData):

2:19 AM Changeset in webkit [151204] by mihnea@adobe.com
  • 4 edits
    2 adds in trunk

[CSSRegions] Respect renderer creation constraints when element is part of named flow
https://bugs.webkit.org/show_bug.cgi?id=116790

Reviewed by David Hyatt.

Source/WebCore:

Before adding a child to a named flow, we have to make sure that the rules for
creation are properly checked.

Test: fast/regions/br-content-node-crash.xhtml

  • rendering/RenderNamedFlowThread.cpp:

(WebCore::RenderNamedFlowThread::isChildAllowed):
Call isChildAllowed on the original parent renderer, before reparenting to
named flow.

  • rendering/RenderNamedFlowThread.h:

LayoutTests:

The test needs to be xhtml so that br element, child of frame set, remains
child of the frame set when the document is parsed.

  • fast/regions/br-content-node-crash-expected.txt: Added.
  • fast/regions/br-content-node-crash.xhtml: Added.
2:17 AM Changeset in webkit [151203] by Philippe Normand
  • 3 edits in trunk/Source/WebCore

Unreviewed, GStreamer 0.10 build fix after r151175.

  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp:

(WebCore::MediaPlayerPrivateGStreamerBase::MediaPlayerPrivateGStreamerBase):
(WebCore::MediaPlayerPrivateGStreamerBase::~MediaPlayerPrivateGStreamerBase):
(WebCore::MediaPlayerPrivateGStreamerBase::naturalSize):
(WebCore::MediaPlayerPrivateGStreamerBase::triggerRepaint):
(WebCore::MediaPlayerPrivateGStreamerBase::paint):

  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.h:
1:19 AM Changeset in webkit [151202] by mihnea@adobe.com
  • 5 edits
    2 adds
    15 deletes in trunk

[CSS Regions] REGRESSION Incorrect layer clipping inside flow thread
https://bugs.webkit.org/show_bug.cgi?id=117074

Reviewed by David Hyatt.

Source/WebCore:

Function RenderBox::mapLocalToContainer was adapted for elements inside flow threads to convert
elements coordinates to RenderView coordinates, passing through the region in which the elements
were flowed (https://bugs.webkit.org/show_bug.cgi?id=66641).

The fix for https://bugs.webkit.org/show_bug.cgi?id=76486 modified RenderLayer::calculateClipRects and replaced
convertToLayerCoords with localToContainerPoint, which further calls mapLocalToContainer.

However, for elements inside the flow thread, which acts as a root layer for its collected children, we do not want
to get the offset in RenderView coordinates but rather in flow thread coordinates (and still take transforms into
account). This patch modifies RenderBox::mapLocalToContainer so that it stops at flow thread boundary when the passed
repaintContainer is the flow thread. The flow thread is the container for repaint for elements inside it, as seen from
RenderObject::containerForRepaint.

No new tests, converted overflow-size-change-with-stacking-context and overflow-size-change-with-stacking-context-rtl
into ref tests so that the we do not rely on pixel tests in the future.

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::mapLocalToContainer):

LayoutTests:

Convert overflow-size-change-with-stacking-context and overflow-size-change-with-stacking-context-rtl
to ref tests.

  • fast/regions/overflow-size-change-with-stacking-context-expected.html: Added.
  • fast/regions/overflow-size-change-with-stacking-context-rtl-expected.html: Added.
  • fast/regions/overflow-size-change-with-stacking-context-rtl.html:
  • fast/regions/overflow-size-change-with-stacking-context.html:
  • platform/efl/fast/regions/overflow-size-change-with-stacking-context-expected.png: Removed.
  • platform/efl/fast/regions/overflow-size-change-with-stacking-context-expected.txt: Removed.
  • platform/efl/fast/regions/overflow-size-change-with-stacking-context-rtl-expected.png: Removed.
  • platform/efl/fast/regions/overflow-size-change-with-stacking-context-rtl-expected.txt: Removed.
  • platform/gtk/fast/regions/overflow-size-change-with-stacking-context-expected.png: Removed.
  • platform/gtk/fast/regions/overflow-size-change-with-stacking-context-expected.txt: Removed.
  • platform/gtk/fast/regions/overflow-size-change-with-stacking-context-rtl-expected.png: Removed.
  • platform/gtk/fast/regions/overflow-size-change-with-stacking-context-rtl-expected.txt: Removed.
  • platform/mac/fast/regions/overflow-size-change-with-stacking-context-expected.png: Removed.
  • platform/mac/fast/regions/overflow-size-change-with-stacking-context-expected.txt: Removed.
  • platform/mac/fast/regions/overflow-size-change-with-stacking-context-rtl-expected.png: Removed.
  • platform/mac/fast/regions/overflow-size-change-with-stacking-context-rtl-expected.txt: Removed.
  • platform/qt/fast/regions/overflow-size-change-with-stacking-context-expected.txt: Removed.
  • platform/qt/fast/regions/overflow-size-change-with-stacking-context-rtl-expected.png: Removed.
  • platform/qt/fast/regions/overflow-size-change-with-stacking-context-rtl-expected.txt: Removed.
1:08 AM Changeset in webkit [151201] by commit-queue@webkit.org
  • 5 edits in trunk/Tools

Bad value in tests counter at new-run-webkit-tests
in --debug-rwt-logging mode
https://bugs.webkit.org/show_bug.cgi?id=116858

Patch by Dariusz Frankiewicz <Dariusz Frankiewicz> on 2013-06-05
Reviewed by Dirk Pranke.

Fix by moving counter incrementation, from after printing line,
to before printing. Also changed variable name.

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

(LayoutTestRunner.run_tests):

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

(FakePrinter):

  • Scripts/webkitpy/layout_tests/views/printing.py:

(Printer.init):
(Printer._test_status_line):
(Printer.print_started_test):
(Printer.print_finished_test):

  • Scripts/webkitpy/test/printer.py:

(Printer.init):
(Printer.print_finished_test):
(Printer._test_line):
(Printer.print_result):

1:02 AM Changeset in webkit [151200] by Christophe Dumez
  • 9 edits in trunk

Remove [NoInterfaceObject] from TreeWalker
https://bugs.webkit.org/show_bug.cgi?id=117225

Reviewed by Kentaro Hara.

Source/WebCore:

Remove [NoInterfaceObject] IDL extended attribute from TreeWalker interface
to match Firefox's behavior and the specification:
http://www.w3.org/TR/DOM-Level-2-Traversal-Range/traversal.html#Traversal-TreeWalker

No new tests, already covered by existing tests.

  • dom/TreeWalker.idl:

LayoutTests:

Rebaseline fast/js/global-constructors-attributes.html and fast/dom/dom-constructors.html
now that a TreeWalker property is exposed on the global Window object.

  • fast/dom/dom-constructors-expected.txt:
  • fast/js/global-constructors-attributes-expected.txt:
  • platform/efl/fast/js/global-constructors-attributes-expected.txt:
  • platform/gtk/fast/js/global-constructors-attributes-expected.txt:
  • platform/mac-lion/fast/js/global-constructors-attributes-expected.txt:
  • platform/qt/fast/js/global-constructors-attributes-expected.txt:
12:08 AM Changeset in webkit [151199] by zandobersek@gmail.com
  • 40 edits
    4 adds
    4 deletes in trunk

Move MemoryInfo under window.internals
https://bugs.webkit.org/show_bug.cgi?id=117197

Reviewed by Ryosuke Niwa.

.:

  • Source/autotools/symbols.filter: Export the required symbol.

PerformanceTests:

  • resources/runner.js: Remove the setMemoryEnabled call, it's not required anymore as the memory

info is now accessed through window.internals and doesn't need the setting to be enabled to work.

Source/WebCore:

The MemoryInfo interface is not a subject of any specification and should not be exposed
to the Web. It's still used by the performance tests so it is moved under the testing
internals, accessible through window.internals.memoryInfo.

The jsHeapSizeLimit attribute is removed from the MemoryInfo interface as that value was
only usable when using the V8 bindings which are not supported anymore. A small fast/harness
test is also provided to check that the MemoryInfo object is accessible through window.internals.

Test: fast/harness/memoryinfo-object.html

  • CMakeLists.txt:
  • DerivedSources.cpp:
  • DerivedSources.make:
  • DerivedSources.pri:
  • GNUmakefile.list.am:
  • Target.pri:
  • UseJSC.cmake:
  • WebCore.exp.in:
  • WebCore.order:
  • WebCore.vcxproj/WebCore.vcxproj:
  • WebCore.vcxproj/WebCore.vcxproj.filters:
  • WebCore.vcxproj/WebCoreTestSupport.vcxproj:
  • WebCore.vcxproj/WebCoreTestSupport.vcxproj.filters:
  • WebCore.xcodeproj/project.pbxproj:
  • bindings/gobject/GNUmakefile.am: Remove the GObject bindings targets for MemoryInfo.
  • bindings/js/JSBindingsAllInOne.cpp: Remove the JSMemoryInfo.h and MemoryInfo.h inclusion.
  • bindings/js/JSMemoryInfoCustom.cpp: Removed.
  • bindings/js/ScriptGCEvent.cpp: Remove the ENABLE(INSPECTOR) guards.

(WebCore::ScriptGCEvent::getHeapSize): Remove the jsHeapSizeLimit assignment.

  • bindings/js/ScriptGCEvent.h: Remove the ENABLE(INSPECTOR) guards.

(WebCore::HeapInfo::HeapInfo): Remove the jsHeapSizeLimit member.

  • page/Console.cpp: Remove the Console::memory method.
  • page/Console.h: Ditto.
  • page/Console.idl: Remove the window.console.memory attribute.
  • page/MemoryInfo.cpp: Removed.
  • page/Performance.cpp: Remove the Performance::memory method.
  • page/Performance.h: Ditto.
  • page/Performance.idl: Remove the window.performance.memory attribute.
  • testing/Internals.cpp:

(WebCore::Internals::memoryInfo): Return a MemoryInfo object upon invoking.

  • testing/Internals.h: Declare the Internals::memoryInfo method.
  • testing/Internals.idl: Expose the window.internals.memoryInfo operation.
  • testing/MemoryInfo.h: Renamed from Source/WebCore/page/MemoryInfo.h.

(WebCore::MemoryInfo::create): Return a new RefPtr-wrapped MemoryInfo object.
(WebCore::MemoryInfo::usedJSHeapSize): Return the value of the equally-named HeapInfo member.
(WebCore::MemoryInfo::totalJSHeapSize): Ditto.
(WebCore::MemoryInfo::MemoryInfo): Acquire the current heap info upon construction.

  • testing/MemoryInfo.idl: Renamed from Source/WebCore/page/MemoryInfo.idl.

The jsHeapSizeLimit attribute is removed.

Tools:

  • GNUmakefile.am: Add the testing/MemoryInfo.(h|idl) files and the generated targets to

the Automake build

  • Scripts/webkitperl/filter-build-webkit_unittest/shouldIgnoreLine_unittests.pl: List the

testing/MemoryInfo.idl file instead of page/MemoryInfo.idl.

LayoutTests:

Remove window.performance.memory property listings from the baselines, the object was moved
under window.internals. The latter is tested throug the new fast/harness test.

  • fast/dom/Window/window-properties-performance-expected.txt:
  • fast/harness/memoryinfo-object-expected.txt: Added.
  • fast/harness/memoryinfo-object.html: Added.
  • platform/efl/fast/dom/Window/window-properties-performance-expected.txt:
  • platform/gtk/fast/dom/Window/window-properties-performance-expected.txt:
  • platform/qt/fast/dom/Window/window-properties-performance-expected.txt:
Note: See TracTimeline for information about the timeline view.