Timeline



Mar 7, 2012:

11:46 PM HackingGtk edited by Carlos Garcia Campos
Update lik to api ref (diff)
11:34 PM Changeset in webkit [110150] by abarth@webkit.org
  • 2 edits in trunk/Source/WebCore

ContainerNode::insertedIntoDocument and removedFromDocument use weak iteration patterns
https://bugs.webkit.org/show_bug.cgi?id=80569

Reviewed by Ryosuke Niwa.

This patch moves ContainerNode::insertedIntoDocument and
removedFromDocument to using a better iteration pattern in which we
collect all the nodes we're planning to iterate into a vector and then
iterate over them.

  • dom/ContainerNode.cpp:

(WebCore::ContainerNode::insertedIntoDocument):
(WebCore::ContainerNode::removedFromDocument):

11:08 PM WebKitGTK/1.8.x edited by Martin Robinson
(diff)
10:55 PM Changeset in webkit [110149] by fischman@chromium.org
  • 4 edits in trunk/Source

[Chromium] Allow CCLayerTreeHost::context() to be called even with the threaded compositor enabled.
https://bugs.webkit.org/show_bug.cgi?id=80565

Reviewed by James Robinson.

This gets triggered by the video HW decode+render path when threaded compositor is enabled
(https://chromiumcodereview.appspot.com/9639005/)

No new tests.

  • platform/graphics/chromium/cc/CCLayerTreeHost.cpp:

(WebCore::CCLayerTreeHost::context):

10:48 PM Changeset in webkit [110148] by mikelawther@chromium.org
  • 16 edits in trunk

CSS3 calc: mixed absolute/percentages work for width, height, margin and padding
https://bugs.webkit.org/show_bug.cgi?id=79621

Reviewed by Andreas Kling.

Source/WebCore:

ApplyPropertyLength in CSSStyleApplyPropery now handles mixed absolute/percentage
length expressions. All property handlers using this template now work with
mixed expressions.

This patch adds a new expression evaluator in CalculationValue.cpp. This is because
Length.[cpp|h] (in platform) cannot refer to CSSCalculationValue.[cpp|h] (in css)
due to layering restrictions.

Lengths can be copied, and so the expressions are stored in a hashmap, and only their
ids are copied along with Length. The expressions are RefCounted, and will get
cleaned up when the last referring Length is destructed.

  • WebCore.exp.in:
  • css/CSSCalculationValue.cpp:

(WebCore::CSSCalcPrimitiveValue::toCalcValue):
(CSSCalcPrimitiveValue):
(WebCore::CSSCalcBinaryOperation::toCalcValue):
(CSSCalcBinaryOperation):

  • css/CSSCalculationValue.h:

(WebCore):
(CSSCalcExpressionNode):
(CSSCalcValue):
(WebCore::CSSCalcValue::toCalcValue):

  • css/CSSPrimitiveValue.cpp:

(WebCore::CSSPrimitiveValue::CSSPrimitiveValue):

  • css/CSSStyleApplyProperty.cpp:

(WebCore::ApplyPropertyLength::applyValue):

  • css/CSSStyleSelector.cpp:

(WebCore::CSSStyleSelector::collectMatchingRulesForList):

  • css/CSSStyleSelector.h:

(CSSStyleSelector):

  • platform/CalculationValue.cpp:

(WebCore::CalcExpressionBinaryOperation::evaluate):
(WebCore):
(WebCore::CalculationValue::create):
(WebCore::CalculationValue::evaluate):

  • platform/CalculationValue.h:

(CalcExpressionNode):
(WebCore::CalcExpressionNode::~CalcExpressionNode):
(WebCore):
(CalculationValue):
(WebCore::CalculationValue::CalculationValue):
(CalcExpressionNumber):
(WebCore::CalcExpressionNumber::CalcExpressionNumber):
(WebCore::CalcExpressionNumber::evaluate):
(CalcExpressionLength):
(WebCore::CalcExpressionLength::CalcExpressionLength):
(WebCore::CalcExpressionLength::evaluate):
(CalcExpressionBinaryOperation):
(WebCore::CalcExpressionBinaryOperation::CalcExpressionBinaryOperation):

  • platform/Length.cpp:

(WebCore):
(WebCore::Length::~Length):
(CalculationValueHandleMap):
(WebCore::CalculationValueHandleMap::CalculationValueHandleMap):
(WebCore::CalculationValueHandleMap::insert):
(WebCore::CalculationValueHandleMap::remove):
(WebCore::CalculationValueHandleMap::get):
(WebCore::calcHandles):
(WebCore::Length::Length):
(WebCore::Length::calculationValue):
(WebCore::Length::calculatedValue):
(WebCore::Length::calculatedMinValue):
(WebCore::Length::calculatedFloatValue):
(WebCore::Length::incrementCalculatedRef):
(WebCore::Length::decrementCalculatedRef):
(WebCore::Length::nonNanCalculatedValue):

  • platform/Length.h:

(Length):
(WebCore::Length::Length):
(WebCore::Length::operator=):
(WebCore::Length::operator*=):
(WebCore::Length::value):
(WebCore::Length::setValue):
(WebCore::Length::calcValue):
(WebCore::Length::calcMinValue):
(WebCore::Length::calcFloatValue):
(WebCore::Length::isZero):
(WebCore::Length::isPositive):
(WebCore::Length::isNegative):
(WebCore::Length::isPercent):
(WebCore::Length::isSpecified):
(WebCore::Length::isCalculated):
(WebCore::Length::initFromLength):
(WebCore::Length::calculationHandle):

LayoutTests:

  • css3/calc/margin-expected.txt:
  • css3/calc/padding-expected.txt:
  • css3/calc/simple-calcs-expected.txt:
10:15 PM Changeset in webkit [110147] by commit-queue@webkit.org
  • 2 edits in trunk/Source/JavaScriptCore

[Qt] Fix the MIPS/SH4 build after r109834
https://bugs.webkit.org/show_bug.cgi?id=80492

Patch by Chao-yng Fu <fu@mips.com> on 2012-03-07
Reviewed by Oliver Hunt.

Implement three-argument branch(Add,Sub)32.

  • assembler/MacroAssemblerMIPS.h:

(JSC::MacroAssemblerMIPS::add32):
(MacroAssemblerMIPS):
(JSC::MacroAssemblerMIPS::sub32):
(JSC::MacroAssemblerMIPS::branchAdd32):
(JSC::MacroAssemblerMIPS::branchSub32):

10:06 PM Changeset in webkit [110146] by Martin Robinson
  • 5 edits in releases/WebKitGTK/webkit-1.8/Source/WebKit2

Merging r109881

9:31 PM Changeset in webkit [110145] by tkent@chromium.org
  • 2 edits in trunk/Source/WebCore

Do not refer to resutlsButtonElement and cancelButtonElement to compute paddings of search popups
https://bugs.webkit.org/show_bug.cgi?id=80564

Reviewed by Hajime Morita.

We'd like to reduce dependency of resultsButtonElement and
cancelButtonElement from RenderTextControlSingleLine.

No behavior change.

  • rendering/RenderTextControlSingleLine.cpp:

(WebCore::RenderTextControlSingleLine::clientPaddingLeft):
Use the left position of innerBlockElement, instead of the width of resultsButtonElement.
They are equivalent.
(WebCore::RenderTextControlSingleLine::clientPaddingRight):
Use <the container width - right position of innerBlockElement>,
instead of the width of the cancelButtonElement. They are
equivalent.

8:49 PM Changeset in webkit [110144] by mikelawther@chromium.org
  • 2 edits in trunk/Source/WebCore

use DEFINE_STATIC_LOCAL on Lengths to avoid exit time destructors
https://bugs.webkit.org/show_bug.cgi?id=80561

Reviewed by Eric Seidel.

This is in preparation for http://wkb.ug/79621 where a destructor is added to Length.

No new tests as this is not a behaviour change.

  • css/CSSStyleApplyProperty.cpp:

(WebCore::ApplyPropertyPageSize::getPageSizeFromName):

8:37 PM Changeset in webkit [110143] by ukai@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed. update chromium test expectations.

  • platform/chromium/test_expectations.txt:
8:27 PM Changeset in webkit [110142] by rniwa@webkit.org
  • 6 edits in trunk

Turn Runs class into a proper model to implement incremental JSON update
https://bugs.webkit.org/show_bug.cgi?id=80364

Reviewed by Hajime Morita.

Move Runs from json_generators.py to models.py and turn it into a proper Model.

Now most JSON responses are held by Runs objects instead of PersistentCache.
Added some tests around update_or_insert and json_by_ids to test PersistentCache-like
behavior but there should be no user-visible behavioral differences.

  • Websites/webkit-perf.appspot.com/controller.py:

(RunsUpdateHandler.post):
(CachedRunsHandler.get):
(RunsChartHandler.post):

  • Websites/webkit-perf.appspot.com/json_generators.py:

(ManifestJSONGenerator.value):

  • Websites/webkit-perf.appspot.com/json_generators_unittest.py:

(ManifestJSONGeneratorTest.test_value_two_tests):

  • Websites/webkit-perf.appspot.com/models.py:

(Test):
(Runs):
(Runs._generate_runs):
(Runs._entry_from_build_and_result):
(Runs._key_name):
(Runs.update_or_insert):
(Runs.json_by_ids):
(Runs.to_json):
(Runs.chart_params):

  • Websites/webkit-perf.appspot.com/models_unittest.py:

(RunsTest):
(RunsTest.setUp):
(RunsTest._create_results):
(RunsTest.test_generate_runs):
(RunsTest.test_update_or_insert):
(RunsTest.test_json_by_ids):
(RunsTest.test_to_json_without_results):
(RunsTest.test_to_json_with_results):
(RunsTest._assert_entry):
(RunsTest.test_run_from_build_and_result):
(RunsTest.test_run_from_build_and_result.create_build):
(RunsTest.test_chart_params_with_value):
(RunsTest.test_chart_params_with_value.split_as_int):

8:21 PM Changeset in webkit [110141] by ukai@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed. update chromium test expecation.

  • platform/chromium/test_expectations.txt:
8:16 PM Changeset in webkit [110140] by inferno@chromium.org
  • 1 edit in branches/chromium/963/Source/WebCore/dom/ContainerNode.cpp

Merge 110139 - ContainerNode::willRemove uses a weak iteration pattern
https://bugs.webkit.org/show_bug.cgi?id=80530

Reviewed by Ryosuke Niwa.

This patch moves ContainerNode::willRemove to using a better iteration
pattern in which we collect all the nodes we're planning to iterate
into a vector and then iterate over them.

  • dom/ContainerNode.cpp:

(WebCore::ContainerNode::willRemove):

TBR=abarth@webkit.org
Review URL: https://chromiumcodereview.appspot.com/9641008

8:08 PM Changeset in webkit [110139] by abarth@webkit.org
  • 2 edits in trunk/Source/WebCore

ContainerNode::willRemove uses a weak iteration pattern
https://bugs.webkit.org/show_bug.cgi?id=80530

Reviewed by Ryosuke Niwa.

This patch moves ContainerNode::willRemove to using a better iteration
pattern in which we collect all the nodes we're planning to iterate
into a vector and then iterate over them.

  • dom/ContainerNode.cpp:

(WebCore::ContainerNode::willRemove):

8:04 PM Changeset in webkit [110138] by commit-queue@webkit.org
  • 8 edits in trunk/Source/JavaScriptCore

Unreviewed, rolling out r110127.
http://trac.webkit.org/changeset/110127
https://bugs.webkit.org/show_bug.cgi?id=80562

compile failed on AppleWin (Requested by ukai on #webkit).

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

  • heap/Heap.cpp:

(JSC::Heap::collectAllGarbage):

  • heap/Heap.h:

(JSC):
(Heap):

  • runtime/Executable.cpp:

(JSC::FunctionExecutable::FunctionExecutable):
(JSC::FunctionExecutable::finalize):

  • runtime/Executable.h:

(FunctionExecutable):
(JSC::FunctionExecutable::create):

  • runtime/JSGlobalData.cpp:

(WTF):
(Recompiler):
(WTF::Recompiler::operator()):
(JSC::JSGlobalData::recompileAllJSFunctions):
(JSC):

  • runtime/JSGlobalData.h:

(JSGlobalData):

  • runtime/JSGlobalObject.cpp:

(JSC::DynamicGlobalObjectScope::DynamicGlobalObjectScope):

8:02 PM Changeset in webkit [110137] by haraken@chromium.org
  • 6 edits in trunk/Source/WebCore

[V8][Performance] Optimize V8 bindings for HTMLElement.classList,
Element.dataset and Node.attributes
https://bugs.webkit.org/show_bug.cgi?id=80376

Reviewed by Adam Barth.

This patch improves the performance of HTMLElement.classList, Element.dataset
and Node.attributes by 6.4 times, 7.1 times and 10.9 times, respectively.

Previously, a 'hiddenReferenceName' string was allocated on v8::Handle and
created every time the DOM attribute is accessed, in spite of the fact that
the 'hiddenReferenceName' string is static.

This patch moves the 'hiddenReferenceName' string to v8::Persistent and makes it static.
Also, this patch removes 'if (!elementValue.IsEmpty() && elementValue->IsObject())',
since if 'element' exists, it is guaranteed that 'elementValue' is not empty
and is an Object.

Performance tests: https://bugs.webkit.org/attachment.cgi?id=130283

AppleWebKit/JavaScriptCore:
div.classList : 382ms
div.classList.foo = 123 : 335ms
div.dataset : 403ms
div.dataset.foo = 123 : 5250ms
div.attributes : 183ms

Chromium/V8 (without this patch):
div.classList : 9140ms
div.classList.foo = 123 : 9086ms
div.dataset : 9930ms
div.dataset.foo = 123 : 49698ms
div.attributes : 13489ms

Chromium/V8 (with this patch):
div.classList : 1435ms
div.classList.foo = 123 : 1470ms
div.dataset : 1400ms
div.dataset.foo = 123 : 30396ms
div.attributes : 1242ms

No tests. No change in behavior.

  • bindings/v8/custom/V8DOMStringMapCustom.cpp: Modified as described above.

(WebCore::toV8):

  • bindings/v8/custom/V8DOMTokenListCustom.cpp: Ditto.

(WebCore::toV8):

  • bindings/v8/custom/V8NamedNodeMapCustom.cpp: Ditto.

(WebCore::toV8):

  • bindings/v8/V8HiddenPropertyName.cpp: Defined a hidden property name string statically

to optimize the macro.
(WebCore):
(WebCore::V8HiddenPropertyName::hiddenReferenceName):

  • bindings/v8/V8HiddenPropertyName.h: Modified to switch two prefixes "WebCore::HiddenProperty::"

and "WebCore::HiddenReference::", depending on whether a given name represents a hidden property
or a hidden reference.
(WebCore):
(V8HiddenPropertyName):

7:33 PM Changeset in webkit [110136] by Michael Nordman
  • 1 edit in trunk/Source/WebCore/bindings/generic/ActiveDOMCallback.cpp

Unreviewed build fix

7:31 PM Changeset in webkit [110135] by tkent@chromium.org
  • 12 edits in trunk/Source/WebCore

Add RenderBoxModelObject::marginWidth() and marginHeight()
https://bugs.webkit.org/show_bug.cgi?id=80556

Reviewed by Kentaro Hara.

They make some code shorter.

No behavior change.

  • rendering/RenderBoxModelObject.h:

(WebCore::RenderBoxModelObject::marginHeight): Added.
(WebCore::RenderBoxModelObject::marginWidth): Added.

  • inspector/DOMNodeHighlighter.cpp: Use marginHeight() and/or marginWidth().
  • rendering/RenderBlock.h:

(WebCore::RenderBlock::FloatWithRect::FloatWithRect): ditto.

  • rendering/RenderBlockLineLayout.cpp:

(WebCore::RenderBlock::checkFloatsInCleanLine): ditto.

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::repaintLayerRectsForImage): ditto.

  • rendering/RenderDeprecatedFlexibleBox.cpp:

(WebCore::RenderDeprecatedFlexibleBox::layoutHorizontalBox): ditto.
(WebCore::RenderDeprecatedFlexibleBox::layoutVerticalBox): ditto.

  • rendering/RenderFlexibleBox.cpp:

(WebCore::RenderFlexibleBox::crossAxisMarginExtentForChild): ditto.
(WebCore::RenderFlexibleBox::computeNextFlexLine): ditto.

  • rendering/RenderInline.cpp:

(WebCore::RenderInline::culledInlineAbsoluteRects): ditto.
(WebCore::RenderInline::culledInlineAbsoluteQuads): ditto.
(WebCore::RenderInline::culledInlineBoundingBox): ditto.

  • rendering/RenderScrollbar.cpp:

(WebCore::RenderScrollbar::trackPieceRectWithMargins): ditto.

  • rendering/RenderTextControl.cpp:

(WebCore::RenderTextControl::computeLogicalHeight): ditto.

  • rendering/RenderTextControlSingleLine.cpp:

(WebCore::RenderTextControlSingleLine::computeControlHeight): ditto.

7:15 PM Changeset in webkit [110134] by commit-queue@webkit.org
  • 2 edits in trunk/Source/JavaScriptCore

The end atom of the marked block considered to filter invalid cells
https://bugs.webkit.org/show_bug.cgi?id=79191

Patch by Hojong Han <hojong.han@samsung.com> on 2012-03-07
Reviewed by Geoffrey Garen.

Register file could have stale pointers beyond the end atom of marked block.
Those pointers can weasel out of filtering in-middle-of-cell pointer.

  • heap/MarkedBlock.h:

(JSC::MarkedBlock::isLiveCell):

7:10 PM Changeset in webkit [110133] by jberlin@webkit.org
  • 12 edits in trunk

Clean Windows build fails after r110033
https://bugs.webkit.org/show_bug.cgi?id=80553

Rubber-stamped by Jon Honeycutt and Eric Seidel.

Source/JavaScriptCore:

Place the implementation files next to their header files in the wtf/text subdirectory.
Use echo -F to tell xcopy that these are files (since there is apparently no flag).

Update the path to those implementation files.

Ditto.

Source/ThirdParty:

  • gtest/msvc/gtest-md.vcproj:

Add the new JavaScriptCore include directory to the include path.

Source/WebCore:

  • WebCore.vcproj/WebCore.vcproj:

Update the expected location of the copied JSC WTF string implementation files.

Tools:

Add the new JavaScriptCore include directory to some more vsprops files.

  • DumpRenderTree/win/ImageDiffCommon.vsprops:
  • WebKitTestRunner/Configurations/InjectedBundleCommon.vsprops:
  • WebKitTestRunner/Configurations/WebKitTestRunnerCommon.vsprops:
7:08 PM Changeset in webkit [110132] by yuqiang.xian@intel.com
  • 7 edits
    2 adds in trunk/Source/JavaScriptCore

Eliminate redundant Phis in DFG
https://bugs.webkit.org/show_bug.cgi?id=80415

Reviewed by Filip Pizlo.

Although this may not have any advantage at current stage, this is towards
minimal SSA to make more high level optimizations (like bug 76770) easier.
We have the choices either to build minimal SSA from scratch or to
keep current simple Phi insertion mechanism and remove the redundancy
in another phase. Currently we choose the latter because the change
could be smaller.

  • CMakeLists.txt:
  • GNUmakefile.list.am:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • Target.pri:
  • dfg/DFGDriver.cpp:

(JSC::DFG::compile):

  • dfg/DFGGraph.cpp:

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

  • dfg/DFGRedundantPhiEliminationPhase.cpp: Added.

(DFG):
(RedundantPhiEliminationPhase):
(JSC::DFG::RedundantPhiEliminationPhase::RedundantPhiEliminationPhase):
(JSC::DFG::RedundantPhiEliminationPhase::run):
(JSC::DFG::RedundantPhiEliminationPhase::getRedundantReplacement):
(JSC::DFG::RedundantPhiEliminationPhase::replacePhiChild):
(JSC::DFG::RedundantPhiEliminationPhase::fixupPhis):
(JSC::DFG::RedundantPhiEliminationPhase::updateBlockVariableInformation):
(JSC::DFG::performRedundantPhiElimination):

  • dfg/DFGRedundantPhiEliminationPhase.h: Added.

(DFG):

7:07 PM Changeset in webkit [110131] by Michael Nordman
  • 13 edits in trunk/Source/WebCore

[Chromium] Don't be so CRASH() happy in the bindings layer.
https://bugs.webkit.org/show_bug.cgi?id=75111

  • change the v8 bindings generated code to check for the 'worker is terminating' condition prior to committing a suicidal CRASH()
  • fixup custom v8 bindings accordingly
  • simplify bindings/generic/ActiveDOMCallback, there is no need for it to support destruction on a different thread

Reviewed by David Levin.

No new tests, existing tests apply.

  • bindings/generic/ActiveDOMCallback.cpp: Simplified in general.

(WebCore):
(WebCore::ActiveDOMCallback::ActiveDOMCallback):
(WebCore::ActiveDOMCallback::~ActiveDOMCallback):
(WebCore::ActiveDOMCallback::canInvokeCallback):
(WebCore::ActiveDOMCallback::isScriptControllerTerminating): New method to avoid CRASH()ing in exceptional conditions in v8 bindings.

  • bindings/generic/ActiveDOMCallback.h: Derive from ContextDestructionObserver.
  • bindings/js/WorkerScriptController.cpp:

(WebCore::WorkerScriptController::scheduleExecutionTermination): Use a mutex to provide a memory barrier.
(WebCore::WorkerScriptController::isExecutionTerminating): New supporting method to avoid CRASH()ing in exceptional conditions.

  • bindings/js/WorkerScriptController.h:

(WorkerScriptController):

  • bindings/scripts/CodeGeneratorV8.pm: Generates v8 bindding code that uses isScriptControllerTerminating to avoid CRASH()ing.

(GenerateCallbackImplementation):

  • bindings/scripts/test/V8/V8TestCallback.cpp: Fixup expected outputs of the modified CodeGeneratorV8.pm script.

(WebCore::V8TestCallback::callbackWithClass1Param):
(WebCore::V8TestCallback::callbackWithClass2Param):
(WebCore::V8TestCallback::callbackWithStringList):

  • bindings/v8/WorkerScriptController.cpp:

(WebCore::WorkerScriptController::WorkerScriptController): Initialize a new data member.
(WebCore::WorkerScriptController::scheduleExecutionTermination): Use a mutex to provide a memory barrier.
(WebCore::WorkerScriptController::isExecutionTerminating): New supporting method to avoid CRASH()ing in exceptional conditions.

  • bindings/v8/WorkerScriptController.h: Add a pair of new data members, bool + mutex.

(WorkerScriptController):

  • bindings/v8/custom/V8CustomSQLStatementErrorCallback.cpp:

(WebCore::V8SQLStatementErrorCallback::handleEvent):

  • bindings/v8/custom/V8MutationCallbackCustom.cpp:

(WebCore::V8MutationCallback::handleEvent):

  • dom/ScriptExecutionContext.cpp:

(WebCore::ScriptExecutionContext::ScriptExecutionContext): Initilaize data members.
(WebCore::ScriptExecutionContext::stopActiveDOMObjects): Set m_activeDOMObjectsAreStopped.

  • dom/ScriptExecutionContext.h: Add m_activeDOMObjectsAreStopped data member.

(WebCore::ScriptExecutionContext::activeDOMObjectsAreStopped): Simple getter.
(ScriptExecutionContext):

7:02 PM Changeset in webkit [110130] by tkent@chromium.org
  • 6 edits
    4 adds in trunk

Remove meaningless code in RenderTextControlSingleLine::preferredContentWidth()
https://bugs.webkit.org/show_bug.cgi?id=80493

Reviewed by Hajime Morita.

Source/WebCore:

preferredContentWidth() added border+padding widths of the search result
button, search cancel button, and speech input button. It makes no sense
to make the intrinsic width wider by only their border+padding width,
not their content width.

The default borders and paddings of these buttons are 0 in all
platforms, and adding border or padding to these elements by page
authors made unreasonable behavior. So we had better remove this
code.

Tests: fast/forms/search/intrinsic-search-width-with-decoration-border-padding.html

fast/speech/intrinsic-input-width-with-speech-border-padding.html

  • rendering/RenderTextControlSingleLine.cpp:

(WebCore::RenderTextControlSingleLine::preferredContentWidth):

Remove the meaningless code.

  • rendering/RenderTextControlSingleLine.h:

(RenderTextControlSingleLine): Remove speechButtonElement(). It's unnecessary.

Source/WebKit/chromium:

  • src/WebInputElement.cpp:

RenderTextControlSingleLine::speechButtonElement() is removed. The
following functions get it from HTMLInputElement.
(WebKit::WebInputElement::getSpeechInputState):
(WebKit::WebInputElement::startSpeechInput):
(WebKit::WebInputElement::stopSpeechInput):

LayoutTests:

Add tests to confirm that borders and paddings for decoration elements
don't affect intrinsic width of <input> elements.

  • fast/forms/search/intrinsic-search-width-with-decoration-border-padding-expected.txt: Added.
  • fast/forms/search/intrinsic-search-width-with-decoration-border-padding.html: Added.
  • fast/speech/intrinsic-input-width-with-speech-border-padding-expected.txt: Added.
  • fast/speech/intrinsic-input-width-with-speech-border-padding.html: Added.
6:50 PM Changeset in webkit [110129] by ukai@chromium.org
  • 16 edits in trunk

Unreviewed, rolling out r110126.
http://trac.webkit.org/changeset/110126
https://bugs.webkit.org/show_bug.cgi?id=80558

compile failed on AppleMac (Requested by ukai on #webkit).

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

Source/WebCore:

  • WebCore.exp.in:
  • css/CSSCalculationValue.cpp:
  • css/CSSCalculationValue.h:

(WebCore):
(CSSCalcExpressionNode):
(CSSCalcValue):

  • css/CSSPrimitiveValue.cpp:

(WebCore::CSSPrimitiveValue::CSSPrimitiveValue):

  • css/CSSStyleApplyProperty.cpp:

(WebCore::ApplyPropertyLength::applyValue):

  • css/CSSStyleSelector.cpp:

(WebCore::CSSStyleSelector::collectMatchingRulesForList):

  • css/CSSStyleSelector.h:
  • platform/CalculationValue.cpp:
  • platform/CalculationValue.h:
  • platform/Length.cpp:

(WebCore::newLengthArray):

  • platform/Length.h:

(WebCore::Length::operator*=):
(WebCore::Length::value):
(WebCore::Length::setValue):
(Length):
(WebCore::Length::calcValue):
(WebCore::Length::calcMinValue):
(WebCore::Length::calcFloatValue):
(WebCore::Length::isZero):
(WebCore::Length::isPositive):
(WebCore::Length::isNegative):
(WebCore::Length::isPercent):
(WebCore::Length::isSpecified):

LayoutTests:

  • css3/calc/margin-expected.txt:
  • css3/calc/padding-expected.txt:
  • css3/calc/simple-calcs-expected.txt:
6:22 PM Changeset in webkit [110128] by caio.oliveira@openbossa.org
  • 3 edits in trunk/Source/WebCore

Make Node::dumpStatistics() work again
https://bugs.webkit.org/show_bug.cgi?id=80327

Reviewed by Ryosuke Niwa.

Update the code in dumpStatistics() to the latest attribute storage changes. Also
move the DUMP_NODE_STATISTICS define here from the Node.cpp, since its also used
by Document.h.

  • dom/Node.cpp:

(WebCore::Node::dumpStatistics): Use more self-describing variable names.

  • dom/Node.h:
6:14 PM Changeset in webkit [110127] by mhahnenberg@apple.com
  • 8 edits in trunk/Source/JavaScriptCore

Refactor recompileAllJSFunctions() to be less expensive
https://bugs.webkit.org/show_bug.cgi?id=80330

Reviewed by Geoffrey Garen.

This change is performance neutral on the JS benchmarks we track. It's mostly to improve page
load performance, which currently does at least a couple full GCs per navigation.

  • heap/Heap.cpp:

(JSC::Heap::discardAllCompiledCode): Rename recompileAllJSFunctions to discardAllCompiledCode
because the function doesn't actually recompile anything (and never did); it simply throws code
away for it to be recompiled later if we determine we should do so.
(JSC):
(JSC::Heap::collectAllGarbage):
(JSC::Heap::addFunctionExecutable): Adds a newly created FunctionExecutable to the Heap's list.
(JSC::Heap::removeFunctionExecutable): Removes the specified FunctionExecutable from the Heap's list.

  • heap/Heap.h:

(JSC):
(Heap):

  • runtime/Executable.cpp: Added next and prev fields to FunctionExecutables so that they can

be used in DoublyLinkedLists.
(JSC::FunctionExecutable::FunctionExecutable):
(JSC::FunctionExecutable::finalize): Removes the FunctionExecutable from the Heap's list.

  • runtime/Executable.h:

(FunctionExecutable):
(JSC::FunctionExecutable::create): Adds the FunctionExecutable to the Heap's list.

  • runtime/JSGlobalData.cpp: Remove recompileAllJSFunctions, as it's the Heap's job to own and manage

the list of FunctionExecutables.

  • runtime/JSGlobalData.h:

(JSGlobalData):

  • runtime/JSGlobalObject.cpp:

(JSC::DynamicGlobalObjectScope::DynamicGlobalObjectScope): Use the new discardAllCompiledCode.

6:12 PM Changeset in webkit [110126] by mikelawther@chromium.org
  • 16 edits in trunk

CSS3 calc: mixed absolute/percentages work for width, height, margin and padding
https://bugs.webkit.org/show_bug.cgi?id=79621

Reviewed by Andreas Kling.

Source/WebCore:

ApplyPropertyLength in CSSStyleApplyPropery now handles mixed absolute/percentage
length expressions. All property handlers using this template now work with
mixed expressions.

This patch adds a new expression evaluator in CalculationValue.cpp. This is because
Length.[cpp|h] (in platform) cannot refer to CSSCalculationValue.[cpp|h] (in css)
due to layering restrictions.

Lengths can be copied, and so the expressions are stored in a hashmap, and only their
ids are copied along with Length. The expressions are RefCounted, and will get
cleaned up when the last referring Length is destructed.

  • WebCore.exp.in:
  • css/CSSCalculationValue.cpp:

(WebCore::CSSCalcPrimitiveValue::toCalcValue):
(CSSCalcPrimitiveValue):
(WebCore::CSSCalcBinaryOperation::toCalcValue):
(CSSCalcBinaryOperation):

  • css/CSSCalculationValue.h:

(WebCore):
(CSSCalcExpressionNode):
(CSSCalcValue):
(WebCore::CSSCalcValue::toCalcValue):

  • css/CSSPrimitiveValue.cpp:

(WebCore::CSSPrimitiveValue::CSSPrimitiveValue):

  • css/CSSStyleApplyProperty.cpp:

(WebCore::ApplyPropertyLength::applyValue):

  • css/CSSStyleSelector.cpp:

(WebCore::CSSStyleSelector::collectMatchingRulesForList):

  • css/CSSStyleSelector.h:

(CSSStyleSelector):

  • platform/CalculationValue.cpp:

(WebCore::CalcExpressionBinaryOperation::evaluate):
(WebCore):
(WebCore::CalculationValue::create):
(WebCore::CalculationValue::evaluate):

  • platform/CalculationValue.h:

(CalcExpressionNode):
(WebCore::CalcExpressionNode::~CalcExpressionNode):
(WebCore):
(CalculationValue):
(WebCore::CalculationValue::CalculationValue):
(CalcExpressionNumber):
(WebCore::CalcExpressionNumber::CalcExpressionNumber):
(WebCore::CalcExpressionNumber::evaluate):
(CalcExpressionLength):
(WebCore::CalcExpressionLength::CalcExpressionLength):
(WebCore::CalcExpressionLength::evaluate):
(CalcExpressionBinaryOperation):
(WebCore::CalcExpressionBinaryOperation::CalcExpressionBinaryOperation):

  • platform/Length.cpp:

(WebCore):
(WebCore::Length::~Length):
(CalculationValueHandleMap):
(WebCore::CalculationValueHandleMap::CalculationValueHandleMap):
(WebCore::CalculationValueHandleMap::insert):
(WebCore::CalculationValueHandleMap::remove):
(WebCore::CalculationValueHandleMap::get):
(WebCore::calcHandles):
(WebCore::Length::Length):
(WebCore::Length::calculationValue):
(WebCore::Length::calculatedValue):
(WebCore::Length::calculatedMinValue):
(WebCore::Length::calculatedFloatValue):
(WebCore::Length::incrementCalculatedRef):
(WebCore::Length::decrementCalculatedRef):
(WebCore::Length::nonNanCalculatedValue):

  • platform/Length.h:

(Length):
(WebCore::Length::Length):
(WebCore::Length::operator=):
(WebCore::Length::operator*=):
(WebCore::Length::value):
(WebCore::Length::setValue):
(WebCore::Length::calcValue):
(WebCore::Length::calcMinValue):
(WebCore::Length::calcFloatValue):
(WebCore::Length::isZero):
(WebCore::Length::isPositive):
(WebCore::Length::isNegative):
(WebCore::Length::isPercent):
(WebCore::Length::isSpecified):
(WebCore::Length::isCalculated):
(WebCore::Length::initFromLength):
(WebCore::Length::calculationHandle):

LayoutTests:

  • css3/calc/margin-expected.txt:
  • css3/calc/padding-expected.txt:
  • css3/calc/simple-calcs-expected.txt:
5:47 PM Changeset in webkit [110125] by eae@chromium.org
  • 7 edits in branches/subpixellayout/Source/WebCore/rendering

Change first/lastLineBoxBaseline to LayoutUnits to be consistent with baseline on branch.

5:45 PM Changeset in webkit [110124] by senorblanco@chromium.org
  • 2 edits in trunk/LayoutTests

[chromium] Unreviewed gardening.

(Leopard, you will be the death of me.)

  • platform/chromium/test_expectations.txt:
5:22 PM Changeset in webkit [110123] by ojan@chromium.org
  • 277 edits
    252 copies
    36 moves
    292 adds
    18 deletes in trunk/LayoutTests

Yet another around of straightforward Chromium Lion rebaselines.

5:07 PM Changeset in webkit [110122] by oliver@apple.com
  • 20 edits in trunk/Source/JavaScriptCore

Further harden 64-bit JIT
https://bugs.webkit.org/show_bug.cgi?id=80457

Reviewed by Filip Pizlo.

This patch implements blinding for ImmPtr. Rather than xor based blinding
we perform randomised pointer rotations in order to avoid the significant
cost in executable memory that would otherwise be necessary (and to avoid
the need for an additional scratch register in some cases).

As with the prior blinding patch there's a moderate amount of noise as we
correct the use of ImmPtr vs. TrustedImmPtr.

  • assembler/AbstractMacroAssembler.h:

(ImmPtr):
(JSC::AbstractMacroAssembler::ImmPtr::asTrustedImmPtr):

  • assembler/MacroAssembler.h:

(MacroAssembler):
(JSC::MacroAssembler::storePtr):
(JSC::MacroAssembler::branchPtr):
(JSC::MacroAssembler::shouldBlind):
(JSC::MacroAssembler::RotatedImmPtr::RotatedImmPtr):
(RotatedImmPtr):
(JSC::MacroAssembler::rotationBlindConstant):
(JSC::MacroAssembler::loadRotationBlindedConstant):
(JSC::MacroAssembler::convertInt32ToDouble):
(JSC::MacroAssembler::move):
(JSC::MacroAssembler::poke):

  • assembler/MacroAssemblerARMv7.h:

(JSC::MacroAssemblerARMv7::storeDouble):
(JSC::MacroAssemblerARMv7::branchAdd32):

  • assembler/MacroAssemblerX86_64.h:

(MacroAssemblerX86_64):
(JSC::MacroAssemblerX86_64::rotateRightPtr):
(JSC::MacroAssemblerX86_64::xorPtr):

  • assembler/X86Assembler.h:

(X86Assembler):
(JSC::X86Assembler::xorq_rm):
(JSC::X86Assembler::rorq_i8r):

  • dfg/DFGCCallHelpers.h:

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

  • dfg/DFGOSRExitCompiler32_64.cpp:

(JSC::DFG::OSRExitCompiler::compileExit):

  • dfg/DFGOSRExitCompiler64.cpp:

(JSC::DFG::OSRExitCompiler::compileExit):

  • dfg/DFGSpeculativeJIT.cpp:

(JSC::DFG::SpeculativeJIT::createOSREntries):

  • dfg/DFGSpeculativeJIT.h:

(JSC::DFG::SpeculativeJIT::silentFillGPR):
(JSC::DFG::SpeculativeJIT::callOperation):
(JSC::DFG::SpeculativeJIT::emitEdgeCode):

  • dfg/DFGSpeculativeJIT32_64.cpp:

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

  • dfg/DFGSpeculativeJIT64.cpp:

(JSC::DFG::SpeculativeJIT::fillInteger):
(JSC::DFG::SpeculativeJIT::fillDouble):
(JSC::DFG::SpeculativeJIT::fillJSValue):
(JSC::DFG::SpeculativeJIT::emitCall):
(JSC::DFG::SpeculativeJIT::compileObjectEquality):
(JSC::DFG::SpeculativeJIT::compileLogicalNot):
(JSC::DFG::SpeculativeJIT::emitBranch):

  • jit/JIT.cpp:

(JSC::JIT::emitOptimizationCheck):

  • jit/JITArithmetic32_64.cpp:

(JSC::JIT::emitSlow_op_post_inc):

  • jit/JITInlineMethods.h:

(JSC::JIT::emitValueProfilingSite):
(JSC::JIT::emitGetVirtualRegister):

  • jit/JITOpcodes.cpp:

(JSC::JIT::emit_op_mov):
(JSC::JIT::emit_op_new_object):
(JSC::JIT::emit_op_strcat):
(JSC::JIT::emit_op_ensure_property_exists):
(JSC::JIT::emit_op_resolve_skip):
(JSC::JIT::emitSlow_op_resolve_global):
(JSC::JIT::emit_op_resolve_with_base):
(JSC::JIT::emit_op_resolve_with_this):
(JSC::JIT::emit_op_jmp_scopes):
(JSC::JIT::emit_op_switch_imm):
(JSC::JIT::emit_op_switch_char):
(JSC::JIT::emit_op_switch_string):
(JSC::JIT::emit_op_throw_reference_error):
(JSC::JIT::emit_op_debug):
(JSC::JIT::emitSlow_op_resolve_global_dynamic):
(JSC::JIT::emit_op_new_array):
(JSC::JIT::emitSlow_op_new_array):
(JSC::JIT::emit_op_new_array_buffer):

  • jit/JITOpcodes32_64.cpp:

(JSC::JIT::emit_op_new_object):
(JSC::JIT::emit_op_strcat):
(JSC::JIT::emit_op_ensure_property_exists):
(JSC::JIT::emit_op_resolve_skip):
(JSC::JIT::emitSlow_op_resolve_global):
(JSC::JIT::emit_op_resolve_with_base):
(JSC::JIT::emit_op_resolve_with_this):
(JSC::JIT::emit_op_jmp_scopes):
(JSC::JIT::emit_op_switch_imm):
(JSC::JIT::emit_op_switch_char):
(JSC::JIT::emit_op_switch_string):

  • jit/JITPropertyAccess32_64.cpp:

(JSC::JIT::emit_op_put_by_index):

  • jit/JITStubCall.h:

(JITStubCall):
(JSC::JITStubCall::addArgument):

4:59 PM Common pixel differences between ports edited by ojan@chromium.org
(diff)
4:20 PM Changeset in webkit [110121] by ojan@chromium.org
  • 236 edits
    206 copies
    92 moves
    207 adds
    15 deletes in trunk/LayoutTests

Another round of straightforward Chromium Lion rebaselines.

4:00 PM Changeset in webkit [110120] by eae@chromium.org
  • 6 edits in trunk/Source/WebCore

Change remaining scroll methods to integers
https://bugs.webkit.org/show_bug.cgi?id=80539

Reviewed by Eric Seidel.

No new tests, no new functionality.

  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::scrollByRecursively):
(WebCore::RenderLayer::scrollToOffset):
(WebCore::RenderLayer::scrollRectToVisible):
(WebCore::RenderLayer::scrollToXOffset):
(WebCore::RenderLayer::scrollToYOffset):
Change scrollTo methods to take integer x and y values as the actual
scrolling is done in increments of full pixels.

(WebCore::cornerStart):
(WebCore::RenderLayer::scrollWidth):
(WebCore::RenderLayer::scrollHeight):
Change scrollWidth/Height to return pixel snapped values and remove
pixelSnapped versions of same as all callers either used snapped the
values or used the pixelSnapped versions of these methods.

  • rendering/RenderListBox.cpp:

(WebCore::RenderListBox::scrollWidth):
Change scrollWidth to return snapped client width.

  • rendering/RenderListBox.h:

Change scrollSize, scrollPosition and setScrollOffset methods to use
integers in accordance with the interface defined by ScrollableArea.

  • rendering/RenderTreeAsText.cpp:

(WebCore::write):

3:57 PM Changeset in webkit [110119] by caio.oliveira@openbossa.org
  • 6 edits in trunk/Source/WebCore

Implement getAttributeNode() in terms of ElementAttributeData instead of NamedNodeMap
https://bugs.webkit.org/show_bug.cgi?id=80541

Reviewed by Ryosuke Niwa.

DOM methods exposed in Element and NamedNodeMap are now implemented in terms of
ElementAttributeData. The difference between them is that Element methods can early
return if there's no attribute storage.

  • dom/Element.cpp:

(WebCore::Element::getAttributeNode):
Removed the manual lowercasing letting our existing mechanism in
ElementAttributeData::getAttributeItemIndex() take care of it. I considered that
this could be an optimization, but testing a few Dromaeo tests (dom-attr,
jslib-attr-jquery, jslib-attr-prototype) the difference isn't significant. It
shouldn't affect correctness either.

(WebCore::Element::getAttributeNodeNS):

  • dom/ElementAttributeData.cpp:
  • dom/ElementAttributeData.h:

(ElementAttributeData):
(WebCore::ElementAttributeData::getAttributeNode):
(WebCore):

  • dom/NamedNodeMap.cpp:

(WebCore::NamedNodeMap::getNamedItem):
(WebCore::NamedNodeMap::getNamedItemNS):

  • dom/NamedNodeMap.h:

(NamedNodeMap):

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

[chromium] Support printing WebGL content in threaded compositor
https://bugs.webkit.org/show_bug.cgi?id=80464

Patch by James Robinson <jamesr@chromium.org> on 2012-03-07
Reviewed by Kenneth Russell.

Do the readback on the WebGL context instead of the compositor's context since we cannot use the latter from the
main thread. Since we're on the WebGL context, we have to be careful to restore any state we change.

Tested printing manually with threaded compositing enabled.

  • platform/graphics/chromium/WebGLLayerChromium.cpp:

(WebCore::WebGLLayerChromium::paintRenderedResultsToCanvas):

  • platform/graphics/chromium/WebGLLayerChromium.h:

(WebGLLayerChromium):

3:34 PM Changeset in webkit [110117] by senorblanco@chromium.org
  • 2 edits in trunk/LayoutTests

[Chromium] Unreviewed gardening.

Another attempt to green up the Mac canaries.

  • platform/chromium/test_expectations.txt:
3:31 PM Changeset in webkit [110116] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/mac

<http://webkit.org/b/80510> Web Inspector crash (iCab)

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2012-03-07
Reviewed by Timothy Hatcher.

  • WebCoreSupport/WebInspectorClient.mm:

(WebInspectorClient::didResizeMainFrame):

3:21 PM Changeset in webkit [110115] by commit-queue@webkit.org
  • 3 edits in trunk/Tools

[NRWT] Fix --platform=qt-5.0 --new-baseline combo
https://bugs.webkit.org/show_bug.cgi?id=72489

Patch by Rafael Brandao <rafael.lobo@openbossa.org> on 2012-03-07
Reviewed by Dirk Pranke.

NRWT: The default platform name for Qt combined with --webkit-test-runner is now
"qt-5.0-wk2" instead of "qt-linux" and that name is now prefered for tests.
--platform will override the platform name and then we'll use it.

ORWT: We check for qt version and use platform name "qt-4.8" if the version is lower
than 5.0.0, and then we choose between "qt-5.0-wk1" and "qt-5.0-wk2". --platform will
override it in the end.

  • Scripts/old-run-webkit-tests:
  • Scripts/webkitpy/layout_tests/port/qt.py:

(QtPort):
(QtPort.determine_full_port_name):
(QtPort.baseline_search_path):

3:13 PM Changeset in webkit [110114] by abarth@webkit.org
  • 4 edits in trunk/Source

Remove #define private public from WebCache.cpp
https://bugs.webkit.org/show_bug.cgi?id=80520

Reviewed by Eric Seidel.

Source/WebCore:

Add some accessors for state used by WebCache.cpp.

  • loader/cache/MemoryCache.h:

(WebCore::MemoryCache::minDeadCapacity):
(WebCore::MemoryCache::maxDeadCapacity):
(WebCore::MemoryCache::capacity):
(WebCore::MemoryCache::liveSize):
(WebCore::MemoryCache::deadSize):
(MemoryCache):

Source/WebKit/chromium:

This patch removes a hack we added long ago when Chromium used a forked
copy of WebKit and editing WebCore caused merge pain. Now that we're
on trunk, we can unwind this hack.

  • src/WebCache.cpp:

(WebKit::WebCache::getUsageStats):

3:01 PM Changeset in webkit [110113] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

[Qt][WK2] MiniBrowser on desktop does not react to click events
https://bugs.webkit.org/show_bug.cgi?id=80314

Patch by Hugo Parente Lima <Hugo Parente Lima> on 2012-03-07
Reviewed by Kenneth Rohde Christiansen.

Do not enable touch mocking on desktop mode.

  • MiniBrowser/qt/MiniBrowserApplication.cpp:

(MiniBrowserApplication::handleUserOptions):

3:01 PM Changeset in webkit [110112] by ojan@chromium.org
  • 248 edits
    230 copies
    29 moves
    294 adds
    18 deletes in trunk/LayoutTests

Another round of straightforward Chromium Lion rebaselines.

  • editing/execCommand/format-block-with-trailing-br-expected.txt: Renamed from LayoutTests/platform/gtk/editing/execCommand/format-block-with-trailing-br-expected.txt.
  • platform/chromium-mac-snowleopard/css2.1/20110323/block-non-replaced-height-013-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/block-non-replaced-height-014-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/block-non-replaced-height-014-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/block-non-replaced-height-015-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/block-non-replaced-height-016-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/block-non-replaced-height-016-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/block-non-replaced-width-001-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/block-non-replaced-width-002-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/block-non-replaced-width-003-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/block-non-replaced-width-004-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/block-non-replaced-width-005-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/block-non-replaced-width-006-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/block-non-replaced-width-007-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/block-non-replaced-width-008-expected.png: Renamed from LayoutTests/platform/chromium/css2.1/20110323/block-non-replaced-width-008-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/block-replaced-height-001-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/block-replaced-height-002-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/block-replaced-height-004-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/block-replaced-height-005-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/block-replaced-height-007-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/block-replaced-width-001-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/block-replaced-width-001-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/dynamic-top-change-001-expected.png: Renamed from LayoutTests/platform/chromium/css2.1/20110323/dynamic-top-change-001-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/dynamic-top-change-002-expected.png: Renamed from LayoutTests/platform/chromium/css2.1/20110323/dynamic-top-change-002-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/dynamic-top-change-003-expected.png: Renamed from LayoutTests/platform/chromium/css2.1/20110323/dynamic-top-change-003-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/dynamic-top-change-004-expected.png: Renamed from LayoutTests/platform/chromium/css2.1/20110323/dynamic-top-change-004-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/empty-inline-001-expected.png: Renamed from LayoutTests/platform/chromium/css2.1/20110323/empty-inline-001-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/empty-inline-002-expected.png: Renamed from LayoutTests/platform/chromium/css2.1/20110323/empty-inline-002-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/empty-inline-003-expected.png: Renamed from LayoutTests/platform/chromium/css2.1/20110323/empty-inline-003-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/float-non-replaced-height-001-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/float-non-replaced-width-001-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/float-non-replaced-width-002-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/float-non-replaced-width-003-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/float-non-replaced-width-004-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/float-non-replaced-width-005-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/float-non-replaced-width-006-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/float-non-replaced-width-006-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/float-non-replaced-width-007-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/float-non-replaced-width-007-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/float-non-replaced-width-008-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/float-non-replaced-width-008-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/float-non-replaced-width-009-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/float-non-replaced-width-009-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/float-non-replaced-width-010-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/float-non-replaced-width-010-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/float-non-replaced-width-011-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/float-non-replaced-width-011-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/float-non-replaced-width-012-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/float-non-replaced-width-012-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/float-replaced-height-001-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/float-replaced-height-002-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/float-replaced-height-004-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/float-replaced-height-005-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/float-replaced-height-007-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/float-replaced-width-006-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/height-width-inline-table-001-expected.png: Renamed from LayoutTests/platform/chromium/css2.1/20110323/height-width-inline-table-001-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/height-width-table-001-expected.png: Renamed from LayoutTests/platform/chromium/css2.1/20110323/height-width-table-001-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-block-non-replaced-height-001-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-block-non-replaced-height-002-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-block-non-replaced-width-001-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-block-non-replaced-width-002-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-block-non-replaced-width-003-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/inline-block-non-replaced-width-003-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-block-non-replaced-width-004-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/inline-block-non-replaced-width-004-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-block-replaced-height-001-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-block-replaced-height-002-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-block-replaced-height-004-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-block-replaced-height-005-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-block-replaced-height-007-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-block-replaced-width-001-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-non-replaced-height-002-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-non-replaced-height-003-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-non-replaced-width-001-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-non-replaced-width-002-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-replaced-height-001-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-replaced-height-002-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-replaced-height-004-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-replaced-height-005-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-replaced-height-007-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-replaced-width-011-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-replaced-width-012-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-replaced-width-013-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-replaced-width-014-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/inline-replaced-width-014-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/inline-replaced-width-015-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/margin-applies-to-001-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/margin-applies-to-001-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/margin-applies-to-002-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/margin-applies-to-002-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/margin-applies-to-003-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/margin-applies-to-003-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/margin-applies-to-004-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/margin-applies-to-004-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/margin-applies-to-005-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/margin-applies-to-005-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/margin-applies-to-006-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/margin-applies-to-006-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/margin-applies-to-007-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/margin-applies-to-007-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/margin-applies-to-008-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/margin-applies-to-008-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/margin-applies-to-009-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/margin-applies-to-009-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/margin-applies-to-010-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/margin-applies-to-010-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/margin-applies-to-012-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/margin-applies-to-012-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/margin-applies-to-013-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/margin-applies-to-013-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/margin-applies-to-014-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/margin-applies-to-014-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/margin-applies-to-015-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/margin-applies-to-015-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/replaced-elements-001-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/replaced-elements-001-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/replaced-intrinsic-001-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/replaced-intrinsic-002-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/replaced-intrinsic-003-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/replaced-intrinsic-003-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/replaced-intrinsic-004-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/replaced-intrinsic-005-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/20110323/replaced-min-max-001-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/replaced-min-max-001-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/table-caption-001-expected.png: Renamed from LayoutTests/platform/chromium/css2.1/20110323/table-caption-001-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/table-caption-horizontal-alignment-001-expected.png: Renamed from LayoutTests/platform/chromium/css2.1/20110323/table-caption-horizontal-alignment-001-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/table-caption-margins-001-expected.png: Renamed from LayoutTests/platform/chromium/css2.1/20110323/table-caption-margins-001-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/table-caption-optional-001-expected.png: Renamed from LayoutTests/platform/chromium/css2.1/20110323/table-caption-optional-001-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/table-caption-optional-002-expected.png: Renamed from LayoutTests/platform/chromium/css2.1/20110323/table-caption-optional-002-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/20110323/width-non-replaced-inline-001-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/20110323/width-non-replaced-inline-001-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t010403-shand-border-00-c-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t010403-shand-font-00-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t010403-shand-font-01-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t010403-shand-font-02-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t010403-shand-font-02-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t010403-shand-font-03-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t010403-shand-font-03-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040102-keywords-00-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040102-keywords-00-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040102-keywords-01-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t040103-case-00-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040103-case-00-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040103-case-01-c-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040103-case-01-c-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040103-escapes-00-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t040103-escapes-01-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040103-escapes-01-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040103-escapes-02-d-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040103-escapes-02-d-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040103-escapes-03-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040103-escapes-03-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040103-escapes-04-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040103-escapes-04-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040103-escapes-05-c-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040103-escapes-05-c-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040103-escapes-06-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040103-escapes-06-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040103-escapes-07-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040103-escapes-07-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040103-escapes-08-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040103-escapes-08-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040103-ident-00-c-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040103-ident-00-c-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040103-ident-01-c-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040103-ident-01-c-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040103-ident-02-c-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040103-ident-02-c-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040103-ident-03-c-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t040103-ident-04-c-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040103-ident-04-c-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040103-ident-05-c-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040103-ident-05-c-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040103-ident-06-c-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040103-ident-06-c-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040103-ident-07-c-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040103-ident-07-c-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040103-ident-08-c-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040103-ident-08-c-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040103-ident-09-c-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040103-ident-09-c-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040103-ident-10-c-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040103-ident-10-c-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040103-ident-11-c-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040103-ident-11-c-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040103-ident-12-c-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040103-ident-12-c-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040103-ident-13-c-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040103-ident-13-c-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040105-atkeyw-00-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040105-atkeyw-00-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040105-atkeyw-01-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040105-atkeyw-01-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040105-atkeyw-02-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040105-atkeyw-02-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040105-atrule-00-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040105-atrule-00-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040105-atrule-01-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040105-atrule-01-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040105-atrule-02-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040105-atrule-02-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040105-atrule-03-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040105-atrule-03-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040105-atrule-04-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040105-atrule-04-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040105-import-00-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040105-import-00-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040105-import-01-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040105-import-01-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040105-import-10-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040105-import-10-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t040109-c17-comments-00-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t040109-c17-comments-00-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t0805-c5521-brdr-l-01-e-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t0805-c5521-brdr-l-01-e-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t0805-c5521-brdr-l-02-e-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t0805-c5521-brdr-l-02-e-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t0805-c5521-ibrdr-l-00-a-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t0805-c5521-ibrdr-l-00-a-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t0805-c5522-brdr-00-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t0805-c5522-brdr-00-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t0805-c5522-brdr-01-b-g-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t0805-c5522-brdr-02-e-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t0805-c5522-ibrdr-00-a-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t0805-c5522-ibrdr-00-a-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c414-flt-00-d-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t0905-c414-flt-00-d-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c414-flt-01-d-g-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c414-flt-02-c-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t0905-c414-flt-02-c-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c414-flt-03-c-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t0905-c414-flt-03-c-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c414-flt-04-c-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t0905-c414-flt-04-c-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c414-flt-fit-00-d-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t0905-c414-flt-fit-00-d-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c414-flt-fit-01-d-g-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t0905-c414-flt-fit-01-d-g-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c414-flt-wrap-00-e-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t0905-c414-flt-wrap-00-e-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c414-flt-wrap-01-d-g-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t0905-c414-flt-wrap-01-d-g-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltblck-00-d-ag-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltblck-01-d-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t0905-c5525-fltblck-01-d-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltcont-00-d-g-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t0905-c5525-fltcont-00-d-g-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c5525-flthw-00-c-g-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltinln-00-c-ag-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltmult-00-d-g-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t0905-c5525-fltmult-00-d-g-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltwidth-03-c-g-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c5526-flthw-00-c-g-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1001-abs-pos-cb-01-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1001-abs-pos-cb-01-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1001-abs-pos-cb-02-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1001-abs-pos-cb-02-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1001-abs-pos-cb-03-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1001-abs-pos-cb-03-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1001-abs-pos-cb-04-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1001-abs-pos-cb-04-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1001-abs-pos-cb-05-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1001-abs-pos-cb-05-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1001-abs-pos-cb-06-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1001-abs-pos-cb-06-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1001-abs-pos-cb-07-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1001-abs-pos-cb-07-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1001-abs-pos-cb-08-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1001-abs-pos-cb-08-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1001-abs-pos-cb-09-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1001-abs-pos-cb-09-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1002-c5523-width-00-b-g-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1002-c5523-width-01-b-g-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1002-c5523-width-02-b-g-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1002-c5523-width-02-b-g-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1004-c43-rpl-bbx-00-d-ag-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1004-c43-rpl-bbx-00-d-ag-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1004-c43-rpl-ibx-00-d-ag-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1004-c43-rpl-ibx-00-d-ag-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1004-c5524-width-00-b-g-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1004-c5524-width-00-b-g-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1005-c5524-width-00-b-g-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1005-c5524-width-01-b-g-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1008-c44-ln-box-00-d-ag-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1008-c44-ln-box-00-d-ag-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1008-c44-ln-box-01-d-ag-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1008-c44-ln-box-01-d-ag-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1008-c44-ln-box-02-d-ag-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1008-c44-ln-box-02-d-ag-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1008-c44-ln-box-03-d-ag-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1008-c44-ln-box-03-d-ag-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-00-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-01-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-02-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-03-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1202-counter-03-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-04-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1202-counter-04-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-04-b-expected.txt: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-05-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-06-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-07-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1202-counter-07-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-08-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-09-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-11-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-12-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-13-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-14-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-15-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-16-f-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-00-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-01-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-02-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-03-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1202-counters-03-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-04-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1202-counters-04-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-04-b-expected.txt: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-05-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-06-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-07-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1202-counters-07-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-11-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-12-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-13-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-14-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-15-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-16-c-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-17-d-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-18-f-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1204-implied-00-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1204-implied-01-c-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1204-implied-02-d-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1204-multiple-00-c-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1204-multiple-01-c-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1204-order-00-c-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1204-order-01-d-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1204-root-e-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1205-c561-list-displ-00-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1205-c561-list-displ-00-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1205-c563-list-type-00-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1205-c563-list-type-00-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1205-c563-list-type-01-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1205-c563-list-type-01-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1205-c564-list-img-00-b-g-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1205-c564-list-img-00-b-g-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1205-c565-list-pos-00-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1205-c565-list-pos-00-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1205-c566-list-stl-00-e-ag-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1205-c566-list-stl-01-c-g-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1401-c531-color-00-a-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1401-c531-color-00-a-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1402-c45-bg-canvas-00-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1402-c45-bg-canvas-00-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1503-c522-font-family-00-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1503-c522-font-family-00-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1504-c523-font-style-00-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1504-c523-font-style-00-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1504-c543-txt-decor-00-d-g-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1504-c543-txt-decor-00-d-g-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1505-c524-font-var-00-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1505-c524-font-var-00-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1506-c525-font-wt-00-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1506-c525-font-wt-00-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1507-c526-font-sz-00-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1507-c526-font-sz-00-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1507-c526-font-sz-01-b-a-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1507-c526-font-sz-01-b-a-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1507-c526-font-sz-02-b-a-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1507-c526-font-sz-02-b-a-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1507-c526-font-sz-03-f-a-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1507-c526-font-sz-03-f-a-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1508-c527-font-00-b-expected.png: Renamed from LayoutTests/platform/chromium-mac-leopard/css2.1/t1508-c527-font-00-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1508-c527-font-01-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1508-c527-font-01-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1508-c527-font-02-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1508-c527-font-02-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1508-c527-font-04-b-expected.png: Renamed from LayoutTests/platform/chromium-mac-leopard/css2.1/t1508-c527-font-04-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1508-c527-font-05-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1508-c527-font-05-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1508-c527-font-05-b-expected.txt: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1508-c527-font-06-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1508-c527-font-06-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1508-c527-font-07-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1508-c527-font-07-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1508-c527-font-08-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1508-c527-font-08-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1508-c527-font-09-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1508-c527-font-09-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1508-c527-font-10-c-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1508-c527-font-10-c-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1508-c527-font-10-c-expected.txt: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1601-c547-indent-00-b-a-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1601-c547-indent-01-d-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1601-c547-indent-01-d-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1602-c43-center-00-d-ag-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1602-c43-center-00-d-ag-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1602-c546-txt-align-00-b-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1602-c546-txt-align-00-b-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1604-c541-word-sp-00-b-a-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1604-c541-word-sp-00-b-a-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1604-c541-word-sp-01-b-a-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1604-c541-word-sp-01-b-a-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1604-c542-letter-sp-00-b-a-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1604-c542-letter-sp-00-b-a-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1604-c542-letter-sp-01-b-a-expected.png: Copied from LayoutTests/platform/chromium-mac/css2.1/t1604-c542-letter-sp-01-b-a-expected.png.
  • platform/chromium-mac-snowleopard/css2.1/t1606-c562-white-sp-00-b-ag-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/deleting/delete-trailing-ws-002-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/deleting/delete-ws-fixup-001-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/deleting/list-item-1-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/deleting/list-item-1-expected.png.
  • platform/chromium-mac-snowleopard/editing/deleting/merge-different-styles-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/deleting/merge-different-styles-expected.png.
  • platform/chromium-mac-snowleopard/editing/deleting/merge-endOfParagraph-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/deleting/merge-endOfParagraph-expected.png.
  • platform/chromium-mac-snowleopard/editing/deleting/merge-into-empty-block-1-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/deleting/merge-into-empty-block-1-expected.png.
  • platform/chromium-mac-snowleopard/editing/deleting/merge-into-empty-block-2-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/deleting/merge-into-empty-block-2-expected.png.
  • platform/chromium-mac-snowleopard/editing/deleting/merge-no-br-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/deleting/merge-no-br-expected.png.
  • platform/chromium-mac-snowleopard/editing/deleting/merge-unrendered-space-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/deleting/merge-unrendered-space-expected.png.
  • platform/chromium-mac-snowleopard/editing/deleting/move-nodes-001-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/deleting/pruning-after-merge-2-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/deleting/pruning-after-merge-2-expected.png.
  • platform/chromium-mac-snowleopard/editing/deleting/smart-delete-003-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/deleting/smart-delete-003-expected.png.
  • platform/chromium-mac-snowleopard/editing/deleting/smart-delete-004-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/deleting/smart-delete-004-expected.png.
  • platform/chromium-mac-snowleopard/editing/deleting/table-cells-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/deleting/table-cells-expected.png.
  • platform/chromium-mac-snowleopard/editing/deleting/type-delete-after-quote-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/deleting/type-delete-after-quote-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/create-list-with-hr-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/create-list-with-hr-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/find-after-replace-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/find-after-replace-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/findString-2-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/findString-2-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/findString-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/findString-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/format-block-with-trailing-br-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/format-block-with-trailing-br-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/indent-empty-root-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/indent-empty-root-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/indent-list-item-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/indent-list-item-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/indent-selection-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/indent-selection-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/insertImage-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/insertImage-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/nsresponder-indent-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/nsresponder-indent-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/nsresponder-outdent-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/nsresponder-outdent-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/paste-1-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/paste-1-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/paste-2-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/paste-2-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/remove-list-from-range-selection-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/remove-list-from-range-selection-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/remove-list-item-1-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/remove-list-item-1-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/4278698-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/4278698-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/4840662-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/4840662-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/4875189-1-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/4875189-1-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/4875189-2-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/4875189-2-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/4959067-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/4959067-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/4960120-1-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/4960120-1-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/4960120-2-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/4960120-2-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/5002441-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/5002441-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/5058163-1-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/5058163-1-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/5058163-2-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/5058163-2-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/5156401-2-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/5156401-2-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/5510537-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/5510537-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/5549929-2-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/5549929-2-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/5549929-3-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/5549929-3-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/6703873-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/6703873-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/before-after-input-element-expected.txt: Added.
  • platform/chromium-mac-snowleopard/editing/inserting/break-blockquote-after-delete-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/break-blockquote-after-delete-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/break-blockquote-after-delete-expected.txt: Added.
  • platform/chromium-mac-snowleopard/editing/inserting/editable-html-element-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/editable-html-element-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/editable-inline-element-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/editable-inline-element-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/edited-whitespace-1-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/edited-whitespace-1-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/insert-at-end-01-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/insert-at-end-01-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/insert-at-end-02-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/insert-at-end-02-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/insert-br-004-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/inserting/insert-br-005-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/inserting/insert-br-007-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/inserting/insert-br-009-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/insert-br-009-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/insert-br-quoted-001-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/insert-br-quoted-001-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/insert-br-quoted-002-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/insert-br-quoted-002-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/insert-br-quoted-003-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/insert-br-quoted-003-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/insert-br-quoted-004-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/insert-br-quoted-004-expected.png.
  • platform/chromium-mac-snowleopard/editing/inserting/insert-br-quoted-005-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/inserting/insert-br-quoted-005-expected.png.
  • platform/chromium-mac-snowleopard/editing/pasteboard/3976872-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/pasteboard/3976872-expected.png.
  • platform/chromium-mac-snowleopard/editing/pasteboard/4076267-2-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/pasteboard/4076267-2-expected.png.
  • platform/chromium-mac-snowleopard/editing/pasteboard/4076267-3-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/pasteboard/4076267-3-expected.png.
  • platform/chromium-mac-snowleopard/editing/pasteboard/4076267-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/pasteboard/4076267-expected.png.
  • platform/chromium-mac-snowleopard/editing/pasteboard/4631972-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/pasteboard/4631972-expected.png.
  • platform/chromium-mac-snowleopard/editing/pasteboard/4641033-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/pasteboard/4641033-expected.png.
  • platform/chromium-mac-snowleopard/editing/pasteboard/4806874-expected.txt: Added.
  • platform/chromium-mac-snowleopard/editing/pasteboard/4944770-2-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/pasteboard/4944770-2-expected.png.
  • platform/chromium-mac-snowleopard/editing/pasteboard/4947130-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/pasteboard/4947130-expected.png.
  • platform/chromium-mac-snowleopard/editing/pasteboard/4989774-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/pasteboard/4989774-expected.png.
  • platform/chromium-mac-snowleopard/editing/pasteboard/5006779-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/pasteboard/5006779-expected.png.
  • platform/chromium-mac-snowleopard/editing/pasteboard/5032095-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/pasteboard/5032095-expected.png.
  • platform/chromium-mac-snowleopard/editing/pasteboard/5071074-2-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/pasteboard/5071074-2-expected.png.
  • platform/chromium-mac-snowleopard/editing/pasteboard/5071074-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/pasteboard/5071074-expected.png.
  • platform/chromium-mac-snowleopard/editing/pasteboard/5075944-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/pasteboard/5075944-expected.png.
  • platform/chromium-mac-snowleopard/editing/pasteboard/5134759-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/pasteboard/5134759-expected.png.
  • platform/chromium-mac-snowleopard/editing/pasteboard/5156401-1-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/pasteboard/5156401-1-expected.png.
  • platform/chromium-mac-snowleopard/editing/pasteboard/5247341-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/pasteboard/5247341-expected.png.
  • platform/chromium-mac-snowleopard/editing/pasteboard/5387578-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/pasteboard/5387578-expected.png.
  • platform/chromium-mac-snowleopard/editing/pasteboard/5478250-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/pasteboard/5478250-expected.png.
  • platform/chromium-mac-snowleopard/editing/pasteboard/5601583-1-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/pasteboard/5601583-1-expected.png.
  • platform/chromium-mac-snowleopard/editing/pasteboard/7955-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/pasteboard/8145-1-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/pasteboard/8145-1-expected.png.
  • platform/chromium-mac-snowleopard/editing/pasteboard/8145-3-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/pasteboard/8145-3-expected.png.
  • platform/chromium-mac-snowleopard/editing/pasteboard/bad-placeholder-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/pasteboard/bad-placeholder-expected.png.
  • platform/chromium-mac-snowleopard/editing/selection/14971-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/selection/14971-expected.png.
  • platform/chromium-mac-snowleopard/editing/selection/3690703-2-expected.txt: Added.
  • platform/chromium-mac-snowleopard/editing/selection/3690703-expected.txt: Added.
  • platform/chromium-mac-snowleopard/editing/selection/3690719-expected.txt: Added.
  • platform/chromium-mac-snowleopard/editing/selection/4397952-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/selection/4397952-expected.png.
  • platform/chromium-mac-snowleopard/editing/selection/4402375-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/selection/4402375-expected.png.
  • platform/chromium-mac-snowleopard/editing/selection/4776665-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/selection/4776665-expected.png.
  • platform/chromium-mac-snowleopard/editing/selection/4818145-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/selection/4818145-expected.png.
  • platform/chromium-mac-snowleopard/editing/selection/4866671-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/selection/4866671-expected.png.
  • platform/chromium-mac-snowleopard/editing/selection/4889598-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/selection/4889598-expected.png.
  • platform/chromium-mac-snowleopard/editing/selection/4895428-2-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/selection/4895428-2-expected.png.
  • platform/chromium-mac-snowleopard/editing/selection/4895428-3-expected.txt: Added.
  • platform/chromium-mac-snowleopard/editing/selection/6476-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/selection/6476-expected.png.
  • platform/chromium-mac-snowleopard/editing/selection/7152-1-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/selection/7152-1-expected.png.
  • platform/chromium-mac-snowleopard/editing/selection/7152-2-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/selection/7152-2-expected.png.
  • platform/chromium-mac-snowleopard/http/tests/loading/simple-subframe-expected.png: Copied from LayoutTests/platform/chromium-mac/http/tests/loading/simple-subframe-expected.png.
  • platform/chromium-mac-snowleopard/http/tests/local/file-url-sent-as-referer-expected.png: Copied from LayoutTests/platform/chromium-mac/http/tests/local/file-url-sent-as-referer-expected.png.
  • platform/chromium-mac/css2.1/20110323/block-non-replaced-height-013-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/block-non-replaced-height-014-expected.png:
  • platform/chromium-mac/css2.1/20110323/block-non-replaced-height-015-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/block-non-replaced-height-016-expected.png:
  • platform/chromium-mac/css2.1/20110323/block-non-replaced-width-001-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/block-non-replaced-width-002-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/block-non-replaced-width-003-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/block-non-replaced-width-004-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/block-non-replaced-width-005-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/block-non-replaced-width-006-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/block-non-replaced-width-007-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/block-non-replaced-width-008-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/block-replaced-height-001-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/block-replaced-height-002-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/block-replaced-height-003-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/block-replaced-height-004-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/block-replaced-height-005-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/block-replaced-height-007-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/block-replaced-width-001-expected.png:
  • platform/chromium-mac/css2.1/20110323/block-replaced-width-006-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/dynamic-top-change-001-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/dynamic-top-change-002-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/dynamic-top-change-003-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/dynamic-top-change-004-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/empty-inline-001-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/empty-inline-002-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/empty-inline-003-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/float-non-replaced-height-001-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/float-non-replaced-width-001-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/float-non-replaced-width-002-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/float-non-replaced-width-003-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/float-non-replaced-width-004-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/float-non-replaced-width-005-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/float-non-replaced-width-006-expected.png:
  • platform/chromium-mac/css2.1/20110323/float-non-replaced-width-007-expected.png:
  • platform/chromium-mac/css2.1/20110323/float-non-replaced-width-008-expected.png:
  • platform/chromium-mac/css2.1/20110323/float-non-replaced-width-009-expected.png:
  • platform/chromium-mac/css2.1/20110323/float-non-replaced-width-010-expected.png:
  • platform/chromium-mac/css2.1/20110323/float-non-replaced-width-011-expected.png:
  • platform/chromium-mac/css2.1/20110323/float-non-replaced-width-012-expected.png:
  • platform/chromium-mac/css2.1/20110323/float-replaced-height-001-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/float-replaced-height-002-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/float-replaced-height-003-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/float-replaced-height-004-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/float-replaced-height-005-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/float-replaced-height-007-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/float-replaced-width-001-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/float-replaced-width-002-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/float-replaced-width-003-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/float-replaced-width-004-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/float-replaced-width-005-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/float-replaced-width-006-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/float-replaced-width-011-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/height-width-inline-table-001-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/height-width-table-001-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-block-non-replaced-height-001-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-block-non-replaced-height-002-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-block-non-replaced-width-001-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-block-non-replaced-width-002-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-block-non-replaced-width-003-expected.png:
  • platform/chromium-mac/css2.1/20110323/inline-block-non-replaced-width-004-expected.png:
  • platform/chromium-mac/css2.1/20110323/inline-block-replaced-height-001-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-block-replaced-height-002-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-block-replaced-height-003-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-block-replaced-height-004-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-block-replaced-height-005-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-block-replaced-height-007-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-block-replaced-width-001-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-block-replaced-width-006-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-non-replaced-height-002-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-non-replaced-height-003-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-non-replaced-width-001-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-non-replaced-width-002-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-replaced-height-001-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-replaced-height-002-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-replaced-height-003-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-replaced-height-004-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-replaced-height-005-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-replaced-height-007-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-replaced-width-001-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-replaced-width-006-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-replaced-width-011-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-replaced-width-012-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-replaced-width-013-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/inline-replaced-width-014-expected.png:
  • platform/chromium-mac/css2.1/20110323/inline-replaced-width-015-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/margin-applies-to-001-expected.png:
  • platform/chromium-mac/css2.1/20110323/margin-applies-to-002-expected.png:
  • platform/chromium-mac/css2.1/20110323/margin-applies-to-003-expected.png:
  • platform/chromium-mac/css2.1/20110323/margin-applies-to-004-expected.png:
  • platform/chromium-mac/css2.1/20110323/margin-applies-to-005-expected.png:
  • platform/chromium-mac/css2.1/20110323/margin-applies-to-006-expected.png:
  • platform/chromium-mac/css2.1/20110323/margin-applies-to-007-expected.png:
  • platform/chromium-mac/css2.1/20110323/margin-applies-to-008-expected.png:
  • platform/chromium-mac/css2.1/20110323/margin-applies-to-009-expected.png:
  • platform/chromium-mac/css2.1/20110323/margin-applies-to-010-expected.png:
  • platform/chromium-mac/css2.1/20110323/margin-applies-to-012-expected.png:
  • platform/chromium-mac/css2.1/20110323/margin-applies-to-013-expected.png:
  • platform/chromium-mac/css2.1/20110323/margin-applies-to-014-expected.png:
  • platform/chromium-mac/css2.1/20110323/margin-applies-to-015-expected.png:
  • platform/chromium-mac/css2.1/20110323/replaced-elements-001-expected.png:
  • platform/chromium-mac/css2.1/20110323/replaced-intrinsic-001-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/replaced-intrinsic-002-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/replaced-intrinsic-003-expected.png:
  • platform/chromium-mac/css2.1/20110323/replaced-intrinsic-004-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/replaced-intrinsic-005-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/replaced-min-max-001-expected.png:
  • platform/chromium-mac/css2.1/20110323/table-caption-001-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/table-caption-horizontal-alignment-001-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/table-caption-margins-001-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/table-caption-optional-001-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/table-caption-optional-002-expected.png: Added.
  • platform/chromium-mac/css2.1/20110323/width-non-replaced-inline-001-expected.png:
  • platform/chromium-mac/css2.1/20110323/width-replaced-element-001-expected.png: Added.
  • platform/chromium-mac/css2.1/t010403-shand-border-00-c-expected.png: Added.
  • platform/chromium-mac/css2.1/t010403-shand-font-00-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t010403-shand-font-01-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t010403-shand-font-02-b-expected.png:
  • platform/chromium-mac/css2.1/t010403-shand-font-03-b-expected.png:
  • platform/chromium-mac/css2.1/t040102-keywords-00-b-expected.png:
  • platform/chromium-mac/css2.1/t040102-keywords-01-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t040103-case-00-b-expected.png:
  • platform/chromium-mac/css2.1/t040103-case-01-c-expected.png:
  • platform/chromium-mac/css2.1/t040103-escapes-00-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t040103-escapes-01-b-expected.png:
  • platform/chromium-mac/css2.1/t040103-escapes-02-d-expected.png:
  • platform/chromium-mac/css2.1/t040103-escapes-03-b-expected.png:
  • platform/chromium-mac/css2.1/t040103-escapes-04-b-expected.png:
  • platform/chromium-mac/css2.1/t040103-escapes-05-c-expected.png:
  • platform/chromium-mac/css2.1/t040103-escapes-06-b-expected.png:
  • platform/chromium-mac/css2.1/t040103-escapes-07-b-expected.png:
  • platform/chromium-mac/css2.1/t040103-escapes-08-b-expected.png:
  • platform/chromium-mac/css2.1/t040103-ident-00-c-expected.png:
  • platform/chromium-mac/css2.1/t040103-ident-01-c-expected.png:
  • platform/chromium-mac/css2.1/t040103-ident-02-c-expected.png:
  • platform/chromium-mac/css2.1/t040103-ident-03-c-expected.png: Added.
  • platform/chromium-mac/css2.1/t040103-ident-04-c-expected.png:
  • platform/chromium-mac/css2.1/t040103-ident-05-c-expected.png:
  • platform/chromium-mac/css2.1/t040103-ident-06-c-expected.png:
  • platform/chromium-mac/css2.1/t040103-ident-07-c-expected.png:
  • platform/chromium-mac/css2.1/t040103-ident-08-c-expected.png:
  • platform/chromium-mac/css2.1/t040103-ident-09-c-expected.png:
  • platform/chromium-mac/css2.1/t040103-ident-10-c-expected.png:
  • platform/chromium-mac/css2.1/t040103-ident-11-c-expected.png:
  • platform/chromium-mac/css2.1/t040103-ident-12-c-expected.png:
  • platform/chromium-mac/css2.1/t040103-ident-13-c-expected.png:
  • platform/chromium-mac/css2.1/t040105-atkeyw-00-b-expected.png:
  • platform/chromium-mac/css2.1/t040105-atkeyw-01-b-expected.png:
  • platform/chromium-mac/css2.1/t040105-atkeyw-02-b-expected.png:
  • platform/chromium-mac/css2.1/t040105-atrule-00-b-expected.png:
  • platform/chromium-mac/css2.1/t040105-atrule-01-b-expected.png:
  • platform/chromium-mac/css2.1/t040105-atrule-02-b-expected.png:
  • platform/chromium-mac/css2.1/t040105-atrule-03-b-expected.png:
  • platform/chromium-mac/css2.1/t040105-atrule-04-b-expected.png:
  • platform/chromium-mac/css2.1/t040105-import-00-b-expected.png:
  • platform/chromium-mac/css2.1/t040105-import-01-b-expected.png:
  • platform/chromium-mac/css2.1/t040105-import-10-b-expected.png:
  • platform/chromium-mac/css2.1/t040109-c17-comments-00-b-expected.png:
  • platform/chromium-mac/css2.1/t0805-c5521-brdr-l-01-e-expected.png:
  • platform/chromium-mac/css2.1/t0805-c5521-brdr-l-02-e-expected.png:
  • platform/chromium-mac/css2.1/t0805-c5521-ibrdr-l-00-a-expected.png:
  • platform/chromium-mac/css2.1/t0805-c5522-brdr-00-b-expected.png:
  • platform/chromium-mac/css2.1/t0805-c5522-brdr-01-b-g-expected.png: Added.
  • platform/chromium-mac/css2.1/t0805-c5522-brdr-02-e-expected.png: Added.
  • platform/chromium-mac/css2.1/t0805-c5522-ibrdr-00-a-expected.png:
  • platform/chromium-mac/css2.1/t0905-c414-flt-00-d-expected.png:
  • platform/chromium-mac/css2.1/t0905-c414-flt-01-d-g-expected.png: Added.
  • platform/chromium-mac/css2.1/t0905-c414-flt-02-c-expected.png:
  • platform/chromium-mac/css2.1/t0905-c414-flt-03-c-expected.png:
  • platform/chromium-mac/css2.1/t0905-c414-flt-04-c-expected.png:
  • platform/chromium-mac/css2.1/t0905-c414-flt-fit-00-d-expected.png:
  • platform/chromium-mac/css2.1/t0905-c414-flt-fit-01-d-g-expected.png:
  • platform/chromium-mac/css2.1/t0905-c414-flt-wrap-00-e-expected.png:
  • platform/chromium-mac/css2.1/t0905-c414-flt-wrap-01-d-g-expected.png:
  • platform/chromium-mac/css2.1/t0905-c5525-fltblck-00-d-ag-expected.png: Added.
  • platform/chromium-mac/css2.1/t0905-c5525-fltblck-01-d-expected.png:
  • platform/chromium-mac/css2.1/t0905-c5525-fltclr-00-c-ag-expected.png: Added.
  • platform/chromium-mac/css2.1/t0905-c5525-fltcont-00-d-g-expected.png:
  • platform/chromium-mac/css2.1/t0905-c5525-flthw-00-c-g-expected.png: Added.
  • platform/chromium-mac/css2.1/t0905-c5525-fltinln-00-c-ag-expected.png: Added.
  • platform/chromium-mac/css2.1/t0905-c5525-fltmrgn-00-c-ag-expected.png: Added.
  • platform/chromium-mac/css2.1/t0905-c5525-fltmult-00-d-g-expected.png:
  • platform/chromium-mac/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png:
  • platform/chromium-mac/css2.1/t0905-c5525-fltwidth-03-c-g-expected.png: Added.
  • platform/chromium-mac/css2.1/t0905-c5526-fltclr-00-c-ag-expected.png: Added.
  • platform/chromium-mac/css2.1/t0905-c5526-flthw-00-c-g-expected.png: Added.
  • platform/chromium-mac/css2.1/t1001-abs-pos-cb-01-b-expected.png:
  • platform/chromium-mac/css2.1/t1001-abs-pos-cb-02-b-expected.png:
  • platform/chromium-mac/css2.1/t1001-abs-pos-cb-03-b-expected.png:
  • platform/chromium-mac/css2.1/t1001-abs-pos-cb-04-b-expected.png:
  • platform/chromium-mac/css2.1/t1001-abs-pos-cb-05-b-expected.png:
  • platform/chromium-mac/css2.1/t1001-abs-pos-cb-06-b-expected.png:
  • platform/chromium-mac/css2.1/t1001-abs-pos-cb-07-b-expected.png:
  • platform/chromium-mac/css2.1/t1001-abs-pos-cb-08-b-expected.png:
  • platform/chromium-mac/css2.1/t1001-abs-pos-cb-09-b-expected.png:
  • platform/chromium-mac/css2.1/t1002-c5523-width-00-b-g-expected.png: Added.
  • platform/chromium-mac/css2.1/t1002-c5523-width-01-b-g-expected.png: Added.
  • platform/chromium-mac/css2.1/t1002-c5523-width-02-b-g-expected.png:
  • platform/chromium-mac/css2.1/t1004-c43-rpl-bbx-00-d-ag-expected.png:
  • platform/chromium-mac/css2.1/t1004-c43-rpl-ibx-00-d-ag-expected.png:
  • platform/chromium-mac/css2.1/t1004-c5524-width-00-b-g-expected.png:
  • platform/chromium-mac/css2.1/t1005-c5524-width-00-b-g-expected.png: Added.
  • platform/chromium-mac/css2.1/t1005-c5524-width-01-b-g-expected.png: Added.
  • platform/chromium-mac/css2.1/t1008-c44-ln-box-00-d-ag-expected.png:
  • platform/chromium-mac/css2.1/t1008-c44-ln-box-01-d-ag-expected.png:
  • platform/chromium-mac/css2.1/t1008-c44-ln-box-02-d-ag-expected.png:
  • platform/chromium-mac/css2.1/t1008-c44-ln-box-03-d-ag-expected.png:
  • platform/chromium-mac/css2.1/t1202-counter-00-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counter-01-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counter-02-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counter-03-b-expected.png:
  • platform/chromium-mac/css2.1/t1202-counter-04-b-expected.png:
  • platform/chromium-mac/css2.1/t1202-counter-05-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counter-06-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counter-07-b-expected.png:
  • platform/chromium-mac/css2.1/t1202-counter-08-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counter-09-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counter-11-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counter-12-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counter-13-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counter-14-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counter-15-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counter-16-f-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counters-00-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counters-01-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counters-02-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counters-03-b-expected.png:
  • platform/chromium-mac/css2.1/t1202-counters-04-b-expected.png:
  • platform/chromium-mac/css2.1/t1202-counters-05-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counters-06-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counters-07-b-expected.png:
  • platform/chromium-mac/css2.1/t1202-counters-08-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counters-09-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counters-11-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counters-12-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counters-13-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counters-14-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counters-15-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counters-16-c-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counters-17-d-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counters-18-f-expected.png: Added.
  • platform/chromium-mac/css2.1/t1204-implied-00-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1204-implied-01-c-expected.png: Added.
  • platform/chromium-mac/css2.1/t1204-implied-02-d-expected.png: Added.
  • platform/chromium-mac/css2.1/t1204-multiple-00-c-expected.png: Added.
  • platform/chromium-mac/css2.1/t1204-multiple-01-c-expected.png: Added.
  • platform/chromium-mac/css2.1/t1204-order-00-c-expected.png: Added.
  • platform/chromium-mac/css2.1/t1204-order-01-d-expected.png: Added.
  • platform/chromium-mac/css2.1/t1204-root-e-expected.png: Added.
  • platform/chromium-mac/css2.1/t1205-c561-list-displ-00-b-expected.png:
  • platform/chromium-mac/css2.1/t1205-c563-list-type-00-b-expected.png:
  • platform/chromium-mac/css2.1/t1205-c563-list-type-01-b-expected.png:
  • platform/chromium-mac/css2.1/t1205-c564-list-img-00-b-g-expected.png:
  • platform/chromium-mac/css2.1/t1205-c565-list-pos-00-b-expected.png:
  • platform/chromium-mac/css2.1/t1205-c566-list-stl-00-e-ag-expected.png: Added.
  • platform/chromium-mac/css2.1/t1205-c566-list-stl-01-c-g-expected.png: Added.
  • platform/chromium-mac/css2.1/t1401-c531-color-00-a-expected.png:
  • platform/chromium-mac/css2.1/t1402-c45-bg-canvas-00-b-expected.png:
  • platform/chromium-mac/css2.1/t1503-c522-font-family-00-b-expected.png:
  • platform/chromium-mac/css2.1/t1504-c523-font-style-00-b-expected.png:
  • platform/chromium-mac/css2.1/t1504-c543-txt-decor-00-d-g-expected.png:
  • platform/chromium-mac/css2.1/t1505-c524-font-var-00-b-expected.png:
  • platform/chromium-mac/css2.1/t1506-c525-font-wt-00-b-expected.png:
  • platform/chromium-mac/css2.1/t1507-c526-font-sz-00-b-expected.png:
  • platform/chromium-mac/css2.1/t1507-c526-font-sz-01-b-a-expected.png:
  • platform/chromium-mac/css2.1/t1507-c526-font-sz-02-b-a-expected.png:
  • platform/chromium-mac/css2.1/t1507-c526-font-sz-03-f-a-expected.png:
  • platform/chromium-mac/css2.1/t1508-c527-font-00-b-expected.png:
  • platform/chromium-mac/css2.1/t1508-c527-font-01-b-expected.png:
  • platform/chromium-mac/css2.1/t1508-c527-font-02-b-expected.png:
  • platform/chromium-mac/css2.1/t1508-c527-font-04-b-expected.png:
  • platform/chromium-mac/css2.1/t1508-c527-font-05-b-expected.png:
  • platform/chromium-mac/css2.1/t1508-c527-font-06-b-expected.png:
  • platform/chromium-mac/css2.1/t1508-c527-font-07-b-expected.png:
  • platform/chromium-mac/css2.1/t1508-c527-font-08-b-expected.png:
  • platform/chromium-mac/css2.1/t1508-c527-font-09-b-expected.png:
  • platform/chromium-mac/css2.1/t1508-c527-font-10-c-expected.png:
  • platform/chromium-mac/css2.1/t1601-c547-indent-00-b-a-expected.png: Added.
  • platform/chromium-mac/css2.1/t1601-c547-indent-01-d-expected.png:
  • platform/chromium-mac/css2.1/t1602-c43-center-00-d-ag-expected.png:
  • platform/chromium-mac/css2.1/t1602-c546-txt-align-00-b-expected.png:
  • platform/chromium-mac/css2.1/t1604-c541-word-sp-00-b-a-expected.png:
  • platform/chromium-mac/css2.1/t1604-c541-word-sp-01-b-a-expected.png:
  • platform/chromium-mac/css2.1/t1604-c542-letter-sp-00-b-a-expected.png:
  • platform/chromium-mac/css2.1/t1604-c542-letter-sp-01-b-a-expected.png:
  • platform/chromium-mac/css2.1/t1605-c545-txttrans-00-b-ag-expected.png: Added.
  • platform/chromium-mac/css2.1/t1605-c545-txttrans-00-b-ag-expected.txt: Added.
  • platform/chromium-mac/css2.1/t1606-c562-white-sp-00-b-ag-expected.png: Added.
  • platform/chromium-mac/editing/deleting/delete-to-select-table-expected.png:
  • platform/chromium-mac/editing/deleting/delete-trailing-ws-002-expected.png:
  • platform/chromium-mac/editing/deleting/delete-ws-fixup-001-expected.png:
  • platform/chromium-mac/editing/deleting/delete-ws-fixup-002-expected.png:
  • platform/chromium-mac/editing/deleting/list-item-1-expected.png:
  • platform/chromium-mac/editing/deleting/merge-different-styles-expected.png:
  • platform/chromium-mac/editing/deleting/merge-endOfParagraph-expected.png:
  • platform/chromium-mac/editing/deleting/merge-into-empty-block-1-expected.png:
  • platform/chromium-mac/editing/deleting/merge-into-empty-block-2-expected.png:
  • platform/chromium-mac/editing/deleting/merge-no-br-expected.png:
  • platform/chromium-mac/editing/deleting/merge-unrendered-space-expected.png:
  • platform/chromium-mac/editing/deleting/merge-whitespace-pre-expected.png: Added.
  • platform/chromium-mac/editing/deleting/move-nodes-001-expected.png: Added.
  • platform/chromium-mac/editing/deleting/pruning-after-merge-2-expected.png:
  • platform/chromium-mac/editing/deleting/smart-delete-003-expected.png:
  • platform/chromium-mac/editing/deleting/smart-delete-004-expected.png:
  • platform/chromium-mac/editing/deleting/table-cells-expected.png:
  • platform/chromium-mac/editing/deleting/type-delete-after-quote-expected.png:
  • platform/chromium-mac/editing/execCommand/create-list-with-hr-expected.png:
  • platform/chromium-mac/editing/execCommand/find-after-replace-expected.png:
  • platform/chromium-mac/editing/execCommand/findString-2-expected.png:
  • platform/chromium-mac/editing/execCommand/findString-expected.png:
  • platform/chromium-mac/editing/execCommand/format-block-with-trailing-br-expected.png:
  • platform/chromium-mac/editing/execCommand/indent-empty-root-expected.png:
  • platform/chromium-mac/editing/execCommand/indent-list-item-expected.png:
  • platform/chromium-mac/editing/execCommand/indent-selection-expected.png:
  • platform/chromium-mac/editing/execCommand/insert-list-and-stitch-expected.png:
  • platform/chromium-mac/editing/execCommand/insertHorizontalRule-expected.png:
  • platform/chromium-mac/editing/execCommand/insertImage-expected.png:
  • platform/chromium-mac/editing/execCommand/nsresponder-indent-expected.png:
  • platform/chromium-mac/editing/execCommand/nsresponder-outdent-expected.png:
  • platform/chromium-mac/editing/execCommand/paste-1-expected.png:
  • platform/chromium-mac/editing/execCommand/paste-2-expected.png:
  • platform/chromium-mac/editing/execCommand/remove-list-from-range-selection-expected.png:
  • platform/chromium-mac/editing/execCommand/remove-list-item-1-expected.png:
  • platform/chromium-mac/editing/input/caret-at-the-edge-of-contenteditable-expected.png: Added.
  • platform/chromium-mac/editing/input/caret-at-the-edge-of-input-expected.png: Added.
  • platform/chromium-mac/editing/input/reveal-caret-of-multiline-contenteditable-expected.png: Added.
  • platform/chromium-mac/editing/input/reveal-caret-of-multiline-input-expected.png: Added.
  • platform/chromium-mac/editing/inserting/12882-expected.png: Added.
  • platform/chromium-mac/editing/inserting/4278698-expected.png:
  • platform/chromium-mac/editing/inserting/4840662-expected.png:
  • platform/chromium-mac/editing/inserting/4875189-1-expected.png:
  • platform/chromium-mac/editing/inserting/4875189-2-expected.png:
  • platform/chromium-mac/editing/inserting/4959067-expected.png:
  • platform/chromium-mac/editing/inserting/4960120-1-expected.png:
  • platform/chromium-mac/editing/inserting/4960120-2-expected.png:
  • platform/chromium-mac/editing/inserting/5002441-expected.png:
  • platform/chromium-mac/editing/inserting/5058163-1-expected.png:
  • platform/chromium-mac/editing/inserting/5058163-2-expected.png:
  • platform/chromium-mac/editing/inserting/5156401-2-expected.png:
  • platform/chromium-mac/editing/inserting/5418891-expected.png:
  • platform/chromium-mac/editing/inserting/5510537-expected.png:
  • platform/chromium-mac/editing/inserting/5549929-2-expected.png:
  • platform/chromium-mac/editing/inserting/5549929-3-expected.png:
  • platform/chromium-mac/editing/inserting/6703873-expected.png:
  • platform/chromium-mac/editing/inserting/before-after-input-element-expected.png: Added.
  • platform/chromium-mac/editing/inserting/before-after-input-element-expected.txt: Added.
  • platform/chromium-mac/editing/inserting/break-blockquote-after-delete-expected.png:
  • platform/chromium-mac/editing/inserting/editable-html-element-expected.png:
  • platform/chromium-mac/editing/inserting/editable-inline-element-expected.png:
  • platform/chromium-mac/editing/inserting/edited-whitespace-1-expected.png:
  • platform/chromium-mac/editing/inserting/editing-empty-divs-expected.png:
  • platform/chromium-mac/editing/inserting/insert-at-end-01-expected.png:
  • platform/chromium-mac/editing/inserting/insert-at-end-02-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-004-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-005-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-007-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-009-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-quoted-001-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-quoted-002-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-quoted-003-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-quoted-004-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-quoted-005-expected.png:
  • platform/chromium-mac/editing/pasteboard/3976872-expected.png:
  • platform/chromium-mac/editing/pasteboard/4076267-2-expected.png:
  • platform/chromium-mac/editing/pasteboard/4076267-3-expected.png:
  • platform/chromium-mac/editing/pasteboard/4076267-expected.png:
  • platform/chromium-mac/editing/pasteboard/4242293-expected.png:
  • platform/chromium-mac/editing/pasteboard/4631972-expected.png:
  • platform/chromium-mac/editing/pasteboard/4641033-expected.png:
  • platform/chromium-mac/editing/pasteboard/4806874-expected.png: Added.
  • platform/chromium-mac/editing/pasteboard/4806874-expected.txt: Added.
  • platform/chromium-mac/editing/pasteboard/4944770-1-expected.png:
  • platform/chromium-mac/editing/pasteboard/4944770-2-expected.png:
  • platform/chromium-mac/editing/pasteboard/4947130-expected.png:
  • platform/chromium-mac/editing/pasteboard/4989774-expected.png:
  • platform/chromium-mac/editing/pasteboard/5006779-expected.png:
  • platform/chromium-mac/editing/pasteboard/5032095-expected.png:
  • platform/chromium-mac/editing/pasteboard/5071074-2-expected.png:
  • platform/chromium-mac/editing/pasteboard/5071074-expected.png:
  • platform/chromium-mac/editing/pasteboard/5075944-expected.png:
  • platform/chromium-mac/editing/pasteboard/5134759-expected.png:
  • platform/chromium-mac/editing/pasteboard/5156401-1-expected.png:
  • platform/chromium-mac/editing/pasteboard/5247341-expected.png:
  • platform/chromium-mac/editing/pasteboard/5387578-expected.png:
  • platform/chromium-mac/editing/pasteboard/5478250-expected.png:
  • platform/chromium-mac/editing/pasteboard/5601583-1-expected.png:
  • platform/chromium-mac/editing/pasteboard/7955-expected.png: Added.
  • platform/chromium-mac/editing/pasteboard/8145-1-expected.png:
  • platform/chromium-mac/editing/pasteboard/8145-2-expected.png:
  • platform/chromium-mac/editing/pasteboard/8145-3-expected.png:
  • platform/chromium-mac/editing/pasteboard/bad-placeholder-expected.png:
  • platform/chromium-mac/editing/selection/13804-expected.png:
  • platform/chromium-mac/editing/selection/14971-expected.png:
  • platform/chromium-mac/editing/selection/3690703-2-expected.png: Added.
  • platform/chromium-mac/editing/selection/3690703-2-expected.txt: Added.
  • platform/chromium-mac/editing/selection/3690703-expected.png: Added.
  • platform/chromium-mac/editing/selection/3690703-expected.txt: Added.
  • platform/chromium-mac/editing/selection/3690719-expected.png: Added.
  • platform/chromium-mac/editing/selection/3690719-expected.txt: Added.
  • platform/chromium-mac/editing/selection/4397952-expected.png:
  • platform/chromium-mac/editing/selection/4402375-expected.png:
  • platform/chromium-mac/editing/selection/4776665-expected.png:
  • platform/chromium-mac/editing/selection/4818145-expected.png:
  • platform/chromium-mac/editing/selection/4866671-expected.png:
  • platform/chromium-mac/editing/selection/4889598-expected.png:
  • platform/chromium-mac/editing/selection/4895428-2-expected.png:
  • platform/chromium-mac/editing/selection/4895428-3-expected.png: Added.
  • platform/chromium-mac/editing/selection/4895428-3-expected.txt: Added.
  • platform/chromium-mac/editing/selection/6476-expected.png:
  • platform/chromium-mac/editing/selection/7152-1-expected.png:
  • platform/chromium-mac/editing/selection/7152-2-expected.png:
  • platform/chromium-mac/http/tests/loading/simple-subframe-expected.png:
  • platform/chromium-mac/http/tests/local/file-url-sent-as-referer-expected.png:
  • platform/chromium-win-vista/http/tests/loading/simple-subframe-expected.png: Removed.
  • platform/chromium-win-vista/http/tests/local/file-url-sent-as-referer-expected.png: Removed.
  • platform/chromium-win-xp/css2.1/t1202-counter-09-b-expected.png: Removed.
  • platform/chromium/css2.1/20110323/block-non-replaced-width-008-expected.txt: Removed.
  • platform/chromium/css2.1/20110323/empty-inline-001-expected.txt: Removed.
  • platform/chromium/css2.1/20110323/empty-inline-002-expected.txt: Removed.
  • platform/chromium/css2.1/20110323/empty-inline-003-expected.txt: Removed.
  • platform/chromium/css2.1/20110323/table-caption-001-expected.txt: Removed.
  • platform/chromium/css2.1/20110323/table-caption-horizontal-alignment-001-expected.txt: Removed.
  • platform/chromium/css2.1/20110323/table-caption-margins-001-expected.txt: Removed.
  • platform/chromium/css2.1/20110323/table-caption-optional-001-expected.txt: Removed.
  • platform/chromium/css2.1/20110323/table-caption-optional-002-expected.txt: Removed.
  • platform/mac-future/css2.1/t1508-c527-font-05-b-expected.png: Renamed from LayoutTests/platform/mac/css2.1/t1508-c527-font-05-b-expected.png.
  • platform/mac-future/css2.1/t1508-c527-font-10-c-expected.png: Renamed from LayoutTests/platform/mac/css2.1/t1508-c527-font-10-c-expected.png.
  • platform/mac-lion/editing/inserting/break-blockquote-after-delete-expected.png: Renamed from LayoutTests/platform/win/editing/inserting/break-blockquote-after-delete-expected.png.
  • platform/mac-snowleopard/editing/inserting/break-blockquote-after-delete-expected.png: Added.
  • platform/mac/editing/deleting/delete-trailing-ws-002-expected.txt: Renamed from LayoutTests/editing/deleting/delete-trailing-ws-002-expected.txt.
  • platform/mac/editing/deleting/delete-ws-fixup-001-expected.txt: Renamed from LayoutTests/editing/deleting/delete-ws-fixup-001-expected.txt.
  • platform/mac/editing/execCommand/format-block-with-trailing-br-expected.txt: Removed.
  • platform/mac/editing/input/caret-at-the-edge-of-contenteditable-expected.txt: Renamed from LayoutTests/editing/input/caret-at-the-edge-of-contenteditable-expected.txt.
  • platform/mac/editing/input/reveal-caret-of-multiline-contenteditable-expected.txt: Renamed from LayoutTests/editing/input/reveal-caret-of-multiline-contenteditable-expected.txt.
  • platform/mac/editing/input/reveal-caret-of-multiline-input-expected.txt: Renamed from LayoutTests/editing/input/reveal-caret-of-multiline-input-expected.txt.
  • platform/mac/editing/inserting/insert-br-004-expected.txt: Renamed from LayoutTests/editing/inserting/insert-br-004-expected.txt.
  • platform/mac/editing/inserting/insert-br-005-expected.txt: Renamed from LayoutTests/editing/inserting/insert-br-005-expected.txt.
  • platform/mac/editing/inserting/insert-br-007-expected.txt: Renamed from LayoutTests/editing/inserting/insert-br-007-expected.txt.
2:55 PM Changeset in webkit [110111] by kerz@chromium.org
  • 1 edit in branches/chromium/963/Source/WebCore/xml/XMLErrors.cpp

Fix XML error handling.

2:46 PM Changeset in webkit [110110] by Lucas Forschler
  • 5 edits in branches/safari-534.54-branch/Source

Versioning.

2:44 PM Changeset in webkit [110109] by Lucas Forschler
  • 1 delete in tags/Safari-534.54.16/safari-534.54-branch
2:42 PM Changeset in webkit [110108] by Lucas Forschler
  • 1 copy in tags/Safari-534.54.17

New tag.

2:42 PM Changeset in webkit [110107] by Lucas Forschler
  • 1 copy in tags/Safari-534.54.16/safari-534.54-branch

New tag.

2:36 PM Changeset in webkit [110106] by haraken@chromium.org
  • 7 edits
    1 delete in trunk/Source/WebCore

[V8][Performance] Optimize Element.firstElementChild, Element.lastElementChild,
Element.previousElementSibling, Element.nextElementSibling, Node.parentElement
https://bugs.webkit.org/show_bug.cgi?id=80506

Reviewed by Adam Barth.

This patch improves the performance of Element.firstElementChild by 5.8 times,
Element.lastElementChild by 6.2 times, Element.previousElementSibling by 7.1 times,
Element.nextElementSibling by 7.1 times, and Node.parentElement by 6.7 times.

Previously, while toV8(Node*) caches a wrapper object on a node object
(i.e. node->wrapper(), node->setWrapper()), toV8(Element*) does not
cache a wrapper object.

This patch removes toV8(Element*), so that DOM attribute getters that return
Element* use toV8(Node*). This change makes these DOM attribute getters
cache the wrapper object on a node object. This optimization is already
implemented in JavaScriptCore.

Performance tests: https://bugs.webkit.org/attachment.cgi?id=130594

The test results in my local Mac environment are as follows:

AppleWebKit/JavaScriptCore:
div.firstElementChild : 1162ms
div.lastElementChild : 1016ms
div.previousElementSibling : 918ms
div.nextElementSibling : 900ms
div.parentElement : 901ms

Chromium/V8 (without this patch):
div.firstElementChild : 9515ms
div.lastElementChild : 9449ms
div.previousElementSibling : 9254ms
div.nextElementSibling : 9315ms
div.parentElement : 9380ms

Chromium/V8 (with this patch):
div.firstElementChild : 1628ms
div.lastElementChild : 1527ms
div.previousElementSibling : 1310ms
div.nextElementSibling : 1310ms
div.parentElement : 1410ms

No tests. No change in behavior.

  • dom/Element.idl: Removed toV8(Element*)
  • bindings/v8/custom/V8NodeCustom.cpp: Ditto.

(WebCore::toV8Slow):

  • bindings/scripts/CodeGeneratorV8.pm: Ditto.

(GenerateHeader):

  • bindings/v8/custom/V8ElementCustom.cpp: Removed.
  • Target.pri: Removed V8ElementCustom.cpp.
  • UseV8.cmake: Ditto.
  • WebCore.gypi: Ditto.
2:36 PM Changeset in webkit [110105] by senorblanco@chromium.org
  • 2 edits in trunk/LayoutTests

[chromium] Unreviewed gardening.

More post-r110072 mopup (mac remix).

  • platform/chromium/test_expectations.txt:
2:32 PM Common pixel differences between ports edited by ojan@chromium.org
(diff)
2:31 PM Common pixel differences between ports edited by ojan@chromium.org
(diff)
2:29 PM Changeset in webkit [110104] by jsbell@chromium.org
  • 7 edits in trunk/Source

[Chromium] IndexedDB: V8LocalContext creation in IDBKey extraction/injection is slow
https://bugs.webkit.org/show_bug.cgi?id=80358

Source/WebCore:

Cache a re-usable context (per isolate) for cases like IDB's key/SSV extraction/injection,
where no user script is run. This yields a 3x-4x performance improvement in basic IDB
operations.

Reviewed by Tony Chang.

No new tests - no behavior changes.

  • bindings/v8/IDBBindingUtilities.cpp:

(WebCore::createIDBKeyFromSerializedValueAndKeyPath):
(WebCore::injectIDBKeyIntoSerializedValue):

  • bindings/v8/V8Binding.h:

(WebCore::V8BindingPerIsolateData::auxiliaryContext):
(V8BindingPerIsolateData):

  • bindings/v8/V8Utilities.cpp:

(WebCore::V8AuxiliaryContext::V8AuxiliaryContext):
(WebCore::V8AuxiliaryContext::~V8AuxiliaryContext):
(WebCore::V8AuxiliaryContext::auxiliaryContext):

  • bindings/v8/V8Utilities.h:

(V8AuxiliaryContext):

Source/WebKit/chromium:

Reviewed by Tony Chang.

  • tests/IDBBindingUtilitiesTest.cpp:

(WebCore::TEST):

2:28 PM Common pixel differences between ports edited by ojan@chromium.org
(diff)
2:21 PM Changeset in webkit [110103] by eae@chromium.org
  • 10 edits in branches/subpixellayout/Source/WebCore

Change scrollWidth/Height to ints and get rid of pixelSnapped version on subpixel branch.

2:17 PM Changeset in webkit [110102] by schenney@chromium.org
  • 2 edits in trunk/LayoutTests

[Chromium] Unexpected changes in SVG animated results
https://bugs.webkit.org/show_bug.cgi?id=80517

Unreviewed chromium test expectations.

Linux debug is failing too. Very odd.

  • platform/chromium/test_expectations.txt:
2:12 PM Common pixel differences between ports edited by jochen@chromium.org
(diff)
2:07 PM Changeset in webkit [110101] by schenney@chromium.org
  • 2 edits in trunk/LayoutTests

[Chromium] Unexpected changes in SVG animated filter results
https://bugs.webkit.org/show_bug.cgi?id=80517

Unreviewed Chromium test_expectations update.

A test is failing in Debug builds on mac and Win. No idea why.

  • platform/chromium/test_expectations.txt:
1:59 PM Changeset in webkit [110100] by nduca@chromium.org
  • 2 edits in trunk/Source/WebCore

[chromium] Remove unused wasRecreate variable
https://bugs.webkit.org/show_bug.cgi?id=80533

Reviewed by Adrienne Walker.

  • platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp:

(WebCore::CCLayerTreeHostImpl::initializeLayerRenderer):

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

[chromium] Update GYP files to reflect file deletes/renames
https://bugs.webkit.org/show_bug.cgi?id=80525

Patch by Ryan Sleevi <rsleevi@chromium.org> on 2012-03-07
Reviewed by Ryosuke Niwa.

No change in functionality, so no tests.

  • WebCore.gypi:

Updated AppleMac private headers due to r109877
Updated platform/qt references due to r109542
Updated platform/mac references due to r109147
Updated platform/mac references due to r108956

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

[Qt] Authentication dialog does not work
https://bugs.webkit.org/show_bug.cgi?id=79738

Patch by Dinu Jacob <dinu.jacob@nokia.com> on 2012-03-07
Reviewed by Simon Hausmann.

QQuickWebView should accept touch events only if there is
no active dialog.

  • UIProcess/API/qt/qquickwebview.cpp:

(QQuickWebViewPrivate::QQuickWebViewPrivate):
(QQuickWebViewPrivate::runJavaScriptAlert):
(QQuickWebViewPrivate::runJavaScriptConfirm):
(QQuickWebViewPrivate::runJavaScriptPrompt):
(QQuickWebViewPrivate::handleAuthenticationRequiredRequest):
(QQuickWebViewPrivate::handleProxyAuthenticationRequiredRequest):
(QQuickWebViewPrivate::handleCertificateVerificationRequest):
(QQuickWebView::touchEvent):

  • UIProcess/API/qt/qquickwebview_p_p.h:

(QQuickWebViewPrivate):

1:42 PM Changeset in webkit [110097] by ojan@chromium.org
  • 3 edits in trunk/Tools

Automatically move to the next test after rebaseline in the results view
https://bugs.webkit.org/show_bug.cgi?id=80527

Reviewed by Dimitri Glazkov.

  • BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/controllers.js:
  • BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/ui/results.js:
1:32 PM Changeset in webkit [110096] by ojan@chromium.org
  • 256 edits
    256 copies
    22 moves
    291 adds
    4 deletes in trunk/LayoutTests

Initial rebaselines for the Chromium Lion port.

All the rebaselines are one of the following:
-anti-aliasing differences
-scrollbar differences
-1 checkbox difference (checked box is blue instead of grey)
-1 png rendering difference (blue is slightly darker, better matches Chromium Linux/Win and Apple Mac)
-Clearly correct new results (e.g. SnowLeopard result says "FAIL", Lion result says "PASS")

1:26 PM Changeset in webkit [110095] by eric.carlson@apple.com
  • 8 edits
    4 adds in trunk

Html5 video element Useragent string is Quicktime
https://bugs.webkit.org/show_bug.cgi?id=46241

Reviewed by Daniel Bates.

Source/WebCore:

Test: http/tests/media/video-useragent.html

  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::mediaPlayerUserAgent): Return the UA string for the current source.

  • html/HTMLMediaElement.h:
  • platform/graphics/MediaPlayer.cpp:

(WebCore::MediaPlayer::userAgent): New, return the client's mediaPlayerUserAgent.

  • platform/graphics/MediaPlayer.h:

(WebCore::MediaPlayerClient::mediaPlayerUserAgent):

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

(WebCore::MediaPlayerPrivateAVFoundationObjC::createAVAssetForURL): Tell AVFoundation to set

the UA header.

LayoutTests:

  • http/tests/media/resources/serve-video.php: Added.
  • http/tests/media/resources/video-check-useragent.php: Added.
  • http/tests/media/resources/video-referer-check-referer.php: Split media loading logic

out into serve-video.php.

  • http/tests/media/video-useragent-expected.txt: Added.
  • http/tests/media/video-useragent.html: Added.
1:14 PM Changeset in webkit [110094] by senorblanco@chromium.org
  • 2 edits in trunk/LayoutTests

[chromium] Unreviewed gardening.

More post-r110072 mopup.

  • platform/chromium/test_expectations.txt:
1:13 PM Changeset in webkit [110093] by commit-queue@webkit.org
  • 4 edits in trunk/Source

Get ScrollAnimatorNone to handle the stop and reverse cases.
https://bugs.webkit.org/show_bug.cgi?id=80455

Patch by Scott Byer <scottbyer@chromium.org> on 2012-03-07
Reviewed by James Robinson.

Source/WebCore:

Chromium webkit_unit_tests ScrollAnimatorNoneTest.ScrollStopInMiddle and
ScrollAnimatorNoneTest.ReverseInMiddle.

  • platform/ScrollAnimatorNone.cpp:

(WebCore::ScrollAnimatorNone::PerAxisData::updateDataFromParameters):

Source/WebKit/chromium:

  • tests/ScrollAnimatorNoneTest.cpp:

(ScrollAnimatorNoneTest::updateDataFromParameters):
(TEST_F):

1:13 PM Changeset in webkit [110092] by Philippe Normand
  • 2 edits in trunk/LayoutTests

Unreviewed, skip a test failing on GTK after r110072.

  • platform/gtk/Skipped: fast/events/autoscroll-in-textfield.html

now fails.

1:05 PM Common pixel differences between ports edited by ojan@chromium.org
(diff)
1:03 PM Common pixel differences between ports edited by ojan@chromium.org
(diff)
1:02 PM Changeset in webkit [110091] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

RenderImage ignores its percent width/height when setContainerSizeForRenderer
https://bugs.webkit.org/show_bug.cgi?id=80431

Patch by Yong Li <yoli@rim.com> on 2012-03-07
Reviewed by George Staikos.

Not only respect fixed width/height explicitly specified in img element, but also
respect percent width/height when determining container size for images.

No new tests because there is no functional change but only internal buffer sizes.

  • rendering/RenderImage.cpp:

(WebCore::RenderImage::computeReplacedLogicalWidth):

12:57 PM Changeset in webkit [110090] by jchaffraix@webkit.org
  • 17 edits
    4 adds in trunk/LayoutTests

Unreviewed rebaseline after r110072.

  • platform/chromium-linux/fast/repaint/search-field-cancel-expected.png:
  • platform/chromium-linux/http/tests/navigation/javascriptlink-frames-expected.txt:
  • platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt:
  • platform/chromium-mac-leopard/fast/repaint/search-field-cancel-expected.png:
  • platform/chromium-mac-snowleopard/fast/forms/input-text-double-click-expected.txt: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/search-field-cancel-expected.png:
  • platform/chromium-mac-snowleopard/fast/repaint/search-field-cancel-expected.txt: Added.
  • platform/chromium-mac-snowleopard/http/tests/navigation/javascriptlink-frames-expected.txt: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt: Added.
  • platform/chromium-win/fast/forms/input-text-double-click-expected.txt:
  • platform/chromium-win/fast/repaint/search-field-cancel-expected.png:
  • platform/chromium-win/fast/repaint/search-field-cancel-expected.txt:
  • platform/chromium-win/http/tests/navigation/javascriptlink-frames-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt:

Rebaselined those entries on Chromium. search-field-cancel.html is showing a small harmless difference.

  • platform/chromium/test_expectations.txt:

Removed the entries for some of the rebaselined test.

  • platform/chromium/test_expectations.txt:
  • platform/efl/test_expectations.txt:
  • platform/gtk/test_expectations.txt:
  • platform/mac/test_expectations.txt:
  • platform/qt/test_expectations.txt:
  • platform/win/Skipped:

Added an image regression filed as bug 80531.

12:57 PM Changeset in webkit [110089] by benjamin@webkit.org
  • 4 edits in trunk/Source

[Mac] Update the configuration files for iOS
https://bugs.webkit.org/show_bug.cgi?id=80435

Patch by Benjamin Poulain <bpoulain@apple.com> on 2012-03-06
Reviewed by David Kilzer.

Source/WebCore:

  • Configurations/WebCore.xcconfig:

Source/WebKit/mac:

  • Configurations/WebKit.xcconfig:
12:46 PM Changeset in webkit [110088] by commit-queue@webkit.org
  • 12 edits in trunk/Source

[chromium] Cull occluded tiles during paint
https://bugs.webkit.org/show_bug.cgi?id=76838

Patch by Dana Jansens <danakj@chromium.org> on 2012-03-07
Reviewed by Adrienne Walker.

Source/WebCore:

Using CCOcclusionTracker instead of the old custom paint occlusion
tracking. Stops painting tiles when the tile is not visible.

CCOcclusionTracker only uses Layer::opaque() for determining
occlusion so far. The Layer::addSelfToOccludedRegion is being
replaced by a superior method in CCOcclusionTracker that will
work for both threads, so removing that support here.

Unit test: TiledLayerChromiumTest.cpp

  • platform/graphics/chromium/ContentLayerChromium.cpp:

(WebCore::ContentLayerChromium::paintContentsIfDirty):
(WebCore::ContentLayerChromium::idlePaintContentsIfDirty):

  • platform/graphics/chromium/ContentLayerChromium.h:

(ContentLayerChromium):

  • platform/graphics/chromium/ImageLayerChromium.cpp:

(WebCore::ImageLayerChromium::paintContentsIfDirty):

  • platform/graphics/chromium/LayerChromium.cpp:
  • platform/graphics/chromium/LayerChromium.h:

(WebCore::LayerChromium::idlePaintContentsIfDirty):
(LayerChromium):

  • platform/graphics/chromium/TiledLayerChromium.cpp:

(WebCore):
(WebCore::contentToLayerTransform):
(WebCore::TiledLayerChromium::prepareToUpdateTiles):
(WebCore::TiledLayerChromium::prepareToUpdate):
(WebCore::TiledLayerChromium::prepareToUpdateIdle):

  • platform/graphics/chromium/TiledLayerChromium.h:

(TiledLayerChromium):

  • platform/graphics/chromium/cc/CCLayerTreeHost.cpp:

(WebCore::CCLayerTreeHost::paintContentsIfDirty):
(WebCore::CCLayerTreeHost::paintLayerContents):

Source/WebKit/chromium:

  • tests/CCLayerTreeHostTest.cpp:

(WTF::ContentLayerChromiumWithUpdateTracking::idlePaintContentsIfDirty):

  • tests/TiledLayerChromiumTest.cpp:

(WTF::FakeLayerTextureUpdater::Texture::prepareRect):
(WTF::FakeLayerTextureUpdater::FakeLayerTextureUpdater):
(FakeLayerTextureUpdater):
(WTF::FakeLayerTextureUpdater::prepareRectCount):
(WTF::FakeLayerTextureUpdater::clearPrepareRectCount):
(WTF::FakeLayerTextureUpdater::prepareRect):
(WTF::FakeTiledLayerChromium::prepareToUpdate):
(WTF::FakeTiledLayerChromium::prepareToUpdateIdle):
(WTF::FakeTiledLayerChromium::paintContentsIfDirty):
(WTF::TEST):
(WTF):

12:44 PM Changeset in webkit [110087] by senorblanco@chromium.org
  • 2 edits in trunk/LayoutTests

[Chromium] Unreviewed gardening.

Adding some more test suppressions post r110072.

  • platform/chromium/test_expectations.txt:
12:37 PM Changeset in webkit [110086] by caio.oliveira@openbossa.org
  • 7 edits in trunk/Source/WebCore

Implement removeAttributeNode() in terms of ElementAttributeData instead of NamedNodeMap
https://bugs.webkit.org/show_bug.cgi?id=80522

Reviewed by Andreas Kling.

DOM methods exposed in Element and NamedNodeMap are now implemented in terms of
ElementAttributeData. A helper function takeAttribute() was added to increase
code sharing. Also removed some unneeded methods.

  • dom/Element.cpp:

(WebCore::Element::removeAttribute): Use ElementAttributeData function directly.
(WebCore::Element::removeAttributeNode): Get the index manually and use new
takeAttribute() directly.

  • dom/Element.h:

(Element): Remove unused removeAttribute(unsigned index).

  • dom/ElementAttributeData.cpp:

(WebCore::ElementAttributeData::takeAttribute): Like removeAttribute() but
returns a reference to old Attr.
(WebCore):

  • dom/ElementAttributeData.h:

(ElementAttributeData):

  • dom/NamedNodeMap.cpp:

(WebCore::NamedNodeMap::removeNamedItem): Avoid looking up the property twice by
getting the index directly from the name, instead of going through the qualified name.

  • dom/NamedNodeMap.h: Remove now unused internal methods for removing attributes.
12:23 PM Changeset in webkit [110085] by mitz@apple.com
  • 12 edits
    4 adds in trunk/Source/WebKit2

<rdar://problem/8494396> WebKit2 lacks API for obtaining a representation of the render tree of a page, like WebRenderNode
https://bugs.webkit.org/show_bug.cgi?id=80230

Reviewed by Beth Dakin.

  • CMakeLists.txt:
  • GNUmakefile.am:
  • Shared/API/c/WKBase.h: Added a type definition of WKRenderObjectRef.
  • Shared/API/c/WKRenderObject.cpp: Added.

(WKRenderObjectGetTypeID): Added. Returns the WKRenderObject type ID.
(WKRenderObjectCopyName): Added this getter wrapper.
(WKRenderObjectGetAbsolutePosition): Ditto.
(WKRenderObjectGetFrameRect): Ditto.
(WKRenderObjectGetChildren): Ditto.

  • Shared/API/c/WKRenderObject.h: Added.
  • Shared/APIObject.h: Added TypeRenderObject to the APIObject::Type enum.
  • Shared/UserMessageCoders.h:

(WebKit::UserMessageEncoder::baseEncode): Added WebRenderObject encoding.
(WebKit::UserMessageDecoder::baseDecode): Added WebRenderObject decoding.

  • Shared/WebRenderObject.cpp: Added.

(WebKit::WebRenderObject::create): Added. Creates a WebRenderObject for the page’s main
frame content renderer.
(WebKit::WebRenderObject::WebRenderObject): Added. Constructs a WebRenderObject with the
name, metrics and children of the given RenderObject, following the rules used in WebKit1
WebRenderNode. In particular, a RenderWidget representing a frame gets the frame’s content
renderer as a child.

  • Shared/WebRenderObject.h: Added.

(WebKit::WebRenderObject::create):
(WebKit::WebRenderObject::children):
(WebKit::WebRenderObject::name):
(WebKit::WebRenderObject::absolutePosition):
(WebKit::WebRenderObject::frameRect):
(WebKit::WebRenderObject::WebRenderObject):

  • Target.pri:
  • UIProcess/API/C/WKAPICast.h: Added a mapping between WKRenderObjectRef and WebRenderObject.
  • WebKit2.xcodeproj/project.pbxproj: Added WebRenderObject.{cpp,h} and WKRenderObject.{cpp.h}.
  • WebProcess/InjectedBundle/API/c/WKBundlePage.cpp:

(WKBundlePageCopyRenderTree): Added this bundle API for getting the render tree.

  • WebProcess/InjectedBundle/API/c/WKBundlePagePrivate.h:
  • win/WebKit2.vcproj:
12:10 PM Changeset in webkit [110084] by Lucas Forschler
  • 5 edits in branches/safari-534.54-branch/Source

Rollout 110083

12:06 PM Changeset in webkit [110083] by Lucas Forschler
  • 5 edits in branches/safari-534.54-branch/Source

Versioning.

12:02 PM Changeset in webkit [110082] by Lucas Forschler
  • 6 edits
    4 copies in branches/safari-534.54-branch

Merge 109594.

12:01 PM Changeset in webkit [110081] by Philippe Normand
  • 27 edits in trunk/LayoutTests

Unreviewed, GTK rebaseline after r110072.

  • platform/gtk/css3/selectors3/html/css3-modsel-23-expected.txt:
  • platform/gtk/css3/selectors3/html/css3-modsel-24-expected.txt:
  • platform/gtk/css3/selectors3/html/css3-modsel-68-expected.txt:
  • platform/gtk/css3/selectors3/html/css3-modsel-69-expected.txt:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-23-expected.txt:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-24-expected.txt:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-68-expected.txt:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-69-expected.txt:
  • platform/gtk/css3/selectors3/xml/css3-modsel-23-expected.txt:
  • platform/gtk/css3/selectors3/xml/css3-modsel-24-expected.txt:
  • platform/gtk/css3/selectors3/xml/css3-modsel-68-expected.txt:
  • platform/gtk/css3/selectors3/xml/css3-modsel-69-expected.txt:
  • platform/gtk/editing/selection/select-from-textfield-outwards-expected.txt:
  • platform/gtk/fast/block/lineboxcontain/block-glyphs-replaced-expected.txt:
  • platform/gtk/fast/clip/008-expected.txt:
  • platform/gtk/fast/clip/011-expected.txt:
  • platform/gtk/fast/clip/012-expected.txt:
  • platform/gtk/fast/forms/input-readonly-autoscroll-expected.txt:
  • platform/gtk/fast/forms/input-text-double-click-expected.txt:
  • platform/gtk/fast/forms/input-text-drag-down-expected.txt:
  • platform/gtk/fast/forms/input-text-scroll-left-on-blur-expected.txt:
  • platform/gtk/fast/forms/textfield-outline-expected.txt:
  • platform/gtk/fast/forms/textfield-overflow-expected.txt:
  • platform/gtk/fast/repaint/overflow-delete-line-expected.txt:
  • platform/gtk/http/tests/navigation/javascriptlink-frames-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt:
12:01 PM UsingGitWithWebKit edited by me@elv1s.ru
typo (diff)
11:58 AM Changeset in webkit [110080] by ap@apple.com
  • 2 edits in trunk/Source/WebCore

Merge AsyncFileStream with FileStreamProxy
https://bugs.webkit.org/show_bug.cgi?id=80325

Build fix.

  • WebCore.xcodeproj/project.pbxproj: Removed files that got mysteriously added to the project with a merge.
11:50 AM Changeset in webkit [110079] by ojan@chromium.org
  • 3 edits in trunk/Tools

garden-o-matic rebaseline is broken for ports that don't have a fallback port
https://bugs.webkit.org/show_bug.cgi?id=80526

Reviewed by Adam Barth.

Passing "None" as the fallback port throws an error in "webkit-patch rebaseline-test"
since there is no "None" port.

  • Scripts/webkitpy/tool/servers/gardeningserver.py:

(GardeningHTTPRequestHandler.rebaseline):

  • Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:

(GardeningServerTest.test_rebaseline):

11:44 AM Changeset in webkit [110078] by jchaffraix@webkit.org
  • 2 edits in trunk/Source/WebCore

Unreviewed ASSERT failure fix.
https://bugs.webkit.org/show_bug.cgi?id=75568

  • rendering/RenderBoxModelObject.cpp:

(WebCore::RenderBoxModelObject::styleDidChange):
Fix a bad merge of the patch, we should call updateCachedSizeForOverflowClip if we lose
our layer.

11:23 AM Changeset in webkit [110077] by commit-queue@webkit.org
  • 4 edits in trunk/Source/WebCore

[EFL] Revise PlatformKeyboardEventEfl and EflKeyboardUtilities
https://bugs.webkit.org/show_bug.cgi?id=80511

Patch by ChangSeok Oh <ChangSeok Oh> on 2012-03-07
Reviewed by Gustavo Noronha Silva.

Added 'const' keyword in front of argument of keyIdentifiersForEvasKeyName/windowsKeyCodeForEvasKeyName.
Since they should not be changed while processing each function.
And initialized missing member variables of PlatformKeyboardEventEfl.

No new tests, since no new feature.

  • platform/efl/EflKeyboardUtilities.cpp:

(WebCore::keyIdentifierForEvasKeyName): Added const keyword
(WebCore::windowsKeyCodeForEvasKeyName): Added const keyword

  • platform/efl/EflKeyboardUtilities.h:

(WebCore):

  • platform/efl/PlatformKeyboardEventEfl.cpp:

(WebCore::PlatformKeyboardEvent::PlatformKeyboardEvent):

11:23 AM Changeset in webkit [110076] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/blackberry

[BlackBerry] WebKit rendering problem when show/hide VKB
https://bugs.webkit.org/show_bug.cgi?id=80448
RIM PR: 141727

Patch by Jacky Jiang <zhajiang@rim.com> on 2012-03-07
Reviewed by Antonio Gomes.

When setting viewport size, layout happens inside
WebPagePrivate::setDefaultLayoutSize(), in this way, the layout is
outside of the code path of "needsLayout" so that the contents are
not rendered into the backing store. This is a regression of r108718,
switch back to do the layout inside the public API
WebPage::setDefaultLayoutSize().

We haven't upstreamed the manual tests directory yet, therefore,
the new manual test case will be upstreamed later.

  • Api/WebPage.cpp:

(BlackBerry::WebKit::WebPagePrivate::setDefaultLayoutSize):
(BlackBerry::WebKit::WebPage::setDefaultLayoutSize):

11:18 AM Changeset in webkit [110075] by jamesr@google.com
  • 4 edits in trunk/Tools

[chromium] Remove the TestWebPlugin's use of implicit FBO for offscreen contexts
https://bugs.webkit.org/show_bug.cgi?id=80521

Reviewed by Kenneth Russell.

Switches TestWebPlugin from using a context created by WebViewClient::createGraphicsContext3D(..., false) over
to an explicitly offscreen context with explicitly managed texture / FBO, so we can deprecate the
renderDirectlyToHostWindow flag from WebViewClient::createGraphicsContext3D.

Covered by platform/chromium/compositing/plugins/*

  • DumpRenderTree/chromium/TestWebPlugin.cpp:

(TestWebPlugin::TestWebPlugin):
(TestWebPlugin::initialize):
(TestWebPlugin::updateGeometry):
(TestWebPlugin::initScene):
(TestWebPlugin::destroyScene):

  • DumpRenderTree/chromium/TestWebPlugin.h:

(TestWebPlugin):

  • DumpRenderTree/chromium/WebViewHost.cpp:

(WebViewHost::createPlugin):

11:12 AM Changeset in webkit [110074] by enne@google.com
  • 14 edits
    1 copy
    3 moves
    5 adds
    8 deletes in trunk/LayoutTests

[chromium] Unreviewed, rebaseline tests after r109851.

  • platform/chromium-linux/compositing/reflections/reflection-on-composited-expected.png:
  • platform/chromium-linux/compositing/shadows/shadow-drawing-expected.png:
  • platform/chromium-linux/fast/repaint/block-selection-gap-in-composited-layer-expected.png:
  • platform/chromium-mac-leopard/compositing/geometry/fixed-position-transform-composited-page-scale-down-expected.png:
  • platform/chromium-mac-leopard/compositing/reflections/reflection-on-composited-expected.png: Added.
  • platform/chromium-mac-leopard/compositing/shadows/shadow-drawing-expected.png:
  • platform/chromium-mac-snowleopard/compositing/reflections/reflection-on-composited-expected.png: Added.
  • platform/chromium-mac-snowleopard/compositing/shadows/shadow-drawing-expected.png:
  • platform/chromium-mac-snowleopard/fast/repaint/block-selection-gap-in-composited-layer-expected.png: Added.
  • platform/chromium-mac/compositing/geometry/fixed-position-transform-composited-page-scale-down-expected.png: Copied from LayoutTests/platform/chromium-mac-leopard/compositing/geometry/fixed-position-transform-composited-page-scale-down-expected.png.
  • platform/chromium-mac/compositing/geometry/fixed-position-transform-composited-page-scale-expected.png: Renamed from LayoutTests/platform/chromium-mac-snowleopard/compositing/geometry/fixed-position-transform-composited-page-scale-expected.png.
  • platform/chromium-mac/compositing/geometry/limit-layer-bounds-transformed-overflow-expected.txt: Removed.
  • platform/chromium-mac/compositing/reflections/reflection-on-composited-expected.png:
  • platform/chromium-mac/compositing/shadows/shadow-drawing-expected.png: Added.
  • platform/chromium-mac/fast/repaint/block-selection-gap-in-composited-layer-expected.png: Renamed from LayoutTests/platform/chromium/fast/repaint/block-selection-gap-in-composited-layer-expected.png.
  • platform/chromium-win-vista/compositing/shadows/shadow-drawing-expected.png:
  • platform/chromium-win-xp/compositing/shadows/shadow-drawing-expected.png: Removed.
  • platform/chromium-win/compositing/geometry/limit-layer-bounds-fixed-positioned-expected.txt: Removed.
  • platform/chromium-win/compositing/geometry/limit-layer-bounds-overflow-root-expected.txt:
  • platform/chromium-win/compositing/geometry/limit-layer-bounds-positioned-expected.txt: Removed.
  • platform/chromium-win/compositing/geometry/limit-layer-bounds-positioned-transition-expected.txt: Removed.
  • platform/chromium-win/compositing/geometry/limit-layer-bounds-transformed-overflow-expected.txt: Removed.
  • platform/chromium-win/compositing/reflections/reflection-on-composited-expected.png:
  • platform/chromium-win/compositing/shadows/shadow-drawing-expected.png:
  • platform/chromium-win/fast/repaint/block-selection-gap-in-composited-layer-expected.png:
  • platform/chromium/compositing/geometry/limit-layer-bounds-transformed-overflow-expected.txt: Renamed from LayoutTests/platform/chromium-win/compositing/geometry/limit-layer-bounds-transformed-expected.txt.
  • platform/chromium/test_expectations.txt:
  • platform/mac/compositing/geometry/fixed-position-transform-composited-page-scale-down-expected.txt: Removed.
  • platform/mac/compositing/geometry/fixed-position-transform-composited-page-scale-expected.txt: Removed.
11:08 AM Changeset in webkit [110073] by hbono@chromium.org
  • 3 edits
    3 adds in trunk

[Chromium] Mirror the resizer image of an RTL element when WTF_USE_RTL_SCROLLBAR is 1
https://bugs.webkit.org/show_bug.cgi?id=9223

Reviewed by Tony Chang.

This change mirrors a resizer image of an RTL element horizontall as Firefox
does. This change also mirrors its dragging behavior, i.e. draging the resizer
of an RTL element to the left side increases its width. (This feature is enabled
only when WTF_USE_RTL_SCROLLBAR is 1.)

Source/WebCore:

Test: platform/chromium/scrollbars/drag-rtl-resizer.html

  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::resize): Mirrored the x coordinate of mouse positions
when mirroring a resizer.
(WebCore::RenderLayer::offsetFromResizeCorner): Returned the offset from the
bottom-left corner when rendering a resizer there.
(WebCore::RenderLayer::drawPlatformResizerImage): Mirrored the resizer bitmap
horizontally when rendering a resizer to the bottom-left corner.

LayoutTests:

  • platform/chromium/scrollbars: Added.
  • platform/chromium/scrollbars/drag-rtl-resizer-expected.txt: Added.
  • platform/chromium/scrollbars/drag-rtl-resizer.html: Added.
11:05 AM Changeset in webkit [110072] by jchaffraix@webkit.org
  • 18 edits in trunk

Lazily allocate overflow: hidden layers if we have overflowing content
https://bugs.webkit.org/show_bug.cgi?id=75568

Reviewed by David Hyatt.

Source/WebCore:

Change covered by the existing tests and the tons of rebaselines.

This change makes us lazily allocate our RenderLayer for overflow: hidden layers only.

Apart from saving some memory, it will also speed up the rendering as we don't need to
go through the layer's machinery when painting and hit testing.

On http://dglazkov.github.com/performance-tests/biggrid.html benchmark, this puts the
overflow: hidden case in par with the overflow: visible case when scrolling that is a
very-smooth scrolling vs a jerky one currently (mostly due to the painting speedup).

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::updateScrollInfoAfterLayout):
Changed this method to update our size cache if needed.

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::layoutBlock):
(WebCore::RenderBlock::paint):
(WebCore::RenderBlock::isPointInOverflowControl):

  • rendering/RenderBlock.h:

(RenderBlock):

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::willBeDestroyed):
(WebCore::RenderBox::styleDidChange):
(WebCore::RenderBox::layout):
(WebCore::RenderBox::scrollWidth):
(WebCore::RenderBox::scrollHeight):
(WebCore::RenderBox::scrollLeft):
(WebCore::RenderBox::scrollTop):
(WebCore::RenderBox::setScrollLeft):
(WebCore::RenderBox::setScrollTop):
(WebCore::RenderBox::includeVerticalScrollbarSize):
(WebCore::RenderBox::includeHorizontalScrollbarSize):
(WebCore::RenderBox::scrolledContentOffset):
(WebCore::RenderBox::pushContentsClip):
(WebCore::RenderBox::popContentsClip):
(WebCore::RenderBox::addLayoutOverflow):
Added layer() check to the previous call sites.

(WebCore::cachedSizeForOverflowClipMap):
(WebCore::RenderBox::cachedSizeForOverflowClip):
(WebCore::RenderBox::updateCachedSizeForOverflowClip):
(WebCore::RenderBox::clearCachedSizeForOverflowClip):
This logic stores the size information for later repainting.
It is in practice replicating what RenderLayer is doing.
I had to disable an ASSERT here as it would trigger in NRWT but
not under DRT. I haven't found by code inspection what was wrong.

  • rendering/RenderBox.h:

(WebCore::RenderBox::hasOverflowClipWithLayer):
Helper function.

(WebCore::RenderBox::requiresLayerForOverflowClip):
This determines if we can survive without a RenderLayer. For the moment,
it is very conservative.

(WebCore::RenderBox::requiresLayer):
Updated to call requiresLayerForOverflowClip.

  • rendering/RenderBoxModelObject.cpp:

(WebCore::RenderBoxModelObject::ensureLayer):
Added this function to create and add a new layer.

(WebCore::RenderBoxModelObject::willBeDestroyed):
(WebCore::RenderBoxModelObject::styleDidChange):
Patched those method to handle updating / removing
cached size entries.

  • rendering/RenderBoxModelObject.h:

(WebCore::RenderBoxModelObject::requiresLayer):
Pushed the overflowClip check down to RenderBox as only RenderBoxes can have
overflow clips.

  • rendering/RenderTableRow.h:

(WebCore::RenderTableRow::requiresLayer):
Added a comment about why we need a layout for table rows.

  • rendering/RenderDeprecatedFlexibleBox.cpp:

(WebCore::RenderDeprecatedFlexibleBox::layoutBlock):

  • rendering/RenderFlexibleBox.cpp:

(WebCore::RenderFlexibleBox::layoutBlock):

  • rendering/RenderTableSection.cpp:

(WebCore::RenderTableSection::layout):
Updated those call sites to use RenderBlock::updateScrollInfoAfterLayout
or RenderBox::updateCachedSizeForOverflowClip. The current logic is really
not tight proof and would need to be rethought to not avoid cases.

LayoutTests:

  • platform/chromium/test_expectations.txt:
  • platform/efl/test_expectations.txt:
  • platform/gtk/test_expectations.txt:
  • platform/mac/test_expectations.txt:
  • platform/qt/test_expectations.txt:
  • platform/win/Skipped:

Disable gazillions tests that need a small rebaseline after losing some layers. The expectations are
updated to match each platform as best as I could but expect some breakage...

11:01 AM Changeset in webkit [110071] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

[BlackBerry] Fix warnings in CookieMap
https://bugs.webkit.org/show_bug.cgi?id=80512

Patch by Konrad Piascik <kpiascik@rim.com> on 2012-03-07
Reviewed by Rob Buis.

No new tests. No behavioural changes.

  • platform/blackberry/CookieMap.cpp:

(WebCore::CookieMap::addOrReplaceCookie):
(WebCore::CookieMap::removeCookie):
(WebCore::CookieMap::getAllCookies):
(WebCore::CookieMap::updateOldestCookie):

10:59 AM Changeset in webkit [110070] by leviw@chromium.org
  • 5 edits in trunk/Source/WebCore

Update usage of LayoutUnits in InlineBox and InlineFlowBox
https://bugs.webkit.org/show_bug.cgi?id=80051

Reviewed by Eric Seidel.

Updating LayoutUnit vs Integer usage in InlineBox and InlineFlowBox. While the
line box tree remains floating point, margins are now subpixel, and rects from
the render tree use LayoutUnits. For more information, see the LayoutUnit wiki
page: https://trac.webkit.org/wiki/LayoutUnit

No new tests. No change in behavior.

  • rendering/InlineBox.cpp:

(WebCore::InlineBox::flipForWritingMode): Changing over to LayoutUnits.

  • rendering/InlineBox.h:

(InlineBox):

  • rendering/InlineFlowBox.cpp:

(WebCore::InlineFlowBox::getFlowSpacingLogicalWidth): Returning a LayoutUnit
instead of an integer, as it uses margin which is a LayoutUnit.
(WebCore::InlineFlowBox::placeBoxesInInlineDirection): Using a LayoutUnit for
margin.
(WebCore::InlineFlowBox::placeBoxesInBlockDirection): Build fixes for when
LayoutUnits are subpixel.
(WebCore::InlineFlowBox::paintFillLayer): Ditto.

  • rendering/InlineFlowBox.h:

(WebCore::InlineFlowBox::marginBorderPaddingLogicalLeft): Returning a LayoutUnit
instead of an integer since margin is a LayoutUnit.
(WebCore::InlineFlowBox::marginBorderPaddingLogicalRight): Ditto.
(InlineFlowBox):
(WebCore::InlineFlowBox::logicalLeftLayoutOverflow): Adding a static_cast that's
redundant now, but required when we switch to subpixel LayoutUnits.
(WebCore::InlineFlowBox::logicalRightLayoutOverflow): Ditto.
(WebCore::InlineFlowBox::logicalLeftVisualOverflow): Ditto.
(WebCore::InlineFlowBox::logicalRightVisualOverflow): Ditto.

10:44 AM WebKitGTK/1.8.x edited by Martin Robinson
(diff)
10:40 AM Changeset in webkit [110069] by schenney@chromium.org
  • 991 edits
    336 adds
    1 delete in trunk/LayoutTests

Switch svg/dynamic-updates tests to repaint harness
https://bugs.webkit.org/show_bug.cgi?id=78219

Unreviewed Chromium test rebaselining.

  • platform/chromium-linux/svg/dynamic-updates/SVGCircleElement-dom-cx-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGCircleElement-dom-cy-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGCircleElement-dom-r-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGCircleElement-dom-requiredFeatures-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGCircleElement-svgdom-cx-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGCircleElement-svgdom-cy-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGCircleElement-svgdom-r-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGCircleElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGClipPathElement-dom-clipPathUnits-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGClipPathElement-svgdom-clipPathUnits-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGCursorElement-dom-x-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGCursorElement-dom-y-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGCursorElement-svgdom-x-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGCursorElement-svgdom-y-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGEllipseElement-dom-cx-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGEllipseElement-dom-cy-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGEllipseElement-dom-requiredFeatures-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGEllipseElement-dom-rx-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGEllipseElement-dom-ry-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGEllipseElement-svgdom-cx-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGEllipseElement-svgdom-cy-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGEllipseElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGEllipseElement-svgdom-rx-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGEllipseElement-svgdom-ry-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEColorMatrixElement-dom-in-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEColorMatrixElement-dom-values-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-in-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-type-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEComponentTransferElement-dom-amplitude-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEComponentTransferElement-dom-exponent-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEComponentTransferElement-dom-intercept-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEComponentTransferElement-dom-offset-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEComponentTransferElement-dom-slope-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEComponentTransferElement-dom-tableValues-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEComponentTransferElement-dom-type-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-amplitude-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-exponent-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-intercept-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-offset-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-slope-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-tableValues-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFECompositeElement-dom-in-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFECompositeElement-dom-in2-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFECompositeElement-dom-k1-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFECompositeElement-dom-k2-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFECompositeElement-dom-k3-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFECompositeElement-dom-k4-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFECompositeElement-dom-operator-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFECompositeElement-svgdom-in-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFECompositeElement-svgdom-in2-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFECompositeElement-svgdom-k1-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFECompositeElement-svgdom-k2-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFECompositeElement-svgdom-k3-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFECompositeElement-svgdom-k4-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFECompositeElement-svgdom-operator-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-bias-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-divisor-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-edgeMode-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-in-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelMatrix-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelUnitLength-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-order-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-preserveAlpha-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-bias-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-divisor-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-edgeMode-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-in-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelMatrix-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelUnitLength-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-order-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-preserveAlpha-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-diffuseConstant-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-in-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-lighting-color-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-surfaceScale-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDiffuseLightingElement-inherit-lighting-color-css-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDiffuseLightingElement-lighting-color-css-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-diffuseConstant-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-in-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-surfaceScale-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-in-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-in2-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-scale-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-xChannelSelector-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-yChannelSelector-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-in-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-in2-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-scale-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-xChannelSelector-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-yChannelSelector-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDistantLightElement-dom-azimuth-attr-expected.png: Added.
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDistantLightElement-dom-elevation-attr-expected.png: Added.
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDistantLightElement-svgdom-azimuth-prop-expected.png: Added.
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDistantLightElement-svgdom-elevation-prop-expected.png: Added.
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDropShadowElement-dom-dx-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDropShadowElement-dom-dy-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDropShadowElement-dom-in-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-color-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-opacity-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDropShadowElement-dom-stdDeviation-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-dx-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-dy-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-in-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-color-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-opacity-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-stdDeviation-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEFloodElement-dom-flood-color-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEFloodElement-dom-flood-opacity-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEFloodElement-inherit-flood-color-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-color-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-opacity-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-in-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-call-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEGaussianBlurElement-svgdom-in-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEMergeNodeElement-dom-in-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEMergeNodeElement-svgdom-in-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEMorphologyElement-dom-in-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEMorphologyElement-dom-operator-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEMorphologyElement-dom-radius-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-in-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-operator-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-radius-call-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEOffsetElement-dom-dx-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEOffsetElement-dom-dy-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEOffsetElement-dom-in-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEOffsetElement-svgdom-dx-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEOffsetElement-svgdom-dy-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEOffsetElement-svgdom-in-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEPointLightElement-dom-x-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEPointLightElement-dom-y-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEPointLightElement-dom-z-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEPointLightElement-svgdom-x-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEPointLightElement-svgdom-y-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFEPointLightElement-svgdom-z-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpecularLightingElement-dom-in-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpecularLightingElement-dom-specularConstant-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpecularLightingElement-dom-specularExponent-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpecularLightingElement-dom-suraceScale-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpecularLightingElement-inherit-lighting-color-css-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpecularLightingElement-lighting-color-css-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpecularLightingElement-remove-lightSource-expected.png: Added.
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-in-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-specularConstant-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-specularExponent-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-suraceScale-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpotLightElement-dom-limitingConeAngle-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtX-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtY-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtZ-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpotLightElement-dom-specularExponent-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpotLightElement-dom-x-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpotLightElement-dom-y-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpotLightElement-dom-z-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpotLightElement-svgdom-limitingConeAngle-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtX-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtY-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtZ-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpotLightElement-svgdom-specularExponent-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpotLightElement-svgdom-x-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpotLightElement-svgdom-y-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFESpotLightElement-svgdom-z-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFETileElement-dom-in-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFETileElement-svgdom-in-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFETurbulenceElement-dom-numOctaves-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFETurbulenceElement-dom-seed-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFETurbulenceElement-dom-stitchTiles-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFETurbulenceElement-dom-type-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-numOctaves-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-seed-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-stitchTiles-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-type-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterElement-dom-filterRes-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterElement-dom-filterUnits-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterElement-dom-height-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterElement-dom-primitiveUnits-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterElement-dom-width-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterElement-dom-x-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterElement-dom-y-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterElement-svgdom-filterRes-call-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterElement-svgdom-filterResX-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterElement-svgdom-filterResY-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterElement-svgdom-filterUnits-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterElement-svgdom-height-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterElement-svgdom-primitiveUnits-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterElement-svgdom-width-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterElement-svgdom-x-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterElement-svgdom-y-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-height-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-result-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-width-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-x-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-y-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-height-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-result-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-width-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-x-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-y-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGForeignObjectElement-dom-height-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGForeignObjectElement-dom-requiredFeatures-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGForeignObjectElement-dom-width-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGForeignObjectElement-dom-x-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGForeignObjectElement-dom-y-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGForeignObjectElement-svgdom-height-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGForeignObjectElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGForeignObjectElement-svgdom-width-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGForeignObjectElement-svgdom-x-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGForeignObjectElement-svgdom-y-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGGElement-dom-requiredFeatures-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGGElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGImageElement-dom-height-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGImageElement-dom-preserveAspectRatio-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGImageElement-dom-requiredFeatures-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGImageElement-dom-width-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGImageElement-dom-x-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGImageElement-dom-y-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGImageElement-svgdom-height-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGImageElement-svgdom-width-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGImageElement-svgdom-x-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGImageElement-svgdom-y-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGLineElement-dom-requiredFeatures-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGLineElement-dom-x1-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGLineElement-dom-x2-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGLineElement-dom-y1-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGLineElement-dom-y2-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGLineElement-svgdom-x1-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGLineElement-svgdom-x2-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGLineElement-svgdom-y1-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGLineElement-svgdom-y2-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientTransform-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientUnits-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGLinearGradientElement-dom-x1-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGLinearGradientElement-dom-x2-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGLinearGradientElement-dom-y1-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGLinearGradientElement-dom-y2-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientTransform-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientUnits-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x1-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x2-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y1-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y2-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMarkerElement-dom-markerHeight-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMarkerElement-dom-markerUnits-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMarkerElement-dom-markerWidth-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMarkerElement-dom-orient-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMarkerElement-dom-refX-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMarkerElement-dom-refY-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMarkerElement-svgdom-markerHeight-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMarkerElement-svgdom-markerUnits-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMarkerElement-svgdom-markerWidth-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMarkerElement-svgdom-orientAngle-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMarkerElement-svgdom-orientType-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMarkerElement-svgdom-refX-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMarkerElement-svgdom-refY-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMarkerElement-svgdom-setOrientToAngle-call-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMarkerElement-svgdom-setOrientToAuto-call-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMaskElement-dom-height-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMaskElement-dom-maskContentUnits-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMaskElement-dom-maskUnits-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMaskElement-dom-width-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMaskElement-dom-x-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMaskElement-dom-y-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMaskElement-svgdom-height-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMaskElement-svgdom-maskContentUnits-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMaskElement-svgdom-maskUnits-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMaskElement-svgdom-width-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMaskElement-svgdom-x-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGMaskElement-svgdom-y-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGPathElement-dom-requiredFeatures-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGPathElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGPatternElement-dom-height-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGPatternElement-dom-patternContentUnits-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGPatternElement-dom-patternTransform-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGPatternElement-dom-patternUnits-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGPatternElement-dom-width-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGPatternElement-dom-x-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGPatternElement-dom-y-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGPatternElement-svgdom-height-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGPatternElement-svgdom-patternContentUnits-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGPatternElement-svgdom-patternTransform-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGPatternElement-svgdom-patternUnits-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGPatternElement-svgdom-width-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGPatternElement-svgdom-x-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGPatternElement-svgdom-y-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGPolygonElement-dom-requiredFeatures-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGPolygonElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGPolylineElement-dom-requiredFeatures-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGPolylineElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGRadialGradientElement-dom-cx-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGRadialGradientElement-dom-cy-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGRadialGradientElement-dom-fx-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGRadialGradientElement-dom-fy-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientTransform-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientUnits-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGRadialGradientElement-dom-r-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cx-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cy-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fx-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fy-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientTransform-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientUnits-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGRadialGradientElement-svgdom-r-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGRectElement-dom-height-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGRectElement-dom-requiredFeatures-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGRectElement-dom-width-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGRectElement-dom-x-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGRectElement-dom-y-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGRectElement-svgdom-height-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGRectElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGRectElement-svgdom-width-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGRectElement-svgdom-x-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGRectElement-svgdom-y-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGSVGElement-dom-requiredFeatures-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGSVGElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGTRefElement-dom-href-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGTextElement-dom-dx-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGTextElement-dom-dy-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGTextElement-dom-requiredFeatures-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGTextElement-dom-rotate-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGTextElement-dom-transform-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGTextElement-dom-x-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGTextElement-dom-y-attr-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGTextElement-svgdom-dx-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGTextElement-svgdom-dy-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGTextElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGTextElement-svgdom-rotate-prop-expected.png: Added.
  • platform/chromium-linux/svg/dynamic-updates/SVGTextElement-svgdom-transform-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGTextElement-svgdom-x-prop-expected.png:
  • platform/chromium-linux/svg/dynamic-updates/SVGTextElement-svgdom-y-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGCircleElement-dom-cx-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGCircleElement-dom-cy-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGCircleElement-dom-r-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGCircleElement-dom-requiredFeatures-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGCircleElement-svgdom-cx-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGCircleElement-svgdom-cy-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGCircleElement-svgdom-r-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGCircleElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGClipPathElement-dom-clipPathUnits-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGClipPathElement-svgdom-clipPathUnits-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGCursorElement-dom-x-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGCursorElement-dom-y-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGCursorElement-svgdom-x-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGCursorElement-svgdom-y-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGEllipseElement-dom-cx-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGEllipseElement-dom-cy-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGEllipseElement-dom-requiredFeatures-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGEllipseElement-dom-rx-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGEllipseElement-dom-ry-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGEllipseElement-svgdom-cx-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGEllipseElement-svgdom-cy-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGEllipseElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGEllipseElement-svgdom-rx-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGEllipseElement-svgdom-ry-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEColorMatrixElement-dom-in-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEColorMatrixElement-dom-type-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEColorMatrixElement-dom-values-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-in-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-type-prop-expected.png: Added.
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEComponentTransferElement-dom-amplitude-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEComponentTransferElement-dom-exponent-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEComponentTransferElement-dom-intercept-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEComponentTransferElement-dom-offset-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEComponentTransferElement-dom-slope-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEComponentTransferElement-dom-tableValues-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEComponentTransferElement-dom-type-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-amplitude-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-exponent-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-intercept-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-offset-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-slope-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-tableValues-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFECompositeElement-dom-in-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFECompositeElement-dom-in2-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFECompositeElement-dom-k1-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFECompositeElement-dom-k2-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFECompositeElement-dom-k3-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFECompositeElement-dom-k4-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFECompositeElement-dom-operator-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFECompositeElement-svgdom-in-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFECompositeElement-svgdom-in2-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFECompositeElement-svgdom-k1-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFECompositeElement-svgdom-k2-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFECompositeElement-svgdom-k3-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFECompositeElement-svgdom-k4-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFECompositeElement-svgdom-operator-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-bias-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-divisor-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-edgeMode-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-in-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelMatrix-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelUnitLength-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-order-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-preserveAlpha-attr-expected.png: Added.
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-bias-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-divisor-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-edgeMode-prop-expected.png: Added.
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-in-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelMatrix-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelUnitLength-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-order-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-preserveAlpha-prop-expected.png: Added.
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-diffuseConstant-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-in-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-lighting-color-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-surfaceScale-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDiffuseLightingElement-inherit-lighting-color-css-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDiffuseLightingElement-lighting-color-css-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-diffuseConstant-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-in-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-surfaceScale-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-in-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-in2-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-scale-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-xChannelSelector-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-yChannelSelector-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-in-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-in2-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-scale-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-xChannelSelector-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-yChannelSelector-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDistantLightElement-dom-azimuth-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDistantLightElement-dom-elevation-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDistantLightElement-svgdom-azimuth-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDistantLightElement-svgdom-elevation-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDropShadowElement-dom-dx-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDropShadowElement-dom-dy-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDropShadowElement-dom-in-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-color-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-opacity-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDropShadowElement-dom-stdDeviation-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-dx-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-dy-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-in-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-color-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-opacity-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-stdDeviation-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEFloodElement-dom-flood-color-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEFloodElement-dom-flood-opacity-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEFloodElement-inherit-flood-color-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-color-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-opacity-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-in-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-call-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEGaussianBlurElement-svgdom-in-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEMergeNodeElement-dom-in-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEMergeNodeElement-svgdom-in-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEMorphologyElement-dom-in-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEMorphologyElement-dom-operator-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEMorphologyElement-dom-radius-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-in-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-operator-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-radius-call-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEOffsetElement-dom-dx-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEOffsetElement-dom-dy-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEOffsetElement-dom-in-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEOffsetElement-svgdom-dx-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEOffsetElement-svgdom-dy-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEOffsetElement-svgdom-in-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEPointLightElement-dom-x-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEPointLightElement-dom-y-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEPointLightElement-dom-z-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEPointLightElement-svgdom-x-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEPointLightElement-svgdom-y-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEPointLightElement-svgdom-z-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpecularLightingElement-dom-in-attr-expected.png: Added.
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpecularLightingElement-dom-specularConstant-attr-expected.png: Added.
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpecularLightingElement-dom-specularExponent-attr-expected.png: Added.
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpecularLightingElement-dom-suraceScale-attr-expected.png: Added.
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpecularLightingElement-inherit-lighting-color-css-prop-expected.png: Added.
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpecularLightingElement-lighting-color-css-prop-expected.png: Added.
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpecularLightingElement-remove-lightSource-expected.png: Added.
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-in-prop-expected.png: Added.
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-specularConstant-prop-expected.png: Added.
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-specularExponent-prop-expected.png: Added.
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-suraceScale-prop-expected.png: Added.
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpotLightElement-dom-limitingConeAngle-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtX-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtY-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtZ-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpotLightElement-dom-specularExponent-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpotLightElement-dom-x-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpotLightElement-dom-y-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpotLightElement-dom-z-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpotLightElement-svgdom-limitingConeAngle-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtX-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtY-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtZ-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpotLightElement-svgdom-specularExponent-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpotLightElement-svgdom-x-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpotLightElement-svgdom-y-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFESpotLightElement-svgdom-z-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFETileElement-dom-in-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFETileElement-svgdom-in-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFETurbulenceElement-dom-numOctaves-attr-expected.png: Added.
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFETurbulenceElement-dom-seed-attr-expected.png: Added.
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFETurbulenceElement-dom-stitchTiles-attr-expected.png: Added.
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFETurbulenceElement-dom-type-attr-expected.png: Added.
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-numOctaves-prop-expected.png: Added.
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-seed-prop-expected.png: Added.
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-stitchTiles-prop-expected.png: Added.
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-type-prop-expected.png: Added.
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterElement-dom-filterRes-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterElement-dom-filterUnits-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterElement-dom-height-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterElement-dom-primitiveUnits-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterElement-dom-width-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterElement-dom-x-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterElement-dom-y-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterElement-svgdom-filterRes-call-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterElement-svgdom-filterResX-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterElement-svgdom-filterResY-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterElement-svgdom-filterUnits-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterElement-svgdom-height-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterElement-svgdom-primitiveUnits-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterElement-svgdom-width-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterElement-svgdom-x-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterElement-svgdom-y-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-height-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-result-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-width-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-x-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-y-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-height-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-result-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-width-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-x-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-y-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGForeignObjectElement-dom-height-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGForeignObjectElement-dom-requiredFeatures-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGForeignObjectElement-dom-width-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGForeignObjectElement-dom-x-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGForeignObjectElement-dom-y-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGForeignObjectElement-svgdom-height-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGForeignObjectElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGForeignObjectElement-svgdom-width-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGForeignObjectElement-svgdom-x-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGForeignObjectElement-svgdom-y-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGGElement-dom-requiredFeatures-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGGElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGImageElement-dom-height-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGImageElement-dom-preserveAspectRatio-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGImageElement-dom-requiredFeatures-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGImageElement-dom-width-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGImageElement-dom-x-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGImageElement-dom-y-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGImageElement-svgdom-height-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGImageElement-svgdom-width-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGImageElement-svgdom-x-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGImageElement-svgdom-y-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGLineElement-dom-requiredFeatures-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGLineElement-dom-x1-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGLineElement-dom-x2-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGLineElement-dom-y1-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGLineElement-dom-y2-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGLineElement-svgdom-x1-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGLineElement-svgdom-x2-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGLineElement-svgdom-y1-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGLineElement-svgdom-y2-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientTransform-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientUnits-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGLinearGradientElement-dom-x1-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGLinearGradientElement-dom-x2-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGLinearGradientElement-dom-y1-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGLinearGradientElement-dom-y2-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientTransform-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientUnits-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x1-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x2-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y1-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y2-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMarkerElement-dom-markerHeight-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMarkerElement-dom-markerUnits-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMarkerElement-dom-markerWidth-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMarkerElement-dom-orient-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMarkerElement-dom-refX-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMarkerElement-dom-refY-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMarkerElement-svgdom-markerHeight-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMarkerElement-svgdom-markerUnits-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMarkerElement-svgdom-markerWidth-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMarkerElement-svgdom-orientAngle-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMarkerElement-svgdom-orientType-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMarkerElement-svgdom-refX-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMarkerElement-svgdom-refY-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMarkerElement-svgdom-setOrientToAngle-call-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMarkerElement-svgdom-setOrientToAuto-call-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMaskElement-dom-height-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMaskElement-dom-maskContentUnits-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMaskElement-dom-maskUnits-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMaskElement-dom-width-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMaskElement-dom-x-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMaskElement-dom-y-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMaskElement-svgdom-height-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMaskElement-svgdom-maskContentUnits-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMaskElement-svgdom-maskUnits-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMaskElement-svgdom-width-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMaskElement-svgdom-x-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGMaskElement-svgdom-y-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGPathElement-dom-requiredFeatures-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGPathElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGPatternElement-dom-height-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGPatternElement-dom-patternContentUnits-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGPatternElement-dom-patternTransform-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGPatternElement-dom-patternUnits-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGPatternElement-dom-width-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGPatternElement-dom-x-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGPatternElement-dom-y-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGPatternElement-svgdom-height-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGPatternElement-svgdom-patternContentUnits-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGPatternElement-svgdom-patternTransform-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGPatternElement-svgdom-patternUnits-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGPatternElement-svgdom-width-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGPatternElement-svgdom-x-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGPatternElement-svgdom-y-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGPolygonElement-dom-requiredFeatures-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGPolygonElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGPolylineElement-dom-requiredFeatures-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGPolylineElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGRadialGradientElement-dom-cx-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGRadialGradientElement-dom-cy-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGRadialGradientElement-dom-fx-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGRadialGradientElement-dom-fy-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientTransform-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientUnits-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGRadialGradientElement-dom-r-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cx-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cy-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fx-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fy-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientTransform-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientUnits-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGRadialGradientElement-svgdom-r-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGRectElement-dom-height-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGRectElement-dom-requiredFeatures-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGRectElement-dom-width-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGRectElement-dom-x-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGRectElement-dom-y-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGRectElement-svgdom-height-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGRectElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGRectElement-svgdom-width-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGRectElement-svgdom-x-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGRectElement-svgdom-y-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGSVGElement-dom-requiredFeatures-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGSVGElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGTRefElement-dom-href-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGTextElement-dom-dx-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGTextElement-dom-dy-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGTextElement-dom-requiredFeatures-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGTextElement-dom-rotate-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGTextElement-dom-textLength-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGTextElement-dom-transform-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGTextElement-dom-x-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGTextElement-dom-y-attr-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGTextElement-svgdom-dx-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGTextElement-svgdom-dy-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGTextElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGTextElement-svgdom-rotate-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGTextElement-svgdom-textLength-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGTextElement-svgdom-transform-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGTextElement-svgdom-x-prop-expected.png:
  • platform/chromium-mac-leopard/svg/dynamic-updates/SVGTextElement-svgdom-y-prop-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGCircleElement-dom-cx-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGCircleElement-dom-cy-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGCircleElement-dom-r-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGCircleElement-dom-requiredFeatures-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGCircleElement-svgdom-cx-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGCircleElement-svgdom-cy-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGCircleElement-svgdom-r-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGCircleElement-svgdom-requiredFeatures-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGClipPathElement-dom-clipPathUnits-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGClipPathElement-svgdom-clipPathUnits-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGCursorElement-dom-x-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGCursorElement-dom-y-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGCursorElement-svgdom-x-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGCursorElement-svgdom-y-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGEllipseElement-dom-cx-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGEllipseElement-dom-cy-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGEllipseElement-dom-requiredFeatures-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGEllipseElement-dom-rx-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGEllipseElement-dom-ry-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGEllipseElement-svgdom-cx-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGEllipseElement-svgdom-cy-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGEllipseElement-svgdom-requiredFeatures-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGEllipseElement-svgdom-rx-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGEllipseElement-svgdom-ry-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEColorMatrixElement-dom-in-attr-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEColorMatrixElement-dom-type-attr-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEColorMatrixElement-dom-values-attr-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-in-prop-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-type-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEComponentTransferElement-dom-amplitude-attr-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEComponentTransferElement-dom-exponent-attr-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEComponentTransferElement-dom-intercept-attr-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEComponentTransferElement-dom-offset-attr-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEComponentTransferElement-dom-slope-attr-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEComponentTransferElement-dom-tableValues-attr-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEComponentTransferElement-dom-type-attr-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-amplitude-prop-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-exponent-prop-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-intercept-prop-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-offset-prop-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-slope-prop-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-tableValues-prop-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFECompositeElement-dom-in-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFECompositeElement-dom-in2-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFECompositeElement-dom-k1-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFECompositeElement-dom-k2-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFECompositeElement-dom-k3-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFECompositeElement-dom-k4-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFECompositeElement-dom-operator-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFECompositeElement-svgdom-in-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFECompositeElement-svgdom-in2-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFECompositeElement-svgdom-k1-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFECompositeElement-svgdom-k2-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFECompositeElement-svgdom-k3-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFECompositeElement-svgdom-k4-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFECompositeElement-svgdom-operator-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-bias-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-divisor-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-edgeMode-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-in-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelMatrix-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelUnitLength-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-order-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-preserveAlpha-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-bias-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-divisor-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-edgeMode-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-in-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelMatrix-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelUnitLength-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-order-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-preserveAlpha-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-diffuseConstant-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-in-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-lighting-color-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-surfaceScale-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDiffuseLightingElement-inherit-lighting-color-css-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDiffuseLightingElement-lighting-color-css-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-diffuseConstant-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-in-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-surfaceScale-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-in-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-in2-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-scale-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-xChannelSelector-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-yChannelSelector-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-in-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-in2-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-scale-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-xChannelSelector-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-yChannelSelector-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDistantLightElement-dom-azimuth-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDistantLightElement-dom-elevation-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDistantLightElement-svgdom-azimuth-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDistantLightElement-svgdom-elevation-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDropShadowElement-dom-dx-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDropShadowElement-dom-dy-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDropShadowElement-dom-in-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-color-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-opacity-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDropShadowElement-dom-stdDeviation-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-dx-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-dy-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-in-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-color-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-opacity-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-stdDeviation-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEFloodElement-dom-flood-color-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEFloodElement-dom-flood-opacity-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEFloodElement-inherit-flood-color-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-color-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-opacity-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-in-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-call-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEGaussianBlurElement-svgdom-in-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEMergeNodeElement-dom-in-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEMergeNodeElement-svgdom-in-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEMorphologyElement-dom-in-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEMorphologyElement-dom-operator-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEMorphologyElement-dom-radius-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-in-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-operator-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-radius-call-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEOffsetElement-dom-dx-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEOffsetElement-dom-dy-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEOffsetElement-dom-in-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEOffsetElement-svgdom-dx-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEOffsetElement-svgdom-dy-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEOffsetElement-svgdom-in-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEPointLightElement-dom-x-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEPointLightElement-dom-y-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEPointLightElement-dom-z-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEPointLightElement-svgdom-x-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEPointLightElement-svgdom-y-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEPointLightElement-svgdom-z-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpecularLightingElement-dom-in-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpecularLightingElement-dom-specularConstant-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpecularLightingElement-dom-specularExponent-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpecularLightingElement-dom-suraceScale-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpecularLightingElement-inherit-lighting-color-css-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpecularLightingElement-lighting-color-css-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpecularLightingElement-remove-lightSource-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-in-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-specularConstant-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-specularExponent-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-suraceScale-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpotLightElement-dom-limitingConeAngle-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtX-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtY-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtZ-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpotLightElement-dom-specularExponent-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpotLightElement-dom-x-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpotLightElement-dom-y-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpotLightElement-dom-z-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpotLightElement-svgdom-limitingConeAngle-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtX-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtY-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtZ-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpotLightElement-svgdom-specularExponent-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpotLightElement-svgdom-x-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpotLightElement-svgdom-y-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFESpotLightElement-svgdom-z-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFETileElement-dom-in-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFETileElement-svgdom-in-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFETurbulenceElement-dom-numOctaves-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFETurbulenceElement-dom-seed-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFETurbulenceElement-dom-stitchTiles-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFETurbulenceElement-dom-type-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-numOctaves-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-seed-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-stitchTiles-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-type-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterElement-dom-filterRes-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterElement-dom-filterUnits-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterElement-dom-height-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterElement-dom-primitiveUnits-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterElement-dom-width-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterElement-dom-x-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterElement-dom-y-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterElement-svgdom-filterRes-call-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterElement-svgdom-filterResX-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterElement-svgdom-filterResY-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterElement-svgdom-filterUnits-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterElement-svgdom-height-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterElement-svgdom-primitiveUnits-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterElement-svgdom-width-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterElement-svgdom-x-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterElement-svgdom-y-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-height-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-result-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-width-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-x-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-y-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-height-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-result-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-width-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-x-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-y-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGForeignObjectElement-dom-height-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGForeignObjectElement-dom-requiredFeatures-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGForeignObjectElement-dom-width-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGForeignObjectElement-dom-x-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGForeignObjectElement-dom-y-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGForeignObjectElement-svgdom-height-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGForeignObjectElement-svgdom-requiredFeatures-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGForeignObjectElement-svgdom-width-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGForeignObjectElement-svgdom-x-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGForeignObjectElement-svgdom-y-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGGElement-dom-requiredFeatures-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGGElement-svgdom-requiredFeatures-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGImageElement-dom-height-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGImageElement-dom-preserveAspectRatio-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGImageElement-dom-requiredFeatures-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGImageElement-dom-width-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGImageElement-dom-x-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGImageElement-dom-y-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGImageElement-svgdom-height-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGImageElement-svgdom-width-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGImageElement-svgdom-x-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGImageElement-svgdom-y-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGLineElement-dom-requiredFeatures-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGLineElement-dom-x1-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGLineElement-dom-x2-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGLineElement-dom-y1-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGLineElement-dom-y2-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGLineElement-svgdom-x1-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGLineElement-svgdom-x2-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGLineElement-svgdom-y1-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGLineElement-svgdom-y2-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientTransform-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientUnits-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGLinearGradientElement-dom-x1-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGLinearGradientElement-dom-x2-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGLinearGradientElement-dom-y1-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGLinearGradientElement-dom-y2-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientTransform-prop-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientUnits-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x1-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x2-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y1-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y2-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMarkerElement-dom-markerHeight-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMarkerElement-dom-markerUnits-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMarkerElement-dom-markerWidth-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMarkerElement-dom-orient-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMarkerElement-dom-refX-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMarkerElement-dom-refY-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMarkerElement-svgdom-markerHeight-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMarkerElement-svgdom-markerUnits-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMarkerElement-svgdom-markerWidth-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMarkerElement-svgdom-orientAngle-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMarkerElement-svgdom-orientType-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMarkerElement-svgdom-refX-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMarkerElement-svgdom-refY-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMarkerElement-svgdom-setOrientToAngle-call-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMarkerElement-svgdom-setOrientToAuto-call-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMaskElement-dom-height-attr-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMaskElement-dom-maskContentUnits-attr-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMaskElement-dom-maskUnits-attr-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMaskElement-dom-width-attr-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMaskElement-dom-x-attr-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMaskElement-dom-y-attr-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMaskElement-svgdom-height-prop-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMaskElement-svgdom-maskContentUnits-prop-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMaskElement-svgdom-maskUnits-prop-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMaskElement-svgdom-width-prop-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMaskElement-svgdom-x-prop-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGMaskElement-svgdom-y-prop-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGPathElement-dom-requiredFeatures-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGPathElement-svgdom-requiredFeatures-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGPatternElement-dom-height-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGPatternElement-dom-patternContentUnits-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGPatternElement-dom-patternTransform-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGPatternElement-dom-patternUnits-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGPatternElement-dom-width-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGPatternElement-dom-x-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGPatternElement-dom-y-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGPatternElement-svgdom-height-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGPatternElement-svgdom-patternContentUnits-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGPatternElement-svgdom-patternTransform-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGPatternElement-svgdom-patternUnits-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGPatternElement-svgdom-width-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGPatternElement-svgdom-x-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGPatternElement-svgdom-y-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGPolygonElement-dom-requiredFeatures-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGPolygonElement-svgdom-requiredFeatures-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGPolylineElement-dom-requiredFeatures-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGPolylineElement-svgdom-requiredFeatures-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGRadialGradientElement-dom-cx-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGRadialGradientElement-dom-cy-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGRadialGradientElement-dom-fx-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGRadialGradientElement-dom-fy-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientTransform-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientUnits-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGRadialGradientElement-dom-r-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cx-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cy-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fx-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fy-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientTransform-prop-expected.png:
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientUnits-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGRadialGradientElement-svgdom-r-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGRectElement-dom-height-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGRectElement-dom-requiredFeatures-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGRectElement-dom-width-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGRectElement-dom-x-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGRectElement-dom-y-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGRectElement-svgdom-height-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGRectElement-svgdom-requiredFeatures-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGRectElement-svgdom-width-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGRectElement-svgdom-x-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGRectElement-svgdom-y-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGSVGElement-dom-requiredFeatures-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGSVGElement-svgdom-requiredFeatures-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGTRefElement-dom-href-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGTextElement-dom-dx-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGTextElement-dom-dy-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGTextElement-dom-requiredFeatures-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGTextElement-dom-rotate-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGTextElement-dom-textLength-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGTextElement-dom-transform-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGTextElement-dom-x-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGTextElement-dom-y-attr-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGTextElement-svgdom-dx-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGTextElement-svgdom-dy-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGTextElement-svgdom-requiredFeatures-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGTextElement-svgdom-rotate-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGTextElement-svgdom-textLength-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGTextElement-svgdom-transform-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGTextElement-svgdom-x-prop-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGTextElement-svgdom-y-prop-expected.png: Added.
  • platform/chromium-win-xp/svg/dynamic-updates: Removed.
  • platform/chromium-win-xp/svg/dynamic-updates/SVGPatternElement-dom-patternContentUnits-attr-expected.png: Removed.
  • platform/chromium-win-xp/svg/dynamic-updates/SVGPatternElement-svgdom-patternContentUnits-prop-expected.png: Removed.
  • platform/chromium-win/svg/dynamic-updates/SVGCircleElement-dom-cx-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGCircleElement-dom-cy-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGCircleElement-dom-r-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGCircleElement-dom-requiredFeatures-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGCircleElement-svgdom-cx-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGCircleElement-svgdom-cy-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGCircleElement-svgdom-r-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGCircleElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGClipPathElement-dom-clipPathUnits-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGClipPathElement-svgdom-clipPathUnits-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGCursorElement-dom-x-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGCursorElement-dom-y-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGCursorElement-svgdom-x-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGCursorElement-svgdom-y-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGEllipseElement-dom-cx-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGEllipseElement-dom-cy-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGEllipseElement-dom-requiredFeatures-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGEllipseElement-dom-rx-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGEllipseElement-dom-ry-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGEllipseElement-svgdom-cx-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGEllipseElement-svgdom-cy-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGEllipseElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGEllipseElement-svgdom-rx-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGEllipseElement-svgdom-ry-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEColorMatrixElement-dom-in-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEColorMatrixElement-dom-type-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEColorMatrixElement-dom-values-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-in-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-type-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEComponentTransferElement-dom-amplitude-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEComponentTransferElement-dom-exponent-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEComponentTransferElement-dom-intercept-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEComponentTransferElement-dom-offset-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEComponentTransferElement-dom-slope-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEComponentTransferElement-dom-tableValues-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEComponentTransferElement-dom-type-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-amplitude-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-exponent-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-intercept-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-offset-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-slope-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEComponentTransferElement-svgdom-tableValues-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFECompositeElement-dom-in-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFECompositeElement-dom-in2-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFECompositeElement-dom-k1-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFECompositeElement-dom-k2-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFECompositeElement-dom-k3-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFECompositeElement-dom-k4-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFECompositeElement-dom-operator-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFECompositeElement-svgdom-in-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFECompositeElement-svgdom-in2-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFECompositeElement-svgdom-k1-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFECompositeElement-svgdom-k2-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFECompositeElement-svgdom-k3-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFECompositeElement-svgdom-k4-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFECompositeElement-svgdom-operator-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-bias-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-divisor-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-edgeMode-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-in-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelMatrix-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelUnitLength-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-order-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-preserveAlpha-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-bias-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-divisor-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-edgeMode-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-in-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelMatrix-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelUnitLength-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-order-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-preserveAlpha-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-diffuseConstant-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-in-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-lighting-color-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-surfaceScale-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDiffuseLightingElement-inherit-lighting-color-css-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDiffuseLightingElement-lighting-color-css-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-diffuseConstant-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-in-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-surfaceScale-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-in-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-in2-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-scale-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-xChannelSelector-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-yChannelSelector-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-in-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-in2-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-scale-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-xChannelSelector-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-yChannelSelector-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDistantLightElement-dom-azimuth-attr-expected.png: Added.
  • platform/chromium-win/svg/dynamic-updates/SVGFEDistantLightElement-dom-elevation-attr-expected.png: Added.
  • platform/chromium-win/svg/dynamic-updates/SVGFEDistantLightElement-svgdom-azimuth-prop-expected.png: Added.
  • platform/chromium-win/svg/dynamic-updates/SVGFEDistantLightElement-svgdom-elevation-prop-expected.png: Added.
  • platform/chromium-win/svg/dynamic-updates/SVGFEDropShadowElement-dom-dx-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDropShadowElement-dom-dy-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDropShadowElement-dom-in-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-color-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-opacity-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDropShadowElement-dom-stdDeviation-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-dx-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-dy-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-in-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-color-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-opacity-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-stdDeviation-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEFloodElement-dom-flood-color-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEFloodElement-dom-flood-opacity-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEFloodElement-inherit-flood-color-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-color-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-opacity-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-in-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-call-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEGaussianBlurElement-svgdom-in-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEMergeNodeElement-dom-in-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEMergeNodeElement-svgdom-in-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEMorphologyElement-dom-in-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEMorphologyElement-dom-operator-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEMorphologyElement-dom-radius-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-in-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-operator-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEMorphologyElement-svgdom-radius-call-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEOffsetElement-dom-dx-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEOffsetElement-dom-dy-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEOffsetElement-dom-in-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEOffsetElement-svgdom-dx-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEOffsetElement-svgdom-dy-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEOffsetElement-svgdom-in-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEPointLightElement-dom-x-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEPointLightElement-dom-y-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEPointLightElement-dom-z-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEPointLightElement-svgdom-x-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEPointLightElement-svgdom-y-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFEPointLightElement-svgdom-z-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpecularLightingElement-dom-in-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpecularLightingElement-dom-specularConstant-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpecularLightingElement-dom-specularExponent-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpecularLightingElement-dom-suraceScale-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpecularLightingElement-inherit-lighting-color-css-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpecularLightingElement-lighting-color-css-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpecularLightingElement-remove-lightSource-expected.png: Added.
  • platform/chromium-win/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-in-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-specularConstant-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-specularExponent-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-suraceScale-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpotLightElement-dom-limitingConeAngle-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtX-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtY-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtZ-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpotLightElement-dom-specularExponent-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpotLightElement-dom-x-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpotLightElement-dom-y-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpotLightElement-dom-z-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpotLightElement-svgdom-limitingConeAngle-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtX-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtY-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtZ-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpotLightElement-svgdom-specularExponent-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpotLightElement-svgdom-x-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpotLightElement-svgdom-y-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFESpotLightElement-svgdom-z-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFETileElement-dom-in-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFETileElement-svgdom-in-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFETurbulenceElement-dom-numOctaves-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFETurbulenceElement-dom-seed-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFETurbulenceElement-dom-stitchTiles-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFETurbulenceElement-dom-type-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-numOctaves-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-seed-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-stitchTiles-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-type-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterElement-dom-filterRes-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterElement-dom-filterUnits-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterElement-dom-height-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterElement-dom-primitiveUnits-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterElement-dom-width-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterElement-dom-x-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterElement-dom-y-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterElement-svgdom-filterRes-call-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterElement-svgdom-filterResX-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterElement-svgdom-filterResY-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterElement-svgdom-filterUnits-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterElement-svgdom-height-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterElement-svgdom-primitiveUnits-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterElement-svgdom-width-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterElement-svgdom-x-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterElement-svgdom-y-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-height-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-result-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-width-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-x-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-y-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-height-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-result-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-width-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-x-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-y-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGForeignObjectElement-dom-height-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGForeignObjectElement-dom-requiredFeatures-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGForeignObjectElement-dom-width-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGForeignObjectElement-dom-x-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGForeignObjectElement-dom-y-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGForeignObjectElement-svgdom-height-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGForeignObjectElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGForeignObjectElement-svgdom-width-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGForeignObjectElement-svgdom-x-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGForeignObjectElement-svgdom-y-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGGElement-dom-requiredFeatures-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGGElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGImageElement-dom-height-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGImageElement-dom-preserveAspectRatio-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGImageElement-dom-requiredFeatures-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGImageElement-dom-width-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGImageElement-dom-x-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGImageElement-dom-y-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGImageElement-svgdom-height-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGImageElement-svgdom-width-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGImageElement-svgdom-x-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGImageElement-svgdom-y-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGLineElement-dom-requiredFeatures-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGLineElement-dom-x1-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGLineElement-dom-x2-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGLineElement-dom-y1-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGLineElement-dom-y2-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGLineElement-svgdom-x1-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGLineElement-svgdom-x2-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGLineElement-svgdom-y1-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGLineElement-svgdom-y2-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientTransform-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientUnits-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGLinearGradientElement-dom-x1-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGLinearGradientElement-dom-x2-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGLinearGradientElement-dom-y1-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGLinearGradientElement-dom-y2-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientTransform-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientUnits-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x1-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x2-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y1-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y2-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMarkerElement-dom-markerHeight-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMarkerElement-dom-markerUnits-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMarkerElement-dom-markerWidth-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMarkerElement-dom-orient-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMarkerElement-dom-refX-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMarkerElement-dom-refY-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMarkerElement-svgdom-markerHeight-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMarkerElement-svgdom-markerUnits-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMarkerElement-svgdom-markerWidth-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMarkerElement-svgdom-orientAngle-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMarkerElement-svgdom-orientType-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMarkerElement-svgdom-refX-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMarkerElement-svgdom-refY-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMarkerElement-svgdom-setOrientToAngle-call-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMarkerElement-svgdom-setOrientToAuto-call-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMaskElement-dom-height-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMaskElement-dom-maskContentUnits-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMaskElement-dom-maskUnits-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMaskElement-dom-width-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMaskElement-dom-x-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMaskElement-dom-y-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMaskElement-svgdom-height-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMaskElement-svgdom-maskContentUnits-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMaskElement-svgdom-maskUnits-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMaskElement-svgdom-width-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMaskElement-svgdom-x-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGMaskElement-svgdom-y-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGPathElement-dom-requiredFeatures-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGPathElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGPatternElement-dom-height-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGPatternElement-dom-patternContentUnits-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGPatternElement-dom-patternTransform-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGPatternElement-dom-patternUnits-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGPatternElement-dom-width-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGPatternElement-dom-x-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGPatternElement-dom-y-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGPatternElement-svgdom-height-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGPatternElement-svgdom-patternContentUnits-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGPatternElement-svgdom-patternTransform-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGPatternElement-svgdom-patternUnits-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGPatternElement-svgdom-width-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGPatternElement-svgdom-x-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGPatternElement-svgdom-y-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGPolygonElement-dom-requiredFeatures-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGPolygonElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGPolylineElement-dom-requiredFeatures-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGPolylineElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGRadialGradientElement-dom-cx-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGRadialGradientElement-dom-cy-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGRadialGradientElement-dom-fx-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGRadialGradientElement-dom-fy-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientTransform-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientUnits-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGRadialGradientElement-dom-r-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cx-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cy-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fx-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fy-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientTransform-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientUnits-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGRadialGradientElement-svgdom-r-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGRectElement-dom-height-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGRectElement-dom-requiredFeatures-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGRectElement-dom-width-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGRectElement-dom-x-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGRectElement-dom-y-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGRectElement-svgdom-height-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGRectElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGRectElement-svgdom-width-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGRectElement-svgdom-x-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGRectElement-svgdom-y-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGSVGElement-dom-requiredFeatures-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGSVGElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGTRefElement-dom-href-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGTextElement-dom-dx-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGTextElement-dom-dy-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGTextElement-dom-lengthAdjust-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGTextElement-dom-requiredFeatures-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGTextElement-dom-rotate-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGTextElement-dom-transform-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGTextElement-dom-x-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGTextElement-dom-y-attr-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGTextElement-svgdom-dx-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGTextElement-svgdom-dy-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGTextElement-svgdom-lengthAdjust-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGTextElement-svgdom-requiredFeatures-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGTextElement-svgdom-rotate-prop-expected.png: Added.
  • platform/chromium-win/svg/dynamic-updates/SVGTextElement-svgdom-transform-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGTextElement-svgdom-x-prop-expected.png:
  • platform/chromium-win/svg/dynamic-updates/SVGTextElement-svgdom-y-prop-expected.png:
  • platform/chromium/test_expectations.txt:
10:22 AM Changeset in webkit [110068] by senorblanco@chromium.org
  • 2 edits in trunk/LayoutTests

[chromium] Unreviewed gardening.

  • platform/chromium/test_expectations.txt:
10:16 AM Changeset in webkit [110067] by qi.2.zhang@nokia.com
  • 4 edits in trunk

[Qt] Unskip http/tests/websocket/tests/hixie76/long-invalid-header.html
https://bugs.webkit.org/show_bug.cgi?id=80516

Reviewed by Csaba Osztrogonác.

Source/WebCore:

Missed some files related to websocket, take them in.

  • Target.pri:

LayoutTests:

  • platform/qt-5.0-wk2/Skipped:
10:04 AM LayoutUnit edited by leviw@chromium.org
Adding a line to the table specifying that MathML uses pixel snapped … (diff)
9:55 AM WebKitGTK/1.8.x edited by plaes@plaes.org
Added 109584 (with gtk+-3.3.18 lots of flickering happens during page … (diff)
9:47 AM Changeset in webkit [110066] by ap@apple.com
  • 13 edits
    2 moves
    1 delete in trunk/Source/WebCore

Merge AsyncFileStream with FileStreamProxy
https://bugs.webkit.org/show_bug.cgi?id=80325

Reviewed by Filip Pizlo.

AsyncFileStream sounds like a platform concept, but the implementation is web specific.
Better to just keep it in one place.

This is a step toward decoupling blob scheme support from ResourceHandle, which is supposed
to be an interface to platform networking APIs only, and definitely shouldn't know about
Web concepts.

No change in functionality, so no tests.

  • CMakeLists.txt:
  • GNUmakefile.list.am:
  • Target.pri:
  • WebCore.gypi:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.xcodeproj/project.pbxproj: Updated for moved and removed files. Namely, platform/AsyncFileStream is dead, and fileapi/FileStreamProxy is now fileapi/AsyncFileStream.
  • fileapi/AsyncFileStream.cpp: Copied from Source/WebCore/fileapi/FileStreamProxy.cpp. (WebCore::AsyncFileStream::AsyncFileStream): (WebCore::AsyncFileStream::create): (WebCore::AsyncFileStream::~AsyncFileStream): (WebCore::AsyncFileStream::fileThread): (WebCore::didStart): (WebCore::AsyncFileStream::startOnFileThread): (WebCore::AsyncFileStream::stop): (WebCore::derefProxyOnContext): (WebCore::AsyncFileStream::stopOnFileThread): (WebCore::didGetSize): (WebCore::AsyncFileStream::getSize): (WebCore::AsyncFileStream::getSizeOnFileThread): (WebCore::didOpen): (WebCore::AsyncFileStream::openForRead): (WebCore::AsyncFileStream::openForReadOnFileThread): (WebCore::AsyncFileStream::openForWrite): (WebCore::AsyncFileStream::openForWriteOnFileThread): (WebCore::AsyncFileStream::close): (WebCore::AsyncFileStream::closeOnFileThread): (WebCore::didRead): (WebCore::AsyncFileStream::read): (WebCore::AsyncFileStream::readOnFileThread): (WebCore::didWrite): (WebCore::AsyncFileStream::write): (WebCore::AsyncFileStream::writeOnFileThread): (WebCore::didTruncate): (WebCore::AsyncFileStream::truncate): (WebCore::AsyncFileStream::truncateOnFileThread):
  • fileapi/AsyncFileStream.h: Copied from Source/WebCore/fileapi/FileStreamProxy.h. (WebCore): (AsyncFileStream): (WebCore::AsyncFileStream::client): (WebCore::AsyncFileStream::setClient):
  • fileapi/FileStreamProxy.cpp: Removed.
  • fileapi/FileStreamProxy.h: Removed.
  • loader/ResourceLoader.cpp: (WebCore::ResourceLoader::createAsyncFileStream):
  • platform/AsyncFileStream.h: Removed. Fewer files!
  • platform/network/BlobRegistry.h: Removed createResourceHandle(). It's logically a method on in-process BlobRegistryImpl only, and we no longer need to call this from platform code.
  • platform/network/BlobRegistryImpl.cpp: (WebCore::createResourceHandle): (WebCore::registerBlobResourceHandleConstructor): (WebCore::BlobRegistryImpl::registerBlobURL):
  • platform/network/BlobRegistryImpl.h: Except for chromium, "blob" is a scheme that's handled internally. Added hooks for that.
  • platform/network/ResourceHandle.cpp: (WebCore::builtinResourceHandleConstructorMap): (WebCore::ResourceHandle::registerBuiltinConstructor): (WebCore::ResourceHandle::create):
  • platform/network/ResourceHandle.h: Added a way for other code to register handlers for URL schemes. Non-Chromium platforms use this for blob: now.
9:38 AM Changeset in webkit [110065] by mitz@apple.com
  • 3 edits
    2 adds in trunk

<rdar://problem/10923294> REGRESSION (r100847): Entries are clipped out in Day One
https://bugs.webkit.org/show_bug.cgi?id=80494

Reviewed by Sam Weinig.

Source/WebCore:

Test: fast/dom/HTMLDocument/width-and-height.html

  • html/HTMLDocument.idl: Reverted r100847 by re-enabling the width and height properties

in the JavaScript bindings.

LayoutTests:

  • fast/dom/HTMLDocument/width-and-height-expected.txt: Added.
  • fast/dom/HTMLDocument/width-and-height.html: Added.
9:27 AM Changeset in webkit [110064] by Philippe Normand
  • 4 edits in trunk

[GTK] media/audio-garbage-collect.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=72698

Reviewed by Xan Lopez.

Source/WebCore:

Call ::hasPendingActivity() instead of ::paused() when checking if
the audio element is still active. This is similar to what the
image element (another ActiveDOMObject implementation) does just
above. This contributes to fixing the audio-garbage-collect.html
test.

  • bindings/js/JSNodeCustom.cpp:

(WebCore::isReachableFromDOM):

LayoutTests:

  • platform/gtk/test_expectations.txt: test is no longer flaky.
9:23 AM Changeset in webkit [110063] by adele@apple.com
  • 2 edits in trunk/Source/WebCore

REGRESSION(r96566): Cursor is I-beam upon dragging an attachment in mail
https://bugs.webkit.org/show_bug.cgi?id=80458
<rdar://problem/10873195>

Reviewed by Dan Bernstein.

No tests because we currently don't have any test machinery for cursors.

Make sure the shortcut to always use an iBeam cursor during selection isn't used during dragging.
Before r96566, we handled plugin cursors as a special case before calling into selectCursor, so we never hit this code path.

  • page/EventHandler.cpp: (WebCore::EventHandler::selectCursor):
9:23 AM Changeset in webkit [110062] by Philippe Normand
  • 2 edits in trunk/Tools

[GTK] remove webkitpy dependency in run-gtk-tests
https://bugs.webkit.org/show_bug.cgi?id=80500

Reviewed by Martin Robinson.

Replace Executive calls with bare subprocess calls.

  • Scripts/run-gtk-tests:

(TestRunner):
(TestRunner._lookup_atspi2_binary):
(TestRunner.run):
(TestRunner.run.run_for_real):

9:15 AM Changeset in webkit [110061] by commit-queue@webkit.org
  • 4 edits in trunk/Source/WebCore

[EFL] Key press event is not processed properly.
https://bugs.webkit.org/show_bug.cgi?id=80491

Patch by ChangSeok Oh <ChangSeok Oh> on 2012-03-07
Reviewed by Gustavo Noronha Silva.

This issue is related with mutation observer feature.
If enter key is pressed, then a keyboard event should be processed
and reach to the mutation observer, but it doesn't.
Some special keys like Enter, Backspace and Tab key should be processed
and change to a single character code, but EFL port hasn't handled like that.

At least we can verify this with following two tests as I know. but they require another
functionality for bug79601. I'm going to submit the patch for it after this one.

Test: fast/mutation/end-of-task-delivery.html

fast/mutation/inline-event-listener.html

  • platform/efl/EflKeyboardUtilities.cpp:

(WebCore::singleCharacterString):
(WebCore):

  • platform/efl/EflKeyboardUtilities.h:

(WebCore):

  • platform/efl/PlatformKeyboardEventEfl.cpp:

(WebCore::PlatformKeyboardEvent::PlatformKeyboardEvent):

9:11 AM Changeset in webkit [110060] by Philippe Normand
  • 2 edits in trunk/Tools

Unreviewed, GTK build fix after r110059.

  • Scripts/run-gtk-tests:

(TestRunner._check_if_tests_have_timed_out):
(TestRunner.run.run_tests):
(TestRunner):

8:58 AM Changeset in webkit [110059] by Philippe Normand
  • 2 edits in trunk/Tools

[GTK] race condition in run-gtk-tests
https://bugs.webkit.org/show_bug.cgi?id=80495

Reviewed by Martin Robinson.

Refactored the script to wait the a11y dbus service becomes
available before starting the tests.

  • Scripts/run-gtk-tests:

(TestRunner._lookup_atspi2_binary):
(TestRunner):
(TestRunner._wait_dbus_service_and_run):
(TestRunner._wait_dbus_service_and_run.on_name_appeared):
(TestRunner._wait_dbus_service_and_run.on_name_vanished):
(TestRunner.run):
(TestRunner.run.bailout):
(TestRunner.run.run_for_real):

8:56 AM Changeset in webkit [110058] by commit-queue@webkit.org
  • 3 edits in trunk/Tools

[Qt] REGRESSION(r109575) Broke tap-to-zoom gesture
https://bugs.webkit.org/show_bug.cgi?id=80425

Patch by Dinu Jacob <dinu.jacob@nokia.com> on 2012-03-07
Reviewed by Simon Hausmann.

Set startScreenPos in mock touch point

  • MiniBrowser/qt/MiniBrowserApplication.cpp:

(MiniBrowserApplication::notify):

  • MiniBrowser/qt/MiniBrowserApplication.h:

(MiniBrowserApplication):

8:52 AM Changeset in webkit [110057] by gavinp@chromium.org
  • 2 edits in trunk/Source/WebCore

Add Histograms for reporting on PageCache reject reasons
https://bugs.webkit.org/show_bug.cgi?id=80187

Enhance the PageCache debug mode so that it uses Histograms to
report on causes of failure. Turn on the debug printing path
even in non-debug Chromium builds, so these histograms will
update.

Reviewed by Brady Eidson.

No new tests, does not change behaviour.

  • history/PageCache.cpp:

(WebCore):
(WebCore::logCanCacheFrameDecision):
(WebCore::logCanCachePageDecision):
(WebCore::PageCache::canCache):

8:35 AM Changeset in webkit [110056] by commit-queue@webkit.org
  • 6 edits in trunk/Source

[Chromium] Remove use_skia option from GYP
https://bugs.webkit.org/show_bug.cgi?id=75811

Patch by Elliot Poger <epoger@google.com> on 2012-03-07
Reviewed by Tony Chang.

Source/WebCore:

  • WebCore.gyp/WebCore.gyp:

Source/WebKit/chromium:

  • WebKit.gyp:
  • WebKit.gypi:
  • features.gypi:
8:29 AM Changeset in webkit [110055] by commit-queue@webkit.org
  • 17 edits
    2 adds in trunk/Source/WebCore

[Forms] Introduce LabelableElement to share "labels" attribute implementation
https://bugs.webkit.org/show_bug.cgi?id=80392

Patch by Yoshifumi Inoue <yosin@chromium.org> on 2012-03-07
Reviewed by Kent Tamura.

This patch introduces new class LabelableElement as base class of
HTMLFormControlElement for sharing implementation of "labels"
attribute among form-associate elements, "meter" element, and
"progress" element.

This patch allows us to change base class of HTMLMeterElement and
HTMLProgressElement dervied from HTMLFormControlElement to
HTMLElement for remove them from HTMLFormElement::m_associatedFormElements
where we don't need to put "meter" and "progress" elements(bug 80381.)

This patch also changes implementation of isLabelable using virtual
method rather than sequence of hasTagName for execution speed and
better readability.

No new tests are required. No behavior changes.

  • CMakeLists.txt: Add LabelableElement.cpp and .h
  • GNUmakefile.list.am: Add LabelableElement.cpp and .h
  • Target.pri: Add LabelableElement.cpp and .h
  • WebCore.gypi: Add LabelableElement.cpp and .h
  • WebCore.vcproj/WebCore.vcproj: Add LabelableElement.cpp and .h
  • WebCore.xcodeproj/project.pbxproj: Add LabelableElement.cpp and .h
  • html/HTMLButtonElement.h: Implement isLabelable.
  • html/HTMLFormControlElement.cpp:

(WebCore::HTMLFormControlElement::HTMLFormControlElement): Change direct base class.

  • html/HTMLFormControlElement.h:

(HTMLFormControlElement): Change direct base class.

  • html/HTMLInputElement.cpp:

(WebCore::HTMLInputElement::isLabelable): Removed to use virtual method instead of hasTagName.
(WebCore):

  • html/HTMLInputElement.h: Declaration of isLabelable.
  • html/HTMLKeygenElement.h: Implement isLabelable.
  • html/HTMLMeterElement.h: Implement isLabelable.
  • html/HTMLProgressElement.h: Implement isLabelable.
  • html/HTMLSelectElement.h: Implement isLabelable.
  • html/HTMLTextAreaElement.h: Implement isLabelable.
  • html/LabelableElement.cpp: Added.

(WebCore):
(WebCore::LabelableElement::LabelableElement):
(WebCore::LabelableElement::~LabelableElement):
(WebCore::LabelableElement::labels): Moved from HTMLFormControlElement.

  • html/LabelableElement.h: Added.

(WebCore):
(LabelableElement):

7:46 AM Changeset in webkit [110054] by Simon Hausmann
  • 2 edits in trunk/Tools

[Qt] Windows build fix.

Reviewed by Tor Arne Vestbø.

Pass the -j parameter only to "make", not "nmake".

  • Scripts/webkitdirs.pm:

(buildQMakeProjects):

7:16 AM Changeset in webkit [110053] by senorblanco@chromium.org
  • 2 edits in trunk/LayoutTests

[chromium] Marking file-writer-events.html as flaky-crashing on Win.

Unreviewed gardening.

  • platform/chromium/test_expectations.txt:
6:07 AM Changeset in webkit [110052] by commit-queue@webkit.org
  • 5 edits in trunk

Source/WebCore: HTMLTrackElement.idl doesn't have default attribute.
https://bugs.webkit.org/show_bug.cgi?id=80116

Patch by Arun Patole <bmf834@motorola.com> on 2012-03-07
Reviewed by Kentaro Hara.

Renamed isDefault to 'default' so that in JS, it will be track.default instead of track.isDefault.

  • html/HTMLTrackElement.idl:

LayoutTests: HTMLTrackElement.idl doesn't have default attribute.
https://bugs.webkit.org/show_bug.cgi?id=80116

Patch by Arun Patole <bmf834@motorola.com> on 2012-03-07
Reviewed by Kentaro Hara.

Make sure 'default' IDL attribute reflects the content attribute of the same name.

  • media/track/track-default-attribute-expected.txt:
  • media/track/track-default-attribute.html:
6:05 AM Changeset in webkit [110051] by senorblanco@chromium.org
  • 2 edits in trunk/LayoutTests

[chromium] Mark rtl-scrollbar.html as flaky.

Unreviewed gardening.

  • platform/chromium/test_expectations.txt:
5:53 AM Changeset in webkit [110050] by Simon Hausmann
  • 9 edits in trunk

[Qt] Fix compilation without QtQuick1 https://bugs.webkit.org/show_bug.cgi?id=80503

Reviewed by Tor Arne Vestbø.

.:

  • Source/tests.pri: Compile qml1 tests only with Qt 4 for the moment.

Source/WebKit/qt:

Compile and enable the QtQuick1/QML1 plugin and webview
only if we're using Qt 4 at the moment. QQuick1 clashes
with QQuick2 right now because both declare QDeclarativeEngine
and friends as classes.

  • declarative/plugin.cpp:

(WebKitQmlPlugin::registerTypes):

  • declarative/public.pri:
  • tests/tests.pri:

Tools:

Introduce HAVE_QQUICK1 as feature and added haveQtModule
as convenience function.

  • qmake/mkspecs/features/features.prf:
  • qmake/mkspecs/features/functions.prf:
5:32 AM Changeset in webkit [110049] by jochen@chromium.org
  • 8 edits
    7 copies in trunk/LayoutTests

Unreviewd, more editing/execCommand baselines for chromium-mac-lion

  • platform/chromium-mac-snowleopard/editing/execCommand/5080333-1-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/5080333-1-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/5080333-2-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/5080333-2-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/5136770-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/5136770-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/5138441-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/5138441-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/5142012-1-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/5142012-1-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/5142012-2-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/5142012-2-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/5190926-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/5190926-expected.png.
  • platform/chromium-mac/editing/execCommand/5080333-1-expected.png:
  • platform/chromium-mac/editing/execCommand/5080333-2-expected.png:
  • platform/chromium-mac/editing/execCommand/5136770-expected.png:
  • platform/chromium-mac/editing/execCommand/5138441-expected.png:
  • platform/chromium-mac/editing/execCommand/5142012-1-expected.png:
  • platform/chromium-mac/editing/execCommand/5142012-2-expected.png:
  • platform/chromium-mac/editing/execCommand/5190926-expected.png:
5:30 AM Changeset in webkit [110048] by kenneth@webkit.org
  • 3 edits in trunk/Source/WebKit2

Pinch zoom acts weirdly on nytimes.com while loading https://webkit.org/b/80508

Reviewed by Simon Hausmann.

Make sure to suspend the page while doing pinch zooming.
If the page is suspended (which happens while pinch zooming)
then do not send touch events to the page, even if it has
listeners.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::handleTouchEvent):

  • UIProcess/qt/QtViewportInteractionEngine.cpp:

(WebKit::QtViewportInteractionEngine::pinchGestureStarted):

4:28 AM Changeset in webkit [110047] by caio.oliveira@openbossa.org
  • 5 edits in trunk/Source/WebKit2

[Qt] QWebNavigationRequest 'action' property should have an enum type instead of int
https://bugs.webkit.org/show_bug.cgi?id=80164

Reviewed by Simon Hausmann.

Use the appropriate enum type instead of int. Make IgnoreRequest have a bigger
value that give some room for us to put Experimental values in the middle. This
way the Experimental values are in a valid range for the original enumeration. To
avoid confusion, the Experimental enumeration was renamed.

  • UIProcess/API/qt/qquickwebview_p.h:
  • UIProcess/API/qt/qwebnavigationrequest.cpp:

(QWebNavigationRequestPrivate):
(QWebNavigationRequest::setAction):
(QWebNavigationRequest::action):

  • UIProcess/API/qt/qwebnavigationrequest_p.h:
  • UIProcess/API/qt/tests/publicapi/tst_publicapi.cpp:
4:04 AM Changeset in webkit [110046] by abecsi@webkit.org
  • 7 edits in trunk/Source/WebKit2

[WK2] Make it possible to build without geolocation support
https://bugs.webkit.org/show_bug.cgi?id=80426

Reviewed by Simon Hausmann.

Add missing guards.

  • UIProcess/GeolocationPermissionRequestManagerProxy.cpp:

(WebKit::GeolocationPermissionRequestManagerProxy::didReceiveGeolocationPermissionDecision):

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::close):
(WebKit::WebPageProxy::processDidCrash):

  • WebProcess/Geolocation/GeolocationPermissionRequestManager.cpp:
  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::WebPage):
(WebKit):

  • WebProcess/WebPage/WebPage.h:

(WebPage):

  • WebProcess/WebPage/WebPage.messages.in:
3:54 AM Changeset in webkit [110045] by zoltan@webkit.org
  • 4 edits
    6 adds in trunk

[Qt] Add qmake config tests for JPEG and PNG library
https://bugs.webkit.org/show_bug.cgi?id=80398

Source/WebCore:

Reviewed by Tor Arne Vestbø.

Add JPEG and PNG library tests to config.tests and
add error() abort to WebCore.pri if tests don't work.

  • WebCore.pri:

Tools:

Add JPEG and PNG library tests to config.tests and
add error() abort to WebCore.pri if tests don't work.

Reviewed by Tor Arne Vestbø.

  • qmake/config.tests/libjpeg/libjpeg.cpp: Added.

(main):

  • qmake/config.tests/libjpeg/libjpeg.pro: Added.
  • qmake/config.tests/libpng/libpng.cpp: Added.

(main):

  • qmake/config.tests/libpng/libpng.pro: Added.
  • qmake/sync.profile:
3:30 AM Changeset in webkit [110044] by Simon Hausmann
  • 2 edits in trunk/Source/JavaScriptCore

ARM build fix.

Reviewed by Zoltan Herczeg.

Implement three-argument branch(Add,Sub)32.

  • assembler/MacroAssemblerARM.h:

(JSC::MacroAssemblerARM::add32):
(MacroAssemblerARM):
(JSC::MacroAssemblerARM::sub32):
(JSC::MacroAssemblerARM::branchAdd32):
(JSC::MacroAssemblerARM::branchSub32):

2:50 AM Changeset in webkit [110043] by podivilov@chromium.org
  • 7 edits in trunk

Web Inspector: extract source mapping logic from DebuggerPresentationModel to ScriptMappingImpl.
https://bugs.webkit.org/show_bug.cgi?id=80412

Reviewed by Vsevolod Vlasov.

Source/WebCore:

  • WebCore.gypi:
  • WebCore.vcproj/WebCore.vcproj:
  • inspector/compile-front-end.sh:
  • inspector/front-end/ScriptMapping.js:

(WebInspector.ScriptMappingImpl):
(WebInspector.ScriptMappingImpl.prototype.rawLocationToUILocation):
(WebInspector.ScriptMappingImpl.prototype.createLiveLocation):
(WebInspector.ScriptMappingImpl.prototype.uiSourceCodeList):
(WebInspector.ScriptMappingImpl.prototype._handleUISourceCodeListChanged):
(WebInspector.ScriptMappingImpl.prototype._uiSourceCodeListChanged):
(WebInspector.ScriptMappingImpl.prototype._bindScriptToRawSourceCode):
(WebInspector.ScriptMappingImpl.prototype.setFormatSource):
(WebInspector.ScriptMappingImpl.prototype.forceUpdateSourceMapping):
(WebInspector.ScriptMappingImpl.prototype.reset):

LayoutTests:

  • inspector/debugger/breakpoint-manager.html:
  • inspector/debugger/callstack-placards-discarded.html:
  • inspector/debugger/linkifier.html:
2:47 AM Changeset in webkit [110042] by mrowe@apple.com
  • 2 edits in trunk/Source/WebCore

Fix DerivedSources.make to not assume that WTF and WebCore build in to the same build directory.

We can't assume that wtf/Platform.h can be found inside BUILT_PRODUCTS_DIR as
that won't be the case if WTF and WebCore are building in to different build
directories. We should instead look for wtf/Platform.h in the header search path.

Unreviewed due to being a build fix.

  • DerivedSources.make: Set up the header search path, and invoke the compiler in

such a manner that it looks for wtf/Platform.h in that search path.

2:39 AM Changeset in webkit [110041] by jochen@chromium.org
  • 9 edits
    8 copies in trunk/LayoutTests

Unreviewed, add editing/execCommand baselines for chromium-mac-lion

  • platform/chromium-mac-snowleopard/editing/execCommand/4580583-1-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/4580583-1-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/4580583-2-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/4580583-2-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/4641880-1-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/4641880-1-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/4641880-2-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/4641880-2-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/4747450-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/4747450-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/4916402-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/4916402-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/4916541-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/4916541-expected.png.
  • platform/chromium-mac-snowleopard/editing/execCommand/4924441-expected.png: Copied from LayoutTests/platform/chromium-mac/editing/execCommand/4924441-expected.png.
  • platform/chromium-mac/editing/execCommand/4580583-1-expected.png:
  • platform/chromium-mac/editing/execCommand/4580583-2-expected.png:
  • platform/chromium-mac/editing/execCommand/4641880-1-expected.png:
  • platform/chromium-mac/editing/execCommand/4641880-2-expected.png:
  • platform/chromium-mac/editing/execCommand/4747450-expected.png:
  • platform/chromium-mac/editing/execCommand/4916402-expected.png:
  • platform/chromium-mac/editing/execCommand/4916541-expected.png:
  • platform/chromium-mac/editing/execCommand/4924441-expected.png:
2:33 AM Changeset in webkit [110040] by commit-queue@webkit.org
  • 1 edit
    4 adds in trunk/Source/WebCore

[BlackBerry] Upstream Texture and TextureCache
https://bugs.webkit.org/show_bug.cgi?id=80121

Patch by Robin Cao <robin.cao@torchmobile.com.cn> on 2012-03-07
Reviewed by Rob Buis.

Initial upstream, no new tests.

  • platform/graphics/blackberry/Texture.cpp: Added.

(WebCore):
(WebCore::copyImageData):
(WebCore::Texture::Texture):
(WebCore::Texture::~Texture):
(WebCore::Texture::updateContents):
(WebCore::Texture::setContentsToColor):
(WebCore::Texture::protect):

  • platform/graphics/blackberry/Texture.h: Added.

(WebCore):
(Texture):
(WebCore::Texture::create):
(WebCore::Texture::textureId):
(WebCore::Texture::isDirty):
(WebCore::Texture::hasTexture):
(WebCore::Texture::isColor):
(WebCore::Texture::isOpaque):
(WebCore::Texture::isProtected):
(WebCore::Texture::protect):
(WebCore::Texture::unprotect):
(WebCore::Texture::size):
(WebCore::Texture::width):
(WebCore::Texture::height):
(WebCore::Texture::bytesPerPixel):
(WebCore::Texture::setTextureId):

  • platform/graphics/blackberry/TextureCacheCompositingThread.cpp: Added.

(WebCore):
(TextureProtector):
(WebCore::TextureProtector::TextureProtector):
(WebCore::TextureProtector::~TextureProtector):
(WebCore::TextureCacheCompositingThread::TextureCacheCompositingThread):
(WebCore::TextureCacheCompositingThread::allocateTextureId):
(WebCore::TextureCacheCompositingThread::freeTextureId):
(WebCore::TextureCacheCompositingThread::collectGarbage):
(WebCore::TextureCacheCompositingThread::textureResized):
(WebCore::TextureCacheCompositingThread::textureDestroyed):
(WebCore::TextureCacheCompositingThread::install):
(WebCore::TextureCacheCompositingThread::evict):
(WebCore::TextureCacheCompositingThread::textureAccessed):
(WebCore::textureCacheCompositingThread):
(WebCore::TextureCacheCompositingThread::prune):
(WebCore::TextureCacheCompositingThread::clear):
(WebCore::TextureCacheCompositingThread::setMemoryUsage):
(WebCore::TextureCacheCompositingThread::textureForTiledContents):
(WebCore::TextureCacheCompositingThread::textureForColor):
(WebCore::TextureCacheCompositingThread::updateContents):
(WebCore::TextureCacheCompositingThread::key):

  • platform/graphics/blackberry/TextureCacheCompositingThread.h: Added.

(WebCore):
(TextureCacheCompositingThread):
(WebCore::TextureCacheCompositingThread::createTexture):
(WebCore::TextureCacheCompositingThread::memoryUsage):
(WebCore::TextureCacheCompositingThread::memoryLimit):
(WebCore::TextureCacheCompositingThread::setMemoryLimit):
(WebCore::TextureCacheCompositingThread::prune):
(WebCore::TextureCacheCompositingThread::ZombieTexture::ZombieTexture):
(ZombieTexture):
(WebCore::TextureCacheCompositingThread::incMemoryUsage):
(WebCore::TextureCacheCompositingThread::decMemoryUsage):
(WebCore::TextureCacheCompositingThread::ColorHash::hash):
(WebCore::TextureCacheCompositingThread::ColorHash::equal):
(ColorHash):
(ColorHashTraits):
(WebCore::TextureCacheCompositingThread::ColorHashTraits::constructDeletedValue):
(WebCore::TextureCacheCompositingThread::ColorHashTraits::isDeletedValue):

2:18 AM Changeset in webkit [110039] by wingo@igalia.com
  • 6 edits in trunk/Source/JavaScriptCore

Parser: Inline ScopeNodeData into ScopeNode
https://bugs.webkit.org/show_bug.cgi?id=79776

Reviewed by Geoffrey Garen.

It used to be that some ScopeNode members were kept in a separate
structure because sometimes they wouldn't be needed, and
allocating a ParserArena was expensive. This patch makes
ParserArena lazily allocate its IdentifierArena, allowing the
members to be included directly, which is simpler and easier to
reason about.

  • parser/ParserArena.cpp:

(JSC::ParserArena::ParserArena):
(JSC::ParserArena::reset):
(JSC::ParserArena::isEmpty):

  • parser/ParserArena.h:

(JSC::ParserArena::identifierArena): Lazily allocate the
IdentifierArena.

  • parser/Nodes.cpp:

(JSC::ScopeNode::ScopeNode):
(JSC::ScopeNode::singleStatement):
(JSC::ProgramNode::create):
(JSC::EvalNode::create):
(JSC::FunctionBodyNode::create):

  • parser/Nodes.h:

(JSC::ScopeNode::destroyData):
(JSC::ScopeNode::needsActivationForMoreThanVariables):
(JSC::ScopeNode::needsActivation):
(JSC::ScopeNode::hasCapturedVariables):
(JSC::ScopeNode::capturedVariableCount):
(JSC::ScopeNode::captures):
(JSC::ScopeNode::varStack):
(JSC::ScopeNode::functionStack):
(JSC::ScopeNode::neededConstants):
(ScopeNode):

  • bytecompiler/NodesCodegen.cpp:

(JSC::ScopeNode::emitStatementsBytecode): Inline ScopeNodeData
into ScopeNode. Adapt accessors.

2:11 AM Changeset in webkit [110038] by mrowe@apple.com
  • 3 edits
    1 add in trunk

Teach make to build WTF.

.:

  • Source/Makefile:

Source/WTF:

  • Makefile: Added.
1:39 AM Changeset in webkit [110037] by bashi@chromium.org
  • 6 edits
    4 adds in trunk

[WebSocket] Should raise SYNTAX_ERR when message contains unpaired surrogates
https://bugs.webkit.org/show_bug.cgi?id=80103

Reviewed by Kent Tamura.

Source/WebCore:

Add UTF8 validation checks for WebSocket message and close reason.

Tests: http/tests/websocket/tests/hybi/unpaired-surrogates-in-close-reason.html

http/tests/websocket/tests/hybi/unpaired-surrogates-in-message.html

  • Modules/websockets/WebSocket.cpp:

(WebCore::WebSocket::send): Raise SYNTAX_ERR if the message is invalid.
(WebCore::WebSocket::close):Raise SYNTAX_ERR if the reason is invalid.

  • Modules/websockets/WebSocketChannel.cpp:

(WebCore::WebSocketChannel::send): Check whether message is a valid UTF8 string.

LayoutTests:

Added tests for unpaired surrogates check for WebSocket message and close reason.
Updated two expectations for close() tests because further error message is added.

  • http/tests/websocket/tests/hybi/close-expected.txt: Updated.
  • http/tests/websocket/tests/hybi/unpaired-surrogates-in-close-reason-expected.txt: Added.
  • http/tests/websocket/tests/hybi/unpaired-surrogates-in-close-reason.html: Added.
  • http/tests/websocket/tests/hybi/unpaired-surrogates-in-message-expected.txt: Added.
  • http/tests/websocket/tests/hybi/unpaired-surrogates-in-message.html: Added.
  • http/tests/websocket/tests/hybi/workers/close-expected.txt: Updated.
1:31 AM Changeset in webkit [110036] by ukai@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed, update chromium test expectations

  • platform/chromium/test_expectations.txt:
1:24 AM Changeset in webkit [110035] by commit-queue@webkit.org
  • 4 edits in trunk

[EFL] Build warning: Fix warn_unused_result warnings.
https://bugs.webkit.org/show_bug.cgi?id=79194

Patch by Byungwoo Lee <bw80.lee@samsung.com> on 2012-03-07
Reviewed by Filip Pizlo.

Fixed build warning which is getting generated when not using return
value of a fuction, especially declared with warn_unused_result
attribute.

Source/WebCore:

  • platform/efl/SharedBufferEfl.cpp:

(WebCore::SharedBuffer::createWithContentsOfFile):

Tools:

  • DumpRenderTree/efl/ImageDiff.cpp:

(printImage):

1:04 AM Changeset in webkit [110034] by tkent@chromium.org
  • 7 edits in trunk/Source/WebCore

Cleanup of RenderTextControl::adjustControlHeightBasedOnLineHeight()
https://bugs.webkit.org/show_bug.cgi?id=80480

Reviewed by Hajime Morita.

The callsite of adjustControlHeightBasedOnLineHeight() stored
padding+border+margin height of the inner text in height(), and
adjustControlHeightBasedOnLineHeight() implementations refered it. It
was unreasonable and hard to understand.

The purpose of adjustControlHeightBasedOnLineHeight() is to compute

  • the maximum height of line-heights of the inner text and decorations
  • the maximum height of padding+border+margin heights of the inner text and decorations,

and to sum them up. This patch rewrites the code to make it understood easily.

adjustControlHeightBasedOnLineHeight() is renamed to
computeControlheight(), it takes additional parameter of
padding+boder+margin height, and returns the sum of them.

No behavior change.

  • rendering/RenderTextControl.cpp:

(WebCore::RenderTextControl::computeLogicalHeight):

  • rendering/RenderTextControl.h:

(RenderTextControl):

  • rendering/RenderTextControlMultiLine.cpp:

(WebCore::RenderTextControlMultiLine::computeControlHeight):

  • rendering/RenderTextControlMultiLine.h:

(RenderTextControlMultiLine):

  • rendering/RenderTextControlSingleLine.cpp:

(WebCore::RenderTextControlSingleLine::computeControlHeight):

  • rendering/RenderTextControlSingleLine.h:

(RenderTextControlSingleLine):

12:50 AM Changeset in webkit [110033] by eric@webkit.org
  • 134 edits
    196 deletes in trunk

Make WTF public headers use fully-qualified include paths and remove ForwardingHeaders/wtf
https://bugs.webkit.org/show_bug.cgi?id=80363

Reviewed by Mark Rowe.

Source/JavaScriptCore:

Historically WTF has been part of JavaScriptCore, and on Mac and Windows
its headers have appeared as part of the "private" headers exported by
JavaScriptCore. All of the WTF headers there are "flattened" into a single
private headers directory, and WebCore, WebKit and WebKit2 have used "ForwardingHeaders"
to re-map fully-qualified <wtf/text/Foo.h> includes to simple <JavaScriptCore/Foo.h> includes.

However, very soon, we are moving the WTF source code out of JavaScriptCore into its
own directory and project. As part of such, the WTF headers will no longer be part of
the JavaScriptCore private interfaces.
In preparation for that, this change makes both the Mac and Win builds export
WTF headers in a non-flattened manner. On Mac, that means into usr/local/include/wtf
(and subdirectories), on Windows for now that means JavaScriptCore/wtf (and subdirectories).

There are 5 parts to this change.

  1. Updates the JavaScriptCore XCode and VCProj files to actually install these headers

(and header directories) into the appropriate places in the build directory.

  1. Updates JavaScriptCore.xcodeproj to look for these WTF headers in this install location

(WebCore, WebKit, etc. had already been taught to look in previous patches).

  1. Fixes all JavaScriptCore source files, and WTF headers to include WTF headers

using fully qualified paths.

  1. Stops the Mac and Win builds from installing these WTF headers in their old "flattened" location.
  2. Removes WebCore and WebKit ForwardingHeaders/wtf directories now that the flattened headers no longer exist.

Unfortunately we see no way to do this change in smaller parts, since all of these steps are interdependant.
It is possible there are internal Apple projects which depend on JavaScriptCore/Foo.h working for WTF
headers, those will have to be updated to use <wtf/Foo.h> after this change.
I've discussed this proposed change at length with Mark Rowe, and my understanding is they
are ready for (and interested in) this change happening.

  • API/tests/JSNode.c:
  • API/tests/JSNodeList.c:
  • Configurations/Base.xcconfig:
  • JavaScriptCore.vcproj/JavaScriptCore/copy-files.cmd:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • assembler/MacroAssemblerCodeRef.h:
  • bytecompiler/BytecodeGenerator.h:
  • dfg/DFGOperations.cpp:
  • heap/GCAssertions.h:
  • heap/HandleHeap.h:
  • heap/HandleStack.h:
  • heap/MarkedSpace.h:
  • heap/PassWeak.h:
  • heap/Strong.h:
  • heap/Weak.h:
  • jit/HostCallReturnValue.cpp:
  • jit/JIT.cpp:
  • jit/JITStubs.cpp:
  • jit/ThunkGenerators.cpp:
  • parser/Lexer.cpp:
  • runtime/Completion.cpp:
  • runtime/Executable.cpp:
  • runtime/Identifier.h:
  • runtime/InitializeThreading.cpp:
  • runtime/JSDateMath.cpp:
  • runtime/JSGlobalObjectFunctions.cpp:
  • runtime/JSStringBuilder.h:
  • runtime/JSVariableObject.h:
  • runtime/NumberPrototype.cpp:
  • runtime/WriteBarrier.h:
  • tools/CodeProfile.cpp:
  • tools/TieredMMapArray.h:
  • wtf/AVLTree.h:
  • wtf/Alignment.h:
  • wtf/AlwaysInline.h:
  • wtf/ArrayBufferView.h:
  • wtf/Assertions.h:
  • wtf/Atomics.h:
  • wtf/Bitmap.h:
  • wtf/BoundsCheckedPointer.h:
  • wtf/CheckedArithmetic.h:
  • wtf/Deque.h:
  • wtf/ExportMacros.h:
  • wtf/FastAllocBase.h:
  • wtf/FastMalloc.h:
  • wtf/Float32Array.h:
  • wtf/Float64Array.h:
  • wtf/Functional.h:
  • wtf/HashCountedSet.h:
  • wtf/HashFunctions.h:
  • wtf/HashMap.h:
  • wtf/HashSet.h:
  • wtf/HashTable.h:
  • wtf/HashTraits.h:
  • wtf/Int16Array.h:
  • wtf/Int32Array.h:
  • wtf/Int8Array.h:
  • wtf/IntegralTypedArrayBase.h:
  • wtf/ListHashSet.h:
  • wtf/MainThread.h:
  • wtf/MetaAllocator.h:
  • wtf/Noncopyable.h:
  • wtf/OwnArrayPtr.h:
  • wtf/OwnPtr.h:
  • wtf/PackedIntVector.h:
  • wtf/ParallelJobs.h:
  • wtf/PassOwnArrayPtr.h:
  • wtf/PassOwnPtr.h:
  • wtf/PassRefPtr.h:
  • wtf/PassTraits.h:
  • wtf/Platform.h:
  • wtf/PossiblyNull.h:
  • wtf/RefCounted.h:
  • wtf/RefCountedLeakCounter.h:
  • wtf/RefPtr.h:
  • wtf/RetainPtr.h:
  • wtf/SimpleStats.h:
  • wtf/Spectrum.h:
  • wtf/StdLibExtras.h:
  • wtf/TCPageMap.h:
  • wtf/TemporaryChange.h:
  • wtf/ThreadSafeRefCounted.h:
  • wtf/Threading.h:
  • wtf/ThreadingPrimitives.h:
  • wtf/TypeTraits.h:
  • wtf/TypedArrayBase.h:
  • wtf/Uint16Array.h:
  • wtf/Uint32Array.h:
  • wtf/Uint8Array.h:
  • wtf/Uint8ClampedArray.h:
  • wtf/UnusedParam.h:
  • wtf/Vector.h:
  • wtf/VectorTraits.h:
  • wtf/dtoa/double-conversion.h:
  • wtf/dtoa/utils.h:
  • wtf/gobject/GRefPtr.h:
  • wtf/gobject/GlibUtilities.h:
  • wtf/text/AtomicString.h:
  • wtf/text/AtomicStringImpl.h:
  • wtf/text/CString.h:
  • wtf/text/StringConcatenate.h:
  • wtf/text/StringHash.h:
  • wtf/text/WTFString.h:
  • wtf/unicode/CharacterNames.h:
  • wtf/unicode/UTF8.h:
  • wtf/unicode/glib/UnicodeGLib.h:
  • wtf/unicode/qt4/UnicodeQt4.h:
  • wtf/unicode/wince/UnicodeWinCE.h:
  • wtf/url/api/ParsedURL.h:
  • wtf/url/api/URLString.h:
  • wtf/wince/FastMallocWinCE.h:
  • yarr/YarrJIT.cpp:

Source/WebCore:

ForwardingHeaders/wtf is no longer needed (or functional) now that
JavaScriptCore no longer includes the WTF headers as private headers.

  • DerivedSources.make:
  • ForwardingHeaders/wtf/ASCIICType.h: Removed.
  • ForwardingHeaders/wtf/AVLTree.h: Removed.
  • ForwardingHeaders/wtf/Alignment.h: Removed.
  • ForwardingHeaders/wtf/AlwaysInline.h: Removed.
  • ForwardingHeaders/wtf/ArrayBuffer.h: Removed.
  • ForwardingHeaders/wtf/ArrayBufferView.h: Removed.
  • ForwardingHeaders/wtf/Assertions.h: Removed.
  • ForwardingHeaders/wtf/Atomics.h: Removed.
  • ForwardingHeaders/wtf/Bitmap.h: Removed.
  • ForwardingHeaders/wtf/BloomFilter.h: Removed.
  • ForwardingHeaders/wtf/BumpPointerAllocator.h: Removed.
  • ForwardingHeaders/wtf/ByteArray.h: Removed.
  • ForwardingHeaders/wtf/CheckedArithmetic.h: Removed.
  • ForwardingHeaders/wtf/CheckedBoolean.h: Removed.
  • ForwardingHeaders/wtf/Compiler.h: Removed.
  • ForwardingHeaders/wtf/Complex.h: Removed.
  • ForwardingHeaders/wtf/CryptographicallyRandomNumber.h: Removed.
  • ForwardingHeaders/wtf/CurrentTime.h: Removed.
  • ForwardingHeaders/wtf/DataLog.h: Removed.
  • ForwardingHeaders/wtf/DateInstanceCache.h: Removed.
  • ForwardingHeaders/wtf/DateMath.h: Removed.
  • ForwardingHeaders/wtf/DecimalNumber.h: Removed.
  • ForwardingHeaders/wtf/Decoder.h: Removed.
  • ForwardingHeaders/wtf/Deque.h: Removed.
  • ForwardingHeaders/wtf/DisallowCType.h: Removed.
  • ForwardingHeaders/wtf/DoublyLinkedList.h: Removed.
  • ForwardingHeaders/wtf/DynamicAnnotations.h: Removed.
  • ForwardingHeaders/wtf/Encoder.h: Removed.
  • ForwardingHeaders/wtf/ExportMacros.h: Removed.
  • ForwardingHeaders/wtf/FastAllocBase.h: Removed.
  • ForwardingHeaders/wtf/FastMalloc.h: Removed.
  • ForwardingHeaders/wtf/FixedArray.h: Removed.
  • ForwardingHeaders/wtf/Float32Array.h: Removed.
  • ForwardingHeaders/wtf/Float64Array.h: Removed.
  • ForwardingHeaders/wtf/Forward.h: Removed.
  • ForwardingHeaders/wtf/Functional.h: Removed.
  • ForwardingHeaders/wtf/GetPtr.h: Removed.
  • ForwardingHeaders/wtf/HashCountedSet.h: Removed.
  • ForwardingHeaders/wtf/HashFunctions.h: Removed.
  • ForwardingHeaders/wtf/HashMap.h: Removed.
  • ForwardingHeaders/wtf/HashSet.h: Removed.
  • ForwardingHeaders/wtf/HashTable.h: Removed.
  • ForwardingHeaders/wtf/HashTraits.h: Removed.
  • ForwardingHeaders/wtf/HexNumber.h: Removed.
  • ForwardingHeaders/wtf/Int16Array.h: Removed.
  • ForwardingHeaders/wtf/Int32Array.h: Removed.
  • ForwardingHeaders/wtf/Int8Array.h: Removed.
  • ForwardingHeaders/wtf/ListHashSet.h: Removed.
  • ForwardingHeaders/wtf/ListRefPtr.h: Removed.
  • ForwardingHeaders/wtf/Locker.h: Removed.
  • ForwardingHeaders/wtf/MD5.h: Removed.
  • ForwardingHeaders/wtf/MainThread.h: Removed.
  • ForwardingHeaders/wtf/MathExtras.h: Removed.
  • ForwardingHeaders/wtf/MessageQueue.h: Removed.
  • ForwardingHeaders/wtf/MetaAllocator.h: Removed.
  • ForwardingHeaders/wtf/MetaAllocatorHandle.h: Removed.
  • ForwardingHeaders/wtf/NonCopyingSort.h: Removed.
  • ForwardingHeaders/wtf/Noncopyable.h: Removed.
  • ForwardingHeaders/wtf/NotFound.h: Removed.
  • ForwardingHeaders/wtf/OSAllocator.h: Removed.
  • ForwardingHeaders/wtf/OwnArrayPtr.h: Removed.
  • ForwardingHeaders/wtf/OwnPtr.h: Removed.
  • ForwardingHeaders/wtf/OwnPtrCommon.h: Removed.
  • ForwardingHeaders/wtf/PageAllocation.h: Removed.
  • ForwardingHeaders/wtf/PageAllocationAligned.h: Removed.
  • ForwardingHeaders/wtf/PageBlock.h: Removed.
  • ForwardingHeaders/wtf/PageReservation.h: Removed.
  • ForwardingHeaders/wtf/ParallelJobs.h: Removed.
  • ForwardingHeaders/wtf/PassOwnArrayPtr.h: Removed.
  • ForwardingHeaders/wtf/PassOwnPtr.h: Removed.
  • ForwardingHeaders/wtf/PassRefPtr.h: Removed.
  • ForwardingHeaders/wtf/Platform.h: Removed.
  • ForwardingHeaders/wtf/PossiblyNull.h: Removed.
  • ForwardingHeaders/wtf/RandomNumber.h: Removed.
  • ForwardingHeaders/wtf/RedBlackTree.h: Removed.
  • ForwardingHeaders/wtf/RefCounted.h: Removed.
  • ForwardingHeaders/wtf/RefCountedLeakCounter.h: Removed.
  • ForwardingHeaders/wtf/RefPtr.h: Removed.
  • ForwardingHeaders/wtf/RetainPtr.h: Removed.
  • ForwardingHeaders/wtf/SHA1.h: Removed.
  • ForwardingHeaders/wtf/SegmentedVector.h: Removed.
  • ForwardingHeaders/wtf/SimpleStats.h: Removed.
  • ForwardingHeaders/wtf/Spectrum.h: Removed.
  • ForwardingHeaders/wtf/StackBounds.h: Removed.
  • ForwardingHeaders/wtf/StaticConstructors.h: Removed.
  • ForwardingHeaders/wtf/StdLibExtras.h: Removed.
  • ForwardingHeaders/wtf/StringExtras.h: Removed.
  • ForwardingHeaders/wtf/StringHasher.h: Removed.
  • ForwardingHeaders/wtf/TemporaryChange.h: Removed.
  • ForwardingHeaders/wtf/ThreadRestrictionVerifier.h: Removed.
  • ForwardingHeaders/wtf/ThreadSafeRefCounted.h: Removed.
  • ForwardingHeaders/wtf/ThreadSpecific.h: Removed.
  • ForwardingHeaders/wtf/Threading.h: Removed.
  • ForwardingHeaders/wtf/ThreadingPrimitives.h: Removed.
  • ForwardingHeaders/wtf/TypeTraits.h: Removed.
  • ForwardingHeaders/wtf/Uint16Array.h: Removed.
  • ForwardingHeaders/wtf/Uint32Array.h: Removed.
  • ForwardingHeaders/wtf/Uint8Array.h: Removed.
  • ForwardingHeaders/wtf/Uint8ClampedArray.h: Removed.
  • ForwardingHeaders/wtf/UnusedParam.h: Removed.
  • ForwardingHeaders/wtf/VMTags.h: Removed.
  • ForwardingHeaders/wtf/ValueCheck.h: Removed.
  • ForwardingHeaders/wtf/Vector.h: Removed.
  • ForwardingHeaders/wtf/VectorTraits.h: Removed.
  • ForwardingHeaders/wtf/WTFThreadData.h: Removed.
  • ForwardingHeaders/wtf/dtoa.h: Removed.
  • ForwardingHeaders/wtf/dtoa/double-conversion.h: Removed.
  • ForwardingHeaders/wtf/text/ASCIIFastPath.h: Removed.
  • ForwardingHeaders/wtf/text/AtomicString.h: Removed.
  • ForwardingHeaders/wtf/text/AtomicStringHash.h: Removed.
  • ForwardingHeaders/wtf/text/AtomicStringImpl.h: Removed.
  • ForwardingHeaders/wtf/text/CString.h: Removed.
  • ForwardingHeaders/wtf/text/StringBuffer.h: Removed.
  • ForwardingHeaders/wtf/text/StringBuilder.h: Removed.
  • ForwardingHeaders/wtf/text/StringConcatenate.h: Removed.
  • ForwardingHeaders/wtf/text/StringHash.h: Removed.
  • ForwardingHeaders/wtf/text/StringImpl.h: Removed.
  • ForwardingHeaders/wtf/text/TextPosition.h: Removed.
  • ForwardingHeaders/wtf/text/WTFString.h: Removed.
  • ForwardingHeaders/wtf/unicode/CharacterNames.h: Removed.
  • ForwardingHeaders/wtf/unicode/Collator.h: Removed.
  • ForwardingHeaders/wtf/unicode/UTF8.h: Removed.
  • ForwardingHeaders/wtf/unicode/Unicode.h: Removed.
  • ForwardingHeaders/wtf/unicode/icu/UnicodeIcu.h: Removed.
  • ForwardingHeaders/wtf/unicode/wince/UnicodeWince.h: Removed.
  • ForwardingHeaders/wtf/url/ParsedURL.h: Removed.

Source/WebKit/mac:

ForwardingHeaders/wtf is no longer necessary (or functional) now that JavaScriptCore
no longer includes the WTF headers as private headers.

  • ForwardingHeaders/wtf/ASCIICType.h: Removed.
  • ForwardingHeaders/wtf/AlwaysInline.h: Removed.
  • ForwardingHeaders/wtf/Assertions.h: Removed.
  • ForwardingHeaders/wtf/Deque.h: Removed.
  • ForwardingHeaders/wtf/DisallowCType.h: Removed.
  • ForwardingHeaders/wtf/FastMalloc.h: Removed.
  • ForwardingHeaders/wtf/Forward.h: Removed.
  • ForwardingHeaders/wtf/GetPtr.h: Removed.
  • ForwardingHeaders/wtf/HashCountedSet.h: Removed.
  • ForwardingHeaders/wtf/HashMap.h: Removed.
  • ForwardingHeaders/wtf/HashSet.h: Removed.
  • ForwardingHeaders/wtf/HashTraits.h: Removed.
  • ForwardingHeaders/wtf/ListHashSet.h: Removed.
  • ForwardingHeaders/wtf/ListRefPtr.h: Removed.
  • ForwardingHeaders/wtf/Locker.h: Removed.
  • ForwardingHeaders/wtf/MathExtras.h: Removed.
  • ForwardingHeaders/wtf/Noncopyable.h: Removed.
  • ForwardingHeaders/wtf/OwnArrayPtr.h: Removed.
  • ForwardingHeaders/wtf/OwnPtr.h: Removed.
  • ForwardingHeaders/wtf/OwnPtrCommon.h: Removed.
  • ForwardingHeaders/wtf/PassOwnPtr.h: Removed.
  • ForwardingHeaders/wtf/PassRefPtr.h: Removed.
  • ForwardingHeaders/wtf/Platform.h: Removed.
  • ForwardingHeaders/wtf/RefCounted.h: Removed.
  • ForwardingHeaders/wtf/RefCountedLeakCounter.h: Removed.
  • ForwardingHeaders/wtf/RefPtr.h: Removed.
  • ForwardingHeaders/wtf/RetainPtr.h: Removed.
  • ForwardingHeaders/wtf/StdLibExtras.h: Removed.
  • ForwardingHeaders/wtf/TemporaryChange.h: Removed.
  • ForwardingHeaders/wtf/Threading.h: Removed.
  • ForwardingHeaders/wtf/UnusedParam.h: Removed.
  • ForwardingHeaders/wtf/VMTags.h: Removed.
  • ForwardingHeaders/wtf/ValueCheck.h: Removed.
  • ForwardingHeaders/wtf/Vector.h: Removed.
  • ForwardingHeaders/wtf/VectorTraits.h: Removed.
  • ForwardingHeaders/wtf/unicode/Unicode.h: Removed.
  • ForwardingHeaders/wtf/unicode/icu/UnicodeIcu.h: Removed.
12:43 AM Changeset in webkit [110032] by commit-queue@webkit.org
  • 22 edits
    8 deletes in trunk

[DRT] Remove PlainTextController implementations.
https://bugs.webkit.org/show_bug.cgi?id=79959

Patch by Kangil Han <kangil.han@samsung.com> on 2012-03-07
Reviewed by Hajime Morita.

PlainTextController usages in existing tests have been
replaced by internals API by bug 78570.
So this patch will remove PlainTextController implementations
to avoid further usage in new tests.

Source/WebKit/gtk:

  • WebCoreSupport/DumpRenderTreeSupportGtk.cpp:
  • WebCoreSupport/DumpRenderTreeSupportGtk.h:

(DumpRenderTreeSupportGtk):

Source/WebKit/qt:

  • WebCoreSupport/DumpRenderTreeSupportQt.cpp:
  • WebCoreSupport/DumpRenderTreeSupportQt.h:

Tools:

  • DumpRenderTree/DumpRenderTree.gypi:
  • DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
  • DumpRenderTree/chromium/PlainTextController.cpp: Removed.
  • DumpRenderTree/chromium/PlainTextController.h: Removed.
  • DumpRenderTree/chromium/TestShell.cpp:

(TestShell::TestShell):
(TestShell::bindJSObjectsToWindow):

  • DumpRenderTree/chromium/TestShell.h:

(TestShell):

  • DumpRenderTree/gtk/DumpRenderTree.cpp:

(webViewWindowObjectCleared):

  • DumpRenderTree/gtk/PlainTextController.cpp: Removed.
  • DumpRenderTree/gtk/PlainTextController.h: Removed.
  • DumpRenderTree/mac/FrameLoadDelegate.mm:

(-[FrameLoadDelegate didClearWindowObjectInStandardWorldForFrame:]):

  • DumpRenderTree/mac/PlainTextController.h: Removed.
  • DumpRenderTree/mac/PlainTextController.mm: Removed.
  • DumpRenderTree/qt/DumpRenderTree.pro:
  • DumpRenderTree/qt/DumpRenderTreeQt.cpp:

(WebCore::DumpRenderTree::DumpRenderTree):
(WebCore::DumpRenderTree::initJSObjects):

  • DumpRenderTree/qt/DumpRenderTreeQt.h:

(DumpRenderTree):

  • DumpRenderTree/qt/PlainTextControllerQt.cpp: Removed.
  • DumpRenderTree/qt/PlainTextControllerQt.h: Removed.
  • GNUmakefile.am:

LayoutTests:

  • fast/dom/Window/script-tests/window-property-descriptors.js:
  • fast/dom/Window/window-properties.html:
  • fast/dom/script-tests/prototype-inheritance-2.js:
  • fast/dom/script-tests/prototype-inheritance.js:
12:17 AM Changeset in webkit [110031] by ukai@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed, update chromium test expectations

  • platform/chromium/test_expectations.txt:
12:13 AM Changeset in webkit [110030] by Martin Robinson
  • 4 edits in releases/WebKitGTK/webkit-1.8

Update the NEWS and version for the 1.7.91 release.

Reviewed by Gustavo Noronha Silva.

.:

  • configure.ac: Update.

Source/WebKit/gtk:

  • NEWS: Update.
12:09 AM Changeset in webkit [110029] by commit-queue@webkit.org
  • 5 edits in trunk/Source/WebCore

[Forms] The "legend" element should not be a form-associated element.
https://bugs.webkit.org/show_bug.cgi?id=80239

Patch by Yoshifumi Inoue <yosin@chromium.org> on 2012-03-07
Reviewed by Kent Tamura.

This patch changes base class of HTMLLegendElement to HTMLElement from
HTMLFormControlElement for saving memory space and iteration time of
extra "legend" elements in HTMLFormElement::m_formAssociatedElements
and matching the HTML5 specification for ease of maintenance.

Changes of TextIterator is lead by usage of isFormControlElement. This
changes will be replaced with more meaningful predicate as part of
https://bugs.webkit.org/show_bug.cgi?id=80381

No new tests are required. No behavior changes.

  • editing/TextIterator.cpp:

(WebCore::TextIterator::advance): Check HTMLLegendElement in addition to isFormControlElement. This change is for text dump in LayoutTests implemented by document.innerText attribute.

  • html/HTMLLegendElement.cpp:

(WebCore::HTMLLegendElement::HTMLLegendElement): Remove form parameter.
(WebCore::HTMLLegendElement::create): Remove form parameter.
(WebCore::HTMLLegendElement::associatedControl): Stop checking legend element, because HTMLLegendElement is no longer HTMLFormControlElement.
(WebCore::HTMLLegendElement::supportFocus): Removed. It called HTMLElement::supportFocus.
(WebCore::HTMLLegendElement::formControlType): Remove implementation of virtual method declared in HTMLFormControlElement.

  • html/HTMLLegendElement.h:

(HTMLLegendElement): Change base class to HTMLElement.

  • html/HTMLTagNames.in: Remove "constructorNeedsFormElement" for not passing "form" parameter in HTMLElementFactory.

Mar 6, 2012:

11:54 PM Changeset in webkit [110028] by commit-queue@webkit.org
  • 5 edits in trunk

[EFL][DRT] Implements LayoutTestController's setPopupBlockingEnabled.
https://bugs.webkit.org/show_bug.cgi?id=80137

Patch by Grzegorz Czajkowski <g.czajkowski@samsung.com> on 2012-03-06
Reviewed by Eric Seidel.

Tools:

Adds implementation LayoutTestController's setPopupBlockingEnabled.
To pass popup-blocking-click-in-iframe.html EventSender should not
repeat click events in idler's function. EventSender allows to
asynchronously send click event through ecore_idler_add.
This event will be called repeatedly as long as it return true.
Click event should be called only once by returning ECORE_CALLBACK_CANCEL.

  • DumpRenderTree/efl/EventSender.cpp:

(sendMouseEvent): Changed return value from bool to void because it always returns true.
(sendClick): Idler is deleted by returning ECORE_CALLBACK_CANCEL.
(mouseDownCallback): Remove unnecessary checking of return value.

  • DumpRenderTree/efl/LayoutTestControllerEfl.cpp:

(LayoutTestController::setPopupBlockingEnabled):

LayoutTests:

Enables tests connected with setPopupBlockingEnabled.

  • platform/efl/Skipped:
11:50 PM Changeset in webkit [110027] by Philippe Normand
  • 2 edits in trunk/LayoutTests

Unreviewed, GTK test_expectations update after r109934.

  • platform/gtk/test_expectations.txt:
11:48 PM Changeset in webkit [110026] by barraclough@apple.com
  • 11 edits in trunk

Array.prototype functions should throw if delete fails
https://bugs.webkit.org/show_bug.cgi?id=80467

Reviewed by Oliver Hunt.

Source/JavaScriptCore:

All calls to Delete? from Array.prototype are specified to pass 'true' as the value of Throw.
In the case of shift/unshift, these are also missing a throw from the 'put' in the implementations
in JSArray.cpp. There are effectively three copies of each of the generic shift/unshift routines,
one in splice, one in ArrayPrototype's shift/unshift methods, and one in JSArray's shift/unshift
routines, for handling arrays with holes. These three copies should be unified.

  • runtime/ArrayPrototype.cpp:

(JSC::shift):
(JSC::unshift):

  • Added - shared copies of the shift/unshift functionality.

(JSC::arrayProtoFuncPop):

  • should throw if the delete fails.

(JSC::arrayProtoFuncReverse):

  • should throw if the delete fails.

(JSC::arrayProtoFuncShift):
(JSC::arrayProtoFuncSplice):
(JSC::arrayProtoFuncUnShift):

  • use shift/unshift.
  • runtime/JSArray.cpp:

(JSC::JSArray::shiftCount):
(JSC::JSArray::unshiftCount):

  • Don't try to handle arrays with holes; return a value indicating the generic routine should be used instead.
  • runtime/JSArray.h:
    • declaration for shiftCount/unshiftCount changed.
  • tests/mozilla/js1_6/Array/regress-304828.js:
    • this was asserting incorrect behaviour.

LayoutTests:

  • fast/js/mozilla/strict/15.4.4.12-expected.txt:
  • fast/js/mozilla/strict/15.4.4.13-expected.txt:
  • fast/js/mozilla/strict/15.4.4.6-expected.txt:
  • fast/js/mozilla/strict/15.4.4.8-expected.txt:
  • fast/js/mozilla/strict/15.4.4.9-expected.txt:
    • check in passing test results.
11:46 PM Changeset in webkit [110025] by Philippe Normand
  • 4 edits
    1 delete in trunk/LayoutTests

fullscreen/video-controls is too specific to the mac port
https://bugs.webkit.org/show_bug.cgi?id=73583

Reviewed by Eric Carlson.

Relax the test on the document's view height to not depend on the
mac port fullscreen controls stylesheet.

  • fullscreen/video-controls-override-expected.txt:
  • fullscreen/video-controls-override.html:
  • platform/gtk/Skipped:
11:37 PM Changeset in webkit [110024] by kubo@profusion.mobi
  • 10 edits in trunk

[CMake] Make the removal of transitive library dependencies work with CMake < 2.8.7.
https://bugs.webkit.org/show_bug.cgi?id=80469

Reviewed by Antonio Gomes.

.:

  • CMakeLists.txt: Do not set the CMAKE_LINK_INTERFACE_LIBRARIES

variable here; it was introduced in CMake 2.8.7 so we can't depend
on it as we actually support CMake >= 2.8.0.

Source/JavaScriptCore:

  • CMakeLists.txt: Manually set the LINK_INTERFACE_LIBRARIES target

property on the library being created.

Source/WebCore:

No new tests, this is a buildsystem change.

  • CMakeLists.txt: Manually set the LINK_INTERFACE_LIBRARIES target

property on the library being created.

Source/WebKit:

  • CMakeLists.txt: Manually set the LINK_INTERFACE_LIBRARIES target

property on the library being created.

Source/WebKit2:

  • CMakeLists.txt: Manually set the LINK_INTERFACE_LIBRARIES target

property on the library being created.

11:24 PM Changeset in webkit [110023] by commit-queue@webkit.org
  • 12 edits in trunk/Source

[BlackBerry] Set correct ResourceRequest target type.
https://bugs.webkit.org/show_bug.cgi?id=80430

Patch by Lianghui Chen <liachen@rim.com> on 2012-03-06
Reviewed by Rob Buis.

Source/WebCore:

For loads started by AppCache, they are based on the manifest file,
it is not definitely sure what target it is for, so we just guess
based on its mimetype or file extension.

  • loader/appcache/ApplicationCacheGroup.cpp:

(WebCore::ApplicationCacheGroup::createResourceHandle):

  • loader/cache/CachedResource.cpp:

(WebCore):
(WebCore::CachedResource::load):

  • platform/network/blackberry/ResourceRequest.h:

(ResourceRequest):

  • platform/network/blackberry/ResourceRequestBlackBerry.cpp:

(WebCore):
(WebCore::mimeTypeRequestTypeMap):
(WebCore::ResourceRequest::targetTypeFromMimeType):

  • workers/DefaultSharedWorkerRepository.cpp:

(WebCore::SharedWorkerScriptLoader::load):

  • workers/Worker.cpp:

(WebCore::Worker::create):

  • workers/WorkerContext.cpp:

(WebCore::WorkerContext::importScripts):

  • workers/WorkerScriptLoader.cpp:

(WebCore::WorkerScriptLoader::createResourceRequest):

  • workers/WorkerScriptLoader.h:

(WorkerScriptLoader):

Source/WebKit/blackberry:

Removed unused code in dispatchWillSendRequest(). These codes are too
late as the target type has already been referred to when calling
ResourceRequest::initializePlatformRequest().

  • WebCoreSupport/FrameLoaderClientBlackBerry.cpp:

(WebCore::FrameLoaderClientBlackBerry::dispatchWillSendRequest):

11:19 PM Changeset in webkit [110022] by hayato@chromium.org
  • 5 edits
    1 add
    1 delete in trunk/LayoutTests

[Shadow DOM] Extend a 'path' notation in utility function so that we can specify arbitrary ShadowRoot.
https://bugs.webkit.org/show_bug.cgi?id=80405

Reviewed by Dimitri Glazkov.

Extract common utility function, getElementByIdInShadow(path), into a shadow-dom.js
(renamed from create-dom.js) and support 'consecutive slashes' notation so that
we can specify arbitrary ShadowRoot in shadow DOM tree. Until now, we can get an element
only from the youngest ShadowRoot.

  • fast/dom/shadow/access-key.html:
  • fast/dom/shadow/get-element-by-id-in-shadow-root-expected.txt:
  • fast/dom/shadow/get-element-by-id-in-shadow-root.html:
  • fast/dom/shadow/resources/shadow-dom.js: Renamed from LayoutTests/fast/dom/shadow/resources/create-dom.js.

(createShadowRoot):
(createDOM):
(isShadowRoot):
(getElementInShadowTreeStack):

  • fast/dom/shadow/shadow-boundary-events.html:
11:16 PM Changeset in webkit [110021] by ukai@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed, update chromium test expectations

  • platform/chromium/test_expectations.txt:
11:07 PM Changeset in webkit [110020] by commit-queue@webkit.org
  • 5 edits in trunk/Source

[chromium] Add clipping to scissor rect to CCOcclusionTracker
https://bugs.webkit.org/show_bug.cgi?id=79927

Patch by Dana Jansens <danakj@chromium.org> on 2012-03-06
Reviewed by Adrienne Walker.

Source/WebCore:

Adds logic to CCOcclusionTracker to occlude anything outside of the
current screen and target surface scissor rects. When tracking
damage for partial swaps, the scissor rects are bounded by the
tracked damage rects.

Unit tests: CCOcclusionTrackerTest.cpp

  • platform/graphics/chromium/cc/CCOcclusionTracker.cpp:

(WebCore::::CCOcclusionTrackerBase):
(WebCore):
(WebCore::::markOccludedBehindLayer):
(WebCore::testContentRectOccluded):
(WebCore::::occluded):
(WebCore::computeUnoccludedContentRect):
(WebCore::::unoccludedContentRect):
(WebCore::::layerScissorRect):

  • platform/graphics/chromium/cc/CCOcclusionTracker.h:

(WebCore):
(CCOcclusionTrackerDamageClientBase):
(CCOcclusionTrackerBase):

Source/WebKit/chromium:

  • tests/CCOcclusionTrackerTest.cpp:

(WebCore::TestCCOcclusionTracker::TestCCOcclusionTracker):
(TestCCOcclusionTracker):
(WebCore::TestCCOcclusionTracker::setLayerScissorRect):
(WebCore::TestCCOcclusionTracker::useDefaultLayerScissorRect):
(WebCore::TestCCOcclusionTracker::layerScissorRect):
(WebCore):
(TestDamageClient):
(WebCore::TestDamageClient::damageRect):
(WebCore::TestDamageClient::TestDamageClient):
(WebCore::TestDamageClient::setDamageRect):
(WebCore::TEST):

10:35 PM Changeset in webkit [110019] by haraken@chromium.org
  • 6 edits in trunk/Source/WebCore

Unreviewed, rolling out r110011.
http://trac.webkit.org/changeset/110011
https://bugs.webkit.org/show_bug.cgi?id=80376

layout tests crash

  • bindings/v8/V8HiddenPropertyName.cpp:

(WebCore):
(WebCore::V8HiddenPropertyName::hiddenReferenceName):

  • bindings/v8/V8HiddenPropertyName.h:

(WebCore):
(V8HiddenPropertyName):

  • bindings/v8/custom/V8DOMStringMapCustom.cpp:

(WebCore::toV8):

  • bindings/v8/custom/V8DOMTokenListCustom.cpp:

(WebCore::toV8):

  • bindings/v8/custom/V8NamedNodeMapCustom.cpp:

(WebCore::toV8):

10:33 PM Changeset in webkit [110018] by haraken@chromium.org
  • 2 edits in trunk/Source/WebCore

Unreviewed, rolling out r110016.
http://trac.webkit.org/changeset/110016

layout tests crash

  • bindings/v8/custom/V8NamedNodeMapCustom.cpp:

(WebCore::toV8):

10:19 PM Changeset in webkit [110017] by ukai@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed, fix lint error

  • platform/chromium/test_expectations.txt:
10:05 PM Changeset in webkit [110016] by haraken@chromium.org
  • 2 edits in trunk/Source/WebCore

Unreviewed, fixed test crashes.

  • bindings/v8/custom/V8NamedNodeMapCustom.cpp:

(WebCore::toV8):

9:39 PM Changeset in webkit [110015] by ukai@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed, update chromium test expectation.

  • platform/chromium/test_expectations.txt: update svg/W3C-SVG-1.1/animate-elem-77-t.svg
9:29 PM Changeset in webkit [110014] by commit-queue@webkit.org
  • 13 edits
    2 adds in trunk

https://bugs.webkit.org/show_bug.cgi?id=79935
REGRESSION: <content> element is not HTMLUnknownElement when Shadow DOM API is disabled

Patch by Hajime Morrita <morrita@chromium.org> on 2012-03-06
Reviewed by Adam Barth.

.:

Added a newly exported symbol.

  • Source/autotools/symbols.filter:

Source/WebCore:

This change introduced "runtimeConditional" keyword to make_name.pl sources,
which allows HTMLElementFactory and HTMLElementWrapperFactory to check RuntimeEnabledFeatures
and treat any tag name as HTMLUnknownElement if its definition has runtimeConditional and
the flag given is turned off.

Test: fast/dom/shadow/content-shadow-unknown.html

  • WebCore.exp.in:
  • dom/make_names.pl:

(defaultTagPropertyHash):
(printConstructorInterior):
(printFactoryCppFile):
(printWrapperFunctions):
(printWrapperFactoryCppFile):

  • html/HTMLTagNames.in:
  • html/shadow/HTMLContentElement.cpp:

(WebCore::contentTagName):

  • testing/InternalSettings.cpp:

(WebCore::InternalSettings::InternalSettings):
(WebCore::InternalSettings::restoreTo):
(WebCore::InternalSettings::setShadowDOMEnabled):
(WebCore):

  • testing/InternalSettings.h:

(InternalSettings):

  • testing/InternalSettings.idl:

LayoutTests:

  • fast/dom/resources/shadow-test-driver.js:

(createContentWithText):

  • fast/dom/shadow/content-element-move.html: Replaced accidentaly used <content> using an Internals API.
  • fast/dom/shadow/content-shadow-unknown-expected.txt: Added.
  • fast/dom/shadow/content-shadow-unknown.html: Added.
9:25 PM Changeset in webkit [110013] by ukai@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed, update chromium test expectation.

  • platform/chromium/test_expectations.txt:
9:13 PM Changeset in webkit [110012] by bashi@chromium.org
  • 11 edits in trunk/Source

[WebSocket] Introduce ThreadableWebSocketChannel::SendResult
https://bugs.webkit.org/show_bug.cgi?id=80356

Reviewed by Kent Tamura.

Source/WebCore:

Introduced ThreadableWebSocketChannel::SendResult type so that
WebSocketChannel can pass the validation result.

No new test. No changes in behavior.

  • Modules/websockets/ThreadableWebSocketChannel.h: Added SendResult.
  • Modules/websockets/ThreadableWebSocketChannelClientWrapper.cpp:

(WebCore::ThreadableWebSocketChannelClientWrapper::ThreadableWebSocketChannelClientWrapper):
(WebCore::ThreadableWebSocketChannelClientWrapper::sendRequestResult): Use ThreadableWebSocketChannel::SendResult instead of bool.
(WebCore::ThreadableWebSocketChannelClientWrapper::setSendRequestResult): Ditto.

  • Modules/websockets/ThreadableWebSocketChannelClientWrapper.h:

(ThreadableWebSocketChannelClientWrapper):

  • Modules/websockets/WebSocketChannel.cpp:

(WebCore::WebSocketChannel::send): Use ThreadableWebSocketChannel::SendResult instead of bool. Pass Cstring to enqueTextFrame instead of String.
(WebCore::WebSocketChannel::enqueueTextFrame): Ditto.
(WebCore::WebSocketChannel::processOutgoingFrameQueue): Ditto.

  • Modules/websockets/WebSocketChannel.h:

(WebSocketChannel):
(QueuedFrame): Changed the type of stringData from String to CString.

  • Modules/websockets/WorkerThreadableWebSocketChannel.cpp:

(WebCore::WorkerThreadableWebSocketChannel::send): Use ThreadableWebSocketChannel::SendResult instead of bool.
(WebCore::workerContextDidSend): Ditto.
(WebCore::WorkerThreadableWebSocketChannel::Peer::send): Ditto.
(WebCore::WorkerThreadableWebSocketChannel::Bridge::send): Ditto.

  • Modules/websockets/WorkerThreadableWebSocketChannel.h:

(WorkerThreadableWebSocketChannel): ditto.
(Bridge): Ditto.

Source/WebKit/chromium:

  • src/WebSocketImpl.cpp:

(WebKit::WebSocketImpl::sendText): Checks whether the return value of send() is ThreadableWebSocketChannel::SendSuccess.
(WebKit::WebSocketImpl::sendArrayBuffer): Ditto.

9:05 PM Changeset in webkit [110011] by haraken@chromium.org
  • 6 edits in trunk/Source/WebCore

[V8][Performance] Optimize V8 bindings for HTMLElement.classList,
Element.dataset and Node.attributes
https://bugs.webkit.org/show_bug.cgi?id=80376

Reviewed by Adam Barth.

This patch improves the performance of HTMLElement.classList, Element.dataset
and Node.attributes by 6.4 times, 7.1 times and 10.9 times, respectively.

Previously, a 'hiddenReferenceName' string was allocated on v8::Handle and
created every time the DOM attribute is accessed, in spite of the fact that
the 'hiddenReferenceName' string is static.

This patch moves the 'hiddenReferenceName' string to v8::Persistent and makes it static.
Also, this patch removes 'if (!elementValue.IsEmpty() && elementValue->IsObject())',
since if 'element' exists, it is guaranteed that 'elementValue' is not empty
and is an Object.

Performance tests: https://bugs.webkit.org/attachment.cgi?id=130283

AppleWebKit/JavaScriptCore:
div.classList : 382ms
div.classList.foo = 123 : 335ms
div.dataset : 403ms
div.dataset.foo = 123 : 5250ms
div.attributes : 183ms

Chromium/V8 (without this patch):
div.classList : 9140ms
div.classList.foo = 123 : 9086ms
div.dataset : 9930ms
div.dataset.foo = 123 : 49698ms
div.attributes : 13489ms

Chromium/V8 (with this patch):
div.classList : 1435ms
div.classList.foo = 123 : 1470ms
div.dataset : 1400ms
div.dataset.foo = 123 : 30396ms
div.attributes : 1242ms

No tests. No change in behavior.

  • bindings/v8/custom/V8DOMStringMapCustom.cpp: Modified as described above.

(WebCore::toV8):

  • bindings/v8/custom/V8DOMTokenListCustom.cpp: Ditto.

(WebCore::toV8):

  • bindings/v8/custom/V8NamedNodeMapCustom.cpp: Ditto.

(WebCore::toV8):

  • bindings/v8/V8HiddenPropertyName.cpp: Defined a hidden property name string statically

to optimize the macro.
(WebCore):
(WebCore::V8HiddenPropertyName::hiddenReferenceName):

  • bindings/v8/V8HiddenPropertyName.h: Modified to switch two prefixes "WebCore::HiddenProperty::"

and "WebCore::HiddenReference::", depending on whether a given name represents a hidden property
or a hidden reference.
(WebCore):
(V8HiddenPropertyName):

8:58 PM Changeset in webkit [110010] by nduca@chromium.org
  • 25 edits in trunk/Source

[chromium] CCThreadProxy context lost support
https://bugs.webkit.org/show_bug.cgi?id=80100

Reviewed by James Robinson.

Source/WebCore:

  • platform/graphics/chromium/cc/CCScheduler.cpp:

(WebCore::CCScheduler::didLoseContext):
(WebCore):
(WebCore::CCScheduler::didRecreateContext):
(WebCore::CCScheduler::processScheduledActions):

  • platform/graphics/chromium/cc/CCScheduler.h:

(CCSchedulerClient):
(CCScheduler):

  • platform/graphics/chromium/cc/CCSchedulerStateMachine.cpp:

(WebCore::CCSchedulerStateMachine::CCSchedulerStateMachine):
(WebCore::CCSchedulerStateMachine::nextAction):
(WebCore::CCSchedulerStateMachine::updateState):
(WebCore::CCSchedulerStateMachine::vsyncCallbackNeeded):
(WebCore::CCSchedulerStateMachine::didLoseContext):
(WebCore):
(WebCore::CCSchedulerStateMachine::didRecreateContext):

  • platform/graphics/chromium/cc/CCSchedulerStateMachine.h:

(CCSchedulerStateMachine):

  • platform/graphics/chromium/cc/CCThreadProxy.cpp:

(WebCore::CCThreadProxy::recreateContext):
(WebCore::CCThreadProxy::loseContext):
(WebCore::CCThreadProxy::scheduledActionBeginContextRecreation):
(WebCore):
(WebCore::CCThreadProxy::scheduledActionDrawAndSwap):
(WebCore::CCThreadProxy::setAnimationEvents):
(WebCore::CCThreadProxy::beginContextRecreation):
(WebCore::CCThreadProxy::recreateContextOnImplThread):
(WebCore::CCThreadProxy::loseContextOnImplThread):

  • platform/graphics/chromium/cc/CCThreadProxy.h:

(CCThreadProxy):

Source/WebKit/chromium:

  • tests/CCSchedulerStateMachineTest.cpp:
  • tests/CCSchedulerTest.cpp:

(WebKitTests::FakeCCSchedulerClient::scheduledActionBeginContextRecreation):
(WebKitTests::SchedulerClientThatSetNeedsDrawInsideDraw::scheduledActionBeginContextRecreation):
(WebKitTests::SchedulerClientThatSetNeedsCommitInsideDraw::scheduledActionBeginContextRecreation):

8:56 PM Changeset in webkit [110009] by haraken@chromium.org
  • 2 edits in trunk/PerformanceTests

[Perf tests] Reduce the number of loops in dom-attributes.html
https://bugs.webkit.org/show_bug.cgi?id=80077

Reviewed by Ryosuke Niwa.

dom-attributes.html takes 100~ seconds in the perf bots. This patch reduces
the time by reducing the number of loops.

This is just a temporary fix. After more detailed investigation, I will reduce
the number of tests in dom-attributes.html, and revert back the number of loops
to guarantee the reliability of the perf test results.

  • Bindings/dom-attributes.html:
8:56 PM Changeset in webkit [110008] by yuqiang.xian@intel.com
  • 8 edits in trunk/Source/JavaScriptCore

DFG BasicBlock should group the Phi nodes together and separate them
from the other nodes
https://bugs.webkit.org/show_bug.cgi?id=80361

Reviewed by Filip Pizlo.

This would make it more efficient to remove the redundant Phi nodes or
insert new Phi nodes for SSA, besides providing a cleaner BasicBlock structure.
This is performance neutral on SunSpider, V8 and Kraken.

  • dfg/DFGAbstractState.cpp:

(JSC::DFG::AbstractState::clobberStructures):
(JSC::DFG::AbstractState::dump):

  • dfg/DFGBasicBlock.h:

(JSC::DFG::BasicBlock::BasicBlock):
(BasicBlock):

  • dfg/DFGByteCodeParser.cpp:

(JSC::DFG::ByteCodeParser::addToGraph):
(JSC::DFG::ByteCodeParser::insertPhiNode):

  • dfg/DFGCFAPhase.cpp:

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

  • dfg/DFGCSEPhase.cpp:

(JSC::DFG::CSEPhase::pureCSE):
(JSC::DFG::CSEPhase::impureCSE):
(JSC::DFG::CSEPhase::globalVarLoadElimination):
(JSC::DFG::CSEPhase::getByValLoadElimination):
(JSC::DFG::CSEPhase::checkFunctionElimination):
(JSC::DFG::CSEPhase::checkStructureLoadElimination):
(JSC::DFG::CSEPhase::getByOffsetLoadElimination):
(JSC::DFG::CSEPhase::getPropertyStorageLoadElimination):
(JSC::DFG::CSEPhase::getIndexedPropertyStorageLoadElimination):
(JSC::DFG::CSEPhase::getScopeChainLoadElimination):
(JSC::DFG::CSEPhase::performBlockCSE):

  • dfg/DFGGraph.cpp:

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

  • dfg/DFGSpeculativeJIT.cpp:

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

8:39 PM Changeset in webkit [110007] by tony@chromium.org
  • 3 edits in trunk/Source/WebCore

refactor method names in RenderFlexibleBox to make them more consistent
https://bugs.webkit.org/show_bug.cgi?id=80446

Reviewed by Ojan Vafai.

No new tests, just renaming internal methods.

  • rendering/RenderFlexibleBox.cpp:

(WebCore::RenderFlexibleBox::flowAwareBorderAfter): New, used by layoutAndPlaceChildren
(WebCore::RenderFlexibleBox::flowAwarePaddingAfter): New, used by layoutAndPlaceChildren
(WebCore::RenderFlexibleBox::marginBoxAscentForChild): Add ForChild for consistency.
(WebCore::RenderFlexibleBox::layoutAndPlaceChildren): We were adding the before padding+border twice (it's in the offset and
crossAxisBorderAndPaddingExtent() and subtracting it once. Instead, just add the after padding+border.
(WebCore::RenderFlexibleBox::alignChildren):

  • rendering/RenderFlexibleBox.h:

(RenderFlexibleBox): Reorder methods to match the .cpp file.

8:07 PM Changeset in webkit [110006] by Martin Robinson
  • 3 edits in releases/WebKitGTK/webkit-1.8/Source/WebKit/gtk

Merging r110002

8:03 PM Changeset in webkit [110005] by Martin Robinson
  • 4 edits in releases/WebKitGTK/webkit-1.8/Source/WebKit/gtk

Merging r109997

7:58 PM WebKitGTK/1.8.x edited by Martin Robinson
(diff)
7:53 PM Changeset in webkit [110004] by haraken@chromium.org
  • 6 edits in trunk/Source/WebCore

Unreviewed, rolling out r109969.
http://trac.webkit.org/changeset/109969
https://bugs.webkit.org/show_bug.cgi?id=80376

layout tests crash

  • bindings/v8/V8HiddenPropertyName.cpp:

(WebCore):
(WebCore::V8HiddenPropertyName::hiddenReferenceName):

  • bindings/v8/V8HiddenPropertyName.h:

(WebCore):
(V8HiddenPropertyName):

  • bindings/v8/custom/V8DOMStringMapCustom.cpp:

(WebCore::toV8):

  • bindings/v8/custom/V8DOMTokenListCustom.cpp:

(WebCore::toV8):

  • bindings/v8/custom/V8NamedNodeMapCustom.cpp:

(WebCore::toV8):

7:52 PM Changeset in webkit [110003] by haraken@chromium.org
  • 3 edits in trunk/Source/WebCore

Unreviewed, rolling out r109999.
http://trac.webkit.org/changeset/109999

layout tests crash

  • bindings/v8/custom/V8DOMStringMapCustom.cpp:

(WebCore::toV8):

  • bindings/v8/custom/V8DOMTokenListCustom.cpp:

(WebCore::toV8):

7:50 PM Changeset in webkit [110002] by Martin Robinson
  • 2 edits in trunk/Source/WebKit/gtk

Fix a compilation warning encountered during the GTK+ build.

Reviewed by Gustavo Noronha Silva.

  • tests/testcopyandpaste.c:

(test_copy_and_paste): Cast the WebKitWebView to a GtkWidget.

7:26 PM Changeset in webkit [110001] by enne@google.com
  • 7 edits in trunk/LayoutTests

Unreviewed, update mac text baselines after r109851

  • compositing/geometry/limit-layer-bounds-fixed-positioned-expected.txt:
  • compositing/geometry/limit-layer-bounds-overflow-root-expected.txt:
  • compositing/geometry/limit-layer-bounds-positioned-expected.txt:
  • compositing/geometry/limit-layer-bounds-positioned-transition-expected.txt:
  • compositing/geometry/limit-layer-bounds-transformed-expected.txt:
  • compositing/geometry/limit-layer-bounds-transformed-overflow-expected.txt:
6:47 PM Changeset in webkit [110000] by dpranke@chromium.org
  • 2 edits in trunk/LayoutTests

Remove the no-longer-needed 'CPU' and 'GPU' modifiers.

Unreviewed, expectations change.

  • platform/chromium/test_expectations.txt:
6:45 PM Changeset in webkit [109999] by haraken@chromium.org
  • 3 edits in trunk/Source/WebCore

Unreviewed, fix crashes.

  • bindings/v8/custom/V8DOMStringMapCustom.cpp:

(WebCore::toV8):

  • bindings/v8/custom/V8DOMTokenListCustom.cpp:

(WebCore::toV8):

6:40 PM Changeset in webkit [109998] by dpranke@chromium.org
  • 2 edits in trunk/LayoutTests

Re-sort the platform/chromium/virtual/gpu expectations next to the original expectations.

Unreviewed, expectations change.

  • platform/chromium/test_expectations.txt:
6:40 PM Changeset in webkit [109997] by Martin Robinson
  • 4 edits in trunk/Source/WebKit/gtk

[GTK] FrameLoader signals: gtk-doc fixes
https://bugs.webkit.org/show_bug.cgi?id=79495

Patch by Philippe Normand <pnormand@igalia.com> on 2012-03-06
Reviewed by Martin Robinson.

  • webkit/webkitwebframe.cpp:

(webkit_web_frame_class_init):

  • webkit/webkitwebresource.cpp:

(webkit_web_resource_class_init):

  • webkit/webkitwebview.cpp:

(webkit_web_view_class_init):

6:22 PM Changeset in webkit [109996] by dpranke@chromium.org
  • 1 edit
    3 deletes in trunk/Tools

rebaseline_chromium_webkit_tests is obsolete and should be removed
https://bugs.webkit.org/show_bug.cgi?id=80347

Reviewed by Tony Chang.

  • Scripts/rebaseline-chromium-webkit-tests: Removed.
  • Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests.py: Removed.
  • Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests_unittest.py: Removed.
6:20 PM Changeset in webkit [109995] by dpranke@chromium.org
  • 2 edits in trunk/Tools

test_start_cmd (webkitpy.layout_tests.servers.http_server_unittest.TestHttpServer) is broken
https://bugs.webkit.org/show_bug.cgi?id=80468

Unreviewed, build fix.

Fixing a bug revealed by r80443 when we fixed filesystem.copyfile().

  • Scripts/webkitpy/layout_tests/servers/http_server.py:

(Lighttpd._prepare_config):

6:17 PM Changeset in webkit [109994] by dpranke@chromium.org
  • 6 edits
    2 deletes in trunk/Tools

remove chromium_gpu ports
https://bugs.webkit.org/show_bug.cgi?id=80345

Reviewed by Ojan Vafai.

This change leaves in the 'graphics_type' distinction in the
test_expectations; removing that will require more updates and a
pass over test_expectations.txt, so I'm separating that out.

  • Scripts/webkitpy/layout_tests/port/builders.py:
  • Scripts/webkitpy/layout_tests/port/chromium.py:

(ChromiumPort):

  • Scripts/webkitpy/layout_tests/port/chromium_gpu.py: Removed.
  • Scripts/webkitpy/layout_tests/port/chromium_gpu_unittest.py: Removed.
  • Scripts/webkitpy/layout_tests/port/factory.py:

(PortFactory):
(PortFactory.get):

  • Scripts/webkitpy/layout_tests/port/factory_unittest.py:

(FactoryTest.test_qt):

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

(TestRebaseline.test_rebaseline_expectations):

6:13 PM Changeset in webkit [109993] by jamesr@google.com
  • 3 edits in trunk/Source/WebCore

[chromium] Fix threaded compositing issues in WebGLLayerChromium (except for printing)
https://bugs.webkit.org/show_bug.cgi?id=80459

Reviewed by Kenneth Russell.

This fixes a few wrong-thread issues in WebGLLayerChromium for threaded compositing. The key requirements that
threaded compositing imposes on LayerChromium subclasses are that the compositor's context can only be used from
the compositor thread, meaning inside of updateCompositorResources() and pushPropertiesTo(), and that
non-compositor contexts can only be used from the main thread. This means specifically that we can't use the
DrawingBuffer's context in either of these two functions.

Summary of changes:
*) Move the publishToPlatformLayer() call and related logic inside of paintContentsIfDirty(), which is called
on the main thread.
*) Move lost context tracking outside of drawsContent(), since that function is called from both threads, to a
separate bool that is updated after each WebGL composite and setDrawingBuffer call.

Printing still doesn't work in threaded mode with this patch, I'll address that separately. Printing and lost
context recovery still work as they did in the single-threaded path.

  • platform/graphics/chromium/WebGLLayerChromium.cpp:

(WebCore::WebGLLayerChromium::WebGLLayerChromium):
(WebCore::WebGLLayerChromium::drawsContent):
(WebCore::WebGLLayerChromium::paintContentsIfDirty):
(WebCore::WebGLLayerChromium::updateCompositorResources):
(WebCore::WebGLLayerChromium::setDrawingBuffer):

  • platform/graphics/chromium/WebGLLayerChromium.h:

(WebGLLayerChromium):

6:04 PM WebKitGTK/1.8.x edited by Martin Robinson
(diff)
5:58 PM Changeset in webkit [109992] by andersca@apple.com
  • 2 edits in trunk/Source/WebCore

Cracks between tiles when zoomed in
https://bugs.webkit.org/show_bug.cgi?id=80460
<rdar://problem/10996688>

Use enclosingIntRect instead of enclosedIntRect when converting from FloatRect to IntRect.

  • platform/graphics/mac/WebLayer.mm:

(drawLayerContents):

5:45 PM Changeset in webkit [109991] by vangelis@chromium.org
  • 8 edits
    6 copies in branches/chromium/1025

Merge 109104 - Percent width/height SVG not always scaled on window resize
https://bugs.webkit.org/show_bug.cgi?id=79490

Patch by Florin Malita <fmalita@google.com> on 2012-02-28
Reviewed by Nikolas Zimmermann.

Source/WebCore:

Tests: fast/repaint/percent-minheight-resize-expected.html

fast/repaint/percent-minheight-resize.html
svg/custom/svg-percent-scale-expected.html
svg/custom/svg-percent-scale-vonly-expected.html
svg/custom/svg-percent-scale-vonly.html
svg/custom/svg-percent-scale.html

Fix a couple of problems preventing correct SVG scaling on window resize:

  • RenderReplaced::computePreferredLogicalWidths is not SVG attribute aware and computes

a non-zero m_minPreferredLogicalWidth even when the SVG widh/height are percentages.

  • RenderBlock::layoutInlineChildren is also not SVG attribute aware and does not trigger

percent height child layouts on vertical-only resizes.

  • rendering/RenderBlockLineLayout.cpp:

(WebCore::RenderBlock::layoutInlineChildren):
Use hasRelativeDimensions() instead of direct width/height->isPercent tests. This also fixes
an HTML issue where percent {min,max}Height inline elements are not updated on vertical-only resizes.

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::hasRelativeDimensions):
(WebCore):

  • rendering/RenderBox.h:

(RenderBox):
Add virtual hasRelativeDimensions() method.

  • rendering/RenderReplaced.cpp:

(WebCore::RenderReplaced::computePreferredLogicalWidths):
Use hasRelativeDimensions() instead of direct width/height->isPercent tests.

  • rendering/svg/RenderSVGRoot.cpp:

(WebCore::RenderSVGRoot::computeReplacedLogicalHeight):
(WebCore::RenderSVGRoot::willBeDestroyed):
Register percent-height SVG elements with the gPercentHeightDescendantsMap, and clean-up on destruction
or height unit change.

(WebCore::RenderSVGRoot::hasRelativeDimensions):
(WebCore):

  • rendering/svg/RenderSVGRoot.h:

(RenderSVGRoot):
SVG-aware hasRelativeDimensions() override.

LayoutTests:

  • fast/repaint/percent-minheight-resize-expected.html: Added.
  • fast/repaint/percent-minheight-resize.html: Added.
  • svg/custom/svg-percent-scale-expected.html: Added.
  • svg/custom/svg-percent-scale-vonly-expected.html: Added.
  • svg/custom/svg-percent-scale-vonly.html: Added.
  • svg/custom/svg-percent-scale.html: Added.

TBR=commit-queue@webkit.org
Review URL: https://chromiumcodereview.appspot.com/9617034

5:43 PM Changeset in webkit [109990] by cevans@google.com
  • 1 edit
    3 copies in branches/chromium/1025

Merge 107519
BUG=113837
Review URL: https://chromiumcodereview.appspot.com/9617035

5:35 PM Changeset in webkit [109989] by cevans@google.com
  • 1 edit in branches/chromium/1025/Source/WebCore/css/CSSParser.cpp

Merge 107999
BUG=113730
Review URL: https://chromiumcodereview.appspot.com/9615047

5:33 PM Changeset in webkit [109988] by vangelis@chromium.org
  • 2 edits in branches/chromium/1025/Source/WebCore

Merge 109973 - [chromium] Increase the accelerated canvas min size to 256 * 256
https://bugs.webkit.org/show_bug.cgi?id=80451

Reviewed by Stephen White.

Test: Manually

  • page/Settings.cpp:

(WebCore::Settings::Settings):

TBR=vangelis@chromium.org
Review URL: https://chromiumcodereview.appspot.com/9618044

5:32 PM Changeset in webkit [109987] by cevans@google.com
  • 5 edits
    2 copies in branches/chromium/1025

Merge 107622
BUG=113567
Review URL: https://chromiumcodereview.appspot.com/9546037

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

Tile cache layers should always be clipped to the view's bounds
https://bugs.webkit.org/show_bug.cgi?id=80456
<rdar://problem/10996174>

Reviewed by Simon Fraser.

  • rendering/RenderLayerBacking.cpp:

(WebCore::RenderLayerBacking::shouldClipCompositedBounds):
Factor this code out into a separate function for better clarity. Always return true if we have a tile cache layer.

(WebCore::RenderLayerBacking::updateCompositedBounds):
Call shouldClipCompositedBounds directly.

5:16 PM Changeset in webkit [109985] by jamesr@google.com
  • 4 edits in trunk/Source

[chromium] Null-check m_layerRenderer in CCLayerTreeHostImpl::finishAllRendering()
https://bugs.webkit.org/show_bug.cgi?id=80445

Reviewed by Adrienne Walker.

Source/WebCore:

Null-check CCLayerTreeHostImpl::m_layerRenderer since it won't be set if context initialiation failed for any
reason.

Covered by new unit test in CCLayerTreeHostImplTest.

  • platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp:

(WebCore::CCLayerTreeHostImpl::finishAllRendering):

Source/WebKit/chromium:

  • tests/CCLayerTreeHostImplTest.cpp:

(FakeWebGraphicsContext3DMakeCurrentFails):
(WebKit::FakeWebGraphicsContext3DMakeCurrentFails::makeContextCurrent):
(WebKit):
(WebKit::TEST_F):

5:13 PM Changeset in webkit [109984] by rniwa@webkit.org
  • 5 edits in trunk

Can't select a line of RTL text on Facebook
https://bugs.webkit.org/show_bug.cgi?id=59435

Reviewed by Eric Seidel.

Source/WebCore:

Deploy prevLeafChildIgnoringLineBreak and nextLeafChildIgnoringLineBreak
in RenderedPosition::leftBoundaryOfBidiRun and RenderedPosition::rightBoundaryOfBidiRun.

Without this patch, WebKit extends selection from right to left when the user selects
<span dir="rtl">ABC<br></span> from left to right by a mouse drag.

Test: editing/selection/select-bidi-run.html

  • editing/RenderedPosition.cpp:

(WebCore::RenderedPosition::leftBoundaryOfBidiRun):
(WebCore::RenderedPosition::rightBoundaryOfBidiRun):

LayoutTests:

Added a regression test case.

  • editing/selection/select-bidi-run-expected.txt:
  • editing/selection/select-bidi-run.html:
5:11 PM Changeset in webkit [109983] by kubo@profusion.mobi
  • 7 edits in trunk

undefined reference to JSC::IdentifierTable::~IdentifierTable() on EFL port
https://bugs.webkit.org/show_bug.cgi?id=80282

Reviewed by Antonio Gomes.

.:

Remove transitive library dependencies; they are especially
dangerous when one ends up linking against WTF, JSC and then WTF
again, since some symbols will not be defined.

Passing --no-copy-dt-needed-entries and --as-needed to the linker
(which some recent Linux distros do by default) makes the issue
even more evident.

  • CMakeLists.txt: Set CMAKE_LINK_INTERFACE_LIBRARIES to an empty

list to prevent implicit transitive library dependencies from
being created by default.

Source/WebCore:

No new tests, this is a buildsystem change.

Remove transitive library dependencies; they are especially
dangerous when one ends up linking against WTF, JSC and then WTF
again, since some symbols will not be defined.

Passing --no-copy-dt-needed-entries and --as-needed to the linker
(which some recent Linux distros do by default) makes the issue
even more evident.

  • CMakeLists.txt: Explicitly link to WTF as WebCore uses symbols

from it.

  • PlatformEfl.cmake: Explicitly link against libjpeg and libpng.

Tools:

Remove transitive library dependencies; they are especially
dangerous when one ends up linking against WTF, JSC and then WTF
again, since some symbols will not be defined.

Passing --no-copy-dt-needed-entries and --as-needed to the linker
(which some recent Linux distros do by default) makes the issue
even more evident.

  • DumpRenderTree/efl/CMakeLists.txt: Do not link directly to WTF,

as the other libraries have the needed symbols. Explicitly link
against fontconfig.

5:08 PM Changeset in webkit [109982] by jamesr@google.com
  • 2 edits in trunk/Source/WebCore

[chromium] REGRESSION(109469): WebGL printing busted
https://bugs.webkit.org/show_bug.cgi?id=80450

Reviewed by Kenneth Russell.

Avoid marking layers as needing display in setContentsTo...() since this breaks WebGL's damage tracking and is
unnecessary.

Tested WebGL printing manually.

  • platform/graphics/chromium/GraphicsLayerChromium.cpp:

(WebCore::GraphicsLayerChromium::setContentsToCanvas):
(WebCore::GraphicsLayerChromium::setContentsToMedia):

5:05 PM Changeset in webkit [109981] by enne@google.com
  • 3 edits
    2 adds in trunk

Overlap map for compositing should ignore empty layers
https://bugs.webkit.org/show_bug.cgi?id=63499

Reviewed by Simon Fraser.

Source/WebCore:

Test: compositing/layer-creation/overlap-empty-layer.html

  • rendering/RenderLayerCompositor.cpp:

(WebCore::RenderLayerCompositor::addToOverlapMap):
(WebCore::RenderLayerCompositor::computeCompositingRequirements):

LayoutTests:

  • compositing/layer-creation/overlap-empty-layer-expected.txt: Added.
  • compositing/layer-creation/overlap-empty-layer.html: Added.
5:02 PM Changeset in webkit [109980] by tkent@chromium.org
  • 9 edits in trunk/LayoutTests

[Chromium] Rebaseline of input-appearance-numberandspeech.html for r109876.
https://bugs.webkit.org/show_bug.cgi?id=78326

  • platform/chromium-linux/fast/speech/input-appearance-numberandspeech-expected.png:
  • platform/chromium-linux/fast/speech/input-appearance-numberandspeech-expected.txt:
  • platform/chromium-mac-leopard/fast/speech/input-appearance-numberandspeech-expected.png:
  • platform/chromium-mac-snowleopard/fast/speech/input-appearance-numberandspeech-expected.png:
  • platform/chromium-mac-snowleopard/fast/speech/input-appearance-numberandspeech-expected.txt:
  • platform/chromium-win/fast/speech/input-appearance-numberandspeech-expected.png:
  • platform/chromium-win/fast/speech/input-appearance-numberandspeech-expected.txt:
  • platform/chromium/test_expectations.txt:
4:59 PM Changeset in webkit [109979] by senorblanco@chromium.org
  • 2 edits in trunk/LayoutTests

[chromium] More test_expectations updates after the svg <use> change.

Unreviewed gardening.

  • platform/chromium/test_expectations.txt:
4:45 PM Changeset in webkit [109978] by eae@chromium.org
  • 1 edit in branches/subpixellayout/Source/WebCore/rendering/RenderThemeSafari.h

Fix typo in RenderThemeSafari.

4:42 PM Changeset in webkit [109977] by leviw@chromium.org
  • 37 edits in branches/subpixellayout/LayoutTests/platform/mac/mathml/presentation

Updating mac mathml expected results for our branch.

4:36 PM Changeset in webkit [109976] by leviw@chromium.org
  • 1 edit in branches/subpixellayout/Source/WebCore/rendering/mathml/RenderMathMLUnderOver.cpp

Fixing MathML sub/sup layout, which corrects many subpixel rendering changes.

4:33 PM Changeset in webkit [109975] by dino@apple.com
  • 2 edits in trunk/Tools

filter-build-webkit needs more filters
https://bugs.webkit.org/show_bug.cgi?id=80440

Reviewed by Joseph Pecoraro.

Added as many missing filters as I could find for Apple
builds. Plus a few minor style updates.

  • Scripts/filter-build-webkit:

(printLine):

4:24 PM Changeset in webkit [109974] by eae@chromium.org
  • 7 edits in branches/subpixellayout/Source/WebCore/platform

Platform LayoutUnit/int fixes for subpixel branch.

4:16 PM Changeset in webkit [109973] by vangelis@chromium.org
  • 2 edits in trunk/Source/WebCore

[chromium] Increase the accelerated canvas min size to 256 * 256
https://bugs.webkit.org/show_bug.cgi?id=80451

Reviewed by Stephen White.

Test: Manually

  • page/Settings.cpp:

(WebCore::Settings::Settings):

4:12 PM Changeset in webkit [109972] by senorblanco@chromium.org
  • 1 edit
    3 adds in trunk/LayoutTests

[chromium] Unreviewed gardening.

New text results for css3 filters tests.

  • platform/chromium-mac/css3/filters: Added.
  • platform/chromium-mac/css3/filters/composited-during-animation-layertree-expected.txt: Added.
  • platform/chromium-win/css3/filters/composited-during-animation-layertree-expected.txt: Added.
4:08 PM Changeset in webkit [109971] by leviw@chromium.org
  • 2 edits in branches/subpixellayout/Source/WebCore/rendering

Reverting LineWidth left and right to int, and fixing flex-hang by ignoring remaining space that's less than a pixel.

4:07 PM Changeset in webkit [109970] by eae@chromium.org
  • 39 edits in branches/subpixellayout/Source/WebCore

Change baselinePosition and InlineFlowBox::placeBoxesInBlockDirection on subpixel branch to use LayoutUnits for calculations.

3:54 PM Changeset in webkit [109969] by haraken@chromium.org
  • 6 edits in trunk/Source/WebCore

[V8][Performance] Optimize V8 bindings for HTMLElement.classList,
Element.dataset and Node.attributes
https://bugs.webkit.org/show_bug.cgi?id=80376

Reviewed by Adam Barth.

This patch improves the performance of HTMLElement.classList, Element.dataset
and Node.attributes by 6.4 times, 7.1 times and 10.9 times, respectively.

Previously, a 'hiddenReferenceName' string was allocated on v8::Handle and
created every time the DOM attribute is accessed, in spite of the fact that
the 'hiddenReferenceName' string is static.

This patch moves the 'hiddenReferenceName' string to v8::Persistent and makes it static.
Also, this patch removes 'if (!elementValue.IsEmpty() && elementValue->IsObject())',
since if 'element' exists, it is guaranteed that 'elementValue' is not empty
and is an Object.

Performance tests: https://bugs.webkit.org/attachment.cgi?id=130283

AppleWebKit/JavaScriptCore:
div.classList : 382ms
div.classList.foo = 123 : 335ms
div.dataset : 403ms
div.dataset.foo = 123 : 5250ms
div.attributes : 183ms

Chromium/V8 (without this patch):
div.classList : 9140ms
div.classList.foo = 123 : 9086ms
div.dataset : 9930ms
div.dataset.foo = 123 : 49698ms
div.attributes : 13489ms

Chromium/V8 (with this patch):
div.classList : 1435ms
div.classList.foo = 123 : 1470ms
div.dataset : 1400ms
div.dataset.foo = 123 : 30396ms
div.attributes : 1242ms

No tests. No change in behavior.

  • bindings/v8/custom/V8DOMStringMapCustom.cpp: Modified as described above.

(WebCore::toV8):

  • bindings/v8/custom/V8DOMTokenListCustom.cpp: Ditto.

(WebCore::toV8):

  • bindings/v8/custom/V8NamedNodeMapCustom.cpp: Ditto.

(WebCore::toV8):

  • bindings/v8/V8HiddenPropertyName.cpp: Defined a hidden property name string statically

to optimize the macro.
(WebCore):
(WebCore::V8HiddenPropertyName::hiddenReferenceName):

  • bindings/v8/V8HiddenPropertyName.h: Modified to switch two prefixes "WebCore::HiddenProperty::"

and "WebCore::HiddenReference::", depending on whether a given name represents a hidden property
or a hidden reference.
(WebCore):
(V8HiddenPropertyName):

3:52 PM Changeset in webkit [109968] by alexis.menard@openbossa.org
  • 5 edits in trunk

getComputedStyle returns incorrect values for the width and height of pseudo-elements
https://bugs.webkit.org/show_bug.cgi?id=37835

Reviewed by Tony Chang.

Source/WebCore:

In case we are querying the computed style of an element with a pseudo-element we can't use
the renderer of the element as this one is not the one used to render the pseudo-element. We need
to use the one created to render the pseudo-element.

No new tests : Extend the existing getComputedStyle-with-pseudo-element.

  • css/CSSComputedStyleDeclaration.cpp:

(WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue):

LayoutTests:

Extend existing test to cover the bug.

  • fast/css/getComputedStyle/getComputedStyle-with-pseudo-element-expected.txt:
  • fast/css/getComputedStyle/getComputedStyle-with-pseudo-element.html:
3:50 PM Changeset in webkit [109967] by Dimitri Glazkov
  • 2 edits in trunk/LayoutTests

REGRESSION(r109191): Shadow DOM tests stopped running on ports that do not have SHADOW_DOM flag enabled.
https://bugs.webkit.org/show_bug.cgi?id=80449

Reviewed by Ryosuke Niwa.

  • fast/dom/shadow/resources/create-dom.js:

(createDOM): Fixed a typo.

3:35 PM Changeset in webkit [109966] by senorblanco@chromium.org
  • 1 edit
    3 adds in trunk/LayoutTests

[chromium] Unreviewed gardening.

  • platform/chromium-mac-snowleopard/css3/filters/composited-during-transition-layertree-expected.txt: Added.
  • platform/chromium-mac-snowleopard/svg/css/circle-in-mask-with-shadow-expected.png: Added.
  • platform/chromium-win/css3/filters/composited-during-transition-layertree-expected.txt: Added.
3:09 PM Changeset in webkit [109965] by shawnsingh@chromium.org
  • 2 edits in trunk/Source/WebCore

[chromium] Make compositeAndReadback and damage tracking play nicely together
https://bugs.webkit.org/show_bug.cgi?id=80199

Reviewed by James Robinson.

Requires system-level testing (pixels on front-buffer should be
observed for correct behavior) that cannot be done by layout tests
or unit tests, have to rely on manual testing.

  • platform/graphics/chromium/cc/CCSingleThreadProxy.cpp:

(WebCore::CCSingleThreadProxy::compositeAndReadback):

3:06 PM Changeset in webkit [109964] by macpherson@chromium.org
  • 2 edits in trunk/Source/WebCore

Make CSSStyleSelector::convertToLength() behave more like CSSPrimitiveValue::convertToLength().
https://bugs.webkit.org/show_bug.cgi?id=80375

Reviewed by Eric Seidel.

No new tests / cleanup only.

This patch removes the bool* ok parameter from CSSStyleSelector's convertToLength,
and instead uses the recently added Length(Undefined) value to indicate failure.
This paves the way for a future patch that will call primitiveValue->convertToLength directly.

  • css/CSSStyleSelector.cpp:

(WebCore::CSSStyleSelector::collectMatchingRulesForList):

2:54 PM Common pixel differences between ports edited by ojan@chromium.org
(diff)
2:52 PM Changeset in webkit [109963] by ojan@chromium.org
  • 4 edits in trunk/Tools

Copying old baselines throws an error if the new directory doesn't exist
https://bugs.webkit.org/show_bug.cgi?id=80443

Reviewed by Adam Barth.

Existing tests cover the new code with the fix to filesystem_mock.

  • Scripts/webkitpy/common/system/filesystem_mock.py:

(MockFileSystem.copyfile):
Fix the mock to better match python's copyfile semantics.

  • Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests.py:

(Rebaseliner._create_html_baseline_files):

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

(RebaselineTest._copy_existing_baseline):

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

Add state variable and ASSERTs to DocumentWriter to help track down
https://bugs.webkit.org/show_bug.cgi?id=80427 and prevent illegal usage
of DocumentWriter. This also makes endIfNotLoadingMainResource() private
as there is no external usage.

Patch by Raymes Khoury <raymes@chromium.org> on 2012-03-06
Reviewed by Adam Barth.

This only adds ASSERT/CRASH and does not change existing behaviour.

  • loader/DocumentWriter.cpp:

(WebCore::DocumentWriter::DocumentWriter):
(WebCore::DocumentWriter::begin):
(WebCore::DocumentWriter::addData):
(WebCore::DocumentWriter::endIfNotLoadingMainResource):
(WebCore::DocumentWriter::setDocumentWasLoadedAsPartOfNavigation):

  • loader/DocumentWriter.h:

(DocumentWriter):

2:41 PM Changeset in webkit [109961] by mihnea@adobe.com
  • 5 edits in trunk

[CSSRegions][CSSOM]Restrict parsing of named flow name
https://bugs.webkit.org/show_bug.cgi?id=80359

Reviewed by Andreas Kling.

The function that does the parsing for flow thread name should restrict the
number of parsed properties to 1, otherwise it would allow parsing of
"-webkit-flow-into: flow; color: red;" constructions.

Source/WebCore:

Modified fast/regions/webkit-named-flow-invalid-name.html to include the above case.

  • css/CSSParser.cpp:

(WebCore::validFlowName):
(WebCore::CSSParser::parseFlowThread):

LayoutTests:

  • fast/regions/webkit-named-flow-invalid-name-expected.txt:
  • fast/regions/webkit-named-flow-invalid-name.html:
2:41 PM Changeset in webkit [109960] by mihaip@chromium.org
  • 1 edit
    3 copies in branches/chromium/1025

Merge 109543 - REGRESSION (r104060): Page contents not painted if inserting a new stylesheet and temporary body node
https://bugs.webkit.org/show_bug.cgi?id=76590

Reviewed by Maciej Stachowiak.

Source/WebCore:

Test: fast/css/pending-stylesheet-repaint.html

If there has been a style recalc with a pending stylesheet, the forced repaint will need to be triggered even
if the stylesheet doesn't affect the rendering. Otherwise we may end up never painting at all.

  • dom/Document.cpp:

(WebCore::Document::styleSelectorChanged):

LayoutTests:

  • fast/css/pending-stylesheet-repaint-expected.png: Added.
  • fast/css/pending-stylesheet-repaint-expected.txt: Added.
  • fast/css/pending-stylesheet-repaint.html: Added.

TBR=Antti Koivisto
Review URL: https://chromiumcodereview.appspot.com/9618030

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

[BlackBerry] Remove unused and unneeded WebPageClient::downloadRequested(NetworkRequest&)
https://bugs.webkit.org/show_bug.cgi?id=80438

Patch by Lianghui Chen <liachen@rim.com> on 2012-03-06
Reviewed by Antonio Gomes.

  • Api/WebPageClient.h:
1:59 PM Changeset in webkit [109958] by dgrogan@chromium.org
  • 2 edits in trunk/Source/WebKit/chromium

[Chromium] Add OVERRIDEs to WebWorkerClientImpl.h
https://bugs.webkit.org/show_bug.cgi?id=80434

Reviewed by Tony Chang.

Tests: just that it compiles.

  • src/WebWorkerClientImpl.h:

(WebWorkerClientImpl):

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

MiniBrowser --window-size 480x800 www.nytimes.com doesn't paint bottom tiles.
https://bugs.webkit.org/show_bug.cgi?id=80313

Patch by Hugo Parente Lima <Hugo Parente Lima> on 2012-03-06
Reviewed by Kenneth Rohde Christiansen.

Fix the math to get the visible rectangle and add a method to get it.

  • UIProcess/API/qt/qquickwebview.cpp:

(QQuickWebViewPrivate::visibleContentsRect):
(QQuickWebViewFlickablePrivate::_q_commitScaleChange):
(QQuickWebViewPrivate::_q_commitPositionChange):

  • UIProcess/API/qt/qquickwebview_p_p.h:

(QQuickWebViewPrivate):

1:32 PM Changeset in webkit [109956] by mhahnenberg@apple.com
  • 4 edits in trunk/Source/JavaScriptCore

GCActivityCallback timer should vary with the length of the previous GC
https://bugs.webkit.org/show_bug.cgi?id=80344

Reviewed by Geoffrey Garen.

  • heap/Heap.cpp: Gave Heap the ability to keep track of the length of its last

GC length so that the GC Activity Callback can use it.
(JSC::Heap::Heap):
(JSC::Heap::collect):

  • heap/Heap.h:

(JSC::Heap::lastGCLength):
(Heap):

  • runtime/GCActivityCallbackCF.cpp:

(JSC):
(JSC::DefaultGCActivityCallback::operator()): Use the length of the Heap's last
GC to determine the length of our timer trigger (currently set at 100x the duration
of the last GC).

1:32 PM Changeset in webkit [109955] by schenney@chromium.org
  • 2 edits in trunk/LayoutTests

Update Chromium/SVG expectations after the <use> rewrite
https://bugs.webkit.org/show_bug.cgi?id=79568

Unreviewed Chromium test_expectations update.

As expected, some tests are failing due to missing or incorrect baselines.

  • platform/chromium/test_expectations.txt:
1:11 PM Changeset in webkit [109954] by Joseph Pecoraro
  • 2 edits in trunk/Source/WebCore

Unreviewed build fix for minimal build after r109939.

Guard access to page->inspectorController with ENABLE(INSPECTOR).

  • page/FrameView.cpp:

(WebCore::FrameView::performPostLayoutTasks):

1:01 PM Changeset in webkit [109953] by dino@apple.com
  • 4 edits
    7 adds in trunk

Enable compositing when a CSS filter is animating
https://bugs.webkit.org/show_bug.cgi?id=79048

Reviewed by Simon Fraser.

Source/WebCore:

Now that some systems (e.g. OS X) have both hardware accelerated
CSS filters, and the ability to animate them via the hardware
compositor, all CSS filters should be composited when animating.

Tests: css3/filters/composited-during-animation-layertree.html

css3/filters/composited-during-animation.html
css3/filters/composited-during-transition-layertree.html

  • platform/graphics/ca/GraphicsLayerCA.cpp:

(WebCore):
(WebCore::supportsAcceleratedFilterAnimations):

new method that returns true if the platform supports
hardware animations of filters.

(WebCore::GraphicsLayerCA::addAnimation):
(WebCore::GraphicsLayerCA::createAnimationFromKeyframes):

only create layer-animations if the platform supports it.

  • rendering/RenderLayerCompositor.cpp:

(WebCore::RenderLayerCompositor::requiresCompositingForAnimation):

create a compositing layer if animating a filter on a
supported platform.

LayoutTests:

  • platform/mac/css3/filters/composited-during-animation-expected.txt: Added.
  • platform/mac/css3/filters/composited-during-animation-layertree-expected.txt: Added.
  • css3/filters/composited-during-animation-layertree.html: Added.
  • css3/filters/composited-during-animation.html: Added.
  • platform/mac/css3/filters/composited-during-transition-layertree-expected.txt: Added.
  • css3/filters/composited-during-transition-layertree.html: Added.
12:50 PM Changeset in webkit [109952] by rwlbuis@webkit.org
  • 3 edits in trunk/Source/JavaScriptCore

BlackBerry] Fix cast-align gcc warnings when compiling JSC
https://bugs.webkit.org/show_bug.cgi?id=80420

Reviewed by Gavin Barraclough.

Fix warnings given in Blackberry build.

  • heap/CopiedBlock.h:

(JSC::CopiedBlock::CopiedBlock):

  • wtf/RefCountedArray.h:

(WTF::RefCountedArray::Header::fromPayload):

12:41 PM Common pixel differences between ports edited by ojan@chromium.org
(diff)
12:38 PM Common pixel differences between ports created by ojan@chromium.org
12:34 PM WikiStart edited by ojan@chromium.org
(diff)
12:30 PM Changeset in webkit [109951] by schenney@chromium.org
  • 73 edits
    50 adds
    2 deletes in trunk/LayoutTests

Update Chromium/SVG expectations after the <use> rewrite
https://bugs.webkit.org/show_bug.cgi?id=79568

Unreviewed Chromium expectation updates.

This covers the remaining text failures after r109097. There are no
image updates here (expect a missing one) because the flakiness board
indicated that no images were failing that were not already failing.
Of course, that may be incorrect but the best way to find out is to
try it.

  • platform/chromium-linux-x86/svg/filters/filter-refresh-expected.txt:
  • platform/chromium-linux-x86/svg/stroke: Added.
  • platform/chromium-linux-x86/svg/stroke/zero-length-path-linecap-rendering-expected.txt: Added.
  • platform/chromium-linux-x86/svg/stroke/zero-length-subpaths-linecap-rendering-expected.txt: Added.
  • platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-36-t-expected.txt: Added.
  • platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-39-t-expected.txt: Added.
  • platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-40-t-expected.txt: Added.
  • platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-41-t-expected.txt: Added.
  • platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-46-t-expected.txt: Added.
  • platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-61-t-expected.txt: Added.
  • platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-63-t-expected.txt: Added.
  • platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-64-t-expected.txt: Added.
  • platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-65-t-expected.txt: Added.
  • platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-66-t-expected.txt: Added.
  • platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-67-t-expected.txt: Added.
  • platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-68-t-expected.txt: Added.
  • platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-69-t-expected.txt: Added.
  • platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-70-t-expected.txt: Added.
  • platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-77-t-expected.png:
  • platform/chromium-linux/svg/W3C-SVG-1.1/filters-morph-01-f-expected.txt: Added.
  • platform/chromium-linux/svg/W3C-SVG-1.1/text-path-01-b-expected.txt: Added.
  • platform/chromium-linux/svg/W3C-SVG-1.1/text-text-05-t-expected.txt: Added.
  • platform/chromium-linux/svg/batik/text/smallFonts-expected.png: Added.
  • platform/chromium-linux/svg/batik/text/textPosition-expected.txt:
  • platform/chromium-linux/svg/batik/text/textPosition2-expected.txt:
  • platform/chromium-linux/svg/carto.net/window-expected.txt: Removed.
  • platform/chromium-linux/svg/filters/filter-refresh-expected.txt:
  • platform/chromium-linux/svg/stroke/zero-length-path-linecap-rendering-expected.txt: Added.
  • platform/chromium-linux/svg/stroke/zero-length-subpaths-linecap-rendering-expected.txt: Added.
  • platform/chromium-mac-leopard/svg/batik/text/smallFonts-expected.png: Added.
  • platform/chromium-mac-leopard/svg/filters/filter-refresh-expected.txt:
  • platform/chromium-mac-leopard/svg/stroke: Added.
  • platform/chromium-mac-leopard/svg/stroke/zero-length-path-linecap-rendering-expected.txt: Added.
  • platform/chromium-mac-leopard/svg/stroke/zero-length-subpaths-linecap-rendering-expected.txt: Added.
  • platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/animate-elem-39-t-expected.txt: Added.
  • platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/animate-elem-46-t-expected.txt: Added.
  • platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/animate-elem-77-t-expected.txt: Added.
  • platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/animate-elem-80-t-expected.txt:
  • platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/struct-group-03-t-expected.txt:
  • platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/text-text-05-t-expected.txt: Added.
  • platform/chromium-mac-snowleopard/svg/batik/paints/patternPreserveAspectRatioA-expected.txt: Added.
  • platform/chromium-mac-snowleopard/svg/batik/text/longTextOnPath-expected.txt:
  • platform/chromium-mac-snowleopard/svg/batik/text/smallFonts-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/batik/text/textOnPath2-expected.txt:
  • platform/chromium-mac-snowleopard/svg/batik/text/textOnPath3-expected.txt:
  • platform/chromium-mac-snowleopard/svg/batik/text/textProperties-expected.txt: Added.
  • platform/chromium-mac-snowleopard/svg/batik/text/textStyles-expected.txt: Added.
  • platform/chromium-mac-snowleopard/svg/filters/filter-refresh-expected.txt:
  • platform/chromium-mac-snowleopard/svg/stroke/zero-length-path-linecap-rendering-expected.txt: Added.
  • platform/chromium-mac-snowleopard/svg/stroke/zero-length-subpaths-linecap-rendering-expected.txt: Added.
  • platform/chromium-mac-snowleopard/svg/text/text-text-05-t-expected.txt: Added.
  • platform/chromium-win-vista/svg/filters/filter-refresh-expected.txt:
  • platform/chromium-win-vista/svg/stroke: Added.
  • platform/chromium-win-vista/svg/stroke/zero-length-path-linecap-rendering-expected.txt: Added.
  • platform/chromium-win-vista/svg/stroke/zero-length-subpaths-linecap-rendering-expected.txt: Added.
  • platform/chromium-win-xp/svg/filters/filter-refresh-expected.txt:
  • platform/chromium-win-xp/svg/stroke: Added.
  • platform/chromium-win-xp/svg/stroke/zero-length-path-linecap-rendering-expected.txt: Added.
  • platform/chromium-win-xp/svg/stroke/zero-length-subpaths-linecap-rendering-expected.txt: Added.
  • platform/chromium-win-xp/svg/zoom/page/zoom-mask-with-percentages-expected.txt: Removed.
  • platform/chromium-win/svg/W3C-SVG-1.1-SE/struct-use-11-f-expected.txt:
  • platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-30-t-expected.txt:
  • platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-77-t-expected.txt:
  • platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-78-t-expected.txt:
  • platform/chromium-win/svg/W3C-SVG-1.1/filters-gauss-01-b-expected.txt:
  • platform/chromium-win/svg/W3C-SVG-1.1/fonts-elem-05-t-expected.txt:
  • platform/chromium-win/svg/W3C-SVG-1.1/fonts-elem-06-t-expected.txt:
  • platform/chromium-win/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.txt:
  • platform/chromium-win/svg/W3C-SVG-1.1/pservers-grad-13-b-expected.txt:
  • platform/chromium-win/svg/W3C-SVG-1.1/struct-group-03-t-expected.txt:
  • platform/chromium-win/svg/W3C-SVG-1.1/struct-image-02-b-expected.txt:
  • platform/chromium-win/svg/W3C-SVG-1.1/struct-use-03-t-expected.txt:
  • platform/chromium-win/svg/W3C-SVG-1.1/struct-use-05-b-expected.txt:
  • platform/chromium-win/svg/W3C-SVG-1.1/text-text-04-t-expected.txt:
  • platform/chromium-win/svg/W3C-SVG-1.1/text-text-06-t-expected.txt:
  • platform/chromium-win/svg/batik/filters/feTile-expected.txt:
  • platform/chromium-win/svg/batik/filters/filterRegions-expected.txt:
  • platform/chromium-win/svg/batik/masking/maskRegions-expected.txt:
  • platform/chromium-win/svg/batik/paints/gradientLimit-expected.txt:
  • platform/chromium-win/svg/batik/paints/patternPreserveAspectRatioA-expected.txt:
  • platform/chromium-win/svg/batik/paints/patternRegionA-expected.txt:
  • platform/chromium-win/svg/batik/paints/patternRegions-expected.txt:
  • platform/chromium-win/svg/batik/paints/patternRegions-positioned-objects-expected.txt:
  • platform/chromium-win/svg/batik/text/longTextOnPath-expected.txt:
  • platform/chromium-win/svg/batik/text/smallFonts-expected.png: Added.
  • platform/chromium-win/svg/batik/text/smallFonts-expected.txt: Added.
  • platform/chromium-win/svg/batik/text/textAnchor-expected.txt:
  • platform/chromium-win/svg/batik/text/textDecoration-expected.txt:
  • platform/chromium-win/svg/batik/text/textEffect-expected.txt:
  • platform/chromium-win/svg/batik/text/textEffect2-expected.txt:
  • platform/chromium-win/svg/batik/text/textEffect3-expected.txt:
  • platform/chromium-win/svg/batik/text/textFeatures-expected.txt:
  • platform/chromium-win/svg/batik/text/textGlyphOrientationHorizontal-expected.txt:
  • platform/chromium-win/svg/batik/text/textLayout-expected.txt:
  • platform/chromium-win/svg/batik/text/textLayout2-expected.txt:
  • platform/chromium-win/svg/batik/text/textLength-expected.txt:
  • platform/chromium-win/svg/batik/text/textOnPath-expected.txt:
  • platform/chromium-win/svg/batik/text/textOnPath2-expected.txt:
  • platform/chromium-win/svg/batik/text/textOnPath3-expected.txt:
  • platform/chromium-win/svg/batik/text/textOnPathSpaces-expected.txt:
  • platform/chromium-win/svg/batik/text/textPosition-expected.txt:
  • platform/chromium-win/svg/batik/text/textPosition2-expected.txt:
  • platform/chromium-win/svg/batik/text/textProperties-expected.txt:
  • platform/chromium-win/svg/batik/text/textProperties2-expected.txt:
  • platform/chromium-win/svg/batik/text/textStyles-expected.txt:
  • platform/chromium-win/svg/batik/text/verticalText-expected.txt:
  • platform/chromium-win/svg/batik/text/verticalTextOnPath-expected.txt:
  • platform/chromium-win/svg/carto.net/button-expected.txt:
  • platform/chromium-win/svg/carto.net/colourpicker-expected.txt:
  • platform/chromium-win/svg/carto.net/slider-expected.txt:
  • platform/chromium-win/svg/carto.net/window-expected.txt:
  • platform/chromium-win/svg/filters/filter-refresh-expected.txt:
  • platform/chromium-win/svg/hixie/error/017-expected.txt:
  • platform/chromium-win/svg/stroke/zero-length-path-linecap-rendering-expected.txt: Added.
  • platform/chromium-win/svg/stroke/zero-length-subpaths-linecap-rendering-expected.txt: Added.
  • platform/chromium-win/svg/text/text-gradient-positioning-expected.txt:
  • platform/chromium-win/svg/text/text-path-01-b-expected.txt:
  • platform/chromium-win/svg/text/text-text-04-t-expected.txt:
  • platform/chromium-win/svg/text/text-text-05-t-expected.txt:
  • platform/chromium-win/svg/text/text-text-06-t-expected.txt:
  • platform/chromium-win/svg/transforms/svg-css-transforms-clip-path-expected.txt:
  • platform/chromium-win/svg/zoom/page/zoom-mask-with-percentages-expected.txt: Added.
  • platform/chromium/svg/stroke/zero-length-arc-linecaps-rendering-expected.txt: Replaced.
  • platform/chromium/test_expectations.txt:
12:23 PM Changeset in webkit [109950] by senorblanco@chromium.org
  • 2 edits in trunk/LayoutTests

[chromium] Unreviewed gardening.

  • platform/chromium-mac-leopard/svg/custom/use-on-text-expected.png:
12:20 PM Changeset in webkit [109949] by barraclough@apple.com
  • 12 edits in trunk

writable/configurable not respected for some properties of Function/String/Arguments
https://bugs.webkit.org/show_bug.cgi?id=80436

Reviewed by Oliver Hunt.

Special properties should behave like regular properties.

Source/JavaScriptCore:

  • runtime/Arguments.cpp:

(JSC::Arguments::defineOwnProperty):

  • Mis-nested logic for making read-only properties non-live.
  • runtime/JSFunction.cpp:

(JSC::JSFunction::put):

  • arguments/length/caller are non-writable, non-configurable - reject appropriately.

(JSC::JSFunction::deleteProperty):

  • Attempting to delete prototype/caller should fail.

(JSC::JSFunction::defineOwnProperty):

  • Ensure prototype is reified on attempt to reify it.
  • arguments/length/caller are non-writable, non-configurable - reject appropriately.
  • runtime/JSFunction.h:
    • added declaration for defineOwnProperty.

(JSFunction):

  • runtime/StringObject.cpp:

(JSC::StringObject::put):

  • length is non-writable, non-configurable - reject appropriately.

LayoutTests:

  • fast/js/mozilla/strict/10.6-expected.txt:
  • fast/js/mozilla/strict/15.3.5.1-expected.txt:
  • fast/js/mozilla/strict/15.3.5.2-expected.txt:
  • fast/js/mozilla/strict/15.5.5.1-expected.txt:
    • Check in passing test results.
  • fast/js/script-tests/arguments.js:
    • Fix test - this was asserting incorrect behaviour.
12:16 PM Changeset in webkit [109948] by dgrogan@chromium.org
  • 6 edits in trunk/Source/WebKit/chromium

IndexedDB: Check WebCommonWorkerClient::allowIndexedDB before proceeding from a shared worker
https://bugs.webkit.org/show_bug.cgi?id=79954

Tests: The 'allow' case will be tested once the patch at
http://webkit.org/b/80189 and
https://chromiumcodereview.appspot.com/9585031/ both land. Bug for
testing the 'deny' case is http://crbug.com/113738.

Reviewed by Tony Chang.

  • public/WebCommonWorkerClient.h:

(WebKit::WebCommonWorkerClient::allowDatabase):
(WebKit::WebCommonWorkerClient::allowFileSystem):
(WebKit::WebCommonWorkerClient::openFileSystem):
(WebCommonWorkerClient):
(WebKit::WebCommonWorkerClient::allowIndexedDB):

  • public/WebSharedWorkerClient.h:

(WebSharedWorkerClient):

  • src/IDBFactoryBackendProxy.cpp:

(WebKit::AllowIndexedDBMainThreadBridge::create):
(WebKit::AllowIndexedDBMainThreadBridge::cancel):
(WebKit::AllowIndexedDBMainThreadBridge::signalCompleted):
(WebKit::AllowIndexedDBMainThreadBridge::AllowIndexedDBMainThreadBridge):
(WebKit::AllowIndexedDBMainThreadBridge::allowIndexedDBTask):
(AllowIndexedDBMainThreadBridge):
(WebKit::IDBFactoryBackendProxy::allowIDBFromWorkerThread):

  • src/WebWorkerClientImpl.cpp:

(WebKit):
(WebKit::WebWorkerClientImpl::allowIndexedDB):

  • src/WebWorkerClientImpl.h:

(WebWorkerClientImpl):

12:14 PM Changeset in webkit [109947] by leviw@chromium.org
  • 3 edits in branches/subpixellayout/Source/WebCore/rendering

Cleaning up RenderBlock* before merging changes to trunk. Also fixing an assert in RenderLayer because of an unecessary LayoutUnit.

12:13 PM Changeset in webkit [109946] by senorblanco@chromium.org
  • 6 edits
    1 delete in trunk/Source

Unreviewed, rolling out r109825.
http://trac.webkit.org/changeset/109825
https://bugs.webkit.org/show_bug.cgi?id=79413

Broke webkit_unit_tests on Chromium Win

Source/WebCore:

  • Modules/indexeddb/IDBLevelDBBackingStore.cpp:

(WebCore::IDBLevelDBBackingStore::open):

  • platform/leveldb/LevelDBDatabase.cpp:

(WebCore):

  • platform/leveldb/LevelDBDatabase.h:

(LevelDBDatabase):

Source/WebKit/chromium:

  • WebKit.gypi:
  • tests/LevelDBTest.cpp: Removed.
12:11 PM Changeset in webkit [109945] by ojan@chromium.org
  • 6 edits in trunk/Tools

Add a mechanism to rebaseline new ports
https://bugs.webkit.org/show_bug.cgi?id=80355

Reviewed by Adam Barth.

For a test that's only failing on a new port, we want
to first copy the existing result into the location for the
port it's replacing in order to not break that port.

For example, bringing up the chromium-lion port, if we just
stick the results in the chromium-mac directory, the snow leopard
will start failing. Instead, we first copy the existing result
to the chromium-mac-snowleopard directory.

  • Scripts/webkitpy/layout_tests/port/builders.py:

(builder_path_for_port_name):
(fallback_port_name_for_new_port):

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

(RebaselineTest):
(RebaselineTest._copy_existing_baseline):
(RebaselineTest._rebaseline_test):
(RebaselineTest.execute):

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

(TestRebaseline.test_rebaseline_test):
(TestRebaseline):
(TestRebaseline.test_rebaseline_and_copy_test):
(test_rebaseline_and_copy_test_no_existing_result):
(test_rebaseline_and_copy_test_with_lion_result):
(test_rebaseline_and_copy_no_overwrite_test):

  • Scripts/webkitpy/tool/servers/gardeningserver.py:

(GardeningHTTPRequestHandler.rebaseline):

  • Scripts/webkitpy/tool/servers/gardeningserver_unittest.py:

(GardeningServerTest.test_rebaseline):
(GardeningServerTest):
(GardeningServerTest.test_rebaseline_new_port):

12:08 PM Changeset in webkit [109944] by Beth Dakin
  • 9 edits
    1 add in trunk

https://bugs.webkit.org/show_bug.cgi?id=80351
InlineTextBox is using the wrong origin when calling
addRelevantRepaintedObject
-and corresponding-
<rdar://problem/10970221>

Reviewed by Sam Weinig.

Source/WebCore:

boxOrigin represents the actual location of the text. The adjustedPaintOffset
(which I was using previously) will only correspond to the first line in a
block of lines.

  • rendering/InlineTextBox.cpp:

(WebCore::InlineTextBox::paint):

Tools:

This test has actually been broken since revision 109273. This change makes
the test pass again, and it makes it specifically exercise the fix for this
bug.

  • TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
  • TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayout.cpp:

(TestWebKitAPI::TEST):

Adjust comments in the other tests to reflect the API changes from 109273.

  • TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFails.cpp:

(TestWebKitAPI::TEST):

  • TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFails_Bundle.cpp:

(TestWebKitAPI::NewFirstVisuallyNonEmptyLayoutFailsTest::didCreatePage):

  • TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFrames_Bundle.cpp:

(TestWebKitAPI::NewFirstVisuallyNonEmptyLayoutFramesTest::didCreatePage):

  • TestWebKitAPI/Tests/WebKit2/NewFirstVisuallyNonEmptyLayout_Bundle.cpp:

(TestWebKitAPI::NewFirstVisuallyNonEmptyLayoutTest::didCreatePage):

  • TestWebKitAPI/Tests/WebKit2/lots-of-text.html: Added.
11:59 AM Changeset in webkit [109943] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

[BlackBerry] Disable border radius clips (r95239) for BlackBerry
https://bugs.webkit.org/show_bug.cgi?id=80416

Patch by Filip Spacek <fspacek@rim.com> on 2012-03-06
Reviewed by Antonio Gomes

The BlackBerry port suffers from the same performance
degradation when border radius clip is enabled as Chromium.

  • rendering/RenderLayer.cpp:
11:55 AM Changeset in webkit [109942] by senorblanco@chromium.org
  • 9 edits in trunk/Source/WebCore

Unreviewed, rolling out r109832.
http://trac.webkit.org/changeset/109832
https://bugs.webkit.org/show_bug.cgi?id=80356

Broke WebSocket tests on Chrome Mac and Linux

  • Modules/websockets/ThreadableWebSocketChannel.h:

(ThreadableWebSocketChannel):

  • Modules/websockets/ThreadableWebSocketChannelClientWrapper.cpp:

(WebCore::ThreadableWebSocketChannelClientWrapper::ThreadableWebSocketChannelClientWrapper):
(WebCore::ThreadableWebSocketChannelClientWrapper::sendRequestResult):
(WebCore::ThreadableWebSocketChannelClientWrapper::setSendRequestResult):

  • Modules/websockets/ThreadableWebSocketChannelClientWrapper.h:

(ThreadableWebSocketChannelClientWrapper):

  • Modules/websockets/WebSocket.cpp:

(WebCore::WebSocket::send):

  • Modules/websockets/WebSocketChannel.cpp:

(WebCore::WebSocketChannel::send):
(WebCore::WebSocketChannel::enqueueTextFrame):
(WebCore::WebSocketChannel::processOutgoingFrameQueue):

  • Modules/websockets/WebSocketChannel.h:

(WebSocketChannel):
(QueuedFrame):

  • Modules/websockets/WorkerThreadableWebSocketChannel.cpp:

(WebCore::WorkerThreadableWebSocketChannel::send):
(WebCore::workerContextDidSend):
(WebCore::WorkerThreadableWebSocketChannel::Peer::send):
(WebCore::WorkerThreadableWebSocketChannel::Bridge::send):

  • Modules/websockets/WorkerThreadableWebSocketChannel.h:

(WorkerThreadableWebSocketChannel):
(Bridge):

11:50 AM Changeset in webkit [109941] by senorblanco@chromium.org
  • 6 edits
    4 deletes in trunk

Unreviewed, rolling out r109840.
http://trac.webkit.org/changeset/109840
https://bugs.webkit.org/show_bug.cgi?id=80103

Broke WebSocket tests on Chrome Mac and Linux

Source/WebCore:

  • Modules/websockets/WebSocket.cpp:

(WebCore::WebSocket::send):
(WebCore::WebSocket::close):

  • Modules/websockets/WebSocketChannel.cpp:

(WebCore::WebSocketChannel::send):

LayoutTests:

  • http/tests/websocket/tests/hybi/close-expected.txt:
  • http/tests/websocket/tests/hybi/unpaired-surrogates-in-close-reason-expected.txt: Removed.
  • http/tests/websocket/tests/hybi/unpaired-surrogates-in-close-reason.html: Removed.
  • http/tests/websocket/tests/hybi/unpaired-surrogates-in-message-expected.txt: Removed.
  • http/tests/websocket/tests/hybi/unpaired-surrogates-in-message.html: Removed.
  • http/tests/websocket/tests/hybi/workers/close-expected.txt:
11:44 AM Changeset in webkit [109940] by eae@chromium.org
  • 3 edits in branches/subpixellayout/Source/WebCore

Add size_t version of AppUnit::operator/ on branch.

11:33 AM Changeset in webkit [109939] by Joseph Pecoraro
  • 19 edits in trunk/Source

<http://webkit.org/b/78575> Web Inspector: Disable dock button when not allowed to dock

There are times when an undocked inspector frontend is not allowed to
attach to the main window. We can disable the dock button in those cases.

Reviewed by Pavel Feldman.

No new tests. This functionality is port specific right now.

  • page/FrameView.cpp:

(WebCore::FrameView::performPostLayoutTasks):
When the main frame is resized we let the inspector client know,
so that it can react to it as needed.

  • WebCore.exp.in:
  • inspector/InspectorClient.h:

(WebCore::InspectorClient::didResizeMainFrame):

  • inspector/InspectorController.cpp:
  • inspector/InspectorController.h:

(WebCore::InspectorController::inspectorClient):
Call up to the port though to the InspectorClient.

  • inspector/InspectorFrontendClientLocal.cpp:

(WebCore::InspectorFrontendClientLocal::frontendLoaded):
(WebCore::InspectorFrontendClientLocal::setDockingUnavailable):

  • inspector/InspectorFrontendClientLocal.h:

On ports where the inspector frontend client is local, provide a
setDockingUnavailable InspectorFrontendAPI to update the docking state.
Automatically update availability when the frontend completes loading.

  • inspector/front-end/InspectorFrontendAPI.js:

(InspectorFrontendAPI.setDockingUnavailable):

  • inspector/front-end/inspector.js:

(WebInspector._createGlobalStatusBarItems):
(WebInspector.setAttachedWindow):
(WebInspector.setDockingUnavailable):
(WebInspector.updateDockToggleButton):
Update the dock button's enabled/disabled state when its created,
when the attached state changes, when get a frontend API notification
that we cannot attach.

  • inspector/front-end/InspectorFrontendHostStub.js:

Remove unused canAttachWindow method.

Source/WebKit/mac: Web Inspector: Hide dock button when not allowed to dock
https://bugs.webkit.org/show_bug.cgi?id=78575

Reviewed by Pavel Feldman.

  • WebCoreSupport/WebInspectorClient.h:

(WebCore):
(WebInspectorClient):

  • WebCoreSupport/WebInspectorClient.mm:

(WebInspectorClient::didResizeMainFrame):

Source/WebKit2: Web Inspector: Hide dock button when not allowed to dock
https://bugs.webkit.org/show_bug.cgi?id=78575

Reviewed by Pavel Feldman.

  • WebProcess/WebCoreSupport/WebInspectorClient.cpp:

(WebKit::WebInspectorClient::didResizeMainFrame):

  • WebProcess/WebCoreSupport/WebInspectorClient.h:
  • WebProcess/WebPage/WebInspector.cpp:

(WebKit::WebInspector::updateDockingAvailability):

  • WebProcess/WebPage/WebInspector.h:
11:23 AM Changeset in webkit [109938] by hans@chromium.org
  • 6 edits
    8 adds in trunk

Speech JavaScript API: add SpeechRecognitionError
https://bugs.webkit.org/show_bug.cgi?id=80410

Source/WebCore:

Reviewed by Adam Barth.

Add SpeechRecognitionError.

Test: fast/speech/scripted/speechrecognitionerror-basics.html

  • Modules/speech/DOMWindowSpeech.idl: Added.
  • Modules/speech/SpeechRecognitionError.cpp: Added.

(WebCore):
(WebCore::SpeechRecognitionError::create):
(WebCore::SpeechRecognitionError::SpeechRecognitionError):

  • Modules/speech/SpeechRecognitionError.h: Added.

(WebCore):
(SpeechRecognitionError):
(WebCore::SpeechRecognitionError::code):
(WebCore::SpeechRecognitionError::message):

  • Modules/speech/SpeechRecognitionError.idl: Added.
  • WebCore.gyp/WebCore.gyp:
  • WebCore.gypi:

Tools:

Chromium: enable the runtime flag for scripted speech so we can run
the layout tests for it.

Reviewed by Adam Barth.

  • DumpRenderTree/chromium/TestShell.cpp:

(TestShell::TestShell):

LayoutTests:

Add a test for SpeechRecognitionError.

Reviewed by Adam Barth.

  • fast/speech/scripted/speechrecognitionerror-basics.html: Added.
11:08 AM Changeset in webkit [109937] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

Enable universal newlines in chromium android layout test runner
https://bugs.webkit.org/show_bug.cgi?id=80418

Patch by Sami Kyostila <skyostil@chromium.org> on 2012-03-06
Reviewed by Adam Barth.

The Chromium Android layout test runner uses the 'adb' program to
communicate with the Android device. Adb uses CRLF ('\r\n') to delimit
output lines from the test runner, while the test expectation files are
written with LF ('\n') delimiters. This causes the results to have
spurious whitespace differences, making them more difficult to
interpret.

The fix is to enable universal newlines for the DumpRenderTree pipe,
causing the output to only contain LF newlines like on other platforms.

  • Scripts/webkitpy/layout_tests/port/chromium_android.py:

(ChromiumAndroidDriver._start):

11:07 AM Changeset in webkit [109936] by cevans@google.com
  • 3 edits
    4 copies in branches/chromium/1025

Merge 109480
BUG=114513
Review URL: https://chromiumcodereview.appspot.com/9617017

11:01 AM Changeset in webkit [109935] by eae@chromium.org
  • 8 edits in branches/subpixellayout/Source/WebCore/rendering

Fix basline bug in RenderDeprecatedFlexibleBox on branch.

10:35 AM Changeset in webkit [109934] by rniwa@webkit.org
  • 2 edits in trunk/LayoutTests

select-line-break-with-opposite-directionality.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=80227

Unreviewed test fix attempt.

  • editing/selection/select-line-break-with-opposite-directionality.html:
10:15 AM Changeset in webkit [109933] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebCore

Unreleased gst_object_reference to audio sink in MediaPlayerPrivateGStreamer
https://bugs.webkit.org/show_bug.cgi?id=79795

Bug fix: Used a GRefPtr to hold the reference to the audio sink instead of a GstElement*.
Code cleanup: Used the same pattern for webkit web source and removed explicit gst_unref in destructor.

Patch by David Corvoysier <david.corvoysier@orange.com> on 2012-03-06
Reviewed by Philippe Normand.

No new tests. No change in behavior.

  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:

(WebCore::MediaPlayerPrivateGStreamer::~MediaPlayerPrivateGStreamer):

  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.h:

(MediaPlayerPrivateGStreamer):

10:03 AM Changeset in webkit [109932] by Patrick Gansterer
  • 2 edits in trunk/Source/WebCore

[CMake] Build fix for !ENABLE(WORKERS) after r109556 and r109833.

  • CMakeLists.txt:
9:57 AM Changeset in webkit [109931] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

[Qt][WK2] Crash in Frame.cpp when loading index.hu
https://bugs.webkit.org/show_bug.cgi?id=80165

Guard against possible null document, which can happen
when unsetting a document in a frame.

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

  • page/Frame.cpp:

(WebCore::Frame::setDocument):

9:54 AM Changeset in webkit [109930] by abecsi@webkit.org
  • 3 edits in trunk/Source/WebKit2

[Qt] Interaction Engine suspends content during pageload.
https://bugs.webkit.org/show_bug.cgi?id=80294

Only suspend content when viewport updates are deferred
for a non-instantanious interaction.

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

  • UIProcess/qt/QtViewportInteractionEngine.cpp:

(WebKit::ViewportUpdateDeferrer::ViewportUpdateDeferrer):
(WebKit::ViewportUpdateDeferrer::~ViewportUpdateDeferrer):
(WebKit::QtViewportInteractionEngine::QtViewportInteractionEngine):
(WebKit::QtViewportInteractionEngine::flickableMoveStarted):
(WebKit::QtViewportInteractionEngine::scaleAnimationStateChanged):

  • UIProcess/qt/QtViewportInteractionEngine.h:

(QtViewportInteractionEngine):

9:51 AM Changeset in webkit [109929] by jberlin@webkit.org
  • 2 edits
    4 adds in trunk/Source/WebCore

WebCore build exceeds address space on 32-bit Windows builds.
https://bugs.webkit.org/show_bug.cgi?id=80346

Patch by Lucas Forschler <Lucas Forschler> on 2012-03-06
Reviewed by Jessie Berlin.

Patch by Lucas Forschler, landed by Jessie Berlin.

Add AllInOne.cpp files for a few projects.
This will only affect Production and Release builds.
Let VS rebuild the project file.

  • WebCore.vcproj/WebCore.vcproj:
  • css/MediaAllInOne.cpp: Added.
  • loader/appcache/ApplicationCacheAllInOne.cpp: Added.
  • mathml/MathMLAllInOne.cpp: Added.
  • platform/text/TextAllInOne.cpp: Added.
9:46 AM Changeset in webkit [109928] by Philippe Normand
  • 4 edits in trunk/LayoutTests

[GTK] fullscreen/full-screen-iframe-legacy.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=74279

Reviewed by Eric Carlson.

  • fullscreen/full-screen-iframe-legacy.html: Wait for canplaythrough

event on the video and increase the timeout to 100ms to reduce
flakiness. Also set the iframe video url from the main frame
before installing the canplaythrough event listener.

9:17 AM Changeset in webkit [109927] by pfeldman@chromium.org
  • 9 edits in trunk

Web Inspector: add support for inspection of huge (1M elements) arrays.
https://bugs.webkit.org/show_bug.cgi?id=80421

Reviewed by Vsevolod Vlasov.

Source/WebCore:

  • inspector/front-end/ConsoleView.js:

(WebInspector.ConsoleView.prototype.completionsForExpression.evaluated):

  • inspector/front-end/ElementsPanel.js:
  • inspector/front-end/ObjectPropertiesSection.js:

(WebInspector.ObjectPropertiesSection.prototype.update.callback):
(WebInspector.ObjectPropertiesSection.prototype.update):
(WebInspector.ObjectPropertiesSection.prototype.updateProperties):
(WebInspector.ObjectPropertyTreeElement.prototype.onpopulate.callback):
(WebInspector.ObjectPropertyTreeElement.prototype.onpopulate):
(WebInspector.ArrayGroupingTreeElement):
(WebInspector.ArrayGroupingTreeElement._populateArray):
(WebInspector.ArrayGroupingTreeElement._populateRanges):
(WebInspector.ArrayGroupingTreeElement._populateRanges.callback):
(WebInspector.ArrayGroupingTreeElement._populateAsFragment):
(WebInspector.ArrayGroupingTreeElement._populateAsFragment.processArrayFragment):
(WebInspector.ArrayGroupingTreeElement._populateAsFragment.processProperties):
(WebInspector.ArrayGroupingTreeElement._populateNonIndexProperties.buildObjectFragment):
(WebInspector.ArrayGroupingTreeElement._populateNonIndexProperties.processObjectFragment):
(WebInspector.ArrayGroupingTreeElement._populateNonIndexProperties.processProperties):
(WebInspector.ArrayGroupingTreeElement._populateNonIndexProperties):
(WebInspector.ArrayGroupingTreeElement.prototype.onpopulate):
(WebInspector.ArrayGroupingTreeElement.prototype.onattach):

  • inspector/front-end/PropertiesSidebarPane.js:

(WebInspector.PropertiesSidebarPane.prototype.update.nodeResolved):

  • inspector/front-end/RemoteObject.js:

(WebInspector.RemoteObject.prototype.callFunction):
(WebInspector.RemoteObject.prototype.callFunctionJSON):

LayoutTests:

  • http/tests/inspector/indexeddb/database-data.html:
  • inspector/console/console-big-array.html:
9:09 AM Changeset in webkit [109926] by jpetsovits@rim.com
  • 2 edits in trunk/Source/WebKit/blackberry

[BlackBerry] Don't suspend accel comp when backgrounding a page.
https://bugs.webkit.org/show_bug.cgi?id=80369
RIM PR: 137609

Reviewed by Adam Treat.

Just because the page is in the background doesn't mean
it's invisible, doesn't mean it won't have to be redrawn
at some point - on rotation, for instance.

We still suspend accelerated compositing on setVisible(false).

  • Api/WebPage.cpp:

(BlackBerry::WebKit::WebPage::notifyPageBackground):
(BlackBerry::WebKit::WebPage::notifyPageForeground):

8:58 AM Changeset in webkit [109925] by senorblanco@chromium.org
  • 8 edits
    2 adds
    2 deletes in trunk/LayoutTests

[chromium] Rebaseline some SVG tests now giving correct results.

Unreviewed gardening.

  • platform/chromium-linux/svg/custom/use-on-text-expected.png:
  • platform/chromium-linux/svg/custom/use-referencing-nonexisting-symbol-expected.png: Added.
  • platform/chromium-linux/svg/custom/use-setAttribute-crash-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/custom/use-on-text-expected.png:
  • platform/chromium-mac-snowleopard/svg/custom/use-on-text-expected.txt: Removed.
  • platform/chromium-mac-snowleopard/svg/custom/use-referencing-nonexisting-symbol-expected.png:
  • platform/chromium-mac-snowleopard/svg/custom/use-referencing-nonexisting-symbol-expected.txt: Removed.
  • platform/chromium-mac-snowleopard/svg/custom/use-setAttribute-crash-expected.png:
  • platform/chromium-win/svg/custom/use-on-text-expected.png:
  • platform/chromium-win/svg/custom/use-referencing-nonexisting-symbol-expected.png:
  • platform/chromium-win/svg/custom/use-setAttribute-crash-expected.png:
8:34 AM Changeset in webkit [109924] by Lucas Forschler
  • 2 edits in tags/Safari-536.2.1/Source/WebKit2

Merged r109826.

8:33 AM Changeset in webkit [109923] by vsevik@chromium.org
  • 2 edits in trunk/Source/WebCore

Web Inspector: Open link in resources panel only works the second time
https://bugs.webkit.org/show_bug.cgi?id=80407

Reviewed by Pavel Feldman.

  • inspector/front-end/inspector.js:

(WebInspector.openResource):

8:20 AM Changeset in webkit [109922] by yurys@chromium.org
  • 11 edits in trunk/Source/WebCore

Web Inspector: InspectorCounters mechanism should be thread-safe
https://bugs.webkit.org/show_bug.cgi?id=80166

Make InspectorCounters instance thread local so that it can be safely accessed
in workers.

Reviewed by Pavel Feldman.

  • bindings/js/JSEventListener.cpp:

(WebCore::JSEventListener::JSEventListener):
(WebCore::JSEventListener::~JSEventListener):

  • bindings/v8/V8AbstractEventListener.cpp:

(WebCore::V8AbstractEventListener::V8AbstractEventListener):
(WebCore::V8AbstractEventListener::~V8AbstractEventListener):

  • dom/Document.cpp:

(WebCore::Document::Document):
(WebCore::Document::~Document):

  • dom/Document.h:

(WebCore::Node::Node):

  • dom/Node.cpp:

(WebCore::Node::~Node):

  • inspector/InspectorCounters.cpp:

(WebCore::InspectorCounters::InspectorCounters):
(WebCore::InspectorCounters::counterValue):
(WebCore):
(WebCore::InspectorCounters::current):

  • inspector/InspectorCounters.h:

(WebCore::InspectorCounters::incrementCounter):
(WebCore::InspectorCounters::decrementCounter):
(InspectorCounters):

  • inspector/InspectorTimelineAgent.cpp:

(WebCore::InspectorTimelineAgent::setHeapSizeStatistic):

  • platform/ThreadGlobalData.cpp:

(WebCore::ThreadGlobalData::ThreadGlobalData):
(WebCore::ThreadGlobalData::destroy):

  • platform/ThreadGlobalData.h:

(WebCore):
(ThreadGlobalData):
(WebCore::ThreadGlobalData::inspectorCounters):

8:10 AM Changeset in webkit [109921] by Philippe Normand
  • 4 edits in trunk/LayoutTests

[GStreamer] media/video-played-collapse.html
https://bugs.webkit.org/show_bug.cgi?id=36165

Reviewed by Eric Carlson.

Refactored the test to minimize flakiness risks.

  • media/video-played-collapse-expected.txt:
  • media/video-played-collapse.html:
  • platform/gtk/test_expectations.txt:
8:10 AM Changeset in webkit [109920] by Martin Robinson
  • 8 edits
    2 deletes in releases/WebKitGTK/webkit-1.8

Merging r109791

7:50 AM Changeset in webkit [109919] by leo.yang@torchmobile.com.cn
  • 2 edits in trunk/Source/WebCore

[BlackBerry] Upstream typedef of NativeImageSourcePtr and NativeImagePtr
https://bugs.webkit.org/show_bug.cgi?id=80388

Reviewed by Antonio Gomes.

These are the BlackBerry typdefs of NativeImageSourcePtr and NativeImagePtr.

  • platform/graphics/ImageSource.h:

(WebCore):

7:46 AM WebKit Team edited by alexis.menard@openbossa.org
(diff)
7:30 AM Changeset in webkit [109918] by commit-queue@webkit.org
  • 5 edits in trunk

TypedArray subarray call for subarray does not clamp the end index parameter properly
https://bugs.webkit.org/show_bug.cgi?id=80285

Patch by Ulan Degenbaev <ulan@chromium.org> on 2012-03-06
Reviewed by Kenneth Russell.

Source/JavaScriptCore:

  • wtf/ArrayBufferView.h:

(WTF::ArrayBufferView::calculateOffsetAndLength):

LayoutTests:

  • fast/canvas/webgl/array-unit-tests-expected.txt:
  • fast/canvas/webgl/array-unit-tests.html:
7:17 AM Changeset in webkit [109917] by schenney@chromium.org
  • 80 edits
    18 adds
    14 deletes in trunk/LayoutTests

Update Chromium/SVG expectations after the <use> rewrite
https://bugs.webkit.org/show_bug.cgi?id=79568

Unreviewed Chromium expectations update.

Stage 1 of expectations updating for SVG <use> refactor. This covers the svg/custom directory.

  • platform/chromium-linux-x86/svg/custom/use-disappears-after-style-update-expected.txt:
  • platform/chromium-linux-x86/svg/custom/use-on-symbol-inside-pattern-expected.txt:
  • platform/chromium-linux-x86/svg/custom/use-setAttribute-crash-expected.txt: Added.
  • platform/chromium-linux/svg/custom/use-disappears-after-style-update-expected.txt:
  • platform/chromium-linux/svg/custom/use-on-symbol-inside-pattern-expected.txt:
  • platform/chromium-linux/svg/custom/use-on-text-expected.png:
  • platform/chromium-linux/svg/custom/use-referencing-nonexisting-symbol-expected.png: Removed.
  • platform/chromium-linux/svg/custom/use-referencing-nonexisting-symbol-expected.txt:
  • platform/chromium-linux/svg/custom/use-setAttribute-crash-expected.png: Removed.
  • platform/chromium-linux/svg/custom/use-setAttribute-crash-expected.txt:
  • platform/chromium-mac-leopard/svg/custom/use-disappears-after-style-update-expected.txt: Added.
  • platform/chromium-mac-leopard/svg/custom/use-font-face-crash-expected.txt:
  • platform/chromium-mac-leopard/svg/custom/use-on-text-expected.png:
  • platform/chromium-mac-leopard/svg/custom/use-setAttribute-crash-expected.txt:
  • platform/chromium-mac-snowleopard/svg/custom/broken-internal-references-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/custom/clip-path-referencing-use2-expected.txt: Added.
  • platform/chromium-mac-snowleopard/svg/custom/recursive-clippath-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/custom/recursive-mask-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/custom/recursive-pattern-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/custom/use-css-events-expected.txt:
  • platform/chromium-mac-snowleopard/svg/custom/use-disappears-after-style-update-expected.png:
  • platform/chromium-mac-snowleopard/svg/custom/use-disappears-after-style-update-expected.txt: Added.
  • platform/chromium-mac-snowleopard/svg/custom/use-events-crash-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/custom/use-on-disallowed-foreign-object-1-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/custom/use-on-disallowed-foreign-object-2-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/custom/use-on-disallowed-foreign-object-5-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/custom/use-on-disallowed-foreign-object-6-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/custom/use-on-non-svg-namespaced-element-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/custom/use-on-symbol-inside-pattern-expected.txt:
  • platform/chromium-mac-snowleopard/svg/custom/use-on-text-expected.png:
  • platform/chromium-mac-snowleopard/svg/custom/use-on-text-expected.txt: Added.
  • platform/chromium-mac-snowleopard/svg/custom/use-referencing-nonexisting-symbol-expected.png:
  • platform/chromium-mac-snowleopard/svg/custom/use-referencing-nonexisting-symbol-expected.txt: Added.
  • platform/chromium-mac-snowleopard/svg/custom/use-setAttribute-crash-expected.png:
  • platform/chromium-mac-snowleopard/svg/custom/use-setAttribute-crash-expected.txt:
  • platform/chromium-mac/svg/custom/broken-internal-references-expected.png: Removed.
  • platform/chromium-mac/svg/custom/clip-path-referencing-use2-expected.txt: Removed.
  • platform/chromium-mac/svg/custom/recursive-clippath-expected.png: Removed.
  • platform/chromium-mac/svg/custom/recursive-mask-expected.png: Removed.
  • platform/chromium-mac/svg/custom/recursive-pattern-expected.png: Removed.
  • platform/chromium-mac/svg/custom/use-events-crash-expected.png: Removed.
  • platform/chromium-mac/svg/custom/use-on-disallowed-foreign-object-1-expected.png: Removed.
  • platform/chromium-mac/svg/custom/use-on-disallowed-foreign-object-2-expected.png: Removed.
  • platform/chromium-mac/svg/custom/use-on-disallowed-foreign-object-5-expected.png: Removed.
  • platform/chromium-mac/svg/custom/use-on-disallowed-foreign-object-6-expected.png: Removed.
  • platform/chromium-mac/svg/custom/use-on-non-svg-namespaced-element-expected.png: Removed.
  • platform/chromium-win-vista/svg/custom/use-disappears-after-style-update-expected.txt:
  • platform/chromium-win-vista/svg/custom/use-setAttribute-crash-expected.txt:
  • platform/chromium-win-xp/svg/custom/use-disappears-after-style-update-expected.txt:
  • platform/chromium-win-xp/svg/custom/use-setAttribute-crash-expected.txt:
  • platform/chromium-win/svg/custom/broken-internal-references-expected.txt:
  • platform/chromium-win/svg/custom/clip-path-referencing-use-expected.txt:
  • platform/chromium-win/svg/custom/clip-path-referencing-use2-expected.txt:
  • platform/chromium-win/svg/custom/embedding-external-svgs-expected.txt:
  • platform/chromium-win/svg/custom/path-textPath-simulation-expected.txt:
  • platform/chromium-win/svg/custom/pattern-rotate-expected.txt:
  • platform/chromium-win/svg/custom/recursive-clippath-expected.txt:
  • platform/chromium-win/svg/custom/recursive-mask-expected.txt:
  • platform/chromium-win/svg/custom/recursive-pattern-expected.txt:
  • platform/chromium-win/svg/custom/relative-sized-deep-shadow-tree-content-expected.txt:
  • platform/chromium-win/svg/custom/relative-sized-shadow-tree-content-expected.txt:
  • platform/chromium-win/svg/custom/relative-sized-shadow-tree-content-with-symbol-expected.txt:
  • platform/chromium-win/svg/custom/relative-sized-use-on-symbol-expected.txt:
  • platform/chromium-win/svg/custom/relative-sized-use-without-attributes-on-symbol-expected.txt:
  • platform/chromium-win/svg/custom/struct-use-09-b-expected.txt:
  • platform/chromium-win/svg/custom/use-clipped-hit-expected.txt:
  • platform/chromium-win/svg/custom/use-css-events-expected.txt:
  • platform/chromium-win/svg/custom/use-disappears-after-style-update-expected.png:
  • platform/chromium-win/svg/custom/use-disappears-after-style-update-expected.txt:
  • platform/chromium-win/svg/custom/use-dynamic-append-expected.txt:
  • platform/chromium-win/svg/custom/use-elementInstance-event-target-expected.txt:
  • platform/chromium-win/svg/custom/use-elementInstance-methods-expected.txt:
  • platform/chromium-win/svg/custom/use-event-handler-on-referenced-element-expected.txt:
  • platform/chromium-win/svg/custom/use-event-handler-on-use-element-expected.txt:
  • platform/chromium-win/svg/custom/use-events-crash-expected.txt:
  • platform/chromium-win/svg/custom/use-font-face-crash-expected.txt:
  • platform/chromium-win/svg/custom/use-instanceRoot-modifications-expected.txt:
  • platform/chromium-win/svg/custom/use-modify-container-in-target-expected.txt:
  • platform/chromium-win/svg/custom/use-modify-target-container-expected.txt:
  • platform/chromium-win/svg/custom/use-modify-target-symbol-expected.txt:
  • platform/chromium-win/svg/custom/use-on-disallowed-foreign-object-1-expected.txt:
  • platform/chromium-win/svg/custom/use-on-disallowed-foreign-object-2-expected.txt:
  • platform/chromium-win/svg/custom/use-on-disallowed-foreign-object-3-expected.txt:
  • platform/chromium-win/svg/custom/use-on-disallowed-foreign-object-4-expected.txt:
  • platform/chromium-win/svg/custom/use-on-disallowed-foreign-object-5-expected.txt:
  • platform/chromium-win/svg/custom/use-on-disallowed-foreign-object-6-expected.txt:
  • platform/chromium-win/svg/custom/use-on-g-containing-symbol-expected.txt:
  • platform/chromium-win/svg/custom/use-on-g-containing-use-expected.txt:
  • platform/chromium-win/svg/custom/use-on-g-expected.txt:
  • platform/chromium-win/svg/custom/use-on-non-svg-namespaced-element-expected.txt:
  • platform/chromium-win/svg/custom/use-on-rect-expected.txt:
  • platform/chromium-win/svg/custom/use-on-symbol-expected.txt:
  • platform/chromium-win/svg/custom/use-on-symbol-inside-pattern-expected.txt:
  • platform/chromium-win/svg/custom/use-on-text-expected.png:
  • platform/chromium-win/svg/custom/use-on-text-expected.txt:
  • platform/chromium-win/svg/custom/use-on-use-expected.txt:
  • platform/chromium-win/svg/custom/use-property-changes-through-dom-expected.txt:
  • platform/chromium-win/svg/custom/use-property-changes-through-svg-dom-expected.txt:
  • platform/chromium-win/svg/custom/use-recursion-1-expected.txt:
  • platform/chromium-win/svg/custom/use-recursion-2-expected.txt:
  • platform/chromium-win/svg/custom/use-recursion-3-expected.txt:
  • platform/chromium-win/svg/custom/use-recursion-4-expected.txt:
  • platform/chromium-win/svg/custom/use-referencing-nonexisting-symbol-expected.png:
  • platform/chromium-win/svg/custom/use-referencing-nonexisting-symbol-expected.txt:
  • platform/chromium-win/svg/custom/use-setAttribute-crash-expected.png:
  • platform/chromium-win/svg/custom/use-setAttribute-crash-expected.txt:
  • platform/chromium-win/svg/custom/use-transform-expected.txt:
  • platform/chromium/test_expectations.txt:
  • platform/mac-future/svg/custom: Added.
  • platform/mac-future/svg/custom/use-on-symbol-inside-pattern-expected.png: Added.
  • platform/mac/svg/custom/use-on-symbol-inside-pattern-expected.png: Removed.
7:05 AM Changeset in webkit [109916] by commit-queue@webkit.org
  • 4 edits
    2 adds in trunk

SVG transform-origin presentation attribute
https://bugs.webkit.org/show_bug.cgi?id=79678

Patch by Hans Muller <hmuller@adobe.com> on 2012-03-06
Reviewed by Nikolas Zimmermann.

Source/WebCore:

Added the SVG transform-origin presentation attribute. Currently WebCore::mapAttributeToCSSProperty()
just maps it to -webkit-transform-origin. When the transform-origin CSS property is supported, this
part of the change can be removed.

Test: svg/transforms/transform-origin-presentation-attribute.xhtml

  • svg/SVGStyledElement.cpp:

(WebCore::mapAttributeToCSSProperty):
(WebCore::SVGStyledElement::cssPropertyIdForSVGAttributeName):

  • svg/svgattrs.in:

LayoutTests:

Test case just verifies that the transform-origin presentation attribute
changes an SVG element's getComputedStyle() as expected.

  • svg/transforms/transform-origin-presentation-attribute-expected.txt: Added.
  • svg/transforms/transform-origin-presentation-attribute.xhtml: Added.
7:02 AM Changeset in webkit [109915] by Philippe Normand
  • 19 edits in trunk/Source

[GStreamer] disable GStreamerGWorld when building against 0.11
https://bugs.webkit.org/show_bug.cgi?id=77088

Source/WebCore:

Reviewed by Martin Robinson.

Don't build GStreamerGWorld and PlatformVideoWindow under
GStreamer 0.11. It's supposed to be removed soon anyway.

  • platform/graphics/gstreamer/GStreamerGWorld.cpp:
  • platform/graphics/gstreamer/GStreamerGWorld.h:
  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:

(WebCore::MediaPlayerPrivateGStreamer::totalBytes):

  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.h:

(MediaPlayerPrivateGStreamer):

  • platform/graphics/gstreamer/PlatformVideoWindow.h:
  • platform/graphics/gstreamer/PlatformVideoWindowEfl.cpp:
  • platform/graphics/gstreamer/PlatformVideoWindowGtk.cpp:
  • platform/graphics/gstreamer/PlatformVideoWindowMac.mm:
  • platform/graphics/gstreamer/PlatformVideoWindowQt.cpp:

Source/WebKit/gtk:

Disable the FullscreenVideoController if we build against
GStreamer 0.11. This code depends on GStreamerGWorld which wasn't
ported to 0.11 because it will soon be removed anyway.

Reviewed by Martin Robinson.

  • WebCoreSupport/FullscreenVideoController.cpp:
  • WebCoreSupport/FullscreenVideoController.h:
  • webkit/webkitwebview.cpp:

(webViewEnterFullscreen):
(webViewExitFullscreen):

  • webkit/webkitwebviewprivate.h:

(_WebKitWebViewPrivate):

Source/WebKit/qt:

Reviewed by Martin Robinson.

  • WebCoreSupport/ChromeClientQt.cpp:

(WebCore::ChromeClientQt::ChromeClientQt):
(WebCore::ChromeClientQt::~ChromeClientQt):
(WebCore):

  • WebCoreSupport/FullScreenVideoQt.cpp:

(WebCore):
(WebCore::FullScreenVideoQt::FullScreenVideoQt):
(WebCore::FullScreenVideoQt::~FullScreenVideoQt):
(WebCore::FullScreenVideoQt::enterFullScreenForNode):
(WebCore::FullScreenVideoQt::exitFullScreenForNode):
(WebCore::FullScreenVideoQt::isValid):

  • WebCoreSupport/FullScreenVideoQt.h:

(WebCore):

6:10 AM Changeset in webkit [109914] by ahf@0x90.dk
  • 3 edits in trunk/Source/WebCore

Rename m_tileCreationTimer in the tiled backing store https://bugs.webkit.org/show_bug.cgi?id=80414

Patch by Kenneth Rohde Christiansen and Alexander Færøy.

Reviewed by Tor Arne Vestbø.

The m_tileCreationTimer member is currently being used to represent a
timer that is fired when the backing store has been updated which is
confusing with its current name. This patch fixes this by renaming
the m_tileCreationTimer to m_backingStoreUpdateTimer.

  • platform/graphics/TiledBackingStore.cpp:

(WebCore::TiledBackingStore::TiledBackingStore):
(WebCore::TiledBackingStore::setTileSize):
(WebCore::TiledBackingStore::coverWithTilesIfNeeded):
(WebCore::TiledBackingStore::createTiles):
(WebCore::TiledBackingStore::startBackingStoreUpdateTimer):
(WebCore::TiledBackingStore::backingStoreUpdateTimerFired):
(WebCore::TiledBackingStore::setContentsFrozen):

  • platform/graphics/TiledBackingStore.h:

(TiledBackingStore):

5:41 AM Changeset in webkit [109913] by loislo@chromium.org
  • 2 edits in trunk/PerformanceTests

Web Inspector: Heap Snapshot test: split overal time metric into separate metrics.
https://bugs.webkit.org/show_bug.cgi?id=80409

Reviewed by Yury Semikhatsky.

  • inspector/detailed-heapshots-smoke-test.html:
5:37 AM Changeset in webkit [109912] by Simon Hausmann
  • 2 edits in trunk/Source/WebKit2

[Qt] Make QQuickWebView's url property work with a flickable webview

Reviewed by Tor Arne Vestbø.

QQuickWebViewPrivate::onComponentComplete implements the deferred url loading
when the url property is set in the component instantiation. QQuickWebViewFlickablePrivate
is the private sub-class used for a flickable webview, which re-implemented onComponentComplete
but forgot to call the base implementation.

  • UIProcess/API/qt/qquickwebview.cpp:

(QQuickWebViewFlickablePrivate::onComponentComplete):

5:37 AM Changeset in webkit [109911] by kubo@profusion.mobi
  • 2 edits in trunk/Source/WebKit

[EFL] Unreviewed; fix the build after r109877.

  • CMakeLists.txt: Add WebCore/Modules/webdatabase to the list of

include directories so that #include'ing DatabaseDetails.h and
friends still works.

5:32 AM Changeset in webkit [109910] by ahf@0x90.dk
  • 3 edits in trunk/Source/WebCore

Remove TileTimer typedef from the tiled backing store https://bugs.webkit.org/show_bug.cgi?id=80408

Patch by Kenneth Rohde Christiansen and Alexander Færøy.

Reviewed by Tor Arne Vestbø.

  • platform/graphics/TiledBackingStore.cpp:

(WebCore::TiledBackingStore::tileBufferUpdateTimerFired):
(WebCore::TiledBackingStore::tileCreationTimerFired):

  • platform/graphics/TiledBackingStore.h:

(TiledBackingStore):

5:25 AM Changeset in webkit [109909] by vestbo@webkit.org
  • 5 edits in trunk/Tools

[Qt] Revert r109900, it was completly busted

HAVE_FOO does _not_ have a WTF_ prefix, go figure.

We still leave in the HAVE(FOO) in QtInitializeTestFonts.cpp, instead
of manual define checks.

Reviewed by Ossy.

5:15 AM Changeset in webkit [109908] by commit-queue@webkit.org
  • 1 edit
    2 adds in trunk/Source/WebCore

[BlackBerry] Upstream LayerRenderer.{h, cpp}
https://bugs.webkit.org/show_bug.cgi?id=79874

Patch by Robin Cao <robin.cao@torchmobile.com.cn> on 2012-03-06
Reviewed by Antonio Gomes.

Initial upstream, no new tests.

  • platform/graphics/blackberry/LayerRenderer.cpp: Added.

(WebCore):
(WebCore::checkGLError):
(WebCore::loadShader):
(WebCore::loadShaderProgram):
(WebCore::orthoMatrix):
(WebCore::rawPtrVectorFromRefPtrVector):
(WebCore::LayerRenderer::create):
(WebCore::LayerRenderer::LayerRenderer):
(WebCore::LayerRenderer::~LayerRenderer):
(WebCore::LayerRenderer::releaseLayerResources):
(WebCore::compareLayerZ):
(WebCore::LayerRenderer::drawLayers):
(WebCore::LayerRenderer::useSurface):
(WebCore::LayerRenderer::drawLayersOnSurfaces):
(WebCore::LayerRenderer::setRootLayer):
(WebCore::LayerRenderer::addLayer):
(WebCore::LayerRenderer::removeLayer):
(WebCore::LayerRenderer::addLayerToReleaseTextureResourcesList):
(WebCore::LayerRenderer::toOpenGLWindowCoordinates):
(WebCore::LayerRenderer::toWebKitWindowCoordinates):
(WebCore::LayerRenderer::toWebKitDocumentCoordinates):
(WebCore::LayerRenderer::drawDebugBorder):
(WebCore::LayerRenderer::drawHolePunchRect):
(WebCore::LayerRenderer::updateLayersRecursive):
(WebCore::hasRotationalComponent):
(WebCore::LayerRenderer::layerAlreadyOnSurface):
(WebCore::collect3DPreservingLayers):
(WebCore::LayerRenderer::compositeLayersRecursive):
(WebCore::LayerRenderer::updateScissorIfNeeded):
(WebCore::LayerRenderer::makeContextCurrent):
(WebCore::LayerRenderer::bindCommonAttribLocation):
(WebCore::LayerRenderer::initializeSharedGLObjects):
(WebCore::LayerRenderingResults::holePunchRect):
(WebCore::LayerRenderingResults::addHolePunchRect):
(WebCore::LayerRenderingResults::addDirtyRect):
(WebCore::LayerRenderingResults::isEmpty):

  • platform/graphics/blackberry/LayerRenderer.h: Added.

(WebCore):
(LayerRenderingResults):
(WebCore::LayerRenderingResults::LayerRenderingResults):
(WebCore::LayerRenderingResults::holePunchRectSize):
(WebCore::LayerRenderingResults::dirtyRect):
(LayerRenderer):
(WebCore::LayerRenderer::rootLayer):
(WebCore::LayerRenderer::hardwareCompositing):
(WebCore::LayerRenderer::setClearSurfaceOnDrawLayers):
(WebCore::LayerRenderer::clearSurfaceOnDrawLayers):
(WebCore::LayerRenderer::context):
(WebCore::LayerRenderer::lastRenderingResults):
(WebCore::LayerRenderer::setNeedsCommit):

4:59 AM Changeset in webkit [109907] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/blackberry

[BlackBerry] function rename issue after MediaPlayerPrivateBlackBerry.[cpp\h] upstream
https://bugs.webkit.org/show_bug.cgi?id=80377

Patch by Jonathan Dong <Jonathan Dong> on 2012-03-06
Reviewed by Rob Buis.

As some of the function names changed in class MediaPlayerPrivate
with the upstream of MediaPlayerPrivateBlackBerry.[cpp|h], we
should update WebKit/blackberry/Api/WebPage.cpp which uses these
functions accordingly.
Renamed functions in class MediaPlayerPrivate:
windowGet() -> getWindow()
windowPositionGet() -> getWindowPosition()
mmrContextNameGet() -> mmrContextName()

  • Api/WebPage.cpp:

(BlackBerry::WebKit::WebPagePrivate::enterFullscreenForNode):

4:42 AM Changeset in webkit [109906] by rolandsteiner@chromium.org
  • 2 edits in trunk/Source/WebCore

r109563 caused perf regression
https://bugs.webkit.org/show_bug.cgi?id=80404

Add test for Element or ShadowRoot.

Reviewed by Antti Koivisto.

No new tests. (fix)

  • css/CSSStyleSelector.cpp:

(WebCore::CSSStyleSelector::pushParentElement):

4:39 AM Changeset in webkit [109905] by podivilov@chromium.org
  • 5 edits in trunk

Web Inspector: prepare for extracting ScriptMapping implementation from DebuggerPresentationModel.
https://bugs.webkit.org/show_bug.cgi?id=80396

Source/WebCore:

Limit RawSourceCode usages to a subset of methods. This subset will be moved to ScriptMapping implementation in a separate change.

Reviewed by Vsevolod Vlasov.

  • inspector/front-end/DebuggerPresentationModel.js:

(WebInspector.DebuggerPresentationModel):
(WebInspector.DebuggerPresentationModel.prototype.createPlacard):
(WebInspector.DebuggerPresentationModel.prototype.createLiveLocation):
(WebInspector.DebuggerPresentationModel.prototype._parsedScriptSource):
(WebInspector.DebuggerPresentationModel.prototype._failedToParseScriptSource):
(WebInspector.DebuggerPresentationModel.prototype.setScriptSource.didEditScriptSource):
(WebInspector.DebuggerPresentationModel.prototype.setScriptSource):
(WebInspector.DebuggerPresentationModel.prototype._forceUpdateSourceMapping):
(WebInspector.DebuggerPresentationModel.prototype._addConsoleMessageToScript):
(WebInspector.DebuggerPresentationModel.prototype._debuggerPaused):
(WebInspector.DebuggerPresentationModel.prototype.set selectedCallFrame):
(WebInspector.PresentationCallFrame):
(WebInspector.PresentationCallFrame.prototype.uiLocation):
(WebInspector.DebuggerPresentationModel.CallFramePlacard):
(WebInspector.DebuggerPresentationModelResourceBinding.prototype.canSetContent):
(WebInspector.DebuggerPresentationModelResourceBinding.prototype.setContent):
(WebInspector.DebuggerPresentationModelResourceBinding.prototype._uiSourceCodeForResource):
(WebInspector.DebuggerPresentationModel.Linkifier.prototype.linkifyRawLocation):

LayoutTests:

Reviewed by Vsevolod Vlasov.

  • inspector/debugger/callstack-placards-discarded.html:
  • inspector/debugger/linkifier.html:
4:34 AM Changeset in webkit [109904] by vestbo@webkit.org
  • 6 edits
    2 adds in trunk/Tools

[Qt] Use config test to determine if the compiler supports -MD

We used to assume that unix systems building against Qt5 would have
a compiler that supported -MD. Although this was usually the case,
we failed to take into account broken tools for distributed builds
(e.g. teambuilder or icecream) which would end up producing .d files
in the root of the build dir instead of along-side the object file.

Now that we use a config-test to determine the support, we'll capture
those cases, unless distributed builds are enabled after the initial
build-webkit run.

Reviewed by Csaba Osztrogonác.

4:28 AM Changeset in webkit [109903] by vsevik@chromium.org
  • 8 edits
    2 adds in trunk

Web Inspector: [Regression] Execution line is not revealed when debugger is stopped if scripts panel was not yet shown.
https://bugs.webkit.org/show_bug.cgi?id=80306

Reviewed by Pavel Feldman.

Source/WebCore:

Test: inspector/debugger/reveal-execution-line.html

  • inspector/front-end/ConsoleView.js:
  • inspector/front-end/DebuggerPresentationModel.js:

(WebInspector.DebuggerPresentationModel.prototype._debuggerPaused):

  • inspector/front-end/JavaScriptSourceFrame.js:

(WebInspector.JavaScriptSourceFrame.prototype.afterTextChanged):
(WebInspector.JavaScriptSourceFrame.prototype.setExecutionLine):

  • inspector/front-end/ScriptsPanel.js:

(WebInspector.ScriptsPanel.prototype._executionLineChanged):
(WebInspector.ScriptsPanel.prototype._revealExecutionLine):
(WebInspector.ScriptsPanel.prototype._callFrameSelected):

  • inspector/front-end/SourceFrame.js:

(WebInspector.SourceFrame.prototype.willHide):
(WebInspector.SourceFrame.prototype.highlightLine):
(WebInspector.SourceFrame.prototype.revealLine):
(WebInspector.SourceFrame.prototype._clearLineToReveal):
(WebInspector.SourceFrame.prototype.setContent):

LayoutTests:

  • inspector/debugger/callstack-placards-discarded-expected.txt:
  • inspector/debugger/reveal-execution-line-expected.txt: Added.
  • inspector/debugger/reveal-execution-line.html: Added.
4:25 AM Changeset in webkit [109902] by Csaba Osztrogonác
  • 2 edits in trunk/Tools

REGRESSION(r109294): It broke the unittest of master.cfg
https://bugs.webkit.org/show_bug.cgi?id=80253

Reviewed by Tor Arne Vestbø.

  • BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py: Use json instead of simplejson.

(BuildBotConfigLoader._create_mock_passwords_dict):
(BuildBotConfigLoader._mock_open):
(BuildBotConfigLoader._add_dependant_modules_to_sys_modules):
(BuildBotConfigLoader.load_config):

4:24 AM Changeset in webkit [109901] by Csaba Osztrogonác
  • 2 edits in trunk/Tools

Qt API test buildstep throws exception after buildmaster update
https://bugs.webkit.org/show_bug.cgi?id=80249

This patch based on Peter Gal's work.

Patch by Kristóf Kosztyó <kkristof@inf.u-szeged.hu> on 2012-03-06
Reviewed by Csaba Osztrogonác.

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

(RunQtAPITests):
(BuildAndTestFactory.init): Enable API tests on the Qt platform again.

4:19 AM WebKit Team edited by ahf@0x90.dk
Add myself to the team list. (diff)
4:15 AM Changeset in webkit [109900] by vestbo@webkit.org
  • 6 edits in trunk/Tools

[Qt] Use correct define names for HAVE(FOO) style optional dependencies

Reviewed by Simon Hausmann.
Reviewed by Ossy.

4:11 AM Changeset in webkit [109899] by podivilov@chromium.org
  • 8 edits in trunk

Web Inspector: remove reference to RawSourceCode from UISourceCode.
https://bugs.webkit.org/show_bug.cgi?id=80395

Reviewed by Vsevolod Vlasov.

Source/WebCore:

  • inspector/compile-front-end.sh:
  • inspector/front-end/DebuggerPresentationModel.js:

(WebInspector.DebuggerPresentationModel):
(WebInspector.DebuggerPresentationModel.prototype._handleUISourceCodeListChanged):
(WebInspector.DebuggerPresentationModel.prototype._uiSourceCodeListChanged):
(WebInspector.DebuggerPresentationModel.prototype._restoreBreakpoints):
(WebInspector.DebuggerPresentationModel.prototype.setScriptSource.didEditScriptSource):
(WebInspector.DebuggerPresentationModel.prototype.setScriptSource):
(WebInspector.DebuggerPresentationModel.prototype.continueToLine):
(WebInspector.DebuggerPresentationModel.prototype._debuggerReset):

  • inspector/front-end/RawSourceCode.js:

(WebInspector.RawSourceCode.prototype._createUISourceCode):

  • inspector/front-end/UISourceCode.js:

(WebInspector.UISourceCode):

LayoutTests:

  • inspector/debugger/raw-source-code.html:
  • inspector/debugger/ui-source-code.html:
4:09 AM Changeset in webkit [109898] by caseq@chromium.org
  • 8 edits in trunk/Source/WebCore

Web Inspector: move timeline panel overview mode toggle buttons to overview sidebar tree
https://bugs.webkit.org/show_bug.cgi?id=80304

Reviewed by Pavel Feldman.

  • inspector/front-end/Images/statusbarButtonGlyphs.png:
  • inspector/front-end/Settings.js:

(WebInspector.ExperimentsSettings):

  • inspector/front-end/TimelineOverviewPane.js:

(WebInspector.TimelineOverviewPane):
(WebInspector.TimelineOverviewPane.prototype._showTimelines):
(WebInspector.TimelineOverviewPane.prototype._showMemoryGraph):
(WebInspector.TimelineOverviewPane.prototype._setVerticalOverview):
(WebInspector.TimelineOverviewPane.prototype._onOverviewModeChanged):
(WebInspector.TimelineOverviewPane.prototype.update):
(WebInspector.TimelineOverviewPane.prototype.reset):
(WebInspector.TimelineOverviewPane.prototype._onWindowChanged):
(WebInspector.TimelineVerticalOverview):
(WebInspector.TimelineOverviewModeSelector):
(WebInspector.TimelineOverviewModeSelector.prototype.addButton):
(WebInspector.TimelineOverviewModeSelector.prototype.get value):
(WebInspector.TimelineOverviewModeSelector.prototype._createButton):
(WebInspector.TimelineOverviewModeSelector.prototype._select):
(WebInspector.TimelineOverviewModeSelector.prototype._onClick):

  • inspector/front-end/TimelinePanel.js:

(WebInspector.TimelinePanel):
(WebInspector.TimelinePanel.prototype.get statusBarItems):
(WebInspector.TimelinePanel.prototype._createStatusbarButtons):
(WebInspector.TimelinePanel.prototype._updateEventDividers):
(WebInspector.TimelinePanel.prototype._glueParentButtonClicked):
(WebInspector.TimelinePanel.prototype.revealRecordAt):

  • inspector/front-end/inspector.css:
  • inspector/front-end/timelinePanel.css:

(.timeline-vertical-overview #timeline-overview-grid):
(.timeline-vertical-overview .timeline-overview-window):
(.timeline-vertical-overview .timeline-overview-dividers-background):
(.timeline-vertical-overview #timeline-overview-memory):
(.timeline-vertical-overview-status-bar-item.toggled-on .glyph):
(.timeline-vertical-overview-bars):
(.timeline-vertical-overview-bars .padding):
(.timeline-vertical-overview-bars .timeline-bar-vertical):
(.timeline.timeline-vertical-overview .resources-divider):
(.sidebar-tree-item .timeline-vertical-overview-status-bar-item):
(.timeline-overview-mode-selector):
(.timeline-overview-mode-selector .glyph):
(.timeline-overview-mode-selector button):
(.timeline-overview-mode-selector button.toggled):
(.timeline-overview-mode-selector button:active):
(.sidebar-tree-item:not(.selected) .timeline-overview-mode-selector button):
(.sidebar-tree-item:not(.selected) .timeline-overview-mode-selector button.toggled):
(.timeline-overview-mode-selector button:first-of-type):
(.timeline-overview-mode-selector button:last-of-type):
(.timeline-mode-vertical-bars .glyph):
(.timeline-mode-horizontal-bars .glyph):

4:04 AM Changeset in webkit [109897] by ahf@0x90.dk
  • 3 edits in trunk/Source/WebCore

Make it explicit when we are allowing updates to the actual backing store or the tile buffers https://bugs.webkit.org/show_bug.cgi?id=80288

Patch by Kenneth Rohde Christiansen and Alexander Færøy.

Reviewed by Noam Rosenthal.

  • platform/graphics/TiledBackingStore.cpp:

(WebCore::TiledBackingStore::createTiles):
(WebCore::TiledBackingStore::isBackingStoreUpdatesSuspended):
(WebCore):
(WebCore::TiledBackingStore::isTileBufferUpdatesSuspended):
(WebCore::TiledBackingStore::startTileBufferUpdateTimer):
(WebCore::TiledBackingStore::startTileCreationTimer):

  • platform/graphics/TiledBackingStore.h:

(TiledBackingStore):

4:03 AM Changeset in webkit [109896] by vestbo@webkit.org
  • 2 edits in trunk/Tools

[Qt] Don't add recursive qmake_all target if there are no subdirs to recurse

Reviewed by Ossy.

4:00 AM Changeset in webkit [109895] by mrowe@apple.com
  • 2 edits in trunk/Source/WebCore

Build fix after r109877.

  • WebCore.xcodeproj/project.pbxproj: Ensure that headers are copied in to WebCore.framework so that

WebKit can still find them.

3:51 AM Changeset in webkit [109894] by vestbo@webkit.org
  • 2 edits in trunk/Tools

[Qt] Make sure clean builds are followed by make qmake && make if needed

On non-GNUmake systems we have to run make qmake so that the generated
sources are generated before we run qmake on the target pro files. This
is achieved by using the 'incremental' target.

Reviewed by Ossy.

3:50 AM WebKit Team edited by kling@webkit.org
(diff)
3:31 AM Changeset in webkit [109893] by kling@webkit.org
  • 2 edits in trunk/Source/WebCore

Remove incorrect WTF::Vector traits for CSSProperty.
<http://webkit.org/b/53285>
<rdar://problem/10161286>

Reviewed by Antti Koivisto.

We shouldn't allow copying Vector<CSSProperty> contents around with memcpy()
as CSSProperty has a RefPtr member and this would muck up the refcount.
This was added to facilitate fast comparison of property vectors, and we no
longer use that, so there shouldn't be any performance concerns here.

  • css/CSSProperty.h:
2:56 AM Changeset in webkit [109892] by fpizlo@apple.com
  • 2 edits in trunk/Tools

DumpRenderTree should support preciseTime()
https://bugs.webkit.org/show_bug.cgi?id=80397

Reviewed by Gavin Barraclough.

  • DumpRenderTree/LayoutTestController.cpp:

(preciseTimeCallback):
(LayoutTestController::staticFunctions):

2:50 AM Changeset in webkit [109891] by Csaba Osztrogonác
  • 2 edits in trunk/LayoutTests

[Qt] Gardening, skip some failing tests.

Patch by Ádám Kallai <kadam@inf.u-szeged.hu> on 2012-03-06
Reviewed by Csaba Osztrogonác.

  • platform/qt/Skipped:
2:39 AM Changeset in webkit [109890] by Csaba Osztrogonác
  • 6 edits in trunk/Tools

Unreviewed, rolling out r109887.
http://trac.webkit.org/changeset/109887
https://bugs.webkit.org/show_bug.cgi?id=80402

It broke the build (Requested by Ossy on #webkit).

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

  • DumpRenderTree/qt/DumpRenderTree.pro:
  • DumpRenderTree/qt/QtInitializeTestFonts.cpp:

(WebKit::initializeTestFonts):

  • QtTestBrowser/QtTestBrowser.pro:
  • WebKitTestRunner/InjectedBundle/Target.pri:
  • qmake/mkspecs/features/features.prf:
2:17 AM Changeset in webkit [109889] by toyoshim@chromium.org
  • 4 edits in trunk/Source/WebKit/chromium

[Chromium] [WebSocket] Add WebSocket extensions query WebKit API
https://bugs.webkit.org/show_bug.cgi?id=80190

Reviewed by Darin Fisher.

  • public/WebSocket.h: Add extensions() declaration.

(WebSocket):

  • src/WebSocketImpl.cpp: Implement extensions() bridge.

(WebKit::WebSocketImpl::extensions):
(WebKit):

  • src/WebSocketImpl.h: Add extensions() declaration.

(WebSocketImpl):

2:03 AM Changeset in webkit [109888] by commit-queue@webkit.org
  • 36 edits in trunk

Unreviewed, rolling out r109837.
http://trac.webkit.org/changeset/109837
https://bugs.webkit.org/show_bug.cgi?id=80399

breaks Mac Productions builds, too late to try and fix it
tonight (Requested by eseidel on #webkit).

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

Source/JavaScriptCore:

  • API/tests/JSNode.c:
  • API/tests/JSNodeList.c:
  • Configurations/Base.xcconfig:
  • JavaScriptCore.vcproj/JavaScriptCore/copy-files.cmd:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • assembler/MacroAssemblerCodeRef.h:
  • bytecompiler/BytecodeGenerator.h:
  • dfg/DFGOperations.cpp:
  • heap/GCAssertions.h:
  • heap/HandleHeap.h:
  • heap/HandleStack.h:
  • heap/MarkedSpace.h:
  • heap/PassWeak.h:
  • heap/Strong.h:
  • heap/Weak.h:
  • jit/HostCallReturnValue.cpp:
  • jit/JIT.cpp:
  • jit/JITStubs.cpp:
  • jit/ThunkGenerators.cpp:
  • parser/Lexer.cpp:
  • runtime/Completion.cpp:
  • runtime/Executable.cpp:
  • runtime/Identifier.h:
  • runtime/InitializeThreading.cpp:
  • runtime/JSDateMath.cpp:
  • runtime/JSGlobalObjectFunctions.cpp:
  • runtime/JSStringBuilder.h:
  • runtime/JSVariableObject.h:
  • runtime/NumberPrototype.cpp:
  • runtime/WriteBarrier.h:
  • tools/CodeProfile.cpp:
  • tools/TieredMMapArray.h:
  • yarr/YarrJIT.cpp:

Tools:

  • Scripts/build-webkit:
2:00 AM Changeset in webkit [109887] by vestbo@webkit.org
  • 6 edits in trunk/Tools

[Qt] Use correct define names for HAVE(FOO) style optional dependencies

Reviewed by Simon Hausmann.

1:49 AM Changeset in webkit [109886] by haraken@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed, gardening.

  • platform/chromium/test_expectations.txt:
1:44 AM Changeset in webkit [109885] by abarth@webkit.org
  • 2 edits in trunk/Source/WebCore

Attempt to fix the Qt minimal build.

  • Target.pri:
1:43 AM Changeset in webkit [109884] by rolandsteiner@chromium.org
  • 5 edits in trunk

:scope should behave as :root outside scoped style sheet
https://bugs.webkit.org/show_bug.cgi?id=80389

Source/WebCore:

Fall through to :root implementation if no scope is used.

Reviewed by Antti Koivisto.

Test: fast/css/style-scoped/scope-pseudo.html

  • css/SelectorChecker.cpp:

(WebCore::SelectorChecker::checkOneSelector):

LayoutTests:

Update test with :scope in global style sheet

Reviewed by Antti Koivisto.

  • fast/css/style-scoped/scope-pseudo-expected.txt:
  • fast/css/style-scoped/scope-pseudo.html:
1:36 AM Changeset in webkit [109883] by Csaba Osztrogonác
  • 2 edits in trunk/Source/JavaScriptCore

[Qt][ARM] Speculative buildfix after r109834.

Patch by Zoltan Herczeg <zherczeg@webkit.org> on 2012-03-06
Reviewed by Csaba Osztrogonác.

  • assembler/MacroAssemblerARM.h:

(JSC::MacroAssemblerARM::and32):
(MacroAssemblerARM):

1:32 AM Changeset in webkit [109882] by vsevik@chromium.org
  • 6 edits in trunk

Web Inspector: [Regression] Message bubbles are not removed from scripts panel source frames after console was cleared.
https://bugs.webkit.org/show_bug.cgi?id=80275

Reviewed by Pavel Feldman.

Source/WebCore:

  • inspector/front-end/ScriptsPanel.js:

(WebInspector.ScriptsPanel.prototype._consoleMessagesCleared):

  • inspector/front-end/utilities.js:

LayoutTests:

  • inspector/debugger/source-frame-expected.txt:
  • inspector/debugger/source-frame.html:
1:29 AM Changeset in webkit [109881] by Carlos Garcia Campos
  • 5 edits in trunk/Source/WebKit2

[GTK] Fix several documentation issues in WebKit2 GTK+ API
https://bugs.webkit.org/show_bug.cgi?id=80281

Reviewed by Martin Robinson.

  • UIProcess/API/gtk/WebKitFindController.cpp:
  • UIProcess/API/gtk/WebKitNavigationPolicyDecision.cpp:

(webkit_navigation_policy_decision_class_init):

  • UIProcess/API/gtk/WebKitPrintOperation.cpp:
  • UIProcess/API/gtk/WebKitWebView.h:
1:26 AM Changeset in webkit [109880] by Carlos Garcia Campos
  • 9 edits
    3 adds in trunk/Source/WebKit2

[GTK] Use a single signal for script dialogs in WebKit2 GTK+ API
https://bugs.webkit.org/show_bug.cgi?id=80271

Reviewed by Martin Robinson.

Add a new signal WebKitWebView::script-dialog that passes a
WebKitScriptDialog boxed type that can be used to build the dialog
and set the responses. It simplifies the API and makes it bindings
friendly.

  • GNUmakefile.am:
  • UIProcess/API/gtk/WebKitScriptDialog.cpp: Added.

(webkitScriptDialogCopy): Copy method for boxed type.
(webkitScriptDialogFree): Free method for boxed type.
(webkit_script_dialog_get_dialog_type): Return the type of dialog:
alert, confirm or prompt.
(webkit_script_dialog_get_message): Return the message of the dialog.
(webkit_script_dialog_confirm_set_confirmed): Set whether user
confirmed the dialog, for confirm dialogs.
(webkit_script_dialog_prompt_get_default_text): Get the default
text of prompt dialogs.
(webkit_script_dialog_prompt_set_text): Set the text entered by
the user, for prompt dialogs.

  • UIProcess/API/gtk/WebKitScriptDialog.h: Added.
  • UIProcess/API/gtk/WebKitScriptDialogPrivate.h: Added.
  • UIProcess/API/gtk/WebKitWebView.cpp:

(webkitWebViewScriptDialog): Default implementation of
WebKitWebView::script-dialog signal.
(webkit_web_view_class_init): Add WebKitWebView::script-dialog and
remove alert, confirm and propmpt.
(webkitWebViewRunJavaScriptAlert): Create a WebKitScriptDialog and
emit WebKitWebView::script-dialog signal.
(webkitWebViewRunJavaScriptConfirm): Ditto.
(webkitWebViewRunJavaScriptPrompt): Ditto.

  • UIProcess/API/gtk/WebKitWebView.h:
  • UIProcess/API/gtk/docs/webkit2gtk-sections.txt: Add new

symbols.

  • UIProcess/API/gtk/docs/webkit2gtk.types: Add webkit_script_dialog_get_type().
  • UIProcess/API/gtk/tests/TestWebKitWebView.cpp:

(testWebViewJavaScriptDialogs): Update javascript dialog test to
use the new API.

  • UIProcess/API/gtk/webkit2marshal.list:
  • UIProcess/API/gtk/webkit2.h:
1:26 AM Changeset in webkit [109879] by haraken@chromium.org
  • 1 edit
    2 moves
    1 add in trunk/LayoutTests

Unreviewed, gardening.

  • platform/chromium-mac-snowleopard/fast/repaint/transform-rotate-and-remove-expected.png: Added.
  • platform/chromium-win/fast/repaint/transform-rotate-and-remove-expected.png: Renamed from LayoutTests/platform/chromium-linux/fast/repaint/transform-rotate-and-remove-expected.png.
  • platform/chromium/fast/repaint/transform-rotate-and-remove-expected.txt: Renamed from LayoutTests/platform/chromium-linux/fast/repaint/transform-rotate-and-remove-expected.txt.
1:23 AM Changeset in webkit [109878] by kkristof@inf.u-szeged.hu
  • 4 edits in trunk/Tools

[Qt] Create EWS to build WebKit2
https://bugs.webkit.org/show_bug.cgi?id=80277

Reviewed by Csaba Osztrogonác.

  • QueueStatusServer/model/queues.py:

(Queue):

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

(QtWK2EWS):

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

(EarlyWarningSytemTest.test_builder_ewses):

1:22 AM Changeset in webkit [109877] by abarth@webkit.org
  • 14 edits
    77 adds
    75 deletes in trunk/Source/WebCore

Move SQLDatabase code into Modules/webdatabase
https://bugs.webkit.org/show_bug.cgi?id=80393

Reviewed by Kentaro Hara.

There are still a couple (minor) SQLDatabase references from WebCore
proper, but we've gotten this code to the point where it makes sense to
move it into the Modules directory. (This patch just moves code---no
behavior change.)

  • CMakeLists.txt:
  • DerivedSources.make:
  • DerivedSources.pri:
  • GNUmakefile.am:
  • GNUmakefile.list.am:
  • Modules/webdatabase: Added.
  • Modules/webdatabase/AbstractDatabase.cpp: Copied from Source/WebCore/storage/AbstractDatabase.cpp.
  • Modules/webdatabase/AbstractDatabase.h: Copied from Source/WebCore/storage/AbstractDatabase.h.
  • Modules/webdatabase/ChangeVersionWrapper.cpp: Copied from Source/WebCore/storage/ChangeVersionWrapper.cpp.
  • Modules/webdatabase/ChangeVersionWrapper.h: Copied from Source/WebCore/storage/ChangeVersionWrapper.h.
  • Modules/webdatabase/DOMWindowSQLDatabase.cpp: Copied from Source/WebCore/storage/DOMWindowSQLDatabase.cpp.
  • Modules/webdatabase/DOMWindowSQLDatabase.h: Copied from Source/WebCore/storage/DOMWindowSQLDatabase.h.
  • Modules/webdatabase/DOMWindowSQLDatabase.idl: Copied from Source/WebCore/storage/DOMWindowSQLDatabase.idl.
  • Modules/webdatabase/Database.cpp: Copied from Source/WebCore/storage/Database.cpp.
  • Modules/webdatabase/Database.h: Copied from Source/WebCore/storage/Database.h.
  • Modules/webdatabase/Database.idl: Copied from Source/WebCore/storage/Database.idl.
  • Modules/webdatabase/DatabaseAuthorizer.cpp: Copied from Source/WebCore/storage/DatabaseAuthorizer.cpp.
  • Modules/webdatabase/DatabaseAuthorizer.h: Copied from Source/WebCore/storage/DatabaseAuthorizer.h.
  • Modules/webdatabase/DatabaseCallback.h: Copied from Source/WebCore/storage/DatabaseCallback.h.
  • Modules/webdatabase/DatabaseCallback.idl: Copied from Source/WebCore/storage/DatabaseCallback.idl.
  • Modules/webdatabase/DatabaseContext.cpp: Copied from Source/WebCore/storage/DatabaseContext.cpp.
  • Modules/webdatabase/DatabaseContext.h: Copied from Source/WebCore/storage/DatabaseContext.h.
  • Modules/webdatabase/DatabaseDetails.h: Copied from Source/WebCore/storage/DatabaseDetails.h.
  • Modules/webdatabase/DatabaseSync.cpp: Copied from Source/WebCore/storage/DatabaseSync.cpp.
  • Modules/webdatabase/DatabaseSync.h: Copied from Source/WebCore/storage/DatabaseSync.h.
  • Modules/webdatabase/DatabaseSync.idl: Copied from Source/WebCore/storage/DatabaseSync.idl.
  • Modules/webdatabase/DatabaseTask.cpp: Copied from Source/WebCore/storage/DatabaseTask.cpp.
  • Modules/webdatabase/DatabaseTask.h: Copied from Source/WebCore/storage/DatabaseTask.h.
  • Modules/webdatabase/DatabaseThread.cpp: Copied from Source/WebCore/storage/DatabaseThread.cpp.
  • Modules/webdatabase/DatabaseThread.h: Copied from Source/WebCore/storage/DatabaseThread.h.
  • Modules/webdatabase/DatabaseTracker.cpp: Copied from Source/WebCore/storage/DatabaseTracker.cpp.
  • Modules/webdatabase/DatabaseTracker.h: Copied from Source/WebCore/storage/DatabaseTracker.h.
  • Modules/webdatabase/DatabaseTrackerClient.h: Copied from Source/WebCore/storage/DatabaseTrackerClient.h.
  • Modules/webdatabase/OriginQuotaManager.cpp: Copied from Source/WebCore/storage/OriginQuotaManager.cpp.
  • Modules/webdatabase/OriginQuotaManager.h: Copied from Source/WebCore/storage/OriginQuotaManager.h.
  • Modules/webdatabase/OriginUsageRecord.cpp: Copied from Source/WebCore/storage/OriginUsageRecord.cpp.
  • Modules/webdatabase/OriginUsageRecord.h: Copied from Source/WebCore/storage/OriginUsageRecord.h.
  • Modules/webdatabase/SQLCallbackWrapper.h: Copied from Source/WebCore/storage/SQLCallbackWrapper.h.
  • Modules/webdatabase/SQLError.h: Copied from Source/WebCore/storage/SQLError.h.
  • Modules/webdatabase/SQLError.idl: Copied from Source/WebCore/storage/SQLError.idl.
  • Modules/webdatabase/SQLException.cpp: Copied from Source/WebCore/storage/SQLException.cpp.
  • Modules/webdatabase/SQLException.h: Copied from Source/WebCore/storage/SQLException.h.
  • Modules/webdatabase/SQLException.idl: Copied from Source/WebCore/storage/SQLException.idl.
  • Modules/webdatabase/SQLResultSet.cpp: Copied from Source/WebCore/storage/SQLResultSet.cpp.
  • Modules/webdatabase/SQLResultSet.h: Copied from Source/WebCore/storage/SQLResultSet.h.
  • Modules/webdatabase/SQLResultSet.idl: Copied from Source/WebCore/storage/SQLResultSet.idl.
  • Modules/webdatabase/SQLResultSetRowList.cpp: Copied from Source/WebCore/storage/SQLResultSetRowList.cpp.
  • Modules/webdatabase/SQLResultSetRowList.h: Copied from Source/WebCore/storage/SQLResultSetRowList.h.
  • Modules/webdatabase/SQLResultSetRowList.idl: Copied from Source/WebCore/storage/SQLResultSetRowList.idl.
  • Modules/webdatabase/SQLStatement.cpp: Copied from Source/WebCore/storage/SQLStatement.cpp.
  • Modules/webdatabase/SQLStatement.h: Copied from Source/WebCore/storage/SQLStatement.h.
  • Modules/webdatabase/SQLStatementCallback.h: Copied from Source/WebCore/storage/SQLStatementCallback.h.
  • Modules/webdatabase/SQLStatementCallback.idl: Copied from Source/WebCore/storage/SQLStatementCallback.idl.
  • Modules/webdatabase/SQLStatementErrorCallback.h: Copied from Source/WebCore/storage/SQLStatementErrorCallback.h.
  • Modules/webdatabase/SQLStatementErrorCallback.idl: Copied from Source/WebCore/storage/SQLStatementErrorCallback.idl.
  • Modules/webdatabase/SQLStatementSync.cpp: Copied from Source/WebCore/storage/SQLStatementSync.cpp.
  • Modules/webdatabase/SQLStatementSync.h: Copied from Source/WebCore/storage/SQLStatementSync.h.
  • Modules/webdatabase/SQLTransaction.cpp: Copied from Source/WebCore/storage/SQLTransaction.cpp.
  • Modules/webdatabase/SQLTransaction.h: Copied from Source/WebCore/storage/SQLTransaction.h.
  • Modules/webdatabase/SQLTransaction.idl: Copied from Source/WebCore/storage/SQLTransaction.idl.
  • Modules/webdatabase/SQLTransactionCallback.h: Copied from Source/WebCore/storage/SQLTransactionCallback.h.
  • Modules/webdatabase/SQLTransactionCallback.idl: Copied from Source/WebCore/storage/SQLTransactionCallback.idl.
  • Modules/webdatabase/SQLTransactionClient.cpp: Copied from Source/WebCore/storage/SQLTransactionClient.cpp.
  • Modules/webdatabase/SQLTransactionClient.h: Copied from Source/WebCore/storage/SQLTransactionClient.h.
  • Modules/webdatabase/SQLTransactionCoordinator.cpp: Copied from Source/WebCore/storage/SQLTransactionCoordinator.cpp.
  • Modules/webdatabase/SQLTransactionCoordinator.h: Copied from Source/WebCore/storage/SQLTransactionCoordinator.h.
  • Modules/webdatabase/SQLTransactionErrorCallback.h: Copied from Source/WebCore/storage/SQLTransactionErrorCallback.h.
  • Modules/webdatabase/SQLTransactionErrorCallback.idl: Copied from Source/WebCore/storage/SQLTransactionErrorCallback.idl.
  • Modules/webdatabase/SQLTransactionSync.cpp: Copied from Source/WebCore/storage/SQLTransactionSync.cpp.
  • Modules/webdatabase/SQLTransactionSync.h: Copied from Source/WebCore/storage/SQLTransactionSync.h.
  • Modules/webdatabase/SQLTransactionSync.idl: Copied from Source/WebCore/storage/SQLTransactionSync.idl.
  • Modules/webdatabase/SQLTransactionSyncCallback.h: Copied from Source/WebCore/storage/SQLTransactionSyncCallback.h.
  • Modules/webdatabase/SQLTransactionSyncCallback.idl: Copied from Source/WebCore/storage/SQLTransactionSyncCallback.idl.
  • Modules/webdatabase/WorkerContextSQLDatabase.cpp: Copied from Source/WebCore/storage/WorkerContextSQLDatabase.cpp.
  • Modules/webdatabase/WorkerContextSQLDatabase.h: Copied from Source/WebCore/storage/WorkerContextSQLDatabase.h.
  • Modules/webdatabase/WorkerContextSQLDatabase.idl: Copied from Source/WebCore/storage/WorkerContextSQLDatabase.idl.
  • Modules/webdatabase/chromium: Added.
  • Modules/webdatabase/chromium/DatabaseObserver.h: Copied from Source/WebCore/storage/chromium/DatabaseObserver.h.
  • Modules/webdatabase/chromium/DatabaseTrackerChromium.cpp: Copied from Source/WebCore/storage/chromium/DatabaseTrackerChromium.cpp.
  • Modules/webdatabase/chromium/QuotaTracker.cpp: Copied from Source/WebCore/storage/chromium/QuotaTracker.cpp.
  • Modules/webdatabase/chromium/QuotaTracker.h: Copied from Source/WebCore/storage/chromium/QuotaTracker.h.
  • Modules/webdatabase/chromium/SQLTransactionClientChromium.cpp: Copied from Source/WebCore/storage/chromium/SQLTransactionClientChromium.cpp.
  • Target.pri:
  • WebCore.gyp/WebCore.gyp:
  • WebCore.gypi:
  • WebCore.pri:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.vcproj/WebCoreCommon.vsprops:
  • WebCore.vcproj/copyForwardingHeaders.cmd:
  • WebCore.xcodeproj/project.pbxproj:
  • storage/AbstractDatabase.cpp: Removed.
  • storage/AbstractDatabase.h: Removed.
  • storage/ChangeVersionWrapper.cpp: Removed.
  • storage/ChangeVersionWrapper.h: Removed.
  • storage/DOMWindowSQLDatabase.cpp: Removed.
  • storage/DOMWindowSQLDatabase.h: Removed.
  • storage/DOMWindowSQLDatabase.idl: Removed.
  • storage/Database.cpp: Removed.
  • storage/Database.h: Removed.
  • storage/Database.idl: Removed.
  • storage/DatabaseAuthorizer.cpp: Removed.
  • storage/DatabaseAuthorizer.h: Removed.
  • storage/DatabaseCallback.h: Removed.
  • storage/DatabaseCallback.idl: Removed.
  • storage/DatabaseContext.cpp: Removed.
  • storage/DatabaseContext.h: Removed.
  • storage/DatabaseDetails.h: Removed.
  • storage/DatabaseSync.cpp: Removed.
  • storage/DatabaseSync.h: Removed.
  • storage/DatabaseSync.idl: Removed.
  • storage/DatabaseTask.cpp: Removed.
  • storage/DatabaseTask.h: Removed.
  • storage/DatabaseThread.cpp: Removed.
  • storage/DatabaseThread.h: Removed.
  • storage/DatabaseTracker.cpp: Removed.
  • storage/DatabaseTracker.h: Removed.
  • storage/DatabaseTrackerClient.h: Removed.
  • storage/OriginQuotaManager.cpp: Removed.
  • storage/OriginQuotaManager.h: Removed.
  • storage/OriginUsageRecord.cpp: Removed.
  • storage/OriginUsageRecord.h: Removed.
  • storage/SQLCallbackWrapper.h: Removed.
  • storage/SQLError.h: Removed.
  • storage/SQLError.idl: Removed.
  • storage/SQLException.cpp: Removed.
  • storage/SQLException.h: Removed.
  • storage/SQLException.idl: Removed.
  • storage/SQLResultSet.cpp: Removed.
  • storage/SQLResultSet.h: Removed.
  • storage/SQLResultSet.idl: Removed.
  • storage/SQLResultSetRowList.cpp: Removed.
  • storage/SQLResultSetRowList.h: Removed.
  • storage/SQLResultSetRowList.idl: Removed.
  • storage/SQLStatement.cpp: Removed.
  • storage/SQLStatement.h: Removed.
  • storage/SQLStatementCallback.h: Removed.
  • storage/SQLStatementCallback.idl: Removed.
  • storage/SQLStatementErrorCallback.h: Removed.
  • storage/SQLStatementErrorCallback.idl: Removed.
  • storage/SQLStatementSync.cpp: Removed.
  • storage/SQLStatementSync.h: Removed.
  • storage/SQLTransaction.cpp: Removed.
  • storage/SQLTransaction.h: Removed.
  • storage/SQLTransaction.idl: Removed.
  • storage/SQLTransactionCallback.h: Removed.
  • storage/SQLTransactionCallback.idl: Removed.
  • storage/SQLTransactionClient.cpp: Removed.
  • storage/SQLTransactionClient.h: Removed.
  • storage/SQLTransactionCoordinator.cpp: Removed.
  • storage/SQLTransactionCoordinator.h: Removed.
  • storage/SQLTransactionErrorCallback.h: Removed.
  • storage/SQLTransactionErrorCallback.idl: Removed.
  • storage/SQLTransactionSync.cpp: Removed.
  • storage/SQLTransactionSync.h: Removed.
  • storage/SQLTransactionSync.idl: Removed.
  • storage/SQLTransactionSyncCallback.h: Removed.
  • storage/SQLTransactionSyncCallback.idl: Removed.
  • storage/WorkerContextSQLDatabase.cpp: Removed.
  • storage/WorkerContextSQLDatabase.h: Removed.
  • storage/WorkerContextSQLDatabase.idl: Removed.
  • storage/chromium/DatabaseObserver.h: Removed.
  • storage/chromium/DatabaseTrackerChromium.cpp: Removed.
  • storage/chromium/QuotaTracker.cpp: Removed.
  • storage/chromium/QuotaTracker.h: Removed.
  • storage/chromium/SQLTransactionClientChromium.cpp: Removed.
1:12 AM Changeset in webkit [109876] by tkent@chromium.org
  • 7 edits
    2 adds in trunk

Do not reformat strings in <input type=number> on platforms using LocalizedNumberICU.
https://bugs.webkit.org/show_bug.cgi?id=78326

Reviewed by Hajime Morita.

Source/WebCore:

We had bugs such as stripping leading zeros, dropping lower digits
of large numbers because we parse a user-input string to a double
value, and generate a string from the double value.

In order to avoid such reformatting, we converts number strings by
replacing standard digits to corresponding localized digits.

  • WebCore.gypi: Added LocalizedNumberICU.h
  • platform/text/LocalizedNumberICU.cpp:

(WebCore::ICULocale::ICULocale): Added.
(WebCore::ICULocale::create): A testing factory function.
(WebCore::ICULocale::createForCurrentLocale): A practical factory function.
(WebCore::ICULocale::setDecimalSymbol): Initialize a symbol table.
(WebCore::ICULocale::initializeDecimalFormat): Initialize ICU DecimalFormat.
(WebCore::ICULocale::convertToLocalizedNumber):

Replace characters to corresponding localized characters.

(WebCore::matches): A helper function for convertFromLocalizedNumber.
(WebCore::endsWith): ditto.
(WebCore::ICULocale::determineStartPosition): ditto.
(WebCore::ICULocale::matchedDecimalSymbolIndex): ditto.
(WebCore::ICULocale::convertFromLocalizedNumber):

Replace characters to corresponding standard characters.

(WebCore::currentLocale): Added.
(WebCore::convertToLocalizedNumber): Uses ICULocale::convertToLocalizedNumber.
(WebCore::convertFromLocalizedNumber): Uses ICULocale::convertFromLocalizedNumber.

  • platform/text/LocalizedNumberICU.h: Added.

(ICULocale): Added. This is exposed to WebKit/chromium/tests/LocalizedNumberICUTest.cpp.

Source/WebKit/chromium:

Add a test for WebCore/platform/text/LocalizedNumberICU.

  • WebKit.gypi: Added LocalizedNumberICUTest.cpp
  • tests/LocalizedNumberICUTest.cpp: Added.

LayoutTests:

  • platform/chromium/test_expectations.txt:

Need to do rebaseline for
fast/speech/input-appearance-numberandspeech.html because the
number rounding issue is fixed.

1:07 AM Changeset in webkit [109875] by abarth@webkit.org
  • 3 edits in trunk/Source/WebCore

Attempt to fix the GTK minimal build
https://bugs.webkit.org/show_bug.cgi?id=80390

Reviewed by Csaba Osztrogonác.

Add some missing ifdefs.

  • Modules/geolocation/NavigatorGeolocation.cpp:
  • Modules/geolocation/NavigatorGeolocation.h:
1:06 AM Changeset in webkit [109874] by mikelawther@chromium.org
  • 3 edits in trunk/LayoutTests

CSS3 calc: rewrite margin test to use getComputedStyle
https://bugs.webkit.org/show_bug.cgi?id=80379

Note that parts of this test still fail, due to yet-to-be-landed CSS3 calc()
functionality (see http://wkb.ug/16662)

Reviewed by Kent Tamura.

  • css3/calc/margin-expected.txt:
  • css3/calc/margin.html:
12:48 AM Changeset in webkit [109873] by Philippe Normand
  • 2 edits in trunk/LayoutTests

REGRESSION (r109461): broke fast/js/function-dot-arguments-and-caller.html on GTK
https://bugs.webkit.org/show_bug.cgi?id=80117

Unreviewed, unskip the fixed test.

  • platform/gtk/Skipped:
12:10 AM Changeset in webkit [109872] by podivilov@chromium.org
  • 9 edits
    1 add in trunk

Web Inspector: stop using RawSourceCode in BreakpointManager.
https://bugs.webkit.org/show_bug.cgi?id=80286

Reviewed by Vsevolod Vlasov.

Source/WebCore:

  • WebCore.gypi:
  • WebCore.vcproj/WebCore.vcproj:
  • inspector/front-end/BreakpointManager.js:

(WebInspector.BreakpointManager.prototype.uiSourceCodeAdded):
(WebInspector.BreakpointManager.prototype.setBreakpoint):
(WebInspector.BreakpointManager.prototype._materializeBreakpoint):
(WebInspector.BreakpointManager.prototype._breakpointDebuggerLocationChanged):

  • inspector/front-end/DebuggerPresentationModel.js:

(WebInspector.DebuggerPresentationModel):

  • inspector/front-end/ScriptMapping.js: Added.

(WebInspector.ScriptMapping):
(WebInspector.ScriptMapping.prototype.rawLocationToUILocation):
(WebInspector.ScriptMapping.prototype.uiLocationToRawLocation):
(WebInspector.ScriptMapping.prototype.createLiveLocation):
(WebInspector.ScriptMapping.prototype.uiSourceCodeList):

  • inspector/front-end/WebKit.qrc:
  • inspector/front-end/inspector.html:

LayoutTests:

  • inspector/debugger/breakpoint-manager.html:
12:04 AM Changeset in webkit [109871] by barraclough@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Unreviewed windows build fix pt 2.

Mar 5, 2012:

11:59 PM Changeset in webkit [109870] by Philippe Normand
  • 4 edits in trunk/Source/WebCore

WebAudio JSC-related fixes
https://bugs.webkit.org/show_bug.cgi?id=80299

Reviewed by Adam Barth.

  • bindings/js/JSAudioContextCustom.cpp:

(WebCore::JSAudioContextConstructor::constructJSAudioContext):
Wrap the audio context in a DOM wrapper.

  • webaudio/AudioContext.idl: No need to protect EventTarget by V8

guards, I think.

  • webaudio/JavaScriptAudioNode.idl: Ditto.
11:40 PM Changeset in webkit [109869] by barraclough@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Unreviewed windows build fix pt 1.

11:35 PM Changeset in webkit [109868] by Csaba Osztrogonác
  • 2 edits in trunk/LayoutTests

[Qt] Unreviewed gardening. Skip new crashing tests,
because crashes aren't bugs but features. :)

  • platform/qt-5.0-wk2/Skipped:
11:31 PM Changeset in webkit [109867] by commit-queue@webkit.org
  • 4 edits
    3 adds in trunk

Element not fully repainted after application and removal of transform
https://bugs.webkit.org/show_bug.cgi?id=61338

Source/WebCore:

Patch by Kishore Bolisetty <kbolisetty@innominds.com> on 2012-03-05
Reviewed by Simon Fraser.
RenderLayer is created and removed when a transform is applied and removed to element.
To render the element properly after removal of transform on it, preferred widths and dimensions of
the element and its containing block needs to be recalculated.

Test: fast/repaint/transform-rotate-and-remove.html

  • rendering/RenderBoxModelObject.cpp:

(WebCore):
(WebCore::RenderBoxModelObject::styleWillChange):
(WebCore::RenderBoxModelObject::styleDidChange):

  • rendering/RenderBoxModelObject.h:

(RenderBoxModelObject):

LayoutTests:

Patch by Kishore Bolisetty <kbolisetty@innominds.com> on 2012-03-05
Reviewed by Simon Fraser.
Test to remove the transform property of an element upon onload event.

  • fast/repaint/transform-rotate-and-remove.html: Added.
  • platform/chromium-linux/fast/repaint/transform-rotate-and-remove-expected.png: Added.
  • platform/chromium-linux/fast/repaint/transform-rotate-and-remove-expected.txt: Added.
11:23 PM Changeset in webkit [109866] by barraclough@apple.com
  • 56 edits in trunk

putByIndex should throw in strict mode
https://bugs.webkit.org/show_bug.cgi?id=80335

Reviewed by Filip Pizlo.

Make the MethodTable PutByIndex trap take a boolean 'shouldThrow' parameter.

Source/JavaScriptCore:

This is a largely mechanical change, simply adding an extra parameter to a number
of functions. Some call sites need perform additional exception checks, and
operationPutByValBeyondArrayBounds needs to know whether it is strict or not.

This patch doesn't fix a missing throw from some cases of shift/unshift (this is
an existing bug), I'll follow up with a third patch to handle that.

  • API/JSObjectRef.cpp:

(JSObjectSetPropertyAtIndex):

  • JSCTypedArrayStubs.h:

(JSC):

  • dfg/DFGOperations.cpp:

(JSC::DFG::putByVal):

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

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

  • dfg/DFGSpeculativeJIT64.cpp:

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

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::privateExecute):

  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION):

  • jsc.cpp:

(GlobalObject::finishCreation):

  • llint/LLIntSlowPaths.cpp:

(JSC::LLInt::LLINT_SLOW_PATH_DECL):

  • runtime/Arguments.cpp:

(JSC::Arguments::putByIndex):

  • runtime/Arguments.h:

(Arguments):

  • runtime/ArrayPrototype.cpp:

(JSC::arrayProtoFuncPush):
(JSC::arrayProtoFuncReverse):
(JSC::arrayProtoFuncShift):
(JSC::arrayProtoFuncSort):
(JSC::arrayProtoFuncSplice):
(JSC::arrayProtoFuncUnShift):

  • runtime/ClassInfo.h:

(MethodTable):

  • runtime/JSArray.cpp:

(JSC::SparseArrayValueMap::put):
(JSC::JSArray::put):
(JSC::JSArray::putByIndex):
(JSC::JSArray::putByIndexBeyondVectorLength):
(JSC::JSArray::push):
(JSC::JSArray::shiftCount):
(JSC::JSArray::unshiftCount):

  • runtime/JSArray.h:

(SparseArrayValueMap):
(JSArray):

  • runtime/JSByteArray.cpp:

(JSC::JSByteArray::putByIndex):

  • runtime/JSByteArray.h:

(JSByteArray):

  • runtime/JSCell.cpp:

(JSC::JSCell::putByIndex):

  • runtime/JSCell.h:

(JSCell):

  • runtime/JSNotAnObject.cpp:

(JSC::JSNotAnObject::putByIndex):

  • runtime/JSNotAnObject.h:

(JSNotAnObject):

  • runtime/JSONObject.cpp:

(JSC::Walker::walk):

  • runtime/JSObject.cpp:

(JSC::JSObject::putByIndex):

  • runtime/JSObject.h:

(JSC::JSValue::putByIndex):

  • runtime/RegExpConstructor.cpp:

(JSC::RegExpMatchesArray::fillArrayInstance):

  • runtime/RegExpMatchesArray.h:

(JSC::RegExpMatchesArray::putByIndex):

  • runtime/StringPrototype.cpp:

(JSC::stringProtoFuncSplit):

Source/WebCore:

  • bindings/js/SerializedScriptValue.cpp:

(WebCore::CloneDeserializer::putProperty):

  • bindings/objc/WebScriptObject.mm:

(-[WebScriptObject setWebScriptValueAtIndex:value:]):

  • bindings/scripts/CodeGeneratorJS.pm:

(GenerateHeader):
(GenerateImplementation):

  • bridge/NP_jsobject.cpp:

(_NPN_SetProperty):

  • bridge/jni/jni_jsobject.mm:

(JavaJSObject::setSlot):

  • bridge/runtime_array.cpp:

(JSC::RuntimeArray::putByIndex):

  • bridge/runtime_array.h:

(RuntimeArray):

Source/WebKit/mac:

  • Plugins/Hosted/NetscapePluginInstanceProxy.mm:

(WebKit::NetscapePluginInstanceProxy::setProperty):

Source/WebKit2:

  • WebProcess/Plugins/Netscape/NPJSObject.cpp:

(WebKit::NPJSObject::setProperty):

LayoutTests:

  • fast/js/Object-defineProperty-expected.txt:
  • fast/js/mozilla/strict/15.4.4.12-expected.txt:
  • fast/js/mozilla/strict/15.4.4.13-expected.txt:
  • fast/js/mozilla/strict/15.4.4.8-expected.txt:
  • fast/js/mozilla/strict/15.4.4.9-expected.txt:
  • fast/js/mozilla/strict/15.5.5.2-expected.txt:
  • fast/js/mozilla/strict/8.12.5-expected.txt:
  • fast/js/preventExtensions-expected.txt:
  • fast/js/primitive-property-access-edge-cases-expected.txt:
    • Checking in passing test results.
  • fast/js/script-tests/Object-defineProperty.js:
    • Added test cases for putting to numeric properties where property is read-only, length is read-only, or property is accessor with missing set function.
  • fast/js/script-tests/preventExtensions.js:
    • Added test case, putting numeric property to non-extensible array.
  • fast/js/script-tests/primitive-property-access-edge-cases.js:
    • Enabled test cases for putting numeric properties to primitive strings.
11:02 PM Changeset in webkit [109865] by yuqiang.xian@intel.com
  • 2 edits in trunk/Source/JavaScriptCore

PredictNone is incorrectly treated as isDoublePrediction
https://bugs.webkit.org/show_bug.cgi?id=80365

Reviewed by Filip Pizlo.

Also it is incorrectly treated as isFixedIndexedStorageObjectPrediction.

  • bytecode/PredictedType.h:

(JSC::isFixedIndexedStorageObjectPrediction):
(JSC::isDoublePrediction):

10:59 PM Changeset in webkit [109864] by shinyak@chromium.org
  • 3 edits in trunk/Source/WebCore

InsertionPoint::attach should be consistent with Element.
https://bugs.webkit.org/show_bug.cgi?id=80373

Reviewed by Hajime Morita.

This patch is preparation for coming <shadow> patches.

InsertionPoint used to attach fallback elements before attaching distributed elements.
To be consistent with Element::attach behavior, attaching distributed elements first is
natural, because Element attaches a shadow tree first.

Also, this patch extracts a few methods form InsretionPoint::attach() and detach()
to keep code clean. They will become messy without this refactoring when adding
<shadow> patch.

No new tests. Should be covered by existing tests.

  • html/shadow/InsertionPoint.cpp:

(WebCore::InsertionPoint::attach):
(WebCore::InsertionPoint::detach):
(WebCore::InsertionPoint::distributeHostChildren):
(WebCore):
(WebCore::InsertionPoint::clearDistribution):
(WebCore::InsertionPoint::attachDistributedNode):

  • html/shadow/InsertionPoint.h:

(InsertionPoint):

10:54 PM Changeset in webkit [109863] by fpizlo@apple.com
  • 16 edits in trunk/Source/JavaScriptCore

The LLInt should work even when the JIT is disabled
https://bugs.webkit.org/show_bug.cgi?id=80340
<rdar://problem/10922235>

Reviewed by Gavin Barraclough.

  • assembler/MacroAssemblerCodeRef.h:

(JSC::MacroAssemblerCodePtr::createLLIntCodePtr):
(MacroAssemblerCodeRef):
(JSC::MacroAssemblerCodeRef::createLLIntCodeRef):

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::initialize):
(JSC::Interpreter::execute):
(JSC::Interpreter::executeCall):
(JSC::Interpreter::executeConstruct):

  • jit/JIT.h:

(JSC::JIT::compileCTINativeCall):

  • jit/JITStubs.h:

(JSC::JITThunks::ctiNativeCall):
(JSC::JITThunks::ctiNativeConstruct):

  • llint/LLIntEntrypoints.cpp:

(JSC::LLInt::getFunctionEntrypoint):
(JSC::LLInt::getEvalEntrypoint):
(JSC::LLInt::getProgramEntrypoint):

  • llint/LLIntSlowPaths.cpp:

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

  • llint/LLIntSlowPaths.h:

(LLInt):

  • llint/LowLevelInterpreter.h:
  • llint/LowLevelInterpreter32_64.asm:
  • runtime/Executable.h:

(NativeExecutable):
(JSC::NativeExecutable::create):
(JSC::NativeExecutable::finishCreation):

  • runtime/JSGlobalData.cpp:

(JSC::JSGlobalData::JSGlobalData):

  • runtime/JSGlobalData.h:

(JSGlobalData):

  • runtime/Options.cpp:

(Options):
(JSC::Options::parse):
(JSC::Options::initializeOptions):

  • runtime/Options.h:

(Options):

  • wtf/Platform.h:
10:31 PM Changeset in webkit [109862] by Csaba Osztrogonác
  • 6 edits
    2 deletes in trunk/Tools

Unreviewed, rolling out r109733.
http://trac.webkit.org/changeset/109733
https://bugs.webkit.org/show_bug.cgi?id=80378

It broke Qt5 build system (Requested by Ossy on #webkit).

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

  • Tools.pro:
  • qmake/config.tests/gccdepends/empty.cpp: Removed.
  • qmake/config.tests/gccdepends/gccdepends.pro: Removed.
  • qmake/mkspecs/features/default_pre.prf:
  • qmake/mkspecs/features/features.prf:
  • qmake/mkspecs/features/unix/default_pre.prf:
  • qmake/sync.profile:
10:28 PM WikiStart edited by eric@webkit.org
Add a page about the EWS bots. (diff)
10:21 PM Changeset in webkit [109861] by abarth@webkit.org
  • 2 edits in trunk/Source/WebCore

Attempt to fix a number of GTK tests.

  • GNUmakefile.list.am:
10:16 PM Changeset in webkit [109860] by Joseph Pecoraro
  • 21 edits in trunk/Source

Unreviewed rollout of r109858 for restructuring.

10:11 PM Changeset in webkit [109859] by yuqiang.xian@intel.com
  • 2 edits in trunk/Source/JavaScriptCore

Checks for dead variables are not sufficient when fixing the expected
values in DFG OSR entry
https://bugs.webkit.org/show_bug.cgi?id=80371

Reviewed by Filip Pizlo.

A dead variable should be identified when there's no node referencing it.
But we currently failed to catch the case where there are some nodes
referencing a variable but those nodes are actually not referenced by
others so will be ignored in code generation. In such case we should
also consider that variable to be a dead variable in the block and fix
the expected values.
This is performance neutral on SunSpider, V8 and Kraken.

  • dfg/DFGJITCompiler.h:

(JSC::DFG::JITCompiler::noticeOSREntry):

10:03 PM Changeset in webkit [109858] by Joseph Pecoraro
  • 21 edits in trunk/Source

<http://webkit.org/b/78575> Web Inspector: Hide dock button when not allowed to dock

Source/WebCore:

There are times when an undocked inspector frontend is not allowed to
attach to the main window. We can remove the dock button in those cases.

Reviewed by Timothy Hatcher.

No new tests. This functionality is port specific right now.

  • page/FrameView.cpp:

(WebCore::FrameView::performPostLayoutTasks):
When the main frame is resized we let the inspector frontend client
update its docked availability.

  • WebCore.exp.in:
  • inspector/InspectorInstrumentation.h:
  • inspector/InspectorInstrumentation.cpp:

(WebCore::InspectorInstrumentation::didResizeMainFrameImpl):
(WebCore::InspectorInstrumentation::didResizeMainFrame):

  • inspector/InspectorClient.h:

(WebCore::InspectorClient::updateDockingAvailability):

  • inspector/InspectorController.h:
  • inspector/InspectorController.cpp:

(WebCore::InspectorController::resume):
(WebCore::InspectorController::updateDockingAvailability):
When the main frame is resized call up to the InspectorClient to let
it update docking availability of the inspector frontend.

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

(WebCore::InspectorFrontendClientLocal::frontendLoaded):
(WebCore::InspectorFrontendClientLocal::setDockingUnavailable):
On ports where the inspector frontend client is local, provide a
setDockingUnavailable InspectorFrontendAPI to update the docking state.
Automatically update availablity when the frontend completes loading.

  • inspector/front-end/InspectorFrontendAPI.js:

(InspectorFrontendAPI.setDockingUnavailable):

  • inspector/front-end/inspector.js:

(WebInspector._createGlobalStatusBarItems):
(WebInspector.setAttachedWindow):
(WebInspector.setDockingUnavailable):
(WebInspector.updateDockToggleButtonVisibility):
Update the dock button's visibility when its created, when the attached
state changes, when get a frontend API notification that we cannot attach.

Source/WebKit/mac:

  • WebCoreSupport/WebInspectorClient.h:

(WebInspectorClient):

  • WebCoreSupport/WebInspectorClient.mm:

(WebInspectorClient::updateDockingAvailability):

Source/WebKit2:

  • WebProcess/WebCoreSupport/WebInspectorClient.cpp:

(WebKit::WebInspectorClient::updateDockingAvailability):

  • WebProcess/WebCoreSupport/WebInspectorClient.h:
  • WebProcess/WebPage/WebInspector.cpp:

(WebKit::WebInspector::updateDockingAvailability):

  • WebProcess/WebPage/WebInspector.h:
9:26 PM Changeset in webkit [109857] by Lucas Forschler
  • 2 edits in tags/Safari-536.2.1/Source/WebCore

Merged r109847.

9:24 PM Changeset in webkit [109856] by Lucas Forschler
  • 10 edits in tags/Safari-536.2.1/Source

Merged r109843.

9:23 PM Changeset in webkit [109855] by Lucas Forschler
  • 7 edits in tags/Safari-536.2.1/Source

Merged r109812.

9:20 PM Changeset in webkit [109854] by Lucas Forschler
  • 6 edits in tags/Safari-536.2.1/Source

Merged r109801.

9:19 PM Changeset in webkit [109853] by Lucas Forschler
  • 12 edits in tags/Safari-536.2.1/Source/WebCore

Merged r109788.

9:15 PM Changeset in webkit [109852] by Lucas Forschler
  • 6 edits
    4 copies in tags/Safari-536.2.1

Merged r109594.

9:13 PM Changeset in webkit [109851] by enne@google.com
  • 7 edits
    4 adds in trunk

Compositing overlap testing can throw layers into compositing when they should not be.
https://bugs.webkit.org/show_bug.cgi?id=50192

Reviewed by Simon Fraser.

Source/WebCore:

The previous overlap map behavior was that a non-composited query
layer would become composited due to overlap if and only if the query
layer's absolute bounds overlapped the absolute bounds of some other
layer which:

  • draws before the query layer
  • is or has a compositing ancestor

This behavior, while correct, was too permissive in throwing layers
into compositing, causing many layers to get their own backing when
they could have just gone into their compositing ancestor's backing.

The correct logic is that non-composited query layer needs to be
composited due to overlap if and only if the query layer's absolute
bounds overlap the absolute bounds of some other layer which:

  • draws before the query layer
  • has a different compositing ancestor than the query layer
  • is or has a compositing ancestor that is a descendent of the query layer's compositing ancestor

This patch changes the semantics of the overlap map to enable this
behavior.

Rather than having one global overlap map, there is now a stack of
overlap maps. New (empty) overlap maps are pushed onto the stack
whenever a layer becomes a compositing ancestor and popped after all
of the compositing requirements for that layer's children have been
computed.

The compositing ancestor and all of its non-composited children of a
compositing ancestor do not get considered for overlap until their
composited ancestor has been popped off the stack. If a compositing
ancestor has a compositing subtree, then any descendents of that
compositing ancestor that draw after that subtree will consider
everything in the compositing subtree for overlap.

Test: compositing/layer-creation/stacking-context-overlap.html

  • platform/graphics/Region.cpp:

(WebCore::Region::intersects):
(WebCore):

  • platform/graphics/Region.h:

(Region):

  • rendering/RenderLayerCompositor.cpp:

(RenderLayerCompositor::OverlapMap):
(WebCore::RenderLayerCompositor::OverlapMap::OverlapMap):
(WebCore::RenderLayerCompositor::OverlapMap::add):
(WebCore::RenderLayerCompositor::OverlapMap::contains):
(WebCore::RenderLayerCompositor::OverlapMap::overlapsLayers):
(WebCore::RenderLayerCompositor::OverlapMap::isEmpty):
(WebCore::RenderLayerCompositor::OverlapMap::popCompositingContainer):
(WebCore::RenderLayerCompositor::OverlapMap::pushCompositingContainer):
(WebCore::RenderLayerCompositor::addToOverlapMapRecursive):
(WebCore::RenderLayerCompositor::computeCompositingRequirements):

  • rendering/RenderLayerCompositor.h:

(RenderLayerCompositor):

LayoutTests:

  • compositing/layer-creation/stacking-context-overlap-expected.txt: Added.
  • compositing/layer-creation/stacking-context-overlap.html: Added.
  • compositing/layer-creation/stacking-context-overlap-nested-expected.txt: Added.
  • compositing/layer-creation/stacking-context-overlap-nested.html: Added.
  • platform/chromium/test_expectations.txt:
9:09 PM Changeset in webkit [109850] by Lucas Forschler
  • 2 edits in tags/Safari-536.2.1/Source/WebCore

Merged r109486.

9:07 PM Changeset in webkit [109849] by Lucas Forschler
  • 4 edits in tags/Safari-536.2.1/Source

Versioning.

9:04 PM Changeset in webkit [109848] by Lucas Forschler
  • 2 edits in tags/Safari-536.2.1/Source/WebCore

Merged r109379.

8:57 PM Changeset in webkit [109847] by andersca@apple.com
  • 2 edits in trunk/Source/WebCore

Address review comments from https://bugs.webkit.org/show_bug.cgi?id=80368

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

(WebCore::TileCache::setNeedsDisplayInRect):

8:54 PM Changeset in webkit [109846] by commit-queue@webkit.org
  • 3 edits
    2 adds in trunk

[Forms] HTMLFieldSetForms.idl doesn't have type attribute.
https://bugs.webkit.org/show_bug.cgi?id=80109

Patch by Yoshifumi Inoue <yosin@chromium.org> on 2012-03-05
Reviewed by Hajime Morita.

Source/WebCore:

Test: fast/forms/fieldset/fieldset-type.html

  • html/HTMLFieldSetElement.idl: Add attribute "type"

LayoutTests:

  • fast/forms/fieldset/fieldset-type-expected.txt: Added.
  • fast/forms/fieldset/fieldset-type.html: Added.
8:54 PM Changeset in webkit [109845] by oliver@apple.com
  • 5 edits in trunk/Source/JavaScriptCore

Fix Qt build.

8:51 PM Changeset in webkit [109844] by andersca@apple.com
  • 2 edits in trunk/Source/WebCore

Fix build.

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

(WebCore::TileCache::setScale):

8:33 PM Changeset in webkit [109843] by andersca@apple.com
  • 10 edits in trunk/Source

pinch-to-zoom and double-tap flicker when using the new scrolling model
https://bugs.webkit.org/show_bug.cgi?id=80368
<rdar://problem/10866221>

Reviewed by Sam Weinig.

Source/WebCore:

In order to work better with zooming, make the tile cache undo the scale transformation
and handle the scaling manually. This avoids creating huge tile backing stores when zoomed in.

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

(WebCore::TileCache::TileCache):
Initialize m_scale to 1.

(WebCore::TileCache::setNeedsDisplayInRect):
Scale the given rect appropriately.

(WebCore::TileCache::drawLayer):
Apply a scale context transform.

(WebCore::TileCache::setScale):
No longer set the contents scale. Instead, update the scale and revalidate the tiles.

(WebCore::TileCache::revalidateTiles):
Return early if the bounds are empty. This avoids showing a single tile if that happens due to a race condition.

(WebCore::TileCache::getTileIndexRangeForRect):
Apply the scale to the bounds.

(WebCore::TileCache::createTileLayer):
Don't set the contents scale.

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

(-[WebTileCacheLayer setContentsScale:]):
Call TileCache::setScale.

  • rendering/RenderLayerBacking.cpp:

(WebCore::RenderLayerBacking::updateCompositedBounds):
Make sure to give the tile cache layer sane composited bounds, even if the page has absolutely positioned
elements that are outside of the page.

Source/WebKit2:

Add a way for drawing areas to respond to callback based force repaint requests asynchronously.
This is currently needed for the tiled drawing area when there might be outstanding scroll updates
that are sent from the scrolling thread to the main thread and we need to ensure that they're processed
before sending a message back.

  • WebProcess/WebPage/DrawingArea.h:

(WebKit::DrawingArea::forceRepaintAsync):
Add new member function.

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::forceRepaint):
Try forceRepaintAsync first.

  • WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm:

(WebKit::forceRepaintAndSendMessage):
Force the repaint and send the message.

(WebKit::dispatchBackToMainThread):
Dispatch a call to forceRepaintAndSendMessage to the main thread.

(WebKit::TiledCoreAnimationDrawingArea::forceRepaintAsync):
Dispatch a function on the scrolling thread. Its sole purpose is to dispatch a function back to the
main thread, ensuring that all previously dispatched functions have been executed.

8:32 PM Changeset in webkit [109842] by Lucas Forschler
  • 1 copy in tags/Safari-536.2.1

New Tag.

8:24 PM Changeset in webkit [109841] by leo.yang@torchmobile.com.cn
  • 2 edits in trunk/Source/WebCore

GraphicsContext3D.h should include RefCounted.h explicitly
https://bugs.webkit.org/show_bug.cgi?id=80251

Reviewed by Rob Buis.

GraphicsContext3D.h was using RefCounted but including RefCounted.h indirectly
through GraphicsLayer.h through Animation.h. However Animation.h is included
by GraphicsLayer.h only when ACCELERATED_COMPOSITING is on. For some configurations
that don't use ACCELERATED_COMPOSITING but use GraphicsContext3D, like the
BlackBerry x86 configuration, the indirect inclusion will fail.

This patch is adding explicit inclusion of RefCounted.h to avoid that kind of
problem.

  • platform/graphics/GraphicsContext3D.h:
8:20 PM Changeset in webkit [109840] by bashi@chromium.org
  • 6 edits
    4 adds in trunk

[WebSocket] Should raise SYNTAX_ERR when message contains unpaired surrogates
https://bugs.webkit.org/show_bug.cgi?id=80103

Reviewed by Kent Tamura.

Source/WebCore:

Add UTF8 validation checks for WebSocket message and close reason.

Tests: http/tests/websocket/tests/hybi/unpaired-surrogates-in-close-reason.html

http/tests/websocket/tests/hybi/unpaired-surrogates-in-message.html

  • Modules/websockets/WebSocket.cpp:

(WebCore::WebSocket::send): Raise SYNTAX_ERR if the message is invalid.
(WebCore::WebSocket::close):Raise SYNTAX_ERR if the reason is invalid.

  • Modules/websockets/WebSocketChannel.cpp:

(WebCore::WebSocketChannel::send): Check whether message is a valid UTF8 string.

LayoutTests:

Added tests for unpaired surrogates check for WebSocket message and close reason.
Updated two expectations for close() tests because further error message is added.

  • http/tests/websocket/tests/hybi/close-expected.txt: Updated.
  • http/tests/websocket/tests/hybi/unpaired-surrogates-in-close-reason-expected.txt: Added.
  • http/tests/websocket/tests/hybi/unpaired-surrogates-in-close-reason.html: Added.
  • http/tests/websocket/tests/hybi/unpaired-surrogates-in-message-expected.txt: Added.
  • http/tests/websocket/tests/hybi/unpaired-surrogates-in-message.html: Added.
  • http/tests/websocket/tests/hybi/workers/close-expected.txt: Updated.
8:15 PM Changeset in webkit [109839] by kbr@google.com
  • 10 edits in trunk/Source

[chromium] Notify CCLayerImpl tree of context loss and restoration
https://bugs.webkit.org/show_bug.cgi?id=80339

Reviewed by James Robinson.

Source/WebCore:

Tested by manually killing GPU process while playing Flash video.
Video continues to play after compositor restores its context.

  • platform/graphics/chromium/cc/CCLayerImpl.cpp:

(WebCore::CCLayerImpl::didLoseAndRecreateGraphicsContext):
(WebCore):

  • platform/graphics/chromium/cc/CCLayerImpl.h:

(CCLayerImpl):

  • platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp:

(WebCore::CCLayerTreeHostImpl::sendContextLostAndRestoredNotification):
(WebCore):
(WebCore::CCLayerTreeHostImpl::sendContextLostAndRestoredNotificationRecursive):

  • platform/graphics/chromium/cc/CCLayerTreeHostImpl.h:

(CCLayerTreeHostImpl):

  • platform/graphics/chromium/cc/CCPluginLayerImpl.cpp:

(WebCore::CCPluginLayerImpl::didLoseAndRecreateGraphicsContext):
(WebCore):

  • platform/graphics/chromium/cc/CCPluginLayerImpl.h:

(CCPluginLayerImpl):

  • platform/graphics/chromium/cc/CCSingleThreadProxy.cpp:

(WebCore::CCSingleThreadProxy::recreateContext):

Source/WebKit/chromium:

Unit test for notification of context loss and restoration.

  • tests/CCLayerTreeHostImplTest.cpp:

(WebKit):
(ContextLostNotificationCheckLayer):
(WebKit::ContextLostNotificationCheckLayer::create):
(WebKit::ContextLostNotificationCheckLayer::didLoseAndRecreateGraphicsContext):
(WebKit::ContextLostNotificationCheckLayer::didLoseAndRecreateGraphicsContextCalled):
(WebKit::ContextLostNotificationCheckLayer::ContextLostNotificationCheckLayer):
(WebKit::TEST_F):

8:02 PM Changeset in webkit [109838] by commit-queue@webkit.org
  • 12 edits in trunk/Source

Change the argument orders to match OpenGL's in GraphicsContext3D functions
https://bugs.webkit.org/show_bug.cgi?id=80120

Patch by Changhun Kang <temoochin@company100.net> on 2012-03-05
Reviewed by Kenneth Russell.

No new tests because this patch just change the order of arguments.

Source/WebCore:

  • html/canvas/WebGLRenderingContext.cpp:

(WebCore):
(WebCore::WebGLRenderingContext::uniform1fv):
(WebCore::WebGLRenderingContext::uniform1iv):
(WebCore::WebGLRenderingContext::uniform2fv):
(WebCore::WebGLRenderingContext::uniform2iv):
(WebCore::WebGLRenderingContext::uniform3fv):
(WebCore::WebGLRenderingContext::uniform3iv):
(WebCore::WebGLRenderingContext::uniform4fv):
(WebCore::WebGLRenderingContext::uniform4iv):
(WebCore::WebGLRenderingContext::uniformMatrix2fv):
(WebCore::WebGLRenderingContext::uniformMatrix3fv):
(WebCore::WebGLRenderingContext::uniformMatrix4fv):

  • platform/graphics/GraphicsContext3D.h:
  • platform/graphics/chromium/LayerRendererChromium.cpp:

(WebCore::LayerRendererChromium::drawDebugBorderQuad):
(WebCore::LayerRendererChromium::drawTileQuad):
(WebCore::LayerRendererChromium::drawYUV):
(WebCore::LayerRendererChromium::drawStreamTexture):
(WebCore::LayerRendererChromium::drawTexturedQuad):

  • platform/graphics/chromium/cc/CCRenderSurface.cpp:

(WebCore::CCRenderSurface::drawSurface):

  • platform/graphics/efl/GraphicsContext3DEfl.cpp:

(WebCore::GraphicsContext3D::uniform1fv):
(WebCore::GraphicsContext3D::uniform1iv):
(WebCore::GraphicsContext3D::uniform2fv):
(WebCore::GraphicsContext3D::uniform2iv):
(WebCore::GraphicsContext3D::uniform3fv):
(WebCore::GraphicsContext3D::uniform3iv):
(WebCore::GraphicsContext3D::uniform4fv):
(WebCore::GraphicsContext3D::uniform4iv):
(WebCore::GraphicsContext3D::uniformMatrix2fv):
(WebCore::GraphicsContext3D::uniformMatrix3fv):
(WebCore::GraphicsContext3D::uniformMatrix4fv):

  • platform/graphics/filters/FECustomFilter.cpp:

(WebCore::FECustomFilter::bindProgramAndBuffers):

  • platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp:

(WebCore::GraphicsContext3D::uniform1fv):
(WebCore::GraphicsContext3D::uniform2fv):
(WebCore::GraphicsContext3D::uniform3fv):
(WebCore::GraphicsContext3D::uniform4fv):
(WebCore::GraphicsContext3D::uniform1iv):
(WebCore::GraphicsContext3D::uniform2iv):
(WebCore::GraphicsContext3D::uniform3iv):
(WebCore::GraphicsContext3D::uniform4iv):
(WebCore::GraphicsContext3D::uniformMatrix2fv):
(WebCore::GraphicsContext3D::uniformMatrix3fv):
(WebCore::GraphicsContext3D::uniformMatrix4fv):

  • platform/graphics/qt/GraphicsContext3DQt.cpp:

(WebCore::GraphicsContext3D::uniform1fv):
(WebCore::GraphicsContext3D::uniform2fv):
(WebCore::GraphicsContext3D::uniform3fv):
(WebCore::GraphicsContext3D::uniform4fv):
(WebCore::GraphicsContext3D::uniform1iv):
(WebCore::GraphicsContext3D::uniform2iv):
(WebCore::GraphicsContext3D::uniform3iv):
(WebCore::GraphicsContext3D::uniform4iv):
(WebCore::GraphicsContext3D::uniformMatrix2fv):
(WebCore::GraphicsContext3D::uniformMatrix3fv):
(WebCore::GraphicsContext3D::uniformMatrix4fv):

Source/WebKit/chromium:

  • src/GraphicsContext3DChromium.cpp:

(WebCore::GraphicsContext3DPrivate::uniform1fv):
(WebCore::GraphicsContext3DPrivate::uniform1iv):
(WebCore::GraphicsContext3DPrivate::uniform2fv):
(WebCore::GraphicsContext3DPrivate::uniform2iv):
(WebCore::GraphicsContext3DPrivate::uniform3fv):
(WebCore::GraphicsContext3DPrivate::uniform3iv):
(WebCore::GraphicsContext3DPrivate::uniform4fv):
(WebCore::GraphicsContext3DPrivate::uniform4iv):
(WebCore::GraphicsContext3DPrivate::uniformMatrix2fv):
(WebCore::GraphicsContext3DPrivate::uniformMatrix3fv):
(WebCore::GraphicsContext3DPrivate::uniformMatrix4fv):
(WebCore):

  • src/GraphicsContext3DPrivate.h:

(GraphicsContext3DPrivate):

7:37 PM Changeset in webkit [109837] by eric@webkit.org
  • 36 edits in trunk

Source/JavaScriptCore: Update JavaScriptCore files to use fully-qualified WTF include paths
https://bugs.webkit.org/show_bug.cgi?id=79960

Reviewed by Adam Barth.

This change does 5 small/related things:

  1. Updates JavaScriptCore.xcodeproj to install WTF headers into $BUILD/usr/local/include (WebCore, WebKit were already setup to look there, but JavaScriptCore.xcodeproj was not installing headers there.)
  2. Makes JavaScriptCore targets include $BUILD/usr/local/include in their header search path, as that's where the WTF headers will be installed.
  3. Similarly updates JavaScriptCore.vcproj/copy-files.cmd to copy WTF headers to PrivateHeaders/wtf/* in addition to the current behavior of flattening all headers to PrivateHeaders/*.h.
  4. Updates a bunch of JSC files to use #include <wtf/Foo.h> instead of #include "Foo.h" since soon the WTF headers will not be part of the JavaScriptCore Xcode project.
  5. Makes build-webkit build the WTF XCode project by default.
  • API/tests/JSNode.c:
  • API/tests/JSNodeList.c:
  • Configurations/Base.xcconfig:
  • assembler/MacroAssemblerCodeRef.h:
  • bytecompiler/BytecodeGenerator.h:
  • dfg/DFGOperations.cpp:
  • heap/GCAssertions.h:
  • heap/HandleHeap.h:
  • heap/HandleStack.h:
  • heap/MarkedSpace.h:
  • heap/PassWeak.h:
  • heap/Strong.h:
  • heap/Weak.h:
  • jit/HostCallReturnValue.cpp:
  • jit/JIT.cpp:
  • jit/JITStubs.cpp:
  • jit/ThunkGenerators.cpp:
  • parser/Lexer.cpp:
  • runtime/Completion.cpp:
  • runtime/Executable.cpp:
  • runtime/Identifier.h:
  • runtime/InitializeThreading.cpp:
  • runtime/JSDateMath.cpp:
  • runtime/JSGlobalObjectFunctions.cpp:
  • runtime/JSStringBuilder.h:
  • runtime/JSVariableObject.h:
  • runtime/NumberPrototype.cpp:
  • runtime/WriteBarrier.h:
  • tools/CodeProfile.cpp:
  • tools/TieredMMapArray.h:
  • yarr/YarrJIT.cpp:

Tools: Update JavaScriptCore files to use fully-qualified WTF include path
https://bugs.webkit.org/show_bug.cgi?id=79960

Reviewed by Adam Barth.

Build WTF/WTF.xcodeproj by default on Mac.

  • Scripts/build-webkit:
7:07 PM Changeset in webkit [109836] by commit-queue@webkit.org
  • 3 edits
    3 adds in trunk

Source/WebCore: [Forms] HTMLFieldSetForms.idl doesn't have name attribute.
https://bugs.webkit.org/show_bug.cgi?id=80108

Patch by Yoshifumi Inoue <yosin@chromium.org> on 2012-03-05
Reviewed by Hajime Morita.

Test: fast/forms/fieldset/fieldset-name.html

  • html/HTMLFieldSetElement.idl: Add "name" attribute.

LayoutTests: [Forms] HTMLFieldSetForms.idl doesn't have name attribute.
https://bugs.webkit.org/show_bug.cgi?id=81008

Test read/write attribute "name" of fieldset element.

Patch by Yoshifumi Inoue <yosin@chromium.org> on 2012-03-05
Reviewed by Hajime Morita.

  • fast/forms/fieldset/fieldset-name-expected.txt: Added.
  • fast/forms/fieldset/fieldset-name.html: Added.
6:42 PM Changeset in webkit [109835] by leviw@chromium.org
  • 6 edits in trunk/Source/WebCore

Update usage of LayoutUnits in RenderBox
https://bugs.webkit.org/show_bug.cgi?id=80039

Reviewed by Julien Chaffraix.

Updating the usage of integers versus LayoutUnits in RenderBox to mirror the
subpixellayout branch. This reverts absoluteRects, intrinsicSize, and focusRingRects
methods to use integers, and flipForWritingMode functions to LayoutUnits.

No new tests. No change in behavior.

  • platform/graphics/FractionalLayoutRect.h:

(WebCore::FractionalLayoutRect::pixelSnappedX): Convenience methods that only calculate
the needed values. This requires less computation than pixelSnappedIntRect(r).x().
(WebCore::FractionalLayoutRect::pixelSnappedY): Ditto.
(WebCore::FractionalLayoutRect::pixelSnappedWidth): Ditto.
(WebCore::FractionalLayoutRect::pixelSnappedHeight): Ditto.
(WebCore::FractionalLayoutRect::pixelSnappedMaxX): Ditto.
(WebCore::FractionalLayoutRect::pixelSnappedMaxY): Ditto.
(FractionalLayoutRect):

  • platform/graphics/IntRect.h:

(IntRect):
(WebCore::IntRect::pixelSnappedX): Stub methods to allow us to use IntRects like we do
FractionalLayoutRects.
(WebCore::IntRect::pixelSnappedY): Ditto.
(WebCore::IntRect::pixelSnappedMaxX): Ditto.
(WebCore::IntRect::pixelSnappedMaxY): Ditto.
(WebCore::IntRect::pixelSnappedWidth): Ditto.
(WebCore::IntRect::pixelSnappedHeight): Ditto.

  • rendering/LayoutTypes.h:

(WebCore::pixelSnappedIntRect): Convenience method for building a pixelSnappedIntRect from
a LayoutPoint and LayoutSize without constructing an intermediate LayoutRect.
(WebCore):
(WebCore::snapSizeToPixel): Stub method for snapping a LayoutUnit representing a size to
its pixel value using its location.

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::pixelSnappedClientWidth): Changing to actually call snapSizeToPixel.
(WebCore::RenderBox::pixelSnappedClientHeight): Ditto.
(WebCore::RenderBox::absoluteRects): Switching to return IntRects that represent the actual
rendered location on screen.
(WebCore::RenderBox::addFocusRingRects): Ditto.
(WebCore::RenderBox::paintFillLayer): One-liner switching an IntSize() to LayoutSize() to
avoid unnecessary conversion.
(WebCore::RenderBox::shrinkLogicalWidthToAvoidFloats): Preparing for the conversion by
replacing 0 with zeroLayoutUnit.
(WebCore::RenderBox::positionLineBox): Preparing for conversion by replacing lroundf
with roundedLayoutUnit.
(WebCore::RenderBox::flipForWritingMode): Switching to use LayoutUnits.

  • rendering/RenderBox.h:

(RenderBox):
(WebCore::RenderBox::pixelSnappedBorderBoxRect): Convenience method.
(WebCore::RenderBox::borderBoundingBox): Converting to a pixelSnappedIntRect.
(WebCore::RenderBox::intrinsicSize): Intrinsic sizes should always be integers.

6:40 PM Changeset in webkit [109834] by oliver@apple.com
  • 22 edits in trunk/Source/JavaScriptCore

Add basic support for constant blinding to the JIT
https://bugs.webkit.org/show_bug.cgi?id=80354

Reviewed by Filip Pizlo.

This patch adds basic constant blinding support to the JIT, at the
MacroAssembler level. This means all JITs in JSC (Yarr, baseline, and DFG)
get constant blinding. Woo!

This patch only introduces blinding for Imm32, a later patch will do similar
for ImmPtr. In order to make misuse of Imm32 as a trusted type essentially
impossible, we make TrustedImm32 a private parent of Imm32 and add an explicit
accessor that's needed to access the actual value. This also means you cannot
accidentally pass an untrusted value to a function that does not perform
blinding.

To make everything work sensibly, this patch also corrects some code that was using
Imm32 when TrustedImm32 could be used, and refactors a few callers that use
untrusted immediates, so that they call slightly different varaints of the functions
that they used previously. This is largely necessary to deal with x86-32 not having
sufficient registers to handle the additional work required when we choose to blind
a constant.

  • assembler/AbstractMacroAssembler.h:

(JSC::AbstractMacroAssembler::Imm32::asTrustedImm32):
(Imm32):
(JSC::AbstractMacroAssembler::beginUninterruptedSequence):
(JSC::AbstractMacroAssembler::endUninterruptedSequence):
(JSC::AbstractMacroAssembler::AbstractMacroAssembler):
(AbstractMacroAssembler):
(JSC::AbstractMacroAssembler::inUninterruptedSequence):
(JSC::AbstractMacroAssembler::random):
(JSC::AbstractMacroAssembler::scratchRegisterForBlinding):
(JSC::AbstractMacroAssembler::shouldBlindForSpecificArch):

  • assembler/MacroAssembler.h:

(JSC::MacroAssembler::addressForPoke):
(MacroAssembler):
(JSC::MacroAssembler::poke):
(JSC::MacroAssembler::branchPtr):
(JSC::MacroAssembler::branch32):
(JSC::MacroAssembler::convertInt32ToDouble):
(JSC::MacroAssembler::shouldBlind):
(JSC::MacroAssembler::BlindedImm32::BlindedImm32):
(BlindedImm32):
(JSC::MacroAssembler::keyForConstant):
(JSC::MacroAssembler::xorBlindConstant):
(JSC::MacroAssembler::additionBlindedConstant):
(JSC::MacroAssembler::andBlindedConstant):
(JSC::MacroAssembler::orBlindedConstant):
(JSC::MacroAssembler::loadXorBlindedConstant):
(JSC::MacroAssembler::add32):
(JSC::MacroAssembler::addPtr):
(JSC::MacroAssembler::and32):
(JSC::MacroAssembler::andPtr):
(JSC::MacroAssembler::move):
(JSC::MacroAssembler::or32):
(JSC::MacroAssembler::store32):
(JSC::MacroAssembler::sub32):
(JSC::MacroAssembler::subPtr):
(JSC::MacroAssembler::xor32):
(JSC::MacroAssembler::branchAdd32):
(JSC::MacroAssembler::branchMul32):
(JSC::MacroAssembler::branchSub32):
(JSC::MacroAssembler::trustedImm32ForShift):
(JSC::MacroAssembler::lshift32):
(JSC::MacroAssembler::rshift32):
(JSC::MacroAssembler::urshift32):

  • assembler/MacroAssemblerARMv7.h:

(MacroAssemblerARMv7):
(JSC::MacroAssemblerARMv7::scratchRegisterForBlinding):
(JSC::MacroAssemblerARMv7::shouldBlindForSpecificArch):

  • assembler/MacroAssemblerX86_64.h:

(JSC::MacroAssemblerX86_64::branchSubPtr):
(MacroAssemblerX86_64):
(JSC::MacroAssemblerX86_64::scratchRegisterForBlinding):

  • dfg/DFGJITCompiler.cpp:

(JSC::DFG::JITCompiler::linkOSRExits):
(JSC::DFG::JITCompiler::compileBody):
(JSC::DFG::JITCompiler::compileFunction):

  • dfg/DFGOSRExitCompiler32_64.cpp:

(JSC::DFG::OSRExitCompiler::compileExit):

  • dfg/DFGOSRExitCompiler64.cpp:

(JSC::DFG::OSRExitCompiler::compileExit):

  • dfg/DFGSpeculativeJIT.cpp:

(JSC::DFG::SpeculativeJIT::compile):
(JSC::DFG::SpeculativeJIT::compileArithSub):
(JSC::DFG::SpeculativeJIT::compileStrictEqForConstant):

  • dfg/DFGSpeculativeJIT.h:

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

  • dfg/DFGSpeculativeJIT32_64.cpp:

(JSC::DFG::SpeculativeJIT::emitCall):
(JSC::DFG::SpeculativeJIT::compileObjectEquality):
(JSC::DFG::SpeculativeJIT::compileDoubleCompare):
(JSC::DFG::SpeculativeJIT::compile):

  • dfg/DFGSpeculativeJIT64.cpp:

(JSC::DFG::SpeculativeJIT::emitCall):
(JSC::DFG::SpeculativeJIT::compileDoubleCompare):
(JSC::DFG::SpeculativeJIT::compile):

  • jit/JIT.cpp:

(JSC::JIT::privateCompileSlowCases):
(JSC::JIT::privateCompile):

  • jit/JITArithmetic.cpp:

(JSC::JIT::compileBinaryArithOp):
(JSC::JIT::emit_op_add):
(JSC::JIT::emit_op_mul):
(JSC::JIT::emit_op_div):

  • jit/JITArithmetic32_64.cpp:

(JSC::JIT::emitAdd32Constant):
(JSC::JIT::emitSub32Constant):
(JSC::JIT::emitBinaryDoubleOp):
(JSC::JIT::emitSlow_op_mul):
(JSC::JIT::emit_op_div):

  • jit/JITCall.cpp:

(JSC::JIT::compileLoadVarargs):

  • jit/JITCall32_64.cpp:

(JSC::JIT::compileLoadVarargs):

  • jit/JITInlineMethods.h:

(JSC::JIT::updateTopCallFrame):
(JSC::JIT::emitValueProfilingSite):

  • jit/JITOpcodes32_64.cpp:

(JSC::JIT::emitSlow_op_jfalse):
(JSC::JIT::emitSlow_op_jtrue):

  • jit/JITStubCall.h:

(JITStubCall):
(JSC::JITStubCall::addArgument):

  • yarr/YarrJIT.cpp:

(JSC::Yarr::YarrGenerator::backtrack):

6:30 PM Changeset in webkit [109833] by abarth@webkit.org
  • 13 edits
    3 copies in trunk/Source/WebCore

WorkerContext shouldn't need to know about SQLDatabase
https://bugs.webkit.org/show_bug.cgi?id=80352

Reviewed by Eric Seidel.

This patch removes the SQLDatabase functions from WorkerContext in
preparation for moving the SQLDatabase code into a module. These
functions don't interact with the rest of WorkerContext.

  • CMakeLists.txt:
  • DerivedSources.make:
  • DerivedSources.pri:
  • GNUmakefile.list.am:
  • Target.pri:
  • WebCore.gypi:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.xcodeproj/project.pbxproj:
  • storage/DOMWindowSQLDatabase.cpp:
  • storage/WorkerContextSQLDatabase.cpp: Added.

(WebCore):
(WebCore::WorkerContextSQLDatabase::openDatabase):
(WebCore::WorkerContextSQLDatabase::openDatabaseSync):

  • storage/WorkerContextSQLDatabase.h: Added.

(WebCore):
(WorkerContextSQLDatabase):
(WebCore::WorkerContextSQLDatabase::WorkerContextSQLDatabase):
(WebCore::WorkerContextSQLDatabase::~WorkerContextSQLDatabase):

  • storage/WorkerContextSQLDatabase.idl: Added.
  • workers/WorkerContext.cpp:

(WebCore):

  • workers/WorkerContext.h:

(WebCore):
(WorkerContext):

  • workers/WorkerContext.idl:
6:11 PM Changeset in webkit [109832] by bashi@chromium.org
  • 9 edits in trunk/Source/WebCore

[WebSocket] Introduce ThreadableWebSocketChannel::SendResult
https://bugs.webkit.org/show_bug.cgi?id=80356

Reviewed by Kent Tamura.

Introduced ThreadableWebSocketChannel::SendResult type so that
WebSocketChannel can pass the validation result.

No new test. No changes in behavior.

  • Modules/websockets/ThreadableWebSocketChannel.h: Added SendResult.
  • Modules/websockets/ThreadableWebSocketChannelClientWrapper.cpp:

(WebCore::ThreadableWebSocketChannelClientWrapper::ThreadableWebSocketChannelClientWrapper):
(WebCore::ThreadableWebSocketChannelClientWrapper::sendRequestResult): Use ThreadableWebSocketChannel::SendResult instead of bool.
(WebCore::ThreadableWebSocketChannelClientWrapper::setSendRequestResult): Ditto.

  • Modules/websockets/ThreadableWebSocketChannelClientWrapper.h:

(ThreadableWebSocketChannelClientWrapper):

  • Modules/websockets/WebSocketChannel.cpp:

(WebCore::WebSocketChannel::send): Use ThreadableWebSocketChannel::SendResult instead of bool. Pass Cstring to enqueTextFrame instead of String.
(WebCore::WebSocketChannel::enqueueTextFrame): Ditto.
(WebCore::WebSocketChannel::processOutgoingFrameQueue): Ditto.

  • Modules/websockets/WebSocketChannel.h:

(WebSocketChannel):
(QueuedFrame): Changed the type of stringData from String to CString.

  • Modules/websockets/WorkerThreadableWebSocketChannel.cpp:

(WebCore::WorkerThreadableWebSocketChannel::send): Use ThreadableWebSocketChannel::SendResult instead of bool.
(WebCore::workerContextDidSend): Ditto.
(WebCore::WorkerThreadableWebSocketChannel::Peer::send): Ditto.
(WebCore::WorkerThreadableWebSocketChannel::Bridge::send): Ditto.

  • Modules/websockets/WorkerThreadableWebSocketChannel.h:

(WorkerThreadableWebSocketChannel): ditto.
(Bridge): Ditto.

6:04 PM Changeset in webkit [109831] by dpranke@chromium.org
  • 3 edits in trunk/Tools

There should be a way to disable optimizer in webkit-patch rebaseline-expectations
https://bugs.webkit.org/show_bug.cgi?id=69590

Reviewed by Ryosuke Niwa.

Adds a --no-optimize flag to webkit-patch rebaseline-expectations
to skip the 'optimize-expectations' step.

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

(RebaselineExpectations.init):
(RebaselineExpectations.execute):

  • Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
5:56 PM Changeset in webkit [109830] by tony@chromium.org
  • 1 edit
    2 adds in trunk/LayoutTests

add tests for multiline flexbox and flex-pack
https://bugs.webkit.org/show_bug.cgi?id=80342

Reviewed by Ojan Vafai.

  • css3/flexbox/multiline-pack-expected.txt: Added.
  • css3/flexbox/multiline-pack.html: Added.
5:51 PM Changeset in webkit [109829] by haraken@chromium.org
  • 2 edits in trunk/Source/WebCore

[JSC] Cache the CSSPropertyID in JSCSSStyleDeclaration
https://bugs.webkit.org/show_bug.cgi?id=80250

Reviewed by Benjamin Poulain.

V8CSSStyleDeclaration caches the calculated CSSPropertyID.
Similarly, we can implement the cache in JSCSSStyleDeclaration.

In my local Mac environment, this optimization improves the performance
of CSS property getters by 35%, and the performance of CSS property setters
by 8%.

CSS property getter: for (var i = 0; i < 1000000; i++) span.style.fontWeight;
CSS property setter: for (var i = 0; i < 1000000; i++) span.style.fontWeight = "bold";

Tests: fast/dom/CSSStyleDeclaration/* (No change in test results)

  • bindings/js/JSCSSStyleDeclarationCustom.cpp:

(CSSPropertyInfo):
(WebCore):
(WebCore::cssPropertyIDForJSCSSPropertyName):
(WebCore::JSCSSStyleDeclaration::nameGetter):
(WebCore::JSCSSStyleDeclaration::putDelegate):

5:41 PM Changeset in webkit [109828] by dgrogan@chromium.org
  • 4 edits
    2 adds in trunk/LayoutTests

Basic IndexedDB shared worker test
https://bugs.webkit.org/show_bug.cgi?id=80189

Reviewed by Tony Chang.

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

(startWorker.worker.port.onmessage):

  • platform/chromium/test_expectations.txt:
  • storage/indexeddb/basics-shared-workers-expected.txt: Added.
  • storage/indexeddb/basics-shared-workers.html: Added.
  • storage/indexeddb/resources/shared.js:

(.self.postMessage):
(.self.onconnect.self.postMessage):
(.self.onconnect):
(done):
(unexpectedErrorCallback):

5:38 PM Changeset in webkit [109827] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebKit/chromium

[Chromium] WebOptionElement should inherit WebElement instead of WebFormControlElement
https://bugs.webkit.org/show_bug.cgi?id=80089

Change class hierarchy of WebOptionElement to match with specification.

Patch by Yoshifumi Inoue <yosin@chromium.org> on 2012-03-05
Reviewed by Darin Fisher.

  • public/WebOptionElement.h: Replace to WebElement from WebFormControlElement

(WebKit::WebOptionElement::WebOptionElement):
(WebKit::WebOptionElement::operator=):
(WebKit::WebOptionElement::assign):

  • src/WebOptionElement.cpp:

(WebKit::WebOptionElement::WebOptionElement):

5:35 PM Changeset in webkit [109826] by enrica@apple.com
  • 2 edits in trunk/Source/WebKit2

Can't type on some websites (plug-ins steal key events).
<rdar://problem/10892291>

When the plugin is disabled, it is necessary to reset _pluginComplexTextInputIdentifier
in order to return the correct input context. Failure to do so results in the inputContext
method to return the plugin input context instead of the context of the browser view.

Reviewed by Sam Weinig.

  • UIProcess/API/mac/WKView.mm:

(-[WKView _setPluginComplexTextInputState:]):
(-[WKView _handlePluginComplexTextInputKeyDown:]):

5:33 PM Changeset in webkit [109825] by jsbell@chromium.org
  • 6 edits
    1 add in trunk/Source

IndexedDB: Handle LevelDB database corruption
https://bugs.webkit.org/show_bug.cgi?id=79413

Source/WebCore:

Add LevelDBDatabase::destroy() method so that clients can retry if open() fails.

Reviewed by Tony Chang.

Test: webkit_unit_tests --gtest_filter='LevelDBDatabaseTest.CorruptionTest'

  • Modules/indexeddb/IDBLevelDBBackingStore.cpp: Implement open/destroy/open strategy.

(WebCore::IDBLevelDBBackingStore::open):

  • platform/leveldb/LevelDBDatabase.cpp:

(WebCore::LevelDBDatabase::destroy):
(WebCore):

  • platform/leveldb/LevelDBDatabase.h:

(LevelDBDatabase):

Source/WebKit/chromium:

Reviewed by Tony Chang.

  • WebKit.gypi:
  • tests/LevelDBTest.cpp: Added.

(WebCore):
(SimpleComparator):
(WebCore::SimpleComparator::compare):
(WebCore::SimpleComparator::name):
(WebCore::encodeString):
(WebCore::TEST):

5:18 PM Changeset in webkit [109824] by barraclough@apple.com
  • 11 edits in trunk

putByIndex should throw in strict mode
https://bugs.webkit.org/show_bug.cgi?id=80335

Reviewed by Filip Pizlo.

Source/JavaScriptCore:

We'll need to pass an additional parameter.

Part 1 - rename JSValue::put() for integer indices to JSValue::putByIndex()
to match the method in the MethodTable, make this take a parameter indicating
whether the put should throw. This fixes the cases where the base of the put
is a primitive.

  • dfg/DFGOperations.cpp:

(DFG):
(JSC::DFG::putByVal):
(JSC::DFG::operationPutByValInternal):

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::execute):
(JSC::Interpreter::privateExecute):

  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION):

  • llint/LLIntSlowPaths.cpp:

(JSC::LLInt::LLINT_SLOW_PATH_DECL):

  • runtime/JSObject.h:

(JSC::JSValue::putByIndex):

  • runtime/JSValue.cpp:

(JSC):

  • runtime/JSValue.h:

(JSValue):

LayoutTests:

  • fast/js/primitive-property-access-edge-cases-expected.txt:
  • fast/js/script-tests/primitive-property-access-edge-cases.js:

(checkNumericGet.Object.defineProperty):
(checkNumericSet.Object.defineProperty):
(checkNumericGetStrict.Object.defineProperty):
(checkNumericSetStrict.Object.defineProperty):
(checkNumericRead):
(checkNumericWrite):
(checkNumericReadStrict):
(checkNumericWriteStrict):

  • Added test cases.
5:18 PM Changeset in webkit [109823] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/chromium

Enable context menu on android

For android, long press is converted into a right mouse down event
So we will use that to invoke the context menu
https://bugs.webkit.org/show_bug.cgi?id=80332

Patch by Min Qin <qinmin@google.com> on 2012-03-05
Reviewed by Adam Barth.

  • src/WebViewImpl.cpp:

(WebKit::WebViewImpl::mouseDown):

5:03 PM Changeset in webkit [109822] by leviw@chromium.org
  • 4 edits in branches/subpixellayout/Source/WebCore

Fixing an improper overloaded method in RenderThemeMac, cleaning up RenderBlock.cpp, and adding a size_t flavor of operator* in FractionalLayoutUnit for RenderBlock.

5:01 PM Changeset in webkit [109821] by rniwa@webkit.org
  • 4 edits in trunk

Perf-o-matic should memcache dashboard images
https://bugs.webkit.org/show_bug.cgi?id=80349

Reviewed by Eric Seidel.

Added DashboardImage.create and DashboardImage.get_image to encapsulate memcache.
Also replaced transaction in DashboardImage.set_cache by a single put since it duplicates
what put does by default.

Also removed redundant cache_* functions and merged them into handler code.

  • Websites/webkit-perf.appspot.com/controller.py:

(ManifestUpdateHandler.post):
(CachedManifestHandler.get):
(DashboardUpdateHandler.post):
(CachedDashboardHandler.get):
(RunsUpdateHandler):
(RunsUpdateHandler.post):
(RunsChartHandler):
(RunsChartHandler.post):
(DashboardImageHandler.get):

  • Websites/webkit-perf.appspot.com/models.py:

(PersistentCache.set_cache):
(DashboardImage):
(DashboardImage.create):
(DashboardImage.get_image):

  • Websites/webkit-perf.appspot.com/models_unittest.py:

(PersistentCacheTests.setUp):
(PersistentCacheTests.test_set_cache):
(PersistentCacheTests.test_get_cache):
(DashboardImageTests.setUp):
(DashboardImageTests):
(DashboardImageTests.test_create):
(DashboardImageTests.test_get):

5:00 PM Changeset in webkit [109820] by schenney@chromium.org
  • 7 edits
    2 adds in trunk

[Chromium] SVG Composite of Offset crashes
https://bugs.webkit.org/show_bug.cgi?id=77245

Reviewed by Stephen White.

The feComposite arithmetic mode filter could readily be made to
generate invalid pre-multiplied pixel values which would then go on to
pollute other filters and cause invalid final output pixels. This
patch checks for filters that require valid inputs, and checks that a
result is valid, and corrects the result if necessary. This matches
the behavior of FF and Opera while preventing crashes or other
undesirable behavior.

Source/WebCore:

Test: svg/filters/feComposite-arithmetic-invalid-rgba.svg

  • platform/graphics/filters/FEComposite.h: Override the default validity checks and image cleanup methods.
  • platform/graphics/filters/FEComposite.cpp:

(WebCore::FEComposite::correctFilterResultIfNeeded): Force valid pixels if this is an arithmetic filter

  • platform/graphics/filters/FilterEffect.cpp:

(WebCore::FilterEffect::apply): Check for validity status and correct
(WebCore::FilterEffect::forceValidPremultipliedPixels): Make an image valid
(WebCore):

  • platform/graphics/filters/FilterEffect.h: New virtual methods for image validity.

(FilterEffect):
(WebCore::FilterEffect::requiresValidPreMulultipliedPixels):
(WebCore::FilterEffect::forceValidPremultipliedPixels):
(WebCore::FilterEffect::correctFilterResultIfNeeded):

  • rendering/svg/RenderSVGResourceFilter.cpp:

(WebCore::RenderSVGResourceFilter::postApplyResource): Check that the final filter result is valid

LayoutTests:

  • svg/filters/feComposite-arithmetic-invalid-rgba-expected.svg: Added.
  • svg/filters/feComposite-arithmetic-invalid-rgba.svg: Added.
4:54 PM Changeset in webkit [109819] by timothy@apple.com
  • 2 edits in trunk/Source/WebKit2/UIProcess

Fix 32-bit builds.

4:51 PM Changeset in webkit [109818] by alexis.menard@openbossa.org
  • 10 edits
    2 adds in trunk

getComputedStyle gives incorrect information for 'height' property
https://bugs.webkit.org/show_bug.cgi?id=33593

Reviewed by David Hyatt.

Source/WebCore:

Make sure that the contentBoxRect doesn't take into account the
intrinsic padding when querying it. As stated by http://www.w3.org/TR/css3-box/#the-lsquo0
the height is the content area which doesn't include the intrinsic padding, the border, and
the padding.

Test: fast/css/getComputedStyle/getComputedStyle-height.html

  • css/CSSComputedStyleDeclaration.cpp:

(WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue):

  • editing/DeleteSelectionCommand.cpp:

(WebCore::DeleteSelectionCommand::removeNode):

  • rendering/RenderBox.h:

(WebCore::RenderBox::contentBoxRect):
(WebCore::RenderBox::contentWidth):
(WebCore::RenderBox::contentHeight):
(WebCore::RenderBox::contentLogicalWidth):
(WebCore::RenderBox::contentLogicalHeight):

  • rendering/RenderBoxModelObject.cpp:

(WebCore::RenderBoxModelObject::paddingTop):
(WebCore::RenderBoxModelObject::paddingBottom):
(WebCore::RenderBoxModelObject::paddingLeft):
(WebCore::RenderBoxModelObject::paddingRight):
(WebCore::RenderBoxModelObject::paddingBefore):
(WebCore::RenderBoxModelObject::paddingAfter):
(WebCore::RenderBoxModelObject::paddingStart):
(WebCore::RenderBoxModelObject::paddingEnd):

  • rendering/RenderBoxModelObject.h:

(RenderBoxModelObject):

  • rendering/RenderTableCell.cpp:

(WebCore::RenderTableCell::paddingTop):
(WebCore::RenderTableCell::paddingBottom):
(WebCore::RenderTableCell::paddingLeft):
(WebCore::RenderTableCell::paddingRight):
(WebCore::RenderTableCell::paddingBefore):
(WebCore::RenderTableCell::paddingAfter):
(WebCore::RenderTableCell::cellBaselinePosition):

  • rendering/RenderTableCell.h:

(RenderTableCell):

  • rendering/RenderTableSection.cpp:

(WebCore::RenderTableSection::firstLineBoxBaseline):

LayoutTests:

Make sure that the contentBoxRect doesn't take into account the
intrinsic padding.

  • fast/css/getComputedStyle/getComputedStyle-height-expected.txt: Added.
  • fast/css/getComputedStyle/getComputedStyle-height.html: Added.
4:47 PM Changeset in webkit [109817] by morrita@google.com
  • 4 edits in trunk/Source/WebCore

https://bugs.webkit.org/show_bug.cgi?id=80257
Lifecycle of InternalSettings should be simplified.

Reviewed by Ryosuke Niwa.

  • Moved settings update code to separate restoreTo() method.
  • Eliminated flags which indidate the changed field. Now these modifiable parameters are backed up at the initialization.

No new tests. Refactoring.

  • testing/InternalSettings.cpp:

(WebCore::InternalSettings::create):
(WebCore::InternalSettings::InternalSettings):
(WebCore):
(WebCore::InternalSettings::restoreTo):

  • testing/InternalSettings.h:

(InternalSettings):

  • testing/Internals.cpp:

(WebCore::Internals::reset):

4:45 PM Changeset in webkit [109816] by tkent@chromium.org
  • 5 edits
    2 copies in trunk

[Chromium] Add new popup type: PagePopup
https://bugs.webkit.org/show_bug.cgi?id=80106

Reviewed by Darin Fisher.

Source/WebKit/chromium:

This is a preparation of implementing ChromeClient::openPagePopup and
closePagePopup.

  • WebKit.gyp: Add WebPagePopup.h and WebPagePopupImpl.cpp.
  • public/WebPagePopup.h:

(WebPagePopup): Add WebPagePopup interface.

  • public/WebPopupType.h: Add WebPopupTypePage.
  • src/WebPagePopupImpl.cpp:

(WebKit::WebPagePopup::create): Temprary implementation which just returns 0.

Tools:

  • DumpRenderTree/chromium/WebViewHost.cpp:

(WebViewHost::createPopupMenu):

4:41 PM Changeset in webkit [109815] by jberlin@webkit.org
  • 2 edits in trunk/Tools

Add myself as a reviewer.

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

Also, add my IRC nick so it is easier to find and yell at me.

4:31 PM Changeset in webkit [109814] by efidler@rim.com
  • 2 edits in trunk/Source/WebKit/blackberry

The minimum font size WebSetting should actually change the LOGICAL font size in WebCore.
https://bugs.webkit.org/show_bug.cgi?id=80312
RIM PR: 139874

Reviewed by George Staikos.

  • Api/WebPage.cpp:

(BlackBerry::WebKit::WebPagePrivate::didChangeSettings):

4:20 PM Changeset in webkit [109813] by commit-queue@webkit.org
  • 2 edits in trunk/Websites/bugs.webkit.org

The Bugzilla autocompleter doesn't support multiple Unicode characters per name
https://bugs.webkit.org/show_bug.cgi?id=80319

Patch by Alexander Færøy <alexander.faeroy@nokia.com> on 2012-03-05
Reviewed by Adam Barth.

The current regular expression for matching Unicode characters uses
the global modifier, which means that it will never enter its second
iteration of the match-loop. This patch fixes this by removing the
global modifier from the regex.

  • committers-autocomplete.js:

(WebKitCommitters):

4:13 PM Changeset in webkit [109812] by andersca@apple.com
  • 7 edits in trunk/Source

Be more aggressive about repainting page overlays
https://bugs.webkit.org/show_bug.cgi?id=80336
<rdar://problem/10965943>

Reviewed by Simon Fraser.

Source/WebCore:

Add a way to find out if a given GraphicsLayer is going to be repainted.

  • WebCore.exp.in:
  • platform/graphics/GraphicsLayer.h:

(WebCore::GraphicsLayer::needsDisplay):
(GraphicsLayer):

  • platform/graphics/ca/GraphicsLayerCA.h:

Source/WebKit2:

Whenever we're flushing layers and we have a page overlay, check if the main frame
has scrolled or if the main frame root content layer needs to be repainted and force the
overlay layer to be repainted if either of those conditions are true.

  • WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.h:

(TiledCoreAnimationDrawingArea):

  • WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm:

(WebKit::TiledCoreAnimationDrawingArea::flushLayers):
(WebKit::TiledCoreAnimationDrawingArea::shouldRepaintPageOverlayLayer):
(WebKit):

4:13 PM Changeset in webkit [109811] by commit-queue@webkit.org
  • 5 edits in trunk

Tools: Correctly compute the positions of GestureScroll* events on
Chromium.
https://bugs.webkit.org/show_bug.cgi?id=80075

Patch by Robert Kroeger <rjkroege@chromium.org> on 2012-03-05
Reviewed by Adam Barth.

  • DumpRenderTree/chromium/EventSender.cpp:

(EventSender::reset):
(EventSender::gestureEvent):

  • DumpRenderTree/chromium/EventSender.h:

(EventSender):

LayoutTests: Correct a test to work the same on Gtk and non-Gtk chromium in
the presence of correctly synthesized GestureScroll* events.
https://bugs.webkit.org/show_bug.cgi?id=80075

Patch by Robert Kroeger <rjkroege@chromium.org> on 2012-03-05
Reviewed by Adam Barth.

  • fast/events/touch/gesture/gesture-scroll.html:
4:11 PM Changeset in webkit [109810] by dpranke@chromium.org
  • 3 edits in trunk/Tools

flakiness dashboard doesn't display baselines for virtual tests correctly
https://bugs.webkit.org/show_bug.cgi?id=80341

Reviewed by Ojan Vafai.

If the test is part of a virtual test suite, we need to look for
baselines in the underlying fallback path for the actual test
being run, as well as baselines for the virtual version.

This patch adds code to handle both branches and also pulls the
mapping of the test suites up into a constant.

  • TestResultServer/static-dashboards/flakiness_dashboard.html:
  • TestResultServer/static-dashboards/flakiness_dashboard_tests.js:

(testLookupVirtualTestSuite):
(testBaseTest):

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

[BlackBerry] Upstream LayerRendererSurface.{cpp, h}
https://bugs.webkit.org/show_bug.cgi?id=80122

Patch by Robin Cao <robin.cao@torchmobile.com.cn> on 2012-03-05
Reviewed by Rob Buis.

Initial upstream, no new tests.

  • PlatformBlackBerry.cmake:
  • platform/graphics/blackberry/LayerRendererSurface.cpp: Added.

(WebCore):
(WebCore::LayerRendererSurface::LayerRendererSurface):
(WebCore::LayerRendererSurface::~LayerRendererSurface):
(WebCore::LayerRendererSurface::setContentRect):
(WebCore::LayerRendererSurface::drawRect):
(WebCore::LayerRendererSurface::ensureTexture):
(WebCore::LayerRendererSurface::releaseTexture):

  • platform/graphics/blackberry/LayerRendererSurface.h: Added.

(WebCore):
(LayerRendererSurface):
(WebCore::LayerRendererSurface::size):
(WebCore::LayerRendererSurface::contentRect):
(WebCore::LayerRendererSurface::clipRect):
(WebCore::LayerRendererSurface::setClipRect):
(WebCore::LayerRendererSurface::setDrawTransform):
(WebCore::LayerRendererSurface::drawTransform):
(WebCore::LayerRendererSurface::setReplicaDrawTransform):
(WebCore::LayerRendererSurface::replicaDrawTransform):
(WebCore::LayerRendererSurface::texture):
(WebCore::LayerRendererSurface::drawOpacity):
(WebCore::LayerRendererSurface::setDrawOpacity):

3:45 PM Changeset in webkit [109808] by weinig@apple.com
  • 5 edits in trunk/WebKitLibraries

Fix the SnowLeoaprd build.

  • WebKitSystemInterface.h:
  • libWebKitSystemInterfaceLeopard.a:
  • libWebKitSystemInterfaceLion.a:
  • libWebKitSystemInterfaceSnowLeopard.a:
3:31 PM Changeset in webkit [109807] by mihnea@adobe.com
  • 5 edits
    2 adds in trunk

[CSSRegions][CSSOM]Prevent creation of NamedFlow object for invalid flow name
https://bugs.webkit.org/show_bug.cgi?id=79685

Reviewed by David Hyatt.

Asking for a named flow with an invalid flow name should return a null object.

Source/WebCore:

Test: fast/regions/webkit-named-flow-invalid-name.html

  • css/CSSParser.cpp:

(WebCore::CSSParser::parseFlowThread):
(WebCore):

  • css/CSSParser.h:
  • dom/Document.cpp:

(WebCore::validFlowName):
(WebCore):
(WebCore::Document::webkitGetFlowByName):

LayoutTests:

  • fast/regions/webkit-named-flow-invalid-name-expected.txt: Added.
  • fast/regions/webkit-named-flow-invalid-name.html: Added.
3:09 PM Changeset in webkit [109806] by rniwa@webkit.org
  • 14 edits
    4 adds in trunk

unicode-bidi should support isolate override and override isolate
https://bugs.webkit.org/show_bug.cgi?id=73164

Reviewed by Eric Seidel.

Source/WebCore:

Updated CSS parser and CSS style selector to support the union of bidi-override and isolate in
unicode-bidi property. Added OverrideIsolate to EUnicodeBidi instead of turning Override and Isolate
into bit flags to avoid increasing the number of bits required to store the unicodeBidi flag.

Also fixed a bug in RenderBlock::constructTextRun to actually check whether an isolated run's direction
is overridden or not when constructing one.

Tests: fast/css/unicode-bidi-computed-value.html

fast/text/bidi-override-isolate.html

  • css/CSSComputedStyleDeclaration.cpp:

(WebCore::renderUnicodeBidiFlagsToCSSValue): Added; Create a CSSValueList when unicode-bidi has both
isolate and bidi-override specified.
(WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue): Calls renderUnicodeBidiFlagsToCSSValue.

  • css/CSSParser.cpp:

(WebCore::CSSParser::parseValue): Support parsing combinations of -webkit-isolate and bidi-override;
Create a CSSValueList in such cases.

  • css/CSSPrimitiveValueMappings.h:

(WebCore):

  • css/CSSStyleApplyProperty.cpp:

(ApplyPropertyUnicodeBidi):
(WebCore::ApplyPropertyUnicodeBidi::applyValue): Support combinations of -webkit-isolate and
bidi-override. Set the unicodeBidi flag to OverrideIsolate in such cases.
(WebCore::ApplyPropertyUnicodeBidi::createHandler):
(WebCore):
(WebCore::CSSStyleApplyProperty::CSSStyleApplyProperty):

  • html/canvas/CanvasRenderingContext2D.cpp:

(WebCore::CanvasRenderingContext2D::drawTextInternal):

  • platform/text/UnicodeBidi.h: Added OverrideIsolate. We don't use bit flags to avoid increasing the

number of bits required to store flags especially because isolate and bidi-override are only values
that can be combined.
(WebCore::isIsolated):
(WebCore):
(WebCore::isOverride):

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::constructTextRun):

  • rendering/RenderBlockLineLayout.cpp:

(WebCore::statusWithDirection): Takes isOverride; we used to assume it's always false.
(WebCore::constructBidiRuns): Instantiate isolatedResolver with a proper value of isOverride.
(WebCore::RenderBlock::layoutRunsAndFloatsInRange):
(WebCore::RenderBlock::determineStartPosition):

  • rendering/RenderListBox.cpp:

(WebCore::RenderListBox::paintItemForeground):

  • rendering/RenderMenuList.cpp:

(WebCore::RenderMenuList::itemStyle):
(WebCore::RenderMenuList::menuStyle):

  • rendering/RenderTextControlSingleLine.cpp:

(WebCore::RenderTextControlSingleLine::menuStyle):

  • rendering/svg/SVGTextMetrics.cpp:

(WebCore::SVGTextMetrics::constructTextRun):

LayoutTests:

Added a test for retrieving computed value of unicode-bidi property
and also added a test to render "unicode-bidi: -webkit-isolate bidi-override".

  • fast/css/unicode-bidi-computed-value-expected.txt: Added.
  • fast/css/unicode-bidi-computed-value.html: Added.
  • fast/text/bidi-override-isolate-expected.html: Added.
  • fast/text/bidi-override-isolate.html: Added.
2:58 PM Changeset in webkit [109805] by eae@chromium.org
  • 13 edits in trunk/Source/WebCore

Replace uses of x(), y() and width(), height() pairs with locationOffset and size()
https://bugs.webkit.org/show_bug.cgi?id=80196

Reviewed by Julien Chaffraix.

Replace IntSize(x(), y()) with locationOffset()
Replace IntSize(width(), height()) with size()
Replace IntRect(0, 0, width(), height()) with IntRect(IntPoint(), size())
Replace IntRect::move(x(), y()) with IntRect::move(locationOffset())

No new tests.

  • html/HTMLCanvasElement.cpp:

(WebCore::HTMLCanvasElement::createImageBuffer):
(WebCore::HTMLCanvasElement::baseTransform):

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::simplifiedLayout):

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::mapLocalToContainer):
(WebCore::RenderBox::computeRectForRepaint):

  • rendering/RenderBox.h:

(WebCore::RenderBox::borderBoxRect):

  • rendering/RenderDeprecatedFlexibleBox.cpp:

(WebCore::RenderDeprecatedFlexibleBox::layoutBlock):

  • rendering/RenderFlexibleBox.cpp:

(WebCore::RenderFlexibleBox::layoutBlock):

  • rendering/RenderListMarker.cpp:

(WebCore::RenderListMarker::localSelectionRect):

  • rendering/RenderReplaced.cpp:

(WebCore::RenderReplaced::localSelectionRect):

  • rendering/RenderScrollbar.cpp:

(WebCore::RenderScrollbar::updateScrollbarParts):
(WebCore::RenderScrollbar::buttonRect):

  • rendering/RenderTableSection.cpp:

(WebCore::RenderTableSection::setCellLogicalWidths):
(WebCore::RenderTableSection::layoutRows):

  • rendering/RenderView.cpp:

(WebCore::RenderView::viewRect):

  • rendering/svg/RenderSVGRoot.cpp:

(WebCore::RenderSVGRoot::layout):

2:53 PM Changeset in webkit [109804] by weinig@apple.com
  • 35 edits
    2 moves in trunk/Source

Add support for hosting layers in the window server in WebKit2
<rdar://problem/10400246>
https://bugs.webkit.org/show_bug.cgi?id=80310

Reviewed by Anders Carlsson.

Source/JavaScriptCore:

  • wtf/Platform.h:

Add HAVE_LAYER_HOSTING_IN_WINDOW_SERVER.

Source/WebKit2:

This currently only works if you are using TiledCoreAnimation drawing model.

  • Platform/mac/LayerHostingContext.h: Renamed from Source/WebKit2/Platform/mac/RemoteLayerClient.h.
  • Platform/mac/LayerHostingContext.mm: Renamed from Source/WebKit2/Platform/mac/RemoteLayerClient.mm.

(WebKit::LayerHostingContext::createForPort):
(WebKit::LayerHostingContext::LayerHostingContext):
(WebKit::LayerHostingContext::createForWindowServer):
(WebKit::LayerHostingContext::~LayerHostingContext):
(WebKit::LayerHostingContext::setRootLayer):
(WebKit::LayerHostingContext::rootLayer):
(WebKit::LayerHostingContext::contextID):
(WebKit::LayerHostingContext::invalidate):
Renamed RemoteLayerClient to LayerHostingContext and add ability to use the window server
as the remote context.

  • PluginProcess/PluginControllerProxy.cpp:
  • PluginProcess/PluginControllerProxy.h:
  • PluginProcess/mac/PluginControllerProxyMac.mm:

Update for new names.

  • Shared/LayerTreeContext.h:

Add LayerHostingMode enum.

  • UIProcess/PageClient.h:
  • UIProcess/API/mac/PageClientImpl.h:
  • UIProcess/API/mac/PageClientImpl.mm:

(WebKit::PageClientImpl::layerHostingMode):
(WebKit::PageClientImpl::updateAcceleratedCompositingMode):
Add PageClient access points to get the current layer hosting mode,
and a hook to tell the underlying view that the layer hosting context
has changed.

  • UIProcess/API/mac/WKViewInternal.h:
  • UIProcess/API/mac/WKView.mm:

(-[WKView _updateAcceleratedCompositingMode:WebKit::]):
Implement responding to a new layer hosting context as a simple
exit and re-entrance of compositing.

  • UIProcess/DrawingAreaProxy.h:

(WebKit::DrawingAreaProxy::layerHostingModeDidChange):
(WebKit::DrawingAreaProxy::updateAcceleratedCompositingMode):

  • UIProcess/DrawingAreaProxy.messages.in:
  • UIProcess/mac/TiledCoreAnimationDrawingAreaProxy.h:

(TiledCoreAnimationDrawingAreaProxy):

  • UIProcess/mac/TiledCoreAnimationDrawingAreaProxy.mm:

(WebKit::TiledCoreAnimationDrawingAreaProxy::layerHostingModeDidChange):
(WebKit::TiledCoreAnimationDrawingAreaProxy::updateAcceleratedCompositingMode):
Pipe layer hosting changes around.

  • UIProcess/WebPageProxy.h:

(WebKit::WebPageProxy::layerHostingMode):

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::WebPageProxy):
(WebKit::WebPageProxy::viewStateDidChange):
Cache the current layer hosting mode so we don't overzealously
tell the WebProcess to reset its context. Re-check layer hosting
mode each time we are added/removed from a window.

  • WebProcess/FullScreen/mac/WebFullScreenManagerMac.h:
  • WebProcess/FullScreen/mac/WebFullScreenManagerMac.mm:

Update for new names.

  • WebProcess/WebPage/DrawingArea.h:

(WebKit::DrawingArea::setDeviceScaleFactor):
(WebKit::DrawingArea::setLayerHostingMode):

  • WebProcess/WebPage/DrawingArea.messages.in:

Pipe layer hosting changes around.

  • WebProcess/WebPage/ca/mac/LayerTreeHostCAMac.h:
  • WebProcess/WebPage/ca/mac/LayerTreeHostCAMac.mm:

(WebKit::LayerTreeHostCAMac::~LayerTreeHostCAMac):
(WebKit::LayerTreeHostCAMac::platformInitialize):
(WebKit::LayerTreeHostCAMac::invalidate):
Update for new names.

  • WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.h:
  • WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm:

(WebKit::TiledCoreAnimationDrawingArea::TiledCoreAnimationDrawingArea):
(WebKit::TiledCoreAnimationDrawingArea::setLayerHostingMode):
Respond to a change in the layer hosting mode by invalidating our old context,
making a new one of the right type, and informing the UIProcess of our new context.

  • WebKit2.xcodeproj/project.pbxproj:

Add new files.

2:33 PM Changeset in webkit [109803] by rwlbuis@webkit.org
  • 2 edits in trunk/Source/WebCore

[BlackBerry] Add missing method to PasteboardBlackBerry.cpp
https://bugs.webkit.org/show_bug.cgi?id=80326

Reviewed by Antonio Gomes.

Add missing method.

  • platform/blackberry/PasteboardBlackBerry.cpp:

(WebCore::Pasteboard::writeClipboard):
(WebCore):

2:10 PM Changeset in webkit [109802] by fpizlo@apple.com
  • 3 edits in trunk/Source/JavaScriptCore

Unreviewed, attempted build fix for !ENABLE(JIT) after r109705.

  • bytecode/ExecutionCounter.cpp:

(JSC::ExecutionCounter::applyMemoryUsageHeuristics):

  • bytecode/ExecutionCounter.h:
2:01 PM Changeset in webkit [109801] by andersca@apple.com
  • 6 edits in trunk/Source

Always update the scroll layer position on the main thread when we have an overlay
https://bugs.webkit.org/show_bug.cgi?id=80324

Reviewed by Sam Weinig.

Source/WebCore:

Add a way to ensure that scroll layer position updates happen on the main thread.

  • WebCore.exp.in:
  • page/scrolling/ScrollingCoordinator.cpp:

(WebCore::ScrollingCoordinator::ScrollingCoordinator):
(WebCore::ScrollingCoordinator::updateShouldUpdateScrollLayerPositionOnMainThread):
(WebCore):
(WebCore::ScrollingCoordinator::setForceMainThreadScrollLayerPositionUpdates):

  • page/scrolling/ScrollingCoordinator.h:

(ScrollingCoordinator):

Source/WebKit2:

Call setForceMainThreadScrollLayerPositionUpdates when installing and uninstalling page overlays,
so we'll be able to synchronize painting between the tile cache and the page overlays.

  • WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm:

(WebKit::TiledCoreAnimationDrawingArea::didInstallPageOverlay):
(WebKit::TiledCoreAnimationDrawingArea::didUninstallPageOverlay):

1:59 PM Changeset in webkit [109800] by leviw@chromium.org
  • 1 edit in branches/subpixellayout/Source/WebCore/rendering/RenderBlockLineLayout.cpp

Cleaning up RenderBlockLineLayout before attempting to land changes in trunk.

1:59 PM Changeset in webkit [109799] by tony@chromium.org
  • 5 edits
    4 adds in trunk

Implement flex-wrap: wrap
https://bugs.webkit.org/show_bug.cgi?id=79930

Reviewed by David Hyatt.

Source/WebCore:

Tests: css3/flexbox/multiline-align.html

css3/flexbox/multiline.html

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::sizesToIntrinsicLogicalWidth): Don't apply column+stretch optimization to multiline.

  • rendering/RenderFlexibleBox.cpp:

(WebCore::RenderFlexibleBox::FlexOrderIterator::FlexOrderIterator):
(WebCore::RenderFlexibleBox::FlexOrderIterator::currentChild): Expose the current child so we can pause
in the middle of iteration and resume later.
(RenderFlexibleBox::FlexOrderIterator):
(WebCore::RenderFlexibleBox::isMultiline):
(WebCore):
(WebCore::RenderFlexibleBox::layoutFlexItems): Loop per line.
(WebCore::RenderFlexibleBox::availableAlignmentSpaceForChild): Use the line space, not the whole container space.
(WebCore::RenderFlexibleBox::computeFlexOrder): Return true for each line.
(WebCore::RenderFlexibleBox::layoutAndPlaceChildren): Use the line offset. Also compute the line height as we go.
(WebCore::RenderFlexibleBox::layoutColumnReverse): Use the line offset.
(WebCore::RenderFlexibleBox::alignChildren): Align based on the line height. For multiline + column, we have to relayout
since the width may change (same as the row case above). We'll have to do something smarter when we implement flex-line-pack.

  • rendering/RenderFlexibleBox.h:

(RenderFlexibleBox):

LayoutTests:

  • css3/flexbox/multiline-align-expected.txt: Added.
  • css3/flexbox/multiline-align.html: Added.
  • css3/flexbox/multiline-expected.txt: Added.
  • css3/flexbox/multiline.html: Added.
1:52 PM Changeset in webkit [109798] by commit-queue@webkit.org
  • 16 edits
    3 copies in trunk/Source/WebCore

Implement WebGL extension EXT_texture_filter_anisotropic
https://bugs.webkit.org/show_bug.cgi?id=79541

This exports the EXT_texture_filter_anisotropic extension with the WEBKIT_ prefix as defined at
https://cvs.khronos.org/svn/repos/registry/trunk/public/webgl/extensions/proposals/EXT_texture_filter_anisotropic/index.html

Patch by Ben Vanik <benvanik@google.com> on 2012-03-05
Reviewed by Kenneth Russell.

Tested with the Khronos conformance test for the extension, available at https://cvs.khronos.org/svn/repos/registry/trunk/public/webgl/sdk/tests/conformance/extensions/ext-texture-filter-anisotropic.html

  • CMakeLists.txt:
  • DerivedSources.make:
  • DerivedSources.pri:
  • GNUmakefile.list.am:
  • Target.pri:
  • WebCore.gypi:
  • WebCore.xcodeproj/project.pbxproj:
  • bindings/js/JSWebGLRenderingContextCustom.cpp:

(WebCore::toJS):

  • bindings/v8/custom/V8WebGLRenderingContextCustom.cpp:

(WebCore::toV8Object):

  • html/canvas/EXTTextureFilterAnisotropic.cpp: Copied from Source/WebCore/html/canvas/WebGLExtension.h.

(WebCore):
(WebCore::EXTTextureFilterAnisotropic::EXTTextureFilterAnisotropic):
(WebCore::EXTTextureFilterAnisotropic::~EXTTextureFilterAnisotropic):
(WebCore::EXTTextureFilterAnisotropic::getName):
(WebCore::EXTTextureFilterAnisotropic::create):

  • html/canvas/EXTTextureFilterAnisotropic.h: Copied from Source/WebCore/html/canvas/WebGLExtension.h.

(WebCore):
(EXTTextureFilterAnisotropic):

  • html/canvas/EXTTextureFilterAnisotropic.idl: Copied from Source/WebCore/html/canvas/WebGLExtension.h.
  • html/canvas/WebGLExtension.h:
  • html/canvas/WebGLObject.cpp:
  • html/canvas/WebGLRenderingContext.cpp:

(WebCore):
(WebCore::WebGLRenderingContext::getExtension):
(WebCore::WebGLRenderingContext::getParameter):
(WebCore::WebGLRenderingContext::getSupportedExtensions):
(WebCore::WebGLRenderingContext::getTexParameter):
(WebCore::WebGLRenderingContext::texParameter):

  • html/canvas/WebGLRenderingContext.h:

(WebCore):
(WebGLRenderingContext):

  • platform/graphics/Extensions3D.h:

(Extensions3D):

  • platform/graphics/opengl/Extensions3DOpenGL.cpp:

(WebCore::Extensions3DOpenGL::supports):

1:49 PM Changeset in webkit [109797] by senorblanco@chromium.org
  • 2 edits in trunk/LayoutTests

[chromim] Mark http/tests/incremental/partial-jpeg.html as failing.

Unreviewed gardening.

  • platform/chromium/test_expectations.txt:
1:47 PM Changeset in webkit [109796] by eae@chromium.org
  • 1537 edits
    554 copies
    145 deletes in branches/subpixellayout

Merge trunk changes up until 109755 into subpixel branch.

1:45 PM Changeset in webkit [109795] by timothy@apple.com
  • 3 edits
    1 move in trunk/Source/WebKit2

Change how the Web Inspector Develop menu actions work.

This removes the methods used by Safari's Develop menu. They can now be implemented in Safari.

https://webkit.org/b/80308

Reviewed by John Sullivan.

  • UIProcess/API/C/mac/WKInspectorPrivateMac.h: Renamed from Source/WebKit2/UIProcess/API/C/mac/WKInspectorMac.h.
  • UIProcess/mac/WebInspectorProxyMac.mm:

(-[WKWebInspectorProxyObjCAdapter inspectorRef]): Added.

  • WebKit2.xcodeproj/project.pbxproj: Renamed WKInspectorPrivateMac.h to better reflect its private nature.
1:44 PM Changeset in webkit [109794] by shawnsingh@chromium.org
  • 3 edits
    3 copies in branches/chromium/1025

Merge 109060 - RenderLayer ClipRect not accounting for transforms
https://bugs.webkit.org/show_bug.cgi?id=76486

Reviewed by Simon Fraser.

Source/WebCore:

Test: compositing/layer-creation/overlap-transformed-and-clipped.html

This patch changes calculateClipRects() so that the clipRect
offset is allowed to be converted across layers with
transforms. This is necessary because the RenderLayerCompositor
needs clipRects in document space, rather than with respect to
some local clipping layer.

  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::calculateClipRects):

  • rendering/RenderObject.cpp:

(WebCore::RenderObject::localToContainerPoint):
(WebCore):

  • rendering/RenderObject.h:

(RenderObject):

LayoutTests:

  • compositing/layer-creation/overlap-transformed-and-clipped-expected.png: Added.
  • compositing/layer-creation/overlap-transformed-and-clipped-expected.txt: Added.
  • compositing/layer-creation/overlap-transformed-and-clipped.html: Added.

TBR=shawnsingh@chromium.org
Review URL: https://chromiumcodereview.appspot.com/9599025

1:42 PM Changeset in webkit [109793] by tony@chromium.org
  • 2 edits in trunk/LayoutTests

[chromium] Unreviewed, marking a test that is passing on linux as such.

platform/chromium-linux/fast/text/international/complex-joining-using-gpos.html
is passing on the flakiness dashboard.

  • platform/chromium/test_expectations.txt:
1:40 PM Changeset in webkit [109792] by ap@apple.com
  • 2 edits in trunk/LayoutTests

FileReader crashes when file is not readable
https://bugs.webkit.org/show_bug.cgi?id=79715

Unreviewed follow-up - skip the test as uses unimplemented beginDragWithFiles.

  • platform/wk2/Skipped:
1:33 PM Changeset in webkit [109791] by commit-queue@webkit.org
  • 8 edits
    2 deletes in trunk

Unreviewed, rolling out r109760.
http://trac.webkit.org/changeset/109760
https://bugs.webkit.org/show_bug.cgi?id=80320

Caused many GTK+ tests to crash (Requested by mrobinson on
#webkit).

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

.:

  • configure.ac:

Source/WebCore:

  • platform/network/ResourceHandleClient.h:
  • platform/network/soup/ResourceHandleSoup.cpp:

(WebCoreSynchronousLoader):
(WebCore::WebCoreSynchronousLoader::WebCoreSynchronousLoader):
(WebCore):
(WebCore::WebCoreSynchronousLoader::~WebCoreSynchronousLoader):
(WebCore::WebCoreSynchronousLoader::didReceiveResponse):
(WebCore::WebCoreSynchronousLoader::didReceiveData):
(WebCore::WebCoreSynchronousLoader::didFinishLoading):
(WebCore::WebCoreSynchronousLoader::didFail):
(WebCore::WebCoreSynchronousLoader::run):
(WebCore::closeCallback):
(WebCore::readCallback):
(WebCore::ResourceHandle::defaultSession):

Tools:

  • gtk/jhbuild.modules:

LayoutTests:

  • http/tests/xmlhttprequest/xmlhttprequest-sync-no-timers-expected.txt: Removed.
  • http/tests/xmlhttprequest/xmlhttprequest-sync-no-timers.html: Removed.
1:29 PM Changeset in webkit [109790] by adamk@chromium.org
  • 4 edits
    2 adds in trunk

Never dispatch mutation events in shadow DOM
https://bugs.webkit.org/show_bug.cgi?id=79278

Reviewed by Ryosuke Niwa.

Source/WebCore:

Test: fast/dom/shadow/suppress-mutation-events-in-shadow.html

  • dom/ContainerNode.cpp:

(WebCore::ContainerNode::removeChildren): Move allowEventDispatch() call later,
now that childrenChanged won't trigger mutation events in shadow dom.
(WebCore::dispatchChildInsertionEvents): Bail out if in shadow tree.
(WebCore::dispatchChildRemovalEvents): ditto.

  • dom/Node.cpp:

(WebCore::Node::dispatchSubtreeModifiedEvent): ditto.

LayoutTests:

  • fast/dom/shadow/suppress-mutation-events-in-shadow-expected.txt: Added.
  • fast/dom/shadow/suppress-mutation-events-in-shadow.html: Added.
1:16 PM Changeset in webkit [109789] by ap@apple.com
  • 2 edits in trunk/Source/WebCore

BlobResourceHandle should keep a reference to itself when calling client code.
https://bugs.webkit.org/show_bug.cgi?id=80318

Reviewed by Brady Eidson.

  • platform/network/BlobResourceHandle.cpp: (WebCore::BlobResourceHandle::doStart): (WebCore::BlobResourceHandle::getSizeForNext): (WebCore::BlobResourceHandle::readSync): (WebCore::BlobResourceHandle::readDataAsync): (WebCore::BlobResourceHandle::consumeData): (WebCore::BlobResourceHandle::failed): Added RefPtrs in functions that can result in calling client code, and use "this" object afterwards.
1:10 PM Changeset in webkit [109788] by andersca@apple.com
  • 12 edits in trunk/Source/WebCore

Let RenderLayerCompositor set the tile cache visible rect
https://bugs.webkit.org/show_bug.cgi?id=80317

Reviewed by Simon Fraser.

We can't compute the visible rect from CALayers, because that breaks when we're updating
the scroll layer position on the main thread (since by the time visibleRectChanged() is called,
the CALayers won't yet have been updated).

  • platform/graphics/GraphicsLayer.h:

(WebCore::GraphicsLayer::visibleRectChanged):

  • platform/graphics/ca/GraphicsLayerCA.cpp:

(WebCore::GraphicsLayerCA::visibleRectChanged):

  • platform/graphics/ca/GraphicsLayerCA.h:

(GraphicsLayerCA):

  • platform/graphics/ca/PlatformCALayer.h:

(PlatformCALayer):

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

(PlatformCALayer::visibleRectChanged):

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

(TileCache):

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

(WebCore::TileCache::visibleRectChanged):
(WebCore::TileCache::revalidateTiles):

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

(WebCore):

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

(-[WebTileCacheLayer visibleRectChanged:]):

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

(PlatformCALayer::visibleRectChanged):

  • rendering/RenderLayerCompositor.cpp:

(WebCore::RenderLayerCompositor::frameViewDidScroll):

1:02 PM Changeset in webkit [109787] by Patrick Gansterer
  • 6 edits in trunk

[CMake][DRT] Add WebCoreTestSupport.
https://bugs.webkit.org/show_bug.cgi?id=79896

Patch by Kangil Han <kangil.han@samsung.com> on 2012-03-05
Reviewed by Daniel Bates.

Add WebCoreTestSupport library for DRT in CMake.
We will use internals object by linking this library on DRT.

.:

  • CMakeLists.txt:

Source/WebCore:

  • CMakeLists.txt:
  • UseJSC.cmake:
  • UseV8.cmake:
1:00 PM Changeset in webkit [109786] by weinig@apple.com
  • 5 edits in trunk/WebKitLibraries

Update WebKitSystemInterface for WKCAContext additions.

  • WebKitSystemInterface.h:
  • libWebKitSystemInterfaceLeopard.a:
  • libWebKitSystemInterfaceLion.a:
  • libWebKitSystemInterfaceSnowLeopard.a:
12:44 PM Changeset in webkit [109785] by commit-queue@webkit.org
  • 40 edits
    14 deletes in trunk

Unreviewed, rolling out r109656.
http://trac.webkit.org/changeset/109656
https://bugs.webkit.org/show_bug.cgi?id=80316

This seems to have regressed Parser/html5-full-render by about
10% (Requested by anttik on #webkit).

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

Source/WebCore:

  • css/CSSComputedStyleDeclaration.cpp:

(WebCore::getPositionOffsetValue):
(WebCore::getBorderRadiusCornerValues):
(WebCore::getBorderRadiusCornerValue):
(WebCore::getBorderRadiusShorthandValue):
(WebCore::lineHeightFromStyle):
(WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue):

  • css/CSSGrammar.y:
  • css/CSSParser.cpp:

(WebCore::CSSParser::validUnit):
(WebCore::CSSParser::createPrimitiveNumericValue):
(WebCore::unitFromString):
(WebCore::CSSParser::parseValidPrimitive):
(WebCore::CSSParser::detectNumberToken):

  • css/CSSPrimitiveValue.cpp:

(WebCore::isValidCSSUnitTypeForDoubleConversion):
(WebCore::unitCategory):
(WebCore::CSSPrimitiveValue::CSSPrimitiveValue):
(WebCore::CSSPrimitiveValue::canonicalUnitTypeForCategory):
(WebCore::CSSPrimitiveValue::customCssText):

  • css/CSSPrimitiveValue.h:

(CSSPrimitiveValue):

  • css/CSSPrimitiveValue.idl:
  • css/CSSStyleApplyProperty.cpp:

(WebCore::ApplyPropertyLength::applyValue):
(WebCore::ApplyPropertyBorderRadius::applyValue):
(WebCore::ApplyPropertyFontSize::applyValue):
(WebCore::ApplyPropertyLineHeight::applyValue):
(WebCore::ApplyPropertyVerticalAlign::applyValue):

  • css/CSSStyleSelector.cpp:

(WebCore::CSSStyleSelector::collectMatchingRulesForList):

  • dom/Document.cpp:

(WebCore::Document::pageSizeAndMarginsInPixels):
(WebCore):

  • dom/Document.h:

(Document):

  • html/HTMLAreaElement.cpp:

(WebCore::HTMLAreaElement::getRegion):

  • platform/Length.h:

(WebCore::Length::calcValue):
(WebCore::Length::calcMinValue):
(WebCore::Length::calcFloatValue):
(WebCore::Length::blend):

  • rendering/RenderBR.cpp:

(WebCore::RenderBR::lineHeight):

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::lineHeight):

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::reflectionOffset):
(WebCore::RenderBox::paintBoxDecorations):
(WebCore::RenderBox::clipRect):
(WebCore::RenderBox::computeLogicalWidthInRegion):
(WebCore::RenderBox::computeLogicalWidthInRegionUsing):
(WebCore::RenderBox::computeInlineDirectionMargins):
(WebCore::RenderBox::computeLogicalHeightUsing):
(WebCore::RenderBox::computePercentageLogicalHeight):
(WebCore::RenderBox::computeReplacedLogicalHeightUsing):
(WebCore::RenderBox::computeBlockDirectionMargins):
(WebCore::RenderBox::computePositionedLogicalWidthUsing):
(WebCore::RenderBox::computePositionedLogicalHeightUsing):
(WebCore::RenderBox::computePositionedLogicalWidthReplaced):
(WebCore::RenderBox::computePositionedLogicalHeightReplaced):

  • rendering/RenderBoxModelObject.cpp:

(WebCore::RenderBoxModelObject::relativePositionOffsetX):
(WebCore::RenderBoxModelObject::relativePositionOffsetY):
(WebCore::RenderBoxModelObject::paddingTop):
(WebCore::RenderBoxModelObject::paddingBottom):
(WebCore::RenderBoxModelObject::paddingLeft):
(WebCore::RenderBoxModelObject::paddingRight):
(WebCore::RenderBoxModelObject::paddingBefore):
(WebCore::RenderBoxModelObject::paddingAfter):
(WebCore::RenderBoxModelObject::paddingStart):
(WebCore::RenderBoxModelObject::paddingEnd):
(WebCore::RenderBoxModelObject::getBackgroundRoundedRect):
(WebCore::RenderBoxModelObject::calculateFillTileSize):
(WebCore::RenderBoxModelObject::calculateBackgroundImageGeometry):
(WebCore::computeBorderImageSide):
(WebCore::RenderBoxModelObject::paintNinePieceImage):
(WebCore::RenderBoxModelObject::paintBorder):
(WebCore::RenderBoxModelObject::paintBoxShadow):

  • rendering/RenderFlexibleBox.cpp:

(WebCore::RenderFlexibleBox::preferredMainAxisContentExtentForChild):
(WebCore::RenderFlexibleBox::computeMainAxisPreferredSizes):
(WebCore::RenderFlexibleBox::runFreeSpaceAllocationAlgorithm):

  • rendering/RenderInline.cpp:

(WebCore::computeMargin):
(WebCore::RenderInline::lineHeight):

  • rendering/RenderMenuList.cpp:

(WebCore::RenderMenuList::updateOptionsWidth):

  • rendering/RenderObject.cpp:

(WebCore::RenderObject::repaintAfterLayoutIfNeeded):

  • rendering/RenderObject.h:

(RenderObject):

  • rendering/RenderReplaced.cpp:

(WebCore::RenderReplaced::paint):

  • rendering/RenderScrollbarPart.cpp:

(WebCore::calcScrollbarThicknessUsing):
(WebCore::RenderScrollbarPart::computeScrollbarWidth):
(WebCore::RenderScrollbarPart::computeScrollbarHeight):

  • rendering/RenderTable.cpp:

(WebCore::RenderTable::computeLogicalWidth):
(WebCore::RenderTable::convertStyleLogicalWidthToComputedWidth):

  • rendering/RenderTableCell.cpp:

(WebCore::RenderTableCell::logicalHeightForRowSizing):

  • rendering/RenderTableSection.cpp:

(WebCore::RenderTableSection::calcRowLogicalHeight):

  • rendering/RenderText.h:

(WebCore::RenderText::marginLeft):
(WebCore::RenderText::marginRight):

  • rendering/RenderThemeMac.mm:

(WebCore::RenderThemeMac::paintMenuListButtonGradients):

  • rendering/RenderWidget.cpp:

(WebCore::RenderWidget::paint):

  • rendering/RootInlineBox.cpp:

(WebCore::RootInlineBox::verticalPositionForBox):

  • rendering/style/RenderStyle.cpp:

(WebCore::calcRadiiFor):
(WebCore::RenderStyle::getRoundedBorderFor):

  • rendering/style/RenderStyle.h:
  • rendering/svg/RenderSVGRoot.cpp:

(WebCore::resolveLengthAttributeForSVG):
(WebCore::RenderSVGRoot::computeReplacedLogicalWidth):
(WebCore::RenderSVGRoot::computeReplacedLogicalHeight):

LayoutTests:

  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-getStyle-expected.txt: Removed.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-getStyle.html: Removed.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-vh-absolute-expected.html: Removed.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-vh-absolute.html: Removed.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-vh-expected.html: Removed.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-vh.html: Removed.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-vmin-absolute-expected.html: Removed.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-vmin-absolute.html: Removed.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-vmin-expected.html: Removed.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-vmin.html: Removed.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-vw-absolute-expected.html: Removed.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-vw-absolute.html: Removed.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-vw-expected.html: Removed.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-vw.html: Removed.
  • fast/dom/Window/window-properties-expected.txt:
  • platform/gtk/fast/dom/Window/window-properties-expected.txt:
  • platform/mac/fast/dom/Window/window-properties-expected.txt:
  • platform/qt/fast/dom/Window/window-properties-expected.txt:
  • platform/win/fast/dom/Window/window-properties-expected.txt:
12:35 PM Changeset in webkit [109784] by Patrick Gansterer
  • 3 edits in trunk/Source/JavaScriptCore

Unreviewed. Build fix for !ENABLE(JIT) after r109705.

  • bytecode/ExecutionCounter.cpp:
  • bytecode/ExecutionCounter.h:
12:28 PM Changeset in webkit [109783] by rwlbuis@webkit.org
  • 2 edits in trunk/Source/WebCore

[BlackBerry] UTF chars printed back from cookie through php shows as ???
https://bugs.webkit.org/show_bug.cgi?id=80307

Reviewed by Antonio Gomes.

PR: 130055

we need to check the cookies encoding first and encode the cookie header data
to pass to the request.

  • platform/network/blackberry/NetworkManager.cpp:

(WebCore::NetworkManager::startJob):

12:15 PM Changeset in webkit [109782] by adamk@chromium.org
  • 2 edits in trunk/LayoutTests

Use a proper closing tag for shadow element layout test
https://bugs.webkit.org/show_bug.cgi?id=80305

Reviewed by Adam Barth.

  • fast/dom/shadow/shadow-element.html:
12:05 PM Changeset in webkit [109781] by commit-queue@webkit.org
  • 8 edits in trunk/Source/WebCore

[chromium] Remove old cleanupResources() code
https://bugs.webkit.org/show_bug.cgi?id=80290

Patch by Dana Jansens <danakj@chromium.org> on 2012-03-05
Reviewed by Adrienne Walker.

cleanupResources() is only called by destructors, and adds no
value, any more, beyond the destructors themselves, but complicates
the code path.

Covered by existing tests.

  • platform/graphics/chromium/cc/CCLayerImpl.cpp:
  • platform/graphics/chromium/cc/CCLayerImpl.h:

(CCLayerImpl):

  • platform/graphics/chromium/cc/CCPluginLayerImpl.cpp:

(WebCore::CCPluginLayerImpl::~CCPluginLayerImpl):

  • platform/graphics/chromium/cc/CCPluginLayerImpl.h:
  • platform/graphics/chromium/cc/CCRenderSurface.cpp:

(WebCore::CCRenderSurface::~CCRenderSurface):

  • platform/graphics/chromium/cc/CCRenderSurface.h:

(CCRenderSurface):

  • platform/graphics/chromium/cc/CCVideoLayerImpl.cpp:

(WebCore::CCVideoLayerImpl::~CCVideoLayerImpl):

11:59 AM Changeset in webkit [109780] by inferno@chromium.org
  • 1 edit in branches/chromium/963/Source/WebCore/dom/StyledElement.cpp

getElementsByClassName result list no longer changes on class changes on m17 branch.

BUG=114068, 116789
Review URL: https://chromiumcodereview.appspot.com/9602021

11:54 AM Changeset in webkit [109779] by commit-queue@webkit.org
  • 3 edits
    5 adds in trunk

Partially loaded JPEGs should have alpha channel
https://bugs.webkit.org/show_bug.cgi?id=78239

Patch by Sami Kyostila <skyostil@chromium.org> on 2012-03-05
Reviewed by Kenneth Russell.

Source/WebCore:

While a JPEG image is loading, the area outside the decoded region
should be fully transparent. Since currently all JPEG frames are marked
as opaque, a renderer respecting this flag will draw the partially
loaded image with garbage outside the valid image region.

Hence, a partially loaded JPEG image should be marked as having an alpha
channel while decoding is in progress. For performance reasons we mark
the image opaque after decoding has finished.

Graphics corruption caused by this bug was recently observed on
Chromium (http://code.google.com/p/chromium/issues/detail?id=113171). A
recent Skia change (r3036) changed SkBitmap::extractSubset() to produce
a bitmap with the same opaqueness flag as the parent. This meant that
the renderer was now seeing an opaque image from the JPEG decoder, and
drawing it appropriately resulted in garbage outside the decoded region.

Test: http/tests/incremental/partial-jpeg.html

  • platform/image-decoders/jpeg/JPEGImageDecoder.cpp:

(WebCore::JPEGImageDecoder::outputScanlines):
(WebCore::JPEGImageDecoder::jpegComplete):

LayoutTests:

While a JPEG image is being loaded, the parts which have not been
decoded yet should show whatever is behind the image. This tests
verifies this by displaying a JPEG which never fully completes
loading. This is achieved by serving the JPEG from a PHP script that
strips the end of image marker (ff d9) from the data.

The test image is 32x32 pixels, so compresses to 4x4 JPEG MCU blocks.
The expected result is that the final row of MCU blocks (32x4 pixels)
never finishes loading due to the missing end of image marker and the
indicator div is shown through this area.

  • http/tests/incremental/partial-jpeg-expected.png: Added.
  • http/tests/incremental/partial-jpeg-expected.txt: Added.
  • http/tests/incremental/partial-jpeg.html: Added.
  • http/tests/incremental/resources/checkerboard.jpg: Added.
  • http/tests/incremental/resources/partial-jpeg.php: Added.
11:50 AM Changeset in webkit [109778] by commit-queue@webkit.org
  • 8 edits in trunk

[chromium] Pass WebNavigationPolicy to WebViewClient::createView
https://bugs.webkit.org/show_bug.cgi?id=80057

Patch by Charlie Reis <creis@chromium.org> on 2012-03-05
Reviewed by Darin Fisher.

Source/WebKit/chromium:

  • public/WebViewClient.h:

(WebViewClient):
(WebKit::WebViewClient::createView):

  • src/ChromeClientImpl.cpp:

(WebKit::ChromeClientImpl::ChromeClientImpl):
(WebKit::ChromeClientImpl::createWindow):
(WebKit::ChromeClientImpl::getNavigationPolicy):
(WebKit):
(WebKit::ChromeClientImpl::show):
(WebKit::ChromeClientImpl::setNewWindowNavigationPolicy):

  • src/ChromeClientImpl.h:

(ChromeClientImpl):

  • src/FrameLoaderClientImpl.cpp:

(WebKit::FrameLoaderClientImpl::dispatchCreatePage):
(WebKit::FrameLoaderClientImpl::dispatchDecidePolicyForNewWindowAction):

Tools:

  • DumpRenderTree/chromium/WebViewHost.cpp:

(WebViewHost::createView):

  • DumpRenderTree/chromium/WebViewHost.h:

(WebViewHost):

11:47 AM Changeset in webkit [109777] by commit-queue@webkit.org
  • 4 edits in trunk/Source

[chromium] Initialize CCOverdrawCounts struct to zero
https://bugs.webkit.org/show_bug.cgi?id=80204

Patch by James Robinson <jamesr@chromium.org> on 2012-03-05
Reviewed by Adrienne Walker.

Source/WebCore:

CCOverdrawCounts is stack allocated but not explicitly initialized, so the values are garbage. This adds a c'tor
to zero out the fields, which is the desired behavior. Bug was initially caught by valgrind, see
http://crbug.com/116475

  • platform/graphics/chromium/cc/CCRenderPass.h:

(WebCore::CCOverdrawCounts::CCOverdrawCounts):

Source/WebKit/chromium:

Update test to use c'tor instead of {} struct initialization.

  • tests/CCQuadCullerTest.cpp:

(WebCore):

11:38 AM Changeset in webkit [109776] by commit-queue@webkit.org
  • 5 edits
    1 add in trunk/Source/WebCore

Add media control css for chromium on android
https://bugs.webkit.org/show_bug.cgi?id=79550

Patch by Min Qin <qinmin@google.com> on 2012-03-05
Reviewed by Adam Barth.

This should not change the any test results as it does not affect the any current bots. New test expectations will be added if we have a android bot on webkit.

  • WebCore.gyp/WebCore.gyp:
  • css/mediaControlsChromiumAndroid.css: Added.

(body:-webkit-full-page-media):
(audio):
(audio:-webkit-full-page-media, video:-webkit-full-page-media):
(audio::-webkit-media-controls-panel, video::-webkit-media-controls-panel):
(video:-webkit-full-page-media::-webkit-media-controls-panel):
(audio::-webkit-media-controls-mute-button, video::-webkit-media-controls-mute-button):
(audio::-webkit-media-controls-play-button, video::-webkit-media-controls-play-button):
(audio::-webkit-media-controls-timeline-container):
(video::-webkit-media-controls-timeline-container):
(audio::-webkit-media-controls-current-time-display, video::-webkit-media-controls-current-time-display):
(audio::-webkit-media-controls-timeline, video::-webkit-media-controls-timeline):
(video::-webkit-media-controls-fullscreen-button):
(audio::-webkit-media-controls-fullscreen-button):
(audio::-webkit-media-controls-volume-slider-container, video::-webkit-media-controls-volume-slider-container):
(audio::-webkit-media-controls-volume-slider, video::-webkit-media-controls-volume-slider):

  • rendering/RenderMediaControlsChromium.cpp:

(WebCore::paintMediaFullscreenButton):
(WebCore):
(WebCore::RenderMediaControlsChromium::paintMediaControlsPart):

  • rendering/RenderThemeChromiumAndroid.cpp:

(WebCore::RenderThemeChromiumAndroid::extraMediaControlsStyleSheet):
(WebCore):
(WebCore::RenderThemeChromiumAndroid::paintMediaFullscreenButton):

  • rendering/RenderThemeChromiumAndroid.h:
11:26 AM Changeset in webkit [109775] by andersca@apple.com
  • 2 edits in trunk/Source/WebCore

Fix crash in ScrollingCoordinator::updateMainFrameScrollPositionAndScrollLayerPosition
https://bugs.webkit.org/show_bug.cgi?id=80303
<rdar://problem/10953682>

Reviewed by Beth Dakin.

Add the same null checks that already exist in updateMainFrameScrollPosition.

  • page/scrolling/ScrollingCoordinator.cpp:

(WebCore::ScrollingCoordinator::updateMainFrameScrollPositionAndScrollLayerPosition):

11:15 AM Changeset in webkit [109774] by enne@google.com
  • 3 edits in branches/chromium/1025/Source/WebCore/platform/graphics

Merge 109171 - [chromium] Inform v8 about extra memory used for PatternSkia clamp mode
https://bugs.webkit.org/show_bug.cgi?id=79846

Reviewed by James Robinson.

For large images, creating a non-repeating Pattern in Skia can
allocate a lot of memory. Inform v8 about this so that it can
potentially garbage collect any Pattern objects that aren't being used
and that are holding onto large image copies.

  • platform/graphics/Pattern.cpp:

(WebCore::Pattern::Pattern):

  • platform/graphics/Pattern.h:

(Pattern):

  • platform/graphics/skia/PatternSkia.cpp:

(WebCore::Pattern::platformDestroy):
(WebCore::Pattern::platformPattern):

TBR=enne@google.com
Review URL: https://chromiumcodereview.appspot.com/9599019

11:00 AM Changeset in webkit [109773] by adamk@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed test expectations update: widen slowness of jquery/offset.html.

  • platform/chromium/test_expectations.txt:
10:57 AM Changeset in webkit [109772] by apavlov@chromium.org
  • 4 edits
    2 adds in trunk

Web Inspector: CSS inactive property check should account for vendor prefixes
https://bugs.webkit.org/show_bug.cgi?id=80225

Reviewed by Pavel Feldman.

Source/WebCore:

Test: inspector/styles/vendor-prefixes.html

  • inspector/InspectorStyleSheet.cpp:

(WebCore::InspectorStyle::populateObjectWithStyleProperties):

  • inspector/front-end/StylesSidebarPane.js:

(WebInspector.StylesSidebarPane.alteredHexNumber):
(WebInspector.StylesSidebarPane.canonicalPropertyName):
(WebInspector.StylesSidebarPane.prototype._markUsedProperties):
(WebInspector.StylePropertiesSection.prototype.isPropertyOverloaded):

LayoutTests:

  • inspector/styles/vendor-prefixes-expected.txt: Added.
  • inspector/styles/vendor-prefixes.html: Added.
10:57 AM Changeset in webkit [109771] by toyoshim@chromium.org
  • 2 edits in trunk/Source/WebKit/chromium

[Chromium] [WebSocket] use OVERRIDE in WebSocketImpl.h
https://bugs.webkit.org/show_bug.cgi?id=80192

Reviewed by Kent Tamura.

  • src/WebSocketImpl.h: use OVERRIDE macro.

(WebSocketImpl):

10:57 AM Changeset in webkit [109770] by Lucas Forschler
  • 4 edits in trunk/Source

Versioning.

10:56 AM Changeset in webkit [109769] by wingo@igalia.com
  • 4 edits in trunk/Source/JavaScriptCore

Lexer: Specialize character predicates for LChar, UChar
https://bugs.webkit.org/show_bug.cgi?id=79677

Reviewed by Oliver Hunt.

This patch specializes isIdentStart, isIdentPart, isWhiteSpace,
and isLineTerminator to perform a more limited number of checks if
the lexer is being instantiated to work on LChar sequences. This
is about a 1.5% win on the --parse-only suite, here.

  • parser/Lexer.cpp:

(JSC::isLatin1): New static helper, specialized for LChar and
UChar.
(JSC::typesOfLatin1Characters): Rename from
typesOfASCIICharacters, and expand to the range of the LChar
type. All uses of isASCII are changed to use isLatin1. Generated
using libunistring.
(JSC::isNonLatin1IdentStart):
(JSC::isIdentStart):
(JSC::isNonLatin1IdentPart):
(JSC::isIdentPart):
(JSC::Lexer::shiftLineTerminator):
(JSC::Lexer::parseIdentifier):
(JSC::Lexer::parseIdentifierSlowCase):
(JSC::Lexer::parseStringSlowCase):
(JSC::Lexer::parseMultilineComment):
(JSC::Lexer::lex):
(JSC::Lexer::scanRegExp):
(JSC::Lexer::skipRegExp): Sprinkle static_cast<T>(_) around.

  • parser/Lexer.h:

(JSC::Lexer::isWhiteSpace):
(JSC::Lexer::isLineTerminator):

  • KeywordLookupGenerator.py:

(Trie.printAsC): Declare specialized isIdentPart static functions.

10:51 AM WebKit Team edited by aroben@webkit.org
(diff)
10:50 AM Changeset in webkit [109768] by mitz@apple.com
  • 2 edits in trunk/LayoutTests

Removed the svn:executable properties from a couple of expected test results

10:36 AM Changeset in webkit [109767] by mitz@apple.com
  • 2 edits
    1 copy in trunk/LayoutTests

fast/text/international/spaces-combined-in-vertical-text.html has incorrect expected results
https://bugs.webkit.org/show_bug.cgi?id=80284

Reviewed by Alexey Proskuryakov.

The test was added in r104322 with results from the Chromium port, which are incorrect. This
is the subject of <https://bugs.webkit.org/show_bug.cgi?id=80293>.

  • fast/text/international/spaces-combined-in-vertical-text-expected.txt:
  • platform/chromium/fast/text/international/spaces-combined-in-vertical-text-expected.txt: Copied from LayoutTests/fast/text/international/spaces-combined-in-vertical-text-expected.txt.
10:34 AM Changeset in webkit [109766] by jonlee@apple.com
  • 14 edits in trunk/Source

Add support for notification replaceId in Mac WebKit and WK2
https://bugs.webkit.org/show_bug.cgi?id=80206
<rdar://problem/10965574>

Reviewed by Sam Weinig.

Source/WebKit/mac:

  • WebView/WebNotification.h: Add replaceID method.
  • WebView/WebNotification.mm:

(-[WebNotification replaceID]):

Source/WebKit2:

  • UIProcess/API/C/WKNotification.cpp: Add WK API.

(WKNotificationCopyReplaceID):

  • UIProcess/API/C/WKNotification.h:
  • UIProcess/Notifications/WebNotification.cpp:

(WebKit::WebNotification::WebNotification):

  • UIProcess/Notifications/WebNotification.h: Add replaceID member.

(WebKit::WebNotification::create):
(WebKit::WebNotification::replaceID):
(WebNotification):

  • UIProcess/Notifications/WebNotificationManagerProxy.cpp:

(WebKit::WebNotificationManagerProxy::show):

  • UIProcess/Notifications/WebNotificationManagerProxy.h:

(WebNotificationManagerProxy):

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::showNotification):

  • UIProcess/WebPageProxy.h:

(WebPageProxy):

  • UIProcess/WebPageProxy.messages.in: Add replaceID to the showNotification message.
  • WebProcess/Notifications/WebNotificationManager.cpp:

(WebKit::WebNotificationManager::show):

10:28 AM WebKitGTK/1.8.x edited by Martin Robinson
(diff)
10:26 AM Changeset in webkit [109765] by Martin Robinson
  • 8 edits
    2 adds in releases/WebKitGTK/webkit-1.8

Merging r109760

10:25 AM Changeset in webkit [109764] by Martin Robinson
  • 13 edits in releases/WebKitGTK/webkit-1.8/Source

Merging r109129

10:23 AM Changeset in webkit [109763] by Nate Chapin
  • 1 edit
    3 copies in branches/chromium/1025

Merge 106476 - Source/WebCore: preventDefault() in a mousedown in a subframe should not
prevent the scrollbar from handling mouse movements if the
cursor leaves the subframe.
https://bugs.webkit.org/show_bug.cgi?id=73097

Reviewed by Darin Adler.

Test: fast/events/scroll-div-with-prevent-default-in-subframe.html

  • page/EventHandler.cpp:

(WebCore::EventHandler::handleMousePressEvent):

LayoutTests: Test for https://bugs.webkit.org/show_bug.cgi?id=73097.
Test adapted from repro case provided by zacklloyd@google.com.

Reviewed by Darin Adler.

  • fast/events/resources/subframe-with-scrollable-div.html: Added.
  • fast/events/scroll-div-with-prevent-default-in-subframe-expected.txt: Added.
  • fast/events/scroll-div-with-prevent-default-in-subframe.html: Added.

TBR=Nate Chapin
Review URL: https://chromiumcodereview.appspot.com/9600027

10:22 AM Changeset in webkit [109762] by mitz@apple.com
  • 2 edits
    1 delete in trunk/LayoutTests

fast/regions/select-in-region-crash.html has incorrect expected results
https://bugs.webkit.org/show_bug.cgi?id=80289

Reviewed by Alexey Proskuryakov.

  • fast/regions/select-in-region-crash-expected.txt: Updated.
  • platform/chromium/fast/regions/select-in-region-crash-expected.txt: Removed.
10:17 AM Changeset in webkit [109761] by abarth@webkit.org
  • 13 edits in trunk/Source

Geolocation should use a ScriptExecutionContext as its context object
https://bugs.webkit.org/show_bug.cgi?id=80248

Reviewed by Kentaro Hara.

Source/WebCore:

This patch updates Geolocation to use some more modern WebCore
mechanisms. Previously, Geolocation used a Frame as a context object,
which required a bunch of manual integration with the PageCache as well
as custom signaling for Geolocation::reset(). After this patch,
Geolocation subclasses ActiveDOMObject, which does all this work
automatically.

  • Modules/geolocation/Geolocation.cpp:

(WebCore::Geolocation::create):
(WebCore):
(WebCore::Geolocation::Geolocation):
(WebCore::Geolocation::~Geolocation):
(WebCore::Geolocation::document):
(WebCore::Geolocation::frame):
(WebCore::Geolocation::page):
(WebCore::Geolocation::stop):
(WebCore::Geolocation::getCurrentPosition):
(WebCore::Geolocation::watchPosition):
(WebCore::Geolocation::requestPermission):
(WebCore::Geolocation::clearWatch):
(WebCore::Geolocation::setIsAllowed):

  • Modules/geolocation/Geolocation.h:

(WebCore):
(Geolocation):

  • Modules/geolocation/NavigatorGeolocation.cpp:

(WebCore):
(WebCore::NavigatorGeolocation::geolocation):

  • Modules/geolocation/NavigatorGeolocation.h:

(NavigatorGeolocation):

  • dom/Document.cpp:

(WebCore::Document::Document):

  • dom/Document.h:

(Document):

  • history/PageCache.cpp:

(WebCore::logCanCacheFrameDecision):
(WebCore::PageCache::canCachePageContainingThisFrame):

Source/WebKit/chromium:

Rather than indirecting through the Frame to get the SecurityOrigin, we
should get the SecurityOrigin directly from ScriptExecutionContext.

  • src/WebGeolocationPermissionRequest.cpp:

(WebKit::WebGeolocationPermissionRequest::securityOrigin):

Source/WebKit/mac:

  • WebView/WebFrame.mm:

(-[WebFrame _cacheabilityDictionary]):

  • We no longer special-case Geolocation.
10:15 AM Changeset in webkit [109760] by Martin Robinson
  • 8 edits
    2 adds in trunk

[soup] Crash while loading http://www.jusco.cn
https://bugs.webkit.org/show_bug.cgi?id=68238

Reviewed by Philippe Normand.

.:

  • configure.ac: Bumped the libsoup dependency to 2.37.90.

Source/WebCore:

Test: http/tests/xmlhttprequest/xmlhttprequest-sync-no-timers.html

When running synchronous XMLHttpRequests, push a new inner thread default
context, so that other sources from timers and network activity do not run.
This will make synchronous requests truly synchronous with the rest of
WebCore.

  • platform/network/soup/ResourceHandleSoup.cpp:

(WebCoreSynchronousLoader): Clean up the method definitions a bit by writing them inline.
(WebCore::WebCoreSynchronousLoader::WebCoreSynchronousLoader): Push a new thread default
context to prevent other sources from running.
(WebCore::WebCoreSynchronousLoader::~WebCoreSynchronousLoader): Pop the inner thread default context.
(WebCore::closeCallback): If the client is synchronous call didFinishLoading now.
(WebCore::readCallback): Only call didFinishLoading if the client isn't synchronous.
(WebCore::ResourceHandle::defaultSession): Activate use-thread-context so that the soup session
respects the inner thread context.
(ResourceHandleClient):
(WebCore::ResourceHandleClient::isSynchronousClient): Added this virtual method.

Tools:

  • gtk/jhbuild.modules: Bumped the libsoup and glib dependencies

in the jhbuild file.

LayoutTests:

  • http/tests/xmlhttprequest/xmlhttprequest-sync-no-timers-expected.txt: Added.
  • http/tests/xmlhttprequest/xmlhttprequest-sync-no-timers.html: Added.
10:00 AM Changeset in webkit [109759] by Martin Robinson
  • 2 edits in releases/WebKitGTK/webkit-1.8/Source/WebKit2

Merging r109754

9:47 AM Changeset in webkit [109758] by Martin Robinson
  • 2 edits in releases/WebKitGTK/webkit-1.8/Tools

Merging r109722

9:47 AM Changeset in webkit [109757] by Martin Robinson
  • 4 edits in releases/WebKitGTK/webkit-1.8

Merging r109270

9:44 AM Changeset in webkit [109756] by Martin Robinson
  • 5 edits in releases/WebKitGTK/webkit-1.8

Merging r109719

9:15 AM Changeset in webkit [109755] by commit-queue@webkit.org
  • 10 edits
    2 deletes in trunk

Unreviewed, rolling out r109748.
http://trac.webkit.org/changeset/109748
https://bugs.webkit.org/show_bug.cgi?id=80296

Made some tests crash, will fix and recommit (Requested by
noamr on #webkit).

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

Source/WebKit2:

  • Target.pri:
  • UIProcess/API/qt/qquickwebpage.cpp:

(QQuickWebPagePrivate::paintToCurrentGLContext):
(PageProxyNode::PageProxyNode):
(PageProxyNode):
(PageProxyNode::changedStates):
(PageProxyNode::render):
(PageProxyNode::~PageProxyNode):
(QQuickWebPage::updatePaintNode):
(QQuickWebPagePrivate::updateSize):
(QQuickWebPagePrivate::resetPaintNode):
(QQuickWebPagePrivate::~QQuickWebPagePrivate):

  • UIProcess/API/qt/qquickwebpage_p_p.h:

(QQuickWebPagePrivate):

  • UIProcess/DrawingAreaProxy.h:

(WebKit):
(WebKit::DrawingAreaProxy::layerTreeHostProxy):
(DrawingAreaProxy):

  • UIProcess/DrawingAreaProxyImpl.cpp:

(WebKit::DrawingAreaProxyImpl::DrawingAreaProxyImpl):
(WebKit::DrawingAreaProxyImpl::enterAcceleratedCompositingMode):

  • UIProcess/LayerTreeHostProxy.h:

(LayerTreeHostProxy):

  • UIProcess/qt/LayerTreeHostProxyQt.cpp:

(WebKit::LayerTreeHostProxy::syncAnimations):
(WebKit::LayerTreeHostProxy::updateViewport):
(WebKit::LayerTreeHostProxy::syncLayerParameters):
(WebKit::LayerTreeHostProxy::flushLayerChanges):
(WebKit::LayerTreeHostProxy::ensureRootLayer):
(WebKit::LayerTreeHostProxy::syncRemoteContent):
(WebKit::LayerTreeHostProxy::dispatchUpdate):
(WebKit):
(WebKit::LayerTreeHostProxy::createDirectlyCompositedImage):
(WebKit::LayerTreeHostProxy::purgeGLResources):

  • UIProcess/qt/QtWebPageSGNode.cpp: Removed.
  • UIProcess/qt/QtWebPageSGNode.h: Removed.

Tools:

  • MiniBrowser/qt/main.cpp:

(main):

8:55 AM Changeset in webkit [109754] by joone.hur@collabora.co.uk
  • 2 edits in trunk/Source/WebKit2

[GTK] zlib link error with --enable-webkit2
https://bugs.webkit.org/show_bug.cgi?id=79877

Reviewed by Martin Robinson.

zlib should be linked properly.

  • GNUmakefile.am: Link $(ZLIB_LIBS) with libwebkit2gtk instead of

linking it with WebKitWebProcess.

8:54 AM Changeset in webkit [109753] by commit-queue@webkit.org
  • 7 edits in trunk

[GTK] plugins/netscape-plugin-page-cache-works.html fails
https://bugs.webkit.org/show_bug.cgi?id=74409

Patch by Zan Dobersek <zandobersek@gmail.com> on 2012-03-05
Reviewed by Martin Robinson.

Source/WebKit/gtk:

Add a method to override page-cache-for-plugins preference.

  • WebCoreSupport/DumpRenderTreeSupportGtk.cpp:

(DumpRenderTreeSupportGtk::setPageCacheSupportsPlugins):

  • WebCoreSupport/DumpRenderTreeSupportGtk.h:

(DumpRenderTreeSupportGtk):

Tools:

Add support for overriding the page-cache-for-plugins preference
through DumpRenderTreeSupport.

  • DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:

(booleanFromValue): A helper function to convert a string to boolean.
(LayoutTestController::overridePreference):

LayoutTests:

Unskip one new passing test and reclassify one failure.

  • platform/gtk/Skipped:
8:52 AM WebKitGTK/1.8.x edited by Martin Robinson
(diff)
8:40 AM WebKitGTK/1.8.x edited by Martin Robinson
(diff)
8:38 AM Changeset in webkit [109752] by Csaba Osztrogonác
  • 2 edits
    1 add in trunk/LayoutTests

[Qt] Unreviewed gardening.

8:37 AM Changeset in webkit [109751] by jpetsovits@rim.com
  • 7 edits in trunk/Source/WebKit/blackberry

Make accelerated compositing work again with direct rendering.
https://bugs.webkit.org/show_bug.cgi?id=80181
RIM PR: 139110

Reviewed by Antonio Gomes.
Internally reviewed by Arvid Nilsson.

The significant amount of refactoring and optimization work
that has gone into accelerated compositing missed out on
some of the code paths that are being used in direct rendering.

Animations were relying on blitVisibleContents() only (which
is a no-op in direct rendering mode). There were early returns
which are suitable to determine whether screen contents need
to be updated at all; however, when we're already forcing a
re-render then those checks would cause the composition surface
not to appear at all, or avoid drawing new animation frames.

We went through dispatchMessage(), potentially causing
mismatches between rendered (but not yet posted) back content
and layers composited on top of it. As we're rendering onto
the sole target surface (the window) directly and posting
from the same thread, we have to wait for compositing on the
UI thread to finish before posting the window.

In turn, this patch combines both drawSubLayers() and
blendCompositingSurface() calls into one method, reducing
the number of messages to the UI thread within
renderDirectToWindow() to one.

blendCompositingMessage() in renderDirectToScreen() was called
with contents coordinates rather than viewport coordinates.
That caused some of the composited content to be cut off when
the scroll position wasn't (0, 0).

We called copyPreviousContentsToBackSurfaceOfWindow() twice for
one frame, in both renderDirectToWindow() and invalidateWindow().
Only one of those (the latter one) is necessary.

  • Api/BackingStore.cpp:

(BlackBerry::WebKit::BackingStorePrivate::BackingStorePrivate):
(BlackBerry::WebKit::BackingStorePrivate::renderDirectToWindow):
(BlackBerry::WebKit::BackingStorePrivate::drawSubLayers):
(WebKit):
(BlackBerry::WebKit::BackingStorePrivate::drawAndBlendLayersForDirectRendering):

  • Api/BackingStore.h:

(WebKit):

  • Api/BackingStore_p.h:

(BackingStorePrivate):
(BlackBerry::WebKit::BackingStorePrivate::isDirectRenderingAnimationMessageScheduled):
(BlackBerry::WebKit::BackingStorePrivate::setDirectRenderingAnimationMessageScheduled):

  • Api/WebPage_p.h:

(BlackBerry::WebKit::WebPagePrivate::isAcceleratedCompositingActive):
(WebPagePrivate):

  • WebKitSupport/WebPageCompositor.cpp:

(BlackBerry::WebKit::WebPageCompositor::WebPageCompositor):
(BlackBerry::WebKit::WebPageCompositor::~WebPageCompositor):
(BlackBerry::WebKit::WebPageCompositor::drawLayers):
(BlackBerry::WebKit::WebPageCompositor::animationTimerFired):

  • WebKitSupport/WebPageCompositor.h:

(WebPageCompositor):

8:34 AM Changeset in webkit [109750] by Carlos Garcia Campos
  • 14 edits
    1 delete in trunk/Source/WebKit2

[WK2] WKPageGetContextMenuFromProposedContextMenuCallback should pass a HitTestResult
https://bugs.webkit.org/show_bug.cgi?id=77208

Reviewed by Anders Carlsson.

A HitTestResultData is now passed to ShowContextMenu WebPageProxy
message instead of the ContextMenuState. ContextMenu client has
been updated to pass the HitTestResult to the
getContextMenuFromProposedMenu callback.

  • GNUmakefile.am: Remove ContextMenuState.h.
  • Shared/APIClientTraits.h:
  • Shared/ContextMenuState.h: Removed.
  • Shared/WebHitTestResult.h:

(WebKit::WebHitTestResult::Data::Data): Add constructor that takes
a WebCore::HitTestResult.

  • UIProcess/API/C/WKPage.h: Add HitTestResult parameter to

getContextMenuFromProposedMenu callback and deprecate the old
version.

  • UIProcess/WebPageContextMenuClient.cpp:

(WebKit::WebPageContextMenuClient::getContextMenuFromProposedMenu):
Pass a HitTestResult to getContextMenuFromProposedMenu or use the
deprecated one if client version is an old one.

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

(WebKit::WebPageProxy::showContextMenu):
(WebKit::WebPageProxy::internalShowContextMenu): Save the
WebHitTestResult::Data to use it for handling context menu actions.
(WebKit::WebPageProxy::contextMenuItemSelected): Use the saved
WebHitTestResult::Data.

  • UIProcess/WebPageProxy.h:
  • UIProcess/WebPageProxy.messages.in:
  • WebKit2.xcodeproj/project.pbxproj: Remove ContextMenuState.h.
  • WebProcess/WebCoreSupport/WebChromeClient.cpp:

(WebKit::WebChromeClient::mouseDidMoveOverElement): Use the new
WebHitTestResult::Data constructor that takes a WebCore::HitTestResult.

  • WebProcess/WebPage/WebContextMenu.cpp:

(WebKit::WebContextMenu::show): Create a WebHitTestResult::Data
instead of a ContextMenuState and pass it to ShowContextMenu message.

  • win/WebKit2.vcproj: ContextMenuState.h.
8:26 AM Changeset in webkit [109749] by rwlbuis@webkit.org
  • 6 edits in trunk/Tools

[BlackBerry] Update Tools/DumpRenderTree
https://bugs.webkit.org/show_bug.cgi?id=80287

Reviewed by Antonio Gomes.

Update so we are sure we can build our implementation of DRT.

  • DumpRenderTree/DumpRenderTree.h: include DumpRenderTreeBlackBerry.h.
  • DumpRenderTree/PixelDumpSupport.cpp: include PixelDumpSupportBlackBerry.h.
  • DumpRenderTree/blackberry/AccessibilityControllerBlackBerry.cpp:

(AccessibilityController::addNotificationListener): add missing hook.
(AccessibilityController::removeNotificationListener): add missing hook.

  • DumpRenderTree/blackberry/AccessibilityUIElementBlackBerry.cpp:

(AccessibilityUIElement::isSelectedOptionActive): add missing hook.

  • DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:

(LayoutTestController::setMockSpeechInputDumpRect): add missing hook.
(LayoutTestController::simulateDesktopNotificationClick): add missing hook.

7:52 AM Changeset in webkit [109748] by noam.rosenthal@nokia.com
  • 10 edits
    2 adds in trunk

[Qt] [WK2] Support threaded renderer in WK2
https://bugs.webkit.org/show_bug.cgi?id=76661

Source/WebKit2:

Made the appropriate fixes in the UI process code to make rendering thread-safe.

  • Separated the scenegraph node code to QtWebPageSGNode. QtWebPageSGNode has direct access to LayerTreeHostProxy.
  • Each function in LayerTreeHostProxy can be either called from the main thread (handling messages from the web process), or from the renderer thread (handling the GL context). The render-queue is locked with a mutex, and messages back to the web process are sent via callOnMainThread.
  • LayerTreeHostProxy is now ThreadSafeRefCounted. That is done to make sure that the GL resources it creates are only freed when the QtWebPageSGNode is deleted, which can be before or after the owning DrawingAreaProxy is deleted. This ensures that the class is deleted only after its GL resources are freed, otherwise those resources may leak.

Based on a patch by Viatcheslav Ostapenko.

Reviewed by Kenneth Rohde Christiansen.

  • Target.pri: Added new files.
  • UIProcess/API/qt/qquickwebpage.cpp: Moved QtWebPageSGNode out.

(QQuickWebPage::updatePaintNode): Call QtWebPageSGNode
(QQuickWebPagePrivate::updateSize): Call QtWebPageSGNode
(QQuickWebPagePrivate::didDeleteSGWebPageNode): Override QtWebPageSGNode::Client
(QQuickWebPagePrivate::~QQuickWebPagePrivate):

  • UIProcess/API/qt/qquickwebpage_p_p.h:

(QQuickWebPagePrivate):

  • UIProcess/DrawingAreaProxy.h:

(WebKit):
(WebKit::DrawingAreaProxy::layerTreeHostProxy): Made LayerTreeHostProxy ref-counted.
(DrawingAreaProxy):

  • UIProcess/DrawingAreaProxyImpl.cpp:

(WebKit::DrawingAreaProxyImpl::DrawingAreaProxyImpl):
(WebKit::DrawingAreaProxyImpl::enterAcceleratedCompositingMode):

  • UIProcess/LayerTreeHostProxy.h:

(WebKit):
(WebKit::LayerTreeHostProxy::create):
(LayerTreeHostProxy):

  • UIProcess/qt/LayerTreeHostProxyQt.cpp:

(WebKit::LayerTreeHostProxy::paintToCurrentGLContext):
(WebKit):
(MainThreadGuardedInvoker):

A class that allows invoking functions in the main thread, while guarding a ref-
counted object.

(WebKit::MainThreadGuardedInvoker::call):
(WebKit::MainThreadGuardedInvoker::MainThreadGuardedInvoker):
(WebKit::MainThreadGuardedInvoker::invoke):
(WebKit::LayerTreeHostProxy::syncAnimations):
(WebKit::LayerTreeHostProxy::updateViewport):
(WebKit::LayerTreeHostProxy::detachDrawingArea):
(WebKit::LayerTreeHostProxy::syncLayerParameters):
(WebKit::LayerTreeHostProxy::setShouldRenderNextFrame):
(WebKit::LayerTreeHostProxy::flushLayerChanges):
(WebKit::LayerTreeHostProxy::ensureRootLayer):
(WebKit::LayerTreeHostProxy::syncRemoteContent):
(WebKit::LayerTreeHostProxy::dispatchUpdate):
(WebKit::LayerTreeHostProxy::createDirectlyCompositedImage):
(WebKit::LayerTreeHostProxy::purgeGLResources):

  • UIProcess/qt/QtWebPageSGNode.cpp: Added.
  • UIProcess/qt/QtWebPageSGNode.h: Added.

Tools:

Remove the QML_NO_THREADED_RENDERER environment variable from MiniBrowser.

Reviewed by Kenneth Rohde Christiansen.

  • MiniBrowser/qt/main.cpp:

(main):

7:37 AM Changeset in webkit [109747] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/blackberry

[BlackBerry] DOMSupport visibleSelectionForRangeInputElement incorrectly dereferences a null range.
https://bugs.webkit.org/show_bug.cgi?id=80274

Patch by George Staikos <gstaikos@rim.com> on 2012-03-05
Reviewed by Antonio Gomes.

A null range can be returned so we should not blindly deref it.
Reviewed Internally by Mike Fenton.

  • WebKitSupport/DOMSupport.cpp:

(BlackBerry::WebKit::DOMSupport::visibleSelectionForRangeInputElement):

7:36 AM Changeset in webkit [109746] by ahf@0x90.dk
  • 3 edits in trunk/Source/WebCore

Remove pointer to timer and use the timers directly in the tiled backing store https://bugs.webkit.org/show_bug.cgi?id=80283

Patch by Kenneth Rohde Christiansen and Alexander Færøy.

Reviewed by Simon Hausmann.

  • platform/graphics/TiledBackingStore.cpp:

(WebCore::TiledBackingStore::TiledBackingStore):
(WebCore::TiledBackingStore::~TiledBackingStore):
(WebCore::TiledBackingStore::createTiles):
(WebCore::TiledBackingStore::startTileBufferUpdateTimer):
(WebCore::TiledBackingStore::startTileCreationTimer):

  • platform/graphics/TiledBackingStore.h:

(TiledBackingStore):

7:35 AM Changeset in webkit [109745] by apavlov@chromium.org
  • 2 edits in trunk/Source/WebCore

Web Inspector: [Styles] Tabbing an empty new property in the middle of style moves the editor to the next section
https://bugs.webkit.org/show_bug.cgi?id=80264

Reviewed by Pavel Feldman.

  • inspector/front-end/StylesSidebarPane.js:

(WebInspector.StylePropertyTreeElement.prototype.element.userInput.previousContent.context.moveDirection.alreadyNew):
(WebInspector.StylePropertyTreeElement.prototype):

7:30 AM Changeset in webkit [109744] by rwlbuis@webkit.org
  • 2 edits in trunk/Source/WebCore

[BlackBerry] Update LocalizedStringsBlackBerry.cpp
https://bugs.webkit.org/show_bug.cgi?id=80278

Reviewed by Antonio Gomes.

Update LocalizedStringsBlackBerry.cpp to current HEAD.

  • platform/blackberry/LocalizedStringsBlackBerry.cpp:

(WebCore::inputElementAltText): fall back to "Submit".
(WebCore::imageTitle): choose the format "filename(widthxheight)" like Chrome does.
(WebCore::fileButtonNoFilesSelectedLabel): fall back to "No File Chosen" translation like Chrome does.
(WebCore):

7:24 AM Changeset in webkit [109743] by loislo@chromium.org
  • 3 edits
    1 add in trunk

Web Inspector: [chromium] introduce HeapSnapshot performance test.
https://bugs.webkit.org/show_bug.cgi?id=80280

Reviewed by Pavel Feldman.

PerformanceTests:

  • inspector/detailed-heapshots-smoke-test.html: Added.

Source/WebCore:

  • inspector/front-end/HeapSnapshotProxy.js:

(WebInspector.HeapSnapshotLoaderProxy.prototype.finishLoading.updateStaticData):
(WebInspector.HeapSnapshotLoaderProxy.prototype.finishLoading):
(WebInspector.HeapSnapshotLoaderProxy.prototype._callLoadCallbacks):

7:14 AM Changeset in webkit [109742] by pfeldman@chromium.org
  • 2 edits in trunk/Source/WebCore

Web Inspector: cannot be launched when localStorage is disabled
https://bugs.webkit.org/show_bug.cgi?id=80252

Reviewed by Vsevolod Vlasov.

  • inspector/front-end/Settings.js:
7:07 AM Changeset in webkit [109741] by pfeldman@chromium.org
  • 4 edits
    2 adds in trunk

Web Inspector: check for the number of parsed css properties.
https://bugs.webkit.org/show_bug.cgi?id=80268

Reviewed by Vsevolod Vlasov.

Source/WebCore:

Test: inspector/styles/set-property-boundaries.html

  • inspector/InspectorCSSAgent.cpp:

(WebCore::InspectorCSSAgent::didRemoveDOMNode):

  • inspector/InspectorStyleSheet.cpp:

(WebCore::InspectorStyle::setPropertyText):

LayoutTests:

  • inspector/styles/set-property-boundaries-expected.txt: Added.
  • inspector/styles/set-property-boundaries.html: Added.
7:00 AM Changeset in webkit [109740] by vsevik@chromium.org
  • 2 edits in trunk/Source/WebCore

Web Inspector: Tabbed pane should redraw tab elements when tab is closed.
https://bugs.webkit.org/show_bug.cgi?id=80273

Reviewed by Pavel Feldman.

  • inspector/front-end/TabbedPane.js:

(WebInspector.TabbedPane.prototype.closeTab):

6:55 AM WebKitGTK/WebKit2Roadmap edited by Carlos Garcia Campos
1.8 milestones done! (diff)
6:54 AM Changeset in webkit [109739] by ahf@0x90.dk
  • 2 edits in trunk/Source/WebCore

Improve comments in the tiled backing store https://bugs.webkit.org/show_bug.cgi?id=80279

Patch by Kenneth Rohde Christiansen and Alexander Færøy.

Reviewed by Simon Hausmann.

  • platform/graphics/TiledBackingStore.cpp:

(WebCore::TiledBackingStore::createTiles):

6:26 AM Changeset in webkit [109738] by ahf@0x90.dk
  • 3 edits in trunk/Source/WebCore

TiledBackingStore.{h,cpp} contains unclear variable names https://bugs.webkit.org/show_bug.cgi?id=80276

Patch by Kenneth Rohde Christiansen and Alexander Færøy.

Reviewed by Simon Hausmann.

This patch renames some of the variables in TiledBackingStore.cpp to
enhance the clearity and for consistence.

The visibleContentsRect is renamed to visibleRect as it is not in
contents coordinates.

The panningTrajectoryVector and m_visibleRectTrajectoryVector are
renamed to just *[m_]trajectoryVector, as that is descriptive enough.

The previous prefix has also been removed, as it is being used as the
current one in the code. This avoids confusion.

  • platform/graphics/TiledBackingStore.cpp:

(WebCore::TiledBackingStore::coverWithTilesIfNeeded):
(WebCore::TiledBackingStore::visibleRect):
(WebCore::TiledBackingStore::visibleAreaIsCovered):
(WebCore::TiledBackingStore::createTiles):
(WebCore::TiledBackingStore::computeCoverAndKeepRect):
(WebCore::TiledBackingStore::removeAllNonVisibleTiles):

  • platform/graphics/TiledBackingStore.h:

(TiledBackingStore):

6:16 AM Changeset in webkit [109737] by Simon Hausmann
  • 2 edits in trunk/Source/WebCore

[Qt] Fix build with Qt 5 and OpenGL ES 2.0

Reviewed by Noam Rosenthal.

  • platform/graphics/texmap/TextureMapper.h: Since we don't do QT += opengl with Qt 5 anymore

here in WebCore, we cannot check for QT_OPENGL_LIB. But since this is Qt5, we know that the
GLES setting comes qconfig.h and we can rely on it.

6:00 AM Changeset in webkit [109736] by ahf@0x90.dk
  • 2 edits in trunk/Source/WebCore

Whitespace clean-up of TiledBackingStore.cpp.

Rubber-stamped by Kenneth Rohde Christiansen.

Already covered by existing tests.

  • platform/graphics/TiledBackingStore.cpp:

(WebCore):
(WebCore::TiledBackingStore::updateTileBuffers):
(WebCore::TiledBackingStore::paint):

5:57 AM Changeset in webkit [109735] by Carlos Garcia Campos
  • 4 edits in trunk/Source

Unreviewed. Fix make distcheck.

Source/JavaScriptCore:

  • GNUmakefile.list.am: Add missing header file.

Source/WebCore:

  • GNUmakefile.list.am: Add missing header file.
5:29 AM Changeset in webkit [109734] by ahf@0x90.dk
  • 2 edits in trunk/Tools

Unreviewed. Add myself to committer list.

  • Scripts/webkitpy/common/config/committers.py:
5:28 AM WebKitGTK/1.8.x edited by Carlos Garcia Campos
(diff)
5:00 AM Changeset in webkit [109733] by vestbo@webkit.org
  • 6 edits
    3 adds in trunk/Tools

[Qt] Use config test to determine if the compiler supports -MD

We used to assume that unix systems building against Qt5 would have
a compiler that supported -MD. Although this was usually the case,
we failed to take into account broken tools for distributed builds
(e.g. teambuilder or icecream) which would end up producing .d files
in the root of the build dir instead of along-side the object file.

Now that we use a config-test to determine the support, we'll capture
those cases, unless distributed builds are enabled after the initial
build-webkit run.

Reviewed by Csaba Osztrogonác.

4:03 AM Changeset in webkit [109732] by apavlov@chromium.org
  • 2 edits in trunk/Source/WebCore

Web Inspector: Incorrect appropriateSelectorFor() suggestion for when a DOMNode has more than 2 CSS classes
https://bugs.webkit.org/show_bug.cgi?id=80258

Reviewed by Pavel Feldman.

  • inspector/front-end/DOMAgent.js:

(WebInspector.DOMNode.prototype.appropriateSelectorFor):

3:55 AM Changeset in webkit [109731] by wingo@igalia.com
  • 3 edits in trunk/Source/JavaScriptCore

WTF: Micro-optimize cleanup of empty vectors and hash tables
https://bugs.webkit.org/show_bug.cgi?id=79903

Reviewed by Michael Saboff and Geoffrey Garen.

This patch speeds up cleanup of vectors and hash tables whose
backing store was never allocated. This is the case by default
for most vectors / hash tables that never had any entries added.

The result for me is that calling checkSyntax 1000 times on
concat-jquery-mootools-prototype.js goes from 6.234s to 6.068s, a
2.4% speedup.

  • wtf/HashTable.h:

(WTF::HashTable::~HashTable):
(WTF::::clear): Don't deallocate the storage or frob member
variables if there is no backing storage.

  • wtf/Vector.h:

(WTF::VectorBufferBase::deallocateBuffer): Likewise.

2:44 AM Changeset in webkit [109730] by apavlov@chromium.org
  • 7 edits
    2 adds in trunk

Web Inspector: [Styles] [CRASH] Handle rule addition and inline style editing failure due to Content-Security-Policy in the page
https://bugs.webkit.org/show_bug.cgi?id=80024

Reviewed by Pavel Feldman.

Source/WebCore:

Test: inspector/styles/add-new-rule-inline-style-csp.html

  • inspector/InspectorCSSAgent.cpp:

(WebCore::InspectorCSSAgent::viaInspectorStyleSheet):

  • inspector/InspectorCSSAgent.h:

(InlineStyleOverrideScope):
(WebCore::InspectorCSSAgent::InlineStyleOverrideScope::InlineStyleOverrideScope):
(WebCore::InspectorCSSAgent::InlineStyleOverrideScope::~InlineStyleOverrideScope):
(InspectorCSSAgent):

  • inspector/InspectorStyleSheet.cpp:

(WebCore::InspectorStyleSheetForInlineStyle::setStyleText):

  • page/ContentSecurityPolicy.cpp:

(WebCore::ContentSecurityPolicy::ContentSecurityPolicy):
(WebCore::ContentSecurityPolicy::allowInlineStyle):
(WebCore::ContentSecurityPolicy::setOverrideAllowInlineStyle):
(WebCore):

  • page/ContentSecurityPolicy.h:

(ContentSecurityPolicy):

LayoutTests:

  • inspector/styles/add-new-rule-inline-style-csp-expected.txt: Added.
  • inspector/styles/add-new-rule-inline-style-csp.html: Added.
2:26 AM Changeset in webkit [109729] by commit-queue@webkit.org
  • 5 edits in trunk/Source/WebCore

[Forms] The "optgroup" element should not be a form-associated element
https://bugs.webkit.org/show_bug.cgi?id=80234

Patch by Yoshifumi Inoue <yosin@chromium.org> on 2012-03-05
Reviewed by Kent Tamura.

This patch changes base class of HTMLOptGroup to HTMLElement from
HTMLFormControlElement to avoid the "optgroup" element in form-associate
elements collection.

This patch doesn't affect HTMLOptionElement::disabled's static_cast. However,
it doesn't good at coding style. This patch also fix it.

No new tests. No behavior changes.

  • html/HTMLOptGroupElement.cpp:

(WebCore::HTMLOptGroupElement::HTMLOptGroupElement): Remove "form" parameter.
(WebCore::HTMLOptGroupElement::create): Remove "form" parameter.
(WebCore::HTMLOptGroupElement::childrenChanged): Replace base method call.
(WebCore::HTMLOptGroupElement::parseAttribute): Replace base method call.
(WebCore::HTMLOptGroupElement::attach): Replace base method call.
(WebCore::HTMLOptGroupElement::detach): Replace base method call.

  • html/HTMLOptGroupElement.h:

(HTMLOptGroupElement): Change base class to HTMLElement.

  • html/HTMLOptionElement.cpp:

(WebCore::HTMLOptionElement::disabled): Replace static_cast<HTMLFormControlElement*> to static_cast<HTMLElement*> with checking isHTMLElement.

  • html/HTMLTagNames.in: Remove "constructorNeedsFormElement" for not passing "form" parameter in HTMLElementFactory.
2:01 AM Changeset in webkit [109728] by podivilov@chromium.org
  • 4 edits in trunk

Web Inspector: fix extensions-resource.html test.
https://bugs.webkit.org/show_bug.cgi?id=80183

Reviewed by Vsevolod Vlasov.

Source/WebCore:

  • inspector/front-end/DebuggerPresentationModel.js:

(WebInspector.DebuggerPresentationModel.Linkifier.prototype._updateAnchor):

LayoutTests:

  • platform/chromium/test_expectations.txt:
1:49 AM Changeset in webkit [109727] by tkent@chromium.org
  • 2 edits
    1 delete in trunk/LayoutTests

[Chromium] Rebaseline search-field-cancel.html for r109503.
Fix an error of the previous rebaseline.

  • platform/chromium-mac-snowleopard/fast/repaint/search-field-cancel-expected.txt: Removed.
  • platform/chromium-win/fast/repaint/search-field-cancel-expected.txt:
1:24 AM Changeset in webkit [109726] by Csaba Osztrogonác
  • 2 edits in trunk/Tools

Qt API test buildstep throws exception after buildmaster update
https://bugs.webkit.org/show_bug.cgi?id=80249

Reviewed by Zoltan Herczeg.

  • BuildSlaveSupport/build.webkit.org-config/master.cfg: Disable API tests on the Qt bot temporarily.

(BuildAndTestFactory.init):

1:05 AM Changeset in webkit [109725] by Csaba Osztrogonác
  • 2 edits in trunk/LayoutTests

Unreviewed gardening, skip a new failing test.

  • platform/qt/Skipped:
12:48 AM Changeset in webkit [109724] by caseq@chromium.org
  • 17 edits in trunk

Add instrumentation for frame start/end on timeline.

Web Inspector: add timeline instrumentation for frame events
https://bugs.webkit.org/show_bug.cgi?id=80127

Reviewed by Pavel Feldman.

Source/WebCore:

  • display frame boundaries when vertical overview mode is on
  • aggregate by frame in vertical overview mode
  • switched event filtering criteria from index to time in vertical overview mode
  • inspector/InspectorInstrumentation.cpp:

(WebCore::InspectorInstrumentation::didBeginFrameImpl):
(WebCore):

  • inspector/InspectorInstrumentation.h:

(InspectorInstrumentation):
(WebCore::InspectorInstrumentation::didBeginFrame):
(WebCore):

  • inspector/InspectorTimelineAgent.cpp:

(TimelineRecordType):
(WebCore::InspectorTimelineAgent::didBeginFrame):
(WebCore):

  • inspector/InspectorTimelineAgent.h:

(InspectorTimelineAgent):

  • inspector/front-end/TimelineModel.js:
  • inspector/front-end/TimelineOverviewPane.js:

(WebInspector.TimelineOverviewPane):
(WebInspector.TimelineOverviewPane.prototype._showMemoryGraph):
(WebInspector.TimelineOverviewPane.prototype.setStartAtZero):
(WebInspector.TimelineOverviewPane.prototype.updateEventDividers):
(WebInspector.TimelineOverviewPane.prototype.sidebarResized):
(WebInspector.TimelineOverviewPane.prototype.reset):
(WebInspector.TimelineOverviewPane.prototype.accept):
(WebInspector.TimelineOverviewPane.prototype.windowStartTime):
(WebInspector.TimelineOverviewPane.prototype.windowEndTime):
(WebInspector.TimelineOverviewPane.prototype._onWindowChanged):
(WebInspector.TimelineStartAtZeroOverview):
(WebInspector.TimelineStartAtZeroOverview.prototype.reset):
(WebInspector.TimelineStartAtZeroOverview.prototype.update):
(WebInspector.TimelineStartAtZeroOverview.prototype._aggregateFrames):
(WebInspector.TimelineStartAtZeroOverview.prototype._aggregateFrameStatistics):
(WebInspector.TimelineStartAtZeroOverview.prototype._aggregateRecords):
(WebInspector.TimelineStartAtZeroOverview.prototype._buildBar):
(WebInspector.TimelineStartAtZeroOverview.prototype.getWindowTimes):

  • inspector/front-end/TimelinePanel.js:

(WebInspector.TimelinePanel.prototype._updateEventDividers):
(WebInspector.TimelinePanel.prototype._createEventDivider):
(WebInspector.TimelinePanel.prototype._toggleStartAtZeroButtonClicked):
(WebInspector.TimelinePanel.prototype._innerAddRecordToTimeline.addTimestampRecords):
(WebInspector.TimelinePanel.prototype._innerAddRecordToTimeline):
(WebInspector.TimelinePanel.prototype._refresh):
(WebInspector.TimelinePanel.prototype._refreshRecords):
(WebInspector.TimelineCategoryFilter.prototype.accept):

  • inspector/front-end/TimelinePresentationModel.js:

(WebInspector.TimelinePresentationModel.prototype.get _recordStyles):

  • inspector/front-end/inspectorCommon.css:
  • inspector/front-end/timelinePanel.css:

(#timeline-container):
(.timeline .resources-event-divider):
(.timeline.timeline-start-at-zero .resources-divider):
(.timeline .resources-event-divider.timeline-frame-divider):

Source/WebKit/chromium:

  • expose an instrumentation method from WebWidget to mark frame update start
  • public/WebWidget.h:

(WebWidget):
(WebKit::WebWidget::instrumentBeginFrame):

  • src/WebViewImpl.cpp:

(WebKit::WebViewImpl::instrumentBeginFrame):
(WebKit):

  • src/WebViewImpl.h:

(WebViewImpl):

LayoutTests:

  • inspector/timeline/timeline-enum-stability-expected.txt:
12:44 AM Changeset in webkit [109723] by morrita@google.com
  • 2 edits in trunk/Source/WebCore

Unreviewed build fix for !ENABLE(SHADOW_DOM).

  • html/shadow/HTMLContentElement.cpp:

(WebCore::contentTagName):

12:42 AM Changeset in webkit [109722] by Martin Robinson
  • 2 edits in trunk/Tools

[GTK] Unit tests are noisy when run under jhbuild
https://bugs.webkit.org/show_bug.cgi?id=80241

Reviewed by Philippe Normand.

Force the 'memory' backend in GSettings so that each unit
test doesn't produce a warning when it's forced to fall back
to the 'memory' backend.

  • Scripts/run-gtk-tests:

(TestRunner.run): Force the 'memory' backend.

12:37 AM Changeset in webkit [109721] by morrita@google.com
  • 14 edits
    2 adds in trunk

Internally used HTMLContentElement subclasses should have correct wrapper.
https://bugs.webkit.org/show_bug.cgi?id=80237

Reviewed by Kent Tamura.

Source/WebCore:

DetailsContentElement and DetailsSummaryElement used to use
<div> as their tag name. But this means they are wrapped by
wrapper objects for HTMLDivElement, which is wrong. This happened
to work though because HTMLDivElement has no extra state or API.

This change introduces "noConstructor" keyword for make_name.pl
sources. This keyword allows a tag name to specify its own
wrapper without making the tag name visible from the parser, or
HTMLElementFactory in precise.

Following this addition, this change also adds a new tag name
"webkitShadowContent" for DetailsContentElement and DetailsSummaryElement,
which has no constructor, and whose wrapper type is HTMLElement.

This change isn't visible from the page author and only matters for testing.

Test: fast/dom/shadow/content-element-user-agent-shadow.html

  • dom/make_names.pl:

(defaultTagPropertyHash):
(buildConstructorMap):
(printConstructors):
(printFunctionInits):

  • html/HTMLDetailsElement.cpp:

(WebCore::DetailsContentElement::DetailsContentElement):
(WebCore::DetailsSummaryElement::DetailsSummaryElement):

  • html/HTMLTagNames.in:
  • html/shadow/HTMLContentElement.cpp:

(WebCore::contentTagName):

LayoutTests:

  • fast/dom/shadow/content-element-user-agent-shadow-expected.txt: Added.
  • fast/dom/shadow/content-element-user-agent-shadow.html: Added.
  • platform/chromium-win/fast/html/details-remove-summary-1-and-click-expected.txt:
  • platform/chromium-win/fast/html/details-remove-summary-4-and-click-expected.txt:
  • platform/gtk/fast/html/details-remove-summary-1-and-click-expected.txt:
  • platform/gtk/fast/html/details-remove-summary-4-and-click-expected.txt:
  • platform/mac/fast/html/details-remove-summary-1-and-click-expected.txt:
  • platform/mac/fast/html/details-remove-summary-4-and-click-expected.txt:
  • platform/qt/fast/html/details-remove-summary-1-and-click-expected.txt:
  • platform/qt/fast/html/details-remove-summary-4-and-click-expected.txt:
12:35 AM Changeset in webkit [109720] by Martin Robinson
  • 4 edits in trunk

[GTK] "Console: undefined @0: ReferenceError: Can't find variable: WebInspector" during testwebinspector
https://bugs.webkit.org/show_bug.cgi?id=80235

Reviewed by Philippe Normand.

Source/WebKit/gtk:

Wait to inspect the WebView until the page has finished loading. Also
clean up some minor style errors.

  • tests/testwebinspector.c:

(closeInspector): Small style fixes.
(showInspector): Ditto.
(loadFinished): Ditto.
(test_webkit_web_inspector_close_and_inspect): Wait to inspect until the page has loaded.
(test_webkit_web_inspector_destroy_inspected_web_view): Ditto.
(main): Small style fixes.

Tools:

  • Scripts/run-gtk-tests:

(TestRunner.run): Use the WEBKIT_INSPECTOR_PATH environment variable so that
inspector resources path determination is shared by all tests.

12:28 AM Changeset in webkit [109719] by Martin Robinson
  • 7 edits in trunk

[GTK] REGRESSION: r108278 broke some tests that expect focus
https://bugs.webkit.org/show_bug.cgi?id=79084

Reviewed by Philippe Normand.

Source/WebKit/gtk:

Grab focus before running the test. This ensures that if the
WebView lost focus, it has it before sending events.

  • tests/testcopyandpaste.c:

(test_copy_and_paste): Grab focus.

Tools:

Grab focus when dumping test results and also when sending
events. During the course of testing, the WebView may lose
focus and this seems to snap it back when tests demand it.

  • DumpRenderTree/gtk/DumpRenderTree.cpp:

(dump): Grab focus.

  • DumpRenderTree/gtk/EventSender.cpp:

(dispatchEvent): Ditto.

LayoutTests:

  • platform/gtk/Skipped: Unskip passing tests.
12:22 AM Changeset in webkit [109718] by shinyak@chromium.org
  • 5 edits in trunk/Source/WebCore

Refactoring: Move HTMLContentElement::attach to InsertionPoint::attach.
https://bugs.webkit.org/show_bug.cgi?id=80243

Reviewed by Hajime Morita.

Since the current code in HTMLContentElement::attach() will be used for coming <shadow>
elements, it is natural that InsertionPoint::attach() has such code.

No new tests, no change in behavior.

  • html/shadow/HTMLContentElement.cpp:
  • html/shadow/HTMLContentElement.h:

(HTMLContentElement):

  • html/shadow/InsertionPoint.cpp:

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

  • html/shadow/InsertionPoint.h:

(InsertionPoint):

12:18 AM WebKitGTK/1.8.x edited by Martin Robinson
(diff)
12:18 AM Changeset in webkit [109717] by tkent@chromium.org
  • 5 edits
    3 adds in trunk/LayoutTests

[Chromium] Rebaseline search-field-cancel.html for r109503.

  • platform/chromium-linux/fast/repaint/search-field-cancel-expected.png:
  • platform/chromium-mac-leopard/fast/repaint/search-field-cancel-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/search-field-cancel-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/search-field-cancel-expected.txt: Added.
  • platform/chromium-win/fast/repaint/search-field-cancel-expected.png:
  • platform/chromium-win/fast/repaint/search-field-cancel-expected.txt:
  • platform/chromium/test_expectations.txt:
12:13 AM Changeset in webkit [109716] by abarth@webkit.org
  • 12 edits in trunk/Source/WebCore

allowDatabaseAccess and databaseExceededQuota should be part of DatabaseContext not ScriptExecutionContext
https://bugs.webkit.org/show_bug.cgi?id=80178

Reviewed by Eric Seidel.

These functions are only used by SQLDatabase, which means we can move
them to DatabaseContext, removing one more tendril of the SQLDatabase
code.

  • dom/Document.cpp:

(WebCore):

  • dom/Document.h:

(Document):

  • dom/ScriptExecutionContext.h:

(ScriptExecutionContext):

  • storage/DatabaseContext.cpp:

(WebCore::DatabaseContext::DatabaseContext):
(WebCore::DatabaseContext::from):
(WebCore::DatabaseContext::allowDatabaseAccess):
(WebCore):
(WebCore::DatabaseContext::databaseExceededQuota):

  • storage/DatabaseContext.h:

(DatabaseContext):

  • storage/DatabaseTracker.cpp:

(WebCore::DatabaseTracker::canEstablishDatabase):

  • storage/SQLTransaction.cpp:

(WebCore::SQLTransaction::executeSQL):

  • storage/SQLTransactionClient.cpp:

(WebCore::SQLTransactionClient::didExceedQuota):

  • storage/SQLTransactionSync.cpp:

(WebCore::SQLTransactionSync::executeSQL):

  • workers/WorkerContext.cpp:

(WebCore):

  • workers/WorkerContext.h:

(WorkerContext):

12:08 AM Changeset in webkit [109715] by Martin Robinson
  • 2 edits in releases/WebKitGTK/webkit-1.8/Source/WebCore

Merging r109580

12:07 AM WebKitGTK/1.8.x edited by Martin Robinson
(diff)
12:07 AM Changeset in webkit [109714] by Martin Robinson
  • 2 edits in releases/WebKitGTK/webkit-1.8/Tools

Merging r109509

12:05 AM Changeset in webkit [109713] by Martin Robinson
  • 2 edits in releases/WebKitGTK/webkit-1.8/Tools

Merging r109396

12:03 AM Changeset in webkit [109712] by Philippe Normand
  • 2 edits in trunk/LayoutTests

Unreviewed, mark two tests as flaky in GTK.

  • platform/gtk/test_expectations.txt:

editing/selection/select-line-break-with-opposite-directionality.html
and fast/css/hover-update.html are flaky.

12:02 AM Changeset in webkit [109711] by Martin Robinson
  • 13 edits in releases/WebKitGTK/webkit-1.8/Source/WebCore

Merging 109515

Mar 4, 2012:

11:58 PM Changeset in webkit [109710] by Martin Robinson
  • 2 edits in releases/WebKitGTK/webkit-1.8/Tools

Merging r108540

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

Unreviewed, rolling out r107551.
http://trac.webkit.org/changeset/107551
https://bugs.webkit.org/show_bug.cgi?id=80245

caused incorrect style sharing (Requested by kling on
#webkit).

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

  • css/CSSStyleSelector.cpp:

(WebCore::CSSStyleSelector::collectMatchingRulesForList):

11:56 PM WebKitGTK/1.8.x edited by Martin Robinson
(diff)
11:56 PM Changeset in webkit [109708] by Martin Robinson
  • 2 edits in releases/WebKitGTK/webkit-1.8/Source/WebKit2

Merging r108760

11:50 PM Changeset in webkit [109707] by Martin Robinson
  • 4 edits in releases/WebKitGTK/webkit-1.8/Source

Merging r108631

11:47 PM WebKitGTK/1.8.x edited by Martin Robinson
(diff)
10:57 PM Changeset in webkit [109706] by macpherson@chromium.org
  • 2 edits in trunk/Source/WebCore

Remove unused macro HANDLE_INHERIT_AND_INITIAL_AND_PRIMITIVE_WITH_VALUE.
https://bugs.webkit.org/show_bug.cgi?id=80236

Reviewed by Eric Seidel.

No new tests / unused code deletion only.

  • css/CSSStyleSelector.cpp:

(WebCore):

10:52 PM Changeset in webkit [109705] by fpizlo@apple.com
  • 21 edits
    4 adds in trunk/Source

JIT heuristics should be hyperbolic
https://bugs.webkit.org/show_bug.cgi?id=80055
<rdar://problem/10922260>

Source/JavaScriptCore:

Reviewed by Oliver Hunt.

Added tracking of the amount of executable memory typically used for a bytecode
instruction. Modified the execution counter scheme to use this, and the amount
of free memory, to determine how long to wait before invoking the JIT.

The result is that even if we bomb the VM with more code than can fit in our
executable memory pool, we still keep running and almost never run out of
executable memory - which ensures that if we have to JIT something critical, then
we'll likely have enough memory to do so. This also does not regress performance
on the three main benchmarks.

  • CMakeLists.txt:
  • GNUmakefile.list.am:
  • JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • Target.pri:
  • bytecode/CodeBlock.cpp:

(JSC::CodeBlock::predictedMachineCodeSize):
(JSC):
(JSC::CodeBlock::usesOpcode):

  • bytecode/CodeBlock.h:

(CodeBlock):
(JSC::CodeBlock::checkIfJITThresholdReached):
(JSC::CodeBlock::dontJITAnytimeSoon):
(JSC::CodeBlock::jitAfterWarmUp):
(JSC::CodeBlock::jitSoon):
(JSC::CodeBlock::llintExecuteCounter):
(JSC::CodeBlock::counterValueForOptimizeAfterWarmUp):
(JSC::CodeBlock::counterValueForOptimizeAfterLongWarmUp):
(JSC::CodeBlock::addressOfJITExecuteCounter):
(JSC::CodeBlock::offsetOfJITExecuteCounter):
(JSC::CodeBlock::offsetOfJITExecutionActiveThreshold):
(JSC::CodeBlock::offsetOfJITExecutionTotalCount):
(JSC::CodeBlock::jitExecuteCounter):
(JSC::CodeBlock::checkIfOptimizationThresholdReached):
(JSC::CodeBlock::optimizeNextInvocation):
(JSC::CodeBlock::dontOptimizeAnytimeSoon):
(JSC::CodeBlock::optimizeAfterWarmUp):
(JSC::CodeBlock::optimizeAfterLongWarmUp):
(JSC::CodeBlock::optimizeSoon):

  • bytecode/ExecutionCounter.cpp: Added.

(JSC):
(JSC::ExecutionCounter::ExecutionCounter):
(JSC::ExecutionCounter::checkIfThresholdCrossedAndSet):
(JSC::ExecutionCounter::setNewThreshold):
(JSC::ExecutionCounter::deferIndefinitely):
(JSC::ExecutionCounter::applyMemoryUsageHeuristics):
(JSC::ExecutionCounter::applyMemoryUsageHeuristicsAndConvertToInt):
(JSC::ExecutionCounter::hasCrossedThreshold):
(JSC::ExecutionCounter::setThreshold):
(JSC::ExecutionCounter::reset):

  • bytecode/ExecutionCounter.h: Added.

(JSC):
(ExecutionCounter):
(JSC::ExecutionCounter::formattedTotalCount):

  • dfg/DFGOSRExitCompiler32_64.cpp:

(JSC::DFG::OSRExitCompiler::compileExit):

  • dfg/DFGOSRExitCompiler64.cpp:

(JSC::DFG::OSRExitCompiler::compileExit):

  • jit/ExecutableAllocator.cpp:

(JSC::DemandExecutableAllocator::allocateNewSpace):
(JSC::ExecutableAllocator::underMemoryPressure):
(JSC):
(JSC::ExecutableAllocator::memoryPressureMultiplier):

  • jit/ExecutableAllocator.h:
  • jit/ExecutableAllocatorFixedVMPool.cpp:

(JSC::ExecutableAllocator::memoryPressureMultiplier):
(JSC):

  • jit/JIT.cpp:

(JSC::JIT::privateCompile):

  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION):

  • llint/LLIntSlowPaths.cpp:

(JSC::LLInt::jitCompileAndSetHeuristics):

  • llint/LowLevelInterpreter32_64.asm:
  • runtime/JSGlobalData.h:

(JSGlobalData):

  • runtime/Options.cpp:

(Options):
(JSC::Options::initializeOptions):

  • runtime/Options.h:

(Options):

  • wtf/SimpleStats.h: Added.

(WTF):
(SimpleStats):
(WTF::SimpleStats::SimpleStats):
(WTF::SimpleStats::add):
(WTF::SimpleStats::operator!):
(WTF::SimpleStats::count):
(WTF::SimpleStats::sum):
(WTF::SimpleStats::sumOfSquares):
(WTF::SimpleStats::mean):
(WTF::SimpleStats::variance):
(WTF::SimpleStats::standardDeviation):

Source/WebCore:

Reviewed by Oliver Hunt.

No new tests, since there's no new functionality.

  • ForwardingHeaders/wtf/SimpleStats.h: Added.
10:30 PM Changeset in webkit [109704] by shinyak@chromium.org
  • 5 edits in trunk

Source/WebCore: Methods like firstRendererOf of NodeRenderingContext should be extracted.
https://bugs.webkit.org/show_bug.cgi?id=79902

Reviewed by Hajime Morita.

firstRendererOfInsertionPoint should return the first renderer of its child, however
it returns next renderer of parent. The same thing happens lastRendererOfInsertionPoint.

Test: content-element-move.html has another test case.

  • dom/NodeRenderingContext.cpp:

(WebCore):
(WebCore::nextRendererOfInsertionPoint):
(WebCore::previousRendererOfInsertionPoint):
(WebCore::firstRendererOfInsertionPoint):
(WebCore::lastRendererOfInsertionPoint):
(WebCore::firstRendererOf):
(WebCore::lastRendererOf):
(WebCore::NodeRenderingContext::nextRenderer):
(WebCore::NodeRenderingContext::previousRenderer):

LayoutTests: Refactoring: Methods like firstRendererOf of NodeRenderingContext should be extracted.
https://bugs.webkit.org/show_bug.cgi?id=79902

Reviewed by Hajime Morita.

Added a new test case.

  • fast/dom/shadow/content-element-move-expected.txt:
  • fast/dom/shadow/content-element-move.html:
8:43 PM Changeset in webkit [109703] by morrita@google.com
  • 2 edits in trunk/Source/WebCore

Unreviewed build fix for ENABLE(MATHML).

  • mathml/MathMLElement.h:

(WebCore):

8:09 PM Changeset in webkit [109702] by morrita@google.com
  • 6 edits in trunk/Source/WebCore

WebKit needs toHTMLUnknownElement() and isUnknown() for sanity check.
https://bugs.webkit.org/show_bug.cgi?id=80229

Reviewed by Kent Tamura.

The code generator has naked static_cast<> which could be unsafe.
We can turn it into toHTMLUnknownElement() and the like.

No new tests. Just added a sanity check.

  • dom/make_names.pl:

(printWrapperFactoryCppFile):

  • html/HTMLElement.h:

(HTMLElement):
(WebCore::HTMLElement::isHTMLUnknownElement):

  • html/HTMLUnknownElement.h:

(HTMLUnknownElement):
(WebCore::toHTMLUnknownElement):
(WebCore):

  • mathml/MathMLElement.h:

(toMathMLElement):

  • svg/SVGElement.h:

(WebCore::toSVGElement):
(WebCore):

8:02 PM Changeset in webkit [109701] by charles.wei@torchmobile.com.cn
  • 2 edits in trunk/Tools

Unreviewed, Add myself to committer list.
https://bugs.webkit.org/show_bug.cgi?id=80232

  • Scripts/webkitpy/common/config/committers.py:
7:44 PM Changeset in webkit [109700] by yuzo@google.com
  • 6 edits
    3 copies in branches/chromium/1025

Merge 108574 - REGRESSION (r104060): Web font is not loaded if specified by link element dynamically inserted
https://bugs.webkit.org/show_bug.cgi?id=79186

Reviewed by Andreas Kling.

Source/WebCore:

Test: fast/css/font-face-insert-link.html

If a dynamically inserted stylesheet contains @font-face rules, we may fail to update the rendering.

Before r104060 the style selector was destroyed on every style change, and the font selector along with it.
This is no longer the case and we can't rely on comparing font selector pointers when comparing Fonts
for equality. This patch adds version number to the font selector and checks it in Font::operator==.
The version number is incremented when new font-face rules are added to the font selector.

FontFallbackList is an object shared between Fonts so the extra field shouldn't matter much in terms
of memory.

  • css/CSSFontSelector.cpp:

(WebCore::CSSFontSelector::CSSFontSelector):
(WebCore::CSSFontSelector::addFontFaceRule):

  • css/CSSFontSelector.h:

(CSSFontSelector):

  • platform/graphics/Font.cpp:

(WebCore::Font::operator==):

  • platform/graphics/FontFallbackList.cpp:

(WebCore::FontFallbackList::FontFallbackList):
(WebCore::FontFallbackList::invalidate):

  • platform/graphics/FontFallbackList.h:

(FontFallbackList):
(WebCore::FontFallbackList::fontSelectorVersion):

  • platform/graphics/FontSelector.h:

(FontSelector):

LayoutTests:

  • fast/css/font-face-insert-link-expected.txt: Added.
  • fast/css/font-face-insert-link.html: Added.
  • fast/css/resources/ahem.css: Added.

(@font-face):

TBR=karen@chromium.org
Review URL: https://chromiumcodereview.appspot.com/9595009

7:38 PM Changeset in webkit [109699] by macpherson@chromium.org
  • 3 edits in trunk/Source/WebCore

Handle CSSPropertyWebkitColumnBreakAfter, CSSPropertyWebkitColumnBreakBefore and CSSPropertyWebkitColumnBreakInside in CSSStyleApplyProperty.
https://bugs.webkit.org/show_bug.cgi?id=80226

Reviewed by Eric Seidel.

No new tests / refactoring only.

  • css/CSSStyleApplyProperty.cpp:

(WebCore::CSSStyleApplyProperty::CSSStyleApplyProperty):

  • css/CSSStyleSelector.cpp:

(WebCore::CSSStyleSelector::collectMatchingRulesForList):

7:29 PM Changeset in webkit [109698] by commit-queue@webkit.org
  • 3 edits
    4 adds in trunk/Source/WebKit

[BlackBerry] upstream CredentialManager and CredentialTransformData implementation
https://bugs.webkit.org/show_bug.cgi?id=80107

Patch by Jonathan Dong <Jonathan Dong> on 2012-03-04
Reviewed by Antonio Gomes.

Initial upstream of CredentialManager.[h|cpp] and
CredentialTransformData.[h|cpp].
No new test.

Source/WebKit:

  • PlatformBlackBerry.cmake:

Source/WebKit/blackberry:

  • WebCoreSupport/CredentialManager.cpp: Added.

(WebCore):
(WebCore::CredentialManager::CredentialManager):
(WebCore::CredentialManager::autofillAuthenticationChallenge):
(WebCore::CredentialManager::autofillPasswordForms):
(WebCore::CredentialManager::saveCredentialIfConfirmed):

  • WebCoreSupport/CredentialManager.h: Added.

(WebKit):
(WebCore):
(CredentialManager):

  • WebCoreSupport/CredentialTransformData.cpp: Added.

(WebCore::CredentialTransformData::CredentialTransformData):
(WebCore):
(WebCore::CredentialTransformData::url):
(WebCore::CredentialTransformData::credential):
(WebCore::CredentialTransformData::setCredential):
(WebCore::CredentialTransformData::findPasswordFormFields):

  • WebCoreSupport/CredentialTransformData.h: Added.

(WebCore):
(CredentialTransformData):
(WebCore::CredentialTransformData::isValid):
(WebCore::CredentialTransformData::protectionSpace):

7:23 PM Changeset in webkit [109697] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebCore

[BlackBerry] Credential backing store implementation
https://bugs.webkit.org/show_bug.cgi?id=79650

Patch by Jonathan Dong <Jonathan Dong> on 2012-03-04
Reviewed by Antonio Gomes.

Opened Credential database in CedentialBackingStore::instance().
Added never_remember table and associated sql statment
members to store the never remember sites.
Removed CredentialStorage initialize codes because that
won't give users a chance to re-enter the new credential
information for an already stored site.
Changed login update and has statement to support
autofill feature of multiple credential forms in the
same page; Also added url as a parameter of hasLogin() function.
Added calling reset() after each statement calls step(),
to make it work correctly next time.
Also fixed a macro typo in HANDLE_SQL_EXEC_FAILURE.

No new tests.

  • platform/network/blackberry/CredentialBackingStore.cpp:

(WebCore::CredentialBackingStore::instance):
(WebCore::CredentialBackingStore::CredentialBackingStore):
(WebCore::CredentialBackingStore::open):
(WebCore::CredentialBackingStore::close):
(WebCore::CredentialBackingStore::addLogin):
(WebCore::CredentialBackingStore::updateLogin):
(WebCore::CredentialBackingStore::hasLogin):
(WebCore::CredentialBackingStore::getLogin):
(WebCore):
(WebCore::CredentialBackingStore::removeLogin):
(WebCore::CredentialBackingStore::addNeverRemember):
(WebCore::CredentialBackingStore::hasNeverRemember):
(WebCore::CredentialBackingStore::getNeverRemember):
(WebCore::CredentialBackingStore::removeNeverRemember):
(WebCore::CredentialBackingStore::clearLogins):
(WebCore::CredentialBackingStore::clearNeverRemember):

  • platform/network/blackberry/CredentialBackingStore.h:

(CredentialBackingStore):

7:15 PM Changeset in webkit [109696] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebCore

[EFL] Evas_GL initialization and destruction in GraphicsContext3DPrivate
https://bugs.webkit.org/show_bug.cgi?id=80211

Patch by Hyowon Kim <hw1008.kim@samsung.com> on 2012-03-04
Reviewed by Noam Rosenthal.

This patch adds initialization and destruction codes using Evas_GL APIs to GC3DPrivate.

No new tests. No behavior change.

  • platform/graphics/efl/GraphicsContext3DPrivate.cpp:

(WebCore::GraphicsContext3DPrivate::create):
(WebCore::GraphicsContext3DPrivate::GraphicsContext3DPrivate):
(WebCore::GraphicsContext3DPrivate::~GraphicsContext3DPrivate):
(WebCore::GraphicsContext3DPrivate::initialize):
(WebCore::GraphicsContext3DPrivate::createSurface):
(WebCore::GraphicsContext3DPrivate::makeContextCurrent):

  • platform/graphics/efl/GraphicsContext3DPrivate.h:

(GraphicsContext3DPrivate):

7:01 PM Changeset in webkit [109695] by kubo@profusion.mobi
  • 10 edits in trunk

[CMake] Libraries are installed to /usr/lib and not /usr/lib64 on x86_64
https://bugs.webkit.org/show_bug.cgi?id=71507

Reviewed by Antonio Gomes.

.:

  • Source/cmake/OptionsCommon.cmake: Provide two variables which

can be changed via CMake: LIB_SUFFIX, which is often used in CMake
projects to let the user choose whether a suffix should be added
to the library installation directory (such as 32 or 64), and
LIB_INSTALL_DIR, which takes LIB_SUFFIX into account to determine
whether to install libraries.

Source/JavaScriptCore:

  • CMakeLists.txt: Use ${LIB_INSTALL_DIR} instead of hardcoding "lib".

Source/WebCore:

No new tests, buildsystem change.

  • CMakeLists.txt: Use ${LIB_INSTALL_DIR} instead of hardcoding "lib".

Source/WebKit:

  • CMakeLists.txt: Use ${LIB_INSTALL_DIR} instead of hardcoding "lib".

Source/WebKit2:

  • CMakeLists.txt: Use ${LIB_INSTALL_DIR} instead of hardcoding "lib".
6:43 PM Changeset in webkit [109694] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

[EFL] Implementation of missing functions in GraphicsContext3DPrivate
https://bugs.webkit.org/show_bug.cgi?id=79759

Patch by Hyowon Kim <hw1008.kim@samsung.com> on 2012-03-04
Reviewed by Noam Rosenthal.

The initial patch (Bug 62961) only contains implementations for simple functions
which call GL functions through Evas_GL_API.
This patch implements a little complicated functions such as getActiveAttrib(),
getShaderSource() and so on.

No new tests. No behavior change.

  • platform/graphics/efl/GraphicsContext3DPrivate.cpp:

(WebCore::GraphicsContext3DPrivate::getActiveAttrib):
(WebCore::GraphicsContext3DPrivate::getActiveUniform):
(WebCore::GraphicsContext3DPrivate::getError):
(WebCore::GraphicsContext3DPrivate::getIntegerv):
(WebCore::GraphicsContext3DPrivate::getProgramInfoLog):
(WebCore::GraphicsContext3DPrivate::getShaderInfoLog):
(WebCore::GraphicsContext3DPrivate::getShaderSource):

6:33 PM Changeset in webkit [109693] by haraken@chromium.org
  • 8 edits
    1 delete in trunk/Source/WebCore

Revert SVG-related APIs from DOMWindowSVG.idl back to DOMWindow.idl
https://bugs.webkit.org/show_bug.cgi?id=80139

Reviewed by Adam Barth.

Based on the discussion on webkit-dev@
(http://markmail.org/message/kagvswmah67zmrry#query:+page:1+mid:h34vzbiu5suub3ld+state:results),
this patch reverts SVG-related APIs from DOMWindowSVG.idl back to DOMWindow.idl.

No tests. No change in behavior.

  • CMakeLists.txt:
  • DerivedSources.make:
  • DerivedSources.pri:
  • GNUmakefile.list.am:
  • WebCore.gypi:
  • WebCore.xcodeproj/project.pbxproj:
  • page/DOMWindow.idl:
  • svg/DOMWindowSVG.idl: Removed.
6:32 PM Changeset in webkit [109692] by tkent@chromium.org
  • 2 edits in trunk/LayoutTests

[Chromium] We should reset mouse position before calling eventSender.mouseMove in LayoutTest
https://bugs.webkit.org/show_bug.cgi?id=79748

  • platform/chromium/test_expectations.txt: Removed flaky expectations.
6:24 PM Changeset in webkit [109691] by haraken@chromium.org
  • 7 edits
    1 delete in trunk/Source/WebCore

Revert WebGL-related APIs from DOMWindowWebGL.idl back to DOMWindow.idl
https://bugs.webkit.org/show_bug.cgi?id=80144

Reviewed by Adam Barth.

Based on the discussion on webkit-dev@
(http://markmail.org/message/kagvswmah67zmrry#query:+page:1+mid:h34vzbiu5suub3ld+state:results),
this patch reverts WebGL-related APIs from DOMWindowWebGL.idl back to DOMWindow.idl.

No tests. No change in behavior.

  • DerivedSources.make:
  • DerivedSources.pri:
  • GNUmakefile.list.am:
  • WebCore.gypi:
  • WebCore.xcodeproj/project.pbxproj:
  • html/canvas/DOMWindowWebGL.idl: Removed.
  • page/DOMWindow.idl:
6:01 PM Changeset in webkit [109690] by haraken@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed, gardening.

  • platform/chromium/fast/files/xhr-response-blob-expected.txt:
5:59 PM Changeset in webkit [109689] by morrita@google.com
  • 2 edits in trunk/Source/WebCore

Unreviewed build fix.

  • rendering/RenderButton.cpp:

(WebCore::RenderButton::canHaveGeneratedChildren):

5:39 PM Changeset in webkit [109688] by morrita@google.com
  • 7 edits
    2 adds in trunk

REGRESSION(r108758): Assertion failure in WebCore::RenderMenuList::addChild
https://bugs.webkit.org/show_bug.cgi?id=80096

Reviewed by Dimitri Glazkov.

Source/WebCore:

After r108758 RenderBlock allowed <select> to have generated
contents. But it shouldn't. This change stops allowing it again by
replacing some canHaveChildren() invocations with
less permissive canHaveGeneratedChildren().

This change also pulls back original canHaveChildren() logic to
RenderButton to allow <button> to have generated contents.

Then RenderDeprecatedFlexibleBox::buttonText() is morphed to
more intention revealing canHaveGeneratedChildren().

Test: fast/forms/select-generated-content.html

  • rendering/RenderBlock.cpp:

(WebCore):
(WebCore::canHaveGeneratedChildren):
(WebCore::RenderBlock::styleDidChange):
(WebCore::findFirstLetterBlock):
(WebCore::RenderBlock::updateFirstLetter):

  • rendering/RenderButton.cpp:
  • rendering/RenderButton.h:

(RenderButton):

  • rendering/RenderDeprecatedFlexibleBox.h:

(WebCore::RenderDeprecatedFlexibleBox::canHaveGeneratedChildren):

  • rendering/RenderMenuList.h:

LayoutTests:

  • fast/forms/select-generated-content-expected.txt: Added.
  • fast/forms/select-generated-content.html: Added.
5:34 PM Changeset in webkit [109687] by tonikitoo@webkit.org
  • 2 edits in trunk/Source/WebKit/blackberry

2012-03-04 Antonio Gomes <agomes@rim.com>

Fixed positioned element not correctly positioned after orientation change,
when viewport metatag is used with "initial-scale=1" MKS_2992596
PR #138865

Reviewed by George Staikos.

Viewport size changes in two main scenarios:

  • orientation changes;
  • virtual keyboard pop up/hide.

When we are setting a new viewport size, we need to
update the FixedReportedSize of the mainframe. This size
is used to return innerWidth|Heigth as well as to calculate
the fixed position elements height relative to the RenderView [1].

[1] RenderBox::containingBlockLogicalHeightForPositioned.

When we are rotating, we need to delay setting the new FixedReportedSize
till we layout and are able to figure out the new contents size. At this
time we call setFixedReportedSize, but we do not reposition the fixed elemts
afterwards.

Patch adds a call to FrameView::repaintFixedElementsAfterScrolling, after
setting the new size.

Source/WebKit/blackberry:

  • Api/WebPage.cpp: (BlackBerry::WebKit::WebPagePrivate::setViewportSize):

Source/WebCore:

  • manual-tests/blackberry/meta-viewport-fixed-position-preserved-on-rotation.html: Added.
5:09 PM Changeset in webkit [109686] by haraken@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed, gardening.

  • platform/chromium-mac-leopard/fast/forms/fieldset-legend-padding-unclipped-fieldset-border-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/fieldset-legend-padding-unclipped-fieldset-border-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/fieldset-legend-padding-unclipped-fieldset-border-expected.txt: Added.
4:44 PM Changeset in webkit [109685] by haraken@chromium.org
  • 1 edit
    3 adds in trunk/LayoutTests

Unreviewed, gardening.

  • platform/chromium-mac-leopard/fast/forms/fieldset-legend-padding-unclipped-fieldset-border-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/fieldset-legend-padding-unclipped-fieldset-border-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/fieldset-legend-padding-unclipped-fieldset-border-expected.txt: Added.
4:30 PM Changeset in webkit [109684] by haraken@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed, gardening.

  • platform/chromium/test_expectations.txt:
4:23 PM Changeset in webkit [109683] by haraken@chromium.org
  • 1 edit
    1 delete in trunk/LayoutTests

Unreviewed, gardening.

  • platform/chromium/fast/js/function-dot-arguments-and-caller-expected.txt: Removed.
1:35 PM Changeset in webkit [109682] by commit-queue@webkit.org
  • 1 edit
    2 adds in trunk/Source/WebCore

[BlackBerry] Upstream two helper files from platform/graphics/blackberry
https://bugs.webkit.org/show_bug.cgi?id=80125

Patch by Robin Cao <robin.cao@torchmobile.com.cn> on 2012-03-04
Reviewed by Antonio Gomes.

Initial upstream, no new tests.

  • platform/graphics/blackberry/InstrumentedPlatformCanvas.h: Added.

(WebCore):
(InstrumentedPlatformCanvas):
(WebCore::InstrumentedPlatformCanvas::InstrumentedPlatformCanvas):
(WebCore::InstrumentedPlatformCanvas::~InstrumentedPlatformCanvas):
(WebCore::InstrumentedPlatformCanvas::isSolidColor):
(WebCore::InstrumentedPlatformCanvas::solidColor):
(WebCore::InstrumentedPlatformCanvas::save):
(WebCore::InstrumentedPlatformCanvas::saveLayer):
(WebCore::InstrumentedPlatformCanvas::restore):
(WebCore::InstrumentedPlatformCanvas::translate):
(WebCore::InstrumentedPlatformCanvas::scale):
(WebCore::InstrumentedPlatformCanvas::rotate):
(WebCore::InstrumentedPlatformCanvas::skew):
(WebCore::InstrumentedPlatformCanvas::concat):
(WebCore::InstrumentedPlatformCanvas::setMatrix):
(WebCore::InstrumentedPlatformCanvas::clipRect):
(WebCore::InstrumentedPlatformCanvas::clipPath):
(WebCore::InstrumentedPlatformCanvas::clipRegion):
(WebCore::InstrumentedPlatformCanvas::clear):
(WebCore::InstrumentedPlatformCanvas::drawPaint):
(WebCore::InstrumentedPlatformCanvas::drawPoints):
(WebCore::InstrumentedPlatformCanvas::drawRect):
(WebCore::InstrumentedPlatformCanvas::drawPath):
(WebCore::InstrumentedPlatformCanvas::drawBitmap):
(WebCore::InstrumentedPlatformCanvas::drawBitmapRect):
(WebCore::InstrumentedPlatformCanvas::drawBitmapMatrix):
(WebCore::InstrumentedPlatformCanvas::drawSprite):
(WebCore::InstrumentedPlatformCanvas::drawText):
(WebCore::InstrumentedPlatformCanvas::drawPosText):
(WebCore::InstrumentedPlatformCanvas::drawPosTextH):
(WebCore::InstrumentedPlatformCanvas::drawTextOnPath):
(WebCore::InstrumentedPlatformCanvas::drawPicture):
(WebCore::InstrumentedPlatformCanvas::drawVertices):
(WebCore::InstrumentedPlatformCanvas::drawData):

  • platform/graphics/blackberry/LayerMessage.h: Added.

(WebCore):
(WebCore::isCompositingThread):
(WebCore::compositingThread):
(WebCore::isWebKitThread):
(WebCore::webKitThread):
(WebCore::dispatchCompositingMessage):
(WebCore::dispatchSyncCompositingMessage):
(WebCore::dispatchWebKitMessage):

12:46 PM Changeset in webkit [109681] by andersca@apple.com
  • 6 edits in trunk/Tools

Newer versions of clang fail to compile WebKit.

Fix build.

  • DumpRenderTree/mac/AccessibilityUIElementMac.mm:

(descriptionOfValue):
(AccessibilityUIElement::rowIndexRange):
(AccessibilityUIElement::columnIndexRange):
(AccessibilityUIElement::selectedTextRange):

  • DumpRenderTree/mac/EditingDelegate.mm:

(-[DOMRange dump]):

  • DumpRenderTree/mac/PolicyDelegate.mm:

(-[PolicyDelegate webView:unableToImplementPolicyWithError:frame:]):

  • DumpRenderTree/mac/ResourceLoadDelegate.mm:

(-[NSError _drt_descriptionSuitableForTestResult]):

  • WebKitTestRunner/InjectedBundle/mac/AccessibilityUIElementMac.mm:

(WTR::descriptionOfValue):
(WTR::AccessibilityUIElement::rowIndexRange):
(WTR::AccessibilityUIElement::columnIndexRange):
(WTR::AccessibilityUIElement::selectedTextRange):

12:43 PM Changeset in webkit [109680] by mikelawther@chromium.org
  • 1 edit
    4 adds in trunk/LayoutTests

table tests for CSS3 calc
https://bugs.webkit.org/show_bug.cgi?id=75898

Reviewed by Julien Chaffraix.

Tests CSS3 calc() (see http://webkit.org/b/16662) on some simple examples with tables.

  • css3/calc/table-calcs-expected.txt: Added.
  • css3/calc/table-calcs.html: Added.
  • css3/calc/table-empty-cells-expected.html: Added.
  • css3/calc/table-empty-cells.html: Added.
11:07 AM Changeset in webkit [109679] by Nikolas Zimmermann
  • 7 edits in trunk

Introduce SMIL overrideStyle, to make SVG stop mutating CSS styles directly
https://bugs.webkit.org/show_bug.cgi?id=79790

Reviewed by Dirk Schulze.

Source/WebCore:

Restore SMIL animation behavior back to pre-r109342.
1) Always animate presentation attributes as CSS properties, regardless of the
attributeTypes value. Matches Opera/FF, and makes the attribute optional again
as specified in both SMIL & SVG.

Extend existing svg/animations/attributesTypes.html to verify this.

2) Switch setInstancesUpdatesBlocked calls to the right locations again, to
avoid chromium assertions (and/or extra work being done). Fixing that reveals another
problem: in the instance updating code path, we always called setTargetAttributeAnimatedCSSValue
even for XML animations.

  • svg/SVGAnimationElement.cpp:

(WebCore::SVGAnimationElement::shouldApplyAnimation): Restore old logic.
(WebCore::SVGAnimationElement::setTargetAttributeAnimatedValue): Fix typo, move setInstancesUpdatesBlocked calls.

LayoutTests:

Extended attributesTypes.html test case to check that presentation attributes are
always animated as CSS properties, regardless of their attributeTypes value.

  • platform/chromium/test_expectations.txt: Remove animate-elem-32-t.svg suppression.
  • svg/animations/attributeTypes-expected.txt: Updated expectations.
  • svg/animations/resources/attributeTypes.svg: Fix comment.
  • svg/animations/script-tests/attributeTypes.js: Extend test.

(sample1):
(sample2):
(sample3):

10:53 AM Changeset in webkit [109678] by ddkilzer@apple.com
  • 4 edits in trunk/Source/JavaScriptCore

Fix build when the classic interpreter is enabled

Reviewed by Gavin Barraclough.

Fixes the following build error when running the "Generate
Derived Sources" build phase script:

offlineasm: Parsing JavaScriptCore/llint/LowLevelInterpreter.asm and ../../JSCLLIntOffsetsExtractor and creating assembly file LLIntAssembly.h.
./JavaScriptCore/offlineasm/offsets.rb:145:in `offsetsAndConfigurationIndex': unhandled exception

from JavaScriptCore/offlineasm/asm.rb:131

Command /bin/sh failed with exit code 1

Gavin's fix in r109674 avoided the #error statement in
JITStubs.h when compiling LLIntOffsetsExtractor.cpp, but it
caused the "Generate Derived Sources" build phase script to fail
when JavaScriptCore/offlineasm/asm.rb was run. The solution is
to detect when the classic interpreter is being built and simply
exit early from asm.rb in that case.

  • llint/LLIntOffsetsExtractor.cpp:

(JSC::LLIntOffsetsExtractor::dummy): Return NULL pointer if the
JIT is disabled. Note that offsets.rb doesn't care about the
return value here, but instead it cares about finding the magic
values in the binary. The magic values are no longer present
when the JIT is disabled.

  • offlineasm/asm.rb: Catch MissingMagicValuesException and exit

early with a status message.

  • offlineasm/offsets.rb:

(MissingMagicValuesException): Add new exception class.
(offsetsAndConfigurationIndex): Throw
MissingMagicValuesException when no magic values are found.

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

[BlackBerry] upstream MediaPlayerPrivateBlackBerry.[cpp|h]
https://bugs.webkit.org/show_bug.cgi?id=79729

Patch by Jonathan Dong <Jonathan Dong> on 2012-03-04
Reviewed by Rob Buis and Antonio Gomes.

Implementation of MediaPlayerPrivate for BlackBerry porting.
Initial upstream, No new tests.

  • PlatformBlackBerry.cmake:
  • platform/graphics/blackberry/MediaPlayerPrivateBlackBerry.cpp: Added.

(WebCore):
(WebCore::MediaPlayerPrivate::create):
(WebCore::MediaPlayerPrivate::registerMediaEngine):
(WebCore::MediaPlayerPrivate::getSupportedTypes):
(WebCore::MediaPlayerPrivate::supportsType):
(WebCore::MediaPlayerPrivate::notifyAppActivatedEvent):
(WebCore::MediaPlayerPrivate::setCertificatePath):
(WebCore::MediaPlayerPrivate::MediaPlayerPrivate):
(WebCore::MediaPlayerPrivate::~MediaPlayerPrivate):
(WebCore::MediaPlayerPrivate::load):
(WebCore::MediaPlayerPrivate::cancelLoad):
(WebCore::MediaPlayerPrivate::prepareToPlay):
(WebCore::MediaPlayerPrivate::play):
(WebCore::MediaPlayerPrivate::pause):
(WebCore::MediaPlayerPrivate::supportsFullscreen):
(WebCore::MediaPlayerPrivate::naturalSize):
(WebCore::MediaPlayerPrivate::hasVideo):
(WebCore::MediaPlayerPrivate::hasAudio):
(WebCore::MediaPlayerPrivate::setVisible):
(WebCore::MediaPlayerPrivate::duration):
(WebCore::MediaPlayerPrivate::currentTime):
(WebCore::MediaPlayerPrivate::seek):
(WebCore::MediaPlayerPrivate::userDrivenSeekTimerFired):
(WebCore::MediaPlayerPrivate::seeking):
(WebCore::MediaPlayerPrivate::setRate):
(WebCore::MediaPlayerPrivate::paused):
(WebCore::MediaPlayerPrivate::setVolume):
(WebCore::MediaPlayerPrivate::networkState):
(WebCore::MediaPlayerPrivate::readyState):
(WebCore::MediaPlayerPrivate::maxTimeSeekable):
(WebCore::MediaPlayerPrivate::buffered):
(WebCore::MediaPlayerPrivate::bytesLoaded):
(WebCore::MediaPlayerPrivate::setSize):
(WebCore::MediaPlayerPrivate::paint):
(WebCore::MediaPlayerPrivate::hasAvailableVideoFrame):
(WebCore::MediaPlayerPrivate::hasSingleSecurityOrigin):
(WebCore::MediaPlayerPrivate::movieLoadType):
(WebCore::MediaPlayerPrivate::userAgent):
(WebCore::MediaPlayerPrivate::resizeSourceDimensions):
(WebCore::MediaPlayerPrivate::setFullscreenWebPageClient):
(WebCore::MediaPlayerPrivate::getWindow):
(WebCore::MediaPlayerPrivate::getPeerWindow):
(WebCore::MediaPlayerPrivate::getWindowPosition):
(WebCore::MediaPlayerPrivate::mmrContextName):
(WebCore::MediaPlayerPrivate::percentLoaded):
(WebCore::MediaPlayerPrivate::sourceWidth):
(WebCore::MediaPlayerPrivate::sourceHeight):
(WebCore::MediaPlayerPrivate::setAllowPPSVolumeUpdates):
(WebCore::MediaPlayerPrivate::updateStates):
(WebCore::MediaPlayerPrivate::onStateChanged):
(WebCore::MediaPlayerPrivate::onMediaStatusChanged):
(WebCore::MediaPlayerPrivate::onError):
(WebCore::MediaPlayerPrivate::onDurationChanged):
(WebCore::MediaPlayerPrivate::onTimeChanged):
(WebCore::MediaPlayerPrivate::onPauseStateChanged):
(WebCore::MediaPlayerPrivate::onRateChanged):
(WebCore::MediaPlayerPrivate::onVolumeChanged):
(WebCore::MediaPlayerPrivate::onRepaint):
(WebCore::MediaPlayerPrivate::onSizeChanged):
(WebCore::MediaPlayerPrivate::onPlayNotified):
(WebCore::MediaPlayerPrivate::onPauseNotified):
(WebCore::MediaPlayerPrivate::onBuffering):
(WebCore::MediaPlayerPrivate::showErrorDialog):
(WebCore::MediaPlayerPrivate::frameView):
(WebCore::MediaPlayerPrivate::platformWindow):
(WebCore::MediaPlayerPrivate::isFullscreen):
(WebCore::MediaPlayerPrivate::platformMedia):
(WebCore::MediaPlayerPrivate::platformLayer):
(WebCore::loadBufferingImageData):
(WebCore::MediaPlayerPrivate::bufferingTimerFired):
(WebCore::MediaPlayerPrivate::setBuffering):
(WebCore::allocateTextureId):
(WebCore::MediaPlayerPrivate::drawBufferingAnimation):

  • platform/graphics/blackberry/MediaPlayerPrivateBlackBerry.h: Added.

(WebKit):
(WebCore):
(MediaPlayerPrivate):
(WebCore::MediaPlayerPrivate::supportsAcceleratedRendering):
(WebCore::MediaPlayerPrivate::acceleratedRenderingStateChanged):

7:57 AM Changeset in webkit [109676] by kov@webkit.org
  • 2 edits in releases/WebKitGTK/webkit-1.8/Source/JavaScriptCore

Merging http://trac.webkit.org/changeset/109675

7:42 AM Changeset in webkit [109675] by kov@webkit.org
  • 2 edits in trunk/Source/JavaScriptCore

SPARC also needs aligned accesses.

Patch by Jurij Smakov <jurij@wooyd.org> on 2012-03-04
Rubber-stamped by Gustavo Noronha Silva.

  • wtf/Platform.h:
7:26 AM BuildingGtk edited by omar.belkhodja@gmail.com
Added gobject-introspection to jhbuild dependencies (diff)
1:04 AM Changeset in webkit [109674] by barraclough@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Unreviewed build fix.

  • jit/JITStubs.h:
    • Move ENABLE(JIT) to head of file.

Mar 3, 2012:

9:56 PM Changeset in webkit [109673] by barraclough@apple.com
  • 4 edits in trunk/Source/JavaScriptCore

Split JSArray's Put? & DefineOwnProperty? traps.
https://bugs.webkit.org/show_bug.cgi?id=80217

Reviewed by Filip Pizlo.

putByIndex() provides similar behavior to put(), but for indexed property names.
Many places in ArrayPrototype call putByIndex() where they really mean to call
DefineOwnProperty?. This is only okay due to a bug – putByIndex should be
calling numeric accessors (& respecting numeric read only properties) on the
prototype chain, but isn't. Add a new putDirectIndex (matching JSObject's
putDirect* methods), to correctly provide a fast DefineOwnProperty? interface.

  • runtime/ArrayPrototype.cpp:

(JSC::arrayProtoFuncConcat):
(JSC::arrayProtoFuncSlice):
(JSC::arrayProtoFuncFilter):
(JSC::arrayProtoFuncMap):

  • runtime/JSArray.cpp:

(JSC):
(JSC::reject):
(JSC::SparseArrayValueMap::putDirect):
(JSC::JSArray::defineOwnNumericProperty):
(JSC::JSArray::putByIndexBeyondVectorLength):
(JSC::JSArray::putDirectIndexBeyondVectorLength):

  • runtime/JSArray.h:

(SparseArrayValueMap):
(JSArray):
(JSC::JSArray::putDirectIndex):

9:04 PM Changeset in webkit [109672] by benjamin@webkit.org
  • 4 edits in trunk/Source/WebCore

Remove the unused function WebCore::protocolIsInHTTPFamily()
https://bugs.webkit.org/show_bug.cgi?id=80218

Reviewed by Anders Carlsson.

  • WebCore.order:
  • platform/KURL.cpp:
  • platform/KURL.h:

(WebCore):

7:49 PM Changeset in webkit [109671] by benjamin@webkit.org
  • 6 edits in trunk/Source

Implement the basis of KURLWTFURL
https://bugs.webkit.org/show_bug.cgi?id=79600

Reviewed by Adam Barth.

Source/JavaScriptCore:

Add an API to know if a ParsedURL is valid.

  • wtf/url/api/ParsedURL.cpp:

(WTF::ParsedURL::ParsedURL):
(WTF):
(WTF::ParsedURL::isolatedCopy): This is needed by APIs moving URL objects between thread
and by KURL's detach() on write.
(WTF::ParsedURL::baseAsString):
(WTF::ParsedURL::segment):
Add a stronger constraint on accessors: the client of this API should never ask for the segments
on an invalid URL.

  • wtf/url/api/ParsedURL.h:

(WTF):
(WTF::ParsedURL::ParsedURL):
(ParsedURL):
(WTF::ParsedURL::isValid):

Source/WebCore:

Add a simple, non-optimized, implementation for the main methods of KURL based
on ParsedURL.

  • platform/KURLWTFURL.cpp:

(WebCore):
(WebCore::detach):
(WebCore::KURL::KURL):
(WebCore::KURL::copy):
(WebCore::KURL::isEmpty):
(WebCore::KURL::isValid):
(WebCore::KURL::string):
(WebCore::KURL::protocol):
(WebCore::KURL::host):
(WebCore::KURL::hasPort):
(WebCore::KURL::port):
(WebCore::KURL::user):
(WebCore::KURL::pass):
(WebCore::KURL::hasPath):
(WebCore::KURL::path):
(WebCore::KURL::lastPathComponent):
(WebCore::KURL::query):
(WebCore::KURL::hasFragmentIdentifier):
(WebCore::KURL::fragmentIdentifier):
(WebCore::KURL::baseAsString):
(WebCore::KURL::fileSystemPath):
(WebCore::KURL::protocolIs):
(WebCore::KURL::protocolIsInHTTPFamily):
(WebCore::KURL::setProtocol):
(WebCore::KURL::setHost):
(WebCore::KURL::removePort):
(WebCore::KURL::setPort):
(WebCore::KURL::setHostAndPort):
(WebCore::KURL::setUser):
(WebCore::KURL::setPass):
(WebCore::KURL::setPath):
(WebCore::KURL::setQuery):
(WebCore::KURL::setFragmentIdentifier):
(WebCore::KURL::removeFragmentIdentifier):
(WebCore::protocolHostAndPortAreEqual):

  • platform/KURLWTFURLImpl.h:

(KURLWTFURLImpl):
(WebCore::KURLWTFURLImpl::copy):
(WebCore):

7:26 PM Changeset in webkit [109670] by benjamin@webkit.org
  • 24 edits in trunk/Source

Remove the redundant method KURL::protocolInHTTPFamily()
https://bugs.webkit.org/show_bug.cgi?id=80216

Reviewed by Anders Carlsson.

Source/WebCore:

  • loader/FrameLoader.cpp:

(WebCore::FrameLoader::open):
(WebCore::FrameLoader::addExtraFieldsToRequest):

  • loader/ResourceLoadScheduler.cpp:

(WebCore::ResourceLoadScheduler::hostForURL):
(WebCore::ResourceLoadScheduler::scheduleLoad):

  • loader/appcache/ApplicationCache.cpp:

(WebCore::ApplicationCache::requestIsHTTPOrHTTPSGet):

  • loader/cache/CachedResource.cpp:

(WebCore::CachedResource::freshnessLifetime):

  • loader/cache/MemoryCache.cpp:

(WebCore::MemoryCache::removeFragmentIdentifierIfNeeded):

  • loader/icon/IconController.cpp:

(WebCore::IconController::defaultURL):

  • platform/KURL.h:

(KURL):

  • platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:
  • platform/network/CredentialStorage.cpp:

(WebCore::CredentialStorage::set):
(WebCore::findDefaultProtectionSpaceForURL):

  • platform/network/ResourceRequestBase.cpp:

(WebCore::ResourceRequestBase::setCachePolicy):
(WebCore::ResourceRequestBase::setTimeoutInterval):
(WebCore::ResourceRequestBase::setHTTPMethod):
(WebCore::ResourceRequestBase::setHTTPHeaderField):
(WebCore::ResourceRequestBase::clearHTTPAuthorization):
(WebCore::ResourceRequestBase::clearHTTPReferrer):
(WebCore::ResourceRequestBase::clearHTTPOrigin):
(WebCore::ResourceRequestBase::setResponseContentDispositionEncodingFallbackArray):
(WebCore::ResourceRequestBase::setHTTPBody):
(WebCore::ResourceRequestBase::setAllowCookies):
(WebCore::ResourceRequestBase::setPriority):
(WebCore::ResourceRequestBase::addHTTPHeaderField):

  • platform/network/blackberry/NetworkManager.cpp:

(WebCore::NetworkManager::startJob):

  • platform/network/cf/ResourceHandleCFNet.cpp:

(WebCore::ResourceHandle::createCFURLConnection):

  • platform/network/mac/ResourceHandleMac.mm:

(WebCore::ResourceHandle::createNSURLConnection):

  • platform/network/qt/QNetworkReplyHandler.cpp:

(WebCore::QNetworkReplyHandler::sendResponseIfNeeded):

  • xml/XMLHttpRequest.cpp:

(WebCore::XMLHttpRequest::send):

Source/WebKit/chromium:

  • src/FrameLoaderClientImpl.cpp:

(WebKit::FrameLoaderClientImpl::dispatchWillPerformClientRedirect):

  • src/WebPageSerializer.cpp:

(WebCore::retrieveResourcesForElement):

Source/WebKit/mac:

  • WebCoreSupport/WebFrameLoaderClient.mm:

(WebFrameLoaderClient::createPlugin):

Source/WebKit/win:

  • WebCoreSupport/WebFrameLoaderClient.cpp:

(WebFrameLoaderClient::dispatchDidFailToStartPlugin):

  • WebHistory.cpp:

(WebHistory::visitedURL):

7:08 PM Changeset in webkit [109669] by commit-queue@webkit.org
  • 9 edits in trunk

[Qt] Fix static_libs_as_shared build
https://bugs.webkit.org/show_bug.cgi?id=80214

Patch by Simon Hausmann <simon.hausmann@nokia.com> on 2012-03-03
Reviewed by Tor Arne Vestbø.

Source/WebKit/qt:

Add helper function to be called by WebProcess main
to potentially initialize the QStyle theme.

  • WebCoreSupport/InitWebCoreQt.cpp:

(WebKit):
(WebKit::initializeWebKit2Theme):

Source/WebKit2:

Replace (static) link time dependency to WK1 with entrypoint
in the separate WebProcess for activating the QStyle theme if
necessary.

  • Target.pri:
  • UIProcess/Launcher/ProcessLauncher.h:
  • WebProcess/qt/WebProcessMainQt.cpp:

(WebKit::WebProcessMainQt):

  • qt/MainQt.cpp:

(WebKit):
(main):

Tools:

  • WebKitTestRunner/qt/main.cpp:

(main): Set the correct environment variable for choosing the theme in the
web process.

7:04 PM Changeset in webkit [109668] by commit-queue@webkit.org
  • 1 edit
    9 adds in trunk/Source/WebCore

[BlackBerry] Upstream LayerWebKitThread and its derived classes
https://bugs.webkit.org/show_bug.cgi?id=79871

Patch by Robin Cao <robin.cao@torchmobile.com.cn> on 2012-03-03
Reviewed by Antonio Gomes.

Initial upstream, no new tests.

  • platform/graphics/blackberry/CanvasLayerWebKitThread.cpp: Added.

(WebCore):
(WebCore::CanvasLayerWebKitThread::CanvasLayerWebKitThread):
(WebCore::CanvasLayerWebKitThread::~CanvasLayerWebKitThread):
(WebCore::CanvasLayerWebKitThread::setCanvas):
(WebCore::CanvasLayerWebKitThread::setNeedsDisplay):
(WebCore::CanvasLayerWebKitThread::updateTextureContentsIfNeeded):

  • platform/graphics/blackberry/CanvasLayerWebKitThread.h: Added.

(WebCore):
(CanvasLayerWebKitThread):
(WebCore::CanvasLayerWebKitThread::create):

  • platform/graphics/blackberry/LayerData.h: Added.

(WebCore):
(LayerData):
(WebCore::LayerData::LayerData):
(WebCore::LayerData::~LayerData):
(WebCore::LayerData::anchorPoint):
(WebCore::LayerData::anchorPointZ):
(WebCore::LayerData::backgroundColor):
(WebCore::LayerData::borderColor):
(WebCore::LayerData::borderWidth):
(WebCore::LayerData::bounds):
(WebCore::LayerData::doubleSided):
(WebCore::LayerData::frame):
(WebCore::LayerData::masksToBounds):
(WebCore::LayerData::opacity):
(WebCore::LayerData::opaque):
(WebCore::LayerData::position):
(WebCore::LayerData::sublayerTransform):
(WebCore::LayerData::transform):
(WebCore::LayerData::preserves3D):
(WebCore::LayerData::getTextureID):
(WebCore::LayerData::setTextureID):
(WebCore::LayerData::needsTexture):
(WebCore::LayerData::layerProgramShader):
(WebCore::LayerData::isFixedPosition):
(WebCore::LayerData::hasFixedContainer):
(WebCore::LayerData::hasFixedAncestorInDOMTree):
(WebCore::LayerData::pluginView):
(WebCore::LayerData::holePunchRect):
(WebCore::LayerData::hasHolePunchRect):
(WebCore::LayerData::mediaPlayer):
(WebCore::LayerData::canvas):
(WebCore::LayerData::replicate):
(WebCore::LayerData::layerType):
(WebCore::LayerData::includeVisibility):

  • platform/graphics/blackberry/LayerWebKitThread.cpp: Added.

(WebCore):
(WebCore::LayerWebKitThread::create):
(WebCore::LayerWebKitThread::LayerWebKitThread):
(WebCore::LayerWebKitThread::~LayerWebKitThread):
(WebCore::LayerWebKitThread::paintContents):
(WebCore::LayerWebKitThread::contentsVisible):
(WebCore::LayerWebKitThread::createFrontBufferLock):
(WebCore::LayerWebKitThread::updateTextureContentsIfNeeded):
(WebCore::LayerWebKitThread::setContents):
(WebCore::LayerWebKitThread::setDrawable):
(WebCore::LayerWebKitThread::setNeedsCommit):
(WebCore::LayerWebKitThread::notifyAnimationStarted):
(WebCore::LayerWebKitThread::commitOnWebKitThread):
(WebCore::LayerWebKitThread::startAnimations):
(WebCore::LayerWebKitThread::updateTextureContents):
(WebCore::LayerWebKitThread::commitOnCompositingThread):
(WebCore::LayerWebKitThread::addSublayer):
(WebCore::LayerWebKitThread::insertSublayer):
(WebCore::LayerWebKitThread::removeFromSuperlayer):
(WebCore::LayerWebKitThread::removeSublayer):
(WebCore::LayerWebKitThread::replaceSublayer):
(WebCore::LayerWebKitThread::indexOfSublayer):
(WebCore::LayerWebKitThread::setBounds):
(WebCore::LayerWebKitThread::setFrame):
(WebCore::LayerWebKitThread::rootLayer):
(WebCore::LayerWebKitThread::removeAllSublayers):
(WebCore::LayerWebKitThread::setSublayers):
(WebCore::LayerWebKitThread::setNeedsDisplayInRect):
(WebCore::LayerWebKitThread::setNeedsDisplay):
(WebCore::LayerWebKitThread::updateLayerHierarchy):
(WebCore::LayerWebKitThread::setIsMask):

  • platform/graphics/blackberry/LayerWebKitThread.h: Added.

(WebCore):
(LayerWebKitThread):
(WebCore::LayerWebKitThread::setAnchorPoint):
(WebCore::LayerWebKitThread::setAnchorPointZ):
(WebCore::LayerWebKitThread::setBackgroundColor):
(WebCore::LayerWebKitThread::setBorderColor):
(WebCore::LayerWebKitThread::setBorderWidth):
(WebCore::LayerWebKitThread::setDoubleSided):
(WebCore::LayerWebKitThread::setMasksToBounds):
(WebCore::LayerWebKitThread::setMaskLayer):
(WebCore::LayerWebKitThread::maskLayer):
(WebCore::LayerWebKitThread::setReplicaLayer):
(WebCore::LayerWebKitThread::replicaLayer):
(WebCore::LayerWebKitThread::setNeedsDisplayOnBoundsChange):
(WebCore::LayerWebKitThread::setOpacity):
(WebCore::LayerWebKitThread::setOpaque):
(WebCore::LayerWebKitThread::setPosition):
(WebCore::LayerWebKitThread::getSublayers):
(WebCore::LayerWebKitThread::setSublayerTransform):
(WebCore::LayerWebKitThread::superlayer):
(WebCore::LayerWebKitThread::setTransform):
(WebCore::LayerWebKitThread::setPreserves3D):
(WebCore::LayerWebKitThread::setFixedPosition):
(WebCore::LayerWebKitThread::setHasFixedContainer):
(WebCore::LayerWebKitThread::setHasFixedAncestorInDOMTree):
(WebCore::LayerWebKitThread::contents):
(WebCore::LayerWebKitThread::setOwner):
(WebCore::LayerWebKitThread::drawsContent):
(WebCore::LayerWebKitThread::layerCompositingThread):
(WebCore::LayerWebKitThread::setAbsoluteOffset):
(WebCore::LayerWebKitThread::contentsScale):
(WebCore::LayerWebKitThread::setRunningAnimations):
(WebCore::LayerWebKitThread::setSuspendedAnimations):
(WebCore::LayerWebKitThread::setNeedsTexture):
(WebCore::LayerWebKitThread::setLayerProgramShader):
(WebCore::LayerWebKitThread::isDrawable):
(WebCore::LayerWebKitThread::boundsChanged):
(WebCore::LayerWebKitThread::setSuperlayer):
(WebCore::LayerWebKitThread::numSublayers):

  • platform/graphics/blackberry/PluginLayerWebKitThread.cpp: Added.

(WebCore):
(WebCore::PluginLayerWebKitThread::PluginLayerWebKitThread):
(WebCore::PluginLayerWebKitThread::~PluginLayerWebKitThread):
(WebCore::PluginLayerWebKitThread::setPluginView):
(WebCore::PluginLayerWebKitThread::setHolePunchRect):
(WebCore::PluginLayerWebKitThread::setNeedsDisplay):
(WebCore::PluginLayerWebKitThread::updateTextureContentsIfNeeded):

  • platform/graphics/blackberry/PluginLayerWebKitThread.h: Added.

(WebCore):
(PluginLayerWebKitThread):
(WebCore::PluginLayerWebKitThread::create):

  • platform/graphics/blackberry/VideoLayerWebKitThread.cpp: Added.

(WebCore):
(WebCore::VideoLayerWebKitThread::VideoLayerWebKitThread):
(WebCore::VideoLayerWebKitThread::~VideoLayerWebKitThread):
(WebCore::VideoLayerWebKitThread::setMediaPlayer):
(WebCore::VideoLayerWebKitThread::setHolePunchRect):
(WebCore::VideoLayerWebKitThread::setNeedsDisplay):
(WebCore::VideoLayerWebKitThread::boundsChanged):
(WebCore::VideoLayerWebKitThread::updateTextureContentsIfNeeded):

  • platform/graphics/blackberry/VideoLayerWebKitThread.h: Added.

(WebCore):
(VideoLayerWebKitThread):
(WebCore::VideoLayerWebKitThread::create):

5:06 PM Changeset in webkit [109667] by hans@chromium.org
  • 24 edits in trunk

Implement Speech JavaScript API
https://bugs.webkit.org/show_bug.cgi?id=80019

Reviewed by Adam Barth.

.:

Add ENABLE_SCRIPTED_SPEECH.

  • configure.ac:

Source/JavaScriptCore:

Add ENABLE_SCRIPTED_SPEECH.

  • Configurations/FeatureDefines.xcconfig:

Source/WebCore:

Add ENABLE_SCRIPTED_SPEECH and runtime flag.

No functionality yet, so no new tests.

  • Configurations/FeatureDefines.xcconfig:
  • GNUmakefile.am:
  • Target.pri:
  • bindings/generic/RuntimeEnabledFeatures.cpp:

(WebCore):

  • bindings/generic/RuntimeEnabledFeatures.h:

(RuntimeEnabledFeatures):
(WebCore::RuntimeEnabledFeatures::setScriptedSpeechEnabled):
(WebCore::RuntimeEnabledFeatures::scriptedSpeechEnabled):
(WebCore::RuntimeEnabledFeatures::webkitSpeechRecognitionEnabled):
(WebCore::RuntimeEnabledFeatures::webkitSpeechRecognitionErrorEnabled):
(WebCore::RuntimeEnabledFeatures::webkitSpeechGrammarEnabled):
(WebCore::RuntimeEnabledFeatures::webkitSpeechGrammarListEnabled):

Source/WebKit/chromium:

Add ENABLE_SCRIPTED_SPEECH and runtime flag.

  • features.gypi:
  • public/WebRuntimeFeatures.h:

(WebRuntimeFeatures):

  • src/WebRuntimeFeatures.cpp:

(WebKit::WebRuntimeFeatures::enableScriptedSpeech):
(WebKit):
(WebKit::WebRuntimeFeatures::isScriptedSpeechEnabled):

Source/WebKit/mac:

Add ENABLE_SCRIPTED_SPEECH.

  • Configurations/FeatureDefines.xcconfig:

Source/WebKit2:

Add ENABLE_SCRIPTED_SPEECH.

  • Configurations/FeatureDefines.xcconfig:

Tools:

Add ENABLE_SCRIPTED_SPEECH.

  • Scripts/build-webkit:
  • qmake/mkspecs/features/features.prf:

WebKitLibraries:

Add ENABLE_SCRIPTED_SPEECH.

  • win/tools/vsprops/FeatureDefines.vsprops:
  • win/tools/vsprops/FeatureDefinesCairo.vsprops:
2:48 PM Changeset in webkit [109666] by commit-queue@webkit.org
  • 13 edits
    1 copy
    1 add in trunk

DelayNode has a fixed one second max delay time
https://bugs.webkit.org/show_bug.cgi?id=78758

Source/WebCore:

Change DelayNode to accept an optional parameter to specify the
maximum delay allowed. If not specified, the default is 1 sec.

Patch by Raymond Toy <Raymond Toy> on 2012-03-03
Reviewed by Chris Rogers.

Test: webaudio/delaynode-maxdelay.html

webaudio/delaynode-maxdelay-expected.txt

  • webaudio/AudioContext.cpp:

(WebCore::AudioContext::createDelayNode): Allow maxDelayTime
parameter to specify max delay.

  • webaudio/AudioContext.h: Allow maxDelayTime

parameter to specify max delay but default to 1.
(AudioContext):

  • webaudio/AudioContext.idl: createDelayNode takes optional max

delay time parameter.

  • webaudio/DelayDSPKernel.cpp:

(WebCore::DelayDSPKernel::DelayDSPKernel): Remove unused
DefaultMaxDelayTime. Set m_maxDelayTime from processor
maxDelayTime.

  • webaudio/DelayNode.cpp:

(WebCore::DelayNode::DelayNode): Add maxDelayTime parameter.

  • webaudio/DelayNode.h:

(WebCore::DelayNode::create): Add maxDelayTime parameter.
(DelayNode): Add maxDelayTime parameter.

  • webaudio/DelayProcessor.cpp:

(WebCore::DelayProcessor::DelayProcessor): Add maxDelayTime
parameter.

  • webaudio/DelayProcessor.h:

(DelayProcessor): Add maxDelayTime parameter.
(WebCore::DelayProcessor::maxDelayTime): New slot to hold
maxDelayTime.

LayoutTests:

Patch by Raymond Toy <Raymond Toy> on 2012-03-03
Reviewed by Chris Rogers.

  • webaudio/resources/delay-testing.js: Added more informative

messages.

  • webaudio/delaynode-expected.txt: Updated result for more

informative messages

  • webaudio/delaynode-scheduling-expected.txt: Updated result for

more informative messages.

  • webaudio/delaynode-maxdelay-expected.txt: Added
  • webaudio/delaynode-maxdelay.html: Added
2:30 PM Changeset in webkit [109665] by commit-queue@webkit.org
  • 5 edits in trunk/Source/WebCore

Simplified discreteTimeConstantForSampleRate
https://bugs.webkit.org/show_bug.cgi?id=78051

Remove hardcoded constant and simplify computation of discrete
time constant.

Patch by Raymond Toy <Raymond Toy> on 2012-03-03
Reviewed by Chris Rogers.

No new tests needed. Covered by existing AudioParam tests.

  • platform/audio/AudioUtilities.cpp:

(WebCore::AudioUtilities::discreteTimeConstantForSampleRate):
Simplify formula.

  • platform/audio/AudioUtilities.h:

(AudioUtilities): Update function signature.

  • platform/audio/DynamicsCompressorKernel.cpp:

(WebCore::DynamicsCompressorKernel::DynamicsCompressorKernel):
cast to float to avoid warnings.

  • webaudio/AudioParamTimeline.cpp:

(WebCore::AudioParamTimeline::valuesForTimeRangeImpl): cast to
float to avoid warnings.

11:26 AM Changeset in webkit [109664] by noam.rosenthal@nokia.com
  • 3 edits in trunk/Source/WebKit2

[Qt] Use the existing inheritedOpacity/matrix properties of QSGNode
https://bugs.webkit.org/show_bug.cgi?id=79543

Use QSGNode::inheritedOpacity() and QSGNode::matrix().
Also, remove flags from changedStates() that we don't actually touch.
This is covered by existing API tests.

Reviewed by Kenneth Rohde Christiansen.

  • UIProcess/API/qt/qquickwebpage.cpp:

(QQuickWebPagePrivate::paintToCurrentGLContext):
(PageProxyNode::changedStates):
(PageProxyNode::render):

  • UIProcess/API/qt/qquickwebpage_p_p.h:

(QQuickWebPagePrivate):

11:13 AM Changeset in webkit [109663] by andersca@apple.com
  • 11 edits in trunk/Source

Fix build with newer versions of clang.

Source/WebCore:

  • bindings/objc/DOM.mm:

(-[DOMNode description]):
Remove an unused parameter.

  • bridge/objc/objc_instance.mm:

(ObjcInstance::getClass):
Use object_getClass instead of accessing isa directly.

  • platform/LocalizedStrings.cpp:

(WebCore::formatLocalizedString):
Disable the -Wformat-nonliteral warning around the call to CFStringCreateWithFormatAndArguments.

  • platform/graphics/mac/WebLayer.mm:

(-[CALayer _descriptionWithPrefix:]):
Use %p for the CALayer pointer, and use %lu for the number of sublayers.

  • platform/mac/HTMLConverter.mm:

(-[WebHTMLConverter _addAttachmentForElement:URL:needsParagraph:usePlaceholder:]):
Cast the NSAttachmentCharacte enum to unichar.

Source/WebKit/mac:

  • Panels/WebAuthenticationPanel.m:

(-[WebAuthenticationPanel setUpForChallenge:]):
Use %ld and cast to long.

  • Plugins/WebNetscapePluginView.mm:

(-[WebNetscapePluginView getVariable:value:]):
Cast the switch parameter to unsigned to prevent warnings about case values not being part of the enum type.

Source/WebKit2:

  • WebProcess/Plugins/Netscape/NetscapeBrowserFuncs.cpp:

(WebKit::NPN_GetValue):
Cast the switch parameter to unsigned to prevent warnings about case values not being part of the enum type.

10:55 AM Changeset in webkit [109662] by commit-queue@webkit.org
  • 1 edit
    2 adds in trunk/LayoutTests

Biquad getFrequencyResponse needs a layout test.
https://bugs.webkit.org/show_bug.cgi?id=79503

Add simple test for getFrequencyResponse.

Patch by Raymond Toy <Raymond Toy> on 2012-03-03
Reviewed by Chris Rogers.

  • webaudio/biquad-getFrequencyResponse-expected.txt: Added.
  • webaudio/biquad-getFrequencyResponse.html: Added.
10:49 AM Changeset in webkit [109661] by bbudge@chromium.org
  • 3 edits in trunk/Source/WebKit/chromium

Fixes AssociatedURLLoader support for Access-Control-Expose-Headers field in response.
https://bugs.webkit.org/show_bug.cgi?id=80198

Reviewed by Adam Barth.

  • src/AssociatedURLLoader.cpp:
  • tests/AssociatedURLLoaderTest.cpp:
4:34 AM Changeset in webkit [109660] by commit-queue@webkit.org
  • 5 edits in trunk

Unreviewed, rolling out r109343.
http://trac.webkit.org/changeset/109343
https://bugs.webkit.org/show_bug.cgi?id=80212

Int32array can't handle values for native nodes because they
have int64 ids (Requested by loislo1 on #webkit).

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

Source/WebCore:

  • inspector/front-end/HeapSnapshot.js:

(WebInspector.HeapSnapshotLoader.prototype._parseNodes):
(WebInspector.HeapSnapshotLoader.prototype.pushJSONChunk):
(WebInspector.HeapSnapshot):
(WebInspector.HeapSnapshot.prototype._init):

LayoutTests:

  • inspector/profiler/heap-snapshot-loader.html:
  • inspector/profiler/heap-snapshot-test.js:

(initialize_HeapSnapshotTest.InspectorTest.createHeapSnapshotMock):
(initialize_HeapSnapshotTest.InspectorTest.createHeapSnapshotMockWithDOM):
(initialize_HeapSnapshotTest):

1:16 AM Changeset in webkit [109659] by Philippe Normand
  • 3 edits in trunk/LayoutTests

Unreviewed, GTK tests_expectations update.

  • platform/gtk/Skipped:
  • platform/gtk/test_expectations.txt:
1:12 AM Changeset in webkit [109658] by commit-queue@webkit.org
  • 4 edits in trunk/Source/WebCore

Free up a bit in RenderObject.
http://webkit.org/b/80208

Patch by Andreas Kling <awesomekling@apple.com> on 2012-03-03
Reviewed by Anders Carlsson.

Move m_hasMarkupTruncation to RenderBlock, stealing one bit from m_lineHeight.
This flag is only used by RenderBlock.

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::RenderBlock):

  • rendering/RenderBlock.h:

(WebCore::RenderBlock::setHasMarkupTruncation):
(WebCore::RenderBlock::hasMarkupTruncation):
(RenderBlock):

  • rendering/RenderObject.h:

(RenderObject):
(WebCore::RenderObject::RenderObjectBitfields::RenderObjectBitfields):
(RenderObjectBitfields):

1:09 AM Changeset in webkit [109657] by Philippe Normand
  • 2 edits in trunk/LayoutTests

Unreviewed, rebaseline after r109623.

  • editing/selection/select-line-break-with-opposite-directionality-expected.txt:
12:35 AM Changeset in webkit [109656] by commit-queue@webkit.org
  • 40 edits
    15 adds in trunk

Implement vw/vh/vmin (viewport sizes) from CSS 3 Values and Units
https://bugs.webkit.org/show_bug.cgi?id=27160

The specification related to this implementation is located at http://dev.w3.org/csswg/css3-values/#viewport-relative-lengths.
vw/vh/vmin are implemented as primitive length units. Added the parsing logic for these new units and creation of primitive values.

Added new Length types such as ViewportRelativeWidth, ViewportRelativeHeight and ViewportRelativeMin for viewport-relative lengths
and included the support for fetching the value of these relative length units based on the current viewport size.

Patch by Joe Thomas <joethomas@motorola.com> on 2012-03-03
Reviewed by Antti Koivisto.

Source/WebCore:

Tests: css3/viewport-relative-lengths/css3-viewport-relative-lengths-getStyle.html

css3/viewport-relative-lengths/css3-viewport-relative-lengths-vh-absolute.html
css3/viewport-relative-lengths/css3-viewport-relative-lengths-vh.html
css3/viewport-relative-lengths/css3-viewport-relative-lengths-vmin-absolute.html
css3/viewport-relative-lengths/css3-viewport-relative-lengths-vmin.html
css3/viewport-relative-lengths/css3-viewport-relative-lengths-vw-absolute.html
css3/viewport-relative-lengths/css3-viewport-relative-lengths-vw.html

  • css/CSSComputedStyleDeclaration.cpp: Modified to support viewport relative Length types.

(WebCore::getPositionOffsetValue): Ditto.
(WebCore::getBorderRadiusCornerValues): Ditto.
(WebCore::getBorderRadiusCornerValue): Ditto.
(WebCore::getBorderRadiusShorthandValue): Ditto.
(WebCore::lineHeightFromStyle): Ditto.
(WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue): Ditto.

  • css/CSSGrammar.y: Added vw/vh/vmin support.
  • css/CSSParser.cpp: Parsing of relative units and creation of CSSPrimitiveValue.

(WebCore::CSSParser::validUnit): Added vw/vh/vmin to the valid units.
(WebCore::CSSParser::createPrimitiveNumericValue): Added vw/vh/vmin as valid primitive units.
(WebCore::unitFromString):
(WebCore::CSSParser::parseValidPrimitive): Creation of CSSPrimitiveValue for vw/vh/vmin.
(WebCore::CSSParser::detectNumberToken): Parsing the vw/vh/vmin tokens.

  • css/CSSPrimitiveValue.cpp:

(WebCore::isValidCSSUnitTypeForDoubleConversion): Added support for vw/vh/vmin.
(WebCore::unitCategory): Ditto.
(WebCore::CSSPrimitiveValue::CSSPrimitiveValue):
(WebCore::CSSPrimitiveValue::canonicalUnitTypeForCategory): Added support for vw/vh/vmin.
(WebCore::CSSPrimitiveValue::customCssText): Ditto.
(WebCore::CSSPrimitiveValue::viewportRelativeLength): Function to create the Length structure for the viewport-relative unit types.
(WebCore):

  • css/CSSPrimitiveValue.h:

(WebCore::CSSPrimitiveValue::isViewportRelativeLength): Checks whether the primitive value is ViewportRelative Lengths.
(CSSPrimitiveValue):

  • css/CSSPrimitiveValue.idl: Added support for vw/vh/vmin.
  • css/CSSStyleApplyProperty.cpp:

(WebCore::ApplyPropertyLength::applyValue): Applying relative viewport length units to the specific CSS property.
(WebCore::ApplyPropertyBorderRadius::applyValue): Ditto.
(WebCore::ApplyPropertyFontSize::applyValue): Ditto.
(WebCore::ApplyPropertyLineHeight::applyValue): Ditto.
(WebCore::ApplyPropertyVerticalAlign::applyValue): Ditto.

  • css/CSSStyleSelector.cpp:

(WebCore::convertToLength): Added support for viewport relative units.
(WebCore::createGridTrackBreadth): Ditto.
(WebCore::CSSStyleSelector::mapFillSize): Ditto.
(WebCore::CSSStyleSelector::mapFillXPosition): Ditto.
(WebCore::CSSStyleSelector::mapFillYPosition): Ditto.

  • dom/Document.cpp:

(WebCore::Document::pageSizeAndMarginsInPixels): Modified to support viewport relative Length types.
(WebCore::Document::viewportSize): New function to fetch the current viewport size.
(WebCore):

  • dom/Document.h: Ditto.

(Document):

  • html/HTMLAreaElement.cpp:

(WebCore::HTMLAreaElement::getRegion): Modified to support viewport relative Length types.

  • platform/Length.h: New LengthTypes such as ViewportRelativeWidth, ViewportRelativeHeight and ViewportRelativeMin added.

(WebCore::Length::calcValue): Modified to support viewport relative Length types.
(WebCore::Length::calcMinValue): Ditto.
(WebCore::Length::calcFloatValue): Ditto.
(Length):
(WebCore::Length::isViewportRelative): To check the Length is of type ViewportRelative.
(WebCore::Length::viewportRelativeLength): To get the relative value.

  • rendering/RenderBR.cpp:

(WebCore::RenderBR::lineHeight): Modified to support viewport relative Length types.

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::lineHeight): Ditto.

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::reflectionOffset): Ditto.
(WebCore::RenderBox::paintBoxDecorations): Ditto.
(WebCore::RenderBox::clipRect): Ditto.
(WebCore::RenderBox::computeLogicalWidthInRegion): Ditto.
(WebCore::RenderBox::computeLogicalWidthInRegionUsing): Ditto.
(WebCore::RenderBox::computeInlineDirectionMargins): Ditto.
(WebCore::RenderBox::computeLogicalHeightUsing): Ditto.
(WebCore::RenderBox::computePercentageLogicalHeight): Ditto.
(WebCore::RenderBox::computeReplacedLogicalHeightUsing): Ditto.
(WebCore::RenderBox::computeBlockDirectionMargins): Ditto.
(WebCore::RenderBox::computePositionedLogicalWidthUsing): Ditto.
(WebCore::RenderBox::computePositionedLogicalHeightUsing): Ditto.
(WebCore::RenderBox::computePositionedLogicalWidthReplaced): Ditto.
(WebCore::RenderBox::computePositionedLogicalHeightReplaced): Ditto.

  • rendering/RenderBoxModelObject.cpp:

(WebCore::RenderBoxModelObject::relativePositionOffsetX): Ditto.
(WebCore::RenderBoxModelObject::relativePositionOffsetY): Ditto.
(WebCore::RenderBoxModelObject::paddingTop): Ditto.
(WebCore::RenderBoxModelObject::paddingBottom): Ditto.
(WebCore::RenderBoxModelObject::paddingLeft): Ditto.
(WebCore::RenderBoxModelObject::paddingRight): Ditto.
(WebCore::RenderBoxModelObject::paddingBefore): Ditto.
(WebCore::RenderBoxModelObject::paddingAfter): Ditto.
(WebCore::RenderBoxModelObject::paddingStart): Ditto.
(WebCore::RenderBoxModelObject::paddingEnd): Ditto.
(WebCore::RenderBoxModelObject::getBackgroundRoundedRect): Ditto.
(WebCore::RenderBoxModelObject::calculateFillTileSize): Ditto.
(WebCore::RenderBoxModelObject::calculateBackgroundImageGeometry): Ditto.
(WebCore::computeBorderImageSide): Ditto.
(WebCore::RenderBoxModelObject::paintNinePieceImage): Ditto.
(WebCore::RenderBoxModelObject::paintBorder): Ditto.
(WebCore::RenderBoxModelObject::paintBoxShadow): Ditto.

  • rendering/RenderFlexibleBox.cpp:

(WebCore::RenderFlexibleBox::preferredMainAxisContentExtentForChild): Ditto.
(WebCore::RenderFlexibleBox::computeMainAxisPreferredSizes): Ditto.
(WebCore::RenderFlexibleBox::runFreeSpaceAllocationAlgorithm): Ditto.

  • rendering/RenderInline.cpp:

(WebCore::computeMargin): Ditto.
(WebCore::RenderInline::lineHeight): Ditto.

  • rendering/RenderMenuList.cpp:

(WebCore::RenderMenuList::updateOptionsWidth): Ditto.

  • rendering/RenderObject.cpp:

(WebCore::RenderObject::repaintAfterLayoutIfNeeded): Ditto.

  • rendering/RenderObject.h:

(WebCore::RenderObject::viewportSize): New function to fetch the current viewport size.
(RenderObject):

  • rendering/RenderReplaced.cpp:

(WebCore::RenderReplaced::paint): Modified to support viewport relative Length types.

  • rendering/RenderScrollbarPart.cpp:

(WebCore::calcScrollbarThicknessUsing): Ditto.
(WebCore::RenderScrollbarPart::computeScrollbarWidth): Ditto.
(WebCore::RenderScrollbarPart::computeScrollbarHeight): Ditto.

  • rendering/RenderTable.cpp:

(WebCore::RenderTable::computeLogicalWidth): Ditto.
(WebCore::RenderTable::convertStyleLogicalWidthToComputedWidth): Ditto.

  • rendering/RenderTableCell.cpp:

(WebCore::RenderTableCell::logicalHeightForRowSizing): Ditto.

  • rendering/RenderTableSection.cpp:

(WebCore::RenderTableSection::calcRowLogicalHeight): Ditto.

  • rendering/RenderText.h:

(WebCore::RenderText::marginLeft): Ditto.
(WebCore::RenderText::marginRight): Ditto.

  • rendering/RenderThemeMac.mm:

(WebCore::RenderThemeMac::paintMenuListButtonGradients): Ditto.

  • rendering/RenderWidget.cpp:

(WebCore::RenderWidget::paint): Ditto.

  • rendering/RootInlineBox.cpp:

(WebCore::RootInlineBox::verticalPositionForBox): Ditto.

  • rendering/style/RenderStyle.cpp:

(WebCore::calcRadiiFor): Ditto.
(WebCore::RenderStyle::getRoundedBorderFor): Ditto.

  • rendering/style/RenderStyle.h: Ditto.
  • rendering/svg/RenderSVGRoot.cpp:

(WebCore::resolveLengthAttributeForSVG): Ditto.
(WebCore::RenderSVGRoot::computeReplacedLogicalWidth): Ditto.
(WebCore::RenderSVGRoot::computeReplacedLogicalHeight): Ditto.

LayoutTests:

  • css3/viewport-relative-lengths: Added.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-getStyle-expected.txt: Added.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-getStyle.html: Added.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-vh-absolute-expected.html: Added.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-vh-absolute.html: Added.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-vh-expected.html: Added.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-vh.html: Added.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-vmin-absolute-expected.html: Added.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-vmin-absolute.html: Added.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-vmin-expected.html: Added.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-vmin.html: Added.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-vw-absolute-expected.html: Added.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-vw-absolute.html: Added.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-vw-expected.html: Added.
  • css3/viewport-relative-lengths/css3-viewport-relative-lengths-vw.html: Added.
  • fast/dom/Window/window-properties-expected.txt:
  • platform/gtk/fast/dom/Window/window-properties-expected.txt:
  • platform/mac/fast/dom/Window/window-properties-expected.txt:
  • platform/qt/fast/dom/Window/window-properties-expected.txt:
  • platform/win/fast/dom/Window/window-properties-expected.txt:
Note: See TracTimeline for information about the timeline view.