Timeline



Feb 19, 2011:

11:33 PM Changeset in webkit [79147] by Lucas Forschler
  • 1 copy in tags/Safari-534.20.5

New tag.

10:20 PM Changeset in webkit [79146] by Lucas Forschler
  • 2 edits in branches/safari-534.20-branch/Source/WebKit2

Merge r79133.

7:10 PM Changeset in webkit [79145] by andreas.kling@nokia.com
  • 2 edits in trunk/Source/WebCore

2011-02-19 Andreas Kling <kling@webkit.org>

Reviewed by Oliver Hunt.

DragController should use Color::serialized() when passing colors to CSSStyleDeclaration
https://bugs.webkit.org/show_bug.cgi?id=54545

  • page/DragController.cpp: (WebCore::DragController::concludeEditDrag):
5:00 PM Changeset in webkit [79144] by Laszlo Gombos
  • 2 edits in trunk/Source/JavaScriptCore

2011-02-19 Laszlo Gombos <Laszlo Gombos>

Unreviewed build fix for Symbian.

[Symbian] Revert the removal of linking
against hal after r79126.

Dependency on the hal library can not be removed
as it is still used (e.g. in MarkStackSymbian.cpp).

4:44 PM Changeset in webkit [79143] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/efl

2011-02-19 Lukasz Slachciak <l.slachciak@samsung.com>

Reviewed by Andreas Kling.

[EFL] Eliminated error when .webkit directory doesn't exist.
https://bugs.webkit.org/show_bug.cgi?id=54813

  • ewk/ewk_main.cpp: (_ewk_init_body):
4:05 PM Changeset in webkit [79142] by barraclough@apple.com
  • 12 edits in trunk/Source/JavaScriptCore

Interpreter build fix.

  • runtime/ArrayConstructor.cpp:
  • runtime/BooleanPrototype.cpp:
  • runtime/DateConstructor.cpp:
  • runtime/ErrorPrototype.cpp:
  • runtime/FunctionPrototype.cpp:
  • runtime/Lookup.cpp:
  • runtime/NumberPrototype.cpp:
  • runtime/ObjectConstructor.cpp:
  • runtime/ObjectPrototype.cpp:
  • runtime/RegExpPrototype.cpp:
  • runtime/StringConstructor.cpp:
3:59 PM Changeset in webkit [79141] by weinig@apple.com
  • 9 edits in trunk/Source

Add phase in addition to momentumPhase to platform wheel events
Part of <rdar://problem/8945362>

Reviewed by Anders Carlsson.

Rename existing phase to momentumPhase.

../WebCore:

  • platform/PlatformWheelEvent.h:

(WebCore::PlatformWheelEvent::PlatformWheelEvent):
(WebCore::PlatformWheelEvent::momentumPhase):

  • platform/mac/ScrollAnimatorMac.mm:

(WebCore::ScrollAnimatorMac::handleWheelEvent):
(WebCore::ScrollAnimatorMac::smoothScrollWithEvent):

  • platform/mac/WheelEventMac.mm:

(WebCore::momentumPhaseForEvent):
(WebCore::phaseForEvent):
(WebCore::PlatformWheelEvent::PlatformWheelEvent):

../WebKit2:

  • Shared/WebEvent.h:

(WebKit::WebWheelEvent::momentumPhase):

  • Shared/WebEventConversion.cpp:

(WebKit::WebKit2PlatformWheelEvent::WebKit2PlatformWheelEvent):

  • Shared/WebWheelEvent.cpp:

(WebKit::WebWheelEvent::WebWheelEvent):
(WebKit::WebWheelEvent::encode):
(WebKit::WebWheelEvent::decode):

  • Shared/mac/WebEventFactory.mm:

(WebKit::phaseForEvent):
(WebKit::momentumPhaseForEvent):
(WebKit::WebEventFactory::createWebWheelEvent):

2:41 PM Changeset in webkit [79140] by barraclough@apple.com
  • 2 edits in trunk/Source/WebCore

Qt build fix.

  • bridge/runtime_method.h:

(JSC::RuntimeMethod::createStructure):

2:32 PM Changeset in webkit [79139] by barraclough@apple.com
  • 3 edits in trunk/Source/WebCore

Qt build fix.

  • bridge/qt/qt_instance.cpp:
  • bridge/qt/qt_pixmapruntime.cpp:
2:27 PM Changeset in webkit [79138] by barraclough@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Build fix!!

2:24 PM Changeset in webkit [79137] by barraclough@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Windows build fix!!

2:18 PM Changeset in webkit [79136] by barraclough@apple.com
  • 3 edits in trunk/Source/WebCore

Qt build fix.

  • bridge/qt/qt_instance.cpp:

(JSC::Bindings::QtInstance::getMethod):

  • bridge/qt/qt_pixmapruntime.cpp:

(JSC::Bindings::QtPixmapInstance::getMethod):

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

Windows build fix!

2:04 PM Changeset in webkit [79134] by barraclough@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Build fix!

1:57 PM Changeset in webkit [79133] by andersca@apple.com
  • 2 edits in trunk/Source/WebKit2

2011-02-19 Anders Carlsson <andersca@apple.com>

Reviewed by Dan Bernstein.

Crash when trying to take a snapshot of an uninitialized plug-in
https://bugs.webkit.org/show_bug.cgi?id=54812

  • WebProcess/Plugins/PluginView.cpp: (WebKit::PluginView::notifyWidget): Don't try to create a snapshot of the plug-in if it hasn't been initialized.
1:55 PM Changeset in webkit [79132] by barraclough@apple.com
  • 159 edits in trunk/Source

Bug 54786 - Devirtualize JSCell::classInfo()

Reviewed by Sam Weinig.

Instead of making a virtual function call, add a pointer to the ClassInfo
onto Structure.

This removes a virtual function call, and paves the way towards removing all
the createStructure methods, and StructureFlags/AnonymousSlotCount properties
(these should be able to move onto ClassInfo).

Calls to Structure::create must now pass a pointer to the ClassInfo for the
structure. All objects now have a ClassInfo pointer, non-object cell types
still do not.

Changes are most mechanical, involving three steps:

  • Remove virtual classInfo() methods.
  • Add &s_info parameter to calls to Structure::create.
  • Rename ClassInfo static members on classes from 'info' to 's_info', for consistency.

Source/JavaScriptCore:

  • API/JSCallbackConstructor.cpp:
  • API/JSCallbackConstructor.h:
  • API/JSCallbackFunction.cpp:
  • API/JSCallbackFunction.h:
  • API/JSCallbackObject.cpp:
  • API/JSCallbackObject.h:
  • API/JSCallbackObjectFunctions.h:
  • API/JSObjectRef.cpp:
  • API/JSValueRef.cpp:
  • API/JSWeakObjectMapRefPrivate.cpp:
  • JavaScriptCore.exp:
  • debugger/Debugger.cpp:
  • debugger/DebuggerActivation.h:
  • debugger/DebuggerCallFrame.cpp:
  • interpreter/Interpreter.cpp:
  • jit/JITCall32_64.cpp:
  • jit/JITOpcodes.cpp:
  • jit/JITStubs.cpp:
  • profiler/Profiler.cpp:
  • runtime/Arguments.cpp:
  • runtime/Arguments.h:
  • runtime/ArrayConstructor.cpp:
  • runtime/ArrayPrototype.cpp:
  • runtime/ArrayPrototype.h:
  • runtime/BooleanObject.cpp:
  • runtime/BooleanObject.h:
  • runtime/BooleanPrototype.cpp:
  • runtime/DateConstructor.cpp:
  • runtime/DateInstance.cpp:
  • runtime/DateInstance.h:
  • runtime/DatePrototype.cpp:
  • runtime/DatePrototype.h:
  • runtime/ErrorInstance.cpp:
  • runtime/ErrorInstance.h:
  • runtime/ErrorPrototype.cpp:
  • runtime/FunctionPrototype.cpp:
  • runtime/FunctionPrototype.h:
  • runtime/GetterSetter.h:
  • runtime/GlobalEvalFunction.h:
  • runtime/InternalFunction.cpp:
  • runtime/InternalFunction.h:
  • runtime/JSAPIValueWrapper.h:
  • runtime/JSActivation.cpp:
  • runtime/JSActivation.h:
  • runtime/JSArray.cpp:
  • runtime/JSArray.h:
  • runtime/JSByteArray.cpp:
  • runtime/JSByteArray.h:
  • runtime/JSCell.cpp:
  • runtime/JSCell.h:
  • runtime/JSFunction.cpp:
  • runtime/JSFunction.h:
  • runtime/JSGlobalData.cpp:
  • runtime/JSGlobalObject.cpp:
  • runtime/JSGlobalObject.h:
  • runtime/JSNotAnObject.h:
  • runtime/JSONObject.cpp:
  • runtime/JSONObject.h:
  • runtime/JSObject.cpp:
  • runtime/JSObject.h:
  • runtime/JSObjectWithGlobalObject.h:
  • runtime/JSPropertyNameIterator.h:
  • runtime/JSStaticScopeObject.h:
  • runtime/JSString.h:
  • runtime/JSVariableObject.h:
  • runtime/JSWrapperObject.h:
  • runtime/JSZombie.cpp:
  • runtime/JSZombie.h:
  • runtime/Lookup.cpp:
  • runtime/MathObject.cpp:
  • runtime/MathObject.h:
  • runtime/NativeErrorConstructor.cpp:
  • runtime/NativeErrorConstructor.h:
  • runtime/NumberConstructor.cpp:
  • runtime/NumberConstructor.h:
  • runtime/NumberObject.cpp:
  • runtime/NumberObject.h:
  • runtime/NumberPrototype.cpp:
  • runtime/ObjectConstructor.cpp:
  • runtime/ObjectPrototype.cpp:
  • runtime/RegExpConstructor.cpp:
  • runtime/RegExpConstructor.h:
  • runtime/RegExpObject.cpp:
  • runtime/RegExpObject.h:
  • runtime/RegExpPrototype.cpp:
  • runtime/ScopeChain.cpp:
  • runtime/StringConstructor.cpp:
  • runtime/StringObject.cpp:
  • runtime/StringObject.h:
  • runtime/StringObjectThatMasqueradesAsUndefined.h:
  • runtime/StringPrototype.cpp:
  • runtime/StringPrototype.h:
  • runtime/Structure.cpp:
  • runtime/Structure.h:

Source/JavaScriptGlue:

  • JSUtils.cpp:

(KJSValueToJSObject):
(KJSValueToCFTypeInternal):

  • UserObjectImp.cpp:
  • UserObjectImp.h:

(UserObjectImp::createStructure):

Source/WebCore:

  • WebCore.exp.in:
  • bindings/js/JSAudioConstructor.cpp:
  • bindings/js/JSAudioConstructor.h:
  • bindings/js/JSDOMBinding.cpp:
  • bindings/js/JSDOMBinding.h:
  • bindings/js/JSDOMGlobalObject.cpp:
  • bindings/js/JSDOMGlobalObject.h:
  • bindings/js/JSDOMWindowBase.cpp:
  • bindings/js/JSDOMWindowBase.h:
  • bindings/js/JSDOMWindowShell.cpp:
  • bindings/js/JSDOMWindowShell.h:
  • bindings/js/JSGeolocationCustom.cpp:
  • bindings/js/JSImageConstructor.cpp:
  • bindings/js/JSImageConstructor.h:
  • bindings/js/JSImageDataCustom.cpp:
  • bindings/js/JSOptionConstructor.cpp:
  • bindings/js/JSOptionConstructor.h:
  • bindings/js/JSWorkerContextBase.cpp:
  • bindings/js/JSWorkerContextBase.h:
  • bindings/js/SerializedScriptValue.cpp:
  • bindings/scripts/CodeGeneratorJS.pm:
  • bridge/c/CRuntimeObject.cpp:
  • bridge/c/CRuntimeObject.h:
  • bridge/c/c_instance.cpp:
  • bridge/jni/jsc/JNIUtilityPrivate.cpp:
  • bridge/jni/jsc/JavaInstanceJSC.cpp:
  • bridge/jni/jsc/JavaRuntimeObject.cpp:
  • bridge/jni/jsc/JavaRuntimeObject.h:
  • bridge/jsc/BridgeJSC.cpp:
  • bridge/objc/ObjCRuntimeObject.h:
  • bridge/objc/ObjCRuntimeObject.mm:
  • bridge/objc/objc_instance.mm:
  • bridge/objc/objc_runtime.h:
  • bridge/objc/objc_runtime.mm:
  • bridge/runtime_array.cpp:
  • bridge/runtime_array.h:
  • bridge/runtime_method.cpp:
  • bridge/runtime_method.h:
  • bridge/runtime_object.cpp:
  • bridge/runtime_object.h:

Source/WebKit/mac:

  • Plugins/Hosted/ProxyInstance.mm:

(WebKit::ProxyRuntimeMethod::ProxyRuntimeMethod):
(WebKit::ProxyRuntimeMethod::createStructure):

  • Plugins/Hosted/ProxyRuntimeObject.h:

(WebKit::ProxyRuntimeObject::createStructure):

  • Plugins/Hosted/ProxyRuntimeObject.mm:

(WebKit::ProxyRuntimeObject::ProxyRuntimeObject):

  • WebView/WebView.mm:

(aeDescFromJSValue):

Source/WebKit2:

  • WebProcess/Plugins/Netscape/JSNPMethod.cpp:

(WebKit::JSNPMethod::JSNPMethod):

  • WebProcess/Plugins/Netscape/JSNPMethod.h:

(WebKit::JSNPMethod::createStructure):

  • WebProcess/Plugins/Netscape/JSNPObject.cpp:

(WebKit::JSNPObject::JSNPObject):

  • WebProcess/Plugins/Netscape/JSNPObject.h:

(WebKit::JSNPObject::createStructure):

1:15 PM Changeset in webkit [79131] by ddkilzer@apple.com
  • 4 edits in trunk/Source/JavaScriptCore

<http://webkit.org/b/54808> Change jsc target to build directly into JavaScriptCore.framework/Resources/jsc

Reviewed by Dan Bernstein.

  • Configurations/Base.xcconfig: Added

JAVASCRIPTCORE_FRAMEWORKS_DIR variable.

  • Configurations/JavaScriptCore.xcconfig: Used

JAVASCRIPTCORE_FRAMEWORKS_DIR to define INSTALL_PATH.

for Production configuration of jsc target.
(Copy Into Framework): Removed old build phase.
(Fix Framework Reference): Renamed build phase to "Copy Into
Framework". Added "set -x" call to make the script print the
commands it is running. Added code to exit early for Production
builds since this was never intended for them. Added code to
copy jsc into the JavaScriptCore.framework/Resources directory.

1:06 PM Changeset in webkit [79130] by commit-queue@webkit.org
  • 8 edits
    2 adds in trunk

2011-02-19 Ryuan Choi <ryuan.choi@samsung.com>

Reviewed by Martin Robinson.

[GTK] Remove mandatory Enchant dependency
https://bugs.webkit.org/show_bug.cgi?id=51587

Add enable-spellcheck option which decides whether to use enchant.
If disabled, WebKitGTK+ will not use enchant library.

  • configure.ac:

2011-02-19 Ryuan Choi <ryuan.choi@samsung.com>

Reviewed by Martin Robinson.

[GTK] Remove mandatory Enchant dependency
https://bugs.webkit.org/show_bug.cgi?id=51587

Extract TextCheckerClientEnchant From EditorClientGtk and remove
enchant dependency from other files.

  • GNUmakefile.am:
  • WebCoreSupport/EditorClientGtk.cpp: (WebKit::EditorClient::EditorClient):
  • WebCoreSupport/EditorClientGtk.h: (WebKit::EditorClient::textChecker):
  • WebCoreSupport/TextCheckerClientEnchant.cpp: Added. (WebKit::TextCheckerClientEnchant::TextCheckerClientEnchant): (WebKit::TextCheckerClientEnchant::~TextCheckerClientEnchant): (WebKit::TextCheckerClientEnchant::ignoreWordInSpellDocument): (WebKit::TextCheckerClientEnchant::learnWord): (WebKit::TextCheckerClientEnchant::checkSpellingOfString): (WebKit::TextCheckerClientEnchant::getAutoCorrectSuggestionForMisspelledWord): (WebKit::TextCheckerClientEnchant::checkGrammarOfString): (WebKit::TextCheckerClientEnchant::getGuessesForWord): (WebKit::getAvailableDictionariesCallback): (WebKit::TextCheckerClientEnchant::updateSpellCheckingLanguage): (WebKit::TextCheckerClientEnchant::freeSpellCheckingLanguage):
  • WebCoreSupport/TextCheckerClientEnchant.h: Added. (WebKit::TextCheckerClientEnchant::requestCheckingOfString):
  • webkit/webkitwebsettings.cpp: (webkit_web_settings_finalize): (webkit_web_settings_set_property):
  • webkit/webkitwebview.cpp: (webkit_web_view_settings_notify):
12:28 PM Changeset in webkit [79129] by commit-queue@webkit.org
  • 4 edits in trunk

2011-02-19 Zan Dobersek <zandobersek@gmail.com>

Reviewed by Martin Robinson.

[cairo][canvas] Drawing from/into float rectangles with width or height in range 0 to 1 fails
https://bugs.webkit.org/show_bug.cgi?id=54491

Enable another passing test after fixing float values rounding.

  • platform/gtk/Skipped:

2011-02-19 Zan Dobersek <zandobersek@gmail.com>

Reviewed by Martin Robinson.

[cairo][canvas] Drawing from/into float rectangles with width or height in range 0 to 1 fails
https://bugs.webkit.org/show_bug.cgi?id=54491

When width or height in float rectangle are in range (0, 0.5) or (-0.5, 0)
and would round to 0, alter the behaviour to ensure that width or height are
at least 1 pixel in size in these cases.

  • platform/graphics/cairo/GraphicsContextCairo.cpp: (WebCore::GraphicsContext::roundToDevicePixels):
12:12 PM Changeset in webkit [79128] by mitz@apple.com
  • 2 edits in trunk/Source/WebCore

LLVM Compiler build fix.

  • platform/graphics/ShadowBlur.cpp:

(WebCore::ShadowBlur::blurLayerImage): Eliminated a file static that generated
a global initializer since the compiler does not evaluate sqrtf at compile time.

11:05 AM Changeset in webkit [79127] by weinig@apple.com
  • 3 edits in trunk/Source/WebKit2

Rename performLookupAtCurrentMouseLocation to performDictionaryLookupAtCurrentMouseLocation

Reviewed by Anders Carlsson.

  • UIProcess/API/mac/WKView.mm:

(-[WKView performDictionaryLookupAtCurrentMouseLocation]):

  • UIProcess/API/mac/WKViewPrivate.h:
10:05 AM Changeset in webkit [79126] by commit-queue@webkit.org
  • 5 edits
    1 add in trunk/Source/JavaScriptCore

2011-02-19 Siddharth Mathur <siddharth.mathur@nokia.com>

Reviewed by Laszlo Gombos.

[Symbian] OSAllocator implementation for Symbian OS.
Manages both data and code region requests. V8 and Sunspider tested
OK with interpreter. Not tested with JSC JIT yet as it has unrelated
failures. Also no thread safety yet.
https://bugs.webkit.org/show_bug.cgi?id=51128

  • JavaScriptCore.pri: removed HAL linkage
  • wtf/Bitmap.h: (WTF::::findRunOfZeros): find run of zeros in a bitmap. quick n dirty
  • wtf/OSAllocator.h: (WTF::OSAllocator::decommitAndRelease): decommit explicitly
  • wtf/OSAllocatorSymbian.cpp: Impl. of OSAllocator interface (WTF::allocateCodeChunk): utility for code chunks (WTF::deallocateCodeChunk): utility for code chunks (WTF::dataAllocatorInstance): getter for data allocator instance (WTF::OSAllocator::reserveUncommitted): (WTF::OSAllocator::releaseDecommitted): (WTF::OSAllocator::commit): (WTF::OSAllocator::decommit): (WTF::OSAllocator::reserveAndCommit): (WTF::PageAllocatorSymbian::PageAllocatorSymbian): maps requests to one underlying Symbian chunk (WTF::PageAllocatorSymbian::~PageAllocatorSymbian): (WTF::PageAllocatorSymbian::reserve): (WTF::PageAllocatorSymbian::release): (WTF::PageAllocatorSymbian::commit): (WTF::PageAllocatorSymbian::decommit): (WTF::PageAllocatorSymbian::contains):
  • wtf/PageAllocatorSymbian.h: Added. (WTF::SymbianChunk::SymbianChunk): wrapper around RChunk (WTF::SymbianChunk::~SymbianChunk): (WTF::SymbianChunk::contains):
8:06 AM Changeset in webkit [79125] by alex
  • 2 edits in trunk/LayoutTests

2011-02-19 Alejandro G. Castro <alex@igalia.com>

Unreviewed, fixed typo in the GTK+ skipped file.

  • platform/gtk/Skipped:
8:06 AM Changeset in webkit [79124] by commit-queue@webkit.org
  • 3 edits in trunk/Source/JavaScriptCore

2011-02-19 Yong Li <yoli@rim.com>

Reviewed by Eric Seidel.

https://bugs.webkit.org/show_bug.cgi?id=54687
When being built with armcc, "int" bit fields are treated as
unsigned integers, which will fail the comparisons like "m_offset == -1".
Using "signed" fixes the problem.

  • assembler/ARMAssembler.h:
  • assembler/ARMv7Assembler.h:
7:56 AM Changeset in webkit [79123] by commit-queue@webkit.org
  • 8 edits in trunk/Source

2011-02-19 Brian Ryner <bryner@chromium.org>

Reviewed by Adam Barth.

Replace the #include of DocumentLoader.h in Document.h with a
forward declaration, and add a missing #include now that this
transitive include is gone.
https://bugs.webkit.org/show_bug.cgi?id=50489

No new tests required.

  • bindings/ScriptControllerBase.cpp:
  • dom/Document.h:

2011-02-19 Brian Ryner <bryner@chromium.org>

Reviewed by Adam Barth.

Add missing #includes of DocumentLoader.h, needed since the transitive
include through Document.h is removed.
https://bugs.webkit.org/show_bug.cgi?id=50489

  • src/WebPageSerializerImpl.cpp:
  • src/WebSearchableFormData.cpp:

2011-02-19 Brian Ryner <bryner@chromium.org>

Reviewed by Adam Barth.

Add missing #include of DocumentLoader.h, needed since the transitive
include through Document.h is removed.
https://bugs.webkit.org/show_bug.cgi?id=50489

  • WebView/WebFrame.mm:
7:53 AM Changeset in webkit [79122] by Patrick Gansterer
  • 1 edit
    1 copy in trunk/Source/WebCore

2011-02-19 Patrick Gansterer <Patrick Gansterer>

Reviewed by Antonio Gomes.

[EFL] Remove WebCore::currentTime()
https://bugs.webkit.org/show_bug.cgi?id=53886

There is no declaration for it and we use WTF::currentTime() everywhere.

  • platform/efl/SystemTimeEfl.cpp:
7:45 AM Changeset in webkit [79121] by Patrick Gansterer
  • 2 edits
    1 move in trunk/Source/WebCore

2011-02-19 Patrick Gansterer <Patrick Gansterer>

Reviewed by Andreas Kling.

Move KeygenWinCE from wince into win directory
https://bugs.webkit.org/show_bug.cgi?id=54804

Move this file into the win directory, since it can be used on all windows platforms.

  • CMakeListsWinCE.txt:
  • platform/win/SSLKeyGeneratorWin.cpp: Renamed from platform/wince/KeygenWinCE.cpp.
7:17 AM Changeset in webkit [79120] by Patrick Gansterer
  • 3 edits in trunk/Tools

2011-02-19 Patrick Gansterer <Patrick Gansterer>

Reviewed by Andreas Kling.

Make WinCE a core builder
https://bugs.webkit.org/show_bug.cgi?id=54801

  • Scripts/webkitpy/common/net/buildbot/buildbot.py:
  • Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
6:38 AM Changeset in webkit [79119] by Patrick Gansterer
  • 3 edits
    1 delete in trunk/Source/WebCore

2011-02-19 Patrick Gansterer <Patrick Gansterer>

Reviewed by Andreas Kling.

Make FileChooserWin.cpp more portable and use it on WinCE
https://bugs.webkit.org/show_bug.cgi?id=54803

  • CMakeListsWinCE.txt:
  • platform/win/FileChooserWin.cpp: (WebCore::FileChooser::basenameForWidth):
  • platform/wince/FileChooserWinCE.cpp: Removed.
5:30 AM Changeset in webkit [79118] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

2011-02-19 Benjamin Poulain <ikipou@gmail.com>

Reviewed by Andreas Kling.

[Qt] Enable the skipped tests combining workers and database
https://bugs.webkit.org/show_bug.cgi?id=54802

Enable the tests that do not seem to be flaky anymore.

  • platform/qt/Skipped:
2:01 AM Changeset in webkit [79117] by Lucas Forschler
  • 5 edits in branches/safari-534.20-branch/Source

Versioning again

1:49 AM Changeset in webkit [79116] by Lucas Forschler
  • 1 edit in branches/safari-534.20-branch/Source/WebKit2/ChangeLog

Versioning.

1:45 AM Changeset in webkit [79115] by Lucas Forschler
  • 6 edits in branches/safari-534.20-branch/Source

Versioning.

1:39 AM Changeset in webkit [79114] by simonjam@chromium.org
  • 13 edits in trunk

2011-02-19 James Simonsen <simonjam@chromium.org>

Reviewed by Adam Barth.

Make ScriptElement match the HTML5 spec
https://bugs.webkit.org/show_bug.cgi?id=54676

This implements the "prepare a script" section of the HTML5 spec in ScriptElement::prepareScript().
http://www.whatwg.org/specs/web-apps/current-work/multipage/scripting-1.html#prepare-a-script

There are a couple of things missing from the spec that would be new functionality. These will be added later.

  • Support for async=false
  • Empty src attribute should dispatch an error.

There are a couple of slight behavioral changes to match the spec.

  • An XHTML script that is loaded then copied will not fire load on the copy.
  • If onbeforeload moves the script to a different document, then it will not try to execute again because wasAlreadyStarted is true.

The parsers were updated to use the new API, but not rewritten to look like the spec. That will be done separately.

  • fast/dom/HTMLScriptElement/move-in-beforeload.html: Original author says test was only meant to check for crashes. Beforeload is not specified by HTML5. Test was modified to assume moved script wouldn't execute because wasAlreadyStarted is set.
  • fast/dom/script-clone-rerun-src.xhtml: According to HTML5 spec, load should only fire after a script executes. Test was modified to match that. The old broken behavior was that load fired on the cloned element, even though it didn't execute.

2011-02-19 James Simonsen <simonjam@chromium.org>

Reviewed by Adam Barth.

Make ScriptElement match the HTML5 spec
https://bugs.webkit.org/show_bug.cgi?id=54676

This implements the "prepare a script" section of the HTML5 spec in ScriptElement::prepareScript().
http://www.whatwg.org/specs/web-apps/current-work/multipage/scripting-1.html#prepare-a-script

There are a couple of things missing from the spec that would be new functionality. These will be added later.

  • Support for async=false
  • Empty src attribute should dispatch an error.

There are a couple of slight behavioral changes to match the spec.

  • An XHTML script that is loaded then copied will not fire load on the copy.
  • If onbeforeload moves the script to a different document, then it will not try to execute again because wasAlreadyStarted is true.

The parsers were updated to use the new API, but not rewritten to look like the spec. That will be done separately.

Test: All existing tests.

  • dom/ScriptElement.cpp: Rewritten to match HTML5 spec. (WebCore::ScriptElement::ScriptElement): (WebCore::ScriptElement::insertedIntoDocument): Logic moved to prepareScript. (WebCore::ScriptElement::childrenChanged): Logic moved to prepareScript. (WebCore::ScriptElement::handleSourceAttribute): Logic moved to prepareScript. (WebCore::isLegacySupportedJavaScriptLanguage): Added to support old script types in layout tests. (WebCore::ScriptElement::isScriptTypeSupported): Derived from old shouldExecuteAsJavaScript(). (WebCore::ScriptElement::prepareScript): START HERE. Main change. Should read exactly like HTML5's "prepare a script." Legacy type support needed for layout tests using XML parser. (WebCore::ScriptElement::requestScript): Most logic moved to prepareScript. Check security settings here. (WebCore::ScriptElement::executeScript): Combined evaluateScript() and executeScript() from old code. Logic moved to prepareScript. (WebCore::ScriptElement::stopLoadRequest): Ignore parser executed scripts. (WebCore::ScriptElement::execute): Renamed executeScript. (WebCore::ScriptElement::notifyFinished): We should only listen for non-parser executed scripts. (WebCore::ScriptElement::ignoresLoadRequest): New variable names. (WebCore::ScriptElement::childrenAreCommentsOrEmptyText): Added for HTML5 compliance. (WebCore::ScriptElement::scriptCharset): Use HTML5 variables.
  • dom/ScriptElement.h: (WebCore::ScriptElement::willBeParserExecuted): Added. (WebCore::ScriptElement::readyToBeParserExecuted): Added. (WebCore::ScriptElement::willExecuteWhenDocumentFinishedParsing): Added. (WebCore::ScriptElement::cachedScript): prepareScript() is the only place that should load scripts. This accessor lets the parsers listen for when loads finish. (WebCore::ScriptElement::isParserInserted): Added.
  • dom/XMLDocumentParserLibxml2.cpp: (WebCore::XMLDocumentParser::endElementNs): Should behave the same. Offloads much of its work to prepareScript().
  • dom/XMLDocumentParserQt.cpp: (WebCore::XMLDocumentParser::parseEndElement): Identical to libxml2 changes.
  • html/HTMLScriptElement.cpp: (WebCore::HTMLScriptElement::insertedIntoDocument): No longer needs url. (WebCore::HTMLScriptElement::hasSourceAttribute): Added.
  • html/HTMLScriptElement.h:
  • html/parser/HTMLScriptRunner.cpp: (WebCore::HTMLScriptRunner::requestPendingScript): Requesting scripts offloaded to ScriptElement. (WebCore::HTMLScriptRunner::runScript): Should behave the same. Offloads much of its work to prepareScript().
  • svg/SVGScriptElement.cpp: (WebCore::SVGScriptElement::svgAttributeChanged): New ScriptElement function names. (WebCore::SVGScriptElement::insertedIntoDocument): No longer needs url. (WebCore::SVGScriptElement::finishParsingChildren): ScriptElement::finishParsingChildren is gone. (WebCore::SVGScriptElement::hasSourceAttribute): Added. (WebCore::SVGScriptElement::dispatchLoadEvent): New ScriptElement function names.
  • svg/SVGScriptElement.h:
1:35 AM Styling Form Controls edited by tkent@chromium.org
Mention validation messages (diff)
1:17 AM Changeset in webkit [79113] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/efl

2011-02-19 Lukasz Slachciak <l.slachciak@samsung.com>

Unreviewed build fix.

SoupSession build break fix
https://bugs.webkit.org/show_bug.cgi?id=54796

  • ewk/ewk_settings.cpp: (ewk_settings_proxy_uri_set):
12:58 AM Changeset in webkit [79112] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

2011-02-19 Marc-Antoine Ruel <maruel@chromium.org>

Reviewed by James Robinson.

Split webcore_rendering off webcore_remaining to reduce its size for WPO builds
https://bugs.webkit.org/show_bug.cgi?id=54789

  • WebCore.gyp/WebCore.gyp:
12:46 AM Changeset in webkit [79111] by atwilson@chromium.org
  • 2 edits in trunk/LayoutTests

Updated test expectations (more fallout from r78846).

  • platform/chromium/test_expectations.txt:
12:39 AM Changeset in webkit [79110] by commit-queue@webkit.org
  • 4 edits
    1 copy in trunk/Source/WebCore

2011-02-19 Bill Budge <bbudge@chromium.org>

Reviewed by David Levin.

ThreadableLoaderClient needs willSendRequest method
https://bugs.webkit.org/show_bug.cgi?id=54688

No new tests. Exposes no new functionality

  • WebCore.gypi:
  • loader/DocumentThreadableLoader.cpp: (WebCore::DocumentThreadableLoader::willSendRequest): (WebCore::DocumentThreadableLoader::didReceiveData): (WebCore::DocumentThreadableLoader::didReceiveCachedMetadata):
  • loader/DocumentThreadableLoaderClient.h: Added. (WebCore::DocumentThreadableLoaderClient::isDocumentThreadableLoaderClient): (WebCore::DocumentThreadableLoaderClient::willSendRequest):
  • loader/ThreadableLoaderClient.h: (WebCore::ThreadableLoaderClient::isDocumentThreadableLoaderClient):
12:33 AM Changeset in webkit [79109] by Lucas Forschler
  • 1 copy in tags/Safari-534.20.4

New tag.

12:31 AM Changeset in webkit [79108] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/efl

2011-02-19 Lukasz Slachciak <l.slachciak@samsung.com>

Reviewed by Andreas Kling.

[EFL] Use standard WebCore::homeDirectoryPath method instead of reimplementing it
https://webkit.org/b/54781

  • ewk/ewk_main.cpp: (_ewk_init_body):
12:29 AM Changeset in webkit [79107] by commit-queue@webkit.org
  • 39 edits
    3 adds in trunk

2011-02-19 Charlie Reis <creis@chromium.org>

Reviewed by Mihai Parparita.

Ensure loading has stopped in HistoryController::goToItem
https://bugs.webkit.org/show_bug.cgi?id=54517

Tests that going forward within the same document does not stop loading.

  • http/tests/navigation/forward-to-fragment-fires-onload.html: Added.
  • http/tests/navigation/forward-to-fragment-fires-onload-expected.txt: Added.
  • http/tests/navigation/resources/forward-to-fragment-fires-onload-2.html: Added.

2011-02-19 Charlie Reis <creis@chromium.org>

Reviewed by Mihai Parparita.

Ensure loading has stopped in HistoryController::goToItem
https://bugs.webkit.org/show_bug.cgi?id=54517

Avoid stopping all loaders in goToItem for same document navigations
or pseudo-back-forward URLs. Make HistoryController::goToItem private
to force callers to go through Page::goToItem. Also add a callback to
FrameLoaderClient to let clients decide whether to stop loading first.

Test: http/tests/navigation/forward-to-fragment-fires-onload.html

  • loader/EmptyClients.h:
  • loader/FrameLoader.h:
  • loader/FrameLoaderClient.h:
  • loader/HistoryController.cpp:
  • loader/HistoryController.h:
  • page/Page.cpp:

2011-02-19 Charlie Reis <creis@chromium.org>

Reviewed by Mihai Parparita.

Ensure loading has stopped in HistoryController::goToItem
https://bugs.webkit.org/show_bug.cgi?id=54517

Call Page::goToItem instead of HistoryController::goToItem, so that
FrameLoader::stopAllLoaders is called first. Also adds a callback in
FrameLoaderClient for checking for pseudo-back-forward URLs.

Test: http/tests/navigation/forward-to-fragment-fires-onload.html

  • src/FrameLoaderClientImpl.cpp: (WebKit::FrameLoaderClientImpl::shouldStopLoadingForHistoryItem): Added.
  • src/FrameLoaderClientImpl.h:
  • src/WebFrameImpl.cpp:

2011-02-19 Charlie Reis <creis@chromium.org>

Reviewed by Mihai Parparita.

Ensure loading has stopped in HistoryController::goToItem
https://bugs.webkit.org/show_bug.cgi?id=54517

Add a FrameLoaderClient callback for whether to stop loading before goToItem.

Test: http/tests/navigation/forward-to-fragment-fires-onload.html

  • WebCoreSupport/FrameLoaderClientEfl.cpp: (WebCore::FrameLoaderClientEfl::shouldStopLoadingForHistoryItem): Added.
  • WebCoreSupport/FrameLoaderClientEfl.h:

2011-02-19 Charlie Reis <creis@chromium.org>

Reviewed by Mihai Parparita.

Ensure loading has stopped in HistoryController::goToItem
https://bugs.webkit.org/show_bug.cgi?id=54517

Add a FrameLoaderClient callback for whether to stop loading before goToItem.

Test: http/tests/navigation/forward-to-fragment-fires-onload.html

  • WebCoreSupport/FrameLoaderClientGtk.cpp: (WebKit::FrameLoaderClientGtk::shouldStopLoadingForHistoryItem): Added.
  • WebCoreSupport/FrameLoaderClientGtk.h:

2011-02-19 Charlie Reis <creis@chromium.org>

Reviewed by Mihai Parparita.

Ensure loading has stopped in HistoryController::goToItem
https://bugs.webkit.org/show_bug.cgi?id=54517

Add a FrameLoaderClient callback for whether to stop loading before goToItem.

Test: http/tests/navigation/forward-to-fragment-fires-onload.html

  • WebCoreSupport/FrameLoaderClientHaiku.cpp: (WebCore::FrameLoaderClientHaiku::shouldStopLoadingForHistoryItem): Added.
  • WebCoreSupport/FrameLoaderClientHaiku.h:

2011-02-19 Charlie Reis <creis@chromium.org>

Reviewed by Mihai Parparita.

Ensure loading has stopped in HistoryController::goToItem
https://bugs.webkit.org/show_bug.cgi?id=54517

Add a FrameLoaderClient callback for whether to stop loading before goToItem.

Test: http/tests/navigation/forward-to-fragment-fires-onload.html

  • WebCoreSupport/WebFrameLoaderClient.mm: (WebFrameLoaderClient::shouldStopLoadingForHistoryItem): Added.
  • WebCoreSupport/WebFrameLoaderClient.h:

2011-02-19 Charlie Reis <creis@chromium.org>

Reviewed by Mihai Parparita.

Ensure loading has stopped in HistoryController::goToItem
https://bugs.webkit.org/show_bug.cgi?id=54517

Add a FrameLoaderClient callback for whether to stop loading before goToItem.

Test: http/tests/navigation/forward-to-fragment-fires-onload.html

  • WebCoreSupport/FrameLoaderClientQt.cpp: (WebCore::FrameLoaderClientQt::shouldStopLoadingForHistoryItem): Added.
  • WebCoreSupport/FrameLoaderClientQt.h:

2011-02-19 Charlie Reis <creis@chromium.org>

Reviewed by Mihai Parparita.

Ensure loading has stopped in HistoryController::goToItem
https://bugs.webkit.org/show_bug.cgi?id=54517

Add a FrameLoaderClient callback for whether to stop loading before goToItem.

Test: http/tests/navigation/forward-to-fragment-fires-onload.html

  • WebCoreSupport/WebFrameLoaderClient.cpp: (WebFrameLoaderClient::shouldStopLoadingForHistoryItem): Added.
  • WebCoreSupport/WebFrameLoaderClient.h:

2011-02-19 Charlie Reis <creis@chromium.org>

Reviewed by Mihai Parparita.

Ensure loading has stopped in HistoryController::goToItem
https://bugs.webkit.org/show_bug.cgi?id=54517

Add a FrameLoaderClient callback for whether to stop loading before goToItem.

Test: http/tests/navigation/forward-to-fragment-fires-onload.html

  • WebCoreSupport/FrameLoaderClientWinCE.cpp: (WebKit::FrameLoaderClientWinCE::shouldStopLoadingForHistoryItem): Added.
  • WebCoreSupport/FrameLoaderClientWinCE.h:

2011-02-19 Charlie Reis <creis@chromium.org>

Reviewed by Mihai Parparita.

Ensure loading has stopped in HistoryController::goToItem
https://bugs.webkit.org/show_bug.cgi?id=54517

Add a FrameLoaderClient callback for whether to stop loading before goToItem.

Test: http/tests/navigation/forward-to-fragment-fires-onload.html

  • WebKitSupport/FrameLoaderClientWx.cpp: (WebCore::FrameLoaderClientWx::shouldStopLoadingForHistoryItem): Added.
  • WebKitSupport/FrameLoaderClientWx.h:

2011-02-19 Charlie Reis <creis@chromium.org>

Reviewed by Mihai Parparita.

Ensure loading has stopped in HistoryController::goToItem
https://bugs.webkit.org/show_bug.cgi?id=54517

Add a FrameLoaderClient callback for whether to stop loading before goToItem.

Test: http/tests/navigation/forward-to-fragment-fires-onload.html

  • WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp: (WebFrameLoaderClient::shouldStopLoadingForHistoryItem): Added.
  • WebProcess/WebCoreSupport/WebFrameLoaderClient.h:
12:12 AM Changeset in webkit [79106] by abarth@webkit.org
  • 5 edits in trunk

2011-02-19 Adam Barth <abarth@webkit.org>

Reviewed by Daniel Bates.

Fix xssAuditor/iframe-injection.html
https://bugs.webkit.org/show_bug.cgi?id=54591

Update expected results to show that we pass.

  • http/tests/security/xssAuditor/iframe-injection-expected.txt:

2011-02-19 Adam Barth <abarth@webkit.org>

Reviewed by Daniel Bates.

Fix xssAuditor/iframe-injection.html
https://bugs.webkit.org/show_bug.cgi?id=54591

We should block the iframe src attribute. Although this technically
can't be used to run script, it's a pretty easy vector for stealing
passwords.

  • html/parser/XSSFilter.cpp: (WebCore::XSSFilter::filterTokenInitial): (WebCore::XSSFilter::filterIframeToken):
  • html/parser/XSSFilter.h:
12:07 AM Changeset in webkit [79105] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

2011-02-19 Lukasz Slachciak <l.slachciak@samsung.com>

Reviewed by Andreas Kling.

Fixed problem with launching EWebLauncher with "run-launcher --efl". Incorrect path referring to non-existing .libs directory ws set.
https://webkit.org/b/54778

  • Scripts/webkitdirs.pm:

Feb 18, 2011:

11:57 PM Changeset in webkit [79104] by tonyg@chromium.org
  • 5 edits in trunk/Source/WebCore

2011-02-18 Tony Gentilcore <tonyg@chromium.org>

Reviewed by Eric Seidel.

Let the parser yield for layout before running scripts
https://bugs.webkit.org/show_bug.cgi?id=54355

Prior to this patch, the parser would yield to perform a layout/paint before running a
script only if the script or a stylesheet blocking the script is not loaded yet. Since we
don't preload scan into the body while parsing the head, typically we'll block on a script
early in the body that causes us to yield to do the first paint within a reasonable time.

However, I'm planning to change the PreloadScanner to scan into the body from the head.
That significantly improves overall load time, but would hurt first paint time because
fewer scripts would be blocked during parsing and thus wouldn't yield.

This change causes us to yield before running scripts if we haven't painted yet (regardless
of whether or not the script is loaded). In addition to allowing the above mentioned
PreloadScanner change to be implemented without regressing first paint time, this also
improves first paint time by itself.

I tested Alexa's top 45 websites using Web Page Replay to control the content and simulate
bandwidth. This patch improved average first paint time by 1% over an unlimited connection,
6% over a 1Mbps connection and 11% over a 5Mbps connection. There was no statistically
signifcant change in page load time.

Within the pages tested, 33 had no statistically significant change in time to first paint,
12 improved, and none regressed. Of the improved, some of the standouts from the 1Mbps set
are: 20% on youtube, 37% on wiki, 27% on ebay, 13% on cnn, 16% on espn, 74% on sohu.

  • html/parser/HTMLDocumentParser.cpp: (WebCore::HTMLDocumentParser::canTakeNextToken): This is the new yield point. (WebCore::HTMLDocumentParser::pumpTokenizer): Remove ASSERT that we are not paused. isPaused means that we are waiting for a script. Bug 54574 changed pumpTokenizer() so that it does the right thing whether we are just before a token or waiting for a script. Now that we may yield before a token or before a script, this may be called while paused.
  • html/parser/HTMLParserScheduler.cpp: (WebCore::isLayoutTimerActive): Added a FIXME because r52919 changed minimumLayoutDelay() to return m_extraLayoutDelay instead of 0 as a minimum. So checking !minimumLayoutDelay() no longer works. The fix is to change it to check minimumLayoutDelay() == m_extraLayoutDelay. But this is all the more reason to move this method onto Document. I'll do this in a follow up. (WebCore::HTMLParserScheduler::checkForYieldBeforeScript): Added.
  • page/FrameView.h: (WebCore::FrameView::hasEverPainted): Added.
11:22 PM Changeset in webkit [79103] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

2011-02-18 Dawit Alemayehu <adawit@kde.org>

Reviewed by Andreas Kling.

[Qt] Button Element is rendered w/ text off-center.
https://bugs.webkit.org/show_bug.cgi?id=53373

Test: LayoutTests/fast/forms/button-white-space.html

  • platform/qt/RenderThemeQt.cpp: (WebCore::RenderThemeQt::adjustButtonStyle):
10:52 PM Changeset in webkit [79102] by levin@chromium.org
  • 3 edits in trunk/Tools

2011-02-18 David Levin <levin@chromium.org>

Reviewed by Eric Seidel.

check-webkit-style: Misses brace style error when the line with the { has a } in it.
https://bugs.webkit.org/show_bug.cgi?id=54769

  • Scripts/webkitpy/style/checkers/cpp.py: Fixed the check for the close brace to only look after the last open brace, so that the open brace in this line "} else {" will still be able to trigger the error.
  • Scripts/webkitpy/style/checkers/cpp_unittest.py: Added related unit tests.
10:16 PM Changeset in webkit [79101] by atwilson@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed test expectations fix.

  • platform/chromium/test_expectations.txt:
10:12 PM Changeset in webkit [79100] by Lucas Forschler
  • 1 edit in branches/safari-534.20-branch/Source/WebKit2/ChangeLog

Merge r79048.

10:05 PM Changeset in webkit [79099] by atwilson@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed test expectations fix.

  • platform/chromium/test_expectations.txt:
9:57 PM Changeset in webkit [79098] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebKit/qt

2011-02-18 Fabrizio Machado <fabrizio.machado@nokia.com>

Reviewed by Eric Seidel.

Remove reduntant checks.
https://bugs.webkit.org/show_bug.cgi?id=54764

  • WebCoreSupport/DumpRenderTreeSupportQt.cpp: (DumpRenderTreeSupportQt::elementDoesAutoCompleteForElementWithId):
  • WebCoreSupport/NotificationPresenterClientQt.cpp: (WebCore::NotificationPresenterClientQt::toPage):
9:55 PM Changeset in webkit [79097] by atwilson@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed. Mark object-clip-rects-assertion.html as timing out.

  • platform/chromium/test_expectations.txt:
9:53 PM Changeset in webkit [79096] by commit-queue@webkit.org
  • 4 edits in trunk

2011-02-18 Zan Dobersek <zandobersek@gmail.com>

Reviewed by Martin Robinson.

[Gtk] Re-enable meter tag support
https://bugs.webkit.org/show_bug.cgi?id=54762

Enable meter tag support in the configure.ac. This feature was
previously enabled by default in the makefile, but should be
enabled here after changes in r78981.

  • configure.ac:

2011-02-18 Zan Dobersek <zandobersek@gmail.com>

Reviewed by Martin Robinson.

[Gtk] Re-enable meter tag support
https://bugs.webkit.org/show_bug.cgi?id=54762

Meter tag is supported on the Gtk port, enable it by default.

  • Scripts/build-webkit:
9:51 PM Changeset in webkit [79095] by levin@chromium.org
  • 4 edits in trunk/Tools

2011-02-18 David Levin <levin@chromium.org>

Reviewed by Eric Seidel.

check-webkit-style falsely complains about WebKitGTK+ public headers
https://bugs.webkit.org/show_bug.cgi?id=54650

  • Scripts/webkitpy/style/checker.py: Add some exceptions for the gtk files.
  • Scripts/webkitpy/style/checkers/cpp.py: Restrict the checks for WEBKIT_API to the chromium directory (and improved the checks slightly).
  • Scripts/webkitpy/style/checkers/cpp_unittest.py: Added corresponding tests.
9:47 PM Changeset in webkit [79094] by atwilson@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed chromium expectations change.

  • platform/chromium/test_expectations.txt:
9:43 PM Changeset in webkit [79093] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

2011-02-18 Jonathan Backer <backer@chromium.org>

Reviewed by Eric Seidel.

[chromium] Fix leak of texture IDs in compositor.
https://bugs.webkit.org/show_bug.cgi?id=54750

No new tests. It is extremely unlikely that this leak would have
any user visible impact because only a few bytes of space are wasted
(we're leaking texture IDs, not actual textures) and the space of
texture IDs is large (32 bits).

  • platform/graphics/chromium/TextureManager.cpp: (WebCore::TextureManager::requestTexture):
9:17 PM Changeset in webkit [79092] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/chromium

2011-02-18 Dominic Mazzoni <dmazzoni@google.com>

Reviewed by Dimitri Glazkov.

Marks any actions triggered by performDefaultAction as a user
gesture, so that a user with a screen reader isn't prevented from
performing operations that must be triggered by a user gesture.
https://bugs.webkit.org/show_bug.cgi?id=54759

  • src/WebAccessibilityObject.cpp: (WebKit::WebAccessibilityObject::performDefaultAction):
9:05 PM Changeset in webkit [79091] by Lucas Forschler
  • 2 edits in branches/safari-534.20-branch/Source/WebKit2

Merge r79065.

9:02 PM Changeset in webkit [79090] by atwilson@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed expectations change for chromium.

  • platform/chromium/test_expectations.txt:
9:00 PM Changeset in webkit [79089] by Lucas Forschler
  • 10 edits in branches/safari-534.20-branch/Source/WebKit2

Merge r79057.

8:32 PM Changeset in webkit [79088] by atwilson@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed expectations change because my rebaselines didn't seem to work.

  • platform/chromium/test_expectations.txt:
8:24 PM Changeset in webkit [79087] by ggaren@apple.com
  • 3 edits in trunk/Source/JavaScriptCore

2011-02-18 Geoffrey Garen <ggaren@apple.com>

Reviewed by Sam Weinig.

Made MarkedSpace block iteration size-class agnostic
https://bugs.webkit.org/show_bug.cgi?id=54792


SunSpider reports no change.

  • runtime/MarkedSpace.cpp: (JSC::MarkedSpace::clearMarks): (JSC::MarkedSpace::sweep): (JSC::MarkedSpace::objectCount): (JSC::MarkedSpace::size): (JSC::MarkedSpace::capacity):
  • runtime/MarkedSpace.h: (JSC::MarkedSpace::forEach): Iterate blocks in hashing order instead of size class list order. This is a much simpler convention in a world of many different size classes.
8:02 PM Changeset in webkit [79086] by Lucas Forschler
  • 7 edits in branches/safari-534.20-branch/Source/WebKit2

Merge r79020.

7:58 PM Changeset in webkit [79085] by yi.4.shen@nokia.com
  • 2 edits in trunk/Source/WebCore

2011-02-18 Yi Shen <yi.4.shen@nokia.com>

Reviewed by Tor Arne Vestbø.

Always display the media controls when requiresFullscreenForVideoPlayback() is true
https://bugs.webkit.org/show_bug.cgi?id=54308

For video element, it should have controls when
Chrome::requiresFullscreenForVideoPlayback() is true.

  • html/HTMLMediaElement.cpp: (WebCore::HTMLMediaElement::controls):
7:53 PM Changeset in webkit [79084] by enne@google.com
  • 4 edits in trunk

2011-02-18 Adrienne Walker <enne@google.com>

Reviewed by Kenneth Russell.

Adjust expectations for chromium GPU tests.
https://bugs.webkit.org/show_bug.cgi?id=54409
https://bugs.webkit.org/show_bug.cgi?id=54509

Correct baselines for the 54409 images will be generated after this lands.

  • platform/chromium/test_expectations.txt:

2011-02-18 Adrienne Walker <enne@google.com>

Reviewed by Kenneth Russell.

[chromium] Use nearest-neighbor filtering for root layer.
https://bugs.webkit.org/show_bug.cgi?id=54409
https://bugs.webkit.org/show_bug.cgi?id=54509

This setting creates more consistent images for LayoutTests and
prevents small floating point errors in texture coordinates from
creating off-by-one pixel color differences.

  • platform/graphics/chromium/LayerTilerChromium.cpp: (WebCore::LayerTilerChromium::update):
7:52 PM Changeset in webkit [79083] by commit-queue@webkit.org
  • 3 edits in trunk/Source/JavaScriptCore

2011-02-18 Kristian Amlie <kristian.amlie@nokia.com>

Reviewed by Andreas Kling.

Added friend exception to Qt platform, which also compiles Windows.

QtWebKit fails to compile on Windows XP with msvc-2008
https://bugs.webkit.org/show_bug.cgi?id=54746

  • bytecode/CodeBlock.h:
  • runtime/RegExpObject.h:
7:49 PM Changeset in webkit [79082] by Lucas Forschler
  • 3 edits in branches/safari-534.20-branch/Source/WebKit2

Merge r79058.

7:46 PM BuildingQtOnLinux edited by bharathwaaj.s@gmail.com
Added solution provided by kling on irc for fixing Gold Linker Error. (diff)
7:45 PM Changeset in webkit [79081] by Lucas Forschler
  • 3 edits in branches/safari-534.20-branch/Source/WebKit2

Merge r79023.

7:43 PM Changeset in webkit [79080] by gyuyoung.kim@samsung.com
  • 2 edits in trunk/Source/WebCore

2011-02-18 Gyuyoung Kim <gyuyoung.kim@samsung.com>

Reviewed by Kent Tamura.

[EFL] Fix coding style errors in RenderThemeEfl.h
https://bugs.webkit.org/show_bug.cgi?id=54693

Fix style errors in RenderThemeEfl.h

  • platform/efl/RenderThemeEfl.h:
7:43 PM Changeset in webkit [79079] by ggaren@apple.com
  • 3 edits in trunk/Source/JavaScriptCore

2011-02-18 Geoffrey Garen <ggaren@apple.com>

(Rolled back in r79022 with crash fixed.)

Reviewed by Sam Weinig.

Use hashing instead of linear search in the conservative pointer test
https://bugs.webkit.org/show_bug.cgi?id=54767


SunSpider reports no change.

  • runtime/MarkedSpace.cpp: (JSC::MarkedSpace::destroy): No need to explicitly clear the blocks array, since freeBlock removes items for us.

(JSC::MarkedSpace::freeBlock): Fixed a typo that always removed the last
block from the block set instead of the block being freed. Changed to
remove a block from our data structures before deallocating it, since
this is slightly cleaner.

  • runtime/MarkedSpace.h: (JSC::MarkedSpace::contains): Variable-sized objects will use more, smaller blocks, so it's important for the contains check not to be O(n) in the number of blocks.
7:41 PM Changeset in webkit [79078] by Lucas Forschler
  • 3 edits in branches/safari-534.20-branch/Source/WebKit2

Merge r78959.

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

2011-02-18 Ademar de Souza Reis Jr <Ademar Reis>

Reviewed by Andreas Kling.

[Qt] The localized vendor name for Qt SIS packages should be "Nokia"
https://bugs.webkit.org/show_bug.cgi?id=54742

This change was applied in the Qt repository (qt/src/3rdparty/webkit),
so we should do the same here in QtWebKit.

Patch by Eckhart Koppen <eckhart.koppen@nokia.com>
a8a84f1667966acfa093c4be0b7d4b0900ddd3d9:

The previously used name "Nokia, Qt" was not usable for Nokia
Content Signing, which only allows "Nokia" as the visible vendor
name. The unique vendor ID remains as "Nokia, Qt"

  • WebCore.pro:
7:35 PM Changeset in webkit [79076] by Lucas Forschler
  • 14 edits in branches/safari-534.20-branch/Source/WebKit2

Merge r78956.

7:35 PM Changeset in webkit [79075] by gyuyoung.kim@samsung.com
  • 2 edits in trunk/Source/WebKit/efl

2011-02-18 Gyuyoung Kim <gyuyoung.kim@samsung.com>

Reviewed by Kent Tamura.

[EFL] Fix coding style errors in ewk_frame.h
https://bugs.webkit.org/show_bug.cgi?id=54718

Fix style errors in ewk_frame.h.

  • ewk/ewk_frame.h:
7:31 PM Changeset in webkit [79074] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

2011-02-18 Alexis Menard <alexis.menard@openbossa.org>

Reviewed by Andreas Kling.

[Qt] REGRESSION(r67516) : on www.gmail.com a strange rendering issue appears on the
menu bar due to flash.
https://bugs.webkit.org/show_bug.cgi?id=54741

Only show plugins with a valid size. We then don't involve X11 if there is
nothing to see anyway.

  • plugins/qt/PluginViewQt.cpp: (WebCore::PluginView::updatePluginWidget): (WebCore::PluginView::platformStart):
7:27 PM Changeset in webkit [79073] by Lucas Forschler
  • 2 edits in branches/safari-534.20-branch/Source/WebKit2

Merge r79050.

7:25 PM Changeset in webkit [79072] by commit-queue@webkit.org
  • 2 edits in trunk

2011-02-18 Kristian Amlie <kristian.amlie@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

Avoided UiTools dependency if the module is not present.

[Qt] WebKit patches required to work with a modularized version of Qt
https://bugs.webkit.org/show_bug.cgi?id=53916

  • Source/WebKit.pri:
7:23 PM Changeset in webkit [79071] by Lucas Forschler
  • 2 edits in branches/safari-534.20-branch/Source/WebKit2

Merge r79059.

7:20 PM Changeset in webkit [79070] by gyuyoung.kim@samsung.com
  • 2 edits in trunk/Source/WebKit/efl

2011-02-18 Gyuyoung Kim <gyuyoung.kim@samsung.com>

Reviewed by Antonio Gomes.

[EFL] Remove proxy feature of soup when proxy is null
https://bugs.webkit.org/show_bug.cgi?id=54621

When proxy value is NULL, remove proxy feature in soup.

  • ewk/ewk_settings.cpp: (ewk_settings_proxy_uri_set):
7:13 PM Changeset in webkit [79069] by commit-queue@webkit.org
  • 5 edits in trunk

2011-02-18 Ryuan Choi <ryuan.choi@samsung.com>

Reviewed by Kent Tamura.

[EFL] Remove GDK dependency.
https://bugs.webkit.org/show_bug.cgi?id=53978

Remove checking GDK library.

  • Source/cmake/OptionsEfl.cmake:

2011-02-18 Ryuan Choi <ryuan.choi@samsung.com>

Reviewed by Kent Tamura.

[EFL] Remove GDK dependency.
https://bugs.webkit.org/show_bug.cgi?id=53978

Remove GLIB_SUPPORT macro in GDK related code.
Regardless of GLIB_SUPPORT, getDefaultFontOptions() will works same way.

  • CMakeListsEfl.txt:
  • platform/graphics/freetype/FontPlatformDataFreeType.cpp: (WebCore::getDefaultFontOptions):
7:09 PM Changeset in webkit [79068] by Lucas Forschler
  • 4 edits in branches/safari-534.20-branch/Source/WebCore

Merge r79053.

7:07 PM Changeset in webkit [79067] by gyuyoung.kim@samsung.com
  • 3 edits in trunk/Source/WebKit/efl

2011-02-18 Gyuyoung Kim <gyuyoung.kim@samsung.com>

Reviewed by Kent Tamura.

[EFL] Fix coding style errors in ewk_view.h
https://bugs.webkit.org/show_bug.cgi?id=54624

Fix style errors in ewk_view.h.

  • ewk/ewk_view.cpp: (ewk_view_pre_render_relative_radius):
  • ewk/ewk_view.h:
7:04 PM Changeset in webkit [79066] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

2011-02-18 Peter Kasting <pkasting@google.com>

Reviewed by James Robinson.

https://bugs.webkit.org/show_bug.cgi?id=54605
Remove some time limits in a test, let test harnesses kill the test if
it runs long. Also changes a busy loop from 1 ms to 5 ms repeats since
this should be much less CPU at little visible cost.

  • http/tests/security/resources/cross-frame-access.js: (canAccessFrame.test): (canAccessFrame): (cannotAccessFrame.test): (cannotAccessFrame): (closeWindowAndNotifyDone.doneHandler): (closeWindowAndNotifyDone):
7:02 PM Changeset in webkit [79065] by Lucas Forschler
  • 2 edits in branches/safari-534.20-branch/Source/WebKit2

Merge r79048.

6:22 PM Changeset in webkit [79064] by weinig@apple.com
  • 3 edits in trunk/Source/WebKit2

Real fix for <rdar://problem/9025723> CrashTracer: [USER]
1 crash in WebProcess at com.apple.WebKit2:
WebKit::WebPage::didChangeScrollOffsetForMainFrame + 31

Reviewed by Adele Peterson.

  • WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:

(WebKit::WebFrameLoaderClient::didChangeScrollOffset):
Add null check for the FrameView. This function can be called when the
FrameView is being torn down during a transition to a new FrameView.

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::didChangeScrollOffsetForMainFrame):
Revert last attempt.

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

2011-02-18 Noel Gordon <noel.gordon@gmail.com>

Reviewed by James Robinson.

[Chromium] Add elliptical gradient support to GradientSkia
https://bugs.webkit.org/show_bug.cgi?id=51841

Covered by existing tests, these need new rebaselines once this patch
lands for chrome linux, win32

fast/gradients/css3-color-stop-units.html
fast/gradients/css3-color-stops.html
fast/gradients/css3-linear-angle-gradients.html
fast/gradients/css3-radial-gradients.html
fast/gradients/css3-radial-gradients2.html
fast/gradients/css3-radial-gradients3.html
fast/gradients/css3-repeating-radial-gradients.html

  • platform/graphics/skia/GradientSkia.cpp: (WebCore::Gradient::platformGradient):
6:18 PM Changeset in webkit [79062] by dpranke@chromium.org
  • 6 edits in trunk/Tools

2011-02-18 Dirk Pranke <dpranke@chromium.org>

Reviewed by James Robinson.

new-run-webkit-tests: enable multiple processes by default on
mac. This change removes the artificial restrictions we placed
on the # of child processes we used with the old threading
model, and switches to the new message-based model and multiple
processes, where available. If multiple processes are not
available (Leopard / Python 2.5), then we use the 'inline' model
instead of the 'old-threads' model on the 'mac' port or one
process on the 'chromium-mac' port. We need additional testing
to see if the new 'threads' model works reliably and is worth
supporting, or if we should just live with things being slightly
slow.

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

  • Scripts/webkitpy/layout_tests/port/chromium_mac.py:
  • Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
  • Scripts/webkitpy/layout_tests/port/mac.py:
  • Scripts/webkitpy/layout_tests/port/mac_unittest.py:
  • Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
6:08 PM Changeset in webkit [79061] by Lucas Forschler
  • 2 edits in branches/safari-534.20-branch/Source/WebKit2

Merge r78832.

5:43 PM Changeset in webkit [79060] by commit-queue@webkit.org
  • 5 edits in trunk

2011-02-18 chris reiss <christopher.reiss@nokia.com>

Reviewed by Andreas Kling.

REGRESSION: Date.parse("Tue Nov 23 20:40:05 2010 GMT") returns NaN
https://bugs.webkit.org/show_bug.cgi?id=49989

  • fast/js/date-parse-test-expected.txt:
  • fast/js/script-tests/date-parse-test.js:

2011-02-18 chris reiss <christopher.reiss@nokia.com>

Reviewed by Andreas Kling.

REGRESSION: Date.parse("Tue Nov 23 20:40:05 2010 GMT") returns NaN
https://bugs.webkit.org/show_bug.cgi?id=49989

updated test fast/js/script-tests/date-parse-test.js

  • wtf/DateMath.cpp: (WTF::parseDateFromNullTerminatedCharacters):
5:43 PM Changeset in webkit [79059] by andersca@apple.com
  • 2 edits in trunk/Source/WebKit2

Hang trying to load nytimes.com with Flash installed
<rdar://problem/9018113>

Reviewed by Sam Weinig.

  • Platform/CoreIPC/Connection.cpp:

(CoreIPC::Connection::sendSyncMessage):
Call beginWaitForSyncReply() before sending the message. Otherwise, in some cases we could
have gotten back a synchronous request before calling beginWaitForSyncReply(), and then we wouldn't
process it correctly. (Which would lead to the hang).

5:41 PM Changeset in webkit [79058] by Simon Fraser
  • 3 edits in trunk/Source/WebKit2

2011-02-18 Simon Fraser <Simon Fraser>

Reviewed by Kevin Decker.

<rdar://problem/9021296> Some plug-ins are the wrong size after zooming

Use the same frame/bounds adjustment that we use for NSView-based
plugins in WebKit2, which allows plug-ins and their snapshots to
render with the correct size after scaling.

  • WebProcess/Plugins/PluginView.cpp: (WebKit::PluginView::setBoundsSize): (WebKit::PluginView::viewGeometryDidChange): (WebKit::PluginView::clipRectInWindowCoordinates):
  • WebProcess/Plugins/PluginView.h:
5:31 PM Changeset in webkit [79057] by Beth Dakin
  • 2 edits in trunk/Source/WebKit2

Fix for <rdar://problem/9025723> CrashTracer: [USER]
1 crash in WebProcess at com.apple.WebKit2:
WebKit::WebPage::didChangeScrollOffsetForMainFrame + 31

Rubber-stamped by Adele Peterson.

Simple null-check.

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::didChangeScrollOffsetForMainFrame):

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

2011-02-18 James Robinson <jamesr@chromium.org>

Fix typo in boundary test in ASSERT() - test is for an inclusive range, not exclusive.

  • platform/graphics/chromium/ContentLayerChromium.cpp: (WebCore::ContentLayerChromium::updateTextureIfNeeded):
5:15 PM Changeset in webkit [79055] by atwilson@chromium.org
  • 3 edits in trunk/Tools

2011-02-18 Andrew Wilson <atwilson@chromium.org>

Unreviewed, rolling out r79047.
http://trac.webkit.org/changeset/79047
https://bugs.webkit.org/show_bug.cgi?id=54596

Broke canary bots - please watch the canaries the next time
you land this

  • Scripts/webkitpy/layout_tests/port/chromium_mac.py:
  • Scripts/webkitpy/layout_tests/port/mac.py:
5:11 PM Changeset in webkit [79054] by commit-queue@webkit.org
  • 4 edits in trunk/Source

2011-02-18 Viatcheslav Ostapenko <ostapenko.viatcheslav@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

Tiled backing store area is too big.
Error in area calculcation causes size of backing store
up to 6 times bigger than viewport with default multipliers.
https://bugs.webkit.org/show_bug.cgi?id=54587

  • platform/graphics/TiledBackingStore.cpp: (WebCore::TiledBackingStore::createTiles):

2011-02-18 Viatcheslav Ostapenko <ostapenko.viatcheslav@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

Tiled backing store area is too big.
Error in area calculcation causes size of backing store
up to 8 times bigger than viewport with default multipliers.
https://bugs.webkit.org/show_bug.cgi?id=54587

  • UIProcess/TiledDrawingAreaProxy.cpp: (WebKit::TiledDrawingAreaProxy::calculateKeepRect): (WebKit::TiledDrawingAreaProxy::calculateCoverRect):
5:05 PM Changeset in webkit [79053] by Beth Dakin
  • 4 edits in trunk/Source/WebCore

Fix for <rdar://problem/9018729> Horizontal scroller doesn't
appear when loading a page with a Horizontal scrollbar from
the back/forward cache.

Reviewed by Sam Weinig.

This patch adds a new bool member variable to FrameView to
keep track of whether we are loading a page from the back/
forward cache. If we are, don't suppress scrollbars on
first layout.

  • history/CachedFrame.cpp:

(WebCore::CachedFrameBase::restore):

  • page/FrameView.cpp:

(WebCore::FrameView::FrameView):
(WebCore::FrameView::reset):
(WebCore::FrameView::layout):

  • page/FrameView.h:

(WebCore::FrameView::setIsRestoringFromBackForward):
(WebCore::FrameView::isRestoringFromBackForward):

5:00 PM Changeset in webkit [79052] by Patrick Gansterer
  • 4 edits in trunk/Source/WebCore

2011-02-18 Patrick Gansterer <Patrick Gansterer>

Unreviewed WinCE build fix for r78846.

  • platform/graphics/wince/FontWinCE.cpp: (WebCore::TextRunComponent::TextRunComponent):
  • platform/graphics/wince/GraphicsContextWinCE.cpp: (WebCore::GraphicsContext::drawLineForText): (WebCore::GraphicsContext::drawLineForTextChecking): (WebCore::GraphicsContext::drawText):
  • platform/wince/FileChooserWinCE.cpp: (WebCore::FileChooser::basenameForWidth):
4:49 PM Changeset in webkit [79051] by Patrick Gansterer
  • 4 edits in trunk/Source/WebKit

2011-02-18 Patrick Gansterer <Patrick Gansterer>

Unreviewed build fix after r78634 and r78786.

  • CMakeLists.txt:

2011-02-18 Patrick Gansterer <Patrick Gansterer>

Unreviewed build fix after r78634 and r78786.

  • CMakeListsEfl.txt:
4:48 PM Changeset in webkit [79050] by sullivan@apple.com
  • 2 edits in trunk/Source/WebKit2

<rdar://problem/9026169>
https://bugs.webkit.org/show_bug.cgi?id=54780
pendingAPIRequestURL isn't updated for WKPageGoToBackForwardListItem

Reviewed by Maciej Stachowiak.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::goToBackForwardItem):
Update the pending API URL.

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

2011-02-18 Emil A Eklund <eae@chromium.org>

Reviewed by Darin Adler.

Crash in EventHandler::sendContextMenuEventForKey
https://bugs.webkit.org/show_bug.cgi?id=54495

Add test for triggering the context menu key event (VK_APPS) on a hidden
element.

  • fast/events/menu-keydown-on-hidden-element-expected.txt: Added.
  • fast/events/menu-keydown-on-hidden-element.html: Added.

2011-02-18 Emil A Eklund <eae@chromium.org>

Reviewed by Darin Adler.

Crash in EventHandler::sendContextMenuEventForKey
https://bugs.webkit.org/show_bug.cgi?id=54495

Test: fast/events/menu-keydown-on-hidden-element.html

  • page/EventHandler.cpp: (WebCore::EventHandler::sendContextMenuEventForKey): Add null check.

2011-02-18 Emil A Eklund <eae@chromium.org>

Reviewed by Darin Adler.

Crash in EventHandler::sendContextMenuEventForKey
https://bugs.webkit.org/show_bug.cgi?id=54495

Add support for the context menu key (VK_APPS) to EventSender for
platforms that support the key.

  • DumpRenderTree/chromium/EventSender.cpp: (EventSender::keyDown):
  • DumpRenderTree/gtk/EventSender.cpp: (keyDownCallback):
  • DumpRenderTree/qt/EventSenderQt.cpp: (EventSender::keyDown):
  • DumpRenderTree/win/EventSender.cpp: (keyDownCallback):
4:32 PM Changeset in webkit [79048] by andersca@apple.com
  • 2 edits in trunk/Source/WebKit2

Accelerated content fades in when using a layer backed WKView
<rdar://problem/9021586>

Reviewed by Sam Weinig.

  • UIProcess/API/mac/WKView.mm:

(-[WKView _enterAcceleratedCompositingMode:]):
Make a new nested CATransaction and disable animations when adding the layer
hosting subview. This avoids an implicit fade animation that would otherwise occur.

3:53 PM Changeset in webkit [79047] by dpranke@chromium.org
  • 3 edits in trunk/Tools

2011-02-18 Dirk Pranke <dpranke@chromium.org>

Reviewed by Ojan Vafai.

new-run-webkit-tests: enable multiple processes by default on mac
https://bugs.webkit.org/show_bug.cgi?id=54596

  • Scripts/webkitpy/layout_tests/port/chromium_mac.py:
  • Scripts/webkitpy/layout_tests/port/mac.py:
3:47 PM Changeset in webkit [79046] by dpranke@chromium.org
  • 2 edits in trunk/Tools

2011-02-18 Dirk Pranke <dpranke@chromium.org>

Reviewed by Adam Roben.

Skip pretty patch unit tests if ruby isn't installed.

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

  • Scripts/webkitpy/common/prettypatch_unittest.py:
3:42 PM Changeset in webkit [79045] by dpranke@chromium.org
  • 2 edits in trunk/Tools

2011-02-18 Dirk Pranke <dpranke@chromium.org>

Reviewed by Adam Roben.

Skip mac.test_skipped_file_paths() when running on win32; the
test has hardcoded '/' directory separators and since it's a
port-specific test and we have coverage on other ports it's not
worth it to make the test more generic.

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

  • Scripts/webkitpy/layout_tests/port/mac_unittest.py:
3:42 PM Changeset in webkit [79044] by Csaba Osztrogonác
  • 12 edits
    1 copy
    694 adds in trunk/LayoutTests

Unreviewed.

[Qt] Add Qt specific expected results for passing svg/custom tests.

  • platform/qt/Skipped: Unskip passing tests.
  • platform/qt/svg/custom/ [...] : Added.
3:39 PM Changeset in webkit [79043] by enne@google.com
  • 18 edits
    1 copy
    5 adds in trunk/Source/WebCore

2011-02-15 Adrienne Walker <enne@google.com>

Reviewed by James Robinson.

[chromium] Clean up shader code from LayerChromium classes
https://bugs.webkit.org/show_bug.cgi?id=54484

This is a refactoring and there should be no change in functionality.
All shader code is pulled out into classes in ShaderChromium.
The SharedValues classes are now turned into ProgramBinding, one per
shader program. These contain shader classes that know about what
variables they can bind.

  • WebCore.gypi:
  • platform/graphics/chromium/CanvasLayerChromium.cpp: (WebCore::CanvasLayerChromium::draw):
  • platform/graphics/chromium/CanvasLayerChromium.h:
  • platform/graphics/chromium/ContentLayerChromium.cpp: (WebCore::ContentLayerChromium::draw):
  • platform/graphics/chromium/ContentLayerChromium.h:
  • platform/graphics/chromium/GeometryBinding.cpp: Added. (WebCore::GeometryBinding::GeometryBinding): (WebCore::GeometryBinding::~GeometryBinding): (WebCore::GeometryBinding::prepareForDraw):
  • platform/graphics/chromium/GeometryBinding.h: Copied from Source/WebCore/platform/graphics/chromium/PluginLayerChromium.h. (WebCore::GeometryBinding::initialized): (WebCore::GeometryBinding::context): (WebCore::GeometryBinding::quadVerticesVbo): (WebCore::GeometryBinding::quadElementsVbo): (WebCore::GeometryBinding::positionAttribLocation): (WebCore::GeometryBinding::texCoordAttribLocation):
  • platform/graphics/chromium/LayerChromium.cpp: (WebCore::LayerChromium::drawDebugBorder):
  • platform/graphics/chromium/LayerChromium.h:
  • platform/graphics/chromium/LayerRendererChromium.cpp: (WebCore::LayerRendererChromium::drawLayers): (WebCore::LayerRendererChromium::initializeSharedObjects): (WebCore::LayerRendererChromium::cleanupSharedObjects):
  • platform/graphics/chromium/LayerRendererChromium.h: (WebCore::LayerRendererChromium::sharedGeometry): (WebCore::LayerRendererChromium::borderProgram): (WebCore::LayerRendererChromium::contentLayerProgram): (WebCore::LayerRendererChromium::canvasLayerProgram): (WebCore::LayerRendererChromium::videoLayerRGBAProgram): (WebCore::LayerRendererChromium::videoLayerYUVProgram): (WebCore::LayerRendererChromium::pluginLayerProgram): (WebCore::LayerRendererChromium::renderSurfaceProgram): (WebCore::LayerRendererChromium::renderSurfaceMaskProgram): (WebCore::LayerRendererChromium::tilerProgram):
  • platform/graphics/chromium/LayerTilerChromium.cpp: (WebCore::LayerTilerChromium::draw): (WebCore::LayerTilerChromium::drawTexturedQuad):
  • platform/graphics/chromium/LayerTilerChromium.h:
  • platform/graphics/chromium/PluginLayerChromium.cpp: (WebCore::PluginLayerChromium::draw):
  • platform/graphics/chromium/PluginLayerChromium.h:
  • platform/graphics/chromium/ProgramBinding.cpp: Added. (WebCore::ProgramBindingBase::ProgramBindingBase): (WebCore::ProgramBindingBase::~ProgramBindingBase): (WebCore::ProgramBindingBase::init): (WebCore::ProgramBindingBase::loadShader): (WebCore::ProgramBindingBase::createShaderProgram):
  • platform/graphics/chromium/ProgramBinding.h: Added. (WebCore::ProgramBindingBase::program): (WebCore::ProgramBindingBase::initialized): (WebCore::ProgramBinding::ProgramBinding): (WebCore::ProgramBinding::vertexShader): (WebCore::ProgramBinding::fragmentShader):
  • platform/graphics/chromium/RenderSurfaceChromium.cpp: (WebCore::RenderSurfaceChromium::drawSurface):
  • platform/graphics/chromium/RenderSurfaceChromium.h:
  • platform/graphics/chromium/ShaderChromium.cpp: Added. (WebCore::VertexShaderPosTex::VertexShaderPosTex): (WebCore::VertexShaderPosTex::init): (WebCore::VertexShaderPosTex::getShaderString): (WebCore::VertexShaderPosTexYUVStretch::VertexShaderPosTexYUVStretch): (WebCore::VertexShaderPosTexYUVStretch::init): (WebCore::VertexShaderPosTexYUVStretch::getShaderString): (WebCore::VertexShaderPos::VertexShaderPos): (WebCore::VertexShaderPos::init): (WebCore::VertexShaderPos::getShaderString): (WebCore::VertexShaderPosTexTransform::VertexShaderPosTexTransform): (WebCore::VertexShaderPosTexTransform::init): (WebCore::VertexShaderPosTexTransform::getShaderString): (WebCore::FragmentTexAlphaBinding::FragmentTexAlphaBinding): (WebCore::FragmentTexAlphaBinding::init): (WebCore::FragmentShaderRGBATexFlipAlpha::getShaderString): (WebCore::FragmentShaderRGBATexAlpha::getShaderString): (WebCore::FragmentShaderBGRATexAlpha::getShaderString): (WebCore::FragmentShaderRGBATexAlphaMask::FragmentShaderRGBATexAlphaMask): (WebCore::FragmentShaderRGBATexAlphaMask::init): (WebCore::FragmentShaderRGBATexAlphaMask::getShaderString): (WebCore::FragmentShaderYUVVideo::FragmentShaderYUVVideo): (WebCore::FragmentShaderYUVVideo::init): (WebCore::FragmentShaderYUVVideo::getShaderString): (WebCore::FragmentShaderColor::FragmentShaderColor): (WebCore::FragmentShaderColor::init): (WebCore::FragmentShaderColor::getShaderString):
  • platform/graphics/chromium/ShaderChromium.h: Added. (WebCore::VertexShaderPosTex::matrixLocation): (WebCore::VertexShaderPosTexYUVStretch::matrixLocation): (WebCore::VertexShaderPosTexYUVStretch::yWidthScaleFactorLocation): (WebCore::VertexShaderPosTexYUVStretch::uvWidthScaleFactorLocation): (WebCore::VertexShaderPos::matrixLocation): (WebCore::VertexShaderPosTexTransform::matrixLocation): (WebCore::VertexShaderPosTexTransform::texTransformLocation): (WebCore::FragmentTexAlphaBinding::alphaLocation): (WebCore::FragmentTexAlphaBinding::samplerLocation): (WebCore::FragmentShaderRGBATexAlphaMask::alphaLocation): (WebCore::FragmentShaderRGBATexAlphaMask::samplerLocation): (WebCore::FragmentShaderRGBATexAlphaMask::maskSamplerLocation): (WebCore::FragmentShaderYUVVideo::yTextureLocation): (WebCore::FragmentShaderYUVVideo::uTextureLocation): (WebCore::FragmentShaderYUVVideo::vTextureLocation): (WebCore::FragmentShaderYUVVideo::alphaLocation): (WebCore::FragmentShaderYUVVideo::ccMatrixLocation): (WebCore::FragmentShaderYUVVideo::signAdjLocation): (WebCore::FragmentShaderColor::colorLocation):
  • platform/graphics/chromium/VideoLayerChromium.cpp: (WebCore::VideoLayerChromium::draw): (WebCore::VideoLayerChromium::drawYUV): (WebCore::VideoLayerChromium::drawRGBA):
  • platform/graphics/chromium/VideoLayerChromium.h:
3:39 PM Changeset in webkit [79042] by dpranke@chromium.org
  • 2 edits in trunk/Tools

2011-02-18 Dirk Pranke <dpranke@chromium.org>

Reviewed by Adam Roben.

Fix webkitpy.layout_tests.port.config_unittest to work on Win32.

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

  • Scripts/webkitpy/layout_tests/port/config_unittest.py:
3:34 PM Changeset in webkit [79041] by dpranke@chromium.org
  • 2 edits in trunk/Tools

2011-02-18 Dirk Pranke <dpranke@chromium.org>

Reviewed by Adam Roben.

Change the default port we're mocking out on win32 when we
run mock_drt_unittest. Normally we'd default to the
port-specific default, but that would be "win", which doesn't
currently work.

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

  • Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
3:27 PM Changeset in webkit [79040] by Simon Fraser
  • 2 edits in trunk/Source/WebKit2

2011-02-18 Simon Fraser <Simon Fraser>

Reviewed by Dan Bernstein.

Plugin snapshot location is wrong for subframes
https://bugs.webkit.org/show_bug.cgi?id=54776

Only change the CTM to the way that the plugin expects it
when painting the plugin, not when drawing the snapshot.
This fixes the snapshot location when painting flattened
frames.

  • WebProcess/Plugins/PluginView.cpp: (WebKit::PluginView::paint):
3:21 PM Changeset in webkit [79039] by atwilson@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed expectations change.

  • platform/chromium/test_expectations.txt:
3:20 PM Changeset in webkit [79038] by kbr@google.com
  • 5 edits in trunk

2011-02-18 Kenneth Russell <kbr@google.com>

Reviewed by James Robinson.

[chromium] Clean up initialization of minimum timer interval
https://bugs.webkit.org/show_bug.cgi?id=54772

Rolled forward Chromium DEPS to pick up new webkit_support entry
point. Removed setting of default minimum timer interval, as this
is now done every time WebPreferences are applied.

Tested with Chromium DRT port built from WebKit workspace; ran
fast/dom/ layout tests.

  • DEPS:
  • src/WebKit.cpp: (WebKit::initialize):

2011-02-18 Kenneth Russell <kbr@google.com>

Reviewed by James Robinson.

[chromium] Clean up initialization of minimum timer interval
https://bugs.webkit.org/show_bug.cgi?id=54772

Use new GetForegroundTabTimerInterval function in webkit_support
to reset the minimum timer interval before each test.

  • DumpRenderTree/chromium/WebViewHost.cpp: (WebViewHost::reset):
3:07 PM Changeset in webkit [79037] by Csaba Osztrogonác
  • 2 edits in trunk/Source/JavaScriptCore

Unreviewed, rolling out r79022.
http://trac.webkit.org/changeset/79022
https://bugs.webkit.org/show_bug.cgi?id=54775

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-02-18
It broke the whole world (Requested by Ossy on #webkit).

  • runtime/MarkedSpace.h:

(JSC::MarkedSpace::contains):

2:58 PM Changeset in webkit [79036] by dpranke@chromium.org
  • 2 edits in trunk/Tools

2011-02-18 Dirk Pranke <dpranke@chromium.org>

Reviewed by Adam Roben.

r78494 fixed the chromium_win unittest failing under win32,
but not cygwin. This fixes cygwin as well.

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

  • Scripts/webkitpy/layout_tests/port/chromium_win.py:
2:48 PM Changeset in webkit [79035] by dpranke@chromium.org
  • 6 edits in trunk/Tools

2011-02-18 Dirk Pranke <dpranke@chromium.org>

Reviewed by Ojan Vafai, Mihai Parparita.

new-run-webkit-tests: r78522 made it impossible to create a
'chromium-win' or 'chromium-mac' port; they would always get the
version tacked on to the end. It turns out that we actually need
to be able to create these ports in order for
rebaseline-chromium-webkit-tests to work correctly given the
broken coverage of our layout bots. As soon as we get SL and
Win 7 bots running reliably on the canaries, we can get rid of
this change. Note that we only need to change the chromium_mac
and win ports because linux doesn't yet use versions and that
script doesn't work with non-chromium ports.

Also, this change fixes a bug where we were using
"platform/chromium-win-win7" and
"platform/chromium-mac-snowleopard" as the baseline dirs for
Win 7 and SL; we should've been using the generic directories
instead since they are the newest versions of the os's.

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

  • Scripts/webkitpy/layout_tests/port/chromium_mac.py:
  • Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
  • Scripts/webkitpy/layout_tests/port/chromium_win.py:
  • Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
  • Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
2:21 PM Changeset in webkit [79034] by atwilson@chromium.org
  • 112 edits
    449 adds
    16 deletes in trunk/LayoutTests

Unreviewed rebaselines for Chromium.

  • platform/chromium-mac/compositing/reflections/deeply-nested-reflections-expected.checksum: Added.
  • platform/chromium-mac/compositing/reflections/deeply-nested-reflections-expected.png: Added.
  • platform/chromium-mac/css1/box_properties/clear_float-expected.checksum:
  • platform/chromium-mac/css1/box_properties/clear_float-expected.png:
  • platform/chromium-mac/css1/box_properties/float_elements_in_series-expected.checksum: Added.
  • platform/chromium-mac/css1/box_properties/float_elements_in_series-expected.png: Added.
  • platform/chromium-mac/css1/box_properties/float_on_text_elements-expected.checksum:
  • platform/chromium-mac/css1/box_properties/float_on_text_elements-expected.png:
  • platform/chromium-mac/css1/text_properties/text_align-expected.checksum: Added.
  • platform/chromium-mac/css1/text_properties/text_align-expected.png: Added.
  • platform/chromium-mac/css2.1/t0805-c5518-brdr-t-01-e-expected.checksum: Added.
  • platform/chromium-mac/css2.1/t0805-c5518-brdr-t-01-e-expected.png: Added.
  • platform/chromium-mac/css2.1/t0905-c5525-fltcont-00-d-g-expected.checksum:
  • platform/chromium-mac/css2.1/t0905-c5525-fltcont-00-d-g-expected.png:
  • platform/chromium-mac/css2.1/t0905-c5525-fltwidth-00-c-g-expected.checksum:
  • platform/chromium-mac/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png:
  • platform/chromium-mac/css2.1/t1202-counter-03-b-expected.checksum: Added.
  • platform/chromium-mac/css2.1/t1202-counter-03-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counter-04-b-expected.checksum: Added.
  • platform/chromium-mac/css2.1/t1202-counter-04-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counter-04-b-expected.txt: Added.
  • platform/chromium-mac/css2.1/t1202-counters-03-b-expected.checksum: Added.
  • platform/chromium-mac/css2.1/t1202-counters-03-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counters-04-b-expected.checksum: Added.
  • platform/chromium-mac/css2.1/t1202-counters-04-b-expected.png: Added.
  • platform/chromium-mac/css2.1/t1202-counters-04-b-expected.txt: Added.
  • platform/chromium-mac/css2.1/t1602-c43-center-00-d-ag-expected.checksum: Added.
  • platform/chromium-mac/css2.1/t1602-c43-center-00-d-ag-expected.png: Added.
  • platform/chromium-mac/css2.1/t1602-c546-txt-align-00-b-expected.checksum: Added.
  • platform/chromium-mac/css2.1/t1602-c546-txt-align-00-b-expected.png: Added.
  • platform/chromium-mac/editing/deleting/delete-tab-003-expected.checksum: Added.
  • platform/chromium-mac/editing/deleting/delete-tab-003-expected.png: Added.
  • platform/chromium-mac/editing/deleting/delete-ws-fixup-001-expected.checksum: Added.
  • platform/chromium-mac/editing/deleting/delete-ws-fixup-001-expected.png: Added.
  • platform/chromium-mac/editing/inserting/insert-tab-003-expected.checksum: Added.
  • platform/chromium-mac/editing/inserting/insert-tab-003-expected.png: Added.
  • platform/chromium-mac/editing/inserting/typing-tab-designmode-forms-expected.checksum: Added.
  • platform/chromium-mac/editing/inserting/typing-tab-designmode-forms-expected.png: Added.
  • platform/chromium-mac/editing/pasteboard/4641033-expected.checksum: Added.
  • platform/chromium-mac/editing/pasteboard/4641033-expected.png: Added.
  • platform/chromium-mac/editing/pasteboard/block-wrappers-necessary-expected.checksum: Added.
  • platform/chromium-mac/editing/pasteboard/block-wrappers-necessary-expected.png: Added.
  • platform/chromium-mac/editing/pasteboard/nested-blocks-with-text-area-expected.checksum: Added.
  • platform/chromium-mac/editing/pasteboard/nested-blocks-with-text-area-expected.png: Added.
  • platform/chromium-mac/editing/pasteboard/nested-blocks-with-text-field-expected.checksum: Added.
  • platform/chromium-mac/editing/pasteboard/nested-blocks-with-text-field-expected.png: Added.
  • platform/chromium-mac/editing/pasteboard/paste-blockquote-2-expected.checksum: Added.
  • platform/chromium-mac/editing/pasteboard/paste-blockquote-2-expected.png: Added.
  • platform/chromium-mac/editing/pasteboard/pasting-tabs-expected.checksum: Added.
  • platform/chromium-mac/editing/pasteboard/pasting-tabs-expected.png: Added.
  • platform/chromium-mac/editing/selection/3690703-2-expected.checksum: Added.
  • platform/chromium-mac/editing/selection/3690703-2-expected.png: Added.
  • platform/chromium-mac/editing/selection/3690703-expected.checksum: Added.
  • platform/chromium-mac/editing/selection/3690703-expected.png: Added.
  • platform/chromium-mac/editing/selection/3690719-expected.checksum: Added.
  • platform/chromium-mac/editing/selection/3690719-expected.png: Added.
  • platform/chromium-mac/editing/selection/4397952-expected.checksum: Added.
  • platform/chromium-mac/editing/selection/4397952-expected.png: Added.
  • platform/chromium-mac/editing/selection/4975120-expected.checksum: Added.
  • platform/chromium-mac/editing/selection/4975120-expected.png: Added.
  • platform/chromium-mac/editing/selection/5240265-expected.checksum: Added.
  • platform/chromium-mac/editing/selection/5240265-expected.png: Added.
  • platform/chromium-mac/editing/selection/caret-rtl-2-expected.checksum:
  • platform/chromium-mac/editing/selection/caret-rtl-2-expected.png:
  • platform/chromium-mac/editing/selection/caret-rtl-2-left-expected.checksum:
  • platform/chromium-mac/editing/selection/caret-rtl-2-left-expected.png:
  • platform/chromium-mac/editing/selection/caret-rtl-expected.checksum:
  • platform/chromium-mac/editing/selection/caret-rtl-expected.png:
  • platform/chromium-mac/editing/selection/caret-rtl-right-expected.checksum:
  • platform/chromium-mac/editing/selection/caret-rtl-right-expected.png:
  • platform/chromium-mac/editing/selection/extend-selection-bidi-expected.checksum: Added.
  • platform/chromium-mac/editing/selection/extend-selection-bidi-expected.png: Added.
  • platform/chromium-mac/editing/selection/move-past-trailing-space-expected.checksum: Removed.
  • platform/chromium-mac/editing/selection/replaced-boundaries-3-expected.checksum:
  • platform/chromium-mac/editing/selection/replaced-boundaries-3-expected.png: Added.
  • platform/chromium-mac/editing/selection/select-from-textfield-outwards-expected.checksum: Added.
  • platform/chromium-mac/editing/selection/select-from-textfield-outwards-expected.png: Added.
  • platform/chromium-mac/editing/style/5046875-1-expected.checksum: Added.
  • platform/chromium-mac/editing/style/5046875-1-expected.png: Added.
  • platform/chromium-mac/editing/style/create-block-for-style-011-expected.checksum: Removed.
  • platform/chromium-mac/editing/style/create-block-for-style-011-expected.png: Removed.
  • platform/chromium-mac/editing/style/create-block-for-style-012-expected.checksum: Removed.
  • platform/chromium-mac/editing/style/create-block-for-style-012-expected.png: Removed.
  • platform/chromium-mac/editing/style/table-selection-expected.checksum: Added.
  • platform/chromium-mac/editing/style/table-selection-expected.png: Added.
  • platform/chromium-mac/fast/block/margin-collapse/103-expected.checksum:
  • platform/chromium-mac/fast/block/margin-collapse/103-expected.png:
  • platform/chromium-mac/fast/block/positioning/inline-block-relposition-expected.checksum: Added.
  • platform/chromium-mac/fast/block/positioning/inline-block-relposition-expected.png: Added.
  • platform/chromium-mac/fast/blockflow/Kusa-Makura-background-canvas-expected.checksum: Added.
  • platform/chromium-mac/fast/blockflow/Kusa-Makura-background-canvas-expected.png: Added.
  • platform/chromium-mac/fast/blockflow/border-vertical-lr-expected.checksum:
  • platform/chromium-mac/fast/blockflow/border-vertical-lr-expected.png:
  • platform/chromium-mac/fast/blockflow/border-vertical-lr-expected.txt: Added.
  • platform/chromium-mac/fast/blockflow/japanese-lr-selection-expected.checksum:
  • platform/chromium-mac/fast/blockflow/japanese-lr-selection-expected.png:
  • platform/chromium-mac/fast/blockflow/japanese-lr-text-expected.checksum:
  • platform/chromium-mac/fast/blockflow/japanese-lr-text-expected.png:
  • platform/chromium-mac/fast/blockflow/japanese-rl-selection-expected.checksum:
  • platform/chromium-mac/fast/blockflow/japanese-rl-selection-expected.png:
  • platform/chromium-mac/fast/blockflow/japanese-rl-text-expected.checksum:
  • platform/chromium-mac/fast/blockflow/japanese-rl-text-expected.png: Added.
  • platform/chromium-mac/fast/blockflow/japanese-ruby-vertical-lr-expected.checksum: Added.
  • platform/chromium-mac/fast/blockflow/japanese-ruby-vertical-lr-expected.png: Added.
  • platform/chromium-mac/fast/blockflow/japanese-ruby-vertical-rl-expected.checksum: Added.
  • platform/chromium-mac/fast/blockflow/japanese-ruby-vertical-rl-expected.png: Added.
  • platform/chromium-mac/fast/blockflow/vertical-align-table-baseline-expected.checksum:
  • platform/chromium-mac/fast/blockflow/vertical-align-table-baseline-expected.png:
  • platform/chromium-mac/fast/blockflow/vertical-baseline-alignment-expected.checksum:
  • platform/chromium-mac/fast/blockflow/vertical-baseline-alignment-expected.png:
  • platform/chromium-mac/fast/blockflow/vertical-font-fallback-expected.checksum: Added.
  • platform/chromium-mac/fast/blockflow/vertical-font-fallback-expected.png: Added.
  • platform/chromium-mac/fast/css/beforeSelectorOnCodeElement-expected.checksum: Added.
  • platform/chromium-mac/fast/css/beforeSelectorOnCodeElement-expected.png: Added.
  • platform/chromium-mac/fast/css/continuationCrash-expected.checksum: Added.
  • platform/chromium-mac/fast/css/continuationCrash-expected.png: Added.
  • platform/chromium-mac/fast/css/css2-system-fonts-expected.checksum: Added.
  • platform/chromium-mac/fast/css/css2-system-fonts-expected.png: Added.
  • platform/chromium-mac/fast/css/font-face-default-font-expected.checksum: Added.
  • platform/chromium-mac/fast/css/font-face-default-font-expected.png: Added.
  • platform/chromium-mac/fast/css/font-face-locally-installed-expected.checksum: Added.
  • platform/chromium-mac/fast/css/font-face-locally-installed-expected.png: Added.
  • platform/chromium-mac/fast/css/margin-top-bottom-dynamic-expected.checksum: Added.
  • platform/chromium-mac/fast/css/margin-top-bottom-dynamic-expected.png: Added.
  • platform/chromium-mac/fast/css/rtl-ordering-expected.checksum: Added.
  • platform/chromium-mac/fast/css/rtl-ordering-expected.png: Added.
  • platform/chromium-mac/fast/css/text-input-with-webkit-border-radius-expected.checksum: Added.
  • platform/chromium-mac/fast/css/text-input-with-webkit-border-radius-expected.png: Added.
  • platform/chromium-mac/fast/css/text-overflow-ellipsis-bidi-expected.checksum: Added.
  • platform/chromium-mac/fast/css/text-overflow-ellipsis-bidi-expected.png: Added.
  • platform/chromium-mac/fast/css/text-overflow-ellipsis-strict-expected.checksum: Added.
  • platform/chromium-mac/fast/css/text-overflow-ellipsis-strict-expected.png: Added.
  • platform/chromium-mac/fast/css/text-security-expected.checksum: Added.
  • platform/chromium-mac/fast/css/text-security-expected.png: Added.
  • platform/chromium-mac/fast/dom/52776-expected.txt:
  • platform/chromium-mac/fast/dom/HTMLInputElement/input-image-alt-text-expected.checksum: Added.
  • platform/chromium-mac/fast/dom/HTMLInputElement/input-image-alt-text-expected.png: Added.
  • platform/chromium-mac/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.checksum: Added.
  • platform/chromium-mac/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.png: Added.
  • platform/chromium-mac/fast/dom/HTMLTextAreaElement/reset-textarea-expected.checksum: Added.
  • platform/chromium-mac/fast/dom/HTMLTextAreaElement/reset-textarea-expected.png: Added.
  • platform/chromium-mac/fast/dynamic/008-expected.checksum: Added.
  • platform/chromium-mac/fast/dynamic/008-expected.png: Added.
  • platform/chromium-mac/fast/events/autoscroll-expected.checksum: Added.
  • platform/chromium-mac/fast/events/autoscroll-expected.png: Added.
  • platform/chromium-mac/fast/events/context-no-deselect-expected.checksum: Added.
  • platform/chromium-mac/fast/events/context-no-deselect-expected.png: Added.
  • platform/chromium-mac/fast/forms/HTMLOptionElement_label01-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/HTMLOptionElement_label01-expected.png: Added.
  • platform/chromium-mac/fast/forms/HTMLOptionElement_label02-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/HTMLOptionElement_label02-expected.png: Added.
  • platform/chromium-mac/fast/forms/HTMLOptionElement_label03-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/HTMLOptionElement_label03-expected.png: Added.
  • platform/chromium-mac/fast/forms/HTMLOptionElement_label04-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/HTMLOptionElement_label04-expected.png: Added.
  • platform/chromium-mac/fast/forms/basic-buttons-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/basic-buttons-expected.png: Added.
  • platform/chromium-mac/fast/forms/basic-selects-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/basic-selects-expected.png: Added.
  • platform/chromium-mac/fast/forms/basic-selects-expected.txt: Added.
  • platform/chromium-mac/fast/forms/basic-textareas-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/basic-textareas-expected.png: Added.
  • platform/chromium-mac/fast/forms/basic-textareas-quirks-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/basic-textareas-quirks-expected.png: Added.
  • platform/chromium-mac/fast/forms/blankbuttons-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/blankbuttons-expected.png: Added.
  • platform/chromium-mac/fast/forms/button-align-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/button-align-expected.png: Added.
  • platform/chromium-mac/fast/forms/button-cannot-be-nested-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/button-cannot-be-nested-expected.png: Added.
  • platform/chromium-mac/fast/forms/button-default-title-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/button-default-title-expected.png: Added.
  • platform/chromium-mac/fast/forms/button-generated-content-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/button-generated-content-expected.png: Added.
  • platform/chromium-mac/fast/forms/button-positioned-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/button-positioned-expected.png: Added.
  • platform/chromium-mac/fast/forms/button-sizes-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/button-sizes-expected.png: Added.
  • platform/chromium-mac/fast/forms/button-style-color-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/button-style-color-expected.png: Added.
  • platform/chromium-mac/fast/forms/button-table-styles-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/button-table-styles-expected.png: Added.
  • platform/chromium-mac/fast/forms/button-text-transform-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/button-text-transform-expected.png: Added.
  • platform/chromium-mac/fast/forms/button-white-space-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/button-white-space-expected.png: Added.
  • platform/chromium-mac/fast/forms/control-clip-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/control-clip-expected.png: Added.
  • platform/chromium-mac/fast/forms/control-restrict-line-height-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/control-restrict-line-height-expected.png: Added.
  • platform/chromium-mac/fast/forms/file-input-direction-expected.checksum:
  • platform/chromium-mac/fast/forms/file-input-direction-expected.png:
  • platform/chromium-mac/fast/forms/file-input-direction-expected.txt:
  • platform/chromium-mac/fast/forms/formmove3-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/formmove3-expected.png: Added.
  • platform/chromium-mac/fast/forms/input-align-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/input-align-expected.png: Added.
  • platform/chromium-mac/fast/forms/input-appearance-bkcolor-expected.checksum:
  • platform/chromium-mac/fast/forms/input-appearance-bkcolor-expected.png: Added.
  • platform/chromium-mac/fast/forms/input-appearance-default-bkcolor-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/input-appearance-default-bkcolor-expected.png: Added.
  • platform/chromium-mac/fast/forms/input-appearance-disabled-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/input-appearance-disabled-expected.png: Added.
  • platform/chromium-mac/fast/forms/input-appearance-focus-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/input-appearance-focus-expected.png: Added.
  • platform/chromium-mac/fast/forms/input-appearance-preventDefault-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/input-appearance-preventDefault-expected.png: Added.
  • platform/chromium-mac/fast/forms/input-appearance-readonly-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/input-appearance-readonly-expected.png: Added.
  • platform/chromium-mac/fast/forms/input-appearance-selection-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/input-appearance-selection-expected.png: Added.
  • platform/chromium-mac/fast/forms/input-appearance-visibility-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/input-appearance-visibility-expected.png: Added.
  • platform/chromium-mac/fast/forms/input-appearance-width-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/input-appearance-width-expected.png: Added.
  • platform/chromium-mac/fast/forms/input-button-sizes-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/input-button-sizes-expected.png: Added.
  • platform/chromium-mac/fast/forms/input-disabled-color-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/input-disabled-color-expected.png: Added.
  • platform/chromium-mac/fast/forms/input-double-click-selection-gap-bug-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/input-double-click-selection-gap-bug-expected.png: Added.
  • platform/chromium-mac/fast/forms/input-field-text-truncated-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/input-field-text-truncated-expected.png: Added.
  • platform/chromium-mac/fast/forms/input-file-re-render-expected.checksum:
  • platform/chromium-mac/fast/forms/input-file-re-render-expected.png:
  • platform/chromium-mac/fast/forms/input-first-letter-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/input-first-letter-expected.png: Added.
  • platform/chromium-mac/fast/forms/input-readonly-autoscroll-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/input-readonly-autoscroll-expected.png: Added.
  • platform/chromium-mac/fast/forms/input-readonly-dimmed-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/input-readonly-dimmed-expected.png: Added.
  • platform/chromium-mac/fast/forms/input-spaces-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/input-spaces-expected.png: Added.
  • platform/chromium-mac/fast/forms/input-table-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/input-table-expected.png: Added.
  • platform/chromium-mac/fast/forms/input-text-double-click-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/input-text-double-click-expected.png: Added.
  • platform/chromium-mac/fast/forms/input-text-drag-down-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/input-text-drag-down-expected.png: Added.
  • platform/chromium-mac/fast/forms/input-text-scroll-left-on-blur-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/input-text-scroll-left-on-blur-expected.png: Added.
  • platform/chromium-mac/fast/forms/input-text-word-wrap-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/input-text-word-wrap-expected.png: Added.
  • platform/chromium-mac/fast/forms/menulist-no-overflow-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/menulist-no-overflow-expected.png: Added.
  • platform/chromium-mac/fast/forms/menulist-option-wrap-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/menulist-option-wrap-expected.png: Added.
  • platform/chromium-mac/fast/forms/menulist-restrict-line-height-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/menulist-restrict-line-height-expected.png: Added.
  • platform/chromium-mac/fast/forms/menulist-style-color-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/menulist-style-color-expected.png: Added.
  • platform/chromium-mac/fast/forms/menulist-width-change-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/menulist-width-change-expected.png: Added.
  • platform/chromium-mac/fast/forms/option-strip-whitespace-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/option-strip-whitespace-expected.png: Added.
  • platform/chromium-mac/fast/forms/option-text-clip-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/option-text-clip-expected.png: Added.
  • platform/chromium-mac/fast/forms/placeholder-position-expected.checksum:
  • platform/chromium-mac/fast/forms/placeholder-position-expected.png:
  • platform/chromium-mac/fast/forms/placeholder-set-value-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/placeholder-set-value-expected.png: Added.
  • platform/chromium-mac/fast/forms/plaintext-mode-2-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/plaintext-mode-2-expected.png: Added.
  • platform/chromium-mac/fast/forms/search-cancel-button-style-sharing-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/search-cancel-button-style-sharing-expected.png: Added.
  • platform/chromium-mac/fast/forms/search-rtl-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/search-rtl-expected.png: Added.
  • platform/chromium-mac/fast/forms/search-transformed-expected.checksum:
  • platform/chromium-mac/fast/forms/search-transformed-expected.png:
  • platform/chromium-mac/fast/forms/search-zoomed-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/search-zoomed-expected.png: Added.
  • platform/chromium-mac/fast/forms/select-align-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/select-align-expected.png: Added.
  • platform/chromium-mac/fast/forms/select-baseline-expected.checksum:
  • platform/chromium-mac/fast/forms/select-baseline-expected.png:
  • platform/chromium-mac/fast/forms/select-change-listbox-to-popup-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/select-change-listbox-to-popup-expected.png: Added.
  • platform/chromium-mac/fast/forms/select-disabled-appearance-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/select-disabled-appearance-expected.png: Added.
  • platform/chromium-mac/fast/forms/select-initial-position-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/select-initial-position-expected.png: Added.
  • platform/chromium-mac/fast/forms/select-selected-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/select-selected-expected.png: Added.
  • platform/chromium-mac/fast/forms/select-visual-hebrew-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/select-visual-hebrew-expected.png: Added.
  • platform/chromium-mac/fast/forms/stuff-on-my-optgroup-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/stuff-on-my-optgroup-expected.png: Added.
  • platform/chromium-mac/fast/forms/tabbing-input-iframe-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/tabbing-input-iframe-expected.png: Added.
  • platform/chromium-mac/fast/forms/targeted-frame-submission-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/targeted-frame-submission-expected.png: Added.
  • platform/chromium-mac/fast/forms/text-style-color-expected.checksum:
  • platform/chromium-mac/fast/forms/text-style-color-expected.png:
  • platform/chromium-mac/fast/forms/textarea-align-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/textarea-align-expected.png: Added.
  • platform/chromium-mac/fast/forms/textarea-placeholder-set-value-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/textarea-placeholder-set-value-expected.png: Added.
  • platform/chromium-mac/fast/forms/textarea-scroll-height-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/textarea-scroll-height-expected.png: Added.
  • platform/chromium-mac/fast/forms/textarea-scrolled-type-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/textarea-scrolled-type-expected.png: Added.
  • platform/chromium-mac/fast/forms/visual-hebrew-text-field-expected.checksum: Added.
  • platform/chromium-mac/fast/forms/visual-hebrew-text-field-expected.png: Added.
  • platform/chromium-mac/fast/html/keygen-expected.checksum: Added.
  • platform/chromium-mac/fast/html/keygen-expected.png: Added.
  • platform/chromium-mac/fast/inline/inline-box-background-expected.checksum:
  • platform/chromium-mac/fast/inline/inline-box-background-expected.png:
  • platform/chromium-mac/fast/inline/inline-box-background-long-image-expected.checksum:
  • platform/chromium-mac/fast/inline/inline-box-background-long-image-expected.png:
  • platform/chromium-mac/fast/inline/inline-box-background-repeat-x-expected.checksum:
  • platform/chromium-mac/fast/inline/inline-box-background-repeat-x-expected.png:
  • platform/chromium-mac/fast/inline/inline-box-background-repeat-y-expected.checksum:
  • platform/chromium-mac/fast/inline/inline-box-background-repeat-y-expected.png:
  • platform/chromium-mac/fast/lists/dynamic-marker-crash-expected.checksum: Added.
  • platform/chromium-mac/fast/lists/dynamic-marker-crash-expected.png: Added.
  • platform/chromium-mac/fast/multicol/float-avoidance-expected.checksum: Added.
  • platform/chromium-mac/fast/multicol/float-avoidance-expected.png: Added.
  • platform/chromium-mac/fast/multicol/shadow-breaking-expected.checksum:
  • platform/chromium-mac/fast/multicol/shadow-breaking-expected.png:
  • platform/chromium-mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.checksum: Added.
  • platform/chromium-mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.png: Added.
  • platform/chromium-mac/fast/parser/document-write-option-expected.checksum: Added.
  • platform/chromium-mac/fast/parser/document-write-option-expected.png: Added.
  • platform/chromium-mac/fast/parser/entity-comment-in-textarea-expected.checksum: Added.
  • platform/chromium-mac/fast/parser/entity-comment-in-textarea-expected.png: Added.
  • platform/chromium-mac/fast/parser/open-comment-in-textarea-expected.checksum: Added.
  • platform/chromium-mac/fast/parser/open-comment-in-textarea-expected.png: Added.
  • platform/chromium-mac/fast/repaint/japanese-rl-selection-clear-expected.checksum:
  • platform/chromium-mac/fast/repaint/japanese-rl-selection-clear-expected.png:
  • platform/chromium-mac/fast/repaint/japanese-rl-selection-repaint-expected.checksum:
  • platform/chromium-mac/fast/repaint/japanese-rl-selection-repaint-expected.png:
  • platform/chromium-mac/fast/repaint/line-flow-with-floats-1-expected.checksum:
  • platform/chromium-mac/fast/repaint/line-flow-with-floats-1-expected.png:
  • platform/chromium-mac/fast/repaint/line-flow-with-floats-10-expected.checksum:
  • platform/chromium-mac/fast/repaint/line-flow-with-floats-10-expected.png:
  • platform/chromium-mac/fast/repaint/line-flow-with-floats-2-expected.checksum:
  • platform/chromium-mac/fast/repaint/line-flow-with-floats-2-expected.png:
  • platform/chromium-mac/fast/repaint/line-flow-with-floats-3-expected.checksum:
  • platform/chromium-mac/fast/repaint/line-flow-with-floats-3-expected.png:
  • platform/chromium-mac/fast/repaint/line-flow-with-floats-4-expected.checksum:
  • platform/chromium-mac/fast/repaint/line-flow-with-floats-4-expected.png:
  • platform/chromium-mac/fast/repaint/line-flow-with-floats-5-expected.checksum:
  • platform/chromium-mac/fast/repaint/line-flow-with-floats-5-expected.png:
  • platform/chromium-mac/fast/repaint/line-flow-with-floats-6-expected.checksum:
  • platform/chromium-mac/fast/repaint/line-flow-with-floats-6-expected.png:
  • platform/chromium-mac/fast/repaint/line-flow-with-floats-7-expected.checksum:
  • platform/chromium-mac/fast/repaint/line-flow-with-floats-7-expected.png:
  • platform/chromium-mac/fast/repaint/line-flow-with-floats-8-expected.checksum:
  • platform/chromium-mac/fast/repaint/line-flow-with-floats-8-expected.png:
  • platform/chromium-mac/fast/repaint/line-flow-with-floats-9-expected.checksum:
  • platform/chromium-mac/fast/repaint/line-flow-with-floats-9-expected.png:
  • platform/chromium-mac/fast/repaint/repaint-across-writing-mode-boundary-expected.checksum:
  • platform/chromium-mac/fast/repaint/repaint-across-writing-mode-boundary-expected.png:
  • platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.checksum: Removed.
  • platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png: Removed.
  • platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.checksum: Removed.
  • platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png: Removed.
  • platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.checksum: Removed.
  • platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png: Removed.
  • platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.checksum: Removed.
  • platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png: Removed.
  • platform/chromium-mac/fast/replaced/width100percent-button-expected.checksum: Added.
  • platform/chromium-mac/fast/replaced/width100percent-button-expected.png: Added.
  • platform/chromium-mac/fast/replaced/width100percent-searchfield-expected.checksum: Added.
  • platform/chromium-mac/fast/replaced/width100percent-searchfield-expected.png: Added.
  • platform/chromium-mac/fast/replaced/width100percent-textarea-expected.checksum:
  • platform/chromium-mac/fast/replaced/width100percent-textarea-expected.png:
  • platform/chromium-mac/fast/replaced/width100percent-textfield-expected.checksum: Added.
  • platform/chromium-mac/fast/replaced/width100percent-textfield-expected.png: Added.
  • platform/chromium-mac/fast/selectors/064-expected.checksum: Added.
  • platform/chromium-mac/fast/selectors/064-expected.png: Added.
  • platform/chromium-mac/fast/speech/input-appearance-speechbutton-expected.checksum:
  • platform/chromium-mac/fast/speech/input-appearance-speechbutton-expected.png:
  • platform/chromium-mac/fast/speech/input-appearance-speechbutton-expected.txt:
  • platform/chromium-mac/fast/table/append-cells2-expected.checksum: Added.
  • platform/chromium-mac/fast/table/append-cells2-expected.png: Added.
  • platform/chromium-mac/fast/table/border-collapsing/004-vertical-expected.checksum: Added.
  • platform/chromium-mac/fast/table/border-collapsing/004-vertical-expected.png: Added.
  • platform/chromium-mac/fast/table/frame-and-rules-expected.checksum: Added.
  • platform/chromium-mac/fast/table/frame-and-rules-expected.png: Added.
  • platform/chromium-mac/fast/table/remove-td-display-none-expected.checksum: Added.
  • platform/chromium-mac/fast/table/remove-td-display-none-expected.png: Added.
  • platform/chromium-mac/fast/text/atsui-negative-spacing-features-expected.checksum: Added.
  • platform/chromium-mac/fast/text/atsui-negative-spacing-features-expected.png: Added.
  • platform/chromium-mac/fast/text/atsui-partial-selection-expected.checksum: Added.
  • platform/chromium-mac/fast/text/atsui-partial-selection-expected.png: Added.
  • platform/chromium-mac/fast/text/atsui-spacing-features-expected.checksum: Added.
  • platform/chromium-mac/fast/text/atsui-spacing-features-expected.png: Added.
  • platform/chromium-mac/fast/text/backslash-to-yen-sign-euc-expected.checksum: Added.
  • platform/chromium-mac/fast/text/backslash-to-yen-sign-euc-expected.png: Added.
  • platform/chromium-mac/fast/text/bidi-embedding-pop-and-push-same-expected.checksum: Added.
  • platform/chromium-mac/fast/text/bidi-embedding-pop-and-push-same-expected.png: Added.
  • platform/chromium-mac/fast/text/capitalize-boundaries-expected.checksum: Added.
  • platform/chromium-mac/fast/text/capitalize-boundaries-expected.png: Added.
  • platform/chromium-mac/fast/text/in-rendered-text-rtl-expected.checksum: Added.
  • platform/chromium-mac/fast/text/in-rendered-text-rtl-expected.png: Added.
  • platform/chromium-mac/fast/text/international/bidi-AN-after-L-expected.checksum: Added.
  • platform/chromium-mac/fast/text/international/bidi-AN-after-L-expected.png: Added.
  • platform/chromium-mac/fast/text/international/bidi-AN-after-L-expected.txt: Added.
  • platform/chromium-mac/fast/text/international/bidi-L2-run-reordering-expected.checksum: Added.
  • platform/chromium-mac/fast/text/international/bidi-L2-run-reordering-expected.png: Added.
  • platform/chromium-mac/fast/text/international/bidi-LDB-2-CSS-expected.checksum: Added.
  • platform/chromium-mac/fast/text/international/bidi-LDB-2-CSS-expected.png: Added.
  • platform/chromium-mac/fast/text/international/bidi-LDB-2-HTML-expected.checksum: Added.
  • platform/chromium-mac/fast/text/international/bidi-LDB-2-HTML-expected.png: Added.
  • platform/chromium-mac/fast/text/international/bidi-LDB-2-formatting-characters-expected.checksum: Added.
  • platform/chromium-mac/fast/text/international/bidi-LDB-2-formatting-characters-expected.png: Added.
  • platform/chromium-mac/fast/text/international/bidi-european-terminators-expected.checksum: Added.
  • platform/chromium-mac/fast/text/international/bidi-european-terminators-expected.png: Added.
  • platform/chromium-mac/fast/text/international/bidi-ignored-for-first-child-inline-expected.checksum: Added.
  • platform/chromium-mac/fast/text/international/bidi-ignored-for-first-child-inline-expected.png: Added.
  • platform/chromium-mac/fast/text/international/bidi-innertext-expected.checksum: Added.
  • platform/chromium-mac/fast/text/international/bidi-innertext-expected.png: Added.
  • platform/chromium-mac/fast/text/international/bidi-layout-across-linebreak-expected.checksum: Added.
  • platform/chromium-mac/fast/text/international/bidi-layout-across-linebreak-expected.png: Added.
  • platform/chromium-mac/fast/text/international/bidi-linebreak-001-expected.checksum: Added.
  • platform/chromium-mac/fast/text/international/bidi-linebreak-001-expected.png: Added.
  • platform/chromium-mac/fast/text/international/bidi-linebreak-002-expected.checksum: Added.
  • platform/chromium-mac/fast/text/international/bidi-linebreak-002-expected.png: Added.
  • platform/chromium-mac/fast/text/international/bidi-linebreak-003-expected.checksum: Added.
  • platform/chromium-mac/fast/text/international/bidi-linebreak-003-expected.png: Added.
  • platform/chromium-mac/fast/text/international/bidi-listbox-atsui-expected.checksum: Added.
  • platform/chromium-mac/fast/text/international/bidi-listbox-atsui-expected.png: Added.
  • platform/chromium-mac/fast/text/international/bidi-listbox-expected.checksum: Added.
  • platform/chromium-mac/fast/text/international/bidi-listbox-expected.png: Added.
  • platform/chromium-mac/fast/text/international/bidi-mirror-he-ar-expected.checksum: Added.
  • platform/chromium-mac/fast/text/international/bidi-mirror-he-ar-expected.png: Added.
  • platform/chromium-mac/fast/text/international/bidi-mirror-he-ar-expected.txt: Added.
  • platform/chromium-mac/fast/text/international/bidi-neutral-run-expected.checksum: Added.
  • platform/chromium-mac/fast/text/international/bidi-neutral-run-expected.png: Added.
  • platform/chromium-mac/fast/text/international/bidi-neutral-run-expected.txt: Added.
  • platform/chromium-mac/fast/text/international/bidi-override-expected.checksum: Added.
  • platform/chromium-mac/fast/text/international/bidi-override-expected.png: Added.
  • platform/chromium-mac/fast/text/international/hebrew-vowels-expected.checksum: Added.
  • platform/chromium-mac/fast/text/international/hebrew-vowels-expected.png: Added.
  • platform/chromium-mac/fast/text/international/hindi-spacing-expected.checksum: Added.
  • platform/chromium-mac/fast/text/international/hindi-spacing-expected.png: Added.
  • platform/chromium-mac/fast/text/international/pop-up-button-text-alignment-and-direction-expected.checksum:
  • platform/chromium-mac/fast/text/international/pop-up-button-text-alignment-and-direction-expected.png:
  • platform/chromium-mac/fast/text/international/pop-up-button-text-alignment-and-direction-expected.txt: Removed.
  • platform/chromium-mac/fast/text/international/rtl-caret-expected.checksum: Added.
  • platform/chromium-mac/fast/text/international/rtl-caret-expected.png: Added.
  • platform/chromium-mac/fast/text/international/rtl-white-space-pre-wrap-expected.checksum: Added.
  • platform/chromium-mac/fast/text/international/rtl-white-space-pre-wrap-expected.png: Added.
  • platform/chromium-mac/fast/text/international/text-combine-image-test-expected.checksum: Added.
  • platform/chromium-mac/fast/text/international/text-combine-image-test-expected.png: Added.
  • platform/chromium-mac/fast/text/international/text-combine-image-test-expected.txt: Added.
  • platform/chromium-mac/fast/text/justified-selection-at-edge-expected.checksum: Added.
  • platform/chromium-mac/fast/text/justified-selection-at-edge-expected.png: Added.
  • platform/chromium-mac/fast/text/justify-ideograph-simple-expected.checksum:
  • platform/chromium-mac/fast/text/justify-ideograph-simple-expected.png:
  • platform/chromium-mac/fast/text/justify-ideograph-vertical-expected.checksum:
  • platform/chromium-mac/fast/text/justify-ideograph-vertical-expected.png:
  • platform/chromium-mac/fast/text/justify-nbsp-expected.checksum: Added.
  • platform/chromium-mac/fast/text/justify-nbsp-expected.png: Added.
  • platform/chromium-mac/fast/text/line-breaks-expected.checksum: Added.
  • platform/chromium-mac/fast/text/line-breaks-expected.png: Added.
  • platform/chromium-mac/fast/text/trailing-white-space-2-expected.checksum: Removed.
  • platform/chromium-mac/fast/text/trailing-white-space-expected.checksum: Removed.
  • platform/chromium-mac/fast/text/word-break-run-rounding-expected.checksum: Added.
  • platform/chromium-mac/fast/text/word-break-run-rounding-expected.png: Added.
  • platform/chromium-mac/fonts/sans-serif-expected.checksum: Added.
  • platform/chromium-mac/fonts/sans-serif-expected.png: Added.
  • platform/chromium-mac/svg/custom/animate-path-discrete-expected.checksum: Added.
  • platform/chromium-mac/svg/custom/animate-path-discrete-expected.png: Added.
  • platform/chromium-mac/svg/custom/inline-svg-in-xhtml-expected.checksum:
  • platform/chromium-mac/svg/custom/inline-svg-in-xhtml-expected.png:
  • platform/chromium-mac/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.checksum:
  • platform/chromium-mac/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.png:
  • platform/chromium-mac/svg/custom/svg-fonts-in-html-expected.checksum:
  • platform/chromium-mac/svg/custom/svg-fonts-in-html-expected.png:
  • platform/chromium-mac/svg/custom/text-dom-01-f-expected.checksum: Added.
  • platform/chromium-mac/svg/custom/text-dom-01-f-expected.png: Added.
  • platform/chromium-mac/svg/hixie/mixed/003-expected.checksum:
  • platform/chromium-mac/svg/hixie/mixed/003-expected.png:
  • platform/chromium-mac/svg/zoom/page/zoom-hixie-mixed-008-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug113424-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug113424-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug1188-expected.checksum:
  • platform/chromium-mac/tables/mozilla/bugs/bug1188-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug1318-expected.checksum:
  • platform/chromium-mac/tables/mozilla/bugs/bug1318-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug138725-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug138725-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug14323-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug14323-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug18359-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug18359-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug2479-2-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug2479-2-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug2479-3-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug2479-3-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug26178-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug26178-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug28928-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug28928-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug2962-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug2962-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug30692-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug30692-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug33855-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug33855-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug39209-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug39209-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug4429-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug4429-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug44505-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug44505-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug4527-expected.checksum:
  • platform/chromium-mac/tables/mozilla/bugs/bug4527-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug46368-1-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug46368-1-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug46368-2-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug46368-2-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug51037-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug51037-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug51727-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug51727-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug52505-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug52505-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug52506-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug52506-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug60749-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug60749-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug67915-1-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug67915-1-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug68912-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug68912-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug7342-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug7342-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug88035-1-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug88035-1-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug88035-2-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug88035-2-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug96334-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/bugs/bug96334-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/collapsing_borders/bug41262-4-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/collapsing_borders/bug41262-4-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/core/bloomberg-expected.checksum:
  • platform/chromium-mac/tables/mozilla/core/bloomberg-expected.png:
  • platform/chromium-mac/tables/mozilla/core/misc-expected.checksum:
  • platform/chromium-mac/tables/mozilla/core/misc-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/dom/tableDom-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/dom/tableDom-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/marvin/x_tbody_align_justify-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/marvin/x_tbody_align_justify-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/marvin/x_td_align_justify-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/marvin/x_td_align_justify-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/marvin/x_tfoot_align_justify-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/marvin/x_tfoot_align_justify-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/marvin/x_th_align_justify-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/marvin/x_th_align_justify-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/marvin/x_thead_align_justify-expected.checksum:
  • platform/chromium-mac/tables/mozilla/marvin/x_thead_align_justify-expected.png:
  • platform/chromium-mac/tables/mozilla/marvin/x_tr_align_justify-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/marvin/x_tr_align_justify-expected.png: Added.
  • platform/chromium-mac/tables/mozilla/other/move_row-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla/other/move_row-expected.png: Added.
  • platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug1725-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug1725-expected.png: Added.
  • platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png: Added.
  • platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug58402-2-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug58402-2-expected.png: Added.
  • platform/chromium-mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.png: Added.
  • platform/chromium-mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.checksum: Added.
  • platform/chromium-mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.png: Added.
  • platform/chromium/test_expectations.txt:
2:18 PM Changeset in webkit [79033] by jamesr@google.com
  • 6 edits in trunk/Source/WebCore

2011-02-18 James Robinson <jamesr@chromium.org>

Reviewed by Kenneth Russell.

[chromium] Update texture for ContentLayerChromiums in draw() call instead of updateContents..() call
https://bugs.webkit.org/show_bug.cgi?id=54315

This defers all operations on the compositor's GL context until the
draw() call which is a prerequisite for moving the draw() off-thread.
Also cleans up the update cycle a bit - there were some unused local
variables and whatnot.

One consequence of this change is that the upload buffer is retained
across updates now instead of allocated by each paint. This is
necessary so that the full layer contents can be uploaded if the
texture manager evicts the layer's backing texture. This costs more
persistent memory but avoids lots of allocator churn on updates.
Another nonobvious detail is that I have to update the texture for
ContentLayerChromiums in bindContentsTexture() because mask layers
never draw(), they are instead bound to the secondary texture unit.

  • platform/graphics/chromium/ContentLayerChromium.cpp: (WebCore::ContentLayerChromium::requiresClippedUpdateRect): (WebCore::ContentLayerChromium::updateContentsIfDirty): (WebCore::ContentLayerChromium::resizeUploadBufferForImage): (WebCore::ContentLayerChromium::resizeUploadBuffer): (WebCore::SkBitmapConditionalAutoLockerPixels::SkBitmapConditionalAutoLockerPixels): (WebCore::SkBitmapConditionalAutoLockerPixels::~SkBitmapConditionalAutoLockerPixels): (WebCore::SkBitmapConditionalAutoLockerPixels::lockPixels): (WebCore::ContentLayerChromium::updateTextureIfNeeded): (WebCore::ContentLayerChromium::draw): (WebCore::ContentLayerChromium::unreserveContentsTexture): (WebCore::ContentLayerChromium::bindContentsTexture):
  • platform/graphics/chromium/ContentLayerChromium.h:
  • platform/graphics/chromium/ImageLayerChromium.cpp: (WebCore::ImageLayerChromium::updateContentsIfDirty):
  • platform/graphics/chromium/LayerChromium.cpp: (WebCore::LayerChromium::setBounds):
  • platform/graphics/chromium/LayerChromium.h:
2:16 PM Changeset in webkit [79032] by Csaba Osztrogonác
  • 2 edits in trunk/Source/WebKit/qt

Unreviewed.

[Qt] Buildfix for platforms with geolocation disabled.

  • Api/qwebpage.cpp: Add the missing guard.
1:53 PM Changeset in webkit [79031] by kbr@google.com
  • 2 edits in trunk/Source/WebCore

2011-02-18 Kenneth Russell <kbr@google.com>

Unreviewed, Chromium build fix on certain Linux platforms.

  • platform/graphics/gpu/LoopBlinnSolidFillShader.cpp:
1:51 PM Changeset in webkit [79030] by andersca@apple.com
  • 2 edits in trunk/Source/WebKit2

2011-02-18 Anders Carlsson <andersca@apple.com>

Reviewed by Simon Fraser.

Implement NetscapePlugin::pluginComplexTextInputIdentifier
https://bugs.webkit.org/show_bug.cgi?id=54770

  • WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm: (WebKit::NetscapePlugin::pluginComplexTextInputIdentifier):
1:44 PM Changeset in webkit [79029] by atwilson@chromium.org
  • 1 edit
    1 add in trunk/LayoutTests

Unreviewed expectations update.

  • platform/chromium-win/inspector/styles-update-from-js-expected.txt: Added.
1:40 PM Changeset in webkit [79028] by Csaba Osztrogonác
  • 11 edits
    2 adds
    2 deletes in trunk

[Qt] Implement client based geolocation for qtport
https://bugs.webkit.org/show_bug.cgi?id=42629

Patch by Mahesh Kulkarni <mahesh.kulkarni@nokia.com> on 2011-02-18
Reviewed by Kenneth Rohde Christiansen.

Source/WebCore:

Implements client based geolocation for qtwebkit. Removed old code related to non-client based geolocation

No tests as yet. This will be raised as different bug as new mock client implementation need to be done.

  • WebCore.pro:
  • features.pri:
  • platform/qt/GeolocationServiceQt.cpp: Removed.
  • platform/qt/GeolocationServiceQt.h: Removed.

Source/WebKit/qt:

Implements client based geolocation for qtwebkit.
New client based geolocation contains permission API's as well,
so removed the implementation from ChromeClientQt.cpp.

  • Api/qwebpage.cpp:

(QWebPagePrivate::QWebPagePrivate):

  • WebCoreSupport/ChromeClientQt.cpp:
  • WebCoreSupport/ChromeClientQt.h:

(WebCore::ChromeClientQt::requestGeolocationPermissionForFrame):
(WebCore::ChromeClientQt::cancelGeolocationPermissionRequestForFrame):

  • WebCoreSupport/GeolocationClientQt.cpp: Added.

(WebCore::GeolocationClientQt::GeolocationClientQt):
(WebCore::GeolocationClientQt::~GeolocationClientQt):
(WebCore::GeolocationClientQt::geolocationDestroyed):
(WebCore::GeolocationClientQt::positionUpdated):
(WebCore::GeolocationClientQt::startUpdating):
(WebCore::GeolocationClientQt::stopUpdating):
(WebCore::GeolocationClientQt::setEnableHighAccuracy):
(WebCore::GeolocationClientQt::requestPermission):
(WebCore::GeolocationClientQt::cancelPermissionRequest):

  • WebCoreSupport/GeolocationClientQt.h: Added.

(WebCore::GeolocationClientQt::lastPosition):

LayoutTests:

Disable Geolocation layout test case until client-based mock layout controller is implemented.

  • platform/qt/Skipped:
1:32 PM Changeset in webkit [79027] by mihaip@chromium.org
  • 5 edits in trunk/LayoutTests

2011-02-18 Mihai Parparita <mihaip@chromium.org>

Unreviewed mac baseline update. Update some lingering failures after
r78846 (initial baselines in r78884 and r78855 were incorrect).

  • media/controls-without-preload-expected.txt:
  • platform/mac/fast/forms/text-control-intrinsic-widths-expected.txt:
  • platform/mac/fast/text/international/bidi-control-chars-treated-as-ZWS-expected.txt:
  • platform/mac/fast/text/international/bidi-mirror-he-ar-expected.txt:
1:30 PM Changeset in webkit [79026] by Martin Robinson
  • 2 edits in trunk/LayoutTests

2011-02-18 Martin Robinson <mrobinson@igalia.com>

Reorganize the GTK+ skipped list to make it easier to triage issues
and ease any future switch to test_expectations.txt format.

  • platform/gtk/Skipped: Reorganize the GTK+ skipped list.
1:29 PM Changeset in webkit [79025] by weinig@apple.com
  • 10 edits in trunk/Source/WebKit2

Add the ability to ask the WKPage if the main frame is pinned
to the right or left hand side.
Part of <rdar://problem/9017043>.

Reviewed by Maciej Stachowiak.

  • UIProcess/API/C/WKPage.cpp:

(WKPageIsPinnedToLeftSide):
(WKPageIsPinnedToRightSide):

  • UIProcess/API/C/WKPage.h:

Add new API calls.

  • UIProcess/WebPageProxy.cpp:

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

  • UIProcess/WebPageProxy.h:

(WebKit::WebPageProxy::isPinnedToLeftSide):
(WebKit::WebPageProxy::isPinnedToRightSide):
Initialize, reset and update the pinned state.

  • UIProcess/WebPageProxy.messages.in:

Add message to update the pinned state.

  • WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:

(WebKit::WebFrameLoaderClient::didChangeScrollOffset):

  • WebProcess/WebCoreSupport/WebFrameLoaderClient.h:
  • WebProcess/WebPage/WebPage.cpp:

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

  • WebProcess/WebPage/WebPage.h:

Cache the pinned state, and only update the UIProcess when it
changes.

1:28 PM Changeset in webkit [79024] by yael.aharon@nokia.com
  • 12 edits
    14 adds in trunk

Add support for dir=auto
https://bugs.webkit.org/show_bug.cgi?id=50916

Reviewed by Dave Hyatt.

Source/JavaScriptCore:

Change defaultWritingDirection() to return if the writing direction
was determined from a letter with strong directionality or not.

(WTF::StringImpl::defaultWritingDirection):

  • wtf/text/StringImpl.h:
  • wtf/text/WTFString.h:

(WTF::String::defaultWritingDirection):

Source/WebCore:

When an element has dir attribute with value "auto", call defaultWritingMode
to find its directionality.
Added a flag SelfOrAncestorHasDirAutoFlag, and added hooks in the DOM to set
and check this flag. This flag is set on every node between an element with
dir=auto attribute and its first text node. Changes in the DOM between those
elements will trigger re-evaluating the directionality, but changes not
between those element do not need to be concerned.
The DOM hooks were added to childrenChanged, and to parseMappedAttribute.
The directionality is evaluated when children are added, and cleared when they are
removed. Directionality flag is also cleared on a child that is no longer determining
the directionality due to a sibling being added before that child.

Added 2 static CSSMutableStyleDeclarations to be used for elements with dir=auto.
We cannot used the mapped declaration, because it can take only one value.

Tests: fast/dom/HTMLElement/attr-dir-auto-change-before-text-node.html

fast/dom/HTMLElement/attr-dir-auto-change-child-node.html
fast/dom/HTMLElement/attr-dir-auto-change-text.html
fast/dom/HTMLElement/attr-dir-auto-children.html
fast/dom/HTMLElement/attr-dir-auto-remove-add-children.html
fast/dom/HTMLElement/attr-dir-auto.html
fast/dom/HTMLElement/attr-dir-value-change.html

  • css/CSSStyleSelector.cpp:

(WebCore::leftToRightDeclaration):
(WebCore::rightToLeftDeclaration):
(WebCore::CSSStyleSelector::canShareStyleWithElement):
(WebCore::CSSStyleSelector::styleForElement):

  • dom/Node.h:

(WebCore::Node::selfOrAncestorHasDirAutoAttribute):
(WebCore::Node::setSelfOrAncestorHasDirAutoAttribute):

  • html/HTMLElement.cpp:

(WebCore::HTMLElement::mapToEntry):
(WebCore::HTMLElement::parseMappedAttribute):
(WebCore::setHasDirAutoFlagRecursively):
(WebCore::HTMLElement::childrenChanged):
(WebCore::HTMLElement::directionalityIfhasDirAutoAttribute):
(WebCore::HTMLElement::directionality):
(WebCore::HTMLElement::dirAttributeChanged):
(WebCore::HTMLElement::adjustDirectionalityIfNeededAfterChildAttributeChanged):
(WebCore::HTMLElement::calculateAndAdjustDirectionality):
(WebCore::HTMLElement::adjustDirectionalityIfNeededAfterChildrenChanged):

  • html/HTMLElement.h:

LayoutTests:

  • fast/dom/HTMLElement/attr-dir-auto-change-before-text-node.html: Added.
  • fast/dom/HTMLElement/attr-dir-auto-change-before-text-node-expected.txt: Added.
  • fast/dom/HTMLElement/attr-dir-auto-change-child-node-expected.txt: Added.
  • fast/dom/HTMLElement/attr-dir-auto-change-child-node.html: Added.
  • fast/dom/HTMLElement/attr-dir-auto-change-text-expected.txt: Added.
  • fast/dom/HTMLElement/attr-dir-auto-change-text.html: Added.
  • fast/dom/HTMLElement/attr-dir-auto-children-expected.txt: Added.
  • fast/dom/HTMLElement/attr-dir-auto-children.html: Added.
  • fast/dom/HTMLElement/attr-dir-auto-expected.txt: Added.
  • fast/dom/HTMLElement/attr-dir-auto-remove-add-children-expected.txt: Added.
  • fast/dom/HTMLElement/attr-dir-auto-remove-add-children.html: Added.
  • fast/dom/HTMLElement/attr-dir-auto.html: Added.
  • fast/dom/HTMLElement/attr-dir-value-change-expected.txt: Added.
  • fast/dom/HTMLElement/attr-dir-value-change.html: Added.
1:23 PM Changeset in webkit [79023] by andersca@apple.com
  • 3 edits in trunk/Source/WebKit2

2011-02-18 Anders Carlsson <andersca@apple.com>

Reviewed by Simon Fraser.

Fix assertion in SharedMemory::create when trying to snapshot 0x0 plug-in
https://bugs.webkit.org/show_bug.cgi?id=54768

  • PluginProcess/PluginControllerProxy.cpp: (WebKit::PluginControllerProxy::snapshot): Don't try to create a handle from a null ShareableBitmap.
  • WebProcess/Plugins/Netscape/NetscapePlugin.cpp: (WebKit::NetscapePlugin::snapshot): Check for a zero sized plug-in before trying to create a snapshot.
1:10 PM Changeset in webkit [79022] by ggaren@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

2011-02-18 Geoffrey Garen <ggaren@apple.com>

Reviewed by Sam Weinig.

Use hashing instead of linear search in the conservative pointer test
https://bugs.webkit.org/show_bug.cgi?id=54767


SunSpider reports no change.

  • runtime/MarkedSpace.h: (JSC::MarkedSpace::contains): Variable-sized objects will use more, smaller blocks, so it's important for the contains check not to be O(n) in the number of blocks.
1:05 PM Changeset in webkit [79021] by yael.aharon@nokia.com
  • 5 edits
    2 adds in trunk

Navigating downwards / upwards does not focus on the links spread across more than one line.
https://bugs.webkit.org/show_bug.cgi?id=54639

Reviewed by Antonio Gomes.

Source/WebCore:

When 2 anchor elements span more than one line each, and one ends on the same line that the
second starts on, the rects reported by their renderers are overlapping. When handling
2 overlapping nodes, check for this case, and don't assume that one of the nodes is on a higher layer.

Test: fast/spatial-navigation/snav-two-elements-one-line.html

  • page/FocusController.cpp:

(WebCore::updateFocusCandidateIfNeeded):
(WebCore::FocusController::findFocusCandidateInContainer):

  • page/SpatialNavigation.cpp:

(WebCore::areElementsOnSameLine):
(WebCore::distanceDataForNode):

  • page/SpatialNavigation.h:

LayoutTests:

  • fast/spatial-navigation/snav-two-elements-one-line-expected.txt: Added.
  • fast/spatial-navigation/snav-two-elements-one-line.html: Added.
12:55 PM Changeset in webkit [79020] by andersca@apple.com
  • 7 edits in trunk/Source/WebKit2

2011-02-18 Anders Carlsson <andersca@apple.com>

Reviewed by Simon Fraser.

WKView flashes when entering/exiting compositing mode
https://bugs.webkit.org/show_bug.cgi?id=54695
<rdar://problem/9011554>

  • UIProcess/API/mac/WKView.mm: (-[WKView _exitAcceleratedCompositingMode]): Remove the layer hosting view before clearing out its layer, otherwise we can get white flashes when exiting accelerated compositing mode.
  • WebProcess/WebPage/DrawingAreaImpl.cpp: When entering accelerated compositing mode, we want to defer sending the message until we've actually committed the layer tree and pushed all changes over to the UI process.

(WebKit::DrawingAreaImpl::layerHostDidFlushLayers):
Tell the layer tree host to force a repaint. This will ensure that all layer tree
changes are pushed over to the UI process. When that is done, send the new layer tree
context over to the UI process.

(WebKit::DrawingAreaImpl::setRootCompositingLayer):
When exiting compositing mode in response to a didSetSize, we want to exit accelerated
compositing mode right away to avoid flashes. This is safe since we've laid out the page
already so we won't end up reentering setRootCompositingLayer.

(WebKit::DrawingAreaImpl::enterAcceleratedCompositingMode):
Tell the layer tree host to notify us when the next layer tree flush happened, so we can
let the UI process know. If we're entering accelerated compositing mode in response to a
SetSize message, the new layer tree context will be passed in the DidSetSize message.

  • WebProcess/WebPage/DrawingAreaImpl.h: Add layerHostDidFlushLayers.
  • WebProcess/WebPage/LayerTreeHost.h: Add setShouldNotifyAfterNextScheduledLayerFlush.
  • WebProcess/WebPage/mac/LayerTreeHostMac.h: Add a m_notifyAfterScheduledLayerFlush flag.
  • WebProcess/WebPage/mac/LayerTreeHostMac.mm: (WebKit::LayerTreeHostMac::LayerTreeHostMac): Initialize m_notifyAfterScheduledLayerFlush to false.

(WebKit::LayerTreeHostMac::setShouldNotifyAfterNextScheduledLayerFlush):
Set m_notifyAfterScheduledLayerFlush to true.

(WebKit::LayerTreeHostMac::flushPendingLayerChangesRunLoopObserverCallback):
If m_notifyAfterScheduledLayerFlush is true, call DrawingAreaImpl::layerHostDidFlushLayers.

12:43 PM Changeset in webkit [79019] by atwilson@chromium.org
  • 2 edits
    566 deletes in trunk/LayoutTests

2011-02-18 Andrew Wilson <atwilson@chromium.org>

Unreviewed, rolling out r79007.
http://trac.webkit.org/changeset/79007

Rebaselines were put in the wrong directory due to bug 54691

  • platform/chromium-mac-snowleopard/compositing/reflections/deeply-nested-reflections-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/compositing/reflections/deeply-nested-reflections-expected.png: Removed.
  • platform/chromium-mac-snowleopard/css1/box_properties/clear_float-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/css1/box_properties/clear_float-expected.png: Removed.
  • platform/chromium-mac-snowleopard/css1/box_properties/float_elements_in_series-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/css1/box_properties/float_elements_in_series-expected.png: Removed.
  • platform/chromium-mac-snowleopard/css1/box_properties/float_on_text_elements-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/css1/box_properties/float_on_text_elements-expected.png: Removed.
  • platform/chromium-mac-snowleopard/css1/text_properties/text_align-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/css1/text_properties/text_align-expected.png: Removed.
  • platform/chromium-mac-snowleopard/css2.1/t0805-c5518-brdr-t-01-e-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/css2.1/t0805-c5518-brdr-t-01-e-expected.png: Removed.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltcont-00-d-g-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltcont-00-d-g-expected.png: Removed.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltwidth-00-c-g-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png: Removed.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-03-b-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-03-b-expected.png: Removed.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-04-b-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-04-b-expected.png: Removed.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-04-b-expected.txt: Removed.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-03-b-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-03-b-expected.png: Removed.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-04-b-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-04-b-expected.png: Removed.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-04-b-expected.txt: Removed.
  • platform/chromium-mac-snowleopard/css2.1/t1602-c43-center-00-d-ag-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/css2.1/t1602-c43-center-00-d-ag-expected.png: Removed.
  • platform/chromium-mac-snowleopard/css2.1/t1602-c546-txt-align-00-b-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/css2.1/t1602-c546-txt-align-00-b-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/deleting/delete-tab-003-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/deleting/delete-tab-003-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/deleting/delete-ws-fixup-001-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/deleting/delete-ws-fixup-001-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/inserting/insert-tab-003-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/inserting/insert-tab-003-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/inserting/typing-tab-designmode-forms-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/inserting/typing-tab-designmode-forms-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/pasteboard/4641033-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/pasteboard/4641033-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/pasteboard/block-wrappers-necessary-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/pasteboard/block-wrappers-necessary-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/pasteboard/nested-blocks-with-text-area-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/pasteboard/nested-blocks-with-text-area-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/pasteboard/nested-blocks-with-text-field-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/pasteboard/nested-blocks-with-text-field-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/pasteboard/paste-blockquote-2-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/pasteboard/paste-blockquote-2-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/pasteboard/pasting-tabs-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/pasteboard/pasting-tabs-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/3690703-2-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/3690703-2-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/3690703-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/3690703-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/3690719-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/3690719-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/4397952-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/4397952-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/4975120-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/4975120-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/5240265-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/5240265-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/caret-rtl-2-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/caret-rtl-2-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/caret-rtl-2-left-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/caret-rtl-2-left-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/caret-rtl-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/caret-rtl-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/caret-rtl-right-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/caret-rtl-right-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/extend-selection-bidi-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/extend-selection-bidi-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/move-past-trailing-space-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/replaced-boundaries-3-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/replaced-boundaries-3-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/select-from-textfield-outwards-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/selection/select-from-textfield-outwards-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/style/5046875-1-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/style/5046875-1-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/style/create-block-for-style-011-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/style/create-block-for-style-011-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/style/create-block-for-style-012-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/style/create-block-for-style-012-expected.png: Removed.
  • platform/chromium-mac-snowleopard/editing/style/table-selection-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/editing/style/table-selection-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/block/margin-collapse/103-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/block/margin-collapse/103-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/block/positioning/inline-block-relposition-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/block/positioning/inline-block-relposition-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/blockflow/Kusa-Makura-background-canvas-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/blockflow/Kusa-Makura-background-canvas-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/blockflow/border-vertical-lr-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/blockflow/border-vertical-lr-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/blockflow/border-vertical-lr-expected.txt: Removed.
  • platform/chromium-mac-snowleopard/fast/blockflow/japanese-lr-selection-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/blockflow/japanese-lr-selection-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/blockflow/japanese-lr-text-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/blockflow/japanese-lr-text-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/blockflow/japanese-rl-selection-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/blockflow/japanese-rl-selection-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/blockflow/japanese-rl-text-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/blockflow/japanese-rl-text-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/blockflow/japanese-ruby-vertical-lr-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/blockflow/japanese-ruby-vertical-lr-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/blockflow/japanese-ruby-vertical-rl-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/blockflow/japanese-ruby-vertical-rl-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/blockflow/vertical-align-table-baseline-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/blockflow/vertical-align-table-baseline-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/blockflow/vertical-baseline-alignment-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/blockflow/vertical-baseline-alignment-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/blockflow/vertical-font-fallback-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/blockflow/vertical-font-fallback-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/css/beforeSelectorOnCodeElement-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/css/beforeSelectorOnCodeElement-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/css/continuationCrash-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/css/continuationCrash-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/css/css2-system-fonts-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/css/css2-system-fonts-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/css/font-face-default-font-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/css/font-face-default-font-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/css/font-face-locally-installed-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/css/font-face-locally-installed-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/css/margin-top-bottom-dynamic-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/css/margin-top-bottom-dynamic-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/css/rtl-ordering-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/css/rtl-ordering-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/css/text-input-with-webkit-border-radius-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/css/text-input-with-webkit-border-radius-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/css/text-overflow-ellipsis-bidi-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/css/text-overflow-ellipsis-bidi-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/css/text-overflow-ellipsis-strict-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/css/text-overflow-ellipsis-strict-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/css/text-security-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/css/text-security-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/dom/52776-expected.txt: Removed.
  • platform/chromium-mac-snowleopard/fast/dom/HTMLInputElement/input-image-alt-text-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/dom/HTMLInputElement/input-image-alt-text-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/dom/HTMLTextAreaElement/reset-textarea-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/dom/HTMLTextAreaElement/reset-textarea-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/dynamic/008-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/dynamic/008-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/events/autoscroll-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/events/autoscroll-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/events/context-no-deselect-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/events/context-no-deselect-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label01-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label01-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label02-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label02-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label03-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label03-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label04-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label04-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/basic-buttons-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/basic-buttons-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/basic-selects-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/basic-selects-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/basic-selects-expected.txt: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/basic-textareas-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/basic-textareas-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/basic-textareas-quirks-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/basic-textareas-quirks-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/blankbuttons-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/blankbuttons-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/button-align-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/button-align-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/button-cannot-be-nested-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/button-cannot-be-nested-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/button-default-title-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/button-default-title-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/button-generated-content-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/button-generated-content-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/button-positioned-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/button-positioned-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/button-sizes-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/button-sizes-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/button-style-color-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/button-style-color-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/button-table-styles-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/button-table-styles-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/button-text-transform-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/button-text-transform-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/button-white-space-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/button-white-space-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/control-clip-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/control-clip-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/control-restrict-line-height-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/control-restrict-line-height-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/file-input-direction-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/file-input-direction-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/file-input-direction-expected.txt: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/formmove3-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/formmove3-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-align-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-align-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-bkcolor-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-bkcolor-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-default-bkcolor-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-default-bkcolor-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-disabled-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-disabled-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-focus-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-focus-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-preventDefault-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-preventDefault-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-readonly-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-readonly-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-selection-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-selection-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-visibility-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-visibility-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-width-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-width-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-button-sizes-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-button-sizes-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-disabled-color-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-disabled-color-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-double-click-selection-gap-bug-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-double-click-selection-gap-bug-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-field-text-truncated-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-field-text-truncated-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-file-re-render-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-file-re-render-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-first-letter-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-first-letter-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-readonly-autoscroll-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-readonly-autoscroll-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-readonly-dimmed-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-readonly-dimmed-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-spaces-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-spaces-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-table-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-table-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-text-double-click-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-text-double-click-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-text-drag-down-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-text-drag-down-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-text-scroll-left-on-blur-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-text-scroll-left-on-blur-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-text-word-wrap-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/input-text-word-wrap-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/menulist-no-overflow-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/menulist-no-overflow-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/menulist-option-wrap-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/menulist-option-wrap-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/menulist-restrict-line-height-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/menulist-restrict-line-height-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/menulist-style-color-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/menulist-style-color-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/menulist-width-change-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/menulist-width-change-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/option-strip-whitespace-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/option-strip-whitespace-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/option-text-clip-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/option-text-clip-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/placeholder-position-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/placeholder-position-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/placeholder-set-value-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/placeholder-set-value-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/plaintext-mode-2-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/plaintext-mode-2-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/search-cancel-button-style-sharing-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/search-cancel-button-style-sharing-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/search-rtl-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/search-rtl-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/search-transformed-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/search-transformed-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/search-zoomed-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/search-zoomed-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/select-align-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/select-align-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/select-baseline-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/select-baseline-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/select-change-listbox-to-popup-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/select-change-listbox-to-popup-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/select-disabled-appearance-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/select-disabled-appearance-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/select-initial-position-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/select-initial-position-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/select-selected-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/select-selected-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/select-visual-hebrew-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/select-visual-hebrew-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/stuff-on-my-optgroup-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/stuff-on-my-optgroup-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/tabbing-input-iframe-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/tabbing-input-iframe-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/targeted-frame-submission-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/targeted-frame-submission-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/text-control-intrinsic-widths-expected.txt: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/text-style-color-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/text-style-color-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/textarea-align-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/textarea-align-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/textarea-placeholder-set-value-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/textarea-placeholder-set-value-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/textarea-scroll-height-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/textarea-scroll-height-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/textarea-scrolled-type-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/textarea-scrolled-type-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/visual-hebrew-text-field-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/forms/visual-hebrew-text-field-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/html/keygen-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/html/keygen-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/inline/inline-box-background-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/inline/inline-box-background-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/inline/inline-box-background-long-image-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/inline/inline-box-background-long-image-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/inline/inline-box-background-repeat-x-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/inline/inline-box-background-repeat-x-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/inline/inline-box-background-repeat-y-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/inline/inline-box-background-repeat-y-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/lists/dynamic-marker-crash-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/lists/dynamic-marker-crash-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/multicol/float-avoidance-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/multicol/float-avoidance-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/multicol/shadow-breaking-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/multicol/shadow-breaking-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/parser/document-write-option-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/parser/document-write-option-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/parser/entity-comment-in-textarea-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/parser/entity-comment-in-textarea-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/parser/open-comment-in-textarea-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/parser/open-comment-in-textarea-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/japanese-rl-selection-clear-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/japanese-rl-selection-clear-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/japanese-rl-selection-repaint-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/japanese-rl-selection-repaint-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-1-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-1-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-10-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-10-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-2-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-2-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-3-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-3-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-4-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-4-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-5-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-5-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-6-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-6-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-7-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-7-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-8-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-8-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-9-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-9-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/repaint-across-writing-mode-boundary-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/repaint-across-writing-mode-boundary-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-horizontal-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-horizontal-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-strict-horizontal-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-strict-horizontal-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-strict-vertical-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-strict-vertical-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-vertical-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-vertical-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/replaced/width100percent-button-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/replaced/width100percent-button-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/replaced/width100percent-searchfield-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/replaced/width100percent-searchfield-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/replaced/width100percent-textarea-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/replaced/width100percent-textarea-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/replaced/width100percent-textfield-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/replaced/width100percent-textfield-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/selectors/064-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/selectors/064-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/speech/input-appearance-speechbutton-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/speech/input-appearance-speechbutton-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/speech/input-appearance-speechbutton-expected.txt: Removed.
  • platform/chromium-mac-snowleopard/fast/table/append-cells2-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/table/append-cells2-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/table/border-collapsing/004-vertical-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/table/border-collapsing/004-vertical-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/table/frame-and-rules-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/table/frame-and-rules-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/table/remove-td-display-none-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/table/remove-td-display-none-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/atsui-partial-selection-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/atsui-partial-selection-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/backslash-to-yen-sign-euc-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/backslash-to-yen-sign-euc-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/bidi-embedding-pop-and-push-same-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/bidi-embedding-pop-and-push-same-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/capitalize-boundaries-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/capitalize-boundaries-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/in-rendered-text-rtl-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/in-rendered-text-rtl-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-AN-after-L-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-AN-after-L-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-AN-after-L-expected.txt: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-L2-run-reordering-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-L2-run-reordering-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-CSS-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-CSS-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-HTML-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-HTML-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-formatting-characters-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-formatting-characters-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-control-chars-treated-as-ZWS-expected.txt: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-european-terminators-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-european-terminators-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-ignored-for-first-child-inline-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-ignored-for-first-child-inline-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-innertext-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-innertext-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-layout-across-linebreak-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-layout-across-linebreak-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-linebreak-001-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-linebreak-001-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-linebreak-002-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-linebreak-002-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-linebreak-003-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-linebreak-003-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-listbox-atsui-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-listbox-atsui-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-listbox-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-listbox-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-mirror-he-ar-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-mirror-he-ar-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-mirror-he-ar-expected.txt: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-neutral-run-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-neutral-run-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-neutral-run-expected.txt: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-override-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-override-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/hebrew-vowels-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/hebrew-vowels-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/hindi-spacing-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/hindi-spacing-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/pop-up-button-text-alignment-and-direction-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/pop-up-button-text-alignment-and-direction-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/pop-up-button-text-alignment-and-direction-expected.txt: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/rtl-caret-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/rtl-caret-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/rtl-white-space-pre-wrap-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/rtl-white-space-pre-wrap-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/text-combine-image-test-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/text-combine-image-test-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/international/text-combine-image-test-expected.txt: Removed.
  • platform/chromium-mac-snowleopard/fast/text/justified-selection-at-edge-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/justified-selection-at-edge-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/justify-ideograph-simple-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/justify-ideograph-simple-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/justify-ideograph-vertical-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/justify-ideograph-vertical-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/justify-nbsp-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/justify-nbsp-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/line-breaks-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/line-breaks-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fast/text/trailing-white-space-2-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/trailing-white-space-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/word-break-run-rounding-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fast/text/word-break-run-rounding-expected.png: Removed.
  • platform/chromium-mac-snowleopard/fonts/sans-serif-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/fonts/sans-serif-expected.png: Removed.
  • platform/chromium-mac-snowleopard/svg/custom/animate-path-discrete-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/svg/custom/animate-path-discrete-expected.png: Removed.
  • platform/chromium-mac-snowleopard/svg/custom/inline-svg-in-xhtml-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/svg/custom/inline-svg-in-xhtml-expected.png: Removed.
  • platform/chromium-mac-snowleopard/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.png: Removed.
  • platform/chromium-mac-snowleopard/svg/custom/svg-fonts-in-html-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/svg/custom/svg-fonts-in-html-expected.png: Removed.
  • platform/chromium-mac-snowleopard/svg/custom/text-dom-01-f-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/svg/custom/text-dom-01-f-expected.png: Removed.
  • platform/chromium-mac-snowleopard/svg/hixie/mixed/003-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/svg/hixie/mixed/003-expected.png: Removed.
  • platform/chromium-mac-snowleopard/svg/zoom/page/zoom-hixie-mixed-008-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug113424-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug113424-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1188-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1188-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1318-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1318-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug138725-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug138725-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug14323-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug14323-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug18359-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug18359-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2479-2-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2479-2-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2479-3-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2479-3-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug26178-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug26178-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug28928-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug28928-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2962-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2962-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug30692-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug30692-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug33855-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug33855-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug39209-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug39209-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4429-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4429-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug44505-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug44505-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4527-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4527-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug46368-1-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug46368-1-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug46368-2-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug46368-2-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug51037-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug51037-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug51727-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug51727-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug52505-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug52505-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug52506-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug52506-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug60749-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug60749-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug67915-1-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug67915-1-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug68912-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug68912-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug7342-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug7342-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug88035-1-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug88035-1-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug88035-2-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug88035-2-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug96334-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug96334-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/collapsing_borders/bug41262-4-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/collapsing_borders/bug41262-4-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/core/bloomberg-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/core/bloomberg-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/core/misc-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/core/misc-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/dom/tableDom-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/dom/tableDom-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_tbody_align_justify-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_tbody_align_justify-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_td_align_justify-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_td_align_justify-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_tfoot_align_justify-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_tfoot_align_justify-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_th_align_justify-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_th_align_justify-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_thead_align_justify-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_thead_align_justify-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_tr_align_justify-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_tr_align_justify-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/other/move_row-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla/other/move_row-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug1725-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug1725-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug2479-5-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug58402-2-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug58402-2-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.png: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.checksum: Removed.
  • platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.png: Removed.
  • platform/chromium/test_expectations.txt:
12:26 PM Changeset in webkit [79018] by Martin Robinson
  • 2 edits
    202 adds in trunk/LayoutTests

2011-02-18 Martin Robinson <mrobinson@igalia.com>

Unskip the final set of tests on GTK+ that are missing results.

  • platform/gtk/Skipped: Unskip tests that now have results.
12:07 PM Changeset in webkit [79017] by ggaren@apple.com
  • 6 edits in trunk/Source/JavaScriptCore

2011-02-18 Geoffrey Garen <ggaren@apple.com>

Reviewed by Sam Weinig.

Tightened some usage accounting code in MarkedSpace
https://bugs.webkit.org/show_bug.cgi?id=54761


SunSpider reports no change.

  • runtime/Heap.cpp: (JSC::Heap::Heap): Initialize the marked space high water mark on construction, instead of relying on some implicit subtleties to make not initializing it work out OK.
  • runtime/Heap.h: Fixed up includes.
  • runtime/MarkedBlock.h: Made firstAtom() static so clients can call it even without having allocated a block.
  • runtime/MarkedSpace.cpp: (JSC::MarkedSpace::MarkedSpace): Don't pre-allocate a block, since this would be prohibitively expensive with multiple size classes.

(JSC::MarkedSpace::allocateBlock):
(JSC::MarkedSpace::freeBlock): Track allocated blocks in a hash set,
since linear search in the contains check will be prohibitively
expensive once we're using lots of smaller blocks.

(JSC::MarkedSpace::allocate): Don't assume that we always have a block
allocated, since we don't anymore. (See above.)

(JSC::MarkedSpace::reset):

  • runtime/MarkedSpace.h: Updated for changes mentioned above.
11:58 AM Changeset in webkit [79016] by Martin Robinson
  • 2 edits
    221 adds in trunk/LayoutTests

2011-02-18 Martin Robinson <mrobinson@igalia.com>

Import the final set of GTK+ baselines for the Mozilla table test suite.

  • platform/gtk/Skipped: Unskip tests which now have results.
11:53 AM Changeset in webkit [79015] by Martin Robinson
  • 2 edits
    304 adds in trunk/LayoutTests

2011-02-18 Martin Robinson <mrobinson@igalia.com>

Import another set of GTK+ baselines for the Mozilla table tests.

  • platform/gtk/Skipped: Unskip tests which now have results.
11:43 AM Changeset in webkit [79014] by Martin Robinson
  • 2 edits
    300 adds in trunk/LayoutTests

2011-02-18 Martin Robinson <mrobinson@igalia.com>

Continue importing GTK+ results for Mozilla table tests.

  • platform/gtk/Skipped: Unskip test which now have results.
11:20 AM Changeset in webkit [79013] by jberlin@webkit.org
  • 2 edits in trunk/LayoutTests

(new) media/video-controls-in-media-documents.html needs baselines for win & mac
https://bugs.webkit.org/show_bug.cgi?id=54757

Unreviewed, adding to the skip list for now until someone can generate the expected results.

  • platform/win/Skipped:
11:10 AM Changeset in webkit [79012] by apavlov@chromium.org
  • 2 edits in trunk/LayoutTests

2011-02-18 Alexander Pavlov <apavlov@chromium.org>

[Qt] Unreviewed, skip failing inspector/styles/styles-update-from-js.html.

  • platform/qt/Skipped:
10:42 AM Changeset in webkit [79011] by kbr@google.com
  • 24 edits
    7 adds in trunk/Source

2011-02-18 Ben Vanik <benvanik@google.com>

Reviewed by Kenneth Russell.

Bug 53940: Implement the OES_vertex_array_object WebGL extension
https://bugs.webkit.org/show_bug.cgi?id=53940

Stubbed out methods for the new OES_vertex_array_object methods.

  • src/Extensions3DChromium.cpp: (WebCore::Extensions3DChromium::createVertexArrayOES): (WebCore::Extensions3DChromium::deleteVertexArrayOES): (WebCore::Extensions3DChromium::isVertexArrayOES): (WebCore::Extensions3DChromium::bindVertexArrayOES):

2011-02-18 Ben Vanik <benvanik@google.com>

Reviewed by Kenneth Russell.

Bug 53940: Implement the OES_vertex_array_object WebGL extension
https://bugs.webkit.org/show_bug.cgi?id=53940

Initial implementation of the OES_vertex_array_object extension adding the OESVertexArrayObject
extension container and WebGLVertexArrayObjectOES VAO object. The extension is plumbed through
the Extensions3D interface and implemented in the Extensions3DOpenGL (WebKit/OSX) version when
it is available.
Two big changes touching code outside of the extension files:

  • Moved the typedefs at the top of GraphicsContext3D.h to GraphicsTypes3D.h (modeled after GraphicsTypes.h). They are not namespaced as they weren't before.
  • To make the code cleaner/clearer all vertex attribute state has been moved to the WebGLVertexArrayObjectOES type (struct VertexAttribState) except for values which are still on the WebGLRenderingContext. A default VAO is now used to store the existing attribute states for when no other VAO is used. Code in WebGLRenderingContext dealing with buffers and vertex attributes now defers to or stores values in the bound array object.

Tested against the WebGL conformance suite and the new
oes-vertex-array-object test:
https://cvs.khronos.org/svn/repos/registry/trunk/public/webgl/sdk/tests/conformance/oes-vertex-array-object.html

  • CMakeLists.txt:
  • CodeGenerators.pri:
  • DerivedSources.make:
  • GNUmakefile.am:
  • WebCore.gyp: Modified property svn:ignore.
  • WebCore.gypi:
  • WebCore.pro:
  • WebCore.xcodeproj/project.pbxproj:
  • bindings/js/JSWebGLRenderingContextCustom.cpp: (WebCore::toJS):
  • bindings/v8/custom/V8WebGLRenderingContextCustom.cpp: (WebCore::toV8Object):
  • html/canvas/OESVertexArrayObject.cpp: Added. (WebCore::OESVertexArrayObject::OESVertexArrayObject): (WebCore::OESVertexArrayObject::~OESVertexArrayObject): (WebCore::OESVertexArrayObject::getName): (WebCore::OESVertexArrayObject::create): (WebCore::OESVertexArrayObject::createVertexArrayOES): (WebCore::OESVertexArrayObject::deleteVertexArrayOES): (WebCore::OESVertexArrayObject::isVertexArrayOES): (WebCore::OESVertexArrayObject::bindVertexArrayOES):
  • html/canvas/OESVertexArrayObject.h: Added.
  • html/canvas/OESVertexArrayObject.idl: Added.
  • html/canvas/WebGLExtension.h:
  • html/canvas/WebGLGetInfo.cpp: (WebCore::WebGLGetInfo::WebGLGetInfo): (WebCore::WebGLGetInfo::getWebGLVertexArrayObjectOES):
  • html/canvas/WebGLGetInfo.h:
  • html/canvas/WebGLRenderingContext.cpp: (WebCore::WebGLRenderingContext::initializeNewContext): (WebCore::WebGLRenderingContext::bindBuffer): (WebCore::WebGLRenderingContext::deleteBuffer): (WebCore::WebGLRenderingContext::disableVertexAttribArray): (WebCore::WebGLRenderingContext::validateElementArraySize): (WebCore::WebGLRenderingContext::validateIndexArrayConservative): (WebCore::WebGLRenderingContext::validateIndexArrayPrecise): (WebCore::WebGLRenderingContext::validateRenderingState): (WebCore::WebGLRenderingContext::drawElements): (WebCore::WebGLRenderingContext::enableVertexAttribArray): (WebCore::WebGLRenderingContext::getExtension): (WebCore::WebGLRenderingContext::getParameter): (WebCore::WebGLRenderingContext::getSupportedExtensions): (WebCore::WebGLRenderingContext::getVertexAttrib): (WebCore::WebGLRenderingContext::vertexAttribPointer): (WebCore::WebGLRenderingContext::validateBufferDataParameters): (WebCore::WebGLRenderingContext::vertexAttribfImpl): (WebCore::WebGLRenderingContext::vertexAttribfvImpl): (WebCore::WebGLRenderingContext::initVertexAttrib0): (WebCore::WebGLRenderingContext::simulateVertexAttrib0): (WebCore::WebGLRenderingContext::restoreStatesAfterVertexAttrib0Simulation): (WebCore::WebGLRenderingContext::getNumberOfExtensions): (WebCore::WebGLRenderingContext::getExtensionNumber):
  • html/canvas/WebGLRenderingContext.h: (WebCore::WebGLRenderingContext::getMaxVertexAttribs): (WebCore::WebGLRenderingContext::setBoundVertexArrayObject): (WebCore::WebGLRenderingContext::VertexAttribValue::VertexAttribValue):
  • html/canvas/WebGLVertexArrayObjectOES.cpp: Added. (WebCore::WebGLVertexArrayObjectOES::create): (WebCore::WebGLVertexArrayObjectOES::WebGLVertexArrayObjectOES): (WebCore::WebGLVertexArrayObjectOES::deleteObjectImpl):
  • html/canvas/WebGLVertexArrayObjectOES.h: Added. (WebCore::WebGLVertexArrayObjectOES::~WebGLVertexArrayObjectOES): (WebCore::WebGLVertexArrayObjectOES::VertexAttribState::VertexAttribState): (WebCore::WebGLVertexArrayObjectOES::isDefaultObject): (WebCore::WebGLVertexArrayObjectOES::hasEverBeenBound): (WebCore::WebGLVertexArrayObjectOES::setHasEverBeenBound): (WebCore::WebGLVertexArrayObjectOES::getElementArrayBuffer): (WebCore::WebGLVertexArrayObjectOES::setElementArrayBuffer): (WebCore::WebGLVertexArrayObjectOES::getVertexAttribState): (WebCore::WebGLVertexArrayObjectOES::isVertexArray):
  • html/canvas/WebGLVertexArrayObjectOES.idl: Added.
  • platform/graphics/Extensions3D.h:
  • platform/graphics/GraphicsContext3D.h:
  • platform/graphics/GraphicsTypes3D.h: Added.
  • platform/graphics/chromium/Extensions3DChromium.h:
  • platform/graphics/opengl/Extensions3DOpenGL.cpp: (WebCore::Extensions3DOpenGL::supports): (WebCore::Extensions3DOpenGL::createVertexArrayOES): (WebCore::Extensions3DOpenGL::deleteVertexArrayOES): (WebCore::Extensions3DOpenGL::isVertexArrayOES): (WebCore::Extensions3DOpenGL::bindVertexArrayOES):
  • platform/graphics/opengl/Extensions3DOpenGL.h:
  • platform/graphics/qt/Extensions3DQt.cpp: (WebCore::Extensions3DQt::createVertexArrayOES): (WebCore::Extensions3DQt::deleteVertexArrayOES): (WebCore::Extensions3DQt::isVertexArrayOES): (WebCore::Extensions3DQt::bindVertexArrayOES):
  • platform/graphics/qt/Extensions3DQt.h:
10:23 AM Changeset in webkit [79010] by jberlin@webkit.org
  • 2 edits in trunk/LayoutTests

[Windows 7 Release Tests] ~26 tests failing after r78846
https://bugs.webkit.org/show_bug.cgi?id=54748

Unreviewed. Missed the contents of one of the expected result files.

  • platform/win/fast/text/backslash-to-yen-sign-euc-expected.txt:
10:13 AM Changeset in webkit [79009] by apavlov@chromium.org
  • 11 edits
    2 adds in trunk

2011-02-17 Alexander Pavlov <apavlov@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: reflect changes to styles when they happen outside inspector.
https://bugs.webkit.org/show_bug.cgi?id=44620

Notify InspectorInstrumentation of inline style changes from CSSMutableStyleDeclaration
whenever the style change does not come from a direct "style" attribute modification.
The performance regression occurs only with the Web Inspector opened, when inline styles
are modified through setting style.cssText or style.<styleAttribute>: according to the Web Inspector protocol,
an attribute change requires that all attributes for the node in question be pushed into the frontend.

Test: inspector/styles/styles-update-from-js.html

WebCore:

  • css/CSSMutableStyleDeclaration.cpp: (WebCore::CSSMutableStyleDeclaration::setNeedsStyleRecalc):
  • inspector/InspectorDOMAgent.cpp: (WebCore::RevalidateStyleAttributeTask::reset): (WebCore::RevalidateStyleAttributeTask::RevalidateStyleAttributeTask): (WebCore::RevalidateStyleAttributeTask::scheduleFor): (WebCore::RevalidateStyleAttributeTask::onTimer): (WebCore::InspectorDOMAgent::reset): (WebCore::InspectorDOMAgent::didInvalidateStyleAttr):
  • inspector/InspectorDOMAgent.h:
  • inspector/InspectorInstrumentation.cpp: (WebCore::InspectorInstrumentation::didInvalidateStyleAttrImpl):
  • inspector/InspectorInstrumentation.h: (WebCore::InspectorInstrumentation::didInvalidateStyleAttr):
  • inspector/InspectorStyleSheet.cpp: (WebCore::InspectorStyleSheetForInlineStyle::didModifyElementAttribute): (WebCore::InspectorStyleSheetForInlineStyle::ensureParsedDataReady): (WebCore::InspectorStyleSheetForInlineStyle::elementStyleText):
  • inspector/InspectorStyleSheet.h:
  • inspector/front-end/ElementsPanel.js: (WebInspector.ElementsPanel.prototype._attributesUpdated):
  • inspector/front-end/StylesSidebarPane.js: (WebInspector.StylesSidebarPane.prototype._rebuildSectionsForStyleRules): (WebInspector.StylesSidebarPane.prototype.addBlankSection): (WebInspector.StylePropertiesSection.prototype.onpopulate): (WebInspector.StylePropertiesSection.prototype.addNewBlankProperty): (WebInspector.ComputedStylePropertiesSection.prototype.onpopulate): (WebInspector.BlankStylePropertiesSection): (WebInspector.StylePropertyTreeElement): (WebInspector.StylePropertyTreeElement.prototype): (WebInspector.StylePropertyTreeElement.prototype.element.userInput.previousContent.context.moveDirection):

LayoutTests:

  • inspector/styles/styles-update-from-js-expected.txt: Added.
  • inspector/styles/styles-update-from-js.html: Added.
10:01 AM Changeset in webkit [79008] by ap@apple.com
  • 2 edits in trunk/Source/WebKit2

Reviewed by Adele Peterson.

REGRESSION (WebKit2): Wrong frame printed on tivofaq.com
https://bugs.webkit.org/show_bug.cgi?id=54677
<rdar://problem/8994133>

  • WebProcess/WebCoreSupport/WebChromeClient.cpp: (WebKit::area): Use visible frame bounds. (WebKit::findLargestFrameInFrameSet): Added a comment explaining what we're up to here. WebKit2 shouldn't be making policy decisions for the client, but it gets dangerously close to that. We used to expose the same as WK1 API though.
9:46 AM Changeset in webkit [79007] by atwilson@chromium.org
  • 2 edits
    614 adds in trunk/LayoutTests

Unreviewed expectations changes for Chromium.

  • platform/chromium-mac-snowleopard/compositing/reflections/deeply-nested-reflections-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/compositing/reflections/deeply-nested-reflections-expected.png: Added.
  • platform/chromium-mac-snowleopard/css1/box_properties/clear_float-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/css1/box_properties/clear_float-expected.png: Added.
  • platform/chromium-mac-snowleopard/css1/box_properties/float_elements_in_series-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/css1/box_properties/float_elements_in_series-expected.png: Added.
  • platform/chromium-mac-snowleopard/css1/box_properties/float_on_text_elements-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/css1/box_properties/float_on_text_elements-expected.png: Added.
  • platform/chromium-mac-snowleopard/css1/text_properties/text_align-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/css1/text_properties/text_align-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t0805-c5518-brdr-t-01-e-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/css2.1/t0805-c5518-brdr-t-01-e-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltcont-00-d-g-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltcont-00-d-g-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltwidth-00-c-g-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-03-b-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-03-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-04-b-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-04-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counter-04-b-expected.txt: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-03-b-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-03-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-04-b-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-04-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1202-counters-04-b-expected.txt: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1602-c43-center-00-d-ag-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1602-c43-center-00-d-ag-expected.png: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1602-c546-txt-align-00-b-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/css2.1/t1602-c546-txt-align-00-b-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/deleting/delete-tab-003-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/deleting/delete-tab-003-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/deleting/delete-ws-fixup-001-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/deleting/delete-ws-fixup-001-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/inserting/insert-tab-003-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/inserting/insert-tab-003-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/inserting/typing-tab-designmode-forms-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/inserting/typing-tab-designmode-forms-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/pasteboard/4641033-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/pasteboard/4641033-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/pasteboard/block-wrappers-necessary-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/pasteboard/block-wrappers-necessary-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/pasteboard/nested-blocks-with-text-area-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/pasteboard/nested-blocks-with-text-area-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/pasteboard/nested-blocks-with-text-field-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/pasteboard/nested-blocks-with-text-field-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/pasteboard/paste-blockquote-2-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/pasteboard/paste-blockquote-2-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/pasteboard/pasting-tabs-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/pasteboard/pasting-tabs-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/selection/3690703-2-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/selection/3690703-2-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/selection/3690703-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/selection/3690703-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/selection/3690719-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/selection/3690719-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/selection/4397952-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/selection/4397952-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/selection/4975120-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/selection/4975120-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/selection/5240265-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/selection/5240265-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/selection/caret-rtl-2-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/selection/caret-rtl-2-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/selection/caret-rtl-2-left-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/selection/caret-rtl-2-left-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/selection/caret-rtl-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/selection/caret-rtl-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/selection/caret-rtl-right-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/selection/caret-rtl-right-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/selection/extend-selection-bidi-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/selection/extend-selection-bidi-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/selection/move-past-trailing-space-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/selection/replaced-boundaries-3-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/selection/replaced-boundaries-3-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/selection/select-from-textfield-outwards-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/selection/select-from-textfield-outwards-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/style/5046875-1-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/style/5046875-1-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/style/create-block-for-style-011-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/style/create-block-for-style-011-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/style/create-block-for-style-012-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/style/create-block-for-style-012-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/style/table-selection-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/editing/style/table-selection-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/block/margin-collapse/103-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/block/margin-collapse/103-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/block/positioning/inline-block-relposition-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/block/positioning/inline-block-relposition-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/blockflow/Kusa-Makura-background-canvas-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/blockflow/Kusa-Makura-background-canvas-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/blockflow/border-vertical-lr-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/blockflow/border-vertical-lr-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/blockflow/border-vertical-lr-expected.txt: Added.
  • platform/chromium-mac-snowleopard/fast/blockflow/japanese-lr-selection-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/blockflow/japanese-lr-selection-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/blockflow/japanese-lr-text-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/blockflow/japanese-lr-text-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/blockflow/japanese-rl-selection-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/blockflow/japanese-rl-selection-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/blockflow/japanese-rl-text-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/blockflow/japanese-rl-text-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/blockflow/japanese-ruby-vertical-lr-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/blockflow/japanese-ruby-vertical-lr-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/blockflow/japanese-ruby-vertical-rl-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/blockflow/japanese-ruby-vertical-rl-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/blockflow/vertical-align-table-baseline-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/blockflow/vertical-align-table-baseline-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/blockflow/vertical-baseline-alignment-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/blockflow/vertical-baseline-alignment-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/blockflow/vertical-font-fallback-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/blockflow/vertical-font-fallback-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/css/beforeSelectorOnCodeElement-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/css/beforeSelectorOnCodeElement-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/css/continuationCrash-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/css/continuationCrash-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/css/css2-system-fonts-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/css/css2-system-fonts-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/css/font-face-default-font-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/css/font-face-default-font-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/css/font-face-locally-installed-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/css/font-face-locally-installed-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/css/margin-top-bottom-dynamic-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/css/margin-top-bottom-dynamic-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/css/rtl-ordering-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/css/rtl-ordering-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/css/text-input-with-webkit-border-radius-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/css/text-input-with-webkit-border-radius-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/css/text-overflow-ellipsis-bidi-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/css/text-overflow-ellipsis-bidi-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/css/text-overflow-ellipsis-strict-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/css/text-overflow-ellipsis-strict-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/css/text-security-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/css/text-security-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/dom/52776-expected.txt: Added.
  • platform/chromium-mac-snowleopard/fast/dom/HTMLInputElement/input-image-alt-text-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/dom/HTMLInputElement/input-image-alt-text-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/dom/HTMLTextAreaElement/reset-textarea-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/dom/HTMLTextAreaElement/reset-textarea-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/dynamic/008-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/dynamic/008-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/events/autoscroll-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/events/autoscroll-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/events/context-no-deselect-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/events/context-no-deselect-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label01-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label01-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label02-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label02-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label03-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label03-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label04-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label04-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/basic-buttons-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/basic-buttons-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/basic-selects-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/basic-selects-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/basic-selects-expected.txt: Added.
  • platform/chromium-mac-snowleopard/fast/forms/basic-textareas-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/basic-textareas-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/basic-textareas-quirks-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/basic-textareas-quirks-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/blankbuttons-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/blankbuttons-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/button-align-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/button-align-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/button-cannot-be-nested-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/button-cannot-be-nested-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/button-default-title-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/button-default-title-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/button-generated-content-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/button-generated-content-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/button-positioned-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/button-positioned-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/button-sizes-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/button-sizes-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/button-style-color-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/button-style-color-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/button-table-styles-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/button-table-styles-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/button-text-transform-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/button-text-transform-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/button-white-space-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/button-white-space-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/control-clip-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/control-clip-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/control-restrict-line-height-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/control-restrict-line-height-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/file-input-direction-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/file-input-direction-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/file-input-direction-expected.txt: Added.
  • platform/chromium-mac-snowleopard/fast/forms/formmove3-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/formmove3-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-align-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-align-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-bkcolor-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-bkcolor-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-default-bkcolor-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-default-bkcolor-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-disabled-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-disabled-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-focus-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-focus-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-preventDefault-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-preventDefault-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-readonly-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-readonly-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-selection-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-selection-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-visibility-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-visibility-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-width-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-appearance-width-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-button-sizes-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-button-sizes-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-disabled-color-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-disabled-color-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-double-click-selection-gap-bug-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-double-click-selection-gap-bug-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-field-text-truncated-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-field-text-truncated-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-file-re-render-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-file-re-render-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-first-letter-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-first-letter-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-readonly-autoscroll-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-readonly-autoscroll-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-readonly-dimmed-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-readonly-dimmed-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-spaces-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-spaces-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-table-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-table-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-text-double-click-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-text-double-click-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-text-drag-down-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-text-drag-down-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-text-scroll-left-on-blur-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-text-scroll-left-on-blur-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-text-word-wrap-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/input-text-word-wrap-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/menulist-no-overflow-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/menulist-no-overflow-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/menulist-option-wrap-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/menulist-option-wrap-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/menulist-restrict-line-height-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/menulist-restrict-line-height-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/menulist-style-color-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/menulist-style-color-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/menulist-width-change-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/menulist-width-change-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/option-strip-whitespace-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/option-strip-whitespace-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/option-text-clip-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/option-text-clip-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/placeholder-position-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/placeholder-position-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/placeholder-set-value-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/placeholder-set-value-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/plaintext-mode-2-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/plaintext-mode-2-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/search-cancel-button-style-sharing-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/search-cancel-button-style-sharing-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/search-rtl-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/search-rtl-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/search-transformed-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/search-transformed-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/search-zoomed-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/search-zoomed-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/select-align-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/select-align-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/select-baseline-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/select-baseline-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/select-change-listbox-to-popup-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/select-change-listbox-to-popup-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/select-disabled-appearance-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/select-disabled-appearance-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/select-initial-position-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/select-initial-position-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/select-selected-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/select-selected-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/select-visual-hebrew-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/select-visual-hebrew-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/stuff-on-my-optgroup-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/stuff-on-my-optgroup-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/tabbing-input-iframe-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/tabbing-input-iframe-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/targeted-frame-submission-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/targeted-frame-submission-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/text-control-intrinsic-widths-expected.txt: Added.
  • platform/chromium-mac-snowleopard/fast/forms/text-style-color-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/text-style-color-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/textarea-align-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/textarea-align-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/textarea-placeholder-set-value-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/textarea-placeholder-set-value-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/textarea-scroll-height-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/textarea-scroll-height-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/textarea-scrolled-type-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/textarea-scrolled-type-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/forms/visual-hebrew-text-field-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/forms/visual-hebrew-text-field-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/html/keygen-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/html/keygen-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/inline/inline-box-background-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/inline/inline-box-background-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/inline/inline-box-background-long-image-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/inline/inline-box-background-long-image-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/inline/inline-box-background-repeat-x-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/inline/inline-box-background-repeat-x-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/inline/inline-box-background-repeat-y-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/inline/inline-box-background-repeat-y-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/lists/dynamic-marker-crash-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/lists/dynamic-marker-crash-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/multicol/float-avoidance-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/multicol/float-avoidance-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/multicol/shadow-breaking-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/multicol/shadow-breaking-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/parser/document-write-option-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/parser/document-write-option-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/parser/entity-comment-in-textarea-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/parser/entity-comment-in-textarea-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/parser/open-comment-in-textarea-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/parser/open-comment-in-textarea-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/japanese-rl-selection-clear-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/japanese-rl-selection-clear-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/japanese-rl-selection-repaint-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/japanese-rl-selection-repaint-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-1-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-1-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-10-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-10-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-2-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-2-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-3-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-3-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-4-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-4-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-5-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-5-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-6-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-6-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-7-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-7-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-8-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-8-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-9-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-9-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/repaint-across-writing-mode-boundary-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/repaint-across-writing-mode-boundary-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-horizontal-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-horizontal-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-strict-horizontal-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-strict-horizontal-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-strict-vertical-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-strict-vertical-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-vertical-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-vertical-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/replaced/width100percent-button-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/replaced/width100percent-button-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/replaced/width100percent-searchfield-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/replaced/width100percent-searchfield-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/replaced/width100percent-textarea-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/replaced/width100percent-textarea-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/replaced/width100percent-textfield-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/replaced/width100percent-textfield-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/selectors/064-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/selectors/064-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/speech/input-appearance-speechbutton-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/speech/input-appearance-speechbutton-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/speech/input-appearance-speechbutton-expected.txt: Added.
  • platform/chromium-mac-snowleopard/fast/table/append-cells2-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/table/append-cells2-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/table/border-collapsing/004-vertical-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/table/border-collapsing/004-vertical-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/table/frame-and-rules-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/table/frame-and-rules-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/table/remove-td-display-none-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/table/remove-td-display-none-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/atsui-partial-selection-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/atsui-partial-selection-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/backslash-to-yen-sign-euc-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/backslash-to-yen-sign-euc-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/bidi-embedding-pop-and-push-same-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/bidi-embedding-pop-and-push-same-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/capitalize-boundaries-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/capitalize-boundaries-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/in-rendered-text-rtl-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/in-rendered-text-rtl-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-AN-after-L-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-AN-after-L-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-AN-after-L-expected.txt: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-L2-run-reordering-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-L2-run-reordering-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-CSS-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-CSS-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-HTML-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-HTML-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-formatting-characters-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-formatting-characters-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-control-chars-treated-as-ZWS-expected.txt: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-european-terminators-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-european-terminators-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-ignored-for-first-child-inline-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-ignored-for-first-child-inline-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-innertext-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-innertext-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-layout-across-linebreak-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-layout-across-linebreak-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-linebreak-001-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-linebreak-001-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-linebreak-002-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-linebreak-002-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-linebreak-003-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-linebreak-003-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-listbox-atsui-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-listbox-atsui-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-listbox-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-listbox-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-mirror-he-ar-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-mirror-he-ar-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-mirror-he-ar-expected.txt: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-neutral-run-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-neutral-run-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-neutral-run-expected.txt: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-override-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/bidi-override-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/hebrew-vowels-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/hebrew-vowels-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/hindi-spacing-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/hindi-spacing-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/pop-up-button-text-alignment-and-direction-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/pop-up-button-text-alignment-and-direction-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/pop-up-button-text-alignment-and-direction-expected.txt: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/rtl-caret-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/rtl-caret-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/rtl-white-space-pre-wrap-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/rtl-white-space-pre-wrap-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/text-combine-image-test-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/text-combine-image-test-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/international/text-combine-image-test-expected.txt: Added.
  • platform/chromium-mac-snowleopard/fast/text/justified-selection-at-edge-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/justified-selection-at-edge-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/justify-ideograph-simple-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/justify-ideograph-simple-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/justify-ideograph-vertical-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/justify-ideograph-vertical-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/justify-nbsp-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/justify-nbsp-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/line-breaks-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/line-breaks-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/trailing-white-space-2-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/trailing-white-space-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/word-break-run-rounding-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/word-break-run-rounding-expected.png: Added.
  • platform/chromium-mac-snowleopard/fonts/sans-serif-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fonts/sans-serif-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/custom/animate-path-discrete-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/svg/custom/animate-path-discrete-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/custom/inline-svg-in-xhtml-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/svg/custom/inline-svg-in-xhtml-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/custom/svg-fonts-in-html-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/svg/custom/svg-fonts-in-html-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/custom/text-dom-01-f-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/svg/custom/text-dom-01-f-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/hixie/mixed/003-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/svg/hixie/mixed/003-expected.png: Added.
  • platform/chromium-mac-snowleopard/svg/zoom/page/zoom-hixie-mixed-008-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug113424-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug113424-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1188-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1188-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1318-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1318-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug138725-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug138725-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug14323-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug14323-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug18359-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug18359-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2479-2-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2479-2-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2479-3-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2479-3-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug26178-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug26178-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug28928-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug28928-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2962-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2962-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug30692-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug30692-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug33855-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug33855-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug39209-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug39209-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4429-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4429-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug44505-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug44505-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4527-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4527-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug46368-1-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug46368-1-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug46368-2-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug46368-2-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug51037-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug51037-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug51727-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug51727-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug52505-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug52505-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug52506-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug52506-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug60749-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug60749-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug67915-1-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug67915-1-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug68912-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug68912-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug7342-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug7342-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug88035-1-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug88035-1-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug88035-2-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug88035-2-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug96334-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug96334-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/collapsing_borders/bug41262-4-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/collapsing_borders/bug41262-4-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/core/bloomberg-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/core/bloomberg-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/core/misc-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/core/misc-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/dom/tableDom-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/dom/tableDom-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_tbody_align_justify-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_tbody_align_justify-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_td_align_justify-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_td_align_justify-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_tfoot_align_justify-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_tfoot_align_justify-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_th_align_justify-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_th_align_justify-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_thead_align_justify-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_thead_align_justify-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_tr_align_justify-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_tr_align_justify-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/other/move_row-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla/other/move_row-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug1725-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug1725-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug2479-5-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug58402-2-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug58402-2-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.png: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.png: Added.
  • platform/chromium/test_expectations.txt:
9:26 AM Changeset in webkit [79006] by tonyg@chromium.org
  • 5 edits in trunk/Source/WebCore

2011-02-16 Tony Gentilcore <tonyg@chromium.org>

Reviewed by Eric Seidel.

Refactor pumpTokenizer loop
https://bugs.webkit.org/show_bug.cgi?id=54574

  1. This makes pumpTokenizer() safe to call when waiting for a script or when about to get the next token, although ASSERTs still enforce that we aren't waiting for a script. This enables resumeParsingAfterYield() to call pumpTokenizer with no modifications even if we yield before running a script rather than before taking a token (see bug 54355).
  2. This also picks up the refCount >= 1 assert when stopped.

Tested PerformanceTests/Parser to verify no regression. If anything it got faster.
Before:

avg 985.05
median 985.5
stdev 3.007906248539007
min 980
max 990

After:

avg 980.05
median 981
stdev 3.122098653149833
min 974
max 985

No new tests because no new functionality.

  • html/parser/HTMLDocumentParser.cpp: (WebCore::HTMLDocumentParser::canTakeNextToken): Added. (WebCore::HTMLDocumentParser::pumpTokenizer):
  • html/parser/HTMLDocumentParser.h:
9:19 AM Changeset in webkit [79005] by Csaba Osztrogonác
  • 4 edits in trunk/Source/WebCore

Unreviewed, rolling out r79003.
http://trac.webkit.org/changeset/79003
https://bugs.webkit.org/show_bug.cgi?id=54753

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-02-18
It broke tests on GTK bots (Requested by Ossy on #webkit).

  • accessibility/AccessibilityRenderObject.cpp:

(WebCore::lastChildConsideringContinuation):

  • dom/Node.cpp:

(WebCore::Node::removeEventListener):

  • html/DateComponents.cpp:

(WebCore::DateComponents::parseTime):

9:18 AM Changeset in webkit [79004] by jberlin@webkit.org
  • 26 edits
    1 add in trunk/LayoutTests

[Windows 7 Release Tests] ~26 tests failing after r78846
https://bugs.webkit.org/show_bug.cgi?id=54748

Unreviewed. Landing expected (failing?) results to get the Windows 7 Release bots green.

Note: the pixel test results for fast/ruby/nested-ruby.html and
fast/blockflow/Kusa-Makura-background-canvas.html will be landed separately.

  • platform/win/css2.1/t0905-c5525-fltwidth-00-c-g-expected.txt:
  • platform/win/css2.1/t1202-counter-04-b-expected.txt:
  • platform/win/css2.1/t1202-counters-04-b-expected.txt:
  • platform/win/editing/pasteboard/nested-blocks-with-text-area-expected.txt:
  • platform/win/editing/pasteboard/pasting-tabs-expected.txt:
  • platform/win/editing/selection/mixed-editability-10-expected.txt:
  • platform/win/fast/blockflow/Kusa-Makura-background-canvas-expected.txt:
  • platform/win/fast/dom/HTMLTextAreaElement/reset-textarea-expected.txt:
  • platform/win/fast/forms/basic-selects-expected.txt:
  • platform/win/fast/forms/basic-textareas-expected.txt:
  • platform/win/fast/forms/basic-textareas-quirks-expected.txt:
  • platform/win/fast/forms/select-writing-direction-natural-expected.txt:
  • platform/win/fast/forms/textAreaLineHeight-expected.txt:
  • platform/win/fast/forms/textarea-scrollbar-expected.txt:
  • platform/win/fast/forms/textarea-scrolled-type-expected.txt:
  • platform/win/fast/parser/entity-comment-in-textarea-expected.txt:
  • platform/win/fast/parser/open-comment-in-textarea-expected.txt:
  • platform/win/fast/ruby/nested-ruby-expected.txt:
  • platform/win/fast/text/atsui-negative-spacing-features-expected.txt:
  • platform/win/fast/text/backslash-to-yen-sign-euc-expected.txt:
  • platform/win/fast/text/international/bidi-control-chars-treated-as-ZWS-expected.txt: Added.
  • platform/win/fast/text/international/bidi-menulist-expected.txt:
  • platform/win/fast/text/international/pop-up-button-text-alignment-and-direction-expected.txt:
  • platform/win/fast/text/justify-ideograph-complex-expected.txt:
  • platform/win/fast/text/justify-ideograph-simple-expected.txt:
  • platform/win/fast/text/justify-ideograph-vertical-expected.txt:
8:57 AM Changeset in webkit [79003] by Csaba Osztrogonác
  • 4 edits in trunk/Source/WebCore

Warning fix. Use ASSERT_UNUSED() instead of ASSERT().

Rubber-stamped by Andreas Kling.

  • accessibility/AccessibilityRenderObject.cpp:

(WebCore::lastChildConsideringContinuation):

  • dom/Node.cpp:

(WebCore::Node::removeEventListener):

  • html/DateComponents.cpp:

(WebCore::DateComponents::parseTime):

8:34 AM Changeset in webkit [79002] by mnaganov@chromium.org
  • 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-02-18 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed test expectations update.
Mark inspector/debugger/debug-inlined-scripts.html also as timing out.
https://bugs.webkit.org/show_bug.cgi?id=54659

8:00 AM Changeset in webkit [79001] by Csaba Osztrogonác
  • 2 edits
    756 adds in trunk/LayoutTests

Unreviewed.

[Qt] Add Qt specific expected results for passing svg/W3C-SVG-1.1 tests.

  • platform/qt/Skipped: Unskip passing tests.
  • platform/qt/svg/W3C-SVG-1.1/ [...] : Added.
6:54 AM Changeset in webkit [79000] by Philippe Normand
  • 1 edit
    2 adds in trunk/LayoutTests

2011-02-18 Philippe Normand <pnormand@igalia.com>

Unreviewed, GTK baselines for two new tests.

  • platform/gtk/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.txt: Added.
  • platform/gtk/svg/custom/nested-pattern-boundingBoxModeContent-expected.txt: Added.
6:27 AM Changeset in webkit [78999] by Csaba Osztrogonác
  • 3 edits
    253 adds in trunk/LayoutTests

Unreviewed.

[Qt] Add Qt specific expected results for passing svg tests.

  • platform/qt/Skipped: Unskip a bunch of passing tests.
  • platform/qt/svg/clip-path/clip-in-mask-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-in-mask-expected.png: Added.
  • platform/qt/svg/clip-path/clip-in-mask-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-in-mask-objectBoundingBox-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-in-mask-objectBoundingBox-expected.png: Added.
  • platform/qt/svg/clip-path/clip-in-mask-objectBoundingBox-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-in-mask-userSpaceOnUse-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-in-mask-userSpaceOnUse-expected.png: Added.
  • platform/qt/svg/clip-path/clip-in-mask-userSpaceOnUse-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-child-clipped-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-child-clipped-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-child-clipped-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-childs-clipped-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-childs-clipped-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-childs-clipped-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-clipped-evenodd-twice-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-clipped-evenodd-twice-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-clipped-evenodd-twice-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-clipped-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-clipped-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-clipped-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-clipped-no-content-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-clipped-no-content-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-clipped-no-content-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-clipped-nonzero-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-clipped-nonzero-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-clipped-nonzero-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-evenodd-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-evenodd-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-evenodd-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-evenodd-nonzero-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-evenodd-nonzero-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-evenodd-nonzero-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-nonzero-evenodd-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-nonzero-evenodd-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-nonzero-evenodd-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-nonzero-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-nonzero-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-nonzero-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-objectBoundingBox-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-objectBoundingBox-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-objectBoundingBox-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-on-clipped-use-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-on-clipped-use-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-on-clipped-use-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-on-g-and-child-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-on-g-and-child-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-on-g-and-child-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-on-g-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-on-g-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-on-g-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-on-svg-and-child-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-on-svg-and-child-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-on-svg-and-child-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-on-svg-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-on-svg-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-on-svg-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-pixelation-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-pixelation-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-pixelation-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-recursive-call-by-child-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-recursive-call-by-child-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-recursive-call-by-child-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-recursive-call-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-recursive-call-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-recursive-call-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-text-and-shape-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-text-and-shape-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-text-and-shape-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-text-and-stroke-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-text-and-stroke-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-text-and-stroke-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-text-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-text-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-text-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-use-as-child-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-use-as-child-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-use-as-child-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-use-as-child2-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-use-as-child2-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-use-as-child2-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-use-as-child3-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-use-as-child3-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-use-as-child3-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-use-as-child4-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-use-as-child4-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-use-as-child4-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-use-as-child5-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-use-as-child5-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-use-as-child5-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-userSpaceOnUse-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-userSpaceOnUse-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-userSpaceOnUse-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-with-container-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-with-container-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-with-container-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-with-different-unittypes-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-with-different-unittypes-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-with-different-unittypes-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-with-different-unittypes2-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-with-different-unittypes2-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-with-different-unittypes2-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-with-invisibile-child-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-with-invisibile-child-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-with-invisibile-child-expected.txt: Added.
  • platform/qt/svg/clip-path/clip-path-with-text-clipped-expected.checksum: Added.
  • platform/qt/svg/clip-path/clip-path-with-text-clipped-expected.png: Added.
  • platform/qt/svg/clip-path/clip-path-with-text-clipped-expected.txt: Added.
  • platform/qt/svg/clip-path/deep-nested-clip-in-mask-different-unitTypes-expected.checksum: Added.
  • platform/qt/svg/clip-path/deep-nested-clip-in-mask-different-unitTypes-expected.png: Added.
  • platform/qt/svg/clip-path/deep-nested-clip-in-mask-different-unitTypes-expected.txt: Added.
  • platform/qt/svg/clip-path/deep-nested-clip-in-mask-expected.checksum: Added.
  • platform/qt/svg/clip-path/deep-nested-clip-in-mask-expected.png: Added.
  • platform/qt/svg/clip-path/deep-nested-clip-in-mask-expected.txt: Added.
  • platform/qt/svg/clip-path/deep-nested-clip-in-mask-panning-expected.checksum: Added.
  • platform/qt/svg/clip-path/deep-nested-clip-in-mask-panning-expected.png: Added.
  • platform/qt/svg/clip-path/deep-nested-clip-in-mask-panning-expected.txt: Added.
  • platform/qt/svg/clip-path/nested-clip-in-mask-image-based-clipping-expected.checksum: Added.
  • platform/qt/svg/clip-path/nested-clip-in-mask-image-based-clipping-expected.png: Added.
  • platform/qt/svg/clip-path/nested-clip-in-mask-image-based-clipping-expected.txt: Added.
  • platform/qt/svg/clip-path/nested-clip-in-mask-path-and-image-based-clipping-expected.checksum: Added.
  • platform/qt/svg/clip-path/nested-clip-in-mask-path-and-image-based-clipping-expected.png: Added.
  • platform/qt/svg/clip-path/nested-clip-in-mask-path-and-image-based-clipping-expected.txt: Added.
  • platform/qt/svg/clip-path/nested-clip-in-mask-path-based-clipping-expected.checksum: Added.
  • platform/qt/svg/clip-path/nested-clip-in-mask-path-based-clipping-expected.png: Added.
  • platform/qt/svg/clip-path/nested-clip-in-mask-path-based-clipping-expected.txt: Added.
  • platform/qt/svg/custom/clip-path-child-changes-expected.checksum: Added.
  • platform/qt/svg/custom/clip-path-child-changes-expected.png: Added.
  • platform/qt/svg/custom/clip-path-child-changes-expected.txt: Added.
  • platform/qt/svg/custom/clip-path-href-changes-expected.checksum: Added.
  • platform/qt/svg/custom/clip-path-href-changes-expected.png: Added.
  • platform/qt/svg/custom/clip-path-href-changes-expected.txt: Added.
  • platform/qt/svg/custom/clip-path-units-changes-expected.checksum: Added.
  • platform/qt/svg/custom/clip-path-units-changes-expected.png: Added.
  • platform/qt/svg/custom/clip-path-units-changes-expected.txt: Added.
  • platform/qt/svg/custom/clip-path-with-transform-expected.checksum: Added.
  • platform/qt/svg/custom/clip-path-with-transform-expected.png: Added.
  • platform/qt/svg/custom/clip-path-with-transform-expected.txt: Added.
  • platform/qt/svg/custom/marker-overflow-clip-expected.checksum: Added.
  • platform/qt/svg/custom/marker-overflow-clip-expected.png: Added.
  • platform/qt/svg/custom/marker-overflow-clip-expected.txt: Added.
  • platform/qt/svg/custom/mask-with-all-units-expected.checksum: Added.
  • platform/qt/svg/custom/mask-with-all-units-expected.png: Added.
  • platform/qt/svg/custom/mask-with-all-units-expected.txt: Added.
  • platform/qt/svg/custom/recursive-clippath-expected.checksum: Added.
  • platform/qt/svg/custom/recursive-clippath-expected.png: Added.
  • platform/qt/svg/custom/recursive-clippath-expected.txt: Added.
  • platform/qt/svg/custom/svg-fonts-in-text-controls-expected.checksum: Added.
  • platform/qt/svg/custom/svg-fonts-in-text-controls-expected.png: Added.
  • platform/qt/svg/custom/svg-fonts-in-text-controls-expected.txt: Added.
  • platform/qt/svg/custom/text-dom-removal-expected.checksum: Added.
  • platform/qt/svg/custom/text-dom-removal-expected.png: Added.
  • platform/qt/svg/custom/use-clipped-transform-expected.checksum: Added.
  • platform/qt/svg/custom/use-clipped-transform-expected.png: Added.
  • platform/qt/svg/dom/length-list-parser-expected.checksum: Added.
  • platform/qt/svg/dom/length-list-parser-expected.png: Added.
  • platform/qt/svg/dom/length-list-parser-expected.txt:
  • platform/qt/svg/text/foreignObject-repaint-expected.checksum: Added.
  • platform/qt/svg/text/foreignObject-repaint-expected.png: Added.
  • platform/qt/svg/text/foreignObject-repaint-expected.txt: Added.
  • platform/qt/svg/text/kerning-expected.checksum: Added.
  • platform/qt/svg/text/kerning-expected.png: Added.
  • platform/qt/svg/text/kerning-expected.txt: Added.
  • platform/qt/svg/text/multichar-glyph-expected.checksum: Added.
  • platform/qt/svg/text/multichar-glyph-expected.png: Added.
  • platform/qt/svg/text/multichar-glyph-expected.txt: Added.
  • platform/qt/svg/text/text-align-01-b-expected.checksum: Added.
  • platform/qt/svg/text/text-align-01-b-expected.png: Added.
  • platform/qt/svg/text/text-align-01-b-expected.txt: Added.
  • platform/qt/svg/text/text-align-02-b-expected.checksum: Added.
  • platform/qt/svg/text/text-align-02-b-expected.png: Added.
  • platform/qt/svg/text/text-align-02-b-expected.txt: Added.
  • platform/qt/svg/text/text-align-03-b-expected.checksum: Added.
  • platform/qt/svg/text/text-align-03-b-expected.png: Added.
  • platform/qt/svg/text/text-align-03-b-expected.txt: Added.
  • platform/qt/svg/text/text-align-04-b-expected.checksum: Added.
  • platform/qt/svg/text/text-align-04-b-expected.png: Added.
  • platform/qt/svg/text/text-align-04-b-expected.txt: Added.
  • platform/qt/svg/text/text-align-05-b-expected.checksum: Added.
  • platform/qt/svg/text/text-align-05-b-expected.png: Added.
  • platform/qt/svg/text/text-align-05-b-expected.txt: Added.
  • platform/qt/svg/text/text-align-06-b-expected.checksum: Added.
  • platform/qt/svg/text/text-align-06-b-expected.png: Added.
  • platform/qt/svg/text/text-align-06-b-expected.txt: Added.
  • platform/qt/svg/text/text-altglyph-01-b-expected.checksum: Added.
  • platform/qt/svg/text/text-altglyph-01-b-expected.png: Added.
  • platform/qt/svg/text/text-altglyph-01-b-expected.txt: Added.
  • platform/qt/svg/text/text-deco-01-b-expected.checksum: Added.
  • platform/qt/svg/text/text-deco-01-b-expected.png: Added.
  • platform/qt/svg/text/text-deco-01-b-expected.txt: Added.
  • platform/qt/svg/text/text-fonts-02-t-expected.checksum: Added.
  • platform/qt/svg/text/text-fonts-02-t-expected.png: Added.
  • platform/qt/svg/text/text-fonts-02-t-expected.txt: Added.
  • platform/qt/svg/text/text-gradient-positioning-expected.checksum: Added.
  • platform/qt/svg/text/text-gradient-positioning-expected.png: Added.
  • platform/qt/svg/text/text-gradient-positioning-expected.txt: Added.
  • platform/qt/svg/text/text-path-01-b-expected.checksum: Added.
  • platform/qt/svg/text/text-path-01-b-expected.png: Added.
  • platform/qt/svg/text/text-path-01-b-expected.txt: Added.
  • platform/qt/svg/text/text-repaint-rects-expected.checksum: Added.
  • platform/qt/svg/text/text-repaint-rects-expected.png: Added.
  • platform/qt/svg/text/text-repaint-rects-expected.txt: Added.
  • platform/qt/svg/text/text-spacing-01-b-expected.checksum: Added.
  • platform/qt/svg/text/text-spacing-01-b-expected.png: Added.
  • platform/qt/svg/text/text-spacing-01-b-expected.txt: Added.
  • platform/qt/svg/text/text-text-01-b-expected.checksum: Added.
  • platform/qt/svg/text/text-text-01-b-expected.png: Added.
  • platform/qt/svg/text/text-text-01-b-expected.txt: Added.
  • platform/qt/svg/text/text-text-03-b-expected.checksum: Added.
  • platform/qt/svg/text/text-text-03-b-expected.png: Added.
  • platform/qt/svg/text/text-text-03-b-expected.txt: Added.
  • platform/qt/svg/text/text-text-04-t-expected.checksum: Added.
  • platform/qt/svg/text/text-text-04-t-expected.png: Added.
  • platform/qt/svg/text/text-text-04-t-expected.txt: Added.
  • platform/qt/svg/text/text-text-05-t-expected.checksum: Added.
  • platform/qt/svg/text/text-text-05-t-expected.png: Added.
  • platform/qt/svg/text/text-text-05-t-expected.txt: Added.
  • platform/qt/svg/text/text-text-06-t-expected.checksum: Added.
  • platform/qt/svg/text/text-text-06-t-expected.png: Added.
  • platform/qt/svg/text/text-text-06-t-expected.txt: Added.
  • platform/qt/svg/text/text-text-07-t-expected.checksum: Added.
  • platform/qt/svg/text/text-text-07-t-expected.png: Added.
  • platform/qt/svg/text/text-text-07-t-expected.txt: Added.
  • platform/qt/svg/text/text-text-08-b-expected.checksum: Added.
  • platform/qt/svg/text/text-text-08-b-expected.png: Added.
  • platform/qt/svg/text/text-text-08-b-expected.txt: Added.
  • platform/qt/svg/text/text-tref-01-b-expected.checksum: Added.
  • platform/qt/svg/text/text-tref-01-b-expected.png: Added.
  • platform/qt/svg/text/text-tref-01-b-expected.txt: Added.
  • platform/qt/svg/text/text-tselect-01-b-expected.checksum: Added.
  • platform/qt/svg/text/text-tselect-01-b-expected.png: Added.
  • platform/qt/svg/text/text-tselect-01-b-expected.txt: Added.
  • platform/qt/svg/text/text-tspan-01-b-expected.checksum: Added.
  • platform/qt/svg/text/text-tspan-01-b-expected.png: Added.
  • platform/qt/svg/text/text-tspan-01-b-expected.txt: Added.
  • platform/qt/svg/text/text-ws-01-t-expected.checksum: Added.
  • platform/qt/svg/text/text-ws-01-t-expected.png: Added.
  • platform/qt/svg/text/text-ws-01-t-expected.txt: Added.
  • platform/qt/svg/text/text-ws-02-t-expected.checksum: Added.
  • platform/qt/svg/text/text-ws-02-t-expected.png: Added.
  • platform/qt/svg/text/text-ws-02-t-expected.txt: Added.
  • platform/qt/svg/text/textPathBoundsBug-expected.checksum: Added.
  • platform/qt/svg/text/textPathBoundsBug-expected.png: Added.
  • platform/qt/svg/text/textPathBoundsBug-expected.txt: Added.
  • platform/qt/svg/transforms/animated-path-inside-transformed-html-expected.checksum: Added.
  • platform/qt/svg/transforms/animated-path-inside-transformed-html-expected.png: Added.
  • platform/qt/svg/transforms/animated-path-inside-transformed-html-expected.txt: Added.
  • platform/qt/svg/transforms/text-with-pattern-inside-transformed-html-expected.checksum: Added.
  • platform/qt/svg/transforms/text-with-pattern-inside-transformed-html-expected.png: Added.
  • platform/qt/svg/transforms/text-with-pattern-inside-transformed-html-expected.txt: Added.
  • platform/qt/svg/transforms/text-with-pattern-with-svg-transform-expected.checksum: Added.
  • platform/qt/svg/transforms/text-with-pattern-with-svg-transform-expected.png: Added.
  • platform/qt/svg/transforms/text-with-pattern-with-svg-transform-expected.txt: Added.
5:38 AM Changeset in webkit [78998] by podivilov@chromium.org
  • 2 edits in trunk/Source/WebCore

2011-02-18 Andrey Adaikin <aandrey@google.com>

Reviewed by Pavel Feldman.

Web Inspector: [Text editor] Optimize editing updates in main panel
https://bugs.webkit.org/show_bug.cgi?id=54661

  • inspector/front-end/TextViewer.js: (WebInspector.TextViewer): (WebInspector.TextViewer.prototype._textChanged): (WebInspector.TextViewer.prototype._enterInternalTextChangeMode): (WebInspector.TextViewer.prototype._exitInternalTextChangeMode): (WebInspector.TextViewer.prototype._syncDecorationsForLine): (WebInspector.TextEditorChunkedPanel.prototype.textChanged): (WebInspector.TextEditorChunkedPanel.prototype._scroll): (WebInspector.TextEditorChunkedPanel.prototype.chunkForLine): (WebInspector.TextEditorChunkedPanel.prototype._totalHeight): (WebInspector.TextEditorGutterPanel.prototype._expandChunks): (WebInspector.TextEditorGutterChunk): (WebInspector.TextEditorGutterChunk.prototype.addDecoration): (WebInspector.TextEditorGutterChunk.prototype.removeDecoration): (WebInspector.TextEditorMainPanel): (WebInspector.TextEditorMainPanel.prototype._expandChunks): (WebInspector.TextEditorMainPanel.prototype._highlightDataReady): (WebInspector.TextEditorMainPanel.prototype._markSkippedPaintLines): (WebInspector.TextEditorMainPanel.prototype._paintSkippedLines): (WebInspector.TextEditorMainPanel.prototype._paintLines): (WebInspector.TextEditorMainPanel.prototype._paintLine): (WebInspector.TextEditorMainPanel.prototype._positionToSelection): (WebInspector.TextEditorMainPanel.prototype._applyDomUpdates): (WebInspector.TextEditorMainPanel.prototype._updateChunksForRanges): (WebInspector.TextEditorMainPanel.prototype._updateHighlightsForRange): (WebInspector.TextEditorMainPanel.prototype._collectLinesFromDiv): (WebInspector.TextEditorMainChunk): (WebInspector.TextEditorMainChunk.prototype.get startLine): (WebInspector.TextEditorMainChunk.prototype.set startLine): (WebInspector.TextEditorMainChunk.prototype.getExpandedLineRow): (WebInspector.TextEditorMainChunk.prototype.updateCollapsedLineRow):
5:28 AM Changeset in webkit [78997] by kbalazs@webkit.org
  • 1 edit
    2 deletes in trunk/Source/WebKit2

2011-02-18 Balazs Kelemen <kbalazs@webkit.org>

Unreviwed.

Remove CleanupHandler since we do not use it anymore.

  • Shared/qt/CleanupHandler.cpp: Removed.
  • Shared/qt/CleanupHandler.h: Removed.
5:06 AM Changeset in webkit [78996] by Philippe Normand
  • 2 edits in trunk

2011-02-18 Philippe Normand <pnormand@igalia.com>

Unreviewed, build fix after r78981

  • configure.ac: datagrid is datagrid, it is not database. Also meter is not progress. Fixed copy/paste mistakes.
4:28 AM Changeset in webkit [78995] by mnaganov@chromium.org
  • 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-02-18 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed test expectations update.
text-overflow-ellipsis may also fail with wrong image only.

4:27 AM Changeset in webkit [78994] by steveblock@google.com
  • 2 edits in trunk/Source/WebCore

2011-02-18 Steve Block <steveblock@google.com>

Reviewed by Andreas Kling

Memory allocation error in convertV8ObjectToNPVariant() for strings
https://bugs.webkit.org/show_bug.cgi?id=54737

Include the termination character in the length when allocating memory
and copying the string. This fixes a crashing bug on Android.

This should be tested by the java/ tests on Chromium, but these
tests are currently skipped.

  • bindings/v8/V8NPUtils.cpp: (WebCore::convertV8ObjectToNPVariant):
4:21 AM Changeset in webkit [78993] by Csaba Osztrogonác
  • 159 edits in trunk/LayoutTests

Unreviewed.

[Qt] Update pixel results for svg tests.

  • platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-01-f-expected.checksum:
  • platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-01-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-02-f-expected.checksum:
  • platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-02-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-03-f-expected.checksum:
  • platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-03-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-04-f-expected.checksum:
  • platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-04-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1-SE/paths-dom-02-f-expected.checksum:
  • platform/qt/svg/W3C-SVG-1.1-SE/paths-dom-02-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1-SE/types-dom-01-b-expected.checksum:
  • platform/qt/svg/W3C-SVG-1.1-SE/types-dom-01-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1-SE/types-dom-02-f-expected.checksum:
  • platform/qt/svg/W3C-SVG-1.1-SE/types-dom-02-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1-SE/types-dom-03-b-expected.checksum:
  • platform/qt/svg/W3C-SVG-1.1-SE/types-dom-03-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1-SE/types-dom-04-b-expected.checksum:
  • platform/qt/svg/W3C-SVG-1.1-SE/types-dom-04-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1-SE/types-dom-05-b-expected.checksum:
  • platform/qt/svg/W3C-SVG-1.1-SE/types-dom-05-b-expected.png:
  • platform/qt/svg/W3C-SVG-1.1-SE/types-dom-06-f-expected.checksum:
  • platform/qt/svg/W3C-SVG-1.1-SE/types-dom-06-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1-SE/types-dom-07-f-expected.checksum:
  • platform/qt/svg/W3C-SVG-1.1-SE/types-dom-07-f-expected.png:
  • platform/qt/svg/W3C-SVG-1.1/filters-turb-02-f-expected.checksum:
  • platform/qt/svg/W3C-SVG-1.1/filters-turb-02-f-expected.png:
  • platform/qt/svg/animations/repeatDur-zero-expected.checksum:
  • platform/qt/svg/animations/repeatDur-zero-expected.png:
  • platform/qt/svg/batik/paints/patternRegions-positioned-objects-expected.checksum:
  • platform/qt/svg/batik/paints/patternRegions-positioned-objects-expected.png:
  • platform/qt/svg/batik/text/textDecoration-expected.checksum:
  • platform/qt/svg/batik/text/textDecoration-expected.png:
  • platform/qt/svg/css/composite-shadow-text-expected.checksum:
  • platform/qt/svg/css/composite-shadow-text-expected.png:
  • platform/qt/svg/css/text-gradient-shadow-expected.checksum:
  • platform/qt/svg/css/text-gradient-shadow-expected.png:
  • platform/qt/svg/custom/absolute-sized-content-with-resources-expected.checksum:
  • platform/qt/svg/custom/absolute-sized-content-with-resources-expected.png:
  • platform/qt/svg/custom/bug45331-expected.checksum:
  • platform/qt/svg/custom/bug45331-expected.png:
  • platform/qt/svg/custom/clone-element-with-animated-svg-properties-expected.checksum:
  • platform/qt/svg/custom/clone-element-with-animated-svg-properties-expected.png:
  • platform/qt/svg/custom/convolution-crash-expected.checksum:
  • platform/qt/svg/custom/convolution-crash-expected.png:
  • platform/qt/svg/custom/getscreenctm-in-scrollable-div-area-expected.checksum:
  • platform/qt/svg/custom/getscreenctm-in-scrollable-div-area-expected.png:
  • platform/qt/svg/custom/getscreenctm-in-scrollable-div-area-nested-expected.checksum:
  • platform/qt/svg/custom/getscreenctm-in-scrollable-div-area-nested-expected.png:
  • platform/qt/svg/custom/getscreenctm-in-scrollable-svg-area-expected.checksum:
  • platform/qt/svg/custom/getscreenctm-in-scrollable-svg-area-expected.png:
  • platform/qt/svg/custom/image-rescale-expected.checksum:
  • platform/qt/svg/custom/image-rescale-expected.png:
  • platform/qt/svg/custom/image-rescale-scroll-expected.checksum:
  • platform/qt/svg/custom/image-rescale-scroll-expected.png:
  • platform/qt/svg/custom/js-update-stop-linked-gradient-expected.checksum:
  • platform/qt/svg/custom/js-update-stop-linked-gradient-expected.png:
  • platform/qt/svg/custom/marker-child-changes-css-expected.checksum:
  • platform/qt/svg/custom/marker-child-changes-css-expected.png:
  • platform/qt/svg/custom/marker-empty-path-expected.checksum:
  • platform/qt/svg/custom/marker-empty-path-expected.png:
  • platform/qt/svg/custom/mask-invalidation-expected.checksum:
  • platform/qt/svg/custom/mask-invalidation-expected.png:
  • platform/qt/svg/custom/massive-coordinates-expected.checksum:
  • platform/qt/svg/custom/massive-coordinates-expected.png:
  • platform/qt/svg/custom/mouse-move-on-svg-container-expected.checksum:
  • platform/qt/svg/custom/mouse-move-on-svg-container-expected.png:
  • platform/qt/svg/custom/mouse-move-on-svg-container-standalone-expected.checksum:
  • platform/qt/svg/custom/mouse-move-on-svg-container-standalone-expected.png:
  • platform/qt/svg/custom/mouse-move-on-svg-root-expected.checksum:
  • platform/qt/svg/custom/mouse-move-on-svg-root-expected.png:
  • platform/qt/svg/custom/mouse-move-on-svg-root-standalone-expected.checksum:
  • platform/qt/svg/custom/mouse-move-on-svg-root-standalone-expected.png:
  • platform/qt/svg/custom/non-scaling-stroke-expected.checksum:
  • platform/qt/svg/custom/non-scaling-stroke-expected.png:
  • platform/qt/svg/custom/pattern-incorrect-tiling-expected.checksum:
  • platform/qt/svg/custom/pattern-incorrect-tiling-expected.png:
  • platform/qt/svg/custom/pattern-no-pixelation-expected.checksum:
  • platform/qt/svg/custom/pattern-no-pixelation-expected.png:
  • platform/qt/svg/custom/pattern-size-bigger-than-target-size-expected.checksum:
  • platform/qt/svg/custom/pattern-size-bigger-than-target-size-expected.png:
  • platform/qt/svg/custom/pattern-skew-transformed-expected.checksum:
  • platform/qt/svg/custom/pattern-skew-transformed-expected.png:
  • platform/qt/svg/custom/radial-gradient-with-outstanding-focalPoint-expected.checksum:
  • platform/qt/svg/custom/radial-gradient-with-outstanding-focalPoint-expected.png:
  • platform/qt/svg/custom/recursive-filter-expected.checksum:
  • platform/qt/svg/custom/recursive-filter-expected.png:
  • platform/qt/svg/custom/recursive-gradient-expected.checksum:
  • platform/qt/svg/custom/recursive-gradient-expected.png:
  • platform/qt/svg/custom/recursive-mask-expected.checksum:
  • platform/qt/svg/custom/recursive-mask-expected.png:
  • platform/qt/svg/custom/recursive-pattern-expected.checksum:
  • platform/qt/svg/custom/recursive-pattern-expected.png:
  • platform/qt/svg/custom/relative-sized-content-with-resources-expected.checksum:
  • platform/qt/svg/custom/relative-sized-content-with-resources-expected.png:
  • platform/qt/svg/custom/relative-sized-inner-svg-expected.checksum:
  • platform/qt/svg/custom/relative-sized-inner-svg-expected.png:
  • platform/qt/svg/custom/relative-sized-use-without-attributes-on-symbol-expected.checksum:
  • platform/qt/svg/custom/relative-sized-use-without-attributes-on-symbol-expected.png:
  • platform/qt/svg/custom/repaint-on-constant-size-change-expected.checksum:
  • platform/qt/svg/custom/repaint-on-constant-size-change-expected.png:
  • platform/qt/svg/custom/repaint-stroke-width-changes-expected.checksum:
  • platform/qt/svg/custom/repaint-stroke-width-changes-expected.png:
  • platform/qt/svg/custom/text-rotation-expected.checksum:
  • platform/qt/svg/custom/text-rotation-expected.png:
  • platform/qt/svg/custom/text-x-dy-lists-expected.checksum:
  • platform/qt/svg/custom/text-x-dy-lists-expected.png:
  • platform/qt/svg/custom/use-on-clip-path-with-transformation-expected.checksum:
  • platform/qt/svg/custom/use-on-clip-path-with-transformation-expected.png:
  • platform/qt/svg/custom/use-property-synchronization-crash-expected.checksum:
  • platform/qt/svg/custom/use-property-synchronization-crash-expected.png:
  • platform/qt/svg/dom/SVGPathSegList-cloning-expected.checksum:
  • platform/qt/svg/dom/SVGPathSegList-cloning-expected.png:
  • platform/qt/svg/dom/SVGPathSegList-segment-modification-expected.checksum:
  • platform/qt/svg/dom/SVGPathSegList-segment-modification-expected.png:
  • platform/qt/svg/filters/filter-empty-g-expected.checksum:
  • platform/qt/svg/filters/filter-empty-g-expected.png:
  • platform/qt/svg/filters/filter-on-filter-for-text-expected.checksum:
  • platform/qt/svg/filters/filter-on-filter-for-text-expected.png:
  • platform/qt/svg/filters/filter-on-tspan-expected.checksum:
  • platform/qt/svg/filters/filter-on-tspan-expected.png:
  • platform/qt/svg/filters/filter-width-update-expected.checksum:
  • platform/qt/svg/filters/filter-width-update-expected.png:
  • platform/qt/svg/foreignObject/disallowed-svg-nodes-as-direct-children-expected.checksum:
  • platform/qt/svg/foreignObject/disallowed-svg-nodes-as-direct-children-expected.png:
  • platform/qt/svg/foreignObject/no-crash-with-svg-content-in-html-document-expected.checksum:
  • platform/qt/svg/foreignObject/no-crash-with-svg-content-in-html-document-expected.png:
  • platform/qt/svg/foreignObject/svg-document-as-direct-child-expected.checksum:
  • platform/qt/svg/foreignObject/svg-document-as-direct-child-expected.png:
  • platform/qt/svg/foreignObject/svg-document-in-html-document-expected.checksum:
  • platform/qt/svg/foreignObject/svg-document-in-html-document-expected.png:
  • platform/qt/svg/foreignObject/text-tref-02-b-expected.checksum:
  • platform/qt/svg/foreignObject/text-tref-02-b-expected.png:
  • platform/qt/svg/in-html/circle-expected.checksum:
  • platform/qt/svg/in-html/circle-expected.png:
  • platform/qt/svg/overflow/overflow-on-outermost-svg-element-defaults-expected.checksum:
  • platform/qt/svg/overflow/overflow-on-outermost-svg-element-defaults-expected.png:
  • platform/qt/svg/overflow/overflow-on-outermost-svg-element-ignore-attribute-1-expected.checksum:
  • platform/qt/svg/overflow/overflow-on-outermost-svg-element-ignore-attribute-1-expected.png:
  • platform/qt/svg/overflow/overflow-on-outermost-svg-element-ignore-attribute-2-expected.checksum:
  • platform/qt/svg/overflow/overflow-on-outermost-svg-element-ignore-attribute-2-expected.png:
  • platform/qt/svg/overflow/overflow-on-outermost-svg-element-ignore-attribute-3-expected.checksum:
  • platform/qt/svg/overflow/overflow-on-outermost-svg-element-ignore-attribute-3-expected.png:
  • platform/qt/svg/text/lengthAdjust-text-metrics-expected.checksum:
  • platform/qt/svg/text/lengthAdjust-text-metrics-expected.png:
  • platform/qt/svg/text/selection-styles-expected.checksum:
  • platform/qt/svg/text/selection-styles-expected.png:
  • platform/qt/svg/text/text-hkern-expected.checksum:
  • platform/qt/svg/text/text-hkern-expected.png:
  • platform/qt/svg/text/text-hkern-on-vertical-text-expected.checksum:
  • platform/qt/svg/text/text-hkern-on-vertical-text-expected.png:
  • platform/qt/svg/text/text-vkern-expected.checksum:
  • platform/qt/svg/text/text-vkern-expected.png:
  • platform/qt/svg/text/text-vkern-on-horizontal-text-expected.checksum:
  • platform/qt/svg/text/text-vkern-on-horizontal-text-expected.png:
  • platform/qt/svg/zoom/page/zoom-coords-viewattr-01-b-expected.checksum:
  • platform/qt/svg/zoom/page/zoom-coords-viewattr-01-b-expected.png:
  • platform/qt/svg/zoom/text/zoom-svg-float-border-padding-expected.checksum:
  • platform/qt/svg/zoom/text/zoom-svg-float-border-padding-expected.png:
4:11 AM Changeset in webkit [78992] by mnaganov@chromium.org
  • 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-02-18 Mikhail Naganov < mnaganov@chromium.org>

[Chromium] Unreviewed test expectations fix.
Again, a quick fix for deeply-nested-reflections.html.

3:52 AM Changeset in webkit [78991] by Philippe Normand
  • 2 edits in trunk/LayoutTests

2011-02-18 Philippe Normand <pnormand@igalia.com>

Unreviewed, skip a GTK media test affected by pixel diferrence
between 32/64-Bits bots.

[GTK] media/video-display-toggle.html is flaky on debug bots
https://bugs.webkit.org/show_bug.cgi?id=54637

  • platform/gtk/Skipped:
3:49 AM Changeset in webkit [78990] by Csaba Osztrogonác
  • 2 edits
    2 adds in trunk/LayoutTests

Unreviewed.

[Qt] http/tests/security/xssAuditor/script-tag-with-fancy-unicode.html fails
https://bugs.webkit.org/show_bug.cgi?id=54630

Platform independent expected fail isn't good for Qt, because
this test passes on Qt, so add Qt specific expected result.

  • platform/qt/Skipped: Unskip the passing test.
  • platform/qt/http/tests/security/xssAuditor/script-tag-with-fancy-unicode-expected.txt: Added.
3:42 AM Changeset in webkit [78989] by Philippe Normand
  • 2 edits in trunk/LayoutTests

2011-02-18 Philippe Normand <pnormand@igalia.com>

Unreviewed, skip a GTK media test affected by pixel diferrence
between 32/64-Bits bots.

[GTK] media/video-display-toggle.html is flaky on debug bots
https://bugs.webkit.org/show_bug.cgi?id=54637

  • platform/gtk/Skipped:
2:56 AM Changeset in webkit [78988] by mnaganov@chromium.org
  • 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-02-18 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed test expectations update.
Also mark deeply-nested-reflections as failing on GPU Mac.

2:52 AM Changeset in webkit [78987] by Philippe Normand
  • 3 edits
    2 deletes in trunk

2011-02-18 Philippe Normand <pnormand@igalia.com>

Unreviewed, rolling out r78979.
http://trac.webkit.org/changeset/78979
https://bugs.webkit.org/show_bug.cgi?id=53146

causes multiple crashes on GTK

  • platform/gtk/accessibility/combo-box-collapsed-selection-changed-expected.txt: Removed.
  • platform/gtk/accessibility/combo-box-collapsed-selection-changed.html: Removed.

2011-02-18 Philippe Normand <pnormand@igalia.com>

Unreviewed, rolling out r78979.
http://trac.webkit.org/changeset/78979
https://bugs.webkit.org/show_bug.cgi?id=53146

causes multiple crashes on GTK

  • accessibility/gtk/AXObjectCacheAtk.cpp: (WebCore::notifyChildrenSelectionChange): (WebCore::AXObjectCache::postPlatformNotification):
2:51 AM Changeset in webkit [78986] by Philippe Normand
  • 2 edits in trunk/LayoutTests

2011-02-18 Philippe Normand <pnormand@igalia.com>

Unreviewed, rolling out r78982.
http://trac.webkit.org/changeset/78982

  • platform/gtk/accessibility/combo-box-collapsed-selection-changed-expected.txt:
2:48 AM Changeset in webkit [78985] by mnaganov@chromium.org
  • 2 edits
    5 adds in trunk/LayoutTests/platform

2011-02-18 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed test expectations update.
Rebaseline 3 windows tests, and mark tests from r78983 as Mac-specific.
https://bugs.webkit.org/show_bug.cgi?id=54736

2:44 AM Changeset in webkit [78984] by morrita@google.com
  • 3 edits in trunk/Tools

2011-02-16 MORITA Hajime <morrita@google.com>

Reviewed by Kent Tamura.

[Chromium][DRT] some PostDelayedTask() accesses possibly dangling this pointer.
http://webkit.org/b/53899

Replaced static invocation wrappers with MethodTask objects,
which are removed on WebViewHost destructor.

  • DumpRenderTree/chromium/WebViewHost.cpp: (WebViewHost::requestCheckingOfText): (WebViewHost::scheduleAnimation): (WebViewHost::closeWidgetSoon):
  • DumpRenderTree/chromium/WebViewHost.h: (WebViewHost::HostMethodTask::HostMethodTask): (WebViewHost::HostMethodTask::runIfValid): (WebViewHost::taskList):
2:39 AM Changeset in webkit [78983] by mnaganov@chromium.org
  • 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-02-18 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed test expectations update.
Mark failing tests until we can rebaseline them.
https://bugs.webkit.org/show_bug.cgi?id=54736

2:26 AM Changeset in webkit [78982] by Philippe Normand
  • 2 edits in trunk/LayoutTests

2011-02-18 Philippe Normand <pnormand@igalia.com>

Unreviewed, update platform/gtk/accessibility test baselines as
requested by Mario Sanchez Prada.

  • platform/gtk/accessibility/combo-box-collapsed-selection-changed-expected.txt:
2:05 AM Changeset in webkit [78981] by Philippe Normand
  • 4 edits in trunk

2011-02-18 Philippe Normand <pnormand@igalia.com>

Reviewed by Martin Robinson.

[GTK] minimal build unrecognized options
https://bugs.webkit.org/show_bug.cgi?id=50890

  • configure.ac: added new configure options to enable/disable the meter element, progress element, datagrid and client-based geolocation support.

2011-02-18 Philippe Normand <pnormand@igalia.com>

Reviewed by Martin Robinson.

[GTK] minimal build unrecognized options
https://bugs.webkit.org/show_bug.cgi?id=50890

  • GNUmakefile.am: new feature defines for optional features build.
1:56 AM Changeset in webkit [78980] by hans@chromium.org
  • 6 edits in trunk

2011-02-17 Hans Wennborg <hans@chromium.org>

Reviewed by Jeremy Orlow.

IndexedDB: Populate indexes created for object stores with data
https://bugs.webkit.org/show_bug.cgi?id=54669

Test that creating an index for an object store that already holds
data works.

  • storage/indexeddb/index-basics-expected.txt:
  • storage/indexeddb/index-basics.html:

2011-02-17 Hans Wennborg <hans@chromium.org>

Reviewed by Jeremy Orlow.

IndexedDB: Populate indexes created for object stores with data
https://bugs.webkit.org/show_bug.cgi?id=54669

Make sure that indices for object stores that already hold data get
populated.

  • storage/IDBIndexBackendImpl.h: (WebCore::IDBIndexBackendImpl::hasValidId):
  • storage/IDBObjectStoreBackendImpl.cpp: (WebCore::IDBObjectStoreBackendImpl::putInternal): (WebCore::populateIndex): (WebCore::IDBObjectStoreBackendImpl::createIndexInternal):
1:46 AM Changeset in webkit [78979] by mario@webkit.org
  • 3 edits
    2 adds in trunk

2011-02-18 Mario Sanchez Prada <msanchez@igalia.com>

[GTK] Combo boxes should emit object:selection-changed even when collapsed
https://bugs.webkit.org/show_bug.cgi?id=53146

New GTK-specific layout test to check the right signals are emitted.

  • platform/gtk/accessibility/combo-box-collapsed-selection-changed-expected.txt: Added.
  • platform/gtk/accessibility/combo-box-collapsed-selection-changed.html: Added.

2011-02-18 Mario Sanchez Prada <msanchez@igalia.com>

Reviewed by Martin Robinson.

[GTK] Combo boxes should emit object:selection-changed even when collapsed
https://bugs.webkit.org/show_bug.cgi?id=53146

Emit the selection-changed signals when the menu list value has changed

Test: platform/gtk/accessibility/combo-box-collapsed-selection-changed.html

  • accessibility/gtk/AXObjectCacheAtk.cpp: (WebCore::getListObject): New, return the right list object for menu lists and list boxes. (WebCore::notifyChildrenSelectionChange): Support menu lists. (WebCore::AXObjectCache::postPlatformNotification): Call function notifyChildrenSelectionChange for AXMenuListValueChanged.
1:40 AM Changeset in webkit [78978] by mario@webkit.org
  • 4 edits in trunk/Source

2011-02-18 Mario Sanchez Prada <msanchez@igalia.com>

Reviewed by Martin Robinson.

[Gtk] atk_text_get_selection/atk_text_set_selection fails for list items
https://bugs.webkit.org/show_bug.cgi?id=53453

Ensure that atk_text_{get|set}_selection() work with list items.

  • accessibility/gtk/AccessibilityObjectWrapperAtk.cpp: (webkit_accessible_text_get_text): Properly handle list item markers when returning the text for an object for a given interval specified through the startOffset and endOffset parameters. (getSelectionOffsetsForObject): Bear in mind list item markers when returning the offsets for a selection over a list item. (webkit_accessible_text_set_selection): Adjust offsets if needed for list items with item markers. Ensure that it returns TRUE only when everything went fine setting the text selection.

2011-02-18 Mario Sanchez Prada <msanchez@igalia.com>

Reviewed by Martin Robinson.

[Gtk] atk_text_get_selection/atk_text_set_selection fails for list items
https://bugs.webkit.org/show_bug.cgi?id=53453

Update unit test to check the fix for this bug.

  • tests/testatk.c: (testWebkitAtkTextSelections): Check that functions from AtkText interface to set and get text selections work with list items.
1:31 AM Changeset in webkit [78977] by alex
  • 2 edits in trunk/Source/WebKit2

2011-02-18 Alejandro G. Castro <alex@igalia.com>

Fix GTK build by fixing signature of platformPaint(), required after r78956.

  • WebProcess/Plugins/Netscape/gtk/NetscapePluginGtk.cpp: (WebKit::NetscapePlugin::platformPaint):
1:18 AM Changeset in webkit [78976] by Philippe Normand
  • 20 edits in trunk/LayoutTests

2011-02-18 Philippe Normand <pnormand@igalia.com>

Unreviewed, update GTK tables/mozilla_expected_failures baselines

  • platform/gtk/tables/mozilla_expected_failures/bugs/bug10140-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug10216-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug104898-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug1055-2-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug106966-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug1128-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug14007-1-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug14007-2-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug29058-2-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-11-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-12-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-4-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-5-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-6-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-7-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-8-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug58402-2-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug89315-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug91057-expected.txt:
1:10 AM Changeset in webkit [78975] by Philippe Normand
  • 2 edits in trunk/LayoutTests

2011-02-18 Philippe Normand <pnormand@igalia.com>

Unreviewed, update GTK media test baselines

  • platform/gtk/media/video-controls-in-media-document-expected.txt:
1:07 AM Changeset in webkit [78974] by Antti Koivisto
  • 2 edits in trunk/Source/WebCore

https://bugs.webkit.org/show_bug.cgi?id=54728
checkSelector*Value functions used in fastCheckSelector fail to inline

Reviewed by Maciej Stachowiak.

Wrap the functions used as template arguments to classes.

  • css/CSSStyleSelector.cpp:

(WebCore::fastCheckSingleSelector):
(WebCore::ClassCheck::checkValue):
(WebCore::IdCheck::checkValue):
(WebCore::TagCheck::checkValue):
(WebCore::CSSStyleSelector::SelectorChecker::fastCheckSelector):

12:30 AM Changeset in webkit [78973] by Philippe Normand
  • 2 edits
    1 add in trunk/LayoutTests

2011-02-17 Philippe Normand <pnormand@igalia.com>

Reviewed by Martin Robinson.

[GTK] media/video-controls-in-media-document.html potentially flaky
https://bugs.webkit.org/show_bug.cgi?id=54631

Refactored the test to roll the element to play before dumping the
DRT. Also added baselines for GTK and fixed the media-file.js
include after r78778.

  • media/video-controls-in-media-document.html:
  • platform/gtk/media/video-controls-in-media-document-expected.txt: Added.
12:27 AM Changeset in webkit [78972] by Philippe Normand
  • 2 edits in trunk/LayoutTests

2011-02-18 Philippe Normand <pnormand@igalia.com>

Unreviewed, update GTK media test baselines

  • platform/gtk/media/controls-styling-expected.txt:
12:18 AM Changeset in webkit [78971] by Lucas Forschler
  • 5 edits in branches/safari-534.20-branch/Source

Versioning.

12:01 AM Changeset in webkit [78970] by Lucas Forschler
  • 1 copy in tags/Safari-534.20.3

New tag.

Feb 17, 2011:

11:59 PM Changeset in webkit [78969] by sergio@webkit.org
  • 2 edits
    257 adds in trunk/LayoutTests

2011-02-17 Sergio Villar Senin <svillar@igalia.com>

Unreviewed.

Added another bunch of GTK+ baselines for Mozilla test suites
(tables/mozilla_expected_failures/bugs).

  • platform/gtk/Skipped: Unskip tests which now have results.
11:45 PM Changeset in webkit [78968] by Lucas Forschler
  • 2 adds in branches/safari-534.20-branch/Source/WebKit2/Shared

Add two missing files.

11:43 PM Changeset in webkit [78967] by yuzo@google.com
  • 4 edits in trunk/Source/WebKit/chromium

2011-02-17 Yuzo Fujishima <yuzo@google.com>

Reviewed by Shinichiro Hamaji.

Retry landing after fixing Chromium side.
Fix for Bug 54632 - [chromium] Printing causes view to scroll
https://bugs.webkit.org/show_bug.cgi?id=54632

Expose setScrollOffset such that Chromium can restore the scroll offset
after printing the document. The bug will be fixed when the counterpart
patch http://codereview.chromium.org/6539011/ is landed for Chromium.

  • public/WebFrame.h:
  • src/WebFrameImpl.cpp: (WebKit::WebFrameImpl::setScrollOffset):
  • src/WebFrameImpl.h:
11:30 PM Changeset in webkit [78966] by Csaba Osztrogonác
  • 3 edits in trunk/LayoutTests

Unreviewed.

[Qt]REGRESSION(r78846): editing/selection/mixed-editability-10.html
https://bugs.webkit.org/show_bug.cgi?id=54725

  • platform/qt/Skipped: Add editing/selection/mixed-editability-10.html until fix.
  • platform/qt/fast/text/justify-nbsp-expected.txt: updated after r78846.
10:57 PM Changeset in webkit [78965] by Csaba Osztrogonác
  • 54 edits
    10 adds in trunk/LayoutTests

Unreviewed.

Update Qt specific expected files after r78846.

  • platform/qt/css1/box_properties/clear_float-expected.checksum: Added.
  • platform/qt/css1/box_properties/clear_float-expected.png: Added.
  • platform/qt/css1/box_properties/clear_float-expected.txt:
  • platform/qt/css1/box_properties/float_elements_in_series-expected.checksum: Added.
  • platform/qt/css1/box_properties/float_elements_in_series-expected.png: Added.
  • platform/qt/css1/box_properties/float_elements_in_series-expected.txt:
  • platform/qt/css1/box_properties/float_on_text_elements-expected.checksum: Added.
  • platform/qt/css1/box_properties/float_on_text_elements-expected.png: Added.
  • platform/qt/css1/box_properties/float_on_text_elements-expected.txt:
  • platform/qt/css2.1/t0905-c414-flt-wrap-00-e-expected.txt:
  • platform/qt/css2.1/t0905-c5525-fltcont-00-d-g-expected.checksum:
  • platform/qt/css2.1/t0905-c5525-fltcont-00-d-g-expected.png:
  • platform/qt/css2.1/t0905-c5525-fltcont-00-d-g-expected.txt:
  • platform/qt/css2.1/t0905-c5525-fltmult-00-d-g-expected.txt:
  • platform/qt/css2.1/t0905-c5525-fltwidth-00-c-g-expected.checksum:
  • platform/qt/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png:
  • platform/qt/css2.1/t0905-c5525-fltwidth-00-c-g-expected.txt:
  • platform/qt/css2.1/t1602-c546-txt-align-00-b-expected.checksum:
  • platform/qt/css2.1/t1602-c546-txt-align-00-b-expected.png:
  • platform/qt/css2.1/t1602-c546-txt-align-00-b-expected.txt:
  • platform/qt/editing/pasteboard/5478250-expected.checksum: Added.
  • platform/qt/editing/pasteboard/5478250-expected.png: Added.
  • platform/qt/editing/pasteboard/5478250-expected.txt:
  • platform/qt/editing/selection/3690703-2-expected.checksum:
  • platform/qt/editing/selection/3690703-2-expected.png:
  • platform/qt/editing/selection/3690703-2-expected.txt:
  • platform/qt/editing/selection/3690703-expected.checksum:
  • platform/qt/editing/selection/3690703-expected.png:
  • platform/qt/editing/selection/3690703-expected.txt:
  • platform/qt/editing/selection/3690719-expected.checksum:
  • platform/qt/editing/selection/3690719-expected.png:
  • platform/qt/editing/selection/3690719-expected.txt:
  • platform/qt/fast/blockflow/box-shadow-horizontal-bt-expected.checksum:
  • platform/qt/fast/blockflow/box-shadow-horizontal-bt-expected.png:
  • platform/qt/fast/blockflow/box-shadow-horizontal-bt-expected.txt:
  • platform/qt/fast/multicol/vertical-lr/float-avoidance-expected.checksum:
  • platform/qt/fast/multicol/vertical-lr/float-avoidance-expected.png:
  • platform/qt/fast/multicol/vertical-lr/float-avoidance-expected.txt:
  • platform/qt/fast/multicol/vertical-rl/float-avoidance-expected.checksum:
  • platform/qt/fast/multicol/vertical-rl/float-avoidance-expected.png:
  • platform/qt/fast/multicol/vertical-rl/float-avoidance-expected.txt:
  • platform/qt/fast/table/035-vertical-expected.png:
  • platform/qt/fast/table/035-vertical-expected.txt:
  • platform/qt/fast/table/border-collapsing/004-vertical-expected.checksum:
  • platform/qt/fast/table/border-collapsing/004-vertical-expected.png:
  • platform/qt/fast/table/border-collapsing/004-vertical-expected.txt:
  • platform/qt/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.checksum:
  • platform/qt/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.png:
  • platform/qt/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.txt:
  • platform/qt/fast/table/rowspan-paint-order-vertical-expected.checksum:
  • platform/qt/fast/table/rowspan-paint-order-vertical-expected.png:
  • platform/qt/fast/table/rowspan-paint-order-vertical-expected.txt:
  • platform/qt/svg/custom/svg-fonts-with-no-element-reference-expected.checksum:
  • platform/qt/svg/custom/svg-fonts-with-no-element-reference-expected.png:
  • platform/qt/svg/custom/svg-fonts-with-no-element-reference-expected.txt:
  • platform/qt/svg/custom/svg-fonts-without-missing-glyph-expected.checksum:
  • platform/qt/svg/custom/svg-fonts-without-missing-glyph-expected.png:
  • platform/qt/svg/custom/svg-fonts-without-missing-glyph-expected.txt:
  • platform/qt/svg/zoom/page/zoom-hixie-mixed-008-expected.checksum: Added.
  • platform/qt/svg/zoom/page/zoom-hixie-mixed-008-expected.png: Added.
  • platform/qt/svg/zoom/page/zoom-hixie-mixed-008-expected.txt:
  • platform/qt/svg/zoom/text/zoom-hixie-mixed-008-expected.png:
  • platform/qt/svg/zoom/text/zoom-hixie-mixed-008-expected.txt:
10:54 PM Changeset in webkit [78964] by mihaip@chromium.org
  • 2 edits in trunk/LayoutTests

2011-02-17 Mihai Parparita <mihaip@chromium.org>

Unreviewed Chromium expectations update. Actually mark Windows and Linux
as IMAGE+TEXT.

  • platform/chromium/test_expectations.txt:
10:51 PM Changeset in webkit [78963] by mihaip@chromium.org
  • 2 edits in trunk/LayoutTests

2011-02-17 Mihai Parparita <mihaip@chromium.org>

Unreviewed Chromium expectations update. Fix expectations after r78951
(there are text difs too on Windows and Linux).

  • platform/chromium/test_expectations.txt:
10:38 PM Changeset in webkit [78962] by Lucas Forschler
  • 18 edits in branches/safari-534.20-branch/Source

Merge 78909.

10:35 PM Changeset in webkit [78961] by hayato@chromium.org
  • 5 edits
    1 add in trunk/Tools

2011-02-07 Hayato Ito <hayato@chromium.org>

Reviewed by Ojan Vafai.

Get rid of code which writes test results from test_type's
compare_output() method.
Writing test results now happens in single_test_runner, using
newly introduced test_result_writer module.

Subsequent patches will eliminate test_type/* classes.

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

  • Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
  • Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py: Added.
  • Scripts/webkitpy/layout_tests/test_types/image_diff.py:
  • Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
  • Scripts/webkitpy/layout_tests/test_types/text_diff.py:
10:33 PM Changeset in webkit [78960] by mitz@apple.com
  • 3 edits in trunk/Source/WebKit2

LLVM Compiler build fix.

  • UIProcess/WebResourceCacheManagerProxy.h:
  • WebProcess/ResourceCache/WebResourceCacheManager.h:
10:14 PM Changeset in webkit [78959] by Simon Fraser
  • 3 edits in trunk/Source/WebKit2

2011-02-17 Simon Fraser <Simon Fraser>

Fix Windows and Qt builds by fixing signature of platformPaint().

  • WebProcess/Plugins/Netscape/qt/NetscapePluginQt.cpp: (WebKit::NetscapePlugin::platformPaint):
  • WebProcess/Plugins/Netscape/win/NetscapePluginWin.cpp: (WebKit::NetscapePlugin::platformPaint):
10:08 PM Changeset in webkit [78958] by ggaren@apple.com
  • 3 edits in trunk/Source/JavaScriptCore

2011-02-17 Geoffrey Garen <ggaren@apple.com>

Reviewed by Sam Weinig.

Made object allocation secretly variable-sized (Shhhh!)
https://bugs.webkit.org/show_bug.cgi?id=54721


SunSpider reports no change.


Internally, MarkedBlock now makes variable-sized allocations, even
though MarkedSpace doesn't take advantage of this yet.

  • runtime/MarkedBlock.cpp: (JSC::MarkedBlock::MarkedBlock): No need to ASSERT that allocations are fixed-sized.
  • runtime/MarkedBlock.h: Shrunk the atom size so we can allocate things that are not multiples of 64 bytes.
9:49 PM Changeset in webkit [78957] by ggaren@apple.com
  • 4 edits in trunk/Source/JavaScriptCore

2011-02-17 Geoffrey Garen <ggaren@apple.com>

Reviewed by Sam Weinig.

Fixed some math errors when when using variable-sized cells
https://bugs.webkit.org/show_bug.cgi?id=54717


SunSpider reports no change.


Computer Science Barbie says, "Math is not so hard afterall!"

  • runtime/JSCell.h: (JSC::JSCell::MarkedBlock::allocate): Round up when calculating the minimum number of atoms required for a cell, since rounding down will get you splinched.
  • runtime/MarkedBlock.cpp: (JSC::MarkedBlock::MarkedBlock): (JSC::MarkedBlock::sweep):
  • runtime/MarkedBlock.h: (JSC::MarkedBlock::forEach): Changed a bunch of != tests to < tests because m_endAtom is actually a fuzzy end -- iterating from firstAtom() may not hit m_endAtom exactly.
9:44 PM Changeset in webkit [78956] by Simon Fraser
  • 14 edits in trunk/Source/WebKit2

2011-02-17 Simon Fraser <Simon Fraser>

Reviewed by Sam Weinig.

WebKit2 snapshots don't show plug-ins
https://bugs.webkit.org/show_bug.cgi?id=54716

Fix WebKit2 plug-ins to do a software paint for
snapshotting.

  • PluginProcess/PluginControllerProxy.h:
  • PluginProcess/PluginControllerProxy.cpp: (WebKit::PluginControllerProxy::snapshot): Respond to the snapshot message by getting a sharable bitmap from the plugin, and returning a handle to it in the reply.
  • PluginProcess/PluginControllerProxy.messages.in: Add the snapshot message.
  • Shared/Plugins/PluginQuirks.h:
  • Shared/Plugins/Netscape/mac/NetscapePluginModuleMac.mm: (WebKit::NetscapePluginModule::determineQuirks): Add a quirk for the ability to be snapshotted, which we only set for Flash at the moment.
  • WebProcess/Plugins/Netscape/NetscapePlugin.h:
  • WebProcess/Plugins/Netscape/NetscapePlugin.cpp: (WebKit::NetscapePlugin::snapshot): Create a shareable bitmap, and paint into it. (WebKit::NetscapePlugin::supportsSnapshotting): Test the quirk.
  • WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm: (WebKit::NetscapePlugin::platformPaint): Allow the paint to happen if we're snapshotting, even when using the CoreAnimation drawing model.
  • WebProcess/Plugins/Plugin.h: New snapshot method.
  • WebProcess/Plugins/PluginProxy.h:
  • WebProcess/Plugins/PluginProxy.cpp: (WebKit::PluginProxy::snapshot): Send a sync message to the plugin process, asking for a snapshot in a shareble bitmap.
  • WebProcess/Plugins/PluginView.h:
  • WebProcess/Plugins/PluginView.cpp: (WebKit::PluginView::paint): Use the snapshot if we have one, to avoid calling into the plugin to draw, which may run script.

(WebKit::PluginView::notifyWidget): Generate the snapshot before
a flattening paint, and throw it away after.

9:18 PM Changeset in webkit [78955] by ggaren@apple.com
  • 3 edits in trunk/Source/JavaScriptCore

2011-02-17 Geoffrey Garen <ggaren@apple.com>

Reviewed by Sam Weinig.

A little more abstraction for MarkedSpace::contains
https://bugs.webkit.org/show_bug.cgi?id=54715

  • runtime/MarkedBlock.h: (JSC::MarkedBlock::contains): Added a contains function, so MarkedSpace doesn't have to know how MarkedBlock tracks containment internally.
  • runtime/MarkedSpace.h: (JSC::MarkedSpace::contains): Call through to MarkedBlock to figure out if a cell that seems to be in a block is valid.
9:07 PM Changeset in webkit [78954] by ggaren@apple.com
  • 4 edits in trunk/Source/JavaScriptCore

2011-02-17 Geoffrey Garen <ggaren@apple.com>

Reviewed by Sam Weinig.

Removed the invariant that the last cell in a block is always marked
https://bugs.webkit.org/show_bug.cgi?id=54713


SunSpider reports no change.


This adds one branch to allocation, but simplifies the mark invariant,
especially in a world of variable-sized cells. Now, it really is true
that any cell whose mark bit is set is a valid, live cell whose
constructor has run and whose destructor has not run.

  • runtime/JSCell.h: (JSC::JSCell::MarkedBlock::allocate): Changed this do-while into a while since we can no longer rely on a set mark bit to break out of this loop before it reaches the end of the block.
  • runtime/MarkedBlock.cpp: (JSC::MarkedBlock::MarkedBlock): (JSC::MarkedBlock::sweep):
  • runtime/MarkedBlock.h: (JSC::MarkedBlock::isEmpty): (JSC::MarkedBlock::clearMarks): (JSC::MarkedBlock::markCount): (JSC::MarkedBlock::forEach): No need to set a special last mark bit.
8:58 PM Changeset in webkit [78953] by atwilson@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed expectations fix for chromium.

  • platform/chromium/test_expectations.txt:
8:53 PM Changeset in webkit [78952] by Lucas Forschler
  • 9 edits in branches/safari-534.20-branch/Source/WebKit2

Merge 78915.

8:48 PM Changeset in webkit [78951] by mihaip@chromium.org
  • 13 edits
    2 adds in trunk/LayoutTests

2011-02-17 Mihai Parparita <mihaip@chromium.org>

Reviewed by Kent Tamura.

[chromium] Video-related compositor tests failing in DumpRenderTree
https://bugs.webkit.org/show_bug.cgi?id=47231

Make tests fall back to .ogv (Theora) videos if they can't play the
.mp4/.mov files.

  • compositing/geometry/clipped-video-controller.html:
  • compositing/geometry/video-fixed-scrolling.html:
  • compositing/geometry/video-opacity-overlay.html:
  • compositing/layers-inside-overflow-scroll.html:
  • compositing/overflow/overflow-compositing-descendant.html:
  • compositing/overflow/scroll-ancestor-update.html:
  • compositing/reflections/load-video-in-reflection.html:
  • compositing/resources/alpha-gradient-small.ogv: Added.
  • compositing/resources/video.ogv: Added.
  • compositing/self-painting-layers.html:
  • compositing/self-painting-layers2.html:
  • compositing/video/video-background-color.html:
  • compositing/video/video-poster.html:
  • platform/chromium/test_expectations.txt:
8:44 PM Changeset in webkit [78950] by Lucas Forschler
  • 9 edits
    2 copies in branches/safari-534.20-branch

Merge 78729.

8:43 PM Changeset in webkit [78949] by dpranke@chromium.org
  • 2 edits in trunk/Tools

2011-02-17 Dirk Pranke <dpranke@chromium.org>

Reviewed by Adam Roben.

Add blacklist of remaining webkitpy/* modules that fail on
Win32, so that test-webkitpy will at least run cleanly.

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

  • Scripts/webkitpy/layout_tests/test/main.py:
8:38 PM Changeset in webkit [78948] by ojan@chromium.org
  • 2 edits in trunk/Websites/bugs.webkit.org

2011-02-17 Ojan Vafai <ojan@chromium.org>

Reviewed by Antonio Gomes.

make event handling work in Gecko
https://bugs.webkit.org/show_bug.cgi?id=54702

Gecko doesn't support the global event property. It's an IE-ism.

  • code-review.js:
8:35 PM Changeset in webkit [78947] by Simon Fraser
  • 2 edits in trunk/Tools

2011-02-17 Simon Fraser <Simon Fraser>

Reviewed by Sam Weinig.

Set a preference to ensure that scrollbars are in a predictable
state for DRT.

  • DumpRenderTree/mac/DumpRenderTree.mm: (resetDefaultsToConsistentValues):
8:35 PM Changeset in webkit [78946] by Simon Fraser
  • 3 edits in trunk/Source/WebCore

2011-02-17 Simon Fraser <Simon Fraser>

Reviewed by Sam Weinig.

Composited iframe content is missing from snapshots in WebKit2
https://bugs.webkit.org/show_bug.cgi?id=54696

We need to propagate the 'flattening' paint behavior flag
down to subviews while painting. WebKit1 does this via
code in WebFrameView, but this is a more general fix
that works in WebKit2 as well.

Made a utility method, parentFrameView(), which I changed
some other methods to use as well.

  • page/FrameView.cpp: (WebCore::FrameView::isEnclosedInCompositingLayer): (WebCore::FrameView::useSlowRepaints): (WebCore::FrameView::useSlowRepaintsIfNotOverlapped): (WebCore::FrameView::isOverlappedIncludingAncestors): (WebCore::FrameView::parentFrameView): (WebCore::FrameView::paintContents):
  • page/FrameView.h:
8:29 PM Changeset in webkit [78945] by commit-queue@webkit.org
  • 8 edits
    1 delete in trunk/Source/JavaScriptCore

2011-02-17 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r78856 and r78907.
http://trac.webkit.org/changeset/78856
http://trac.webkit.org/changeset/78907
https://bugs.webkit.org/show_bug.cgi?id=54705

These seem to break tests on 32-bit builds. (Requested by
aroben on #webkit).

  • JavaScriptCore.xcodeproj/project.pbxproj:
  • collector/handles/Global.h: (JSC::Global::internalSet):
  • collector/handles/Handle.h: (JSC::HandleTypes::getFromSlot): (JSC::HandleTypes::toJSValue): (JSC::HandleTypes::validateUpcast): (JSC::HandleConverter::operator->): (JSC::HandleConverter::operator*): (JSC::Handle::Handle): (JSC::Handle::get):
  • runtime/JSArray.cpp: (JSC::JSArray::sortNumeric):
  • runtime/JSObject.h: (JSC::JSObject::inlineGetOwnPropertySlot):
  • runtime/SlotAccessor.h: Removed.
  • runtime/WeakGCPtr.h: (JSC::WeakGCPtr::get): (JSC::WeakGCPtr::internalSet):
  • runtime/WriteBarrier.h: (JSC::DeprecatedPtr::DeprecatedPtr): (JSC::DeprecatedPtr::get): (JSC::DeprecatedPtr::operator*): (JSC::DeprecatedPtr::operator->): (JSC::DeprecatedPtr::slot): (JSC::DeprecatedPtr::operator UnspecifiedBoolType*): (JSC::DeprecatedPtr::operator!): (JSC::WriteBarrierBase::set): (JSC::WriteBarrierBase::get): (JSC::WriteBarrierBase::operator*): (JSC::WriteBarrierBase::operator->): (JSC::WriteBarrierBase::clear): (JSC::WriteBarrierBase::slot): (JSC::WriteBarrierBase::operator UnspecifiedBoolType*): (JSC::WriteBarrierBase::operator!): (JSC::WriteBarrierBase::setWithoutWriteBarrier): (JSC::WriteBarrier::WriteBarrier):
8:29 PM Changeset in webkit [78944] by dpranke@chromium.org
  • 3 edits in trunk/Tools

2011-02-17 Dirk Pranke <dpranke@chromium.org>

Reviewed by Adam Roben.

test-webkitpy doesn't work with the multiprocessing module on win32
or cygwin, so we skip it for now.

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

  • Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker_unittest.py:
  • Scripts/webkitpy/layout_tests/layout_package/run_webkit_tests_unittest.py:
8:21 PM Changeset in webkit [78943] by dpranke@chromium.org
  • 4 edits in trunk/Tools

2011-02-17 Dirk Pranke <dpranke@chromium.org>

Reviewed by Adam Roben.

Fix version, baseline_search_path for chromium-win-win7. Also
fix chromium_win_unittests, and fix port_testcase.make_port()
to correctly use the options passed into it and only set
results_directory() if necessary.

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

  • Scripts/webkitpy/layout_tests/port/chromium_win.py:
  • Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
  • Scripts/webkitpy/layout_tests/port/port_testcase.py:
8:19 PM Changeset in webkit [78942] by Lucas Forschler
  • 2 edits in branches/safari-534.20-branch/Source/WebCore

Merge 78917.

8:08 PM Changeset in webkit [78941] by Lucas Forschler
  • 7 edits in branches/safari-534.20-branch/Source/WebCore

Merge 78928.

7:18 PM Changeset in webkit [78940] by atwilson@chromium.org
  • 4 edits in trunk/Source/WebKit/chromium

2011-02-17 Andrew Wilson <atwilson@chromium.org>

Unreviewed, rolling out r78936.
http://trac.webkit.org/changeset/78936
https://bugs.webkit.org/show_bug.cgi?id=54632

Breaks chromium build

  • public/WebFrame.h:
  • src/WebFrameImpl.cpp:
  • src/WebFrameImpl.h:
7:01 PM Changeset in webkit [78939] by atwilson@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed expectations tweak in attempt to green up the chromium canaries.

  • platform/chromium/test_expectations.txt:
7:00 PM Changeset in webkit [78938] by Lucas Forschler
  • 4 edits in branches/safari-534.20-branch/Source/JavaScriptCore

Merge r78795

6:07 PM Changeset in webkit [78937] by atwilson@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed test expectations change to ignore errors for coords-units-03-b.svg until we can rebaseline it.

  • platform/chromium/test_expectations.txt:
6:01 PM Changeset in webkit [78936] by yuzo@google.com
  • 4 edits in trunk/Source/WebKit/chromium

2011-02-17 Yuzo Fujishima <yuzo@google.com>

Reviewed by Shinichiro Hamaji.

Fix for Bug 54632 - [chromium] Printing causes view to scroll
https://bugs.webkit.org/show_bug.cgi?id=54632

Expose setScrollOffset such that Chromium can restore the scroll offset
after printing the document. The bug will be fixed when the counterpart
patch http://codereview.chromium.org/6539011/ is landed for Chromium.

  • public/WebFrame.h:
  • src/WebFrameImpl.cpp: (WebKit::WebFrameImpl::setScrollOffset):
  • src/WebFrameImpl.h:
5:50 PM Changeset in webkit [78935] by Csaba Osztrogonác
  • 2 edits in trunk/Source/JavaScriptCore

Unreviewed.

[Qt] Buildfix.

  • wtf/RetainPtr.h: Add missing PLATFORM(CF) guard.
5:48 PM Changeset in webkit [78934] by atwilson@chromium.org
  • 485 edits
    1 copy
    9 adds
    4 deletes in trunk/LayoutTests

Unreviewed expectations changes.

  • platform/chromium-linux/css1/box_properties/clear_float-expected.checksum:
  • platform/chromium-linux/css1/box_properties/clear_float-expected.png:
  • platform/chromium-linux/css1/box_properties/float_on_text_elements-expected.checksum:
  • platform/chromium-linux/css1/box_properties/float_on_text_elements-expected.png:
  • platform/chromium-linux/css1/text_properties/text_align-expected.checksum:
  • platform/chromium-linux/css1/text_properties/text_align-expected.png:
  • platform/chromium-linux/css2.1/t0905-c414-flt-wrap-00-e-expected.checksum:
  • platform/chromium-linux/css2.1/t0905-c414-flt-wrap-00-e-expected.png:
  • platform/chromium-linux/css2.1/t0905-c5525-fltcont-00-d-g-expected.checksum:
  • platform/chromium-linux/css2.1/t0905-c5525-fltcont-00-d-g-expected.png:
  • platform/chromium-linux/css2.1/t0905-c5525-fltcont-00-d-g-expected.txt:
  • platform/chromium-linux/css2.1/t0905-c5525-fltmult-00-d-g-expected.checksum:
  • platform/chromium-linux/css2.1/t0905-c5525-fltmult-00-d-g-expected.png:
  • platform/chromium-linux/css2.1/t0905-c5525-fltwidth-00-c-g-expected.checksum:
  • platform/chromium-linux/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png:
  • platform/chromium-linux/css2.1/t0905-c5525-fltwidth-00-c-g-expected.txt:
  • platform/chromium-linux/css2.1/t1602-c43-center-00-d-ag-expected.checksum:
  • platform/chromium-linux/css2.1/t1602-c43-center-00-d-ag-expected.png:
  • platform/chromium-linux/css2.1/t1602-c546-txt-align-00-b-expected.checksum:
  • platform/chromium-linux/css2.1/t1602-c546-txt-align-00-b-expected.png:
  • platform/chromium-linux/editing/pasteboard/block-wrappers-necessary-expected.checksum:
  • platform/chromium-linux/editing/pasteboard/block-wrappers-necessary-expected.png:
  • platform/chromium-linux/editing/pasteboard/nested-blocks-with-text-area-expected.checksum:
  • platform/chromium-linux/editing/pasteboard/nested-blocks-with-text-area-expected.png:
  • platform/chromium-linux/editing/pasteboard/nested-blocks-with-text-field-expected.checksum:
  • platform/chromium-linux/editing/pasteboard/nested-blocks-with-text-field-expected.png:
  • platform/chromium-linux/editing/selection/3690703-2-expected.checksum:
  • platform/chromium-linux/editing/selection/3690703-2-expected.png:
  • platform/chromium-linux/editing/selection/3690703-2-expected.txt:
  • platform/chromium-linux/editing/selection/3690703-expected.checksum:
  • platform/chromium-linux/editing/selection/3690703-expected.png:
  • platform/chromium-linux/editing/selection/3690703-expected.txt:
  • platform/chromium-linux/editing/selection/3690719-expected.checksum:
  • platform/chromium-linux/editing/selection/3690719-expected.png:
  • platform/chromium-linux/editing/selection/3690719-expected.txt:
  • platform/chromium-linux/editing/style/5046875-2-expected.checksum:
  • platform/chromium-linux/editing/style/5046875-2-expected.png:
  • platform/chromium-linux/editing/style/block-style-001-expected.checksum:
  • platform/chromium-linux/editing/style/block-style-001-expected.png:
  • platform/chromium-linux/editing/style/block-style-002-expected.checksum:
  • platform/chromium-linux/editing/style/block-style-002-expected.png:
  • platform/chromium-linux/editing/style/block-style-003-expected.checksum:
  • platform/chromium-linux/editing/style/block-style-003-expected.png:
  • platform/chromium-linux/editing/style/create-block-for-style-002-expected.checksum:
  • platform/chromium-linux/editing/style/create-block-for-style-002-expected.png:
  • platform/chromium-linux/editing/style/create-block-for-style-003-expected.checksum:
  • platform/chromium-linux/editing/style/create-block-for-style-003-expected.png:
  • platform/chromium-linux/editing/style/create-block-for-style-004-expected.checksum:
  • platform/chromium-linux/editing/style/create-block-for-style-004-expected.png:
  • platform/chromium-linux/editing/style/create-block-for-style-005-expected.checksum:
  • platform/chromium-linux/editing/style/create-block-for-style-005-expected.png:
  • platform/chromium-linux/editing/style/create-block-for-style-006-expected.checksum:
  • platform/chromium-linux/editing/style/create-block-for-style-006-expected.png:
  • platform/chromium-linux/editing/style/create-block-for-style-008-expected.checksum:
  • platform/chromium-linux/editing/style/create-block-for-style-008-expected.png:
  • platform/chromium-linux/editing/style/create-block-for-style-009-expected.checksum:
  • platform/chromium-linux/editing/style/create-block-for-style-009-expected.png:
  • platform/chromium-linux/editing/style/create-block-for-style-010-expected.checksum:
  • platform/chromium-linux/editing/style/create-block-for-style-010-expected.png:
  • platform/chromium-linux/editing/style/create-block-for-style-011-expected.checksum:
  • platform/chromium-linux/editing/style/create-block-for-style-011-expected.png:
  • platform/chromium-linux/editing/style/create-block-for-style-012-expected.checksum:
  • platform/chromium-linux/editing/style/create-block-for-style-012-expected.png:
  • platform/chromium-linux/editing/style/create-block-for-style-013-expected.checksum:
  • platform/chromium-linux/editing/style/create-block-for-style-013-expected.png:
  • platform/chromium-linux/editing/style/table-selection-expected.checksum:
  • platform/chromium-linux/editing/style/table-selection-expected.png:
  • platform/chromium-linux/fast/block/basic/016-expected.checksum:
  • platform/chromium-linux/fast/block/basic/016-expected.png:
  • platform/chromium-linux/fast/block/basic/016-expected.txt: Removed.
  • platform/chromium-linux/fast/block/float/013-expected.checksum:
  • platform/chromium-linux/fast/block/float/013-expected.png:
  • platform/chromium-linux/fast/block/float/016-expected.checksum:
  • platform/chromium-linux/fast/block/float/016-expected.png:
  • platform/chromium-linux/fast/block/margin-collapse/103-expected.txt:
  • platform/chromium-linux/fast/block/positioning/051-expected.checksum:
  • platform/chromium-linux/fast/block/positioning/051-expected.png:
  • platform/chromium-linux/fast/block/positioning/inline-block-relposition-expected.checksum:
  • platform/chromium-linux/fast/block/positioning/inline-block-relposition-expected.png:
  • platform/chromium-linux/fast/block/positioning/inline-block-relposition-expected.txt:
  • platform/chromium-linux/fast/blockflow/box-shadow-horizontal-bt-expected.checksum:
  • platform/chromium-linux/fast/blockflow/box-shadow-horizontal-bt-expected.png:
  • platform/chromium-linux/fast/blockflow/box-shadow-vertical-lr-expected.checksum:
  • platform/chromium-linux/fast/blockflow/box-shadow-vertical-lr-expected.png:
  • platform/chromium-linux/fast/blockflow/box-shadow-vertical-rl-expected.checksum:
  • platform/chromium-linux/fast/blockflow/box-shadow-vertical-rl-expected.png:
  • platform/chromium-linux/fast/box-shadow/inset-expected.checksum:
  • platform/chromium-linux/fast/box-shadow/inset-expected.png:
  • platform/chromium-linux/fast/css/create_element_align-expected.checksum:
  • platform/chromium-linux/fast/css/create_element_align-expected.png:
  • platform/chromium-linux/fast/dom/HTMLTableElement/createCaption-expected.checksum:
  • platform/chromium-linux/fast/dom/HTMLTableElement/createCaption-expected.png:
  • platform/chromium-linux/fast/forms/button-default-title-expected.checksum:
  • platform/chromium-linux/fast/forms/button-default-title-expected.png:
  • platform/chromium-linux/fast/forms/button-default-title-expected.txt:
  • platform/chromium-linux/fast/forms/control-clip-expected.checksum:
  • platform/chromium-linux/fast/forms/control-clip-expected.png:
  • platform/chromium-linux/fast/forms/control-clip-expected.txt:
  • platform/chromium-linux/fast/forms/file-input-direction-expected.txt:
  • platform/chromium-linux/fast/inline-block/003-expected.checksum:
  • platform/chromium-linux/fast/inline-block/003-expected.png:
  • platform/chromium-linux/fast/inline-block/inline-block-vertical-align-expected.checksum:
  • platform/chromium-linux/fast/inline-block/inline-block-vertical-align-expected.png:
  • platform/chromium-linux/fast/multicol/float-avoidance-expected.checksum:
  • platform/chromium-linux/fast/multicol/float-avoidance-expected.png:
  • platform/chromium-linux/fast/multicol/float-avoidance-expected.txt: Removed.
  • platform/chromium-linux/fast/multicol/shadow-breaking-expected.checksum:
  • platform/chromium-linux/fast/multicol/shadow-breaking-expected.png:
  • platform/chromium-linux/fast/multicol/vertical-lr/float-avoidance-expected.checksum:
  • platform/chromium-linux/fast/multicol/vertical-lr/float-avoidance-expected.png:
  • platform/chromium-linux/fast/multicol/vertical-rl/float-avoidance-expected.checksum:
  • platform/chromium-linux/fast/multicol/vertical-rl/float-avoidance-expected.png:
  • platform/chromium-linux/fast/parser/001-expected.checksum:
  • platform/chromium-linux/fast/parser/001-expected.png:
  • platform/chromium-linux/fast/repaint/continuation-after-outline-expected.checksum:
  • platform/chromium-linux/fast/repaint/continuation-after-outline-expected.png:
  • platform/chromium-linux/fast/repaint/control-clip-expected.checksum:
  • platform/chromium-linux/fast/repaint/control-clip-expected.png:
  • platform/chromium-linux/fast/repaint/control-clip-expected.txt:
  • platform/chromium-linux/fast/repaint/line-flow-with-floats-1-expected.checksum:
  • platform/chromium-linux/fast/repaint/line-flow-with-floats-1-expected.png:
  • platform/chromium-linux/fast/repaint/line-flow-with-floats-10-expected.checksum:
  • platform/chromium-linux/fast/repaint/line-flow-with-floats-10-expected.png:
  • platform/chromium-linux/fast/repaint/line-flow-with-floats-2-expected.checksum:
  • platform/chromium-linux/fast/repaint/line-flow-with-floats-2-expected.png:
  • platform/chromium-linux/fast/repaint/line-flow-with-floats-3-expected.checksum:
  • platform/chromium-linux/fast/repaint/line-flow-with-floats-3-expected.png:
  • platform/chromium-linux/fast/repaint/line-flow-with-floats-4-expected.checksum:
  • platform/chromium-linux/fast/repaint/line-flow-with-floats-4-expected.png:
  • platform/chromium-linux/fast/repaint/line-flow-with-floats-5-expected.checksum:
  • platform/chromium-linux/fast/repaint/line-flow-with-floats-5-expected.png:
  • platform/chromium-linux/fast/repaint/line-flow-with-floats-6-expected.checksum:
  • platform/chromium-linux/fast/repaint/line-flow-with-floats-6-expected.png:
  • platform/chromium-linux/fast/repaint/line-flow-with-floats-7-expected.checksum:
  • platform/chromium-linux/fast/repaint/line-flow-with-floats-7-expected.png:
  • platform/chromium-linux/fast/repaint/line-flow-with-floats-8-expected.checksum:
  • platform/chromium-linux/fast/repaint/line-flow-with-floats-8-expected.png:
  • platform/chromium-linux/fast/repaint/line-flow-with-floats-9-expected.checksum:
  • platform/chromium-linux/fast/repaint/line-flow-with-floats-9-expected.png:
  • platform/chromium-linux/fast/repaint/reflection-redraw-expected.checksum:
  • platform/chromium-linux/fast/repaint/reflection-redraw-expected.png:
  • platform/chromium-linux/fast/replaced/007-expected.checksum:
  • platform/chromium-linux/fast/replaced/007-expected.png:
  • platform/chromium-linux/fast/ruby/nested-ruby-expected.checksum:
  • platform/chromium-linux/fast/ruby/nested-ruby-expected.png:
  • platform/chromium-linux/fast/ruby/nested-ruby-expected.txt:
  • platform/chromium-linux/fast/ruby/ruby-empty-rt-expected.checksum:
  • platform/chromium-linux/fast/ruby/ruby-empty-rt-expected.png:
  • platform/chromium-linux/fast/ruby/ruby-run-break-expected.checksum:
  • platform/chromium-linux/fast/ruby/ruby-run-break-expected.png:
  • platform/chromium-linux/fast/ruby/ruby-runs-expected.checksum:
  • platform/chromium-linux/fast/ruby/ruby-runs-expected.png:
  • platform/chromium-linux/fast/ruby/ruby-runs-spans-expected.checksum:
  • platform/chromium-linux/fast/ruby/ruby-runs-spans-expected.png:
  • platform/chromium-linux/fast/ruby/rubyDOM-insert-rt-expected.checksum:
  • platform/chromium-linux/fast/ruby/rubyDOM-insert-rt-expected.png:
  • platform/chromium-linux/fast/ruby/rubyDOM-insert-text1-expected.checksum:
  • platform/chromium-linux/fast/ruby/rubyDOM-insert-text1-expected.png:
  • platform/chromium-linux/fast/table/011-expected.checksum:
  • platform/chromium-linux/fast/table/011-expected.png:
  • platform/chromium-linux/fast/table/035-expected.checksum:
  • platform/chromium-linux/fast/table/035-expected.png:
  • platform/chromium-linux/fast/table/035-vertical-expected.checksum:
  • platform/chromium-linux/fast/table/035-vertical-expected.png:
  • platform/chromium-linux/fast/table/border-collapsing/004-expected.checksum:
  • platform/chromium-linux/fast/table/border-collapsing/004-expected.png:
  • platform/chromium-linux/fast/table/border-collapsing/004-vertical-expected.checksum:
  • platform/chromium-linux/fast/table/border-collapsing/004-vertical-expected.png:
  • platform/chromium-linux/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.checksum:
  • platform/chromium-linux/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.png:
  • platform/chromium-linux/fast/table/colgroup-preceded-by-caption-expected.checksum:
  • platform/chromium-linux/fast/table/colgroup-preceded-by-caption-expected.png:
  • platform/chromium-linux/fast/table/colgroup-spanning-groups-rules-expected.checksum:
  • platform/chromium-linux/fast/table/colgroup-spanning-groups-rules-expected.png:
  • platform/chromium-linux/fast/table/frame-and-rules-expected.checksum:
  • platform/chromium-linux/fast/table/frame-and-rules-expected.png:
  • platform/chromium-linux/fast/table/percent-heights-expected.checksum:
  • platform/chromium-linux/fast/table/percent-heights-expected.png:
  • platform/chromium-linux/fast/table/rowspan-paint-order-vertical-expected.checksum:
  • platform/chromium-linux/fast/table/rowspan-paint-order-vertical-expected.png:
  • platform/chromium-linux/fast/text/atsui-negative-spacing-features-expected.checksum:
  • platform/chromium-linux/fast/text/atsui-negative-spacing-features-expected.png:
  • platform/chromium-linux/fast/text/atsui-negative-spacing-features-expected.txt: Removed.
  • platform/chromium-linux/fast/text/atsui-spacing-features-expected.checksum:
  • platform/chromium-linux/fast/text/atsui-spacing-features-expected.png:
  • platform/chromium-linux/fast/text/atsui-spacing-features-expected.txt:
  • platform/chromium-linux/fast/text/basic/002-expected.checksum:
  • platform/chromium-linux/fast/text/basic/002-expected.png:
  • platform/chromium-linux/fast/text/capitalize-boundaries-expected.checksum:
  • platform/chromium-linux/fast/text/capitalize-boundaries-expected.png:
  • platform/chromium-linux/fast/text/capitalize-boundaries-expected.txt:
  • platform/chromium-linux/fast/text/international/bidi-override-expected.checksum:
  • platform/chromium-linux/fast/text/international/bidi-override-expected.png:
  • platform/chromium-linux/fast/text/justified-selection-at-edge-expected.checksum:
  • platform/chromium-linux/fast/text/justified-selection-at-edge-expected.png:
  • platform/chromium-linux/fast/text/justified-selection-expected.checksum:
  • platform/chromium-linux/fast/text/justified-selection-expected.png:
  • platform/chromium-linux/fast/text/justify-nbsp-expected.checksum: Added.
  • platform/chromium-linux/fast/text/justify-nbsp-expected.png: Copied from LayoutTests/platform/chromium-linux/fast/repaint/continuation-after-outline-expected.png.
  • platform/chromium-linux/fast/text/justify-padding-distribution-expected.checksum: Added.
  • platform/chromium-linux/fast/text/justify-padding-distribution-expected.png: Added.
  • platform/chromium-linux/fast/text/trailing-white-space-2-expected.checksum:
  • platform/chromium-linux/fast/text/trailing-white-space-2-expected.png:
  • platform/chromium-linux/fast/text/trailing-white-space-expected.checksum:
  • platform/chromium-linux/fast/text/trailing-white-space-expected.png:
  • platform/chromium-linux/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.checksum: Added.
  • platform/chromium-linux/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.png: Added.
  • platform/chromium-linux/svg/custom/svg-fonts-in-html-expected.checksum:
  • platform/chromium-linux/svg/custom/svg-fonts-in-html-expected.png:
  • platform/chromium-linux/svg/custom/svg-fonts-in-html-expected.txt: Removed.
  • platform/chromium-linux/svg/hixie/mixed/008-expected.checksum:
  • platform/chromium-linux/svg/hixie/mixed/008-expected.png:
  • platform/chromium-linux/svg/zoom/page/zoom-hixie-mixed-008-expected.checksum:
  • platform/chromium-linux/svg/zoom/page/zoom-hixie-mixed-008-expected.png:
  • platform/chromium-linux/svg/zoom/text/zoom-hixie-mixed-008-expected.checksum:
  • platform/chromium-linux/svg/zoom/text/zoom-hixie-mixed-008-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug10633-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug10633-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug109043-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug109043-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug113424-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug113424-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug11384q-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug11384q-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug11384s-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug11384s-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug1163-1-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug1163-1-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug1188-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug1188-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug1188-expected.txt:
  • platform/chromium-linux/tables/mozilla/bugs/bug119786-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug119786-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug126742-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug126742-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug127267-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug127267-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug1302-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug1302-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug131020-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug131020-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug131020_iframe-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug131020_iframe-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug1318-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug1318-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug1318-expected.txt:
  • platform/chromium-linux/tables/mozilla/bugs/bug14323-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug14323-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug149275-1-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug149275-1-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug1802-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug1802-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug1802s-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug1802s-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug18664-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug18664-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug222846-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug222846-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug23235-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug23235-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug2479-2-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug2479-2-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug2479-2-expected.txt:
  • platform/chromium-linux/tables/mozilla/bugs/bug27038-3-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug27038-3-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug3260-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug3260-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug3454-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug3454-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug3977-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug3977-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug43854-1-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug43854-1-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug43854-2-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug43854-2-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug48028-2-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug48028-2-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug5838-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug5838-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug60804-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug60804-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug60807-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug60807-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug6304-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug6304-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug67915-1-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug67915-1-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug69382-1-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug69382-1-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug81934-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug81934-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug88035-2-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug88035-2-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug8950-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug8950-expected.png:
  • platform/chromium-linux/tables/mozilla/collapsing_borders/bug41262-3-expected.checksum:
  • platform/chromium-linux/tables/mozilla/collapsing_borders/bug41262-3-expected.png:
  • platform/chromium-linux/tables/mozilla/core/bloomberg-expected.checksum:
  • platform/chromium-linux/tables/mozilla/core/bloomberg-expected.png:
  • platform/chromium-linux/tables/mozilla/core/bloomberg-expected.txt:
  • platform/chromium-linux/tables/mozilla/core/captions-expected.checksum:
  • platform/chromium-linux/tables/mozilla/core/captions-expected.png:
  • platform/chromium-linux/tables/mozilla/core/misc-expected.checksum:
  • platform/chromium-linux/tables/mozilla/core/misc-expected.png:
  • platform/chromium-linux/tables/mozilla/core/row_span-expected.checksum:
  • platform/chromium-linux/tables/mozilla/core/row_span-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/backgr_layers-opacity-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/backgr_layers-opacity-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/backgr_position-table-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/backgr_position-table-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-cell-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-cell-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-column-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-column-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-column-group-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-column-group-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-row-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-row-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-row-group-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-row-group-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/body_col-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/body_col-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/body_tbody-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/body_tbody-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/body_tfoot-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/body_tfoot-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/colgroup_align_center-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/colgroup_align_center-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/colgroup_align_justify-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/colgroup_align_justify-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/colgroup_align_left-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/colgroup_align_left-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/colgroup_align_right-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/colgroup_align_right-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/colgroup_span-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/colgroup_span-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/colgroup_valign_baseline-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/colgroup_valign_baseline-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/colgroup_valign_bottom-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/colgroup_valign_bottom-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/colgroup_valign_middle-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/colgroup_valign_middle-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/colgroup_valign_top-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/colgroup_valign_top-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/colgroup_width_pct-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/colgroup_width_pct-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/colgroup_width_px-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/colgroup_width_px-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/table_frame_border-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/table_frame_border-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/table_frame_box-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/table_frame_box-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/table_row_align_center-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/table_row_align_center-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/table_rules_all-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/table_rules_all-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/tables_row_th_nowrap-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/tables_row_th_nowrap-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/tables_th_align_center-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/tables_th_align_center-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/tables_th_colspan-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/tables_th_colspan-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/tables_th_height-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/tables_th_height-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/tbody_align_center-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/tbody_align_center-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/tfoot_align_center-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/tfoot_align_center-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/th_valign_baseline-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/th_valign_baseline-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/th_valign_bottom-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/th_valign_bottom-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/th_valign_middle-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/th_valign_middle-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/th_valign_top-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/th_valign_top-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/thead_align_center-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/thead_align_center-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/x_caption_align_bottom-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/x_caption_align_bottom-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/x_caption_align_top-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/x_caption_align_top-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/x_caption_class-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/x_caption_class-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/x_caption_id-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/x_caption_id-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/x_caption_style-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/x_caption_style-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/x_table-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/x_table-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/x_tbody_align_justify-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/x_tbody_align_justify-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/x_td_align_center-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/x_td_align_center-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/x_td_align_justify-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/x_td_align_justify-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/x_tfoot_align_justify-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/x_tfoot_align_justify-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/x_th_align_justify-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/x_th_align_justify-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/x_th_colspan-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/x_th_colspan-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/x_th_valign_baseline-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/x_th_valign_baseline-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/x_th_valign_bottom-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/x_th_valign_bottom-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/x_th_width-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/x_th_width-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/x_thead_align_justify-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/x_thead_align_justify-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/x_tr_align_center-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/x_tr_align_center-expected.png:
  • platform/chromium-linux/tables/mozilla/marvin/x_tr_align_justify-expected.checksum:
  • platform/chromium-linux/tables/mozilla/marvin/x_tr_align_justify-expected.png:
  • platform/chromium-linux/tables/mozilla/other/body_col-expected.checksum:
  • platform/chromium-linux/tables/mozilla/other/body_col-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug10140-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug10140-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug10216-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug10216-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug1055-2-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug1055-2-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug106966-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug106966-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug1128-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug1128-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug14007-1-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug14007-1-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug29058-2-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug3166-11-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug3166-11-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug3166-9-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug3166-9-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug91057-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug91057-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/core/captions1-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/core/captions1-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/core/captions2-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/core/captions2-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/core/captions3-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/core/captions3-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_above-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_above-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_below-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_below-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_void-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_void-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/other/test4-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/other/test4-expected.png:
  • platform/chromium-mac-snowleopard/fast/text/atsui-negative-spacing-features-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/atsui-negative-spacing-features-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/text/atsui-spacing-features-expected.checksum: Added.
  • platform/chromium-mac-snowleopard/fast/text/atsui-spacing-features-expected.png: Added.
5:32 PM Changeset in webkit [78933] by Martin Robinson
  • 353 edits
    28 adds in trunk/LayoutTests

2011-02-17 Martin Robinson <mrobinson@igalia.com>

Updated GTK+ expectations after r78846. Add new pixel results for tests that
have changed and are missing them.

5:09 PM Changeset in webkit [78932] by Martin Robinson
  • 2 edits
    225 adds in trunk/LayoutTests

2011-02-17 Martin Robinson <mrobinson@igalia.com>

Continue importing GTK+ results for the Mozilla table tests.

  • platform/gtk/Skipped: Unskip tests which now have results.
4:50 PM Changeset in webkit [78931] by atwilson@chromium.org
  • 2 edits
    2 adds in trunk/LayoutTests

Unreviewed expectations change.

Added expectations for new test (still disabled for linux until canaries catch up).

  • platform/chromium-mac/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.checksum: Added.
  • platform/chromium-mac/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.png: Added.
  • platform/chromium/test_expectations.txt:
4:46 PM Changeset in webkit [78930] by dpranke@chromium.org
  • 3 edits in trunk/Tools

2011-02-17 Dirk Pranke <dpranke@chromium.org>

Reviewed by Ojan Vafai.

Fix a hang in new-run-webkit-tests when run with
--dry-run --worker-model=processes

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

  • Scripts/webkitpy/layout_tests/layout_package/test_runner2.py:
  • Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
4:34 PM Changeset in webkit [78929] by atwilson@chromium.org
  • 720 edits
    5 adds in trunk/LayoutTests

Unreviewed win expectations update after recent font rendering changes.

  • platform/chromium-win/css1/box_properties/clear_float-expected.checksum:
  • platform/chromium-win/css1/box_properties/clear_float-expected.png:
  • platform/chromium-win/css1/box_properties/clear_float-expected.txt:
  • platform/chromium-win/css1/box_properties/float_elements_in_series-expected.checksum:
  • platform/chromium-win/css1/box_properties/float_elements_in_series-expected.png:
  • platform/chromium-win/css1/box_properties/float_on_text_elements-expected.checksum:
  • platform/chromium-win/css1/box_properties/float_on_text_elements-expected.png:
  • platform/chromium-win/css1/box_properties/float_on_text_elements-expected.txt:
  • platform/chromium-win/css1/text_properties/text_align-expected.checksum:
  • platform/chromium-win/css1/text_properties/text_align-expected.png:
  • platform/chromium-win/css1/text_properties/text_align-expected.txt:
  • platform/chromium-win/css2.1/t0805-c5518-brdr-t-01-e-expected.checksum:
  • platform/chromium-win/css2.1/t0805-c5518-brdr-t-01-e-expected.png:
  • platform/chromium-win/css2.1/t0805-c5518-brdr-t-01-e-expected.txt:
  • platform/chromium-win/css2.1/t0805-c5520-brdr-b-01-e-expected.checksum:
  • platform/chromium-win/css2.1/t0805-c5520-brdr-b-01-e-expected.png:
  • platform/chromium-win/css2.1/t0805-c5520-brdr-b-01-e-expected.txt:
  • platform/chromium-win/css2.1/t0905-c414-flt-wrap-00-e-expected.checksum:
  • platform/chromium-win/css2.1/t0905-c414-flt-wrap-00-e-expected.png:
  • platform/chromium-win/css2.1/t0905-c414-flt-wrap-00-e-expected.txt:
  • platform/chromium-win/css2.1/t0905-c5525-fltcont-00-d-g-expected.checksum:
  • platform/chromium-win/css2.1/t0905-c5525-fltcont-00-d-g-expected.png:
  • platform/chromium-win/css2.1/t0905-c5525-fltcont-00-d-g-expected.txt:
  • platform/chromium-win/css2.1/t0905-c5525-fltmult-00-d-g-expected.checksum:
  • platform/chromium-win/css2.1/t0905-c5525-fltmult-00-d-g-expected.png:
  • platform/chromium-win/css2.1/t0905-c5525-fltmult-00-d-g-expected.txt:
  • platform/chromium-win/css2.1/t0905-c5525-fltwidth-00-c-g-expected.checksum:
  • platform/chromium-win/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png:
  • platform/chromium-win/css2.1/t0905-c5525-fltwidth-00-c-g-expected.txt:
  • platform/chromium-win/css2.1/t1602-c43-center-00-d-ag-expected.checksum:
  • platform/chromium-win/css2.1/t1602-c43-center-00-d-ag-expected.png:
  • platform/chromium-win/css2.1/t1602-c43-center-00-d-ag-expected.txt:
  • platform/chromium-win/css2.1/t1602-c546-txt-align-00-b-expected.checksum:
  • platform/chromium-win/css2.1/t1602-c546-txt-align-00-b-expected.png:
  • platform/chromium-win/css2.1/t1602-c546-txt-align-00-b-expected.txt:
  • platform/chromium-win/editing/pasteboard/block-wrappers-necessary-expected.checksum:
  • platform/chromium-win/editing/pasteboard/block-wrappers-necessary-expected.png:
  • platform/chromium-win/editing/pasteboard/block-wrappers-necessary-expected.txt:
  • platform/chromium-win/editing/pasteboard/nested-blocks-with-text-area-expected.checksum:
  • platform/chromium-win/editing/pasteboard/nested-blocks-with-text-area-expected.png:
  • platform/chromium-win/editing/pasteboard/nested-blocks-with-text-area-expected.txt:
  • platform/chromium-win/editing/pasteboard/nested-blocks-with-text-field-expected.checksum:
  • platform/chromium-win/editing/pasteboard/nested-blocks-with-text-field-expected.png:
  • platform/chromium-win/editing/pasteboard/nested-blocks-with-text-field-expected.txt:
  • platform/chromium-win/editing/selection/3690703-2-expected.checksum:
  • platform/chromium-win/editing/selection/3690703-2-expected.png:
  • platform/chromium-win/editing/selection/3690703-2-expected.txt:
  • platform/chromium-win/editing/selection/3690703-expected.checksum:
  • platform/chromium-win/editing/selection/3690703-expected.png:
  • platform/chromium-win/editing/selection/3690703-expected.txt:
  • platform/chromium-win/editing/selection/3690719-expected.checksum:
  • platform/chromium-win/editing/selection/3690719-expected.png:
  • platform/chromium-win/editing/selection/3690719-expected.txt:
  • platform/chromium-win/editing/style/5046875-2-expected.checksum:
  • platform/chromium-win/editing/style/5046875-2-expected.png:
  • platform/chromium-win/editing/style/5046875-2-expected.txt:
  • platform/chromium-win/editing/style/block-style-001-expected.checksum:
  • platform/chromium-win/editing/style/block-style-001-expected.png:
  • platform/chromium-win/editing/style/block-style-001-expected.txt:
  • platform/chromium-win/editing/style/block-style-002-expected.checksum:
  • platform/chromium-win/editing/style/block-style-002-expected.png:
  • platform/chromium-win/editing/style/block-style-002-expected.txt:
  • platform/chromium-win/editing/style/block-style-003-expected.checksum:
  • platform/chromium-win/editing/style/block-style-003-expected.png:
  • platform/chromium-win/editing/style/block-style-003-expected.txt:
  • platform/chromium-win/editing/style/create-block-for-style-002-expected.checksum:
  • platform/chromium-win/editing/style/create-block-for-style-002-expected.png:
  • platform/chromium-win/editing/style/create-block-for-style-002-expected.txt:
  • platform/chromium-win/editing/style/create-block-for-style-003-expected.checksum:
  • platform/chromium-win/editing/style/create-block-for-style-003-expected.png:
  • platform/chromium-win/editing/style/create-block-for-style-003-expected.txt:
  • platform/chromium-win/editing/style/create-block-for-style-004-expected.checksum:
  • platform/chromium-win/editing/style/create-block-for-style-004-expected.png:
  • platform/chromium-win/editing/style/create-block-for-style-004-expected.txt:
  • platform/chromium-win/editing/style/create-block-for-style-005-expected.checksum:
  • platform/chromium-win/editing/style/create-block-for-style-005-expected.png:
  • platform/chromium-win/editing/style/create-block-for-style-005-expected.txt:
  • platform/chromium-win/editing/style/create-block-for-style-006-expected.checksum:
  • platform/chromium-win/editing/style/create-block-for-style-006-expected.png:
  • platform/chromium-win/editing/style/create-block-for-style-006-expected.txt:
  • platform/chromium-win/editing/style/create-block-for-style-008-expected.checksum:
  • platform/chromium-win/editing/style/create-block-for-style-008-expected.png:
  • platform/chromium-win/editing/style/create-block-for-style-008-expected.txt:
  • platform/chromium-win/editing/style/create-block-for-style-009-expected.checksum:
  • platform/chromium-win/editing/style/create-block-for-style-009-expected.png:
  • platform/chromium-win/editing/style/create-block-for-style-009-expected.txt:
  • platform/chromium-win/editing/style/create-block-for-style-010-expected.checksum:
  • platform/chromium-win/editing/style/create-block-for-style-010-expected.png:
  • platform/chromium-win/editing/style/create-block-for-style-010-expected.txt:
  • platform/chromium-win/editing/style/create-block-for-style-011-expected.checksum:
  • platform/chromium-win/editing/style/create-block-for-style-011-expected.png:
  • platform/chromium-win/editing/style/create-block-for-style-011-expected.txt:
  • platform/chromium-win/editing/style/create-block-for-style-012-expected.checksum:
  • platform/chromium-win/editing/style/create-block-for-style-012-expected.png:
  • platform/chromium-win/editing/style/create-block-for-style-012-expected.txt:
  • platform/chromium-win/editing/style/create-block-for-style-013-expected.checksum:
  • platform/chromium-win/editing/style/create-block-for-style-013-expected.png:
  • platform/chromium-win/editing/style/create-block-for-style-013-expected.txt:
  • platform/chromium-win/editing/style/table-selection-expected.checksum:
  • platform/chromium-win/editing/style/table-selection-expected.png:
  • platform/chromium-win/editing/style/table-selection-expected.txt:
  • platform/chromium-win/fast/block/basic/016-expected.checksum:
  • platform/chromium-win/fast/block/basic/016-expected.png:
  • platform/chromium-win/fast/block/basic/016-expected.txt:
  • platform/chromium-win/fast/block/float/013-expected.checksum:
  • platform/chromium-win/fast/block/float/013-expected.png:
  • platform/chromium-win/fast/block/float/013-expected.txt:
  • platform/chromium-win/fast/block/float/016-expected.checksum:
  • platform/chromium-win/fast/block/float/016-expected.png:
  • platform/chromium-win/fast/block/float/016-expected.txt:
  • platform/chromium-win/fast/block/margin-collapse/103-expected.txt:
  • platform/chromium-win/fast/block/positioning/051-expected.checksum:
  • platform/chromium-win/fast/block/positioning/051-expected.png:
  • platform/chromium-win/fast/block/positioning/051-expected.txt:
  • platform/chromium-win/fast/block/positioning/inline-block-relposition-expected.checksum:
  • platform/chromium-win/fast/block/positioning/inline-block-relposition-expected.png:
  • platform/chromium-win/fast/block/positioning/inline-block-relposition-expected.txt:
  • platform/chromium-win/fast/blockflow/box-shadow-horizontal-bt-expected.checksum:
  • platform/chromium-win/fast/blockflow/box-shadow-horizontal-bt-expected.png:
  • platform/chromium-win/fast/blockflow/box-shadow-horizontal-bt-expected.txt:
  • platform/chromium-win/fast/blockflow/box-shadow-vertical-lr-expected.checksum:
  • platform/chromium-win/fast/blockflow/box-shadow-vertical-lr-expected.png:
  • platform/chromium-win/fast/blockflow/box-shadow-vertical-lr-expected.txt:
  • platform/chromium-win/fast/blockflow/box-shadow-vertical-rl-expected.checksum:
  • platform/chromium-win/fast/blockflow/box-shadow-vertical-rl-expected.png:
  • platform/chromium-win/fast/blockflow/box-shadow-vertical-rl-expected.txt:
  • platform/chromium-win/fast/box-shadow/inset-expected.checksum:
  • platform/chromium-win/fast/box-shadow/inset-expected.png:
  • platform/chromium-win/fast/box-shadow/inset-expected.txt:
  • platform/chromium-win/fast/css/create_element_align-expected.checksum:
  • platform/chromium-win/fast/css/create_element_align-expected.png:
  • platform/chromium-win/fast/css/create_element_align-expected.txt:
  • platform/chromium-win/fast/dom/HTMLTableElement/createCaption-expected.checksum:
  • platform/chromium-win/fast/dom/HTMLTableElement/createCaption-expected.png:
  • platform/chromium-win/fast/dom/HTMLTableElement/createCaption-expected.txt:
  • platform/chromium-win/fast/forms/button-default-title-expected.checksum:
  • platform/chromium-win/fast/forms/button-default-title-expected.png:
  • platform/chromium-win/fast/forms/button-default-title-expected.txt:
  • platform/chromium-win/fast/forms/control-clip-expected.checksum:
  • platform/chromium-win/fast/forms/control-clip-expected.png:
  • platform/chromium-win/fast/forms/control-clip-expected.txt:
  • platform/chromium-win/fast/forms/file-input-direction-expected.txt:
  • platform/chromium-win/fast/inline-block/003-expected.checksum:
  • platform/chromium-win/fast/inline-block/003-expected.png:
  • platform/chromium-win/fast/inline-block/003-expected.txt:
  • platform/chromium-win/fast/inline-block/inline-block-vertical-align-expected.checksum:
  • platform/chromium-win/fast/inline-block/inline-block-vertical-align-expected.png:
  • platform/chromium-win/fast/inline-block/inline-block-vertical-align-expected.txt:
  • platform/chromium-win/fast/multicol/float-avoidance-expected.checksum:
  • platform/chromium-win/fast/multicol/float-avoidance-expected.png:
  • platform/chromium-win/fast/multicol/float-avoidance-expected.txt:
  • platform/chromium-win/fast/multicol/shadow-breaking-expected.checksum:
  • platform/chromium-win/fast/multicol/shadow-breaking-expected.png:
  • platform/chromium-win/fast/multicol/vertical-lr/float-avoidance-expected.checksum:
  • platform/chromium-win/fast/multicol/vertical-lr/float-avoidance-expected.png:
  • platform/chromium-win/fast/multicol/vertical-lr/float-avoidance-expected.txt:
  • platform/chromium-win/fast/multicol/vertical-rl/float-avoidance-expected.checksum:
  • platform/chromium-win/fast/multicol/vertical-rl/float-avoidance-expected.png:
  • platform/chromium-win/fast/multicol/vertical-rl/float-avoidance-expected.txt:
  • platform/chromium-win/fast/parser/001-expected.checksum:
  • platform/chromium-win/fast/parser/001-expected.png:
  • platform/chromium-win/fast/parser/001-expected.txt:
  • platform/chromium-win/fast/repaint/continuation-after-outline-expected.checksum:
  • platform/chromium-win/fast/repaint/continuation-after-outline-expected.png:
  • platform/chromium-win/fast/repaint/continuation-after-outline-expected.txt:
  • platform/chromium-win/fast/repaint/control-clip-expected.checksum:
  • platform/chromium-win/fast/repaint/control-clip-expected.png:
  • platform/chromium-win/fast/repaint/control-clip-expected.txt:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-1-expected.checksum:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-1-expected.png:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-1-expected.txt:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-10-expected.checksum:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-10-expected.png:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-10-expected.txt:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-2-expected.checksum:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-2-expected.png:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-2-expected.txt:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-3-expected.checksum:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-3-expected.png:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-3-expected.txt:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-4-expected.checksum:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-4-expected.png:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-4-expected.txt:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-5-expected.checksum:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-5-expected.png:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-5-expected.txt:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-6-expected.checksum:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-6-expected.png:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-6-expected.txt:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-7-expected.checksum:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-7-expected.png:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-7-expected.txt:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-8-expected.checksum:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-8-expected.png:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-8-expected.txt:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-9-expected.checksum:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-9-expected.png:
  • platform/chromium-win/fast/repaint/line-flow-with-floats-9-expected.txt:
  • platform/chromium-win/fast/repaint/reflection-redraw-expected.checksum:
  • platform/chromium-win/fast/repaint/reflection-redraw-expected.png:
  • platform/chromium-win/fast/repaint/reflection-redraw-expected.txt:
  • platform/chromium-win/fast/replaced/007-expected.checksum:
  • platform/chromium-win/fast/replaced/007-expected.png:
  • platform/chromium-win/fast/replaced/007-expected.txt:
  • platform/chromium-win/fast/ruby/nested-ruby-expected.checksum:
  • platform/chromium-win/fast/ruby/nested-ruby-expected.png:
  • platform/chromium-win/fast/ruby/nested-ruby-expected.txt:
  • platform/chromium-win/fast/ruby/ruby-empty-rt-expected.checksum:
  • platform/chromium-win/fast/ruby/ruby-empty-rt-expected.png:
  • platform/chromium-win/fast/ruby/ruby-empty-rt-expected.txt:
  • platform/chromium-win/fast/ruby/ruby-run-break-expected.checksum:
  • platform/chromium-win/fast/ruby/ruby-run-break-expected.png:
  • platform/chromium-win/fast/ruby/ruby-run-break-expected.txt:
  • platform/chromium-win/fast/ruby/ruby-runs-expected.checksum:
  • platform/chromium-win/fast/ruby/ruby-runs-expected.png:
  • platform/chromium-win/fast/ruby/ruby-runs-expected.txt:
  • platform/chromium-win/fast/ruby/ruby-runs-spans-expected.checksum:
  • platform/chromium-win/fast/ruby/ruby-runs-spans-expected.png:
  • platform/chromium-win/fast/ruby/ruby-runs-spans-expected.txt:
  • platform/chromium-win/fast/ruby/rubyDOM-insert-rt-expected.checksum:
  • platform/chromium-win/fast/ruby/rubyDOM-insert-rt-expected.png:
  • platform/chromium-win/fast/ruby/rubyDOM-insert-rt-expected.txt:
  • platform/chromium-win/fast/ruby/rubyDOM-insert-text1-expected.checksum:
  • platform/chromium-win/fast/ruby/rubyDOM-insert-text1-expected.png:
  • platform/chromium-win/fast/ruby/rubyDOM-insert-text1-expected.txt:
  • platform/chromium-win/fast/table/011-expected.checksum:
  • platform/chromium-win/fast/table/011-expected.png:
  • platform/chromium-win/fast/table/011-expected.txt:
  • platform/chromium-win/fast/table/035-expected.checksum:
  • platform/chromium-win/fast/table/035-expected.png:
  • platform/chromium-win/fast/table/035-expected.txt:
  • platform/chromium-win/fast/table/035-vertical-expected.checksum:
  • platform/chromium-win/fast/table/035-vertical-expected.png:
  • platform/chromium-win/fast/table/035-vertical-expected.txt:
  • platform/chromium-win/fast/table/border-collapsing/004-expected.checksum:
  • platform/chromium-win/fast/table/border-collapsing/004-expected.png:
  • platform/chromium-win/fast/table/border-collapsing/004-expected.txt:
  • platform/chromium-win/fast/table/border-collapsing/004-vertical-expected.checksum:
  • platform/chromium-win/fast/table/border-collapsing/004-vertical-expected.png:
  • platform/chromium-win/fast/table/border-collapsing/004-vertical-expected.txt:
  • platform/chromium-win/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.checksum:
  • platform/chromium-win/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.png:
  • platform/chromium-win/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.txt:
  • platform/chromium-win/fast/table/colgroup-preceded-by-caption-expected.checksum:
  • platform/chromium-win/fast/table/colgroup-preceded-by-caption-expected.png:
  • platform/chromium-win/fast/table/colgroup-preceded-by-caption-expected.txt:
  • platform/chromium-win/fast/table/colgroup-spanning-groups-rules-expected.checksum:
  • platform/chromium-win/fast/table/colgroup-spanning-groups-rules-expected.png:
  • platform/chromium-win/fast/table/colgroup-spanning-groups-rules-expected.txt:
  • platform/chromium-win/fast/table/frame-and-rules-expected.checksum:
  • platform/chromium-win/fast/table/frame-and-rules-expected.png:
  • platform/chromium-win/fast/table/frame-and-rules-expected.txt:
  • platform/chromium-win/fast/table/percent-heights-expected.checksum:
  • platform/chromium-win/fast/table/percent-heights-expected.png:
  • platform/chromium-win/fast/table/percent-heights-expected.txt:
  • platform/chromium-win/fast/table/rowspan-paint-order-vertical-expected.checksum:
  • platform/chromium-win/fast/table/rowspan-paint-order-vertical-expected.png:
  • platform/chromium-win/fast/text/atsui-negative-spacing-features-expected.checksum:
  • platform/chromium-win/fast/text/atsui-negative-spacing-features-expected.png:
  • platform/chromium-win/fast/text/atsui-negative-spacing-features-expected.txt:
  • platform/chromium-win/fast/text/atsui-spacing-features-expected.checksum:
  • platform/chromium-win/fast/text/atsui-spacing-features-expected.png:
  • platform/chromium-win/fast/text/atsui-spacing-features-expected.txt:
  • platform/chromium-win/fast/text/basic/002-expected.checksum:
  • platform/chromium-win/fast/text/basic/002-expected.png:
  • platform/chromium-win/fast/text/basic/002-expected.txt:
  • platform/chromium-win/fast/text/international/bidi-override-expected.checksum:
  • platform/chromium-win/fast/text/international/bidi-override-expected.png:
  • platform/chromium-win/fast/text/international/bidi-override-expected.txt:
  • platform/chromium-win/fast/text/justified-selection-at-edge-expected.checksum:
  • platform/chromium-win/fast/text/justified-selection-at-edge-expected.png:
  • platform/chromium-win/fast/text/justified-selection-at-edge-expected.txt:
  • platform/chromium-win/fast/text/justified-selection-expected.checksum:
  • platform/chromium-win/fast/text/justified-selection-expected.png:
  • platform/chromium-win/fast/text/justified-selection-expected.txt:
  • platform/chromium-win/fast/text/justify-padding-distribution-expected.checksum: Added.
  • platform/chromium-win/fast/text/justify-padding-distribution-expected.png: Added.
  • platform/chromium-win/fast/text/trailing-white-space-2-expected.checksum:
  • platform/chromium-win/fast/text/trailing-white-space-2-expected.png:
  • platform/chromium-win/fast/text/trailing-white-space-2-expected.txt:
  • platform/chromium-win/fast/text/trailing-white-space-expected.checksum:
  • platform/chromium-win/fast/text/trailing-white-space-expected.png:
  • platform/chromium-win/fast/text/trailing-white-space-expected.txt:
  • platform/chromium-win/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.checksum: Added.
  • platform/chromium-win/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.png: Added.
  • platform/chromium-win/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.txt: Added.
  • platform/chromium-win/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.txt:
  • platform/chromium-win/svg/custom/svg-fonts-in-html-expected.checksum:
  • platform/chromium-win/svg/custom/svg-fonts-in-html-expected.png:
  • platform/chromium-win/svg/custom/svg-fonts-in-html-expected.txt:
  • platform/chromium-win/svg/custom/svg-fonts-without-missing-glyph-expected.txt:
  • platform/chromium-win/svg/hixie/mixed/008-expected.checksum:
  • platform/chromium-win/svg/hixie/mixed/008-expected.png:
  • platform/chromium-win/svg/hixie/mixed/008-expected.txt:
  • platform/chromium-win/svg/zoom/page/zoom-hixie-mixed-008-expected.checksum:
  • platform/chromium-win/svg/zoom/page/zoom-hixie-mixed-008-expected.png:
  • platform/chromium-win/svg/zoom/page/zoom-hixie-mixed-008-expected.txt:
  • platform/chromium-win/svg/zoom/text/zoom-hixie-mixed-008-expected.checksum:
  • platform/chromium-win/svg/zoom/text/zoom-hixie-mixed-008-expected.png:
  • platform/chromium-win/svg/zoom/text/zoom-hixie-mixed-008-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug10633-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug10633-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug10633-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug109043-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug109043-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug109043-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug113424-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug113424-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug113424-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug11384q-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug11384q-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug11384q-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug11384s-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug11384s-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug11384s-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug1163-1-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug1163-1-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug1163-1-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug1188-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug1188-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug1188-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug119786-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug119786-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug119786-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug126742-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug126742-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug126742-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug127267-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug127267-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug127267-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug1302-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug1302-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug1302-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug131020-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug131020-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug131020-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug131020_iframe-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug131020_iframe-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug131020_iframe-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug1318-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug1318-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug1318-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug14323-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug14323-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug14323-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug149275-1-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug149275-1-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug149275-1-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug1802-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug1802-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug1802-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug1802s-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug1802s-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug1802s-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug18664-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug18664-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug18664-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug222846-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug222846-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug222846-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug23235-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug23235-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug23235-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug2479-2-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug2479-2-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug2479-2-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug26553-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug26553-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug26553-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug27038-3-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug27038-3-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug27038-3-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug3260-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug3260-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug3260-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug3454-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug3454-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug3454-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug3977-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug3977-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug3977-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug43854-1-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug43854-1-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug43854-1-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug43854-2-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug43854-2-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug43854-2-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug48028-2-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug48028-2-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug48028-2-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug5838-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug5838-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug5838-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug59354-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug60804-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug60804-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug60804-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug60807-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug60807-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug60807-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug6304-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug6304-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug6304-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug67915-1-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug67915-1-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug67915-1-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug69382-1-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug69382-1-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug69382-1-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug7112-1-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug7112-2-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug81934-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug81934-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug81934-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug88035-2-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug88035-2-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug88035-2-expected.txt:
  • platform/chromium-win/tables/mozilla/bugs/bug8950-expected.checksum:
  • platform/chromium-win/tables/mozilla/bugs/bug8950-expected.png:
  • platform/chromium-win/tables/mozilla/bugs/bug8950-expected.txt:
  • platform/chromium-win/tables/mozilla/collapsing_borders/bug41262-3-expected.checksum:
  • platform/chromium-win/tables/mozilla/collapsing_borders/bug41262-3-expected.png:
  • platform/chromium-win/tables/mozilla/collapsing_borders/bug41262-3-expected.txt:
  • platform/chromium-win/tables/mozilla/core/bloomberg-expected.checksum:
  • platform/chromium-win/tables/mozilla/core/bloomberg-expected.png:
  • platform/chromium-win/tables/mozilla/core/bloomberg-expected.txt:
  • platform/chromium-win/tables/mozilla/core/captions-expected.checksum:
  • platform/chromium-win/tables/mozilla/core/captions-expected.png:
  • platform/chromium-win/tables/mozilla/core/captions-expected.txt:
  • platform/chromium-win/tables/mozilla/core/misc-expected.checksum:
  • platform/chromium-win/tables/mozilla/core/misc-expected.png:
  • platform/chromium-win/tables/mozilla/core/misc-expected.txt:
  • platform/chromium-win/tables/mozilla/core/row_span-expected.checksum:
  • platform/chromium-win/tables/mozilla/core/row_span-expected.png:
  • platform/chromium-win/tables/mozilla/core/row_span-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/backgr_layers-opacity-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/backgr_layers-opacity-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/backgr_layers-opacity-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/backgr_position-table-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/backgr_position-table-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/backgr_position-table-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-cell-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-cell-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-cell-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-column-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-column-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-column-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-column-group-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-column-group-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-column-group-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-row-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-row-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-row-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-row-group-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-row-group-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-row-group-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/body_col-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/body_col-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/body_col-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/body_tbody-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/body_tbody-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/body_tbody-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/body_tfoot-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/body_tfoot-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/body_tfoot-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_align_center-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_align_center-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_align_center-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_align_justify-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_align_justify-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_align_justify-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_align_left-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_align_left-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_align_left-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_align_right-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_align_right-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_align_right-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_span-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_span-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_span-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_valign_baseline-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_valign_baseline-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_valign_baseline-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_valign_bottom-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_valign_bottom-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_valign_bottom-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_valign_middle-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_valign_middle-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_valign_middle-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_valign_top-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_valign_top-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_valign_top-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_width_pct-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_width_pct-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_width_pct-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_width_px-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_width_px-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/colgroup_width_px-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/table_frame_border-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/table_frame_border-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/table_frame_border-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/table_frame_box-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/table_frame_box-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/table_frame_box-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/table_row_align_center-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/table_row_align_center-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/table_row_align_center-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/table_rules_all-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/table_rules_all-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/table_rules_all-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/tables_row_th_nowrap-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/tables_row_th_nowrap-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/tables_row_th_nowrap-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/tables_th_align_center-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/tables_th_align_center-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/tables_th_align_center-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/tables_th_colspan-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/tables_th_colspan-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/tables_th_colspan-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/tables_th_height-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/tables_th_height-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/tables_th_height-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/tbody_align_center-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/tbody_align_center-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/tbody_align_center-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/tfoot_align_center-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/tfoot_align_center-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/tfoot_align_center-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/th_valign_baseline-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/th_valign_baseline-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/th_valign_baseline-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/th_valign_bottom-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/th_valign_bottom-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/th_valign_bottom-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/th_valign_middle-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/th_valign_middle-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/th_valign_middle-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/th_valign_top-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/th_valign_top-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/th_valign_top-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/thead_align_center-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/thead_align_center-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/thead_align_center-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/x_caption_align_bottom-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/x_caption_align_bottom-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/x_caption_align_bottom-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/x_caption_align_top-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/x_caption_align_top-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/x_caption_align_top-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/x_caption_class-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/x_caption_class-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/x_caption_class-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/x_caption_id-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/x_caption_id-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/x_caption_id-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/x_caption_style-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/x_caption_style-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/x_caption_style-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/x_table-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/x_table-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/x_table-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/x_tbody_align_justify-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/x_tbody_align_justify-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/x_tbody_align_justify-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/x_td_align_center-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/x_td_align_center-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/x_td_align_center-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/x_td_align_justify-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/x_td_align_justify-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/x_td_align_justify-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/x_tfoot_align_justify-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/x_tfoot_align_justify-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/x_tfoot_align_justify-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/x_th_align_justify-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/x_th_align_justify-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/x_th_align_justify-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/x_th_colspan-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/x_th_colspan-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/x_th_colspan-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/x_th_valign_baseline-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/x_th_valign_baseline-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/x_th_valign_baseline-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/x_th_valign_bottom-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/x_th_valign_bottom-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/x_th_valign_bottom-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/x_th_width-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/x_th_width-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/x_th_width-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/x_thead_align_justify-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/x_thead_align_justify-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/x_thead_align_justify-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/x_tr_align_center-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/x_tr_align_center-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/x_tr_align_center-expected.txt:
  • platform/chromium-win/tables/mozilla/marvin/x_tr_align_justify-expected.checksum:
  • platform/chromium-win/tables/mozilla/marvin/x_tr_align_justify-expected.png:
  • platform/chromium-win/tables/mozilla/marvin/x_tr_align_justify-expected.txt:
  • platform/chromium-win/tables/mozilla/other/body_col-expected.checksum:
  • platform/chromium-win/tables/mozilla/other/body_col-expected.png:
  • platform/chromium-win/tables/mozilla/other/body_col-expected.txt:
  • platform/chromium-win/tables/mozilla/other/wa_table_thtd_rowspan-expected.txt:
  • platform/chromium-win/tables/mozilla/other/wa_table_tr_align-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug10140-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug10140-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug10140-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug10216-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug10216-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug10216-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug1055-2-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug1055-2-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug1055-2-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug106966-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug106966-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug106966-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug1128-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug1128-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug1128-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug14007-1-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug14007-1-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug14007-1-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug14007-2-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug14007-2-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug29058-2-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug29058-2-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-11-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-11-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-11-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-9-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-9-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-9-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug91057-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug91057-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/bugs/bug91057-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/core/captions1-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/core/captions1-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/core/captions1-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/core/captions2-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/core/captions2-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/core/captions2-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/core/captions3-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/core/captions3-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/core/captions3-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_above-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_above-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_above-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_below-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_below-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_below-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_void-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_void-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_void-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.txt:
  • platform/chromium-win/tables/mozilla_expected_failures/other/test4-expected.checksum:
  • platform/chromium-win/tables/mozilla_expected_failures/other/test4-expected.png:
  • platform/chromium-win/tables/mozilla_expected_failures/other/test4-expected.txt:
  • platform/chromium/test_expectations.txt:
4:31 PM Changeset in webkit [78928] by mitz@apple.com
  • 7 edits in trunk/Source/WebCore

<rdar://problem/8898595> Pages that use fixed positioning display poorly when scaled

Reviewed by Simon Fraser.

  • html/HTMLBodyElement.cpp:

(WebCore::adjustForZoom): Account for page scale.
(WebCore::HTMLBodyElement::setScrollLeft): Ditto.
(WebCore::HTMLBodyElement::setScrollTop): Ditto.

  • page/FrameView.cpp:

(WebCore::FrameView::scrollXForFixedPosition): Moved from ScrollView here and changed to
account for page scale: when the page is scaled, the “viewport” with respect to which fixed
objects are positioned is scaled as well. Since it’s now bigger than the real viewport (that is,
the frame view), we move it around in proportion to the document scroll, so that when the document
is fully scrolled to the bottom-right, the bottom right of the scaled viewport is visible.
(WebCore::FrameView::scrollYForFixedPosition): Ditto.
(WebCore::FrameView::scrollOffsetForFixedPosition): Moved from ScrollView here.

  • page/FrameView.h:
  • platform/ScrollView.cpp: Moved functions to FrameView.
  • platform/ScrollView.h:
  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::updateRepaintRectsAfterScroll): Account for the RenderView being transformed.
(WebCore::RenderLayer::calculateClipRects): Used scrollOffsetForFixedPosition().
(WebCore::RenderLayer::backgroundClipRect): Ditto.

4:28 PM Changeset in webkit [78927] by kbr@google.com
  • 2 edits in trunk/LayoutTests

2011-02-17 Kenneth Russell <kbr@google.com>

Unreviewed. Skip fast/canvas/webgl/context-destroyed-crash.html
due to missing LayoutTestController.overridePreference.

  • platform/mac-wk2/Skipped:
4:21 PM Changeset in webkit [78926] by kbr@google.com
  • 2 edits in trunk/LayoutTests

2011-02-17 Kenneth Russell <kbr@google.com>

Unreviewed. Fixed skip entries for
LayoutTestController.setMinimumTimerInterval which I messed up the
first time.

  • platform/mac-wk2/Skipped:
3:54 PM Changeset in webkit [78925] by Martin Robinson
  • 2 edits in trunk/Source/WebKit/gtk

2011-02-17 Robert Ancell <rober.ancell@gmail.com>

Reviewed by Martin Robinson.

[PATCH] GTK documentation fails to build due to changed paths
https://bugs.webkit.org/show_bug.cgi?id=54600

  • docs/GNUmakefile.am: Update the paths that have now moved the Source directory.
3:50 PM Changeset in webkit [78924] by ggaren@apple.com
  • 7 edits in trunk/Source/JavaScriptCore

2011-02-17 Geoffrey Garen <ggaren@apple.com>

Reviewed by Oliver Hunt.

Made MarkedBlock variable-sized
https://bugs.webkit.org/show_bug.cgi?id=54692


SunSpider reports no change.


Each MarkedBlock is now composed of a set of fixed-sized atoms, with one
mark bit per atom. A given cell may be composed of one or more atoms.


  • runtime/Heap.cpp: (JSC::Heap::allocate): Made fixed-sizedness a property of MarkedSpace, bubbling it up from MarkedBlock, since MarkedBlock now supports variable- sizedness.
  • runtime/JSCell.h: (JSC::JSCell::MarkedBlock::allocate): Removed use of CELLS_PER_BLOCK and (implicit) one constants -- these quantities are not constant anymore. Updated for switch from cell to atom.
  • runtime/MarkedBlock.cpp: (JSC::MarkedBlock::create): (JSC::MarkedBlock::destroy): (JSC::MarkedBlock::MarkedBlock): (JSC::MarkedBlock::sweep):
  • runtime/MarkedBlock.h: (JSC::MarkedBlock::firstAtom): (JSC::MarkedBlock::atoms): (JSC::MarkedBlock::isAtomAligned): (JSC::MarkedBlock::blockFor): (JSC::MarkedBlock::isEmpty): (JSC::MarkedBlock::clearMarks): (JSC::MarkedBlock::size): (JSC::MarkedBlock::capacity): (JSC::MarkedBlock::atomNumber): (JSC::MarkedBlock::isMarked): (JSC::MarkedBlock::testAndSetMarked): (JSC::MarkedBlock::setMarked): (JSC::MarkedBlock::forEach): Same as above. Also removed use of CELL_SIZE and BLOCK_SIZE, and switched away from calling arbitrary pointers cells.
  • runtime/MarkedSpace.cpp: (JSC::MarkedSpace::MarkedSpace): (JSC::MarkedSpace::allocateBlock): (JSC::MarkedSpace::allocate): (JSC::MarkedSpace::reset):
  • runtime/MarkedSpace.h: (JSC::CollectorHeap::CollectorHeap): (JSC::MarkedSpace::contains): Updated for renames. Made fixed-sizedness a property of MarkedSpace.
3:49 PM Changeset in webkit [78923] by kbr@google.com
  • 9 edits in trunk/Source/WebCore

2011-02-17 Kenneth Russell <kbr@google.com>

Reviewed by James Robinson.

Add support for GPU accelerated path rendering
https://bugs.webkit.org/show_bug.cgi?id=44729

Incorporates the Loop and Blinn path rendering algorithm as an
option to the GPU-accelerated canvas code, currently only compiled
in to the Chromium port. Currently it's toggled by changing a
hardcoded constant in
SharedGraphicsContext3D::useLoopBlinnForPathRendering() and is
disabled by default. This mechanism can be improved once we've
gained more confidence in the implementation. There are some known
bugs that need to be fixed first.

No new tests; ran some 2D Canvas tests manually with the new flag
both enabled and disabled.

  • WebCore.gypi:
  • platform/graphics/chromium/GLES2Canvas.cpp: (WebCore::GLES2Canvas::GLES2Canvas): (WebCore::GLES2Canvas::fillPath):
  • platform/graphics/chromium/GLES2Canvas.h:
  • platform/graphics/gpu/LoopBlinnClassifier.h:
  • platform/graphics/gpu/LoopBlinnLocalTriangulator.h:
  • platform/graphics/gpu/SharedGraphicsContext3D.cpp: (WebCore::SharedGraphicsContext3D::create): (WebCore::SharedGraphicsContext3D::SharedGraphicsContext3D): (WebCore::SharedGraphicsContext3D::createBuffer): (WebCore::SharedGraphicsContext3D::bindBuffer): (WebCore::SharedGraphicsContext3D::bufferData): (WebCore::SharedGraphicsContext3D::bufferSubData): (WebCore::SharedGraphicsContext3D::useLoopBlinnForPathRendering): (WebCore::SharedGraphicsContext3D::useLoopBlinnInteriorProgram): (WebCore::SharedGraphicsContext3D::useLoopBlinnExteriorProgram):
  • platform/graphics/gpu/SharedGraphicsContext3D.h:
  • platform/graphics/skia/GraphicsContextSkia.cpp: (WebCore::GraphicsContext::fillPath):
3:42 PM Changeset in webkit [78922] by senorblanco@chromium.org
  • 2 edits in trunk/Source/WebCore

2011-02-16 Stephen White <senorblanco@chromium.org>

Reviewed by James Robinson.

Layout Test fast/canvas/setWidthResetAfterForcedRender.html fails on
accelerated 2D canvas w/compositor enabled.
https://bugs.webkit.org/show_bug.cgi?id=54561

When resetting the CanvasRenderingContext2D, we also need to send a
contentChanged() to the relevant RenderLayer. This is similar to what
is done in didDraw().

Covered by fast/canvas/setWidthResetAfterForcedRender.html, but note
that this test will still fail pixel tests because the compositor
is not compatible with repaint tests (the green square is now white,
but the half-transparent grey repaint rect does not appear).

  • html/canvas/CanvasRenderingContext2D.cpp: (WebCore::CanvasRenderingContext2D::reset):
3:32 PM Changeset in webkit [78921] by kbr@google.com
  • 5 edits
    2 adds in trunk

2011-02-17 Sergey Glazunov <serg.glazunov@gmail.com>

Reviewed by Kenneth Russell.

Null out the WEBKIT_lose_context WebGL extension's context pointer when
the WebGL rendering context is removed.
https://bugs.webkit.org/show_bug.cgi?id=54679

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

2011-02-17 Sergey Glazunov <serg.glazunov@gmail.com>

Reviewed by Kenneth Russell.

Null out the WEBKIT_lose_context WebGL extension's context pointer when
the WebGL rendering context is removed.
https://bugs.webkit.org/show_bug.cgi?id=54679

Test: fast/canvas/webgl/context-destroyed-crash.html

  • html/canvas/WebGLRenderingContext.cpp: (WebCore::WebGLRenderingContext::~WebGLRenderingContext):
  • html/canvas/WebKitLoseContext.cpp: (WebCore::WebKitLoseContext::loseContext): Add null-check for m_context.
  • html/canvas/WebKitLoseContext.h: (WebCore::WebKitLoseContext::contextDestroyed):
3:29 PM Changeset in webkit [78920] by inferno@chromium.org
  • 3 edits
    2 adds in branches/chromium/597

Merge r78775, crbug 73235

3:12 PM Changeset in webkit [78919] by kbr@google.com
  • 11 edits in trunk

2011-02-17 Kenneth Russell <kbr@google.com>

Reviewed by Chris Marrin.

Construction of Uint8Array from JS Array (and possibly others) incorrectly clamps values
https://bugs.webkit.org/show_bug.cgi?id=52768

Removed incorrect clamping code from IntegralTypedArrayBase. Fixed
code which casts from incoming double to the destination type.
Changed the JSC bindings to use this code, rather than a copy of
the casting code and a different constructor, in order to reuse
the fix.

  • bindings/js/JSArrayBufferViewHelper.h: (WebCore::constructArrayBufferView):
  • html/canvas/Int32Array.h: (WebCore::Int32Array::set):
  • html/canvas/Int8Array.h: (WebCore::Int8Array::set):
  • html/canvas/IntegralTypedArrayBase.h: (WebCore::IntegralTypedArrayBase::set):
  • html/canvas/Uint16Array.h: (WebCore::Uint16Array::set):
  • html/canvas/Uint32Array.h: (WebCore::Uint32Array::set):
  • html/canvas/Uint8Array.h: (WebCore::Uint8Array::set):

2011-02-17 Kenneth Russell <kbr@google.com>

Reviewed by Chris Marrin.

Construction of Uint8Array from JS Array (and possibly others) incorrectly clamps values
https://bugs.webkit.org/show_bug.cgi?id=52768

Synchronized array-unit-tests.html with version in Khronos
repository. Tested in Chromium, Safari, Chromium DRT on Mac and
WebKit DRT on Mac.

  • fast/canvas/webgl/array-unit-tests-expected.txt:
  • fast/canvas/webgl/array-unit-tests.html:
3:04 PM Changeset in webkit [78918] by atwilson@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed expectations change.

Temporarily disabled tests that need rebaselining while we try to fix the rebaselining tool.

  • platform/chromium/test_expectations.txt:
2:36 PM Changeset in webkit [78917] by weinig@apple.com
  • 2 edits in trunk/Source/WebCore

Knob proportion not quite right during rubber-band.
<rdar://problem/9015201>

Reviewed by Dan Bernstein.

Change knob proportion algorithm to treat overhang as making the view smaller,
rather than document bigger.

  • platform/mac/ScrollbarThemeMac.mm:

(WebCore::ScrollbarThemeMac::paint):

2:23 PM Changeset in webkit [78916] by jberlin@webkit.org
  • 5 edits in trunk/Source/WebKit2

WebKit2: The CFNetwork Cache should be shared between the UI Process and the Web Process on
Windows.
https://bugs.webkit.org/show_bug.cgi?id=54683

Reviewed by Adam Roben.

  • Shared/WebProcessCreationParameters.cpp:

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

  • Shared/WebProcessCreationParameters.h:


  • UIProcess/win/WebContextWin.cpp:

(WebKit::WebContext::platformInitializeWebProcess):
Make sure to remove the ending slash, as CFNetwork does not recognize the directory with
that slash.

  • WebProcess/win/WebProcessWin.cpp:

(WebKit::WebProcess::platformInitializeWebProcess):
Create a cache using the path, disk capacity, and memory capacity and set it as default.

1:50 PM Changeset in webkit [78915] by andersca@apple.com
  • 9 edits in trunk/Source/WebKit2

2011-02-17 Anders Carlsson <andersca@apple.com>

Reviewed by Sam Weinig.

Web and/or plug-in process crashes when NPN_Evaluate destroys the plug-in
https://bugs.webkit.org/show_bug.cgi?id=54686
<rdar://problem/9013384>

This patch fixes two bugs with a plug-in calling NPN_Evaluate to destroy itself:

  • The PluginProxy object would be destroyed in the middle of PluginProxy::evaluate. This would cause the web process to crash.
  • The PluginControllerProxy would call NPP_Destroy while the plug-in was busy running code. This would cause the plug-in process to crash.

To fix this, we add protectPluginFromDestruction/unprotectPluginFromDestruction to
PluginControllerProxy and use it to defer calling destroy() in the plug-in process,
and defer actually destroying the plug-in in the web process.

https://bugs.webkit.org/show_bug.cgi?id=54171 tracks adding a test for this.

  • PluginProcess/PluginControllerProxy.cpp: (WebKit::PluginControllerProxy::PluginControllerProxy): (WebKit::PluginControllerProxy::destroy): (WebKit::PluginControllerProxy::evaluate): (WebKit::PluginControllerProxy::protectPluginFromDestruction): (WebKit::PluginControllerProxy::unprotectPluginFromDestruction):
  • PluginProcess/PluginControllerProxy.h: (WebKit::PluginControllerProxy::asPluginController):
  • PluginProcess/WebProcessConnection.cpp: (WebKit::WebProcessConnection::destroyPluginControllerProxy): (WebKit::WebProcessConnection::didReceiveMessage): (WebKit::WebProcessConnection::didReceiveSyncMessage):
  • PluginProcess/WebProcessConnection.h: (WebKit::WebProcessConnection::connection):
  • WebProcess/Plugins/PluginController.h: (WebKit::PluginController::PluginDestructionProtector::PluginDestructionProtector): (WebKit::PluginController::PluginDestructionProtector::~PluginDestructionProtector):
  • WebProcess/Plugins/PluginProxy.cpp: (WebKit::PluginProxy::evaluate):
  • WebProcess/Plugins/PluginView.cpp: (WebKit::PluginView::protectPluginFromDestruction): (WebKit::PluginView::unprotectPluginFromDestruction):
  • WebProcess/Plugins/PluginView.h:
1:28 PM Changeset in webkit [78914] by luiz@webkit.org
  • 9 edits
    2 adds in trunk/Source/WebCore

Summary: HTML5 <details> and <summary>: HTMLSummaryElement
https://bugs.webkit.org/show_bug.cgi?id=54584

Reviewed by Andreas Kling.

Adding class HTMLSummaryElement to build systems. This class will be used in
the implementation of new HTML5 tag <summary>.

  • CMakeLists.txt:
  • GNUmakefile.am:
  • WebCore.gypi:
  • WebCore.pro:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.xcodeproj/project.pbxproj:
  • html/HTMLElementsAllInOne.cpp:
  • html/HTMLSummaryElement.cpp: Added.

(WebCore::HTMLSummaryElement::create):
(WebCore::HTMLSummaryElement::HTMLSummaryElement):

  • html/HTMLSummaryElement.h: Added.
  • html/HTMLTagNames.in:
1:26 PM Changeset in webkit [78913] by hyatt@apple.com
  • 7 edits in trunk/LayoutTests/fast

Bug 54244. Layout test results changes landing with pre-commit hook temporarily turned off to hopefully make this work in one go.

1:26 PM Changeset in webkit [78912] by jorlow@chromium.org
  • 3 edits in trunk/LayoutTests

2011-02-17 Jeremy Orlow <jorlow@chromium.org>

Fix minor problem with test.

  • storage/indexeddb/exception-in-event-aborts-expected.txt:
  • storage/indexeddb/exception-in-event-aborts.html:
1:26 PM Changeset in webkit [78911] by hyatt@apple.com
  • 2 edits in trunk/LayoutTests/editing/selection

Bug 54244. Layout test results changes landing with pre-commit hook temporarily turned off to hopefully make this work in one go.

1:21 PM Changeset in webkit [78910] by hyatt@apple.com
  • 981 edits in trunk/LayoutTests/platform/mac

Bug 54244. Layout test results changes landing with pre-commit hook temporarily turned off to hopefully make this work in one go.

1:20 PM Changeset in webkit [78909] by weinig@apple.com
  • 2 edits in trunk/Source/WebKit2

Build fix.

  • WebProcess/WebPage/mac/WebPageMac.mm:

(WebKit::WebPage::performDictionaryLookupAtLocation):

1:06 PM Changeset in webkit [78908] by jorlow@chromium.org
  • 16 edits
    2 adds in trunk

2011-02-17 Jeremy Orlow <jorlow@chromium.org>

Reviewed by Nate Chapin.

Throwing in an IndexedDB error or success event should lead to the transaction aborting
https://bugs.webkit.org/show_bug.cgi?id=54249

  • storage/indexeddb/exception-in-event-aborts-expected.txt: Added.
  • storage/indexeddb/exception-in-event-aborts.html: Added.
  • storage/indexeddb/queued-commands-expected.txt:
  • storage/indexeddb/queued-commands.html:
  • storage/indexeddb/request-event-propagation-expected.txt:
  • storage/indexeddb/request-event-propagation.html:
  • storage/indexeddb/resources/shared.js: (unexpectedErrorCallback):
  • storage/indexeddb/transaction-event-propagation-expected.txt:
  • storage/indexeddb/transaction-event-propagation.html:

2011-02-17 Jeremy Orlow <jorlow@chromium.org>

Reviewed by Nate Chapin.

Throwing in an IndexedDB error or success event should lead to the transaction aborting
https://bugs.webkit.org/show_bug.cgi?id=54249

When an exception is thrown but not handled within an IDBRequests success/error event,
we should abort the transaction.

Test: storage/indexeddb/exception-in-event-aborts.html

  • bindings/js/JSEventListener.cpp: (WebCore::JSEventListener::handleEvent):
  • bindings/js/JSEventTarget.cpp: (WebCore::toJS):
  • bindings/v8/V8AbstractEventListener.cpp: (WebCore::V8AbstractEventListener::invokeEventHandler):
  • dom/EventTarget.cpp: (WebCore::EventTarget::uncaughtExceptionInEventHandler):
  • dom/EventTarget.h:
  • storage/IDBRequest.cpp: (WebCore::IDBRequest::uncaughtExceptionInEventHandler):
  • storage/IDBRequest.h:
12:59 PM Changeset in webkit [78907] by oliver@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Attempt to fix windows build

12:58 PM Changeset in webkit [78906] by hyatt@apple.com
  • 11 edits in trunk/LayoutTests/platform/mac/fast/multicol

Bug 54244. Having to land in small chunks to avoid svn commit hangs.

12:56 PM Changeset in webkit [78905] by hyatt@apple.com
  • 6 edits in trunk/LayoutTests/platform/mac/fast/replaced
12:55 PM Changeset in webkit [78904] by hyatt@apple.com
  • 11 edits in trunk/LayoutTests/platform/mac/fast/replaced
12:54 PM Changeset in webkit [78903] by hyatt@apple.com
  • 4 edits in trunk/LayoutTests/platform/mac/fast/inline-block
12:54 PM Changeset in webkit [78902] by hyatt@apple.com
  • 3 edits in trunk/LayoutTests/platform/mac/fast/selectors
12:54 PM Changeset in webkit [78901] by weinig@apple.com
  • 18 edits
    2 adds in trunk/Source

WebKit2: Support Dictionary popup
<rdar://problem/7660670>

Reviewed by Maciej Stachowiak.

../WebCore:

Add some necessary exports.

  • WebCore.exp.in:

../WebKit2:

  • Shared/TextInfo.cpp: Added.

(WebKit::TextInfo::encode):
(WebKit::TextInfo::decode):

  • Shared/TextInfo.h: Added.

(WebKit::TextInfo::TextInfo):
Add class to represent the location and style of a run of text.

  • UIProcess/PageClient.h:
  • UIProcess/API/mac/PageClientImpl.h:
  • UIProcess/API/mac/PageClientImpl.mm:

(WebKit::PageClientImpl::didPerformDictionaryLookup):
Invoke the dictionary popup.

  • UIProcess/API/mac/WKView.mm:

(-[WKView performLookupAtCurrentMouseLocation]):
Tell the WebProcess to get get the text under the mouse and cause
the dictionary popup to appear.

  • UIProcess/API/mac/WKViewPrivate.h:

Add performLookupAtCurrentMouseLocation.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::performDictionaryLookupAtLocation):
(WebKit::WebPageProxy::didPerformDictionaryLookup):

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

Pipe messages through.

  • WebProcess/WebPage/mac/WebPageMac.mm:

(WebKit::characterRangeAtPoint): Fix to return PassRefPtr
and not potentially stale pointers.

(WebKit::WebPage::characterIndexForPoint):
Change to use a RefPtr.

(WebKit::WebPage::performDictionaryLookupAtLocation):
Add simple heuristic to get the word at the current point (or the current selection
if it is at that point) and grab the style of the word to send the UIProcess.

  • WebKit2.pro:
  • WebKit2.xcodeproj/project.pbxproj:
  • win/WebKit2.vcproj:

Add new files.

12:54 PM Changeset in webkit [78900] by hyatt@apple.com
  • 3 edits in trunk/LayoutTests/platform/mac/fast/overflow
12:54 PM Changeset in webkit [78899] by hyatt@apple.com
  • 6 edits in trunk/LayoutTests/platform/mac/fast/events
12:54 PM Changeset in webkit [78898] by hyatt@apple.com
  • 12 edits in trunk/LayoutTests/platform/mac/fast/inline
12:53 PM Changeset in webkit [78897] by hyatt@apple.com
  • 10 edits in trunk/LayoutTests/platform/mac/fast/dom
12:53 PM Changeset in webkit [78896] by hyatt@apple.com
  • 22 edits in trunk/LayoutTests/platform/mac/fast/table
12:53 PM Changeset in webkit [78895] by hyatt@apple.com
  • 10 edits in trunk/LayoutTests/platform/mac/fast/parser
12:53 PM Changeset in webkit [78894] by hyatt@apple.com
  • 34 edits in trunk/LayoutTests/platform/mac/fast/css
12:52 PM Changeset in webkit [78893] by hyatt@apple.com
  • 16 edits in trunk/LayoutTests/platform/mac/fast/css
12:52 PM Changeset in webkit [78892] by hyatt@apple.com
  • 9 edits in trunk/LayoutTests/platform/mac/fast/css
12:52 PM Changeset in webkit [78891] by hyatt@apple.com
  • 5 edits in trunk/LayoutTests/platform/mac/fast/css
12:52 PM Changeset in webkit [78890] by hyatt@apple.com
  • 16 edits in trunk/LayoutTests/platform/mac/fast/css
12:52 PM Changeset in webkit [78889] by hyatt@apple.com
  • 2 edits in trunk/LayoutTests/platform/mac/fast/css
12:49 PM Changeset in webkit [78888] by hyatt@apple.com
  • 9 edits in trunk/LayoutTests/platform/mac/fast/block
12:49 PM Changeset in webkit [78887] by hyatt@apple.com
  • 33 edits in trunk/LayoutTests/platform/mac/fast/blockflow
12:48 PM Changeset in webkit [78886] by hyatt@apple.com
  • 62 edits in trunk/LayoutTests/platform/mac/fast/repaint
12:47 PM Changeset in webkit [78885] by hyatt@apple.com
  • 12 edits in trunk/LayoutTests/platform/mac/fast/ruby
12:46 PM Changeset in webkit [78884] by hyatt@apple.com
  • 165 edits in trunk/LayoutTests/platform/mac/fast/forms
12:45 PM Changeset in webkit [78883] by hyatt@apple.com
  • 65 edits in trunk/LayoutTests/platform/mac/fast/forms
12:45 PM Changeset in webkit [78882] by hyatt@apple.com
  • 13 edits in trunk/LayoutTests/platform/mac/fast/text
12:45 PM Changeset in webkit [78881] by hyatt@apple.com
  • 3 edits in trunk/LayoutTests/platform/mac/fast/text
12:45 PM Changeset in webkit [78880] by hyatt@apple.com
  • 1 edit in trunk/LayoutTests/platform/mac/fast/text/selection-painted-separately-expected.png
12:44 PM Changeset in webkit [78879] by hyatt@apple.com
  • 1 edit in trunk/LayoutTests/platform/mac/fast/text/align-center-rtl-spill-expected.png
12:44 PM Changeset in webkit [78878] by hyatt@apple.com
  • 3 edits in trunk/LayoutTests/platform/mac/fast/text
12:44 PM Changeset in webkit [78877] by hyatt@apple.com
  • 3 edits in trunk/LayoutTests/platform/mac/fast/text
12:44 PM Changeset in webkit [78876] by hyatt@apple.com
  • 1 edit in trunk/LayoutTests/platform/mac/fast/text/stripNullFromText-expected.png
12:44 PM Changeset in webkit [78875] by hyatt@apple.com
  • 1 edit in trunk/LayoutTests/platform/mac/fast/text/apply-start-width-after-skipped-text-expected.png
12:43 PM Changeset in webkit [78874] by hyatt@apple.com
  • 4 edits in trunk/LayoutTests/platform/mac/fast/text
12:43 PM Changeset in webkit [78873] by hyatt@apple.com
  • 3 edits in trunk/LayoutTests/platform/mac/fast/text
12:43 PM Changeset in webkit [78872] by hyatt@apple.com
  • 2 edits in trunk/LayoutTests/platform/mac/fast/text
12:43 PM Changeset in webkit [78871] by hyatt@apple.com
  • 2 edits in trunk/LayoutTests/platform/mac/fast/text
12:43 PM Changeset in webkit [78870] by hyatt@apple.com
  • 2 edits in trunk/LayoutTests/platform/mac/fast/text
12:43 PM Changeset in webkit [78869] by hyatt@apple.com
  • 5 edits in trunk/LayoutTests/platform/mac/fast/text/whitespace
12:43 PM Changeset in webkit [78868] by hyatt@apple.com
  • 3 edits in trunk/LayoutTests/platform/mac/fast/text
12:42 PM Changeset in webkit [78867] by hyatt@apple.com
  • 11 edits in trunk/LayoutTests/platform/mac/fast/text
12:42 PM Changeset in webkit [78866] by hyatt@apple.com
  • 5 edits in trunk/LayoutTests/platform/mac/fast/text
12:42 PM Changeset in webkit [78865] by hyatt@apple.com
  • 9 edits in trunk/LayoutTests/platform/mac/fast/text
12:41 PM Changeset in webkit [78864] by hyatt@apple.com
  • 1 edit in trunk/LayoutTests/platform/mac/fast/text/fixed-pitch-control-characters-expected.png
12:41 PM Changeset in webkit [78863] by hyatt@apple.com
  • 10 edits in trunk/LayoutTests/platform/mac/fast/text
12:40 PM Changeset in webkit [78862] by hyatt@apple.com
  • 6 edits in trunk/LayoutTests/platform/mac/fast/text
12:40 PM Changeset in webkit [78861] by hyatt@apple.com
  • 3 edits in trunk/LayoutTests/platform/mac/fast/text
12:37 PM Changeset in webkit [78860] by hyatt@apple.com
  • 3 edits in trunk/LayoutTests/platform/mac/fast/text/basic
12:37 PM Changeset in webkit [78859] by hyatt@apple.com
  • 12 edits in trunk/LayoutTests/platform/mac/fast/text/international
12:37 PM Changeset in webkit [78858] by hyatt@apple.com
  • 5 edits in trunk/LayoutTests/platform/mac/fast/text/international
12:36 PM Changeset in webkit [78857] by hyatt@apple.com
  • 3 edits in trunk/LayoutTests/platform/mac/fast/text/international
12:35 PM Changeset in webkit [78856] by oliver@apple.com
  • 8 edits
    1 add in trunk/Source/JavaScriptCore

2011-02-17 Oliver Hunt <oliver@apple.com>

Reviewed by Geoffrey Garen.

Refactor WriteBarrier and DeprecatedPtr to have less code duplication.
https://bugs.webkit.org/show_bug.cgi?id=54608

Make use of the tricks used for Handle, et al to avoid duplicating all
of the logic for DeprecatedPtr and WriteBarrier simply to support known
vs. unknown types.

  • JavaScriptCore.xcodeproj/project.pbxproj:
  • collector/handles/Global.h: (JSC::Global::internalSet):
  • collector/handles/Handle.h: (JSC::Handle::Handle): (JSC::Handle::get):
  • runtime/JSArray.cpp: (JSC::JSArray::sortNumeric):
  • runtime/JSObject.h: (JSC::JSObject::inlineGetOwnPropertySlot):
  • runtime/SlotAccessor.h: Added. (JSC::SlotTypes::getFromBaseType): (JSC::SlotTypes::convertToBaseType): (JSC::SlotTypes::getFromSlot): (JSC::SlotTypes::toJSValue): (JSC::SlotTypes::validateUpcast): (JSC::SlotAccessor::operator->): (JSC::SlotAccessor::operator*):
  • runtime/WeakGCPtr.h: (JSC::WeakGCPtr::get): (JSC::WeakGCPtr::internalSet):
  • runtime/WriteBarrier.h: (JSC::DeprecatedPtr::DeprecatedPtr): (JSC::DeprecatedPtr::get): (JSC::DeprecatedPtr::slot): (JSC::DeprecatedPtr::operator=): (JSC::WriteBarrierTranslator::convertToStorage): (JSC::WriteBarrierTranslator::convertFromStorage): (JSC::WriteBarrierBase::set): (JSC::WriteBarrierBase::get): (JSC::WriteBarrierBase::clear): (JSC::WriteBarrierBase::slot): (JSC::WriteBarrierBase::operator UnspecifiedBoolType*): (JSC::WriteBarrierBase::operator!): (JSC::WriteBarrierBase::setWithoutWriteBarrier): (JSC::WriteBarrier::WriteBarrier):
12:35 PM Changeset in webkit [78855] by hyatt@apple.com
  • 63 edits in trunk/LayoutTests/platform/mac/fast/text/international
12:35 PM Changeset in webkit [78854] by hyatt@apple.com
  • 3 edits in trunk/LayoutTests/platform/mac/fast/text/international
12:33 PM Changeset in webkit [78853] by commit-queue@webkit.org
  • 8 edits in trunk/Source

2011-02-17 W. James MacLean <wjmaclean@chromium.org>

Reviewed by James Robinson.

[chromium] Add command-line flag to enable composite to offscreen texture.
https://bugs.webkit.org/show_bug.cgi?id=52311

Add plumbing to allow command-line switch to enable offscreen compositing. Function
LayerRendererChromium::copyOffscreenTextureToDisplay used for now to mimic
normal renderer operation.

Existing functionality not changed; offscreen compositing will be tested via GPU test framework.

  • platform/graphics/chromium/LayerRendererChromium.cpp: (WebCore::LayerRendererChromium::setRootLayer): (WebCore::LayerRendererChromium::setCompositeOffscreen): (WebCore::LayerRendererChromium::copyOffscreenTextureToDisplay): (WebCore::LayerRendererChromium::useRenderSurface): (WebCore::LayerRendererChromium::setScissorToRect):
  • platform/graphics/chromium/LayerRendererChromium.h: (WebCore::LayerRendererChromium::isCompositingOffscreen):

2011-02-17 W. James MacLean <wjmaclean@chromium.org>

Reviewed by James Robinson.

[chromium] Add command-line flag to enable composite to offscreen texture.
https://bugs.webkit.org/show_bug.cgi?id=52311

Add plumbing to allow command-line switch to enable offscreen compositing. Function
LayerRendererChromium::copyOffscreenTextureToDisplay used for now to mimic
normal renderer operation.

  • public/WebSettings.h:
  • src/WebSettingsImpl.cpp: (WebKit::WebSettingsImpl::WebSettingsImpl): (WebKit::WebSettingsImpl::setCompositeToTextureEnabled):
  • src/WebSettingsImpl.h: (WebKit::WebSettingsImpl::compositeToTextureEnabled):
  • src/WebViewImpl.cpp: (WebKit::WebViewImpl::doComposite):
12:24 PM Changeset in webkit [78852] by kevino@webkit.org
  • 14 edits in trunk

[wx] Build fixes after recent changes.

12:02 PM Changeset in webkit [78851] by bweinstein@apple.com
  • 2 edits in trunk/Source/WebKit2

Qt build fix.

  • WebKit2.pro: Update after renaming of MemoryCache to ResourceCache.
11:55 AM Changeset in webkit [78850] by bweinstein@apple.com
  • 2 edits in trunk/Source/WebKit2

Mac build fix.

  • WebKit2.xcodeproj/project.pbxproj: Use relative to group instead of absolute paths. Not everyone's home

directory is /Users/brian_weinstein.

11:35 AM Changeset in webkit [78849] by hyatt@apple.com
  • 1 edit in trunk/Source/WebCore/platform/efl/FileChooserEfl.cpp

Fix EFL bustage.

11:28 AM Changeset in webkit [78848] by bweinstein@apple.com
  • 23 edits
    11 adds in trunk/Source

WebKit2: Need a way to manage the WebCore Cache
https://bugs.webkit.org/show_bug.cgi?id=54501

Reviewed by Brady Eidson.

Source/WebCore:

Add a way to get a set of all of the origins that have entries in the
WebCore memory cache, and a method to remove all resources from the memory
cache from a given security origin.

No change in behavior.

  • WebCore.exp.in: Add functions that need to be exported.
  • loader/cache/MemoryCache.cpp:

(WebCore::MemoryCache::removeResourcesWithOrigin):
(WebCore::MemoryCache::getOriginsWithCache):

  • loader/cache/MemoryCache.h:

Source/WebKit2:

Implement a WebKit2 API to manage the WebCore memory cache. This API exposes three functions:

1) A method to get a list of all security origins that have entries in the WebCore memory cache.
2) A method to remove all entries in the WebCore memory cache from a SecurityOrigin.
3) A method to remove all entries from the WebCore memory cache.

  • Platform/CoreIPC/MessageID.h: Add two new MessageClasses.
  • Shared/API/c/WKBase.h:
  • Shared/APIObject.h: Add a CacheManager type.
  • Shared/WebSecurityOrigin.h: Typedef WKCacheManagerRef.

(WebKit::WebSecurityOrigin::createFromString): Creates a WebCore::SecurityOrigin using

SecurityOrigin::createFromString.

(WebKit::WebSecurityOrigin::toString): Calls through to SecurityOrigin::toString.

  • UIProcess/API/C/WKAPICast.h:
  • UIProcess/API/C/WKCacheManager.cpp: Added.

(WKCacheManagerGetTypeID): Returns the WebResourceCacheManagerProxy type.
(WKCacheManagerGetCacheOrigins): Calls through to WebResourceCacheManagerProxy::getCacheOrigins.
(callGetCacheOriginsBlockBlockAndDispose):
(WKCacheManagerGetCacheOrigins_b):
(WKCacheManagerDeleteCacheForOrigin): Calls through to WebResourceCacheManagerProxy::deleteCacheForOrigin.
(WKCacheManagerDeleteAllCache): Calls through to WebResourceCacheManagerProxy::deleteAllCache.

  • UIProcess/API/C/WKCacheManager.h: Added.
  • UIProcess/API/C/WKContext.cpp:

(WKContextGetCacheManager): Calls to get the WebResourceCacheManagerProxy.

  • UIProcess/API/C/WKContext.h:
  • UIProcess/WebResourceCacheManagerProxy.cpp: Added.

(WebKit::WebResourceCacheManagerProxy::create): Calls through to the constructor.
(WebKit::WebResourceCacheManagerProxy::WebResourceCacheManagerProxy): Initialize the m_webContext variable.
(WebKit::WebResourceCacheManagerProxy::~WebResourceCacheManagerProxy):
(WebKit::WebResourceCacheManagerProxy::invalidate): Invalidate the callback map.
(WebKit::WebResourceCacheManagerProxy::getCacheOrigins): Call through to the web process to get the cache

origins.

(WebKit::WebResourceCacheManagerProxy::didGetCacheOrigins): Call the callback.
(WebKit::WebResourceCacheManagerProxy::deleteCacheForOrigin): Call through to the web process to delete cache

for the given origin.

(WebKit::WebResourceCacheManagerProxy::deleteAllCache): Call through to the web process to delete all of the cache.

  • UIProcess/WebResourceCacheManagerProxy.h: Added.

(WebKit::WebResourceCacheManagerProxy::clearContext):
(WebKit::WebResourceCacheManagerProxy::type):

  • UIProcess/WebResourceCacheManagerProxy.messages.in: Added.
  • UIProcess/WebContext.cpp:

(WebKit::WebContext::WebContext): Initialize new member variable.
(WebKit::WebContext::~WebContext): Invalidates new member variable.
(WebKit::WebContext::didReceiveMessage): Passes cache messages to the cache manager.

  • UIProcess/WebContext.h:

(WebKit::WebContext::cacheManagerProxy):

  • UIProcess/WebProcessProxy.cpp:

(WebKit::WebProcessProxy::didReceiveMessage): Add a new message class.

  • WebProcess/MemoryCache/WebResourceCacheManager.cpp: Added.

(WebKit::WebResourceCacheManager::shared):
(WebKit::WebResourceCacheManager::WebResourceCacheManager):
(WebKit::WebResourceCacheManager::~WebResourceCacheManager):
(WebKit::WebResourceCacheManager::didReceiveMessage): Calls through to didReceiveWebResourceCacheManagerMessage.
(WebKit::WebResourceCacheManager::getCacheOrigins): Gets a list of origins with cache entries from the memory

cache, and puts them into a vector to send to the UI process.

(WebKit::WebResourceCacheManager::deleteCacheForOrigin): Calls through to memoryCache to delete all cache entries

from a given origin.

(WebKit::WebResourceCacheManager::deleteAllCache):

  • WebProcess/MemoryCache/WebResourceCacheManager.h: Added.
  • WebProcess/MemoryCache/WebResourceCacheManager.messages.in: Added.
  • WebProcess/WebProcess.cpp:

(WebKit::WebProcess::didReceiveMessage):
(WebKit::WebProcess::clearResourceCaches): Tell the memory cache to evict its resources. This was done on WebKit1,

but not WebKit2.

  • WebProcess/WebProcess.h:


  • WebKit2.xcodeproj/project.pbxproj: Added new files.
  • win/WebKit2.vcproj: Ditto.
  • win/WebKit2Common.vsprops: Added new include directory.
  • win/WebKit2Generated.make: Added new header.
11:27 AM Changeset in webkit [78847] by commit-queue@webkit.org
  • 1 edit
    3 adds in trunk/LayoutTests

2011-02-17 Andreas Kling <kling@webkit.org>

Reviewed by Dirk Schulze.

SVG: Add test for color animation with alpha value in calcMode=discrete
https://bugs.webkit.org/show_bug.cgi?id=54666

  • svg/animations/animate-color-rgba-calcMode-discrete-expected.txt: Added.
  • svg/animations/animate-color-rgba-calcMode-discrete.html: Added.
  • svg/animations/script-tests/animate-color-rgba-calcMode-discrete.js: Added.
11:19 AM Changeset in webkit [78846] by hyatt@apple.com
  • 76 edits in trunk/Source

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

Reviewed by Dan Bernstein.

Convert the line box tree to floating point and eliminate font rounding hacks. This patch removes all of the rounding
hacks from the Font code and makes sure all Font APIs involving width measurement and width offsets use floats.

The line box tree's x, y and logicalWidth members have all been converted to floats and all of the line box APIs have
been changed as well.

In terms of pixel adjustments, overflow is using an enclosing model (so it will be enclosingIntRect of a line box's x/y/width/height).

Background and border painting is using a rounding model, so borders and backgrounds will round to the nearest pixel when painting.

Replaced elements still snap to integer positions on lines, and they use a rounding model as well, although their underlying line boxes
still have a precise floating point position.

Justification will now allow subpixel positioning to occur as well. Platforms that don't support subpixel positioning should already
be rounding justification spacing in their font code.

Many layout test results change on Mac, since rounding hacks were used there and are now gone.

../WebCore:

  • WebCore.exp.in:
  • html/canvas/CanvasRenderingContext2D.cpp:

(WebCore::CanvasRenderingContext2D::drawTextInternal):

  • platform/chromium/FileChooserChromium.cpp:

(WebCore::FileChooser::basenameForWidth):

  • platform/graphics/Font.cpp:

(WebCore::Font::width):

  • platform/graphics/Font.h:

(WebCore::Font::spaceWidth):
(WebCore::Font::tabWidth):

  • platform/graphics/FontFastPath.cpp:

(WebCore::Font::getGlyphsAndAdvancesForSimpleText):

  • platform/graphics/GraphicsContext.cpp:

(WebCore::GraphicsContext::drawText):
(WebCore::GraphicsContext::drawEmphasisMarks):
(WebCore::GraphicsContext::drawBidiText):
(WebCore::GraphicsContext::drawHighlightForText):

  • platform/graphics/GraphicsContext.h:
  • platform/graphics/SimpleFontData.cpp:

(WebCore::SimpleFontData::SimpleFontData):
(WebCore::SimpleFontData::platformGlyphInit):

  • platform/graphics/SimpleFontData.h:

(WebCore::SimpleFontData::spaceWidth):

  • platform/graphics/StringTruncator.cpp:

(WebCore::stringWidth):
(WebCore::truncateString):
(WebCore::StringTruncator::centerTruncate):
(WebCore::StringTruncator::rightTruncate):
(WebCore::StringTruncator::width):

  • platform/graphics/StringTruncator.h:
  • platform/graphics/TextRun.h:

(WebCore::TextRun::TextRun):
(WebCore::TextRun::xPos):
(WebCore::TextRun::expansion):
(WebCore::TextRun::directionalOverride):
(WebCore::TextRun::disableSpacing):

  • platform/graphics/WidthIterator.cpp:

(WebCore::WidthIterator::WidthIterator):
(WebCore::WidthIterator::advance):

  • platform/graphics/WidthIterator.h:
  • platform/graphics/cairo/GraphicsContextCairo.cpp:

(WebCore::GraphicsContext::drawLineForText):
(WebCore::GraphicsContext::drawLineForTextChecking):

  • platform/graphics/cg/GraphicsContextCG.cpp:

(WebCore::GraphicsContext::drawLineForText):

  • platform/graphics/mac/ComplexTextController.cpp:

(WebCore::ComplexTextController::ComplexTextController):
(WebCore::ComplexTextController::advance):
(WebCore::ComplexTextController::adjustGlyphsAndAdvances):

  • platform/graphics/mac/ComplexTextController.h:
  • platform/graphics/mac/FontComplexTextMac.cpp:

(WebCore::Font::getGlyphsAndAdvancesForComplexText):

  • platform/graphics/mac/GraphicsContextMac.mm:

(WebCore::GraphicsContext::drawLineForTextChecking):

  • platform/graphics/qt/GraphicsContextQt.cpp:

(WebCore::GraphicsContext::drawLineForText):
(WebCore::GraphicsContext::drawLineForTextChecking):

  • platform/graphics/qt/SimpleFontDataQt.cpp:

(WebCore::SimpleFontData::platformGlyphInit):

  • platform/graphics/skia/GraphicsContextSkia.cpp:

(WebCore::GraphicsContext::drawLineForTextChecking):
(WebCore::GraphicsContext::drawLineForText):

  • platform/graphics/win/GraphicsContextCGWin.cpp:

(WebCore::GraphicsContext::drawLineForTextChecking):

  • platform/graphics/win/UniscribeController.cpp:

(WebCore::UniscribeController::shapeAndPlaceItem):

  • platform/gtk/FileChooserGtk.cpp:

(WebCore::FileChooser::basenameForWidth):

  • platform/mac/DragImageMac.mm:

(WebCore::widthWithFont):
(WebCore::drawAtPoint):

  • platform/mac/FileChooserMac.mm:

(WebCore::FileChooser::basenameForWidth):

  • platform/win/DragImageWin.cpp:

(WebCore::createDragImageForLink):

  • platform/win/FileChooserWin.cpp:

(WebCore::FileChooser::basenameForWidth):

  • platform/win/PopupMenuWin.cpp:

(WebCore::PopupMenuWin::calculatePositionAndSize):

  • platform/win/WebCoreTextRenderer.cpp:

(WebCore::WebCoreTextFloatWidth):

  • rendering/HitTestResult.cpp:

(WebCore::HitTestResult::addNodeToRectBasedTestResult):

  • rendering/HitTestResult.h:
  • rendering/InlineBox.cpp:

(WebCore::InlineBox::adjustPosition):
(WebCore::InlineBox::placeEllipsisBox):
(WebCore::InlineBox::locationIncludingFlipping):
(WebCore::InlineBox::flipForWritingMode):

  • rendering/InlineBox.h:

(WebCore::InlineBox::InlineBox):
(WebCore::InlineBox::adjustLineDirectionPosition):
(WebCore::InlineBox::adjustBlockDirectionPosition):
(WebCore::InlineBox::setX):
(WebCore::InlineBox::x):
(WebCore::InlineBox::setY):
(WebCore::InlineBox::y):
(WebCore::InlineBox::width):
(WebCore::InlineBox::height):
(WebCore::InlineBox::logicalLeft):
(WebCore::InlineBox::logicalRight):
(WebCore::InlineBox::setLogicalLeft):
(WebCore::InlineBox::pixelSnappedLogicalLeft):
(WebCore::InlineBox::pixelSnappedLogicalRight):
(WebCore::InlineBox::setLogicalWidth):
(WebCore::InlineBox::logicalWidth):
(WebCore::InlineBox::verticalAlign):

  • rendering/InlineFlowBox.cpp:

(WebCore::InlineFlowBox::roundedFrameRect):
(WebCore::InlineFlowBox::adjustPosition):
(WebCore::InlineFlowBox::placeBoxesInInlineDirection):
(WebCore::InlineFlowBox::adjustMaxAscentAndDescent):
(WebCore::verticalPositionForBox):
(WebCore::InlineFlowBox::computeLogicalBoxHeights):
(WebCore::InlineFlowBox::placeBoxesInBlockDirection):
(WebCore::InlineFlowBox::addBoxShadowVisualOverflow):
(WebCore::InlineFlowBox::addTextBoxVisualOverflow):
(WebCore::InlineFlowBox::computeOverflow):
(WebCore::InlineFlowBox::setLayoutOverflow):
(WebCore::InlineFlowBox::setVisualOverflow):
(WebCore::InlineFlowBox::nodeAtPoint):
(WebCore::InlineFlowBox::paintBoxDecorations):
(WebCore::InlineFlowBox::paintMask):
(WebCore::InlineFlowBox::placeEllipsisBox):

  • rendering/InlineFlowBox.h:

(WebCore::InlineFlowBox::maxYLayoutOverflow):
(WebCore::InlineFlowBox::maxXLayoutOverflow):
(WebCore::InlineFlowBox::layoutOverflowRect):
(WebCore::InlineFlowBox::maxYVisualOverflow):
(WebCore::InlineFlowBox::maxXVisualOverflow):
(WebCore::InlineFlowBox::visualOverflowRect):

  • rendering/InlineTextBox.cpp:

(WebCore::InlineTextBox::placeEllipsisBox):
(WebCore::InlineTextBox::nodeAtPoint):
(WebCore::paintTextWithShadows):
(WebCore::InlineTextBox::paint):
(WebCore::InlineTextBox::paintSelection):
(WebCore::InlineTextBox::paintCompositionBackground):
(WebCore::InlineTextBox::paintDecoration):
(WebCore::InlineTextBox::paintSpellingOrGrammarMarker):
(WebCore::InlineTextBox::paintTextMatchMarker):
(WebCore::InlineTextBox::paintDocumentMarkers):
(WebCore::InlineTextBox::paintCompositionUnderline):
(WebCore::InlineTextBox::textPos):
(WebCore::InlineTextBox::offsetForPosition):
(WebCore::InlineTextBox::positionForOffset):

  • rendering/InlineTextBox.h:

(WebCore::InlineTextBox::setExpansion):

  • rendering/RenderBR.h:

(WebCore::RenderBR::width):

  • rendering/RenderBlock.cpp:

(WebCore::stripTrailingSpace):
(WebCore::updatePreferredWidth):
(WebCore::RenderBlock::computeInlinePreferredLogicalWidths):
(WebCore::RenderBlock::adjustForBorderFit):
(WebCore::RenderBlock::addFocusRingRects):

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

(WebCore::RenderBlock::computeInlineDirectionPositionsForLine):
(WebCore::RenderBlock::fitBelowFloats):
(WebCore::textWidth):
(WebCore::tryHyphenating):
(WebCore::RenderBlock::findNextLineBreak):

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::positionLineBox):
(WebCore::RenderBox::flipForWritingMode):

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

(WebCore::RenderCombineText::width):
(WebCore::RenderCombineText::adjustTextOrigin):
(WebCore::RenderCombineText::combineText):

  • rendering/RenderCombineText.h:

(WebCore::RenderCombineText::combinedTextWidth):

  • rendering/RenderCounter.cpp:

(WebCore::RenderCounter::computePreferredLogicalWidths):

  • rendering/RenderCounter.h:
  • rendering/RenderEmbeddedObject.cpp:

(WebCore::RenderEmbeddedObject::getReplacementTextGeometry):

  • rendering/RenderFileUploadControl.cpp:

(WebCore::RenderFileUploadControl::computePreferredLogicalWidths):

  • rendering/RenderImage.cpp:
  • rendering/RenderInline.cpp:

(WebCore::RenderInline::linesBoundingBox):
(WebCore::RenderInline::linesVisualOverflowBoundingBox):
(WebCore::RenderInline::addFocusRingRects):
(WebCore::RenderInline::paintOutline):

  • rendering/RenderListBox.cpp:

(WebCore::RenderListBox::updateFromElement):
(WebCore::RenderListBox::paintItemForeground):

  • rendering/RenderMenuList.cpp:

(WebCore::RenderMenuList::updateOptionsWidth):

  • rendering/RenderText.cpp:

(WebCore::RenderText::localCaretRect):
(WebCore::RenderText::widthFromCache):
(WebCore::RenderText::trimmedPrefWidths):
(WebCore::RenderText::minLogicalWidth):
(WebCore::RenderText::maxLogicalWidth):
(WebCore::RenderText::computePreferredLogicalWidths):
(WebCore::RenderText::firstRunOrigin):
(WebCore::RenderText::firstRunX):
(WebCore::RenderText::firstRunY):
(WebCore::RenderText::width):
(WebCore::RenderText::linesBoundingBox):

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

(WebCore::RenderTextControl::getAvgCharWidth):
(WebCore::RenderTextControl::paintPlaceholder):

  • rendering/RenderTreeAsText.cpp:

(WebCore::writeTextRun):

  • rendering/RootInlineBox.cpp:

(WebCore::RootInlineBox::placeEllipsis):
(WebCore::RootInlineBox::placeEllipsisBox):
(WebCore::RootInlineBox::adjustPosition):
(WebCore::RootInlineBox::beforeAnnotationsAdjustment):
(WebCore::RootInlineBox::paddedLayoutOverflowRect):

  • rendering/RootInlineBox.h:
  • rendering/VerticalPositionCache.h:
  • rendering/svg/SVGInlineTextBox.cpp:

(WebCore::SVGInlineTextBox::offsetForPosition):
(WebCore::SVGInlineTextBox::positionForOffset):
(WebCore::SVGInlineTextBox::constructTextRun):

  • rendering/svg/SVGInlineTextBox.h:
  • rendering/svg/SVGRenderTreeAsText.cpp:

(WebCore::writeRenderSVGTextBox):

  • rendering/svg/SVGTextMetrics.cpp:

(WebCore::SVGTextMetrics::SVGTextMetrics):
(WebCore::constructTextRun):

  • svg/SVGFont.cpp:

(WebCore::floatWidthMissingGlyphCallback):
(WebCore::Font::drawTextUsingSVGFont):

../WebKit/mac:

  • Misc/WebKitNSStringExtras.mm:

(-[NSString _web_drawAtPoint:font:textColor:allowingFontSmoothing:]):
(-[NSString _web_widthWithFont:]):

../WebKit/win:

  • WebKitGraphics.cpp:

(CenterTruncateStringToWidth):
(RightTruncateStringToWidth):

../WebKit2:

  • WebProcess/WebCoreSupport/win/WebPopupMenuWin.cpp:

(WebKit::WebPopupMenu::setUpPlatformData):

11:04 AM Changeset in webkit [78845] by mihaip@chromium.org
  • 2 edits in trunk/LayoutTests

2011-02-17 Mihai Parparita <mihaip@chromium.org>

Unreviewed Chromium expectations update. Remove duplicate expectation
for media/video-display-toggle.html (on Snow Leopard only).

  • platform/chromium/test_expectations.txt:
10:57 AM Changeset in webkit [78844] by Nikolas Zimmermann
  • 3 edits
    4 adds in trunk

2011-02-17 Nikolas Zimmermann <nzimmermann@rim.com>

Reviewed by Dirk Schulze.

'ex' coordinates fail, when SVGFont doesn't provide an explicit xHeight attribute
https://bugs.webkit.org/show_bug.cgi?id=54672

Measure the xHeight from the 'x' glyph of a SVGFont, if the font itself doesn't explicitely specify an x-height attribute.
Fixes the modern version of SVG 1.1 2nd Edition coords-units-03-b.svg.

Test: svg/W3C-SVG-1.1-SE/coords-units-03-b.svg

  • platform/graphics/SimpleFontData.cpp: (WebCore::SimpleFontData::SimpleFontData):

2011-02-17 Nikolas Zimmermann <nzimmermann@rim.com>

Reviewed by Dirk Schulze.

'ex' coordinates fail, when SVGFont doesn't provide an explicit xHeight attribute
https://bugs.webkit.org/show_bug.cgi?id=54672

Add new testcase from SVG 1.1 2nd Edition covering exs support + SVGFonts.

  • platform/mac/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.checksum: Added.
  • platform/mac/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.png: Added.
  • platform/mac/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.txt: Added.
  • svg/W3C-SVG-1.1-SE/coords-units-03-b.svg: Added.
10:21 AM Changeset in webkit [78843] by atwilson@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed test expectations update.

[Chromium] set_version_blocked.html and set_version_queue.html started crashing on Chromium dbg bots after WK roll 78748:78777
https://bugs.webkit.org/show_bug.cgi?id=54644

Re-enabling tests now that they pass again.

  • platform/chromium/test_expectations.txt:
10:04 AM Changeset in webkit [78842] by luiz@webkit.org
  • 29 edits in trunk/Source

HTML5 <details> and <summary>: localized text
https://bugs.webkit.org/show_bug.cgi?id=54260

Reviewed by Adam Roben.

Source/WebCore:

The method defaultDetailsSummaryText was added to LocalizationStrategy class and to
platform/LocalizedStrings. It is used to provide the default label to be used by a
<details> tag that has no <summary> child.

  • platform/LocalizationStrategy.h:
  • platform/LocalizedStrings.cpp:

(WebCore::fileButtonNoFileSelectedLabel):
(WebCore::defaultDetailsSummaryText):

  • platform/LocalizedStrings.h:
  • platform/android/LocalizedStringsAndroid.cpp:

(WebCore::defaultDetailsSummaryText):

  • platform/brew/LocalizedStringsBrew.cpp:

(WebCore::defaultDetailsSummaryText):

  • platform/efl/LocalizedStringsEfl.cpp:

(WebCore::defaultDetailsSummaryText):

  • platform/gtk/LocalizedStringsGtk.cpp:

(WebCore::defaultDetailsSummaryText):

  • platform/haiku/LocalizedStringsHaiku.cpp:

(WebCore::defaultDetailsSummaryText):

  • platform/wx/LocalizedStringsWx.cpp:

(WebCore::defaultDetailsSummaryText):

Source/WebKit:

Default details summary text must be localizable.

  • English.lproj/Localizable.strings:

Source/WebKit/chromium:

The method defaultDetailsSummaryText was added to LocalizedStrings. It is used to provide
the default label to be used by a <details> tag that has no <summary> child.

  • src/LocalizedStrings.cpp:

(WebCore::defaultDetailsSummaryText):

Source/WebKit/mac:

The method defaultDetailsSummaryText was added to LocalizationStrategy class. It is used to
provide the default label to be used by a <details> tag that has no <summary> child.

  • WebCoreSupport/WebPlatformStrategies.h:
  • WebCoreSupport/WebPlatformStrategies.mm:

(WebPlatformStrategies::defaultDetailsSummaryText):

Source/WebKit/qt:

The method defaultDetailsSummaryText was added to LocalizationStrategy class. It is used to
provide the default label to be used by a <details> tag that has no <summary> child.

  • WebCoreSupport/WebPlatformStrategies.cpp:

(WebPlatformStrategies::defaultDetailsSummaryText):

  • WebCoreSupport/WebPlatformStrategies.h:

Source/WebKit/win:

The method defaultDetailsSummaryText was added to LocalizationStrategy class. It is used to
provide the default label to be used by a <details> tag that has no <summary> child.

  • WebCoreSupport/WebPlatformStrategies.cpp:

(WebPlatformStrategies::defaultDetailsSummaryText):

  • WebCoreSupport/WebPlatformStrategies.h:

Source/WebKit/wince:

The method defaultDetailsSummaryText was added to LocalizationStrategy class. It is used to
provide the default label to be used by a <details> tag that has no <summary> child.

  • WebCoreSupport/PlatformStrategiesWinCE.cpp:

(PlatformStrategiesWinCE::defaultDetailsSummaryText):

  • WebCoreSupport/PlatformStrategiesWinCE.h:

Source/WebKit2:

The method defaultDetailsSummaryText was added to LocalizationStrategy class. It is used to
provide the default label to be used by a <details> tag that has no <summary> child.

  • WebProcess/WebCoreSupport/WebPlatformStrategies.cpp:

(WebKit::WebPlatformStrategies::defaultDetailsSummaryText):

  • WebProcess/WebCoreSupport/WebPlatformStrategies.h:
10:00 AM Changeset in webkit [78841] by hans@chromium.org
  • 3 edits in trunk/LayoutTests

2011-02-17 Hans Wennborg <hans@chromium.org>

Reviewed by Jeremy Orlow.

IndexedDB: enable test for auto increment key injection
https://bugs.webkit.org/show_bug.cgi?id=54642

Enable this test now that Chromium supports it.

  • storage/indexeddb/objectstore-autoincrement-expected.txt:
  • storage/indexeddb/objectstore-autoincrement.html:
9:41 AM Changeset in webkit [78840] by Csaba Osztrogonác
  • 2 edits in trunk/Tools

2011-02-17 Csaba Osztrogonác <Csaba Osztrogonác>

Reviewed by Andreas Kling.

[Qt] ImageDiff sometimes hangs
https://bugs.webkit.org/show_bug.cgi?id=54641

  • DumpRenderTree/qt/ImageDiff.cpp: Clear actualImage and baselineImage after all comparison. (main):
9:30 AM Changeset in webkit [78839] by mnaganov@chromium.org
  • 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-02-17 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed test expectations update.
Re-enabling inspector/elements/mutate-unknown-node.html -- should pass after r78831.
https://bugs.webkit.org/show_bug.cgi?id=54635

9:26 AM Changeset in webkit [78838] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/chromium

2011-02-17 Steve Lacey <sjl@chromium.org>

Reviewed by Darin Fisher.

Roll chromium deps to 75190. Includes new dependency
on libjingle.

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

  • DEPS:
9:22 AM Changeset in webkit [78837] by sergio@webkit.org
  • 2 edits
    199 adds in trunk/LayoutTests

2011-02-17 Sergio Villar Senin <svillar@igalia.com>

Unreviewed.

Added a bunch of GTK+ baselines for Mozilla test suites
(tables/mozilla/marvin).

  • platform/gtk/Skipped: Unskip tests which now have results.
9:06 AM Changeset in webkit [78836] by zmo@google.com
  • 2 edits in trunk/LayoutTests

2011-02-17 Zhenyao Mo <zmo@google.com>

Unreviewed, test expectations update.

  • platform/chromium/test_expectations.txt:
8:35 AM Changeset in webkit [78835] by pvarga@webkit.org
  • 2 edits in trunk/Tools

2011-02-17 Peter Varga <pvarga@webkit.org>

Reviewed by Csaba Osztrogonác.

The run-sunspider --v8-suite doesn't work
https://bugs.webkit.org/show_bug.cgi?id=54660

  • Scripts/run-sunspider:
8:27 AM Changeset in webkit [78834] by commit-queue@webkit.org
  • 4 edits in trunk

2011-02-17 Kristian Amlie <kristian.amlie@nokia.com>

Reviewed by Laszlo Gombos.

Updated include paths for phonon.

[Qt] WebKit patches required to work with a modularized version of Qt
https://bugs.webkit.org/show_bug.cgi?id=53916

  • Source/WebKit.pri:

2011-02-17 Kristian Amlie <kristian.amlie@nokia.com>

Reviewed by Laszlo Gombos.

Updated include paths for phonon.

[Qt] WebKit patches required to work with a modularized version of Qt
https://bugs.webkit.org/show_bug.cgi?id=53916

Build fix. No tests.

  • WebCore.pro:
8:25 AM Changeset in webkit [78833] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/efl

2011-02-17 Ryuan Choi <ryuan.choi@samsung.com>

Reviewed by Kent Tamura.

[EFL] Possible crash of ewk_frame_contents_set
https://bugs.webkit.org/show_bug.cgi?id=54091

Use length of contents if contents_size parameter is bigger than length
of contents.

  • ewk/ewk_frame.cpp: (_ewk_frame_contents_set_internal):
8:19 AM Changeset in webkit [78832] by Adam Roben
  • 2 edits in trunk/Source/WebKit2

Make sure layout is up-to-date before rendering the layer tree in DrawingAreaImpl

Fixes <http://webkit.org/b/54646> <rdar://problem/9016889> Assertion failure in
FrameView::paintContents when calling WKPageForceRepaint on a page that uses accelerated
compositing

Reviewed by Anders Carlsson.

  • WebProcess/WebPage/DrawingAreaImpl.cpp:

(WebKit::DrawingAreaImpl::forceRepaint): Lay out before we do anything else.

8:13 AM Changeset in webkit [78831] by loislo@chromium.org
  • 4 edits in trunk/LayoutTests

2011-02-17 Ilya Tikhonovsky <loislo@chromium.org>

Reviewed by Yury Semikhatsky.

Web Inspector: [Chromium] inspector/elements/mutate-unknown-node.html test is flaky.
https://bugs.webkit.org/show_bug.cgi?id=54635

It was a race condition. Sometimes Inspector was loaded before domContentLoaded event but sometimes not.
As result it receives second setDocument and got new ids for the DOM elements.

  • http/tests/inspector/elements-test.js: (initialize_ElementTest.InspectorTest.dumpDOMAgentTree): (initialize_ElementTest):
  • inspector/elements/mutate-unknown-node-expected.txt:
  • inspector/elements/mutate-unknown-node.html:
8:00 AM Changeset in webkit [78830] by Adam Roben
  • 2 edits in trunk/LayoutTests

Skip a new spinbutton test on Windows

Also updated the Bugzilla URL for these tests to point to a bug that isn't marked Resolved,
since clearly there's still an unresolved bug here! The new bug is
<http://webkit.org/b/54662>.

  • platform/win/Skipped: Added fast/forms/input-appearance-spinbutton-layer.html.
7:59 AM Changeset in webkit [78829] by Adam Roben
  • 1 edit
    1 add in trunk/LayoutTests

Check in expected failure results on Windows for accessibility/canvas-fallback-content.html

Failure is tracked by <http://webkit.org/b/54654>.

  • platform/win/accessibility/canvas-fallback-content-expected.txt: Added.
7:59 AM Changeset in webkit [78828] by Adam Roben
  • 2 edits in trunk/LayoutTests

Skip a failing test on Windows

Failure is tracked by <http://webkit.org/b/54655>.

  • platform/win/Skipped: Added

http/tests/security/xssAuditor/script-tag-with-fancy-unicode.html.

7:58 AM Changeset in webkit [78827] by Adam Roben
  • 2 edits in trunk/LayoutTests

Update Windows results after r78690

Fixes <http://webkit.org/b/54657>.

  • platform/win/media/controls-without-preload-expected.txt:
7:58 AM Changeset in webkit [78826] by Adam Roben
  • 2 edits in trunk/LayoutTests

Skip all inspector/debugger tests on Windows

The failures are tracked by <http://webkit.org/b/54490>.

  • platform/win/Skipped:
7:55 AM BuildingGtk edited by Martin Robinson
(diff)
7:32 AM Changeset in webkit [78825] by mnaganov@chromium.org
  • 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-02-17 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed test expectations update.
Mark inspector/debugger/debug-inlined-scripts.html as crashing in debug.
https://bugs.webkit.org/show_bug.cgi?id=54659

7:05 AM Changeset in webkit [78824] by Philippe Normand
  • 3 edits in trunk/LayoutTests

2011-02-17 Philippe Normand <pnormand@igalia.com>

Unreviewed, rebaseline GTK test results.

[GStreamer] media/video-zoom-controls.html fails
https://bugs.webkit.org/show_bug.cgi?id=50918

  • platform/gtk/Skipped:
  • platform/gtk/media/video-zoom-controls-expected.txt:
7:01 AM Changeset in webkit [78823] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebKit/efl

2011-02-17 Grzegorz Czajkowski <g.czajkowski@samsung.com>

Reviewed by Kent Tamura.

Doxygen documentation for ewk cookies
https://bugs.webkit.org/show_bug.cgi?id=54553

  • ewk/ewk_cookies.cpp: (ewk_cookies_file_set): (ewk_cookies_policy_set): (ewk_cookies_policy_get):
  • ewk/ewk_cookies.h:
6:55 AM Changeset in webkit [78822] by mnaganov@chromium.org
  • 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-02-17 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed test expectations update.
Skip inspector/elements/mutate-unknown-node.html, it now timeouts.

6:23 AM Changeset in webkit [78821] by sergio@webkit.org
  • 2 edits
    75 adds in trunk/LayoutTests

2011-02-17 Sergio Villar Senin <svillar@igalia.com>

Unreviewed.

Add the next set (tables/mozilla/dom) of GTK+ Mozilla test suite results.

  • platform/gtk/Skipped: Updated the skipped list.
6:16 AM Changeset in webkit [78820] by mnaganov@chromium.org
  • 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt

[Chromium] Unreviewed -- forgot to specify 'DEBUG' prefix for expectations in r78818.

6:08 AM Changeset in webkit [78819] by podivilov@chromium.org
  • 2 edits in trunk/Source/WebKit/chromium

2011-02-17 Pavel Podivilov <podivilov@chromium.org>

Unreviewed, interactive ui test fix for r78808.

  • src/js/Tests.js: (.TestSuite.prototype._waitUntilScriptsAreParsed.waitForAllScripts): (.TestSuite.prototype._waitUntilScriptsAreParsed):
6:05 AM Changeset in webkit [78818] by mnaganov@chromium.org
  • 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-02-17 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed test expectations update.
storage/indexeddb/set_version_(blocked|queue).html fails on all platforms in dbg on Chromium waterfall.
https://bugs.webkit.org/show_bug.cgi?id=54644

5:39 AM Changeset in webkit [78817] by commit-queue@webkit.org
  • 7 edits in trunk/Source

2011-02-17 Hui Huang <hui.2.huang@nokia.com>

Reviewed by Laszlo Gombos.

The URL of HTML5 Video Element is percent encoded at websites such as youtube.
It is percent encoded again by QUrl constructor QUrl::QUrl(QString). This causes
the HTTP GET request for the video to be rejected by the service provider.
https://bugs.webkit.org/show_bug.cgi?id=53973.

The bug is fixed by constructing QUrl from the encoded URL.

New test function tst_QWebPage::loadHtml5Video() is added in
Source/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp

  • platform/graphics/qt/MediaPlayerPrivateQt.cpp: (WebCore::MediaPlayerPrivateQt::commitLoad):

2011-02-17 Hui Huang <hui.2.huang@nokia.com>

Reviewed by Laszlo Gombos.

The URL of HTML5 Video Element is percent encoded at websites such as youtube.
It is percent encoded again by QUrl constructor QUrl::QUrl(QString). This causes
the HTTP GET request for the video to be rejected by the service provider.
https://bugs.webkit.org/show_bug.cgi?id=53973.

The bug is fixed by constructing QUrl from the encoded URL in
MediaPlayerPrivateQt::commitLoad.

New test function tst_QWebPage::loadHtml5Video() is added to load HTML content with
HTML5 Video element. A new public method DumpRenderTreeSupportQt::mediaContentUrlByElementId
is added to retrieve the URL of the media content from WebCore MediaPlayerPrivateQt.
A new macro ENABLE_QT_MULTIMEDIA is introduced in tests.pri to make sure that the test
is skipped if Qt Multimedia is not available.

  • WebCoreSupport/DumpRenderTreeSupportQt.cpp: (DumpRenderTreeSupportQt::mediaContentUrlByElementId):
  • WebCoreSupport/DumpRenderTreeSupportQt.h:
  • tests/qwebpage/tst_qwebpage.cpp: (tst_QWebPage::loadHtml5Video):
  • tests/tests.pri:
5:38 AM Changeset in webkit [78816] by andreas.kling@nokia.com
  • 4 edits in trunk/Source

2011-02-17 Andreas Kling <kling@webkit.org>

Reviewed by Antti Koivisto.

[Qt] Crash when calling QWebFrame::setUrl() while a previous load has pending requests
https://bugs.webkit.org/show_bug.cgi?id=49216

  • tests/qwebframe/tst_qwebframe.cpp:

2011-02-17 Andreas Kling <kling@webkit.org>

Reviewed by Antti Koivisto.

[Qt] Crash when calling QWebFrame::setUrl() while a previous load has pending requests
https://bugs.webkit.org/show_bug.cgi?id=49216

CachedResourceRequest::didFail() will protect the CachedResourceLoader's
document() while it runs, but if we're being called from the Document destructor,
the protecting RefPtr<Document> will cause a double-delete instead.

  • loader/cache/CachedResourceLoader.cpp: (WebCore::CachedResourceLoader::~CachedResourceLoader): Clear the m_document pointer so CachedResourceRequest::didFail() won't try to protect it. (WebCore::CachedResourceLoader::frame): Add null-check for m_document.
5:20 AM Changeset in webkit [78815] by podivilov@chromium.org
  • 3 edits in trunk/Source/WebCore

2011-02-17 Andrey Adaikin <aandrey@google.com>

Reviewed by Pavel Feldman.

Web Inspector: [Text editor] Add updateHighlight method to the highlighter
https://bugs.webkit.org/show_bug.cgi?id=54448

  • inspector/front-end/SourceTokenizer.js:
  • inspector/front-end/TextEditorHighlighter.js: (WebInspector.TextEditorHighlighter.prototype.set mimeType): (WebInspector.TextEditorHighlighter.prototype.reset): (WebInspector.TextEditorHighlighter.prototype.updateHighlight): (WebInspector.TextEditorHighlighter.prototype._highlightInChunks): (WebInspector.TextEditorHighlighter.prototype._highlightLines):
5:14 AM Changeset in webkit [78814] by mnaganov@chromium.org
  • 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-02-17 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed test expectations update.
media/video-display-toggle.html fails on all platforms.
https://bugs.webkit.org/show_bug.cgi?id=54640

5:02 AM Changeset in webkit [78813] by sergio@webkit.org
  • 2 edits in trunk/LayoutTests

2011-02-17 Sergio Villar Senin <svillar@igalia.com>

Unreviewed.

Added flaky test media/video-display-toggle.html. Fails only on
debug bots.

  • platform/gtk/Skipped: Updated the skipped list.
4:55 AM Changeset in webkit [78812] by mnaganov@chromium.org
  • 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-02-17 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed test expectations update.
inspector/elements/set-attribute.html works -- enable it.
inspector/debugger/dom-breakpoints.html timeouts -- bug filed.
https://bugs.webkit.org/show_bug.cgi?id=54638

4:38 AM Changeset in webkit [78811] by mnaganov@chromium.org
  • 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-02-17 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed test expectations update.
Mark inspector/elements/mutate-unknown-node.html as flaky.
https://bugs.webkit.org/show_bug.cgi?id=54635

4:37 AM BuildingGtk edited by Csaba Osztrogonác
Update necessary libglib version. Based on … (diff)
4:34 AM Changeset in webkit [78810] by mnaganov@chromium.org
  • 8 edits
    18 adds in trunk/LayoutTests/platform

2011-02-17 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed test expectations update after r78806.
Rebaseline SVG tests:
batik/paints/patternRegions-positioned-objects.svg
custom/nested-pattern-boundingBoxModeContent.svg
dynamic-updates/SVGPatternElement-dom-patternContentUnits-attr.html
dynamic-updates/SVGPatternElement-svgdom-patternContentUnits-prop.html

4:20 AM Changeset in webkit [78809] by mnaganov@chromium.org
  • 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-02-17 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed test expectations update after r78878.
Skip timing out media/video-controls-in-media-document.html.
https://bugs.webkit.org/show_bug.cgi?id=54634

4:08 AM Changeset in webkit [78808] by podivilov@chromium.org
  • 6 edits
    2 adds in trunk

2011-02-16 Pavel Podivilov <podivilov@chromium.org>

Reviewed by Yury Semikhatsky.

Web Inspector: show all inlined scripts from single document in the same source frame.
https://bugs.webkit.org/show_bug.cgi?id=54544

Currently when debugging synchronously executed inlined scripts each script is shown in it's own source frame ("example.html:24").
We should show such scripts in the same source frame "example.html" with <script></script> framing.

  • http/tests/inspector/debugger-test.js: (initialize_DebuggerTest.InspectorTest._pausedScript): (initialize_DebuggerTest.InspectorTest._resumedScript):
  • inspector/debugger/debug-inlined-scripts-expected.txt: Added.
  • inspector/debugger/debug-inlined-scripts.html: Added.
  • inspector/debugger/debugger-breakpoints-not-activated-on-reload.html:
  • inspector/debugger/debugger-pause-on-breakpoint.html:

2011-02-16 Pavel Podivilov <podivilov@chromium.org>

Reviewed by Yury Semikhatsky.

Web Inspector: show all inlined scripts from single document in the same source frame.
https://bugs.webkit.org/show_bug.cgi?id=54544

Currently when debugging synchronously executed inlined scripts each script is shown in it's own source frame ("example.html:24").
We should show such scripts in the same source frame "example.html" with <script></script> framing.

Test: inspector/debugger/debug-inlined-scripts.html

  • inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype._scriptSourceChanged): (WebInspector.ScriptsPanel.prototype._addScript): (WebInspector.ScriptsPanel.prototype._resourceForURL): (WebInspector.ScriptsPanel.prototype._resourceLoadingFinished): (WebInspector.ScriptsPanel.prototype.addConsoleMessage): (WebInspector.ScriptsPanel.prototype.clearConsoleMessages): (WebInspector.ScriptsPanel.prototype.reset): (WebInspector.ScriptsPanel.prototype._sourceFrameForResource): (WebInspector.ScriptsPanel.prototype._sourceFrameForScript): (WebInspector.ScriptsPanel.prototype._recreateSourceFrame): (WebInspector.ScriptsPanel.prototype._showScriptOrResource): (WebInspector.ScriptsPanel.prototype._addScriptToFilesMenu.optionCompare): (WebInspector.ScriptsPanel.prototype._addScriptToFilesMenu): (WebInspector.SourceFrameContentProviderForScript.prototype.requestContent): (WebInspector.SourceFrameContentProviderForScript.prototype._buildSource):
3:13 AM Changeset in webkit [78807] by rgabor@webkit.org
  • 2 edits in trunk/Tools

2011-02-17 Gabor Rapcsanyi <rgabor@webkit.org>

Reviewed by Csaba Osztrogonác.

[NRWT] Fix environment setup on Qt port.
https://bugs.webkit.org/show_bug.cgi?id=54549

  • Scripts/webkitpy/layout_tests/port/qt.py:
3:00 AM Changeset in webkit [78806] by Nikolas Zimmermann
  • 9 edits
    4 adds in trunk

2011-02-17 Nikolas Zimmermann <nzimmermann@rim.com>

Reviewed by Dirk Schulze.

svg/batik/paints/patternRegions-positioned-objects.svg fails on Windows
https://bugs.webkit.org/show_bug.cgi?id=44484

Pattern of pattern defined with objectBoundingBox does not render correctly
https://bugs.webkit.org/show_bug.cgi?id=53463

Fix <pattern> + patternContentUnits="objectBoundingBox" support.
We were incorrrectly translating the tile image transform, by the target objects bbox.x()/y().
RenderSVGResourceMask/Clipper don't have this error.


Fix nesting <patterns> in objectBoundingBox mode, propagate the tileImageTransform as new user-space
when drawing the pattern children. <mask> + <clipPath> don't have the problem.

Test: svg/custom/nested-pattern-boundingBoxModeContent.svg

  • rendering/svg/RenderSVGResourcePattern.cpp: (WebCore::RenderSVGResourcePattern::buildTileImageTransform): (WebCore::RenderSVGResourcePattern::createTileImage):

2011-02-17 Nikolas Zimmermann <nzimmermann@rim.com>

Reviewed by Dirk Schulze.

svg/batik/paints/patternRegions-positioned-objects.svg fails on Windows
https://bugs.webkit.org/show_bug.cgi?id=44484


Pattern of pattern defined with objectBoundingBox does not render correctly
https://bugs.webkit.org/show_bug.cgi?id=53463

Update SnowLeopard pixel test baseline after adding new patternContentUnits="objectBoundingBox" tests.

  • platform/mac/svg/batik/paints/patternRegions-positioned-objects-expected.checksum:
  • platform/mac/svg/batik/paints/patternRegions-positioned-objects-expected.png:
  • platform/mac/svg/custom/nested-pattern-boundingBoxModeContent-expected.checksum: Added.
  • platform/mac/svg/custom/nested-pattern-boundingBoxModeContent-expected.png: Added.
  • platform/mac/svg/custom/nested-pattern-boundingBoxModeContent-expected.txt: Added.
  • platform/mac/svg/dynamic-updates/SVGPatternElement-dom-patternContentUnits-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGPatternElement-dom-patternContentUnits-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGPatternElement-svgdom-patternContentUnits-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGPatternElement-svgdom-patternContentUnits-prop-expected.png:
  • svg/custom/nested-pattern-boundingBoxModeContent.svg: Added.
2:46 AM Changeset in webkit [78805] by Csaba Osztrogonác
  • 2 edits in trunk/LayoutTests

Unreviewed.

[Qt] http/tests/security/xssAuditor/script-tag-with-fancy-unicode.html fails
https://bugs.webkit.org/show_bug.cgi?id=54630

  • platform/qt/Skipped: Add http/tests/security/xssAuditor/script-tag-with-fancy-unicode.html temporarily.
2:32 AM Changeset in webkit [78804] by sergio@webkit.org
  • 2 edits in trunk/LayoutTests

2011-02-17 Sergio Villar Senin <svillar@igalia.com>

Unreviewed.

[GTK] Failing canvas security tests
https://bugs.webkit.org/show_bug.cgi?id=30580

Test is working fine locally in both release and debug builds so
unskipping it.

  • platform/gtk/Skipped: Updated the skipped list.
2:21 AM Changeset in webkit [78803] by Csaba Osztrogonác
  • 2 edits in trunk/Source/WebCore

Unreviewed.

[Qt][V8] Buildfix after r78752.

  • CodeGenerators.pri: Add missing IDL files.
1:50 AM Changeset in webkit [78802] by mario@webkit.org
  • 2 edits in trunk/LayoutTests

2011-02-17 Mario Sanchez Prada <msanchez@igalia.com>

Unreviewed, skipping failing test on GTK bots.

[GTK] accessibility/canvas-fallback-content.html is failing on GTK bots
https://bugs.webkit.org/show_bug.cgi?id=54626

  • platform/gtk/Skipped: Skipping failing test.
1:39 AM Changeset in webkit [78801] by sergio@webkit.org
  • 2 edits in trunk/LayoutTests

2011-02-17 Sergio Villar Senin <svillar@igalia.com>

Unreviewed.

Skipped four SVG tests that started to show rounding errors (1
pixel difference) after r78704.

  • platform/gtk/Skipped: Update the skipped list.
1:35 AM Changeset in webkit [78800] by alex
  • 4 edits in trunk/Source/WebKit2

2011-02-17 Alejandro G. Castro <alex@igalia.com>

Reviewed by Martin Robinson.

[GTK] Add WKPluginSiteDataManager.cpp compilation after r78647
https://bugs.webkit.org/show_bug.cgi?id=54564

  • GNUmakefile.am: Added files to compilation.
  • Shared/Plugins/Netscape/NetscapePluginModule.h: used npruntime_internal.h in the include to avoid problems with X types.
  • WebProcess/WebProcess.cpp: (WebKit::WebProcess::setAlwaysUsesComplexTextCodePath): fixed ambiguous reference to Font caused by the X headers required by the plugins.
1:02 AM Changeset in webkit [78799] by kalman@chromium.org
  • 3 edits
    2 adds in trunk

2011-02-17 Benjamin Kalman <kalman@chromium.org>

Reviewed by Ryosuke Niwa.

RTL lineboundary left/right is reversed when cursor is at start of RTL container
https://bugs.webkit.org/show_bug.cgi?id=54534

Test extending the selection left/right by lineboundary from both the leftmost/rightmost ends of LTR and RTL
containers with both LTR and RTL text.

  • editing/selection/extend-left-right-by-lineboundary-expected.txt: Added.
  • editing/selection/extend-left-right-by-lineboundary.html: Added.

2011-02-17 Benjamin Kalman <kalman@chromium.org>

Reviewed by Ryosuke Niwa.

RTL lineboundary left/right is reversed when cursor is at start of RTL container
https://bugs.webkit.org/show_bug.cgi?id=54534

Test: editing/selection/extend-left-right-by-lineboundary.html

Add missing cases for extending left/right by lineboundary.

  • editing/SelectionController.cpp: (WebCore::SelectionController::modifyExtendingRight): (WebCore::SelectionController::modifyExtendingLeft):
12:25 AM Changeset in webkit [78798] by Philippe Normand
  • 2 edits in trunk/Source/WebCore

2011-02-16 Philippe Normand <pnormand@igalia.com>

Reviewed by Martin Robinson.

[GTK] libsoup critical warnings
https://bugs.webkit.org/show_bug.cgi?id=54557

Avoid pausing a soup message for already downloaded resources.

  • platform/network/soup/ResourceHandleSoup.cpp: (WebCore::ResourceHandle::platformSetDefersLoading):
12:21 AM Changeset in webkit [78797] by Philippe Normand
  • 2 edits in trunk/LayoutTests

2011-02-17 Philippe Normand <pnormand@igalia.com>

Unreviewed, fix media-file.js path after r78778.

  • media/video-display-aspect-ratio.html:
12:21 AM Changeset in webkit [78796] by Philippe Normand
  • 1 edit in trunk/LayoutTests/ChangeLog

2011-02-16 Philippe Normand <pnormand@igalia.com>

Reviewed by Martin Robinson.

[GTK] media/video-display-toggle.html still flaky on 32-Bits Release
https://bugs.webkit.org/show_bug.cgi?id=54552

  • media/video-display-toggle.html: Start playback before triggering the display toggle, ensuring the controls (esp. duration display) are conistent.

Feb 16, 2011:

11:17 PM Changeset in webkit [78795] by ggaren@apple.com
  • 4 edits in trunk/Source/JavaScriptCore

2011-02-16 Geoffrey Garen <ggaren@apple.com>

Reviewed by Maciej Stachowiak.

Intermittent crashes beneath MarkStack::drain
https://bugs.webkit.org/show_bug.cgi?id=54614
<rdar://problem/8971070>

The crashes were caused by a GC happening after the global object's
property table had grown (due to compilation), but before the properties
had been fully initialized by program execution.

  • bytecompiler/BytecodeGenerator.cpp: (JSC::BytecodeGenerator::BytecodeGenerator): Explicitly resize the global object's register storage immediately, without waiting for program execution to do it for us. This ensures that the global object's count of global variables is consistent with the size of its global variable storage at all times, and it ensures that all global variables are properly initialized from the get-go.
  • runtime/JSGlobalObject.cpp: (JSC::JSGlobalObject::resizeRegisters):
  • runtime/JSGlobalObject.h: Added a helper function for growing the global object's register storage, and initializing new registers.
11:09 PM Changeset in webkit [78794] by loislo@chromium.org
  • 3 edits in trunk/LayoutTests

2011-02-16 Ilya Tikhonovsky <loislo@chromium.org>

Unreviewed.

Web Inspector: chromium: update test expectation.

  • platform/chromium/inspector/timeline/timeline-parse-html-expected.txt:
  • platform/chromium/test_expectations.txt:
10:53 PM Changeset in webkit [78793] by loislo@chromium.org
  • 2 edits
    1 delete in trunk/LayoutTests

2011-02-16 Ilya Tikhonovsky <loislo@chromium.org>

Unreviewed.

Web Inspector: remove custom test expectations for chromium.

  • platform/chromium/http/tests/inspector/console-resource-errors-expected.txt: Removed.
  • platform/chromium/test_expectations.txt:
10:30 PM Changeset in webkit [78792] by mrowe@apple.com
  • 5 edits in branches/safari-534.20-branch/Source

Versioning.

10:28 PM Changeset in webkit [78791] by mrowe@apple.com
  • 1 copy in tags/Safari-534.20.2

New tag.

10:25 PM Changeset in webkit [78790] by commit-queue@webkit.org
  • 6 edits in trunk/Source

2011-02-16 Brian Ryner <bryner@chromium.org>

Reviewed by Darin Fisher.

Split the socket address field into separate IP address and port fields.
This will make the field less error-prone to parse, for example when
dealing with IPv6 literals.
https://bugs.webkit.org/show_bug.cgi?id=54607

No new tests required.

  • platform/network/chromium/ResourceResponse.cpp: (WebCore::ResourceResponse::doPlatformCopyData): (WebCore::ResourceResponse::doPlatformAdopt):
  • platform/network/chromium/ResourceResponse.h: (WebCore::ResourceResponse::ResourceResponse): (WebCore::ResourceResponse::remoteIPAddress): (WebCore::ResourceResponse::setRemoteIPAddress): (WebCore::ResourceResponse::remotePort): (WebCore::ResourceResponse::setRemotePort):

2011-02-16 Brian Ryner <bryner@chromium.org>

Reviewed by Darin Fisher.

Split the socket address field into separate IP address and port fields.
This will make the field less error-prone to parse, for example when
dealing with IPv6 literals.
https://bugs.webkit.org/show_bug.cgi?id=54607

  • public/WebURLResponse.h:
  • src/WebURLResponse.cpp: (WebKit::WebURLResponse::remoteIPAddress): (WebKit::WebURLResponse::setRemoteIPAddress): (WebKit::WebURLResponse::remotePort): (WebKit::WebURLResponse::setRemotePort):
8:56 PM Changeset in webkit [78789] by commit-queue@webkit.org
  • 17 edits
    2 adds in trunk

2011-02-16 Dominic Mazzoni <dmazzoni@google.com>

Reviewed by Chris Fleizach.

Add new test for canvas fallback content and update existing text for new canvas role.
https://bugs.webkit.org/show_bug.cgi?id=50126

  • accessibility/canvas-fallback-content-expected.txt: Added.
  • accessibility/canvas-fallback-content.html: Added.
  • accessibility/canvas.html:

2011-02-16 Dominic Mazzoni <dmazzoni@google.com>

Reviewed by Chris Fleizach.

Add support for canvas fallback content.
https://bugs.webkit.org/show_bug.cgi?id=50126

Test: accessibility/canvas-fallback-content.html

  • accessibility/AccessibilityObject.h:
  • accessibility/AccessibilityRenderObject.cpp: (WebCore::AccessibilityRenderObject::determineAccessibilityRole): (WebCore::AccessibilityRenderObject::canHaveChildren):
  • accessibility/gtk/AccessibilityObjectWrapperAtk.cpp: (atkRole):
  • accessibility/mac/AccessibilityObjectWrapper.mm:
  • html/HTMLFormControlElement.cpp: (WebCore::HTMLFormControlElement::isFocusable):
  • rendering/RenderHTMLCanvas.cpp: (WebCore::RenderHTMLCanvas::recursiveSetNoNeedsLayout): (WebCore::RenderHTMLCanvas::layout): (WebCore::RenderHTMLCanvas::nodeAtPoint):
  • rendering/RenderHTMLCanvas.h: (WebCore::RenderHTMLCanvas::children): (WebCore::RenderHTMLCanvas::canHaveChildren): (WebCore::RenderHTMLCanvas::virtualChildren):
  • rendering/RenderObject.cpp: (WebCore::RenderObject::repaint):
  • rendering/RenderTreeAsText.cpp: (WebCore::write):

2011-02-16 Dominic Mazzoni <dmazzoni@google.com>

Reviewed by Chris Fleizach.

Add new role for canvas elements.

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

  • public/WebAccessibilityRole.h:
  • src/AssertMatchingEnums.cpp:

2011-02-16 Dominic Mazzoni <dmazzoni@google.com>

Reviewed by Chris Fleizach.

Add new role for canvas elements.

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

Test: accessibility/canvas-fallback-content.html

  • AccessibleBase.cpp: (MSAARole):
8:54 PM Changeset in webkit [78788] by Simon Fraser
  • 16 edits in trunk/Source

2011-02-16 Matthew Delaney <mdelaney@apple.com>

Reviewed by Simon Fraser.

Allow acceleratesDrawing for WebKit2
https://bugs.webkit.org/show_bug.cgi?id=54511

Plumb through preference for accelerated drawing.

  • WebView/WebPreferenceKeysPrivate.h:
  • WebView/WebPreferences.mm: (+[WebPreferences initialize]): (-[WebPreferences acceleratedDrawingEnabled]): (-[WebPreferences setAcceleratedDrawingEnabled:]):
  • WebView/WebPreferencesPrivate.h:

2011-02-16 Matthew Delaney <mdelaney@apple.com>

Reviewed by Simon Fraser.

Allow acceleratesDrawing for WebKit2
https://bugs.webkit.org/show_bug.cgi?id=54511

Plumb through preference for accelerated drawing.

When accelerated drawing is enabled, set a flag on new GraphicsLayers.

Not testable via Layout Tests

  • WebCore.exp.in:
  • page/Settings.cpp: (WebCore::Settings::Settings): (WebCore::Settings::setAcceleratedDrawingEnabled):
  • page/Settings.h: (WebCore::Settings::acceleratedDrawingEnabled):
  • rendering/RenderLayerCompositor.cpp: (WebCore::RenderLayerCompositor::updateBacking):

2011-02-16 Matthew Delaney <mdelaney@apple.com>

Reviewed by Simon Fraser.

Allow acceleratesDrawing for WebKit2
https://bugs.webkit.org/show_bug.cgi?id=54511

Plumb through preference for accelerated drawing.

If accelerated drawing is enabled, keep the DrawingAreaImpl in
accelerated compositing mode.

  • Shared/WebPreferencesStore.h:
  • UIProcess/API/C/WKPreferences.cpp: (WKPreferencesSetAcceleratedDrawingEnabled): (WKPreferencesGetAcceleratedDrawingEnabled):
  • UIProcess/API/C/WKPreferencesPrivate.h:
  • WebProcess/WebPage/DrawingAreaImpl.cpp: (WebKit::DrawingAreaImpl::DrawingAreaImpl): (WebKit::DrawingAreaImpl::setRootCompositingLayer): (WebKit::DrawingAreaImpl::exitAcceleratedCompositingMode):
  • WebProcess/WebPage/DrawingAreaImpl.h:
  • WebProcess/WebPage/WebPage.cpp: (WebKit::WebPage::updatePreferences):
8:44 PM Changeset in webkit [78787] by commit-queue@webkit.org
  • 7 edits in trunk/Source

2011-02-16 Victoria Kirst <vrk@google.com>

Reviewed by Kenneth Russell.

[chromium] Fix green pixels at edge of certain GPU-accelerated videos
https://bugs.webkit.org/show_bug.cgi?id=54559

Adds logic to properly resize the range of YUV textures to only
select legitimate values.

  • platform/graphics/chromium/VideoFrameChromium.h:
  • platform/graphics/chromium/VideoLayerChromium.cpp: (WebCore::VideoLayerChromium::SharedValues::SharedValues): (WebCore::VideoLayerChromium::allocateTexturesIfNeeded): (WebCore::VideoLayerChromium::drawYUV):
  • platform/graphics/chromium/VideoLayerChromium.h: (WebCore::VideoLayerChromium::SharedValues::yWidthScaleFactorLocation): (WebCore::VideoLayerChromium::SharedValues::uvWidthScaleFactorLocation):

2011-02-16 Victoria Kirst <vrk@google.com>

Reviewed by Kenneth Russell.

[chromium] Fix green pixels at edge of certain GPU-accelerated videos
https://bugs.webkit.org/show_bug.cgi?id=54559

  • src/VideoFrameChromiumImpl.cpp: (WebKit::VideoFrameChromiumImpl::width): (WebKit::VideoFrameChromiumImpl::height): (WebKit::VideoFrameChromiumImpl::requiredTextureSize): (WebKit::VideoFrameChromiumImpl::hasPaddingBytes):
  • src/VideoFrameChromiumImpl.h:
8:39 PM Changeset in webkit [78786] by gyuyoung.kim@samsung.com
  • 2 edits in trunk/Source/WebKit/efl

2011-02-16 Gyuyoung Kim <gyuyoung.kim@samsung.com>

Unreviewed build fix.

[EFL] Build break on r78634
https://bugs.webkit.org/show_bug.cgi?id=54602

Build error because of r78634.

  • CMakeListsEfl.txt:
8:28 PM Changeset in webkit [78785] by yael.aharon@nokia.com
  • 2 edits in trunk/Source/WebKit2

2011-02-16 Yael Aharon <yael.aharon@nokia.com>

Reviewed by Andreas Kling.

[Qt] White screen is displayed when tiled backing store is enabled in MiniBrowser.
https://bugs.webkit.org/show_bug.cgi?id=54583

Make sure to invalidate all the tiles, including the last one.

  • UIProcess/TiledDrawingAreaProxy.cpp: (WebKit::TiledDrawingAreaProxy::invalidate):
8:27 PM Changeset in webkit [78784] by yael.aharon@nokia.com
  • 3 edits in trunk/Tools

2011-02-16 Yael Aharon <yael.aharon@nokia.com>

Reviewed by Andreas Kling.

[Qt] Enable tiled backing store by default in MiniBrowser.
https://bugs.webkit.org/show_bug.cgi?id=54581

Instead of a flag to turn it on, a new flag is defined to turn
tiled backing store off.

  • MiniBrowser/qt/MiniBrowserApplication.cpp: (MiniBrowserApplication::handleUserOptions):
  • MiniBrowser/qt/MiniBrowserApplication.h: (WindowOptions::WindowOptions):
8:27 PM Changeset in webkit [78783] by yael.aharon@nokia.com
  • 2 edits in trunk/Source/WebKit2

2011-02-16 Yael Aharon <yael.aharon@nokia.com>

Reviewed by Andreas Kling.

[Qt] Tiles are not created for webkit2 after r77286.
https://bugs.webkit.org/show_bug.cgi?id=54577

When using the default tile size of 1024x1024, only one tile is created.
Make sure to create this tile by undoing what seems to be a typo in r77286.

  • UIProcess/TiledDrawingAreaProxy.cpp: (WebKit::TiledDrawingAreaProxy::paint): (WebKit::TiledDrawingAreaProxy::createTiles):
8:11 PM Changeset in webkit [78782] by commit-queue@webkit.org
  • 17 edits in trunk/Source/WebCore

2011-02-16 Bill Budge <bbudge@chromium.org>

Reviewed by David Levin.

Need didReceiveCachedMetadata, and finishTime for didFinishLoading exposed in ThreadableLoaderClient
https://bugs.webkit.org/show_bug.cgi?id=54313

No tests needed, exposes no new functionality

  • fileapi/FileReaderLoader.cpp: (WebCore::FileReaderLoader::didFinishLoading):
  • fileapi/FileReaderLoader.h:
  • loader/DocumentThreadableLoader.cpp: (WebCore::DocumentThreadableLoader::setDefersLoading): (WebCore::DocumentThreadableLoader::didReceiveCachedMetadata): (WebCore::DocumentThreadableLoader::didFinishLoading): (WebCore::DocumentThreadableLoader::loadRequest):
  • loader/DocumentThreadableLoader.h:
  • loader/ThreadableLoaderClient.h: (WebCore::ThreadableLoaderClient::didReceiveData): (WebCore::ThreadableLoaderClient::didReceiveCachedMetadata): (WebCore::ThreadableLoaderClient::didFinishLoading):
  • loader/ThreadableLoaderClientWrapper.h: (WebCore::ThreadableLoaderClientWrapper::didReceiveData): (WebCore::ThreadableLoaderClientWrapper::didReceiveCachedMetadata): (WebCore::ThreadableLoaderClientWrapper::didFinishLoading):
  • loader/WorkerThreadableLoader.cpp: (WebCore::workerContextDidReceiveCachedMetadata): (WebCore::WorkerThreadableLoader::MainThreadBridge::didReceiveCachedMetadata): (WebCore::workerContextDidFinishLoading): (WebCore::WorkerThreadableLoader::MainThreadBridge::didFinishLoading):
  • loader/WorkerThreadableLoader.h:
  • notifications/Notification.cpp: (WebCore::Notification::didFinishLoading):
  • notifications/Notification.h:
  • page/EventSource.cpp: (WebCore::EventSource::didFinishLoading):
  • page/EventSource.h:
  • workers/WorkerScriptLoader.cpp: (WebCore::WorkerScriptLoader::didFinishLoading):
  • workers/WorkerScriptLoader.h:
  • xml/XMLHttpRequest.cpp: (WebCore::XMLHttpRequest::didFinishLoading):
  • xml/XMLHttpRequest.h:
8:03 PM Changeset in webkit [78781] by jorlow@chromium.org
  • 2 edits in trunk/Source/WebCore

2011-02-16 Jeremy Orlow <jorlow@chromium.org>

Fix uninitialized memory error.

  • storage/IDBDatabaseBackendImpl.cpp: (WebCore::IDBDatabaseBackendImpl::close):
8:00 PM Changeset in webkit [78780] by abarth@webkit.org
  • 5 edits in trunk

2011-02-16 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Fix xssAuditor/form-action.html
https://bugs.webkit.org/show_bug.cgi?id=54590

Update expected results to show that we pass.

  • http/tests/security/xssAuditor/form-action-expected.txt:

2011-02-16 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Fix xssAuditor/form-action.html
https://bugs.webkit.org/show_bug.cgi?id=54590

We should block form actions. Although this technically can't be used
to run script, it's a pretty easy vector for stealing passwords.

  • html/parser/XSSFilter.cpp: (WebCore::XSSFilter::filterTokenInitial): (WebCore::XSSFilter::filterFormToken):
  • html/parser/XSSFilter.h:
7:48 PM Changeset in webkit [78779] by eric@webkit.org
  • 2 edits in trunk/Tools

2011-02-16 Eric Seidel <eric@webkit.org>

Reviewed by Mihai Parparita.

flaky test archive uploads are always 22 bytes long
https://bugs.webkit.org/show_bug.cgi?id=54593

Speculative fix for the 22-bytes bug.

  • Scripts/webkitpy/tool/bot/flakytestreporter.py:
7:41 PM Changeset in webkit [78778] by mihaip@chromium.org
  • 143 edits
    2 moves in trunk

2011-02-16 Anna Cavender <annacc@chromium.org>

Reviewed by Mihai Parparita.

http/tests/media should be served over HTTP (not from local file)
https://bugs.webkit.org/show_bug.cgi?id=54028

Removed special file:// treatment of http/tests/media
Moved media-file.js and video-tests.js to http/tests/media so local server can access them.
Update tests to point to new location of javascript libraries.

  • http/tests/media/media-file.js: Renamed from LayoutTests/media/media-file.js.
  • http/tests/media/pdf-served-as-pdf.html:
  • http/tests/media/reload-after-dialog.html:
  • http/tests/media/remove-while-loading.html:
  • http/tests/media/text-served-as-text.html:
  • http/tests/media/video-buffered.html:
  • http/tests/media/video-cancel-load.html:
  • http/tests/media/video-cookie.html:
  • http/tests/media/video-error-abort.html:
  • http/tests/media/video-load-twice.html:
  • http/tests/media/video-play-stall-seek.html:
  • http/tests/media/video-play-stall.html:
  • http/tests/media/video-play-suspend.html:
  • http/tests/media/video-referer.html:
  • http/tests/media/video-seekable-stall.html:
  • http/tests/media/video-served-as-text.html:
  • http/tests/media/video-test.js: Renamed from LayoutTests/media/video-test.js.
  • media/adopt-node-crash.html:
  • media/audio-constructor-preload.html:
  • media/audio-constructor-src.html:
  • media/audio-constructor.html:
  • media/audio-controls-rendering.html:
  • media/audio-data-url.html:
  • media/audio-delete-while-slider-thumb-clicked.html:
  • media/audio-delete-while-step-button-clicked.html:
  • media/audio-mpeg-supported.html:
  • media/audio-mpeg4-supported.html:
  • media/audio-play-event.html:
  • media/before-load-member-access.html:
  • media/broken-video.html:
  • media/constructors.html:
  • media/context-menu-actions.html:
  • media/controls-after-reload.html:
  • media/controls-css-overload.html:
  • media/controls-drag-timebar.html:
  • media/controls-right-click-on-timebar.html:
  • media/controls-strict.html:
  • media/controls-styling.html:
  • media/controls-without-preload.html:
  • media/event-attributes.html:
  • media/invalid-media-url-crash.html:
  • media/media-can-play-mpeg-audio.html:
  • media/media-can-play-mpeg4-video.html:
  • media/media-can-play-octet-stream.html:
  • media/media-can-play-ogg.html:
  • media/media-can-play-wav-audio.html:
  • media/media-captions.html:
  • media/media-constants.html:
  • media/media-fullscreen-inline.html:
  • media/media-fullscreen-not-in-document.html:
  • media/media-load-event.html:
  • media/media-startTime.html:
  • media/remove-from-document-no-load.html:
  • media/remove-from-document.html:
  • media/restore-from-page-cache.html:
  • media/unsupported-rtsp.html:
  • media/unsupported-tracks.html:
  • media/video-append-source.html:
  • media/video-aspect-ratio.html:
  • media/video-autoplay.html:
  • media/video-buffered.html:
  • media/video-can-play-type.html:
  • media/video-canvas-alpha.html:
  • media/video-canvas-source.html:
  • media/video-canvas.html-disabled:
  • media/video-click-dblckick-standalone.html:
  • media/video-controls-rendering.html:
  • media/video-controls-transformed.html:
  • media/video-controls-visible-audio-only.html:
  • media/video-controls-zoomed.html:
  • media/video-controls.html:
  • media/video-currentTime-delay.html:
  • media/video-currentTime-set.html:
  • media/video-currentTime-set2.html:
  • media/video-currentTime.html:
  • media/video-delay-load-event.html:
  • media/video-display-aspect-ratio.html:
  • media/video-display-none-crash.html:
  • media/video-display-toggle.html:
  • media/video-does-not-loop.html:
  • media/video-dom-autoplay.html:
  • media/video-dom-preload.html:
  • media/video-dom-src.html:
  • media/video-duration-known-after-eos.html:
  • media/video-error-does-not-exist.html:
  • media/video-frame-accurate-seek.html:
  • media/video-layer-crash.html:
  • media/video-load-networkState.html:
  • media/video-load-readyState.html:
  • media/video-loop.html:
  • media/video-muted.html:
  • media/video-no-audio.html:
  • media/video-no-autoplay.html:
  • media/video-pause-empty-events.html:
  • media/video-pause-immediately.html:
  • media/video-play-empty-events.html:
  • media/video-play-pause-events.html:
  • media/video-play-pause-exception.html:
  • media/video-played-collapse.html:
  • media/video-played-ranges-1.html:
  • media/video-played-reset.html:
  • media/video-poster-delayed.html:
  • media/video-poster-scale.html:
  • media/video-poster.html:
  • media/video-preload.html:
  • media/video-replaces-poster.html:
  • media/video-reverse-play-duration.html:
  • media/video-seek-by-small-increment.html:
  • media/video-seek-no-src-exception.html:
  • media/video-seek-past-end-paused.html:
  • media/video-seek-past-end-playing.html:
  • media/video-seekable.html:
  • media/video-seeking.html:
  • media/video-size-intrinsic-scale.html:
  • media/video-size.html:
  • media/video-source-error-no-candidate.html:
  • media/video-source-error.html:
  • media/video-source-inserted.html:
  • media/video-source-media.html:
  • media/video-source-moved.html:
  • media/video-source-none-supported.html:
  • media/video-source-removed.html:
  • media/video-source-type-params.html:
  • media/video-source-type.html:
  • media/video-source.html:
  • media/video-src-change.html:
  • media/video-src-invalid-remove.html:
  • media/video-src-none.html:
  • media/video-src-plus-source.html:
  • media/video-src-remove.html:
  • media/video-src-set.html:
  • media/video-src-source.html:
  • media/video-src.html:
  • media/video-timeupdate-during-playback.html:
  • media/video-timeupdate-reverse-play.html:
  • media/video-transformed.html:
  • media/video-volume-slider.html:
  • media/video-volume.html:
  • media/video-width-height.html:
  • media/video-zoom-controls.html:
  • media/video-zoom.html:

2011-02-16 Anna Cavender <annacc@chromium.org>

Reviewed by Mihai Parparita.

http/tests/media should be served over HTTP (not from local file)
https://bugs.webkit.org/show_bug.cgi?id=54028

Removed special file:// treatment of http/tests/media

  • Scripts/old-run-webkit-tests:
  • Scripts/webkitpy/layout_tests/port/base.py:
7:39 PM Changeset in webkit [78777] by mihaip@chromium.org
  • 3 edits in trunk/Tools

2011-02-16 Mihai Parparita <mihaip@chromium.org>

Reviewed by Ojan Vafai.

ChangeLog.parse_latest_entry_from_file does not handle rolled over ChangeLogs
https://bugs.webkit.org/show_bug.cgi?id=54609

r78737 rolled over ChangeLogs, and webkit-patch complains when landing
patches such as this one that are the first to add an entry to the
ChangeLog (since they don't see a second date line to know where the
entry ends).

  • Scripts/webkitpy/common/checkout/changelog.py:
  • Scripts/webkitpy/common/checkout/changelog_unittest.py:
7:05 PM Changeset in webkit [78776] by abarth@webkit.org
  • 2 edits
    25 adds in trunk/LayoutTests

2011-02-16 Adam Barth <abarth@webkit.org>

Reviewed by Daniel Bates.

Import XSSAuditor tests from David Ross
https://bugs.webkit.org/show_bug.cgi?id=54576

Many of these tests pass, but some of them fail as well. I'll fix the
failing tests in followup patches.

  • http/tests/security/xssAuditor/cookie-injection-expected.txt: Added.
  • http/tests/security/xssAuditor/cookie-injection.html: Added.
    • We're fine here.
  • http/tests/security/xssAuditor/form-action-expected.txt: Added.
  • http/tests/security/xssAuditor/form-action.html: Added.
    • We need to filter form actions. Previously, we considered this issue out of scope, but we should be able to handle it.
  • http/tests/security/xssAuditor/iframe-injection-expected.txt: Added.
  • http/tests/security/xssAuditor/iframe-injection.html: Added.
    • We need to filter iframe src attributes. Previously, we considered this issue out of scope, but we should be able to handle it.
  • http/tests/security/xssAuditor/iframe-javascript-url-more-encoding-expected.txt: Added.
  • http/tests/security/xssAuditor/iframe-javascript-url-more-encoding.html: Added.
    • We're fine here.
  • http/tests/security/xssAuditor/javascript-link-one-plus-one-expected.txt: Added.
  • http/tests/security/xssAuditor/javascript-link-one-plus-one.html: Added.
    • We're fine here.
  • http/tests/security/xssAuditor/open-attribute-body-expected.txt: Added.
  • http/tests/security/xssAuditor/open-attribute-body.html: Added.
  • http/tests/security/xssAuditor/open-event-handler-iframe-expected.txt: Added.
  • http/tests/security/xssAuditor/open-event-handler-iframe.html: Added.
  • http/tests/security/xssAuditor/open-iframe-src-expected.txt: Added.
  • http/tests/security/xssAuditor/open-iframe-src.html: Added.
  • http/tests/security/xssAuditor/open-script-src-expected.txt: Added.
  • http/tests/security/xssAuditor/open-script-src.html: Added.
    • These are all the same class of issue. Now that we've re-designed the filter, we should be able to address this issue.
  • http/tests/security/xssAuditor/resources/echo-inspan.pl: Added.
  • http/tests/security/xssAuditor/resources/echo-intertag.pl:
    • Tests infrastructure improvements.
  • http/tests/security/xssAuditor/script-tag-with-fancy-unicode-expected.txt: Added.
  • http/tests/security/xssAuditor/script-tag-with-fancy-unicode.html: Added.
    • I'm not sure what's going on here. Requires futher investigation.
  • http/tests/security/xssAuditor/script-tag-with-invalid-url-encoding-expected.txt: Added.
  • http/tests/security/xssAuditor/script-tag-with-invalid-url-encoding.html: Added.
    • We're fine here.
  • http/tests/security/xssAuditor/script-tag-with-source-data-url-expected.txt: Added.
  • http/tests/security/xssAuditor/script-tag-with-source-data-url.html: Added.
    • We're fine here.
7:02 PM Changeset in webkit [78775] by inferno@chromium.org
  • 3 edits
    2 adds in trunk

2011-02-16 Abhishek Arya <inferno@chromium.org>

Reviewed by James Robinson.

Remove the early bail added in r75823 since we can run into anonymous
blocks when traversing the parents chain for clearing floats.
https://bugs.webkit.org/show_bug.cgi?id=54601

removeFloatingOrPositionedChildFromBlockLists tries to find the topmost
parent containing "this" block and then tries to remove it from its floats
list and mark all descendants blocks for layout. I added a bailout condition
in r75823 because we thought that if one of the parent render block does not
contain "this" float, then it is safe to assume that none of the grand parents
will have it. This is a wrong assumption since anonymous blocks do not have
float objects and we need to go higher in the chain to find the top most parent
containing this float. Instead of breaking out of the loop, it is ok to keep
traversing the chain till we find that parent. Otherwise, we will leave deleted
floats in the grand parents floats list.

Test: fast/block/float/floats-not-cleared-from-grand-parents.html

  • rendering/RenderBox.cpp: (WebCore::RenderBox::removeFloatingOrPositionedChildFromBlockLists):

2011-02-16 Abhishek Arya <inferno@chromium.org>

Reviewed by James Robinson.

Tests that we do not crash when floats are not cleared in cases where parents
chain has anonymous blocks.
https://bugs.webkit.org/show_bug.cgi?id=54601

  • fast/block/float/floats-not-cleared-from-grand-parents-expected.txt: Added.
  • fast/block/float/floats-not-cleared-from-grand-parents.html: Added.
6:54 PM Changeset in webkit [78774] by jamesr@google.com
  • 2 edits in trunk/LayoutTests

2011-02-16 James Robinson <jamesr@chromium.org>

Fix typo in chromium test_expectations - there is no WINDOWS (just WIN)

  • platform/chromium/test_expectations.txt:
6:52 PM Changeset in webkit [78773] by andreas.kling@nokia.com
  • 10 edits in trunk

2011-02-16 Andreas Kling <kling@webkit.org>

Reviewed by Ryosuke Niwa.

Editing styles should not emit #RRGGBBAA colors
https://bugs.webkit.org/show_bug.cgi?id=54540

  • editing/ApplyStyleCommand.cpp: (WebCore::StyleChange::extractTextStyles): Use Color::serialized() instead of Color::nameForRenderTreeAsText().

2011-02-16 Andreas Kling <kling@webkit.org>

Reviewed by Ryosuke Niwa.

Editing styles should not emit #RRGGBBAA colors
https://bugs.webkit.org/show_bug.cgi?id=54540

Added a test to editing/style/inline-style-container.html
that would cause invalid #RRGGBBAA output with the previous code.

  • editing/execCommand/delete-image-in-anchor-expected.txt:
  • editing/execCommand/script-tests/toggle-unlink.js:
  • editing/execCommand/toggle-unlink-expected.txt:
  • editing/style/fore-color-by-name-expected.txt:
  • editing/style/inline-style-container-expected.txt:
  • editing/style/script-tests/inline-style-container.js:
  • editing/style/style-text-node-without-editable-parent-expected.txt:
6:51 PM Changeset in webkit [78772] by Martin Robinson
  • 2 edits in trunk/LayoutTests

2011-02-16 Martin Robinson <mrobinson@igalia.com>

Update the GTK+ skipped list. Skip some SVG tests that now expose rounding
errors. Unskip a test which should have been unskipped by r78614. Skip
Acid2 tests, as they are currently failing on GTK+.

  • platform/gtk/Skipped: Update the skipped list.
6:44 PM Changeset in webkit [78771] by jamesr@google.com
  • 11 edits
    1 add in trunk/LayoutTests

2011-02-16 James Robinson <jamesr@chromium.org>

Update chromium baselines for 78751.

  • platform/chromium-linux/svg/W3C-SVG-1.1/masking-path-05-f-expected.checksum:
  • platform/chromium-linux/svg/W3C-SVG-1.1/masking-path-05-f-expected.png:
  • platform/chromium-linux/svg/W3C-SVG-1.1/masking-path-05-f-expected.txt: Added.
  • platform/chromium-linux/svg/clip-path/clip-path-clipped-evenodd-twice-expected.checksum:
  • platform/chromium-linux/svg/clip-path/clip-path-clipped-evenodd-twice-expected.png:
  • platform/chromium-win/svg/W3C-SVG-1.1/masking-path-05-f-expected.checksum:
  • platform/chromium-win/svg/W3C-SVG-1.1/masking-path-05-f-expected.png:
  • platform/chromium-win/svg/W3C-SVG-1.1/masking-path-05-f-expected.txt:
  • platform/chromium-win/svg/clip-path/clip-path-clipped-evenodd-twice-expected.checksum:
  • platform/chromium-win/svg/clip-path/clip-path-clipped-evenodd-twice-expected.png:
  • platform/chromium/test_expectations.txt:
6:44 PM Changeset in webkit [78770] by mrowe@apple.com
  • 2 edits in branches/safari-534.20-branch/Source/WebCore

Merge r78687.

6:39 PM Changeset in webkit [78769] by mrowe@apple.com
  • 16 edits in branches/safari-534.20-branch/Source/WebKit2

Merge r78676.

6:39 PM Changeset in webkit [78768] by mrowe@apple.com
  • 11 edits in branches/safari-534.20-branch/Source/WebKit2

Merge r78663.

6:38 PM Changeset in webkit [78767] by mrowe@apple.com
  • 14 edits
    1 copy
    1 add in branches/safari-534.20-branch/Source/WebKit2

Merge r78647.

6:38 PM Changeset in webkit [78766] by mrowe@apple.com
  • 2 edits in branches/safari-534.20-branch/Source/WebKit2

Merge r78638.

6:38 PM Changeset in webkit [78765] by mrowe@apple.com
  • 9 edits
    2 adds in branches/safari-534.20-branch/Source/WebKit2

Merge r78633.

6:37 PM Changeset in webkit [78764] by mrowe@apple.com
  • 3 edits in branches/safari-534.20-branch/Source/WebKit2

Merge r78611.

6:37 PM Changeset in webkit [78763] by mrowe@apple.com
  • 4 edits in branches/safari-534.20-branch/Source/WebCore

Merge r78604.

6:37 PM Changeset in webkit [78762] by mrowe@apple.com
  • 2 edits in branches/safari-534.20-branch/Source/WebKit2

Merge r78730.

6:32 PM Changeset in webkit [78761] by rniwa@webkit.org
  • 9 edits in trunk/Source/WebCore

2011-02-16 Ryosuke Niwa <rniwa@webkit.org>

Reviewed by Kent Tamura.

Improve showTree of Range, Position, and VisiblePosition
https://bugs.webkit.org/show_bug.cgi?id=54536

Enhanced showTree of Range, Position, and VisiblePosition.

  • dom/Position.cpp: (WebCore::Position::showAnchorTypeAndOffset): Added; dumps "legacy" if the position is a legacy position and also dumps anchor type. (WebCore::Position::showTreeForThis): Calls showAnchorTypeAndOffset.
  • dom/Position.h:
  • dom/Range.cpp: (showTree): No longer calls deprecatedEditingOffset.
  • editing/VisiblePosition.cpp: (WebCore::VisiblePosition::debugPosition): No longer included in release build. Calls Position::showAnchorTypeAndOffset instead of manually calling deprecatedEditingOffset.
  • editing/VisiblePosition.h:
  • editing/VisibleSelection.cpp: (WebCore::VisibleSelection::debugPosition): Ditto. (WebCore::VisibleSelection::showTreeForThis): Ditto.
  • editing/VisibleSelection.h:
  • page/EventHandler.cpp:
6:32 PM Changeset in webkit [78760] by pkasting@chromium.org
  • 2 edits
    2 deletes in trunk/LayoutTests

Unreviewed, Chromium expectations update.

Removed duplicate expected results, update some test expectations.

  • platform/chromium-mac/svg/clip-path/clip-path-clipped-evenodd-twice-expected.checksum: Removed.
  • platform/chromium-mac/svg/clip-path/clip-path-clipped-evenodd-twice-expected.png: Removed.
  • platform/chromium/test_expectations.txt:
6:28 PM Changeset in webkit [78759] by jorlow@chromium.org
  • 2 edits in trunk/Source/WebCore

2011-02-16 David Grogan <dgrogan@chromium.org>

Reviewed by Jeremy Orlow.

fix compile error introduced in 78752
https://bugs.webkit.org/show_bug.cgi?id=54604

  • storage/IDBRequest.h:
6:20 PM Changeset in webkit [78758] by jorlow@chromium.org
  • 11 edits in trunk/Source

2011-02-16 Jeremy Orlow <jorlow@chromium.org>

Back out IndexedDB change thats no longer necessary
https://bugs.webkit.org/show_bug.cgi?id=54603

Backing out 78645 as it turns out that it's not necessary.

  • storage/IDBFactoryBackendImpl.cpp: (WebCore::IDBFactoryBackendImpl::open):
  • storage/IDBFactoryBackendImpl.h:
  • storage/IDBFactoryBackendInterface.h:

2011-02-16 Jeremy Orlow <jorlow@chromium.org>

Back out IndexedDB change thats no longer necessary
https://bugs.webkit.org/show_bug.cgi?id=54603

Backing out 78645 as it turns out that it's not necessary.

  • public/WebIDBFactory.h: (WebKit::WebIDBFactory::open):
  • src/AssertMatchingEnums.cpp:
  • src/IDBFactoryBackendProxy.cpp:
  • src/IDBFactoryBackendProxy.h:
  • src/WebIDBFactoryImpl.cpp: (WebKit::WebIDBFactoryImpl::open):
  • src/WebIDBFactoryImpl.h:
5:39 PM Changeset in webkit [78757] by mrowe@apple.com
  • 3 edits in branches/safari-534.20-branch/Source/WebCore

Merge r78616.

5:26 PM Changeset in webkit [78756] by kbr@google.com
  • 2 edits in trunk/LayoutTests

2011-02-16 Kenneth Russell <kbr@google.com>

Unreviewed. Skip recently added tests for adjusting minimum timer
interval per page due to absence of
LayoutTestController.setMinimumTimerInterval.

  • platform/mac-wk2/Skipped:
5:20 PM Changeset in webkit [78755] by Martin Robinson
  • 2 edits
    228 adds in trunk/LayoutTests

2011-02-16 Martin Robinson <mrobinson@igalia.com>

Add the next set of GTK+ baselines for the Mozilla tables test suite.

  • platform/gtk/Skipped: Unskip tests which now have results.
5:10 PM Changeset in webkit [78754] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

2011-02-16 Brian Salomon <bsalomon@google.com>

Reviewed by James Robinson.

Skia's gpu backed just needs the correct context bound before drawing. It will bind the correct FBO itself and doing so externally confuses it unless resetContext is called.

No new tests required.

  • platform/graphics/skia/PlatformContextSkia.cpp: (WebCore::PlatformContextSkia::syncSoftwareCanvas):
5:08 PM Changeset in webkit [78753] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

2011-02-16 Mike Reed <reed@google.com>

Reviewed by Kenneth Russell.

Use non-asserting pack function for decoding images, since webgl may want
a non-premultiplied version of the image.
https://bugs.webkit.org/show_bug.cgi?id=54023

No new tests.
fast/canvas/webgl/gl-teximage.html
fast/canvas/webgl/tex-image-with-format-and-type.html
fast/canvas/webgl/texture-transparent-pixels-initialized.html

  • platform/image-decoders/ImageDecoder.h: (WebCore::ImageFrame::setRGBA):
4:55 PM Changeset in webkit [78752] by jorlow@chromium.org
  • 26 edits
    5 copies
    5 adds in trunk

2011-02-16 David Grogan <dgrogan@chromium.org>

Reviewed by Jeremy Orlow.

indexeddb: make setVersion fire blocked event if other connections are open
https://bugs.webkit.org/show_bug.cgi?id=53728

Tests: storage/indexeddb/set_version_blocked.html

storage/indexeddb/set_version_queue.html

  • WebCore.gypi:
  • bindings/js/JSEventCustom.cpp: (WebCore::toJS):
  • bindings/v8/custom/V8EventCustom.cpp: (WebCore::toV8):
  • dom/Event.cpp: (WebCore::Event::isIDBVersionChangeEvent):
  • dom/Event.h:
  • dom/EventNames.h:
  • dom/EventTarget.cpp: (WebCore::EventTarget::toIDBVersionChangeRequest):
  • dom/EventTarget.h:
  • storage/IDBCallbacks.h:
  • storage/IDBDatabase.cpp: (WebCore::IDBDatabase::setVersion): (WebCore::IDBDatabase::close):
  • storage/IDBDatabase.h:
  • storage/IDBDatabase.idl:
  • storage/IDBDatabaseBackendImpl.cpp: (WebCore::IDBDatabaseBackendImpl::PendingSetVersionCall::create): (WebCore::IDBDatabaseBackendImpl::PendingSetVersionCall::version): (WebCore::IDBDatabaseBackendImpl::PendingSetVersionCall::callbacks): (WebCore::IDBDatabaseBackendImpl::PendingSetVersionCall::PendingSetVersionCall): (WebCore::IDBDatabaseBackendImpl::IDBDatabaseBackendImpl): (WebCore::IDBDatabaseBackendImpl::setVersion): (WebCore::IDBDatabaseBackendImpl::open): (WebCore::IDBDatabaseBackendImpl::close):
  • storage/IDBDatabaseBackendImpl.h:
  • storage/IDBDatabaseBackendInterface.h:
  • storage/IDBFactoryBackendImpl.cpp: (WebCore::IDBFactoryBackendImpl::open):
  • storage/IDBRequest.cpp: (WebCore::IDBRequest::onBlocked): (WebCore::IDBRequest::dispatchEvent): (WebCore::IDBRequest::source):
  • storage/IDBRequest.h:
  • storage/IDBVersionChangeEvent.cpp: Copied from Source/WebKit/chromium/src/WebIDBCallbacksImpl.h. (WebCore::IDBVersionChangeEvent::create): (WebCore::IDBVersionChangeEvent::IDBVersionChangeEvent): (WebCore::IDBVersionChangeEvent::~IDBVersionChangeEvent): (WebCore::IDBVersionChangeEvent::version):
  • storage/IDBVersionChangeEvent.h: Copied from Source/WebKit/chromium/src/WebIDBCallbacksImpl.h. (WebCore::IDBVersionChangeEvent::isIDBVersionChangeEvent):
  • storage/IDBVersionChangeEvent.idl: Added.
  • storage/IDBVersionChangeRequest.cpp: Copied from Source/WebKit/chromium/src/WebIDBCallbacksImpl.h. (WebCore::IDBVersionChangeRequest::create): (WebCore::IDBVersionChangeRequest::IDBVersionChangeRequest): (WebCore::IDBVersionChangeRequest::~IDBVersionChangeRequest): (WebCore::IDBVersionChangeRequest::onBlocked):
  • storage/IDBVersionChangeRequest.h: Copied from Source/WebKit/chromium/src/WebIDBCallbacksImpl.h.
  • storage/IDBVersionChangeRequest.idl: Copied from Source/WebKit/chromium/src/WebIDBCallbacksImpl.h.
4:50 PM Changeset in webkit [78751] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

2011-02-16 Robin Cao <robin.cao@torchmobile.com.cn>

Reviewed by James Robinson.

PlatformContextSkia::applyAntiAliasedClipPaths does not work for paths which have evenOdd property
https://bugs.webkit.org/show_bug.cgi?id=54336

We need to take fill type of paths into account when drawing them.

No new tests, covered by svg/W3C-SVG-1.1/masking-path-05-f.svg.

  • platform/graphics/skia/PlatformContextSkia.cpp: (WebCore::PlatformContextSkia::applyAntiAliasedClipPaths):
4:50 PM Changeset in webkit [78750] by Martin Robinson
  • 2 edits
    225 adds in trunk/LayoutTests

2011-02-16 Martin Robinson <mrobinson@igalia.com>

Add the next set of GTK+ Mozilla test suite results.

  • platform/gtk/Skipped: Unskip tests that now have results.
4:50 PM Changeset in webkit [78749] by joone.hur@collabora.co.uk
  • 4 edits in trunk/Source/WebKit/gtk

2011-02-16 Joone Hur <joone.hur@collabora.co.uk>

Reviewed by Xan Lopez.

[GTK] Match more various WebKit API enum values with WebCore enum values
https://bugs.webkit.org/show_bug.cgi?id=54352

AssertMatchingEnums.cpp was added to assert that various WebKit API enum values
continue matching WebCore defined enum values in the following changeset.
http://trac.webkit.org/changeset/77868
However, there are already enum values that have been asserted in other files,
so these assert macros defined need to be moved to AssertMatchingEnum.cpp.

  • WebCoreSupport/AssertMatchingEnums.cpp: Add more enum values to be asserted.
  • webkit/webkitwebnavigationaction.cpp: (webkit_web_navigation_action_class_init): Move the assert macros of WEBKIT_WEB_NAVIGATION_REASON_* to AssertMatchingEnums.cpp.
  • webkit/webkitwebsettings.cpp: (webkit_web_settings_class_init): Move the assert macros of WEBKIT_EDITING_BEHAVIOR_* to AssertMatchingEnums.cpp.
4:35 PM Changeset in webkit [78748] by Martin Robinson
  • 2 edits
    225 adds in trunk/LayoutTests

2011-02-16 Martin Robinson <mrobinson@igalia.com>

Add another group of GTK+ Mozilla test results.

  • platform/gtk/Skipped: Unskip tests which now have results.
4:31 PM Changeset in webkit [78747] by eric@webkit.org
  • 3 edits
    3 adds in trunk

2011-02-16 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

REGRESSION (r61234): washingtonpost.com top bar looks wrong, doesn't animate
https://bugs.webkit.org/show_bug.cgi?id=53717

  • http/tests/local/absolute-url-strip-whitespace-expected.txt: Added.
  • http/tests/local/absolute-url-strip-whitespace.html: Added.
  • http/tests/resources/absolute-url-strip-whitespace.js: Added.

2011-02-16 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

REGRESSION (r61234): washingtonpost.com top bar looks wrong, doesn't animate
https://bugs.webkit.org/show_bug.cgi?id=53717

Test: http/tests/local/absolute-url-strip-whitespace.html

This was theoretically tested already in fast/url, however the
tests were disabled due to lack of any clean way to test absolute
url parsing in JavaScript. I added a test which mimics the sites
behavior using our local http server. There seems to be no other
way to test this at the moment.

  • platform/KURL.cpp: (WebCore::shouldTrimFromURL):
    • Any char 0-20 should be removed (matches google-url and other browsers).

(WebCore::KURL::init):

4:24 PM Changeset in webkit [78746] by Martin Robinson
  • 2 edits
    150 adds in trunk/LayoutTests

2011-02-16 Martin Robinson <mrobinson@igalia.com>

Add another batch of GTK+ Mozilla test suite results.

  • platform/gtk/Skipped: Unskip tests which now have results.
4:05 PM Changeset in webkit [78745] by Martin Robinson
  • 2 edits
    150 adds in trunk/LayoutTests

2011-02-16 Martin Robinson <mrobinson@igalia.com>

Add another group of GTK+ Mozilla test suite baselines.

  • platform/gtk/Skipped: Unskip tests that now have baselines.
4:00 PM Changeset in webkit [78744] by inferno@chromium.org
  • 3 edits
    2 adds in trunk

2011-02-16 Abhishek Arya <inferno@chromium.org>

Reviewed by James Robinson.

Tests that we do not crash when finding the text fragment for a first letter.
https://bugs.webkit.org/show_bug.cgi?id=54568

  • fast/css/first-letter-text-fragment-crash-expected.txt: Added.
  • fast/css/first-letter-text-fragment-crash.html: Added.

2011-02-16 Abhishek Arya <inferno@chromium.org>

Reviewed by James Robinson.

Traverse the next sibling tree to find the text fragment for a first letter.
https://bugs.webkit.org/show_bug.cgi?id=54568

We cannot assume that the next sibling to the first letter will a text fragment
since there can be intermediatary Apple-style-span inline elements wrapping the
text fragment. So, we traverse the next sibling tree to find it.
Test: fast/css/first-letter-text-fragment-crash.html

  • rendering/RenderBlock.cpp: (WebCore::RenderBlock::updateFirstLetter):
3:57 PM Changeset in webkit [78743] by Martin Robinson
  • 2 edits in trunk/Source/WebCore

2011-02-16 Martin Robinson <mrobinson@igalia.com>

Reviewed by Xan Lopez.

[GTK] r78718 introduced some assertion failures in some HTTP tests
https://bugs.webkit.org/show_bug.cgi?id=54592

No new tests. This fix is covered by tests that are currently failing.

  • platform/network/soup/ResourceRequestSoup.cpp: (WebCore::ResourceRequest::updateFromSoupMessage): Instead of setting the existing headers and then selectively removing ones that do not exist in the updated soup message, just remove all headers from the map first.
3:54 PM Changeset in webkit [78742] by Martin Robinson
  • 2 edits
    150 adds in trunk/LayoutTests

2011-02-16 Martin Robinson <mrobinson@igalia.com>

Add the next batch of GTK+ Mozilla test results.

  • platform/gtk/Skipped: Unskip tests which now have results.
3:37 PM Changeset in webkit [78741] by Martin Robinson
  • 2 edits in trunk/LayoutTests

2011-02-16 Martin Robinson <mrobinson@igalia.com>

Rebaseline media/controls-without-preload.html after r78695.

  • media/controls-without-preload-expected.txt: Rebaselined.
3:17 PM Changeset in webkit [78740] by pkasting@chromium.org
  • 2 edits
    8 adds in trunk/LayoutTests

Unreviewed, Chromium expectations update.

https://bugs.webkit.org/show_bug.cgi?id=54579
Add expectations for where V8 passes tests JSC doesn't, or merely has
different errors; mark other failing tests with a V8 tracking bug.

  • platform/chromium/fast/js/mozilla: Added.
  • platform/chromium/fast/js/mozilla/strict: Added.
  • platform/chromium/fast/js/mozilla/strict/11.1.5-expected.txt: Added.
  • platform/chromium/fast/js/mozilla/strict/12.14.1-expected.txt: Added.
  • platform/chromium/fast/js/mozilla/strict/13.1-expected.txt: Added.
  • platform/chromium/fast/js/mozilla/strict/15.3.4.5-expected.txt: Added.
  • platform/chromium/fast/js/mozilla/strict/15.3.5.2-expected.txt: Added.
  • platform/chromium/fast/js/mozilla/strict/regress-532254-expected.txt: Added.
  • platform/chromium/test_expectations.txt:
3:08 PM Changeset in webkit [78739] by mihaip@chromium.org
  • 2 edits in trunk/LayoutTests

2011-02-16 Mihai Parparita <mihaip@chromium.org>

Unreviewed chromium-gpu expectations update. Add more tests that fail
because of bug 54409.

  • platform/chromium/test_expectations.txt:
2:46 PM Changeset in webkit [78738] by jianli@chromium.org
  • 5 edits in trunk

[V8] DataView constructor can be applied as a regular method
https://bugs.webkit.org/show_bug.cgi?id=54563

Reviewed by Kenneth Russell.

Source/WebCore:

Tested by adding a new test case to fast/canvas/webgl/data-view-test.html.

  • bindings/v8/custom/V8DataViewCustom.cpp:

(WebCore::V8DataView::constructorCallback):

LayoutTests:

Added a new test case.

  • fast/canvas/webgl/data-view-test-expected.txt:
  • fast/canvas/webgl/data-view-test.html:
2:30 PM Changeset in webkit [78737] by mrowe@apple.com
  • 7 edits
    7 copies in trunk

Roll over some ChangeLogs.

2:25 PM Changeset in webkit [78736] by Martin Robinson
  • 2 edits
    152 adds in trunk/LayoutTests

2011-02-16 Martin Robinson <mrobinson@igalia.com>

Begin adding GTK+ baselines for Mozilla test suites.

  • platform/gtk/Skipped: Unskip tests which now have results.
2:21 PM Changeset in webkit [78735] by jamesr@google.com
  • 3 edits in branches/chromium/648/Source/WebCore/dom

Fix compile on Chromium 648 branch

1:52 PM Changeset in webkit [78734] by pkasting@chromium.org
  • 2 edits
    2 deletes in trunk/LayoutTests

Unreviewed, Chromium test expectations update.

Remove a mac-leopard expectation since the Chromium Mac 10.5 bots at
least seem to be generating results that match the platform/mac images.

  • platform/chromium/test_expectations.txt:
  • platform/mac-leopard/fast/forms/select-empty-option-height-expected.checksum: Removed.
  • platform/mac-leopard/fast/forms/select-empty-option-height-expected.png: Removed.
1:48 PM Changeset in webkit [78733] by jamesr@google.com
  • 9 edits
    4 copies in branches/chromium/648

Merge 78648 - 2011-02-15 James Robinson <jamesr@chromium.org>

Reviewed by Alexey Proskuryakov.

requestAnimationFrame callbacks should not fire within a modal dialog
https://bugs.webkit.org/show_bug.cgi?id=53188

Tests that requestAnimationFrame callbacks are suspended while a modal
dialog is showing.

  • fast/animation/request-animation-frame-during-modal-expected.txt: Added.
  • fast/animation/request-animation-frame-during-modal.html: Added.

2011-02-15 James Robinson <jamesr@chromium.org>

Reviewed by Alexey Proskuryakov.

requestAnimationFrame callbacks should not fire within a modal dialog
https://bugs.webkit.org/show_bug.cgi?id=53188

requestAnimationFrame callbacks shouldn't fire while a modal dialog is up (like a window.alert()).
This matches Firefox and other async APIs. This patch moves the callback servicing into its own
controller class which receives notifications on suspend/resume.

Test: fast/animation/request-animation-frame-during-modal.html

  • WebCore.gypi:
  • bindings/js/ScriptDebugServer.cpp: (WebCore::ScriptDebugServer::setJavaScriptPaused):
  • dom/Document.cpp: (WebCore::Document::Document): (WebCore::Document::suspendScriptedAnimationControllerCallbacks): (WebCore::Document::resumeScriptedAnimationControllerCallbacks): (WebCore::Document::webkitRequestAnimationFrame): (WebCore::Document::webkitCancelRequestAnimationFrame): (WebCore::Document::serviceScriptedAnimations):
  • dom/Document.h:
  • dom/ScriptExecutionContext.h: (WebCore::ScriptExecutionContext::suspendScriptedAnimationControllerCallbacks): (WebCore::ScriptExecutionContext::resumeScriptedAnimationControllerCallbacks):
  • dom/ScriptedAnimationController.cpp: Added. (WebCore::ScriptedAnimationController::ScriptedAnimationController): (WebCore::ScriptedAnimationController::suspend): (WebCore::ScriptedAnimationController::resume): (WebCore::ScriptedAnimationController::registerCallback): (WebCore::ScriptedAnimationController::cancelCallback): (WebCore::ScriptedAnimationController::serviceScriptedAnimations):
  • dom/ScriptedAnimationController.h: Added. (WebCore::ScriptedAnimationController::create):
  • history/CachedFrame.cpp: (WebCore::CachedFrameBase::restore): (WebCore::CachedFrame::CachedFrame):
  • page/PageGroupLoadDeferrer.cpp: (WebCore::PageGroupLoadDeferrer::PageGroupLoadDeferrer): (WebCore::PageGroupLoadDeferrer::~PageGroupLoadDeferrer):

TBR=jamesr@google.com
Review URL: http://codereview.chromium.org/6537003

1:35 PM Changeset in webkit [78732] by barraclough@apple.com
  • 55 edits in trunk/Source

Bug 54524 - Allow JSObject to fully utilize cell's capacity for inline storage.

Reviewed by Geoff Garen.

Currently JSObject is both directly instantiated for regular JS objects, and
derived to implement subtypes. A consequence of this is that we need to ensure
that sufficient space from the cell is left unused and available for any data
members that will be introduced by subclasses of JSObject. By restructuring
the internal storage array out of JSObject we can increase the size in the
internal storage for regular objects.

Add classes JSFinalObject and JSNonFinalObject. JSNonFinalObject retains as
much additional capacity as is currently available to allow for data members
in subclasses. JSFinalObject utilizes all available space for internal storage,
and only allows construction through JSFinalObject::create().

Source/JavaScriptCore:

The additional storage made available in the JSObject means that we need no
longer rely on a union of the internal storage with a pointer to storage that
is only valid for external storage. This means we can go back to always having
a valid pointer to property storage, regardless of whether this is internal or
external. This simplifies some cases of access to the array from C code, and
significantly simplifies JIT access, since repatching no longer needs to be
able to change between a load of the storage pointer / a LEA of the internal
storage.

  • API/JSObjectRef.cpp:

(JSObjectMake):

  • assembler/ARMAssembler.h:
  • assembler/ARMv7Assembler.h:
  • assembler/AbstractMacroAssembler.h:

(JSC::AbstractMacroAssembler::repatchPointer):

  • assembler/MIPSAssembler.h:
  • assembler/MacroAssemblerARM.h:
  • assembler/MacroAssemblerARMv7.h:
  • assembler/MacroAssemblerMIPS.h:
  • assembler/MacroAssemblerX86.h:
  • assembler/MacroAssemblerX86_64.h:
  • assembler/RepatchBuffer.h:
  • assembler/X86Assembler.h:
  • debugger/DebuggerActivation.cpp:

(JSC::DebuggerActivation::DebuggerActivation):

  • debugger/DebuggerActivation.h:
  • interpreter/Interpreter.cpp:

(JSC::Interpreter::privateExecute):

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

(JSC::JIT::emit_op_resolve_global):

  • jit/JITOpcodes32_64.cpp:

(JSC::JIT::emit_op_resolve_global):

  • jit/JITPropertyAccess.cpp:

(JSC::JIT::compileGetDirectOffset):
(JSC::JIT::emit_op_get_by_pname):
(JSC::JIT::compileGetByIdHotPath):
(JSC::JIT::emit_op_put_by_id):
(JSC::JIT::compilePutDirectOffset):
(JSC::JIT::patchGetByIdSelf):
(JSC::JIT::patchPutByIdReplace):
(JSC::JIT::privateCompileGetByIdProto):
(JSC::JIT::privateCompileGetByIdSelfList):
(JSC::JIT::privateCompileGetByIdProtoList):
(JSC::JIT::privateCompileGetByIdChainList):
(JSC::JIT::privateCompileGetByIdChain):

  • jit/JITPropertyAccess32_64.cpp:

(JSC::JIT::compileGetByIdHotPath):
(JSC::JIT::emit_op_put_by_id):
(JSC::JIT::compilePutDirectOffset):
(JSC::JIT::compileGetDirectOffset):
(JSC::JIT::patchGetByIdSelf):
(JSC::JIT::patchPutByIdReplace):
(JSC::JIT::privateCompileGetByIdProto):
(JSC::JIT::privateCompileGetByIdSelfList):
(JSC::JIT::privateCompileGetByIdProtoList):
(JSC::JIT::privateCompileGetByIdChainList):
(JSC::JIT::privateCompileGetByIdChain):
(JSC::JIT::emit_op_get_by_pname):

  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION):

  • runtime/Arguments.h:

(JSC::Arguments::Arguments):

  • runtime/ErrorInstance.cpp:

(JSC::ErrorInstance::ErrorInstance):

  • runtime/ErrorInstance.h:
  • runtime/ExceptionHelpers.cpp:

(JSC::InterruptedExecutionError::InterruptedExecutionError):
(JSC::TerminatedExecutionError::TerminatedExecutionError):

  • runtime/JSArray.cpp:

(JSC::JSArray::JSArray):

  • runtime/JSArray.h:
  • runtime/JSByteArray.cpp:

(JSC::JSByteArray::JSByteArray):

  • runtime/JSByteArray.h:

(JSC::JSByteArray::JSByteArray):

  • runtime/JSFunction.cpp:

(JSC::JSFunction::getOwnPropertySlot):

  • runtime/JSGlobalData.cpp:

(JSC::JSGlobalData::JSGlobalData):

  • runtime/JSGlobalObject.h:

(JSC::constructEmptyObject):

  • runtime/JSNotAnObject.h:

(JSC::JSNotAnObject::JSNotAnObject):

  • runtime/JSObject.cpp:

(JSC::JSObject::createInheritorID):
(JSC::JSObject::allocatePropertyStorage):

  • runtime/JSObject.h:

(JSC::JSObject::propertyStorage):
(JSC::JSNonFinalObject::JSNonFinalObject):
(JSC::JSNonFinalObject::createStructure):
(JSC::JSFinalObject::create):
(JSC::JSFinalObject::createStructure):
(JSC::JSFinalObject::JSFinalObject):
(JSC::JSObject::offsetOfInlineStorage):
(JSC::constructEmptyObject):
(JSC::createEmptyObjectStructure):
(JSC::JSObject::JSObject):
(JSC::JSObject::~JSObject):
(JSC::Structure::isUsingInlineStorage):

  • runtime/JSObjectWithGlobalObject.cpp:

(JSC::JSObjectWithGlobalObject::JSObjectWithGlobalObject):

  • runtime/JSObjectWithGlobalObject.h:

(JSC::JSObjectWithGlobalObject::JSObjectWithGlobalObject):

  • runtime/JSTypeInfo.h:

(JSC::TypeInfo::TypeInfo):
(JSC::TypeInfo::isVanilla):

  • runtime/JSVariableObject.h:

(JSC::JSVariableObject::JSVariableObject):

  • runtime/JSWrapperObject.h:

(JSC::JSWrapperObject::JSWrapperObject):

  • runtime/ObjectConstructor.cpp:

(JSC::constructObject):

  • runtime/ObjectPrototype.cpp:

(JSC::ObjectPrototype::ObjectPrototype):

  • runtime/ObjectPrototype.h:
  • runtime/StrictEvalActivation.cpp:

(JSC::StrictEvalActivation::StrictEvalActivation):

  • runtime/StrictEvalActivation.h:
  • runtime/Structure.cpp:

(JSC::Structure::Structure):
(JSC::Structure::growPropertyStorageCapacity):

Source/JavaScriptGlue:

  • UserObjectImp.cpp:
  • UserObjectImp.h:

Update JSObject -> JSNonFinalObject.

Source/WebCore:

  • bindings/js/JSDOMWindowShell.h:

Update JSObject -> JSNonFinalObject.

1:26 PM Changeset in webkit [78731] by oliver@apple.com
  • 1 edit
    196 adds in trunk/LayoutTests

2011-02-16 Oliver Hunt <oliver@apple.com>

Reviewed by Geoffrey Garen.

Import some mozilla js strict mode regression tests
https://bugs.webkit.org/show_bug.cgi?id=54579

Add a bunch of the mozilla strict mode tests, the majority of the tests pass.
Those that fail fall into two categories

  • Tests for features we haven't implemented
  • Tests that test behaviour of arrays and arguments with non-writable properties
  • fast/js/mozilla/eval/exhaustive-fun-normalcaller-direct-normalcode-expected.txt: Added.
  • fast/js/mozilla/eval/exhaustive-fun-normalcaller-direct-normalcode.html: Added.
  • fast/js/mozilla/eval/exhaustive-fun-normalcaller-direct-strictcode-expected.txt: Added.
  • fast/js/mozilla/eval/exhaustive-fun-normalcaller-direct-strictcode.html: Added.
  • fast/js/mozilla/eval/exhaustive-fun-normalcaller-indirect-normalcode-expected.txt: Added.
  • fast/js/mozilla/eval/exhaustive-fun-normalcaller-indirect-normalcode.html: Added.
  • fast/js/mozilla/eval/exhaustive-fun-normalcaller-indirect-strictcode-expected.txt: Added.
  • fast/js/mozilla/eval/exhaustive-fun-normalcaller-indirect-strictcode.html: Added.
  • fast/js/mozilla/eval/exhaustive-fun-strictcaller-direct-normalcode-expected.txt: Added.
  • fast/js/mozilla/eval/exhaustive-fun-strictcaller-direct-normalcode.html: Added.
  • fast/js/mozilla/eval/exhaustive-fun-strictcaller-direct-strictcode-expected.txt: Added.
  • fast/js/mozilla/eval/exhaustive-fun-strictcaller-direct-strictcode.html: Added.
  • fast/js/mozilla/eval/exhaustive-fun-strictcaller-indirect-normalcode-expected.txt: Added.
  • fast/js/mozilla/eval/exhaustive-fun-strictcaller-indirect-normalcode.html: Added.
  • fast/js/mozilla/eval/exhaustive-fun-strictcaller-indirect-strictcode-expected.txt: Added.
  • fast/js/mozilla/eval/exhaustive-fun-strictcaller-indirect-strictcode.html: Added.
  • fast/js/mozilla/eval/exhaustive-global-normalcaller-direct-normalcode-expected.txt: Added.
  • fast/js/mozilla/eval/exhaustive-global-normalcaller-direct-normalcode.html: Added.
  • fast/js/mozilla/eval/exhaustive-global-normalcaller-direct-strictcode-expected.txt: Added.
  • fast/js/mozilla/eval/exhaustive-global-normalcaller-direct-strictcode.html: Added.
  • fast/js/mozilla/eval/exhaustive-global-normalcaller-indirect-normalcode-expected.txt: Added.
  • fast/js/mozilla/eval/exhaustive-global-normalcaller-indirect-normalcode.html: Added.
  • fast/js/mozilla/eval/exhaustive-global-normalcaller-indirect-strictcode-expected.txt: Added.
  • fast/js/mozilla/eval/exhaustive-global-normalcaller-indirect-strictcode.html: Added.
  • fast/js/mozilla/eval/exhaustive-global-strictcaller-direct-normalcode-expected.txt: Added.
  • fast/js/mozilla/eval/exhaustive-global-strictcaller-direct-normalcode.html: Added.
  • fast/js/mozilla/eval/exhaustive-global-strictcaller-direct-strictcode-expected.txt: Added.
  • fast/js/mozilla/eval/exhaustive-global-strictcaller-direct-strictcode.html: Added.
  • fast/js/mozilla/eval/exhaustive-global-strictcaller-indirect-normalcode-expected.txt: Added.
  • fast/js/mozilla/eval/exhaustive-global-strictcaller-indirect-normalcode.html: Added.
  • fast/js/mozilla/eval/exhaustive-global-strictcaller-indirect-strictcode-expected.txt: Added.
  • fast/js/mozilla/eval/exhaustive-global-strictcaller-indirect-strictcode.html: Added.
  • fast/js/mozilla/eval/script-tests/TEMPLATE.html: Added.
  • fast/js/mozilla/eval/script-tests/exhaustive-fun-normalcaller-direct-normalcode.js: Added.
  • fast/js/mozilla/eval/script-tests/exhaustive-fun-normalcaller-direct-strictcode.js: Added.
  • fast/js/mozilla/eval/script-tests/exhaustive-fun-normalcaller-indirect-normalcode.js: Added.
  • fast/js/mozilla/eval/script-tests/exhaustive-fun-normalcaller-indirect-strictcode.js: Added.
  • fast/js/mozilla/eval/script-tests/exhaustive-fun-strictcaller-direct-normalcode.js: Added.
  • fast/js/mozilla/eval/script-tests/exhaustive-fun-strictcaller-direct-strictcode.js: Added.
  • fast/js/mozilla/eval/script-tests/exhaustive-fun-strictcaller-indirect-normalcode.js: Added.
  • fast/js/mozilla/eval/script-tests/exhaustive-fun-strictcaller-indirect-strictcode.js: Added.
  • fast/js/mozilla/eval/script-tests/exhaustive-global-normalcaller-direct-normalcode.js: Added.
  • fast/js/mozilla/eval/script-tests/exhaustive-global-normalcaller-direct-strictcode.js: Added.
  • fast/js/mozilla/eval/script-tests/exhaustive-global-normalcaller-indirect-normalcode.js: Added.
  • fast/js/mozilla/eval/script-tests/exhaustive-global-normalcaller-indirect-strictcode.js: Added.
  • fast/js/mozilla/eval/script-tests/exhaustive-global-strictcaller-direct-normalcode.js: Added.
  • fast/js/mozilla/eval/script-tests/exhaustive-global-strictcaller-direct-strictcode.js: Added.
  • fast/js/mozilla/eval/script-tests/exhaustive-global-strictcaller-indirect-normalcode.js: Added.
  • fast/js/mozilla/eval/script-tests/exhaustive-global-strictcaller-indirect-strictcode.js: Added.
  • fast/js/mozilla/eval/script-tests/undeclared-name-in-nested-strict-eval.js: Added.
  • fast/js/mozilla/eval/undeclared-name-in-nested-strict-eval-expected.txt: Added.
  • fast/js/mozilla/eval/undeclared-name-in-nested-strict-eval.html: Added.
  • fast/js/mozilla/resources/js-test-post-async.js: Added.
  • fast/js/mozilla/resources/js-test-post-function.js: Added.
  • fast/js/mozilla/resources/js-test-post-n.js: Added.
  • fast/js/mozilla/resources/js-test-post.js: Added.
  • fast/js/mozilla/resources/js-test-pre.js: Added.
  • fast/js/mozilla/resources/js-test-style.css: Added.
  • fast/js/mozilla/resources/mozilla-es5-shell.js: Added.
  • fast/js/mozilla/resources/mozilla-shell.js: Added.
  • fast/js/mozilla/strict/10.4.2-expected.txt: Added.
  • fast/js/mozilla/strict/10.4.2.html: Added.
  • fast/js/mozilla/strict/10.4.3-expected.txt: Added.
  • fast/js/mozilla/strict/10.4.3.html: Added.
  • fast/js/mozilla/strict/10.6-expected.txt: Added.
  • fast/js/mozilla/strict/10.6.html: Added.
  • fast/js/mozilla/strict/11.1.5-expected.txt: Added.
  • fast/js/mozilla/strict/11.1.5.html: Added.
  • fast/js/mozilla/strict/11.13.1-expected.txt: Added.
  • fast/js/mozilla/strict/11.13.1.html: Added.
  • fast/js/mozilla/strict/11.13.2-expected.txt: Added.
  • fast/js/mozilla/strict/11.13.2.html: Added.
  • fast/js/mozilla/strict/11.3.1-expected.txt: Added.
  • fast/js/mozilla/strict/11.3.1.html: Added.
  • fast/js/mozilla/strict/11.3.2-expected.txt: Added.
  • fast/js/mozilla/strict/11.3.2.html: Added.
  • fast/js/mozilla/strict/11.4.1-expected.txt: Added.
  • fast/js/mozilla/strict/11.4.1.html: Added.
  • fast/js/mozilla/strict/11.4.4-expected.txt: Added.
  • fast/js/mozilla/strict/11.4.4.html: Added.
  • fast/js/mozilla/strict/11.4.5-expected.txt: Added.
  • fast/js/mozilla/strict/11.4.5.html: Added.
  • fast/js/mozilla/strict/12.10.1-expected.txt: Added.
  • fast/js/mozilla/strict/12.10.1.html: Added.
  • fast/js/mozilla/strict/12.14.1-expected.txt: Added.
  • fast/js/mozilla/strict/12.14.1.html: Added.
  • fast/js/mozilla/strict/12.2.1-expected.txt: Added.
  • fast/js/mozilla/strict/12.2.1.html: Added.
  • fast/js/mozilla/strict/13.1-expected.txt: Added.
  • fast/js/mozilla/strict/13.1.html: Added.
  • fast/js/mozilla/strict/15.10.7-expected.txt: Added.
  • fast/js/mozilla/strict/15.10.7.html: Added.
  • fast/js/mozilla/strict/15.3.4.5-expected.txt: Added.
  • fast/js/mozilla/strict/15.3.4.5.html: Added.
  • fast/js/mozilla/strict/15.3.5.1-expected.txt: Added.
  • fast/js/mozilla/strict/15.3.5.1.html: Added.
  • fast/js/mozilla/strict/15.3.5.2-expected.txt: Added.
  • fast/js/mozilla/strict/15.3.5.2.html: Added.
  • fast/js/mozilla/strict/15.4.4.12-expected.txt: Added.
  • fast/js/mozilla/strict/15.4.4.12.html: Added.
  • fast/js/mozilla/strict/15.4.4.13-expected.txt: Added.
  • fast/js/mozilla/strict/15.4.4.13.html: Added.
  • fast/js/mozilla/strict/15.4.4.6-expected.txt: Added.
  • fast/js/mozilla/strict/15.4.4.6.html: Added.
  • fast/js/mozilla/strict/15.4.4.8-expected.txt: Added.
  • fast/js/mozilla/strict/15.4.4.8.html: Added.
  • fast/js/mozilla/strict/15.4.4.9-expected.txt: Added.
  • fast/js/mozilla/strict/15.4.4.9.html: Added.
  • fast/js/mozilla/strict/15.4.5.1-expected.txt: Added.
  • fast/js/mozilla/strict/15.4.5.1.html: Added.
  • fast/js/mozilla/strict/15.5.5.1-expected.txt: Added.
  • fast/js/mozilla/strict/15.5.5.1.html: Added.
  • fast/js/mozilla/strict/15.5.5.2-expected.txt: Added.
  • fast/js/mozilla/strict/15.5.5.2.html: Added.
  • fast/js/mozilla/strict/8.12.5-expected.txt: Added.
  • fast/js/mozilla/strict/8.12.5.html: Added.
  • fast/js/mozilla/strict/8.12.7-expected.txt: Added.
  • fast/js/mozilla/strict/8.12.7.html: Added.
  • fast/js/mozilla/strict/8.7.2-expected.txt: Added.
  • fast/js/mozilla/strict/8.7.2.html: Added.
  • fast/js/mozilla/strict/B.1.1-expected.txt: Added.
  • fast/js/mozilla/strict/B.1.1.html: Added.
  • fast/js/mozilla/strict/B.1.2-expected.txt: Added.
  • fast/js/mozilla/strict/B.1.2.html: Added.
  • fast/js/mozilla/strict/assign-to-callee-name-expected.txt: Added.
  • fast/js/mozilla/strict/assign-to-callee-name.html: Added.
  • fast/js/mozilla/strict/directive-prologue-01-expected.txt: Added.
  • fast/js/mozilla/strict/directive-prologue-01.html: Added.
  • fast/js/mozilla/strict/eval-variable-environment-expected.txt: Added.
  • fast/js/mozilla/strict/eval-variable-environment.html: Added.
  • fast/js/mozilla/strict/function-name-arity-expected.txt: Added.
  • fast/js/mozilla/strict/function-name-arity.html: Added.
  • fast/js/mozilla/strict/primitive-this-no-writeback-expected.txt: Added.
  • fast/js/mozilla/strict/primitive-this-no-writeback.html: Added.
  • fast/js/mozilla/strict/regress-532041-expected.txt: Added.
  • fast/js/mozilla/strict/regress-532041.html: Added.
  • fast/js/mozilla/strict/regress-532254-expected.txt: Added.
  • fast/js/mozilla/strict/regress-532254.html: Added.
  • fast/js/mozilla/strict/regress-599159-expected.txt: Added.
  • fast/js/mozilla/strict/regress-599159.html: Added.
  • fast/js/mozilla/strict/script-tests/10.4.2.js: Added.
  • fast/js/mozilla/strict/script-tests/10.4.3.js: Added.
  • fast/js/mozilla/strict/script-tests/10.6.js: Added.
  • fast/js/mozilla/strict/script-tests/11.1.5.js: Added.
  • fast/js/mozilla/strict/script-tests/11.13.1.js: Added.
  • fast/js/mozilla/strict/script-tests/11.13.2.js: Added.
  • fast/js/mozilla/strict/script-tests/11.3.1.js: Added.
  • fast/js/mozilla/strict/script-tests/11.3.2.js: Added.
  • fast/js/mozilla/strict/script-tests/11.4.1.js: Added.
  • fast/js/mozilla/strict/script-tests/11.4.4.js: Added.
  • fast/js/mozilla/strict/script-tests/11.4.5.js: Added.
  • fast/js/mozilla/strict/script-tests/12.10.1.js: Added.
  • fast/js/mozilla/strict/script-tests/12.14.1.js: Added.
  • fast/js/mozilla/strict/script-tests/12.2.1.js: Added.
  • fast/js/mozilla/strict/script-tests/13.1.js: Added.
  • fast/js/mozilla/strict/script-tests/15.10.7.js: Added.
  • fast/js/mozilla/strict/script-tests/15.3.4.5.js: Added.
  • fast/js/mozilla/strict/script-tests/15.3.5.1.js: Added.
  • fast/js/mozilla/strict/script-tests/15.3.5.2.js: Added.
  • fast/js/mozilla/strict/script-tests/15.4.4.12.js: Added.
  • fast/js/mozilla/strict/script-tests/15.4.4.13.js: Added.
  • fast/js/mozilla/strict/script-tests/15.4.4.6.js: Added.
  • fast/js/mozilla/strict/script-tests/15.4.4.8.js: Added.
  • fast/js/mozilla/strict/script-tests/15.4.4.9.js: Added.
  • fast/js/mozilla/strict/script-tests/15.4.5.1.js: Added.
  • fast/js/mozilla/strict/script-tests/15.5.5.1.js: Added.
  • fast/js/mozilla/strict/script-tests/15.5.5.2.js: Added.
  • fast/js/mozilla/strict/script-tests/8.12.5.js: Added.
  • fast/js/mozilla/strict/script-tests/8.12.7.js: Added.
  • fast/js/mozilla/strict/script-tests/8.7.2.js: Added.
  • fast/js/mozilla/strict/script-tests/B.1.1.js: Added.
  • fast/js/mozilla/strict/script-tests/B.1.2.js: Added.
  • fast/js/mozilla/strict/script-tests/TEMPLATE.html: Added.
  • fast/js/mozilla/strict/script-tests/assign-to-callee-name.js: Added.
  • fast/js/mozilla/strict/script-tests/directive-prologue-01.js: Added.
  • fast/js/mozilla/strict/script-tests/eval-variable-environment.js: Added.
  • fast/js/mozilla/strict/script-tests/function-name-arity.js: Added.
  • fast/js/mozilla/strict/script-tests/primitive-this-no-writeback.js: Added.
  • fast/js/mozilla/strict/script-tests/regress-532041.js: Added.
  • fast/js/mozilla/strict/script-tests/regress-532254.js: Added.
  • fast/js/mozilla/strict/script-tests/regress-599159.js: Added.
  • fast/js/mozilla/strict/script-tests/strict-this-is-not-truthy.js: Added.
  • fast/js/mozilla/strict/script-tests/this-for-function-expression-recursion.js: Added.
  • fast/js/mozilla/strict/script-tests/unbrand-this.js: Added.
  • fast/js/mozilla/strict/strict-this-is-not-truthy-expected.txt: Added.
  • fast/js/mozilla/strict/strict-this-is-not-truthy.html: Added.
  • fast/js/mozilla/strict/this-for-function-expression-recursion-expected.txt: Added.
  • fast/js/mozilla/strict/this-for-function-expression-recursion.html: Added.
  • fast/js/mozilla/strict/unbrand-this-expected.txt: Added.
  • fast/js/mozilla/strict/unbrand-this.html: Added.
1:02 PM BuildingQtOnSymbian edited by siddharth.mathur@nokia.com
(diff)
1:01 PM BuildingQtOnSymbian edited by siddharth.mathur@nokia.com
(diff)
1:00 PM BuildingQtOnSymbian edited by siddharth.mathur@nokia.com
(diff)
12:58 PM BuildingQtOnSymbian edited by siddharth.mathur@nokia.com
added compiler support libraries step (diff)
12:50 PM Changeset in webkit [78730] by andersca@apple.com
  • 2 edits in trunk/Source/WebKit2

2011-02-16 Anders Carlsson <andersca@apple.com>

Reviewed by Adam Roben.

Always disable the responsiveness timer when showing a popup menu
https://bugs.webkit.org/show_bug.cgi?id=54578
<rdar://problem/9009170>

  • UIProcess/WebPageProxy.cpp: (WebKit::WebPageProxy::showPopupMenu):
12:38 PM Changeset in webkit [78729] by andersca@apple.com
  • 9 edits
    2 adds in trunk

2011-02-16 Anders Carlsson <andersca@apple.com>

Reviewed by Adam Roben.

Assertion failure in DrawingAreaImpl::display when calling WKPageForceRepaint on a page that uses accelerated compositing
https://bugs.webkit.org/show_bug.cgi?id=54575
<rdar://problem/8979594>

Add test.

  • TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
  • TestWebKitAPI/Tests/WebKit2/ForceRepaint.cpp: Added. (TestWebKitAPI::didForceRepaint): (TestWebKitAPI::didFinishLoadForFrame): (TestWebKitAPI::TEST):
  • TestWebKitAPI/Tests/WebKit2/simple-accelerated-compositing.html: Added.
  • TestWebKitAPI/win/TestWebKitAPI.vcproj:
  • TestWebKitAPI/win/copy-resources.cmd:

2011-02-16 Anders Carlsson <andersca@apple.com>

Reviewed by Adam Roben.

Assertion failure in DrawingAreaImpl::display when calling WKPageForceRepaint on a page that uses accelerated compositing
https://bugs.webkit.org/show_bug.cgi?id=54575
<rdar://problem/8979594>

  • WebProcess/WebPage/DrawingAreaImpl.cpp: (WebKit::DrawingAreaImpl::forceRepaint): If there is a layer tree host, ask it to force a repaint instead.
  • WebProcess/WebPage/LayerTreeHost.h:
  • WebProcess/WebPage/mac/LayerTreeHostMac.h:
  • WebProcess/WebPage/mac/LayerTreeHostMac.mm: (WebKit::LayerTreeHostMac::forceRepaint): Flush any layer changes, then flush and synchronize the current CA transaction.
12:01 PM Changeset in webkit [78728] by inferno@chromium.org
  • 3 edits
    2 adds in trunk

2011-02-16 Carol Szabo <carol.szabo@nokia.com>

Reviewed by David Hyatt.

REGRESSION: Use after free in WebCore::RenderCounter::destroyCounterNode
https://bugs.webkit.org/show_bug.cgi?id=54478

Test: fast/css/counters/render-tree-reorg-crash.html

  • rendering/RenderCounter.cpp: (WebCore::findPlaceForCounter): Fixed typo. The code was still walking sometimes the renderer tree instead of the element tree as intended.

2011-02-16 Carol Szabo <carol.szabo@nokia.com>

Reviewed by David Hyatt.

REGRESSION: Use after free in WebCore::RenderCounter::destroyCounterNode
https://bugs.webkit.org/show_bug.cgi?id=54478

Added this test, to evidence a bug not previously caught by the
Layout tests.

  • fast/css/counters/render-tree-reorg-crash-expected.txt: Added.
  • fast/css/counters/render-tree-reorg-crash.html: Added.
11:31 AM Changeset in webkit [78727] by oliver@apple.com
  • 7 edits in trunk

2011-02-16 Oliver Hunt <oliver@apple.com>

Reviewed by Geoff Garen.

Incorrect handling of global writes in dynamic contexts
https://bugs.webkit.org/show_bug.cgi?id=49383

Add a few tests to ensure that global writes are actually
allowed inside dynamic scopes.

  • fast/js/basic-strict-mode-expected.txt:
  • fast/js/script-tests/basic-strict-mode.js:

2011-02-16 Oliver Hunt <oliver@apple.com>

Reviewed by Geoff Garen.

Incorrect handling of global writes in dynamic contexts
https://bugs.webkit.org/show_bug.cgi?id=49383

  • interpreter/Interpreter.cpp: (JSC::Interpreter::privateExecute): Can't use the existing callframe to return an uncaught exception as by definition that callframe has already been torn down.
  • parser/ASTBuilder.h: (JSC::ASTBuilder::ASTBuilder): (JSC::ASTBuilder::varDeclarations): (JSC::ASTBuilder::funcDeclarations): (JSC::ASTBuilder::features): (JSC::ASTBuilder::numConstants): (JSC::ASTBuilder::createFuncDeclStatement): (JSC::ASTBuilder::addVar): (JSC::ASTBuilder::incConstants): (JSC::ASTBuilder::usesThis): (JSC::ASTBuilder::usesCatch): (JSC::ASTBuilder::usesClosures): (JSC::ASTBuilder::usesArguments): (JSC::ASTBuilder::usesAssignment): (JSC::ASTBuilder::usesWith): (JSC::ASTBuilder::usesEval): Don't need a vector of scopes in the ASTBuilder
  • runtime/Operations.h: (JSC::resolveBase): In strict mode the optimisation that we use to skip a lookup on the global object is incorrect and lead to us always disallowing global writes when we needed to do a dynamic slot lookup. Now the strict mode path actually checks for the property.
11:13 AM Changeset in webkit [78726] by ap@apple.com
  • 2 edits in trunk/Source/WebKit2

Reviewed by Anders Carlsson.

https://bugs.webkit.org/show_bug.cgi?id=54572
REGRESSION (WebKit2): Print Backgrounds checkbox has no effect for DOM initiated printing

  • UIProcess/WebPageProxy.cpp: (WebKit::WebPageProxy::preferencesDidChange): Preferences need to be propagated to Web process during synchronous printing.
10:48 AM Changeset in webkit [78725] by mnaganov@chromium.org
  • 4 adds in trunk/LayoutTests/platform/chromium-linux/svg

2011-02-16 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed rebaseline of SVG tests expectations for Linux after r78720.

LayoutTests/platform/chromium-linux/svg/custom/circular-marker-reference-2-expected.txt
LayoutTests/platform/chromium-linux/svg/custom/non-circular-marker-reference-expected.txt
LayoutTests/platform/chromium-linux/svg/custom/non-scaling-stroke-markers-expected.txt
LayoutTests/platform/chromium-linux/svg/hixie/links/001-expected.txt

10:41 AM Changeset in webkit [78724] by pkasting@chromium.org
  • 3 edits
    4 copies in branches/chromium/597

Merge 77724 - 2011-02-04 Hironori Bono <hbono@chromium.org>

Reviewed by Adam Barth.

[chromium] JPEG corruption
https://bugs.webkit.org/show_bug.cgi?id=53250

This change adds a new script test that we can render a CMYK JPEG with a
color profile correctly, i.e. we can render it without color corruption.

  • fast/images/cmyk-jpeg-with-color-profile-expected.txt: Added.
  • fast/images/cmyk-jpeg-with-color-profile.html: Added.
  • fast/images/resources/cmyk-jpeg.jpg: Added.
  • fast/images/script-tests/cmyk-jpeg-with-color-profile.js: Added. (image.onload):

2011-02-04 Hironori Bono <hbono@chromium.org>

Reviewed by Adam Barth.

[chromium] JPEG corruption
https://bugs.webkit.org/show_bug.cgi?id=53250

Same as gray-scale JPEGs, we convert the colors of CMYK JPEGs with color
profiles from CMYK to RGB twice and it causes color corruption. This
change suppresses the color profiles for CMYK JPEGs same as gray-scale
ones.

Test: fast/images/cmyk-jpeg-with-color-profile.html

  • platform/image-decoders/jpeg/JPEGImageDecoder.cpp: (WebCore::JPEGImageReader::decode):

TBR=commit-queue@webkit.org
Review URL: http://codereview.chromium.org/6529057

10:33 AM Changeset in webkit [78723] by mnaganov@chromium.org
  • 1 edit
    14 adds in trunk/LayoutTests/platform

2011-02-16 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed rebaseline of SVG tests expectations for Mac.

10:20 AM Changeset in webkit [78722] by Nikolas Zimmermann
  • 21 edits in trunk/LayoutTests

2011-02-16 Nikolas Zimmermann <nzimmermann@rim.com>

Not reviewed.

Pixel tests differences on 10.6.6 32bit vs. 64bit
https://bugs.webkit.org/show_bug.cgi?id=54474

Update gtk baseline using the 64bit debug bot - maybe we have another rounding problem on gtk. Let's see.

  • platform/gtk/svg/W3C-SVG-1.1/coords-viewattr-01-b-expected.txt:
  • platform/gtk/svg/W3C-SVG-1.1/painting-marker-03-f-expected.txt:
  • platform/gtk/svg/W3C-SVG-1.1/struct-frag-02-t-expected.txt:
  • platform/gtk/svg/W3C-SVG-1.1/struct-frag-03-t-expected.txt:
  • platform/gtk/svg/custom/circular-marker-reference-1-expected.txt:
  • platform/gtk/svg/custom/circular-marker-reference-3-expected.txt:
  • platform/gtk/svg/custom/circular-marker-reference-4-expected.txt:
  • platform/gtk/svg/custom/non-scaling-stroke-markers-expected.txt:
  • platform/gtk/svg/custom/resource-invalidate-on-target-update-expected.txt:
  • platform/gtk/svg/custom/stroked-pattern-expected.txt:
  • platform/gtk/svg/custom/text-rotated-gradient-expected.txt:
  • platform/gtk/svg/custom/use-css-events-expected.txt:
  • platform/gtk/svg/custom/use-detach-expected.txt:
  • platform/gtk/svg/filters/filterRes-expected.txt:
  • platform/gtk/svg/hixie/links/001-expected.txt:
  • platform/gtk/svg/hixie/viewbox/preserveAspectRatio/001-expected.txt:
  • platform/gtk/svg/text/small-fonts-2-expected.txt:
  • platform/gtk/svg/text/text-align-04-b-expected.txt:
  • platform/gtk/svg/zoom/page/zoom-coords-viewattr-01-b-expected.txt:
  • platform/gtk/svg/zoom/text/zoom-coords-viewattr-01-b-expected.txt:
10:13 AM Changeset in webkit [78721] by hans@chromium.org
  • 18 edits in trunk

2011-02-16 Hans Wennborg <hans@chromium.org>

Reviewed by Jeremy Orlow.

IndexedDB: Inject auto increment keys via key path on insertion
https://bugs.webkit.org/show_bug.cgi?id=54457

Prepare to test injection of auto increment key. Keep it commented out
until implemented Chromium-side.

  • storage/indexeddb/objectstore-autoincrement-expected.txt:
  • storage/indexeddb/objectstore-autoincrement.html:

2011-02-16 Hans Wennborg <hans@chromium.org>

Reviewed by Jeremy Orlow.

IndexedDB: Inject auto increment keys via key path on insertion
https://bugs.webkit.org/show_bug.cgi?id=54457

Inject auto increment keys via key path for object stores using key
path and auto increment.

  • bindings/v8/IDBBindingUtilities.cpp: (WebCore::LocalContext::getNthValueOnKeyPath): (WebCore::createIDBKeyFromSerializedValueAndKeyPath): (WebCore::injectIDBKeyIntoSerializedValue):
  • bindings/v8/IDBBindingUtilities.h:
  • platform/chromium/PlatformBridge.h:
  • storage/IDBKeyPathBackendImpl.cpp: (IDBKeyPathBackendImpl::injectIDBKeyIntoSerializedValue):
  • storage/IDBKeyPathBackendImpl.h:
  • storage/IDBObjectStoreBackendImpl.cpp: (WebCore::injectKeyIntoKeyPath): (WebCore::IDBObjectStoreBackendImpl::selectKeyForPut): (WebCore::IDBObjectStoreBackendImpl::putInternal):
  • storage/IDBObjectStoreBackendImpl.h:
  • storage/chromium/IDBKeyPathBackendImpl.cpp: (WebCore::IDBKeyPathBackendImpl::injectIDBKeyIntoSerializedValue):

2011-02-16 Hans Wennborg <hans@chromium.org>

Reviewed by Jeremy Orlow.

IndexedDB: Inject auto increment keys via key path on insertion
https://bugs.webkit.org/show_bug.cgi?id=54457

Support for injecting keys into objects via key path.

  • public/WebIDBKey.h:
  • public/WebKitClient.h: (WebKit::WebKitClient::injectIDBKeyIntoSerializedValue):
  • src/PlatformBridge.cpp: (WebCore::PlatformBridge::injectIDBKeyIntoSerializedValue):
  • src/WebIDBKey.cpp: (WebKit::WebIDBKey::injectIDBKeyIntoSerializedValue):
  • tests/IDBBindingUtilitiesTest.cpp: (WebCore::injectKey): (WebCore::checkInjection): (WebCore::checkInjectionFails): (WebCore::TEST):
9:59 AM Changeset in webkit [78720] by Nikolas Zimmermann
  • 12 edits
    12 adds in trunk/LayoutTests

2011-02-16 Nikolas Zimmermann <nzimmermann@rim.com>

Not reviewed.

Pixel tests differences on 10.6.6 32bit vs. 64bit
https://bugs.webkit.org/show_bug.cgi?id=54474

Update mac-leopard/win baselines. I rebaselined the wrong platforms in my last commit.

  • platform/mac-leopard/svg/W3C-SVG-1.1/painting-marker-03-f-expected.txt:
  • platform/mac-leopard/svg/W3C-SVG-1.1/struct-frag-02-t-expected.txt:
  • platform/mac-leopard/svg/W3C-SVG-1.1/struct-frag-03-t-expected.txt:
  • platform/mac-leopard/svg/custom/circular-marker-reference-2-expected.txt:
  • platform/mac-leopard/svg/custom/non-circular-marker-reference-expected.txt:
  • platform/mac-leopard/svg/custom/non-scaling-stroke-markers-expected.txt:
  • platform/mac-leopard/svg/custom/stroked-pattern-expected.txt:
  • platform/mac-leopard/svg/custom/text-rotated-gradient-expected.txt:
  • platform/mac-leopard/svg/custom/use-detach-expected.txt:
  • platform/mac-leopard/svg/hixie/links/001-expected.txt:
  • platform/mac-leopard/svg/text/small-fonts-2-expected.txt:
  • platform/win/svg/W3C-SVG-1.1/painting-marker-03-f-expected.txt: Added.
  • platform/win/svg/W3C-SVG-1.1/struct-frag-02-t-expected.txt: Added.
  • platform/win/svg/W3C-SVG-1.1/struct-frag-03-t-expected.txt: Added.
  • platform/win/svg/custom/circular-marker-reference-2-expected.txt: Added.
  • platform/win/svg/custom/non-circular-marker-reference-expected.txt: Added.
  • platform/win/svg/custom/non-scaling-stroke-markers-expected.txt: Added.
  • platform/win/svg/custom/stroked-pattern-expected.txt: Added.
  • platform/win/svg/custom/text-rotated-gradient-expected.txt: Added.
  • platform/win/svg/custom/use-detach-expected.txt: Added.
  • platform/win/svg/hixie/links: Added.
  • platform/win/svg/hixie/links/001-expected.txt: Added.
  • platform/win/svg/text/small-fonts-2-expected.txt: Added.
9:48 AM Changeset in webkit [78719] by mnaganov@chromium.org
  • 9 adds in trunk/LayoutTests/platform/chromium-win-xp/svg

2011-02-16 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed rebaseline of SVG tests expectations for Windows.

9:47 AM Changeset in webkit [78718] by sergio@webkit.org
  • 6 edits in trunk

2011-02-16 Sergio Villar Senin <svillar@igalia.com>

Reviewed by Martin Robinson.

[Gtk] Add support for layoutTestController.setWillSendRequestClearHeader
https://bugs.webkit.org/show_bug.cgi?id=54537

Unskipped http/tests/security/no-referrer.html.

  • platform/gtk/Skipped:

2011-02-16 Sergio Villar Senin <svillar@igalia.com>

Reviewed by Martin Robinson.

[Gtk] Add support for layoutTestController.setWillSendRequestClearHeader
https://bugs.webkit.org/show_bug.cgi?id=54537

Headers removed from the SoupMessage should be also removed from
the ResourceRequest when updating the latter from the former.

  • platform/network/soup/ResourceRequestSoup.cpp: (WebCore::ResourceRequest::updateFromSoupMessage):

2011-02-16 Sergio Villar Senin <svillar@igalia.com>

Reviewed by Martin Robinson.

[Gtk] Add support for layoutTestController.setWillSendRequestClearHeader
https://bugs.webkit.org/show_bug.cgi?id=54537

Added handler for resource-request-starting emitted in
FrameLoader's willSendRequest(). The current implementation
removes the headers set in setWillSendRequestClearHeader.

  • DumpRenderTree/gtk/DumpRenderTree.cpp: (willSendRequestCallback): (createWebView):
9:17 AM Changeset in webkit [78717] by loislo@chromium.org
  • 50 edits in trunk

2011-02-16 Ilya Tikhonovsky <loislo@chromium.org>

Reviewed by Yury Semikhatsky.

Web Inspector: split all the functions of Inspector backend API by domain.
https://bugs.webkit.org/show_bug.cgi?id=54558

We have a number of functions from different domains in single instance of InspectorBackend.
It'd be better to split the functions by their domains.
As example 'evaluate' will be moved from InspectorBackend to RuntimeAgent container.

  • http/tests/inspector/console-xhr-logging.html:
  • http/tests/inspector/extensions-test.js: (initialize_ExtensionsTest.InspectorTest.runExtensionTests):
  • http/tests/inspector/inspector-test.js: (initialize_InspectorTest.InspectorTest.completeTest): (initialize_InspectorTest.InspectorTest.evaluateInPage): (initialize_InspectorTest.InspectorTest.reloadPage):
  • inspector/console/console-dir-global.html:
  • inspector/debugger/debugger-autocontinue-on-syntax-error.html:
  • inspector/debugger/debugger-pause-on-exception.html:
  • inspector/elements/elements-panel-search.html:
  • inspector/report-API-errors-expected.txt:
  • inspector/report-API-errors.html:
  • inspector/report-protocol-errors.html:
  • inspector/styles/styles-new-API.html:
  • inspector/styles/styles-source-offsets.html:
  • inspector/timeline/timeline-network-resource.html:
  • inspector/timeline/timeline-script-tag-1.html:
  • inspector/timeline/timeline-script-tag-2.html:
  • inspector/timeline/timeline-test.js: (initialize_Timeline.InspectorTest.performActionsAndPrint.step2):
  • inspector/timeline/timeline-trivial.html:

2011-02-16 Ilya Tikhonovsky <loislo@chromium.org>

Reviewed by Yury Semikhatsky.

Web Inspector: split all the functions of Inspector backend API by domain.
https://bugs.webkit.org/show_bug.cgi?id=54558

We have a number of functions from different domains in single instance of InspectorBackend.
It'd be better to split the functions by their domains.
As example 'evaluate' will be moved from InspectorBackend to RuntimeAgent container.

  • inspector/CodeGeneratorInspector.pm:
  • inspector/front-end/AuditRules.js: (WebInspector.AuditRules.evaluateInTargetWindow): (WebInspector.AuditRules.UnusedCssRule.prototype.doRun):
  • inspector/front-end/AuditsPanel.js: (WebInspector.AuditsPanel.prototype._reloadResources):
  • inspector/front-end/BreakpointManager.js: (WebInspector.BreakpointManager.prototype._projectChanged): (WebInspector.BreakpointManager.prototype.restoreDOMBreakpoints): (WebInspector.BreakpointManager.prototype._saveBreakpoints): (WebInspector.DOMBreakpoint.prototype._enable): (WebInspector.DOMBreakpoint.prototype._disable): (WebInspector.EventListenerBreakpoint.prototype._enable): (WebInspector.EventListenerBreakpoint.prototype._disable): (WebInspector.XHRBreakpoint.prototype._enable): (WebInspector.XHRBreakpoint.prototype._disable):
  • inspector/front-end/CSSStyleModel.js: (WebInspector.CSSStyleModel.prototype.getStylesAsync): (WebInspector.CSSStyleModel.prototype.getComputedStyleAsync): (WebInspector.CSSStyleModel.prototype.getInlineStyleAsync): (WebInspector.CSSStyleModel.prototype.setRuleSelector.callback): (WebInspector.CSSStyleModel.prototype.setRuleSelector): (WebInspector.CSSStyleModel.prototype.addRule.callback): (WebInspector.CSSStyleModel.prototype.addRule): (WebInspector.CSSStyleModel.prototype._styleSheetChanged): (WebInspector.CSSStyleModel.prototype._onRevert): (WebInspector.CSSStyleDeclaration.prototype.insertPropertyAt): (WebInspector.CSSProperty.prototype.setText): (WebInspector.CSSProperty.prototype.setDisabled): (WebInspector.CSSStyleSheet.createForId): (WebInspector.CSSStyleSheet.prototype.setText):
  • inspector/front-end/ConsoleView.js: (WebInspector.ConsoleView.prototype.requestClearMessages): (WebInspector.ConsoleView.prototype.completions): (WebInspector.ConsoleView.prototype._handleContextMenuEvent.itemAction): (WebInspector.ConsoleView.prototype._handleContextMenuEvent): (WebInspector.ConsoleView.prototype.evalInInspectedWindow):
  • inspector/front-end/CookieItemsView.js: (WebInspector.CookieItemsView.prototype._deleteCookie):
  • inspector/front-end/DOMAgent.js: (WebInspector.DOMAgent.prototype.getChildNodesAsync): (WebInspector.DOMAgent.prototype.setAttributeAsync): (WebInspector.DOMAgent.prototype.removeAttributeAsync): (WebInspector.DOMAgent.prototype.setTextNodeValueAsync): (WebInspector.ApplicationCacheDispatcher.getApplicationCachesAsync): (WebInspector.Cookies.getCookiesAsync): (WebInspector.EventListeners.getEventListenersForNodeAsync):
  • inspector/front-end/DOMStorage.js: (WebInspector.DOMStorage.prototype.getEntries): (WebInspector.DOMStorage.prototype.setItem): (WebInspector.DOMStorage.prototype.removeItem):
  • inspector/front-end/Database.js: (WebInspector.Database.prototype.getTableNames): (WebInspector.Database.prototype.executeSql):
  • inspector/front-end/DebuggerModel.js: (WebInspector.DebuggerModel.prototype.enableDebugger): (WebInspector.DebuggerModel.prototype.disableDebugger): (WebInspector.DebuggerModel.prototype.continueToLocation): (WebInspector.DebuggerModel.prototype.setBreakpoint): (WebInspector.DebuggerModel.prototype.setBreakpointBySourceId): (WebInspector.DebuggerModel.prototype.removeBreakpoint): (WebInspector.DebuggerModel.prototype.editScriptSource):
  • inspector/front-end/ElementsPanel.js: (WebInspector.ElementsPanel.this.treeOutline.focusedNodeChanged): (WebInspector.ElementsPanel): (WebInspector.ElementsPanel.prototype.setDocument): (WebInspector.ElementsPanel.prototype.searchCanceled): (WebInspector.ElementsPanel.prototype.performSearch): (WebInspector.ElementsPanel.prototype.handleCopyEvent): (WebInspector.ElementsPanel.prototype.setSearchingForNode):
  • inspector/front-end/ElementsTreeOutline.js: (WebInspector.ElementsTreeElement.prototype._createTooltipForNode): (WebInspector.ElementsTreeElement.prototype._tagNameEditingCommitted): ():
  • inspector/front-end/ExtensionPanel.js: (WebInspector.ExtensionWatchSidebarPane.prototype.setExpression):
  • inspector/front-end/ExtensionServer.js: (WebInspector.ExtensionServer.prototype._onAddRequestHeaders): (WebInspector.ExtensionServer.prototype._onReload): (WebInspector.ExtensionServer.prototype._onEvaluateOnInspectedPage):
  • inspector/front-end/HeapSnapshotView.js: (WebInspector.HeapSnapshotProfileType.prototype.buttonClicked):
  • inspector/front-end/NetworkManager.js: (WebInspector.NetworkManager): (WebInspector.NetworkManager.prototype.reset): (WebInspector.NetworkManager.prototype.requestContent):
  • inspector/front-end/NetworkPanel.js: (WebInspector.NetworkDataGridNode.prototype._openInNewTab):
  • inspector/front-end/ProfileView.js: (WebInspector.CPUProfileView): (WebInspector.CPUProfileType.prototype.buttonClicked):
  • inspector/front-end/ProfilesPanel.js: (WebInspector.ProfilesPanel.prototype._clearProfiles): (WebInspector.ProfilesPanel.prototype._removeProfileHeader): (WebInspector.ProfilesPanel.prototype.loadHeapSnapshot): (WebInspector.ProfilesPanel.prototype._toggleProfiling): (WebInspector.ProfilesPanel.prototype.takeHeapSnapshot):
  • inspector/front-end/PropertiesSidebarPane.js: (WebInspector.PropertiesSidebarPane.prototype.update):
  • inspector/front-end/RemoteObject.js: (WebInspector.RemoteObject.resolveNode): (WebInspector.RemoteObject.prototype.getProperties): (WebInspector.RemoteObject.prototype.setPropertyValue): (WebInspector.RemoteObject.prototype.pushNodeToFrontend):
  • inspector/front-end/ResourcesPanel.js: (WebInspector.FrameTreeElement.prototype.onselect): (WebInspector.FrameTreeElement.prototype.set hovered): (WebInspector.FrameResourceTreeElement.prototype.ondblclick):
  • inspector/front-end/Script.js: (WebInspector.Script.prototype.requestSource):
  • inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype.evaluateInSelectedCallFrame): (WebInspector.ScriptsPanel.prototype._setPauseOnExceptions): (WebInspector.ScriptsPanel.prototype._togglePause): (WebInspector.ScriptsPanel.prototype._stepOverClicked): (WebInspector.ScriptsPanel.prototype._stepIntoClicked): (WebInspector.ScriptsPanel.prototype._stepOutClicked): (WebInspector.ScriptsPanel.prototype.toggleBreakpointsClicked):
  • inspector/front-end/SourceFrame.js: (WebInspector.SourceFrame.prototype._hidePopup):
  • inspector/front-end/TestController.js: (WebInspector.TestController.prototype.notifyDone):
  • inspector/front-end/TimelinePanel.js: (WebInspector.TimelinePanel.prototype._toggleTimelineButtonClicked):
  • inspector/front-end/WatchExpressionsSidebarPane.js: (WebInspector.WatchExpressionsSection.prototype.update):
  • inspector/front-end/WorkersSidebarPane.js: (WebInspector.WorkersSidebarPane.prototype.setInstrumentation):
  • inspector/front-end/inspector.js: (WebInspector.highlightDOMNode): (WebInspector.doLoadedDone): (WebInspector.openResource): (WebInspector.documentKeyDown):
9:14 AM Changeset in webkit [78716] by Nikolas Zimmermann
  • 10 edits
    13 adds in trunk/LayoutTests

2011-02-16 Nikolas Zimmermann <nzimmermann@rim.com>

Not reviewed.

Pixel tests differences on 10.6.6 32bit vs. 64bit
https://bugs.webkit.org/show_bug.cgi?id=54474

Update gtk/win/mac-leopard baselines.

  • platform/gtk/svg/custom/resource-invalidate-on-target-update-expected.txt:
  • platform/gtk/svg/custom/use-css-events-expected.txt:
  • platform/gtk/svg/filters/filterRes-expected.txt:
  • platform/gtk/svg/text/text-align-04-b-expected.txt:
  • platform/mac-leopard/svg/W3C-SVG-1.1/coords-viewattr-01-b-expected.txt: Added.
  • platform/mac-leopard/svg/W3C-SVG-1.1/painting-marker-03-f-expected.txt: Added.
  • platform/mac-leopard/svg/W3C-SVG-1.1/struct-frag-02-t-expected.txt: Added.
  • platform/mac-leopard/svg/W3C-SVG-1.1/struct-frag-03-t-expected.txt: Added.
  • platform/mac-leopard/svg/batik/masking/maskRegions-expected.txt:
  • platform/mac-leopard/svg/custom/circular-marker-reference-2-expected.txt: Added.
  • platform/mac-leopard/svg/custom/non-circular-marker-reference-expected.txt: Added.
  • platform/mac-leopard/svg/custom/non-scaling-stroke-markers-expected.txt: Added.
  • platform/mac-leopard/svg/custom/stroked-pattern-expected.txt: Added.
  • platform/mac-leopard/svg/custom/text-rotated-gradient-expected.txt: Added.
  • platform/mac-leopard/svg/custom/use-detach-expected.txt: Added.
  • platform/mac-leopard/svg/hixie/links/001-expected.txt: Added.
  • platform/mac-leopard/svg/hixie/viewbox/preserveAspectRatio/001-expected.txt:
  • platform/mac-leopard/svg/zoom/page/zoom-coords-viewattr-01-b-expected.txt: Added.
  • platform/mac-leopard/svg/zoom/page/zoom-mask-with-percentages-expected.txt:
  • platform/mac-leopard/svg/zoom/text/zoom-coords-viewattr-01-b-expected.txt: Added.
  • platform/win/svg/batik/masking/maskRegions-expected.txt:
  • platform/win/svg/zoom/page/zoom-mask-with-percentages-expected.txt:
9:12 AM Changeset in webkit [78715] by mario@webkit.org
  • 5 edits
    2 adds in trunk

2011-02-16 Mario Sanchez Prada <msanchez@igalia.com>

Reviewed by Martin Robinson.

[GTK] events missing when a document is (re)loaded
https://bugs.webkit.org/show_bug.cgi?id=25831

Added new layout test to check the right signals are emitted.

  • platform/gtk/accessibility/document-reload-events-expected.txt: Added.
  • platform/gtk/accessibility/document-reload-events.html: Added.

2011-02-16 Mario Sanchez Prada <msanchez@igalia.com>

Reviewed by Martin Robinson.

[GTK] events missing when a document is (re)loaded
https://bugs.webkit.org/show_bug.cgi?id=25831

Make sure webArea returns a proper name and that a signal
'state-change::defunct' is emitted when detaching the wrapper.

Test: platform/gtk/accessibility/document-reload-events.html

  • accessibility/gtk/AccessibilityObjectWrapperAtk.cpp: (webkit_accessible_get_name): Returns the current document's title as fallback mechanism for webArea objects. (webkit_accessible_detach): Emit 'state-change::defunct' function as soon as the wrapper is detached from the related core object.

2011-02-16 Mario Sanchez Prada <msanchez@igalia.com>

Reviewed by Martin Robinson.

[GTK] events missing when a document is (re)loaded
https://bugs.webkit.org/show_bug.cgi?id=25831

Emit the right signals when reloading a document.

  • WebCoreSupport/FrameLoaderClientGtk.cpp: (WebKit::notifyAccessibilityStatus): New function, to make sure the signals involved in reloading a document are properly emitted. (WebKit::notifyStatus): Also notify accessibility if enabled.
8:58 AM Changeset in webkit [78714] by Nikolas Zimmermann
  • 143 edits in trunk/LayoutTests

2011-02-16 Nikolas Zimmermann <nzimmermann@rim.com>

Reviewed by Dirk Schulze.

Pixel tests differences on 10.6.6 32bit vs. 64bit
https://bugs.webkit.org/show_bug.cgi?id=54474

Update SnowLeopard SVG pixel test baseline, generated on a 32bit machine, where it passes with tolerance 0.
This is the fifth and last chunk.

It should pass on modern 64bit machines as well, using tolerance 0.01.

  • platform/mac/svg/filters/feOffset-expected.checksum:
  • platform/mac/svg/filters/feOffset-expected.png:
  • platform/mac/svg/filters/filter-clip-expected.checksum:
  • platform/mac/svg/filters/filter-clip-expected.png:
  • platform/mac/svg/filters/filterRes-expected.checksum:
  • platform/mac/svg/filters/filterRes-expected.png:
  • platform/mac/svg/hixie/cascade/002-expected.checksum:
  • platform/mac/svg/hixie/cascade/002-expected.png:
  • platform/mac/svg/hixie/error/017-expected.checksum:
  • platform/mac/svg/hixie/error/017-expected.png:
  • platform/mac/svg/hixie/links/003-broken-expected.checksum:
  • platform/mac/svg/hixie/links/003-broken-expected.png:
  • platform/mac/svg/hixie/mixed/003-expected.checksum:
  • platform/mac/svg/hixie/mixed/003-expected.png:
  • platform/mac/svg/hixie/mixed/004-expected.checksum:
  • platform/mac/svg/hixie/mixed/004-expected.png:
  • platform/mac/svg/hixie/mixed/005-expected.checksum:
  • platform/mac/svg/hixie/mixed/005-expected.png:
  • platform/mac/svg/hixie/mixed/006-expected.checksum:
  • platform/mac/svg/hixie/mixed/006-expected.png:
  • platform/mac/svg/hixie/mixed/008-expected.checksum:
  • platform/mac/svg/hixie/mixed/008-expected.png:
  • platform/mac/svg/hixie/mixed/011-expected.checksum:
  • platform/mac/svg/hixie/mixed/011-expected.png:
  • platform/mac/svg/hixie/perf/001-expected.checksum:
  • platform/mac/svg/hixie/perf/001-expected.png:
  • platform/mac/svg/hixie/perf/002-expected.checksum:
  • platform/mac/svg/hixie/perf/002-expected.png:
  • platform/mac/svg/hixie/perf/007-expected.checksum:
  • platform/mac/svg/hixie/perf/007-expected.png:
  • platform/mac/svg/hixie/transform/001-expected.checksum:
  • platform/mac/svg/hixie/transform/001-expected.png:
  • platform/mac/svg/hixie/viewbox/preserveAspectRatio/001-expected.checksum:
  • platform/mac/svg/hixie/viewbox/preserveAspectRatio/001-expected.png:
  • platform/mac/svg/text/font-size-below-point-five-2-expected.checksum:
  • platform/mac/svg/text/font-size-below-point-five-2-expected.png:
  • platform/mac/svg/text/scaled-font-expected.checksum:
  • platform/mac/svg/text/scaled-font-expected.png:
  • platform/mac/svg/text/select-textLength-spacing-squeeze-1-expected.checksum:
  • platform/mac/svg/text/select-textLength-spacing-squeeze-1-expected.png:
  • platform/mac/svg/text/select-textLength-spacing-squeeze-2-expected.checksum:
  • platform/mac/svg/text/select-textLength-spacing-squeeze-2-expected.png:
  • platform/mac/svg/text/select-textLength-spacing-squeeze-3-expected.checksum:
  • platform/mac/svg/text/select-textLength-spacing-squeeze-3-expected.png:
  • platform/mac/svg/text/select-textLength-spacing-squeeze-4-expected.checksum:
  • platform/mac/svg/text/select-textLength-spacing-squeeze-4-expected.png:
  • platform/mac/svg/text/select-textLength-spacing-stretch-1-expected.checksum:
  • platform/mac/svg/text/select-textLength-spacing-stretch-1-expected.png:
  • platform/mac/svg/text/select-textLength-spacing-stretch-2-expected.checksum:
  • platform/mac/svg/text/select-textLength-spacing-stretch-2-expected.png:
  • platform/mac/svg/text/select-textLength-spacing-stretch-3-expected.checksum:
  • platform/mac/svg/text/select-textLength-spacing-stretch-3-expected.png:
  • platform/mac/svg/text/select-textLength-spacing-stretch-4-expected.checksum:
  • platform/mac/svg/text/select-textLength-spacing-stretch-4-expected.png:
  • platform/mac/svg/text/select-textLength-spacingAndGlyphs-stretch-1-expected.checksum:
  • platform/mac/svg/text/select-textLength-spacingAndGlyphs-stretch-1-expected.png:
  • platform/mac/svg/text/select-textLength-spacingAndGlyphs-stretch-2-expected.checksum:
  • platform/mac/svg/text/select-textLength-spacingAndGlyphs-stretch-2-expected.png:
  • platform/mac/svg/text/select-textLength-spacingAndGlyphs-stretch-3-expected.checksum:
  • platform/mac/svg/text/select-textLength-spacingAndGlyphs-stretch-3-expected.png:
  • platform/mac/svg/text/select-textLength-spacingAndGlyphs-stretch-4-expected.checksum:
  • platform/mac/svg/text/select-textLength-spacingAndGlyphs-stretch-4-expected.png:
  • platform/mac/svg/text/select-x-list-3-expected.checksum:
  • platform/mac/svg/text/select-x-list-3-expected.png:
  • platform/mac/svg/text/selection-background-color-expected.checksum:
  • platform/mac/svg/text/selection-background-color-expected.png:
  • platform/mac/svg/text/selection-styles-expected.checksum:
  • platform/mac/svg/text/selection-styles-expected.png:
  • platform/mac/svg/text/small-fonts-2-expected.checksum:
  • platform/mac/svg/text/small-fonts-2-expected.png:
  • platform/mac/svg/text/small-fonts-3-expected.checksum:
  • platform/mac/svg/text/small-fonts-3-expected.png:
  • platform/mac/svg/text/small-fonts-expected.checksum:
  • platform/mac/svg/text/small-fonts-expected.png:
  • platform/mac/svg/text/small-fonts-in-html5-expected.checksum:
  • platform/mac/svg/text/small-fonts-in-html5-expected.png:
  • platform/mac/svg/text/text-align-01-b-expected.checksum:
  • platform/mac/svg/text/text-align-01-b-expected.png:
  • platform/mac/svg/text/text-align-02-b-expected.checksum:
  • platform/mac/svg/text/text-align-02-b-expected.png:
  • platform/mac/svg/text/text-align-03-b-expected.checksum:
  • platform/mac/svg/text/text-align-03-b-expected.png:
  • platform/mac/svg/text/text-align-04-b-expected.checksum:
  • platform/mac/svg/text/text-align-04-b-expected.png:
  • platform/mac/svg/text/text-align-05-b-expected.checksum:
  • platform/mac/svg/text/text-align-05-b-expected.png:
  • platform/mac/svg/text/text-align-06-b-expected.checksum:
  • platform/mac/svg/text/text-align-06-b-expected.png:
  • platform/mac/svg/text/text-altglyph-01-b-expected.checksum:
  • platform/mac/svg/text/text-altglyph-01-b-expected.png:
  • platform/mac/svg/text/text-deco-01-b-expected.checksum:
  • platform/mac/svg/text/text-deco-01-b-expected.png:
  • platform/mac/svg/text/text-fonts-01-t-expected.checksum:
  • platform/mac/svg/text/text-fonts-01-t-expected.png:
  • platform/mac/svg/text/text-fonts-02-t-expected.checksum:
  • platform/mac/svg/text/text-fonts-02-t-expected.png:
  • platform/mac/svg/text/text-intro-05-t-expected.checksum:
  • platform/mac/svg/text/text-intro-05-t-expected.png:
  • platform/mac/svg/text/text-path-01-b-expected.checksum:
  • platform/mac/svg/text/text-path-01-b-expected.png:
  • platform/mac/svg/text/text-text-01-b-expected.checksum:
  • platform/mac/svg/text/text-text-01-b-expected.png:
  • platform/mac/svg/text/text-text-03-b-expected.checksum:
  • platform/mac/svg/text/text-text-03-b-expected.png:
  • platform/mac/svg/text/text-text-04-t-expected.checksum:
  • platform/mac/svg/text/text-text-04-t-expected.png:
  • platform/mac/svg/text/text-text-05-t-expected.checksum:
  • platform/mac/svg/text/text-text-05-t-expected.png:
  • platform/mac/svg/text/text-text-06-t-expected.checksum:
  • platform/mac/svg/text/text-text-06-t-expected.png:
  • platform/mac/svg/text/text-text-07-t-expected.checksum:
  • platform/mac/svg/text/text-text-07-t-expected.png:
  • platform/mac/svg/text/text-text-08-b-expected.checksum:
  • platform/mac/svg/text/text-text-08-b-expected.png:
  • platform/mac/svg/text/text-tselect-01-b-expected.checksum:
  • platform/mac/svg/text/text-tselect-01-b-expected.png:
  • platform/mac/svg/text/text-tselect-02-f-expected.checksum:
  • platform/mac/svg/text/text-tselect-02-f-expected.png:
  • platform/mac/svg/text/text-tspan-01-b-expected.checksum:
  • platform/mac/svg/text/text-tspan-01-b-expected.png:
  • platform/mac/svg/text/text-ws-01-t-expected.checksum:
  • platform/mac/svg/text/text-ws-01-t-expected.png:
  • platform/mac/svg/text/text-ws-02-t-expected.checksum:
  • platform/mac/svg/text/text-ws-02-t-expected.png:
  • platform/mac/svg/transforms/animated-path-inside-transformed-html-expected.checksum:
  • platform/mac/svg/transforms/animated-path-inside-transformed-html-expected.png:
  • platform/mac/svg/transforms/text-with-mask-with-svg-transform-expected.checksum:
  • platform/mac/svg/transforms/text-with-mask-with-svg-transform-expected.png:
  • platform/mac/svg/transforms/text-with-pattern-inside-transformed-html-expected.checksum:
  • platform/mac/svg/transforms/text-with-pattern-inside-transformed-html-expected.png:
  • platform/mac/svg/transforms/text-with-pattern-with-svg-transform-expected.checksum:
  • platform/mac/svg/transforms/text-with-pattern-with-svg-transform-expected.png:
  • platform/mac/svg/webarchive/svg-feimage-subresources-expected.checksum:
  • platform/mac/svg/webarchive/svg-feimage-subresources-expected.png:
  • platform/mac/svg/zoom/page/zoom-foreignObject-expected.checksum:
  • platform/mac/svg/zoom/page/zoom-foreignObject-expected.png:
  • platform/mac/svg/zoom/page/zoom-hixie-mixed-008-expected.checksum:
  • platform/mac/svg/zoom/page/zoom-hixie-mixed-008-expected.png:
  • platform/mac/svg/zoom/page/zoom-mask-with-percentages-expected.checksum:
  • platform/mac/svg/zoom/page/zoom-mask-with-percentages-expected.png:
  • platform/mac/svg/zoom/text/zoom-hixie-mixed-008-expected.checksum:
  • platform/mac/svg/zoom/text/zoom-hixie-mixed-008-expected.png:
8:58 AM Changeset in webkit [78713] by Nikolas Zimmermann
  • 1 edit in trunk/Source/WebCore/ChangeLog

Oops forgot to land the ChangeLog for r78704.

8:43 AM Changeset in webkit [78712] by mnaganov@chromium.org
  • 29 edits
    74 adds in trunk/LayoutTests/platform

2011-02-16 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed rebaseline of SVG tests expectations.

8:41 AM Changeset in webkit [78711] by Nikolas Zimmermann
  • 137 edits in trunk/LayoutTests

2011-02-16 Nikolas Zimmermann <nzimmermann@rim.com>

Reviewed by Dirk Schulze.

Pixel tests differences on 10.6.6 32bit vs. 64bit
https://bugs.webkit.org/show_bug.cgi?id=54474

Update SnowLeopard SVG pixel test baseline, generated on a 32bit machine, where it passes with tolerance 0.
This is the fourth chunk.

It should pass on modern 64bit machines as well, using tolerance 0.01.

  • platform/mac/svg/dynamic-updates/SVGEllipseElement-dom-cx-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGEllipseElement-dom-cx-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGEllipseElement-dom-cy-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGEllipseElement-dom-cy-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGEllipseElement-svgdom-cx-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGEllipseElement-svgdom-cx-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGEllipseElement-svgdom-cy-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGEllipseElement-svgdom-cy-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-in-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-in-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-in2-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-in2-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k1-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k1-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k2-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k2-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k3-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k3-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k4-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k4-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-operator-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-operator-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-in-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-in-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-in2-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-in2-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k1-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k1-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k2-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k2-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k3-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k3-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k4-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k4-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-operator-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-operator-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-bias-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-bias-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-divisor-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-divisor-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-edgeMode-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-edgeMode-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-in-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-in-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelMatrix-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelMatrix-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelUnitLength-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelUnitLength-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-order-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-order-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-preserveAlpha-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-preserveAlpha-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-targetX-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-targetX-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-targetY-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-targetY-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-bias-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-bias-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-divisor-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-divisor-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-edgeMode-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-edgeMode-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-in-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-in-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelMatrix-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelMatrix-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelUnitLength-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelUnitLength-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-order-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-order-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-preserveAlpha-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-preserveAlpha-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-targetX-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-targetX-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-targetY-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-targetY-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFEMergeNodeElement-dom-in-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFEMergeNodeElement-dom-in-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGFEMergeNodeElement-svgdom-in-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGFEMergeNodeElement-svgdom-in-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientTransform-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientTransform-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientUnits-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientUnits-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-x1-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-x1-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-x2-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-x2-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-y1-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-y1-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-y2-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-y2-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientTransform-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientTransform-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientUnits-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientUnits-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x1-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x1-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x2-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x2-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y1-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y1-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y2-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y2-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGMaskElement-dom-maskUnits-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGMaskElement-dom-maskUnits-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGMaskElement-svgdom-maskUnits-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGMaskElement-svgdom-maskUnits-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-cx-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-cx-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-cy-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-cy-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-fx-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-fx-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-fy-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-fy-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientTransform-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientTransform-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientUnits-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientUnits-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-r-attr-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-r-attr-expected.png:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cx-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cx-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cy-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cy-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fx-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fx-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fy-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fy-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientTransform-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientTransform-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientUnits-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientUnits-prop-expected.png:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-r-prop-expected.checksum:
  • platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-r-prop-expected.png:
8:37 AM Changeset in webkit [78710] by Philippe Normand
  • 2 edits in trunk/LayoutTests

Merge branch 'bug/54552' into staging

8:32 AM Changeset in webkit [78709] by Csaba Osztrogonác
  • 6 edits in trunk/LayoutTests

Unreviewed.

Update Qt specific expected files.

  • platform/qt/svg/custom/non-scaling-stroke-markers-expected.checksum:
  • platform/qt/svg/custom/non-scaling-stroke-markers-expected.png:
  • platform/qt/svg/custom/non-scaling-stroke-markers-expected.txt:
  • platform/qt/svg/custom/text-rotated-gradient-expected.txt:
  • platform/qt/svg/zoom/page/zoom-mask-with-percentages-expected.txt:
7:48 AM Changeset in webkit [78708] by Csaba Osztrogonác
  • 2 edits in trunk/Tools

[Qt] Qt build system can't handle removing headers from tree
https://bugs.webkit.org/show_bug.cgi?id=54466

Reviewed by Andreas Kling.

  • Scripts/build-webkit: Remove Qt makefiles from productDir before build.
7:26 AM Changeset in webkit [78707] by Nikolas Zimmermann
  • 139 edits in trunk/LayoutTests

2011-02-16 Nikolas Zimmermann <nzimmermann@rim.com>

Reviewed by Dirk Schulze.

Pixel tests differences on 10.6.6 32bit vs. 64bit
https://bugs.webkit.org/show_bug.cgi?id=54474

Update SnowLeopard SVG pixel test baseline, generated on a 32bit machine, where it passes with tolerance 0.
This is the third chunk.

It should pass on modern 64bit machines as well, using tolerance 0.01.

  • platform/mac/svg/clip-path/clip-in-mask-expected.checksum:
  • platform/mac/svg/clip-path/clip-in-mask-expected.png:
  • platform/mac/svg/clip-path/clip-path-child-clipped-expected.checksum:
  • platform/mac/svg/clip-path/clip-path-child-clipped-expected.png:
  • platform/mac/svg/clip-path/clip-path-childs-clipped-expected.checksum:
  • platform/mac/svg/clip-path/clip-path-childs-clipped-expected.png:
  • platform/mac/svg/clip-path/clip-path-clipped-expected.checksum:
  • platform/mac/svg/clip-path/clip-path-clipped-expected.png:
  • platform/mac/svg/clip-path/clip-path-clipped-nonzero-expected.checksum:
  • platform/mac/svg/clip-path/clip-path-clipped-nonzero-expected.png:
  • platform/mac/svg/clip-path/clip-path-on-clipped-use-expected.checksum:
  • platform/mac/svg/clip-path/clip-path-on-clipped-use-expected.png:
  • platform/mac/svg/clip-path/clip-path-on-g-and-child-expected.checksum:
  • platform/mac/svg/clip-path/clip-path-on-g-and-child-expected.png:
  • platform/mac/svg/clip-path/clip-path-on-g-expected.checksum:
  • platform/mac/svg/clip-path/clip-path-on-g-expected.png:
  • platform/mac/svg/clip-path/clip-path-on-svg-and-child-expected.checksum:
  • platform/mac/svg/clip-path/clip-path-on-svg-and-child-expected.png:
  • platform/mac/svg/clip-path/clip-path-on-svg-expected.checksum:
  • platform/mac/svg/clip-path/clip-path-on-svg-expected.png:
  • platform/mac/svg/clip-path/clip-path-use-as-child-expected.checksum:
  • platform/mac/svg/clip-path/clip-path-use-as-child-expected.png:
  • platform/mac/svg/clip-path/clip-path-use-as-child2-expected.checksum:
  • platform/mac/svg/clip-path/clip-path-use-as-child2-expected.png:
  • platform/mac/svg/clip-path/clip-path-use-as-child3-expected.checksum:
  • platform/mac/svg/clip-path/clip-path-use-as-child3-expected.png:
  • platform/mac/svg/clip-path/clip-path-use-as-child4-expected.checksum:
  • platform/mac/svg/clip-path/clip-path-use-as-child4-expected.png:
  • platform/mac/svg/clip-path/nested-clip-in-mask-image-based-clipping-expected.checksum:
  • platform/mac/svg/clip-path/nested-clip-in-mask-image-based-clipping-expected.png:
  • platform/mac/svg/clip-path/nested-clip-in-mask-path-and-image-based-clipping-expected.checksum:
  • platform/mac/svg/clip-path/nested-clip-in-mask-path-and-image-based-clipping-expected.png:
  • platform/mac/svg/clip-path/nested-clip-in-mask-path-based-clipping-expected.checksum:
  • platform/mac/svg/clip-path/nested-clip-in-mask-path-based-clipping-expected.png:
  • platform/mac/svg/custom/absolute-sized-content-with-resources-expected.checksum:
  • platform/mac/svg/custom/absolute-sized-content-with-resources-expected.png:
  • platform/mac/svg/custom/animate-path-discrete-expected.checksum:
  • platform/mac/svg/custom/animate-path-discrete-expected.png:
  • platform/mac/svg/custom/convolution-crash-expected.checksum:
  • platform/mac/svg/custom/convolution-crash-expected.png:
  • platform/mac/svg/custom/createImageElement2-expected.checksum:
  • platform/mac/svg/custom/createImageElement2-expected.png:
  • platform/mac/svg/custom/dynamic-svg-document-creation-expected.checksum:
  • platform/mac/svg/custom/dynamic-svg-document-creation-expected.png:
  • platform/mac/svg/custom/feComponentTransfer-Discrete-expected.checksum:
  • platform/mac/svg/custom/feComponentTransfer-Discrete-expected.png:
  • platform/mac/svg/custom/feComponentTransfer-Gamma-expected.checksum:
  • platform/mac/svg/custom/feComponentTransfer-Gamma-expected.png:
  • platform/mac/svg/custom/feComponentTransfer-Linear-expected.checksum:
  • platform/mac/svg/custom/feComponentTransfer-Linear-expected.png:
  • platform/mac/svg/custom/feComponentTransfer-Table-expected.checksum:
  • platform/mac/svg/custom/feComponentTransfer-Table-expected.png:
  • platform/mac/svg/custom/focus-ring-expected.checksum:
  • platform/mac/svg/custom/focus-ring-expected.png:
  • platform/mac/svg/custom/foreign-object-skew-expected.checksum:
  • platform/mac/svg/custom/foreign-object-skew-expected.png:
  • platform/mac/svg/custom/glyph-transformation-with-hkern-expected.checksum:
  • platform/mac/svg/custom/glyph-transformation-with-hkern-expected.png:
  • platform/mac/svg/custom/gradient-rotated-bbox-expected.checksum:
  • platform/mac/svg/custom/gradient-rotated-bbox-expected.png:
  • platform/mac/svg/custom/gradient-stroke-width-expected.checksum:
  • platform/mac/svg/custom/gradient-stroke-width-expected.png:
  • platform/mac/svg/custom/grayscale-gradient-mask-expected.checksum:
  • platform/mac/svg/custom/grayscale-gradient-mask-expected.png:
  • platform/mac/svg/custom/inline-svg-in-xhtml-expected.checksum:
  • platform/mac/svg/custom/inline-svg-in-xhtml-expected.png:
  • platform/mac/svg/custom/invalid-css-expected.checksum:
  • platform/mac/svg/custom/invalid-css-expected.png:
  • platform/mac/svg/custom/js-late-clipPath-and-object-creation-expected.checksum:
  • platform/mac/svg/custom/js-late-clipPath-and-object-creation-expected.png:
  • platform/mac/svg/custom/js-late-clipPath-creation-expected.checksum:
  • platform/mac/svg/custom/js-late-clipPath-creation-expected.png:
  • platform/mac/svg/custom/js-late-gradient-and-object-creation-expected.checksum:
  • platform/mac/svg/custom/js-late-gradient-and-object-creation-expected.png:
  • platform/mac/svg/custom/js-late-gradient-creation-expected.checksum:
  • platform/mac/svg/custom/js-late-gradient-creation-expected.png:
  • platform/mac/svg/custom/js-late-pattern-and-object-creation-expected.checksum:
  • platform/mac/svg/custom/js-late-pattern-and-object-creation-expected.png:
  • platform/mac/svg/custom/linking-a-03-b-all-expected.checksum:
  • platform/mac/svg/custom/linking-a-03-b-all-expected.png:
  • platform/mac/svg/custom/linking-a-03-b-transform-expected.checksum:
  • platform/mac/svg/custom/linking-a-03-b-transform-expected.png:
  • platform/mac/svg/custom/linking-a-03-b-viewBox-transform-expected.checksum:
  • platform/mac/svg/custom/linking-a-03-b-viewBox-transform-expected.png:
  • platform/mac/svg/custom/marker-default-width-height-expected.checksum:
  • platform/mac/svg/custom/marker-default-width-height-expected.png:
  • platform/mac/svg/custom/marker-opacity-expected.checksum:
  • platform/mac/svg/custom/marker-opacity-expected.png:
  • platform/mac/svg/custom/mouse-move-on-svg-root-expected.checksum:
  • platform/mac/svg/custom/mouse-move-on-svg-root-expected.png:
  • platform/mac/svg/custom/mouse-move-on-svg-root-standalone-expected.checksum:
  • platform/mac/svg/custom/mouse-move-on-svg-root-standalone-expected.png:
  • platform/mac/svg/custom/non-scaling-stroke-expected.checksum:
  • platform/mac/svg/custom/non-scaling-stroke-expected.png:
  • platform/mac/svg/custom/pattern-skew-transformed-expected.checksum:
  • platform/mac/svg/custom/pattern-skew-transformed-expected.png:
  • platform/mac/svg/custom/pattern-with-transformation-expected.checksum:
  • platform/mac/svg/custom/pattern-with-transformation-expected.png:
  • platform/mac/svg/custom/pointer-events-image-expected.checksum:
  • platform/mac/svg/custom/pointer-events-image-expected.png:
  • platform/mac/svg/custom/radial-gradient-with-outstanding-focalPoint-expected.checksum:
  • platform/mac/svg/custom/radial-gradient-with-outstanding-focalPoint-expected.png:
  • platform/mac/svg/custom/relative-sized-content-with-resources-expected.checksum:
  • platform/mac/svg/custom/relative-sized-content-with-resources-expected.png:
  • platform/mac/svg/custom/relative-sized-inner-svg-expected.checksum:
  • platform/mac/svg/custom/relative-sized-inner-svg-expected.png:
  • platform/mac/svg/custom/relative-sized-use-on-symbol-expected.checksum:
  • platform/mac/svg/custom/relative-sized-use-on-symbol-expected.png:
  • platform/mac/svg/custom/relative-sized-use-without-attributes-on-symbol-expected.checksum:
  • platform/mac/svg/custom/relative-sized-use-without-attributes-on-symbol-expected.png:
  • platform/mac/svg/custom/resource-invalidate-on-target-update-expected.checksum:
  • platform/mac/svg/custom/resource-invalidate-on-target-update-expected.png:
  • platform/mac/svg/custom/shapes-supporting-markers-expected.checksum:
  • platform/mac/svg/custom/shapes-supporting-markers-expected.png:
  • platform/mac/svg/custom/stroked-pattern-expected.checksum:
  • platform/mac/svg/custom/stroked-pattern-expected.png:
  • platform/mac/svg/custom/struct-use-09-b-expected.checksum:
  • platform/mac/svg/custom/struct-use-09-b-expected.png:
  • platform/mac/svg/custom/svg-curve-with-relative-cordinates-expected.checksum:
  • platform/mac/svg/custom/svg-curve-with-relative-cordinates-expected.png:
  • platform/mac/svg/custom/svg-fonts-in-html-expected.checksum:
  • platform/mac/svg/custom/svg-fonts-in-html-expected.png:
  • platform/mac/svg/custom/svg-fonts-with-no-element-reference-expected.checksum:
  • platform/mac/svg/custom/svg-fonts-with-no-element-reference-expected.png:
  • platform/mac/svg/custom/text-rotated-gradient-expected.checksum:
  • platform/mac/svg/custom/text-rotated-gradient-expected.png:
  • platform/mac/svg/custom/tref-update-expected.checksum:
  • platform/mac/svg/custom/tref-update-expected.png:
  • platform/mac/svg/custom/use-css-events-expected.checksum:
  • platform/mac/svg/custom/use-css-events-expected.png:
  • platform/mac/svg/custom/use-detach-expected.checksum:
  • platform/mac/svg/custom/use-detach-expected.png:
  • platform/mac/svg/custom/use-on-clip-path-with-transformation-expected.checksum:
  • platform/mac/svg/custom/use-on-clip-path-with-transformation-expected.png:
  • platform/mac/svg/custom/use-referencing-nonexisting-symbol-expected.checksum:
  • platform/mac/svg/custom/use-referencing-nonexisting-symbol-expected.png:
  • platform/mac/svg/custom/width-full-percentage-expected.checksum:
  • platform/mac/svg/custom/width-full-percentage-expected.png:
7:23 AM Changeset in webkit [78706] by Nikolas Zimmermann
  • 47 edits in trunk/LayoutTests

2011-02-16 Nikolas Zimmermann <nzimmermann@rim.com>

Reviewed by Dirk Schulze.

Pixel tests differences on 10.6.6 32bit vs. 64bit
https://bugs.webkit.org/show_bug.cgi?id=54474

Update SnowLeopard SVG pixel test baseline, generated on a 32bit machine, where it passes with tolerance 0.
This is the second chunk.

It should pass on modern 64bit machines as well, using tolerance 0.01.

  • platform/mac/svg/batik/masking/maskRegions-expected.checksum:
  • platform/mac/svg/batik/masking/maskRegions-expected.png:
  • platform/mac/svg/batik/text/smallFonts-expected.checksum:
  • platform/mac/svg/batik/text/smallFonts-expected.png:
  • platform/mac/svg/batik/text/textAnchor-expected.checksum:
  • platform/mac/svg/batik/text/textAnchor-expected.png:
  • platform/mac/svg/batik/text/textEffect-expected.checksum:
  • platform/mac/svg/batik/text/textEffect-expected.png:
  • platform/mac/svg/batik/text/textEffect3-expected.checksum:
  • platform/mac/svg/batik/text/textEffect3-expected.png:
  • platform/mac/svg/batik/text/textFeatures-expected.checksum:
  • platform/mac/svg/batik/text/textFeatures-expected.png:
  • platform/mac/svg/batik/text/textOnPath2-expected.checksum:
  • platform/mac/svg/batik/text/textOnPath2-expected.png:
  • platform/mac/svg/batik/text/textOnPath3-expected.checksum:
  • platform/mac/svg/batik/text/textOnPath3-expected.png:
  • platform/mac/svg/batik/text/verticalTextOnPath-expected.checksum:
  • platform/mac/svg/batik/text/verticalTextOnPath-expected.png:
  • platform/mac/svg/carto.net/button-expected.checksum:
  • platform/mac/svg/carto.net/button-expected.png:
  • platform/mac/svg/carto.net/colourpicker-expected.checksum:
  • platform/mac/svg/carto.net/colourpicker-expected.png:
  • platform/mac/svg/carto.net/combobox-expected.checksum:
  • platform/mac/svg/carto.net/combobox-expected.png:
  • platform/mac/svg/carto.net/scrollbar-expected.checksum:
  • platform/mac/svg/carto.net/scrollbar-expected.png:
  • platform/mac/svg/carto.net/selectionlist-expected.checksum:
  • platform/mac/svg/carto.net/selectionlist-expected.png:
  • platform/mac/svg/carto.net/slider-expected.checksum:
  • platform/mac/svg/carto.net/slider-expected.png:
  • platform/mac/svg/carto.net/textbox-expected.checksum:
  • platform/mac/svg/carto.net/textbox-expected.png:
  • platform/mac/svg/carto.net/window-expected.checksum:
  • platform/mac/svg/carto.net/window-expected.png:
  • platform/mac/svg/css/composite-shadow-example-expected.checksum:
  • platform/mac/svg/css/composite-shadow-example-expected.png:
  • platform/mac/svg/css/composite-shadow-text-expected.checksum:
  • platform/mac/svg/css/composite-shadow-text-expected.png:
  • platform/mac/svg/css/composite-shadow-with-opacity-expected.checksum:
  • platform/mac/svg/css/composite-shadow-with-opacity-expected.png:
  • platform/mac/svg/css/group-with-shadow-expected.checksum:
  • platform/mac/svg/css/group-with-shadow-expected.png:
  • platform/mac/svg/dom/SVGTransformList-basics-expected.checksum:
  • platform/mac/svg/dom/SVGTransformList-basics-expected.png:
  • svg/batik/masking/maskRegions.svg:
  • svg/zoom/page/zoom-mask-with-percentages.svg:
7:18 AM Changeset in webkit [78705] by mnaganov@chromium.org
  • 5 edits in trunk/Source/WebKit/chromium

2011-02-16 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r78678.
http://trac.webkit.org/changeset/78678
https://bugs.webkit.org/show_bug.cgi?id=54554

Breaks NaCl tests in Chromium (Requested by mnaganov on
#webkit).

  • src/WebURLRequest.cpp: (WebKit::WebURLRequestPrivateImpl::WebURLRequestPrivateImpl): (WebKit::WebURLRequest::downloadToFile): (WebKit::WebURLRequest::setDownloadToFile):
  • src/WebURLRequestPrivate.h: (WebKit::WebURLRequestPrivate::WebURLRequestPrivate):
  • src/WebURLResponse.cpp: (WebKit::WebURLResponsePrivateImpl::WebURLResponsePrivateImpl): (WebKit::WebURLResponse::downloadFilePath): (WebKit::WebURLResponse::setDownloadFilePath):
  • src/WebURLResponsePrivate.h:
7:11 AM Changeset in webkit [78704] by Nikolas Zimmermann
  • 128 edits in trunk

2011-02-15 Nikolas Zimmermann <nzimmermann@rim.com>

Reviewed by Dirk Schulze.

Pixel tests differences on 10.6.6 32bit vs. 64bit
https://bugs.webkit.org/show_bug.cgi?id=54474

When generating a SVG pixel test baseline with a vanilla 10.6.6 installation on a 32bit machine (Core Duo MBP)
and comparing the run with a software-identical 64bit machine (Core 2 Duo MBP), there are about 250 differences.

These fall in two categories:
a) 1px differences in text AA, or when drawing circles (all _below_ a tolerance of 0.01). Only visible in the subtracted difference image.

The reason is probably CGFloat being typedefed to double on 64bit machines, and float on 32bit machines.
AffineTransform stores doubles, so on 32bit machines we loose precision from AffineTransform -> CGAffineTransform.

b) Failures >0.1% (text origin/scale is slightly different, user-visible).

Caused by several sources of numerical instabilities within the SVG rendering code.

-> SVGPreserveAspectRatio::getCTM() computes an AffineTransform using doubles as input parameters, but floats are passed (like everywhere else in SVG).

This method is used to compute the viewBox AffineTransform, that affects the rendering of every content in the document. RenderSVGRoot concats
this transformation matrix to the GraphicsContext CTM, resulting in a source of numerical imprecision.

-> SVGInlineTextBox::paintTextWithShadows() calculates a scaling factor for text, to scale up the specified font size, to the actual on-screen size.

SVGInlineTextBox uses the scaled Font object, to draw in an unscaled context, that gets scaled up again afterwards.
context->scale(1 / scalingFactor); scaledFont.drawText(); context->scale(scalingFactor);

To remove the scale from the current GraphicsContext CTM, "context->scale(FloatSize(1 / scalingFactor, ...)" is used. As AffineTransform stores
doubles internally, it's likely that "context->scale(FloatSize(1 / ctm.a(), .." doesn't give you a matrix with a=1, but something close to 1.
Using "context->concatCTM(AffineTransform().scale(1 / ctm.a(), ..." could be used as workaround, to preserve double precision.
Fixing that brings us down to just a few pixel tests that differ between 32 & 64bit. There is still numerical imprecision, as floating-point
number representations aren't always precise. Unfortunately CoreGraphics doesn't provide a public way to just set a CTM, it only allows to concat them.
Fortunately CGContextSetCTM() is available, as private method, that allows me to switch the context CTM to any arbitary CGAffineTransform.

-> Add GraphicsContext::setCTM(const AffineTransform&) and implement it for all platforms (each explicitely exposes a 'setCTM' concept, except CG)

Use CGContextSetCTM() for CG, which appears to be present since at least 10.4, Cairo is using it for the same purpose since some years!

-> Instead of scaling the GraphicsContext before drawing text, grab the current CTM using context->getCTM(), scale it by '1 / scalingFactor'

normalize the transform (look for values close to 0/1 using float precision, and round!), and assign it using context->setCTM(normalizedTransform).
After drawing, just switch back to the preserved original CTM, both operations need GraphicsContext::setCTM.
This fixes all pixel test differences between 32/64 bit machines that fall into category b).
The use of GraphicsContext::setCTM() allows to switch between arbitary context transformations _without_ inducing accumulated rounding imprecision.

These combined patches fix the pixel test baseline changes.

Updated existing Snow Leopard pixel test baseline with a 32bit machine, passes here with tolerance 0.
The 64bit machine passes the baseline with tolerance 0.01.

  • platform/graphics/GraphicsContext.h: Add setCTM(const AffineTransform&) method.
  • platform/graphics/cairo/GraphicsContextCairo.cpp: (WebCore::GraphicsContext::setCTM): Implement setCTM.
  • platform/graphics/cairo/GraphicsContextPlatformPrivateCairo.h: (WebCore::GraphicsContextPlatformPrivate::setCTM): Ditto.
  • platform/graphics/cg/GraphicsContextCG.cpp: (WebCore::GraphicsContext::setCTM): Ditto.
  • platform/graphics/cg/GraphicsContextPlatformPrivateCG.h: (WebCore::GraphicsContextPlatformPrivate::setCTM): Ditto.
  • platform/graphics/chromium/GLES2Canvas.cpp: (WebCore::GLES2Canvas::setCTM): Ditto.
  • platform/graphics/chromium/GLES2Canvas.h:
  • platform/graphics/haiku/GraphicsContextHaiku.cpp: (WebCore::GraphicsContext::setCTM): Ditto.
  • platform/graphics/openvg/GraphicsContextOpenVG.cpp: (WebCore::GraphicsContext::setCTM): Ditto.
  • platform/graphics/qt/GraphicsContextQt.cpp: (WebCore::GraphicsContext::setCTM): Ditto.
  • platform/graphics/skia/GraphicsContextSkia.cpp: (WebCore::GraphicsContext::setCTM): Ditto.
  • platform/graphics/win/GraphicsContextWin.cpp: (WebCore::GraphicsContextPlatformPrivate::setCTM): Ditto.
  • platform/graphics/wince/GraphicsContextWinCE.cpp: (WebCore::GraphicsContextPlatformPrivate::concatCTM): (WebCore::GraphicsContextPlatformPrivate::setCTM): Ditto. (WebCore::GraphicsContext::setCTM):
  • platform/graphics/wx/GraphicsContextWx.cpp: (WebCore::GraphicsContext::setCTM): Ditto.
  • rendering/svg/SVGInlineTextBox.cpp: Use setCTM() to switch to a scale-free AffineTransform, and also to switch back to the original CTM after rendering text. (WebCore::normalizeTransform): (WebCore::SVGInlineTextBox::paintDecorationWithStyle): (WebCore::SVGInlineTextBox::paintTextWithShadows):
  • svg/SVGPreserveAspectRatio.cpp: s/double/float/. (WebCore::SVGPreserveAspectRatio::getCTM):
  • svg/SVGPreserveAspectRatio.h:
  • svg/SVGSVGElement.cpp: Simplify viewport() code, avoid using doubles. (WebCore::SVGSVGElement::viewport):

2011-02-16 Nikolas Zimmermann <nzimmermann@rim.com>

Reviewed by Dirk Schulze.

Pixel tests differences on 10.6.6 32bit vs. 64bit
https://bugs.webkit.org/show_bug.cgi?id=54474

Update SnowLeopard SVG pixel test baseline, generated on a 32bit machine, where it passes with tolerance 0.
This is the first chunk of several commits, as one commit is too huge for SVN.

It should pass on modern 64bit machines as well, using tolerance 0.01.

  • platform/mac/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.png:
  • platform/mac/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.png:
  • platform/mac/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.png:
  • platform/mac/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-03-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-03-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-08-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-08-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-26-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-26-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-30-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-30-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-33-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-33-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-34-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-34-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-36-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-40-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-40-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-44-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-44-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-82-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-82-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-84-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-84-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/filters-color-01-b-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/filters-color-01-b-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/filters-comptran-01-b-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/filters-comptran-01-b-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/filters-example-01-b-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/filters-example-01-b-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/filters-morph-01-f-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/filters-morph-01-f-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/filters-offset-01-b-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/filters-offset-01-b-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/interact-order-01-b-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/interact-order-01-b-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/interact-order-02-b-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/interact-order-02-b-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/linking-a-05-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/linking-a-05-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/metadata-example-01-b-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/metadata-example-01-b-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/painting-marker-03-f-expected.txt:
  • platform/mac/svg/W3C-SVG-1.1/paths-data-02-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/paths-data-02-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/paths-data-03-f-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/paths-data-03-f-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/paths-data-04-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/paths-data-04-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/paths-data-05-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/paths-data-05-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/paths-data-06-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/paths-data-06-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/paths-data-07-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/paths-data-07-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/paths-data-08-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/paths-data-08-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/paths-data-15-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/paths-data-15-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/pservers-grad-07-b-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/pservers-grad-07-b-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/pservers-grad-11-b-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/pservers-grad-11-b-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/pservers-grad-13-b-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/pservers-grad-13-b-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/render-groups-03-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/render-groups-03-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/shapes-circle-01-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/shapes-circle-01-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/shapes-circle-02-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/shapes-circle-02-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/shapes-ellipse-01-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/shapes-ellipse-01-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/struct-frag-02-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/struct-frag-02-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/struct-frag-02-t-expected.txt:
  • platform/mac/svg/W3C-SVG-1.1/struct-frag-03-t-expected.txt:
  • platform/mac/svg/W3C-SVG-1.1/struct-image-02-b-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/struct-image-02-b-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/text-path-01-b-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/text-path-01-b-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/text-text-01-b-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/text-text-01-b-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/types-basicDOM-01-b-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/types-basicDOM-01-b-expected.png:
  • platform/mac/svg/batik/masking/maskRegions-expected.txt:
  • platform/mac/svg/custom/circular-marker-reference-1-expected.txt:
  • platform/mac/svg/custom/circular-marker-reference-2-expected.txt:
  • platform/mac/svg/custom/circular-marker-reference-3-expected.txt:
  • platform/mac/svg/custom/circular-marker-reference-4-expected.txt:
  • platform/mac/svg/custom/non-circular-marker-reference-expected.txt:
  • platform/mac/svg/custom/non-scaling-stroke-markers-expected.txt:
  • platform/mac/svg/custom/stroked-pattern-expected.txt:
  • platform/mac/svg/custom/text-rotated-gradient-expected.txt:
  • platform/mac/svg/custom/use-detach-expected.txt:
  • platform/mac/svg/hixie/links/001-expected.txt:
  • platform/mac/svg/hixie/viewbox/preserveAspectRatio/001-expected.txt:
  • platform/mac/svg/text/small-fonts-2-expected.txt:
  • platform/mac/svg/zoom/page/zoom-mask-with-percentages-expected.txt:
7:01 AM Changeset in webkit [78703] by andreas.kling@nokia.com
  • 2 edits in trunk/Source/WebCore

2011-02-16 Andreas Kling <kling@webkit.org>

Reviewed by Dirk Schulze.

SVGAnimateElement incorrectly uses Color::nameForRenderTreeAsText()
https://bugs.webkit.org/show_bug.cgi?id=54547

  • svg/SVGAnimateElement.cpp: (WebCore::SVGAnimateElement::applyResultsToTarget):
6:18 AM Changeset in webkit [78702] by mnaganov@chromium.org
  • 2 adds in trunk/LayoutTests/platform/chromium-win-xp/media

2011-02-16 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed rebaseline of media video-controls-rendering for Windows.

5:52 AM Changeset in webkit [78701] by Philippe Normand
  • 3 edits in trunk/LayoutTests

2011-02-16 Philippe Normand <pnormand@igalia.com>

Reviewed by Adam Roben.

media/audio-delete-while-slider-thumb-clicked.html failing on Windows since r78562
https://bugs.webkit.org/show_bug.cgi?id=54502

  • media/audio-delete-while-slider-thumb-clicked.html: Avoid deleting the element twice.
  • platform/win/Skipped: unskip the test.
5:48 AM Changeset in webkit [78700] by mnaganov@chromium.org
  • 7 edits
    1 add in trunk/Source/WebCore

2011-02-14 Mikhail Naganov <mnaganov@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: [Chromium] Landing detailed heap snapshots, part 3.
https://bugs.webkit.org/show_bug.cgi?id=54385

Provide node classes for data grid views:

  • summary -- list of objects by constuctor;
  • diff -- summaries btw two snapshots;
  • explorer -- explore heap graph;
  • dominators tree;
  • WebCore.gypi:
  • WebCore.vcproj/WebCore.vcproj:
  • inspector/front-end/DetailedHeapshotGridNodes.js: Added.
  • inspector/front-end/HeapSnapshot.js: (WebInspector.HeapSnapshotFilteredOrderedIterator): (WebInspector.HeapSnapshotFilteredOrderedIterator.prototype.incInstancesCount): (WebInspector.HeapSnapshotFilteredOrderedIterator.prototype.get instancesCount): (WebInspector.HeapSnapshotFilteredOrderedIterator.prototype.next): (WebInspector.HeapSnapshotFilteredOrderedIterator.prototype.resetInstancesCount): (WebInspector.HeapSnapshotEdgesProvider): (WebInspector.HeapSnapshotNodesProvider):
  • inspector/front-end/PleaseWaitMessage.js: (WebInspector.PleaseWaitMessage.prototype.get instance):
  • inspector/front-end/WebKit.qrc:
  • inspector/front-end/inspector.html:
5:22 AM Changeset in webkit [78699] by loislo@chromium.org
  • 4 edits in trunk

2011-02-16 Ilya Tikhonovsky <loislo@chromium.org>

Reviewed by Yury Semikhatsky.

Web Inspector: chromium: DRT is crashing on the tests in inspector-enabled folder.
https://bugs.webkit.org/show_bug.cgi?id=54548

Bug in chromium DRT implementation was fixed.
The tests were enabled.

  • platform/chromium/test_expectations.txt:

2011-02-16 Ilya Tikhonovsky <loislo@chromium.org>

Reviewed by Yury Semikhatsky.

Web Inspector: chromium: DRT is crashing on the tests in inspector-enabled folder.
https://bugs.webkit.org/show_bug.cgi?id=54548

  • DumpRenderTree/chromium/TestShell.cpp: (TestShell::runFileTest):
5:08 AM Changeset in webkit [78698] by mnaganov@chromium.org
  • 2 edits
    5 adds in trunk/LayoutTests/platform

2011-02-16 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed rebaseline of 2 more media tests.

5:02 AM Changeset in webkit [78697] by mnaganov@chromium.org
  • 19 edits
    13 adds in trunk/LayoutTests/platform

2011-02-16 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed rebaseline of media tests.

4:54 AM Changeset in webkit [78696] by Philippe Normand
  • 3 edits in trunk/LayoutTests

2011-02-16 Philippe Normand <pnormand@igalia.com>

Unreviewed, qt and mac rebaseline of test after r78690.

  • media/controls-without-preload-expected.txt:
  • platform/qt/media/controls-without-preload-expected.txt:
3:58 AM Changeset in webkit [78695] by Philippe Normand
  • 2 edits in trunk/LayoutTests

2011-02-16 Philippe Normand <pnormand@igalia.com>

Unreviewed, rebaseline test after r78690.

  • media/controls-without-preload-expected.txt:
3:51 AM Changeset in webkit [78694] by mnaganov@chromium.org
  • 16 edits
    2 deletes in trunk

2011-02-16 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r78655.
http://trac.webkit.org/changeset/78655
https://bugs.webkit.org/show_bug.cgi?id=54543

Causes too many test failures in chromium (Requested by
mnaganov on #webkit).

  • storage/indexeddb/exception-in-event-aborts-expected.txt: Removed.
  • storage/indexeddb/exception-in-event-aborts.html: Removed.
  • storage/indexeddb/queued-commands-expected.txt:
  • storage/indexeddb/queued-commands.html:
  • storage/indexeddb/request-event-propagation-expected.txt:
  • storage/indexeddb/request-event-propagation.html:
  • storage/indexeddb/resources/shared.js: (unexpectedErrorCallback):
  • storage/indexeddb/transaction-event-propagation-expected.txt:
  • storage/indexeddb/transaction-event-propagation.html:
3:41 AM Changeset in webkit [78693] by Philippe Normand
  • 2 edits in trunk/LayoutTests

2011-02-16 Philippe Normand <pnormand@igalia.com>

Unreviewed rebaseline GTK media test result.

  • platform/gtk/media/video-controls-rendering-expected.txt:
3:21 AM Changeset in webkit [78692] by loislo@chromium.org
  • 8 edits in trunk/Source/WebCore

2011-02-16 Ilya Tikhonovsky <loislo@chromium.org>

Reviewed by Yury Semikhatsky.

Web Inspector: move Database and DOMStorage related things from InspectorAgent to the corresponding agents.

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

Some set of instrumentation calls should work even if we have no InspectorFrontend instance and corresponding agents.
At the moment we are using InspectorAgent instance for such calls.

  • inspector/InspectorAgent.cpp: (WebCore::InspectorAgent::InspectorAgent): (WebCore::InspectorAgent::createFrontendLifetimeAgents): (WebCore::InspectorAgent::pushDataCollectedOffline): (WebCore::InspectorAgent::didCommitLoad):
  • inspector/InspectorAgent.h: (WebCore::InspectorOfflineResourcesBase::~InspectorOfflineResourcesBase): (WebCore::InspectorOfflineResourcesBase::InspectorOfflineResourcesBase): (WebCore::InspectorAgent::databaseAgentResources): (WebCore::InspectorAgent::domStorageAgentResources):
  • inspector/InspectorDOMStorageAgent.cpp: (WebCore::InspectorDOMStorageAgent::Resources::clear): (WebCore::InspectorDOMStorageAgent::Resources::pushDataCollectedOffline): (WebCore::InspectorDOMStorageAgent::InspectorDOMStorageAgent): (WebCore::InspectorDOMStorageAgent::~InspectorDOMStorageAgent): (WebCore::InspectorDOMStorageAgent::createOfflineStorage): (WebCore::InspectorDOMStorageAgent::selectDOMStorage): (WebCore::InspectorDOMStorageAgent::getDOMStorageResourceForId): (WebCore::InspectorDOMStorageAgent::didUseDOMStorage):
  • inspector/InspectorDOMStorageAgent.h: (WebCore::InspectorDOMStorageAgent::create):
  • inspector/InspectorDatabaseAgent.cpp: (WebCore::InspectorDatabaseAgent::Resources::clear): (WebCore::InspectorDatabaseAgent::Resources::pushDataCollectedOffline): (WebCore::InspectorDatabaseAgent::didOpenDatabase): (WebCore::InspectorDatabaseAgent::InspectorDatabaseAgent): (WebCore::InspectorDatabaseAgent::createOfflineStorage): (WebCore::InspectorDatabaseAgent::databaseForId): (WebCore::InspectorDatabaseAgent::selectDatabase):
  • inspector/InspectorDatabaseAgent.h: (WebCore::InspectorDatabaseAgent::create):
  • inspector/InspectorInstrumentation.cpp: (WebCore::InspectorInstrumentation::didOpenDatabaseImpl): (WebCore::InspectorInstrumentation::didUseDOMStorageImpl):
3:20 AM Changeset in webkit [78691] by commit-queue@webkit.org
  • 3 edits in trunk/Tools

2011-02-16 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r77898.
http://trac.webkit.org/changeset/77898
https://bugs.webkit.org/show_bug.cgi?id=54541

Leopard Debug hasn't compiled for a long time (Requested by
abarth on #webkit).

  • Scripts/webkitpy/common/net/buildbot/buildbot.py:
  • Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
3:13 AM Changeset in webkit [78690] by Philippe Normand
  • 5 edits in trunk/LayoutTests

2011-02-15 Philippe Normand <pnormand@igalia.com>

Reviewed by Martin Robinson.

[GTK] media/controls-without-preload.html is flacky on 32-bits Debug
https://bugs.webkit.org/show_bug.cgi?id=50518

Refactored 2 media tests to avoid use of setTimeout and possible
flakyness.

  • media/controls-without-preload.html:
  • media/video-display-toggle.html:
  • platform/gtk/Skipped:
  • platform/gtk/media/controls-without-preload-expected.txt:
3:10 AM Changeset in webkit [78689] by Philippe Normand
  • 6 edits in trunk/LayoutTests

2011-02-15 Philippe Normand <pnormand@igalia.com>

Reviewed by Martin Robinson.

[GStreamer] wrong media duration report in media/controls-after-reload.html
https://bugs.webkit.org/show_bug.cgi?id=51602

Refactored some media tests to be less flaky-prone.

  • media/controls-after-reload.html: Trigger playback just before rendering the controls.
  • media/video-paint-test.js: Ditto. (init.document.addEventListener.): (init):
  • media/video-volume-slider.html: Trigger DRT dump after volume was updated.
  • platform/gtk/Skipped: Unskip fixed tests.
  • platform/gtk/media/video-controls-rendering-expected.txt:
2:47 AM Changeset in webkit [78688] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/qt

2011-02-16 Aparna Nandyal <aparna.nand@wipro.com>

Reviewed by Andreas Kling.

[Qt] QWebFrame: When a relative url is loaded then it will make it absolute internally, however this strips out any query/fragments
https://bugs.webkit.org/show_bug.cgi?id=29424

ensureAbsoluteUrl function was stripping the query and the
fragment part of the url. Corrected this.

  • Api/qwebframe.cpp: (ensureAbsoluteUrl):

Feb 15, 2011:

11:31 PM Changeset in webkit [78687] by sullivan@apple.com
  • 2 edits in trunk/Source/WebCore

Dan Bernstein came up with this fix while we debugged it. I just typed.

Reviewed by Antti Koivisto.

https://bugs.webkit.org/show_bug.cgi?id=54532
On platforms without platformWidgets, going Back to a scrolled page
draws at the top-left before drawing at the restored scroll position

<rdar://problem/8998838>

  • page/FrameView.cpp:

(WebCore::FrameView::performPostLayoutTasks):
Don't send the didFirstLayout and didFirstVisuallyNonEmptyLayout callbacks
for nested layouts. Doing so was causing ScrollView::setScrollPosition()
to short-circuit.

11:27 PM Changeset in webkit [78686] by Csaba Osztrogonác
  • 4 edits in trunk/Source

Unreviewed.

[Qt][V8] Buildfix. Add missing USE(JSC) guard.

Source/WebCore:

  • plugins/qt/PluginViewQt.cpp:

Source/WebKit/qt:

  • Api/qwebelement.cpp:
10:48 PM Changeset in webkit [78685] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

2011-02-15 Xianzhu Wang <wangxianzhu@google.com>

Reviewed by Kent Tamura.

Fixed a small bug about --no-timeout option.
https://bugs.webkit.org/show_bug.cgi?id=52873

  • DumpRenderTree/chromium/DumpRenderTree.cpp: (main):
10:41 PM Changeset in webkit [78684] by mrowe@apple.com
  • 5 edits in branches/safari-534.20-branch/Source

Versioning.

10:39 PM Changeset in webkit [78683] by mrowe@apple.com
  • 1 copy in tags/Safari-534.20.1

New tag.

9:33 PM Changeset in webkit [78682] by tkent@chromium.org
  • 1 edit
    2 adds in trunk/LayoutTests

2011-02-15 Kent Tamura <tkent@chromium.org>

Unreviewed, test expectation update.

Chromium-Mac-Leopard baseline files for r78677.

  • platform/chromium-mac-leopard/fast/forms/input-appearance-spinbutton-layer-expected.checksum: Added.
  • platform/chromium-mac-leopard/fast/forms/input-appearance-spinbutton-layer-expected.png: Added.
9:08 PM Changeset in webkit [78681] by tkent@chromium.org
  • 1 edit
    6 adds in trunk/LayoutTests

2011-02-15 Kent Tamura <tkent@chromium.org>

Unreviewed, test expectation update.

Chromium baseline files for a new test of r78677.

  • platform/chromium-linux/fast/forms/input-appearance-spinbutton-layer-expected.checksum: Added.
  • platform/chromium-linux/fast/forms/input-appearance-spinbutton-layer-expected.png: Added.
  • platform/chromium-linux/fast/forms/input-appearance-spinbutton-layer-expected.txt: Added.
  • platform/chromium-win-xp/fast/forms/input-appearance-spinbutton-layer-expected.checksum: Added.
  • platform/chromium-win-xp/fast/forms/input-appearance-spinbutton-layer-expected.png: Added.
  • platform/chromium-win-xp/fast/forms/input-appearance-spinbutton-layer-expected.txt: Added.
9:07 PM Changeset in webkit [78680] by commit-queue@webkit.org
  • 3 edits
    5 adds in trunk

2011-02-15 Ami Fischman <fischman@chromium.org>

Reviewed by David Levin.

Remove the artificial -32px shift for media controls in mediaDocuments
so that they overlap the canvas as they do in non-mediaDocuments.
This also fixes test_shell failing to update the media slider (see
linked crbug below).

https://bugs.webkit.org/show_bug.cgi?id=27798
http://crbug.com/72623

Test: media/video-controls-in-media-document.html
Added a render test that asserts that the controls show up in the
expected spot (0,208) instead of below the canvas (0,240).

  • css/mediaControlsChromium.css:
9:05 PM Changeset in webkit [78679] by rniwa@webkit.org
  • 3 edits in trunk/Source/WebCore

2011-02-15 Ryosuke Niwa <rniwa@webkit.org>

Reviewed by Darin Adler.

Extract a function to process ancestor and their sibling nodes from processContents
https://bugs.webkit.org/show_bug.cgi?id=54425

Extracted processAncestorsAndTheirSiblings.

  • dom/Range.cpp: (WebCore::Range::processContents): Calls processContents. (WebCore::Range::processAncestorsAndTheirSiblings): Extracted from processContents.
  • dom/Range.h:
8:51 PM Changeset in webkit [78678] by commit-queue@webkit.org
  • 5 edits in trunk/Source/WebKit/chromium

2011-02-15 Bill Budge <bbudge@chromium.org>

Reviewed by David Levin.

WebURLRequest, WebURLResponse properties should be passed to WebCore Layer
https://bugs.webkit.org/show_bug.cgi?id=54489

No tests needed, exposes no new functionality

  • src/WebURLRequest.cpp: (WebKit::WebURLRequestPrivateImpl::WebURLRequestPrivateImpl): (WebKit::WebURLRequest::downloadToFile): (WebKit::WebURLRequest::setDownloadToFile):
  • src/WebURLRequestPrivate.h: (WebKit::WebURLRequestPrivate::WebURLRequestPrivate):
  • src/WebURLResponse.cpp: (WebKit::WebURLResponsePrivateImpl::WebURLResponsePrivateImpl): (WebKit::WebURLResponse::downloadFilePath): (WebKit::WebURLResponse::setDownloadFilePath):
  • src/WebURLResponsePrivate.h:
8:14 PM Changeset in webkit [78677] by tkent@chromium.org
  • 5 edits
    4 adds in trunk

[Chromium] Rendering error of spin buttons on layers
https://bugs.webkit.org/show_bug.cgi?id=54427

Reviewed by Darin Fisher.

Source/WebCore:

Test: fast/forms/input-appearance-spinbutton-layer.html

  • rendering/RenderThemeChromiumWin.cpp: Add checks for multiple ThemePainter instances.

(WebCore::RenderThemeChromiumWin::paintInnerSpinButton):

Avoid to create multiple ThemePainter instances.

LayoutTests:

  • fast/forms/input-appearance-spinbutton-layer.html: Added.
  • platform/mac/fast/forms/input-appearance-spinbutton-layer-expected.checksum: Added.
  • platform/mac/fast/forms/input-appearance-spinbutton-layer-expected.png: Added.
  • platform/mac/fast/forms/input-appearance-spinbutton-layer-expected.txt: Added.
  • platform/gtk/Skipped:
  • platform/qt/Skipped:
8:11 PM Changeset in webkit [78676] by andersca@apple.com
  • 16 edits in trunk/Source/WebKit2

2011-02-15 Anders Carlsson <andersca@apple.com>

Reviewed by Sam Weinig.

WebPluginSiteDataManager should work with plug-in process
https://bugs.webkit.org/show_bug.cgi?id=54523
<rdar://problem/8689312>

  • PluginProcess/PluginProcess.cpp: (WebKit::PluginProcess::removeWebProcessConnection): Call startShutdownTimerIfNecessary().

(WebKit::PluginProcess::getSitesWithData):
Ask the plug-in module for the sites with data and send them back
in a PluginProcessProxy::DidGetSitesWithData message.

(WebKit::PluginProcess::clearSiteData):
Clear site data and send back a DidClearSiteData message.

(WebKit::PluginProcess::startShutdownTimerIfNecessary):
Factor code out from removeWebProcessConnection.

  • PluginProcess/PluginProcess.messages.in: Add new messages.
  • UIProcess/Plugins/PluginInfoStore.cpp: (WebKit::PluginInfoStore::plugins): New function for getting all plug-ins.
  • UIProcess/Plugins/PluginProcessManager.cpp: (WebKit::PluginProcessManager::getPluginProcessConnection): Call getOrCreatePluginProcess.

(WebKit::PluginProcessManager::getSitesWithData):
Get a plug-in process proxy and call getSitesWithData.

(WebKit::PluginProcessManager::clearSiteData):
Get a plug-in process proxy and call clearSiteData.

(WebKit::PluginProcessManager::getOrCreatePluginProcess):
Factor code to create a plug-in process out into a separate function.

  • UIProcess/Plugins/PluginProcessProxy.cpp: (WebKit::PluginProcessProxy::getSitesWithData): (WebKit::PluginProcessProxy::clearSiteData): Update the pending reply struct. If the process is still launching, enqueue the request. Otherwise, just send the message.

(WebKit::PluginProcessProxy::pluginProcessCrashedOrFailedToLaunch):
Make sure that pending replies are sent out.

(WebKit::PluginProcessProxy::didFinishLaunching):
Send our pending requests.

(WebKit::PluginProcessProxy::didGetSitesWithData):
(WebKit::PluginProcessProxy::didClearSiteData):
Call down to the plug-in site data manager.

  • UIProcess/Plugins/PluginProcessProxy.messages.in: Add DidGetSitesWithData and DidClearSiteData messages.
  • UIProcess/Plugins/WebPluginSiteDataManager.cpp: (WebKit::WebPluginSiteDataManager::GetSitesWithDataState::GetSitesWithDataState): Initialize the state.

(WebKit::WebPluginSiteDataManager::GetSitesWithDataState::getSitesWithDataForNextPlugin):
If the plug-in queue is empty, call didGetSitesWithDataForAllPlugins. Otherwise, ask
the plug-in process manager to get sites for the next plug-in.

(WebKit::WebPluginSiteDataManager::GetSitesWithDataState::didGetSitesWithDataForSinglePlugin):
Update the sites set and get sites for the next plug-in.

(WebKit::WebPluginSiteDataManager::ClearSiteDataState::ClearSiteDataState):
Initialize the state.

(WebKit::WebPluginSiteDataManager::ClearSiteDataState::clearSiteDataForNextPlugin):
If the plug-in queue is empty, call didClearSiteDataForAllPlugins. Otherwise, ask
the plug-in process manager to get sites for the next plug-in.


(WebKit::WebPluginSiteDataManager::ClearSiteDataState::didClearSiteDataForSinglePlugin):
Update the sites set and ask the next plug-in to clear site data.

(WebKit::WebPluginSiteDataManager::~WebPluginSiteDataManager):
Assert that all maps are empty.

(WebKit::WebPluginSiteDataManager::invalidate):
Delete and clear the pending state maps.

(WebKit::WebPluginSiteDataManager::getSitesWithData):
In the ENABLE(PLUGIN_PROCESS) case, allocate a new GetSitesWithDataState object and
tell it to get sites for the next plug-in. Otherwise, make sure that the web process
is alive before sending a GetSitesWithPluginData message.


(WebKit::WebPluginSiteDataManager::clearSiteData):
In the ENABLE(PLUGIN_PROCESS) case, allocate a new ClearSiteDataState object and
tell it to get sites for the next plug-in. Otherwise, make sure that the web process
is alive before sending a ClearPluginSiteData message.


(WebKit::WebPluginSiteDataManager::didGetSitesWithDataForSinglePlugin):
Call down to the GetSitesWithDataState object.

(WebKit::WebPluginSiteDataManager::didGetSitesWithDataForAllPlugins):
Free the GetSitesWithDataState object and invoke the callback.

(WebKit::WebPluginSiteDataManager::didClearSiteDataForSinglePlugin):
Call down to the GetSitesWithDataState object.


(WebKit::WebPluginSiteDataManager::didClearSiteDataForAllPlugins):
Free the GetSitesWithDataState object and invoke the callback.

  • UIProcess/WebContext.cpp: (WebKit::WebContext::processDidClose): Don't invalidate the plug-in site data manager if we're using a plug-in process.
  • WebProcess/WebProcess.cpp: (WebKit::WebProcess::getSitesWithPluginData): (WebKit::WebProcess::clearPluginSiteData): Call shutdownIfPossible().
7:41 PM Changeset in webkit [78675] by Martin Robinson
  • 2 edits in trunk/LayoutTests

2011-02-15 Martin Robinson <mrobinson@igalia.com>

Skip all Hixie SVG performance tests on GTK+. They seem
to be timing out on the GTK+ debug bots.

  • platform/gtk/Skipped: Skip Hixie SVG performance tests.
7:16 PM Changeset in webkit [78674] by ddkilzer@apple.com
  • 5 edits in trunk/Source/WebKit/mac

2011-02-15 David Kilzer <ddkilzer@apple.com>

<http://webkit.org/b/54505> Move -[WebDynamicScrollBarsView inProgrammaticScroll] to WebDynamicScrollBarsViewInternal.h

Reviewed by Darin Adler.

  • WebView/WebDynamicScrollBarsView.h: (-[WebDynamicScrollBarsView inProgrammaticScroll]): Removed declaration.
  • WebView/WebDynamicScrollBarsView.mm: (-[WebDynamicScrollBarsView inProgrammaticScroll]): Moved implementation into correct category.
  • WebView/WebDynamicScrollBarsViewInternal.h: (-[WebDynamicScrollBarsView inProgrammaticScroll]): Added declaration.
  • WebView/WebHTMLView.mm: Included WebDynamicScrollBarsViewInternal.h instead of WebDynamicScrollBarsView.h.
7:08 PM Changeset in webkit [78673] by jhoneycutt@apple.com
  • 2 edits in trunk/Source/WebKit2

Copy over new WebKit 2 header.

Rubber-stamped by Alice Liu.

  • win/WebKit2Generated.make:
7:03 PM Changeset in webkit [78672] by sfalken@apple.com
  • 2 edits in trunk/LayoutTests

Skipped crashing test on Windows.
Tracked by https://bugs.webkit.org/show_bug.cgi?id=54519

  • platform/win/Skipped: Skip fast/xmlhttprequest/xmlhttprequest-responsetype-arraybuffer.html
6:12 PM Changeset in webkit [78671] by crogers@google.com
  • 2 edits in trunk/Source/WebCore

2011-02-15 Chris Rogers <crogers@google.com>

Reviewed by Kenneth Russell.

Fix race condition in JavaScriptAudioNode
https://bugs.webkit.org/show_bug.cgi?id=54518

No new tests since audio API is not yet implemented.

  • webaudio/JavaScriptAudioNode.cpp: (WebCore::JavaScriptAudioNode::process):
6:06 PM Changeset in webkit [78670] by mrowe@apple.com
  • 2 edits in branches/safari-534.20-branch/Source/WebKit2

Merge r78578.

6:06 PM Changeset in webkit [78669] by mrowe@apple.com
  • 2 edits in branches/safari-534.20-branch/Source/WebKit2

Merge r78609.

6:06 PM Changeset in webkit [78668] by mrowe@apple.com
  • 3 edits in branches/safari-534.20-branch/Source/WebKit2

Merge r78600.

6:02 PM Changeset in webkit [78667] by abarth@webkit.org
  • 1 edit
    4 copies in branches/chromium/648

Merge 77724 - 2011-02-04 Hironori Bono <hbono@chromium.org>

Reviewed by Adam Barth.

[chromium] JPEG corruption
https://bugs.webkit.org/show_bug.cgi?id=53250

This change adds a new script test that we can render a CMYK JPEG with a
color profile correctly, i.e. we can render it without color corruption.

  • fast/images/cmyk-jpeg-with-color-profile-expected.txt: Added.
  • fast/images/cmyk-jpeg-with-color-profile.html: Added.
  • fast/images/resources/cmyk-jpeg.jpg: Added.
  • fast/images/script-tests/cmyk-jpeg-with-color-profile.js: Added. (image.onload):

2011-02-04 Hironori Bono <hbono@chromium.org>

Reviewed by Adam Barth.

[chromium] JPEG corruption
https://bugs.webkit.org/show_bug.cgi?id=53250

Same as gray-scale JPEGs, we convert the colors of CMYK JPEGs with color
profiles from CMYK to RGB twice and it causes color corruption. This
change suppresses the color profiles for CMYK JPEGs same as gray-scale
ones.

Test: fast/images/cmyk-jpeg-with-color-profile.html

  • platform/image-decoders/jpeg/JPEGImageDecoder.cpp: (WebCore::JPEGImageReader::decode):

TBR=commit-queue@webkit.org

6:01 PM Changeset in webkit [78666] by mrowe@apple.com
  • 3 edits in branches/safari-534.20-branch/Source/WebKit2

Merge r78513.

5:57 PM Changeset in webkit [78665] by mrowe@apple.com
  • 2 edits in branches/safari-534.20-branch/Source/WebKit2

Merge r78523.

5:56 PM Changeset in webkit [78664] by pkasting@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed, Chromium test expectations update.

Remove line with dupe expectations.

  • platform/chromium/test_expectations.txt:
5:55 PM Changeset in webkit [78663] by andersca@apple.com
  • 11 edits in trunk/Source/WebKit2

2011-02-15 Anders Carlsson <andersca@apple.com>

Reviewed by Darin Adler.

Implement WKPluginSiteDataManagerClearSiteData
https://bugs.webkit.org/show_bug.cgi?id=54512
<rdar://problem/8689312>

  • UIProcess/API/C/WKPluginSiteDataManager.cpp: (WKPluginSiteDataManagerGetTypeID): Implement this.

(toNPClearSiteDataFlags):
Convert WKClearSiteDataFlags to NPP_ClearSiteData flags.


(WKPluginSiteDataManagerClearSiteData):
(WKPluginSiteDataManagerClearAllSiteData):
Call through to WebPluginSiteDataManager::clearSiteData.

  • UIProcess/API/C/WKPluginSiteDataManager.h: Change the clear functions to take a completion callback.
  • UIProcess/Plugins/WebPluginSiteDataManager.cpp: (WebKit::WebPluginSiteDataManager::clearSiteData): Ask the plug-in info store for all plug-in paths and send a ClearPluginSiteData message to the web process.


(WebKit::WebPluginSiteDataManager::didClearSiteData):
call the callback.

  • UIProcess/WebContext.cpp: (WebKit::WebContext::didClearPluginSiteData): Call through to the plug-in site data manager.
  • UIProcess/WebContext.messages.in: Add ClearPluginSiteData message.
  • WebProcess/WebProcess.cpp: (WebKit::WebProcess::clearPluginSiteData): Iterate over all the plug-in paths, creating plug-in modules and calling clearSiteData for each one.
  • WebProcess/WebProcess.h:
  • WebProcess/WebProcess.messages.in: Add DidClearPluginSiteData message.
5:53 PM Changeset in webkit [78662] by mrowe@apple.com
  • 2 edits in branches/safari-534.20-branch/Source/WebCore

Merge r78517.

5:50 PM Changeset in webkit [78661] by mrowe@apple.com
  • 4 edits in branches/safari-534.20-branch/Source/WebCore

Merge r78630.

5:46 PM Changeset in webkit [78660] by mrowe@apple.com
  • 8 edits in branches/safari-534.20-branch/Source/WebCore

Merge r78612.

5:44 PM Changeset in webkit [78659] by mrowe@apple.com
  • 3 edits in branches/safari-534.20-branch/Source/WebKit2

Merge r78589.

5:42 PM Changeset in webkit [78658] by mrowe@apple.com
  • 13 edits in branches/safari-534.20-branch

Merge r78588.

5:37 PM Changeset in webkit [78657] by mihaip@chromium.org
  • 3 edits in trunk/LayoutTests

2011-02-15 Mihai Parparita <mihaip@chromium.org>

Unreviewed chromium-gpu-linux rebaseline of
compositing/geometry/vertical-scroll-composited.html.

  • platform/chromium-gpu-linux/compositing/geometry/vertical-scroll-composited-expected.checksum:
  • platform/chromium-gpu-linux/compositing/geometry/vertical-scroll-composited-expected.png:
5:36 PM Changeset in webkit [78656] by pkasting@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed, Chromium test expectations update.

  • platform/chromium/test_expectations.txt:
5:24 PM Changeset in webkit [78655] by jorlow@chromium.org
  • 16 edits
    2 adds in trunk

2011-02-10 Jeremy Orlow <jorlow@chromium.org>

Reviewed by Nate Chapin.

Throwing in an IndexedDB error or success event should lead to the transaction aborting
https://bugs.webkit.org/show_bug.cgi?id=54249

  • storage/indexeddb/exception-in-event-aborts-expected.txt: Added.
  • storage/indexeddb/exception-in-event-aborts.html: Added.

tests new feature

  • storage/indexeddb/queued-commands-expected.txt:
  • storage/indexeddb/queued-commands.html:

cleaned up (while debuggign something else)

  • storage/indexeddb/request-event-propagation-expected.txt:
  • storage/indexeddb/request-event-propagation.html:

a few additional tests + cleanup

  • storage/indexeddb/transaction-event-propagation-expected.txt:
  • storage/indexeddb/transaction-event-propagation.html:

a few additional tests + cleanup

2011-02-10 Jeremy Orlow <jorlow@chromium.org>

Reviewed by Nate Chapin.

Throwing in an IndexedDB error or success event should lead to the transaction aborting
https://bugs.webkit.org/show_bug.cgi?id=54249

When an exception is thrown but not handled within an IDBRequests success/error event,
we should abort the transaction.

Test: storage/indexeddb/exception-in-event-aborts.html

  • bindings/js/JSEventListener.cpp: (WebCore::JSEventListener::handleEvent):
  • bindings/js/JSEventTarget.cpp: (WebCore::toJS):
  • bindings/v8/V8AbstractEventListener.cpp: (WebCore::V8AbstractEventListener::invokeEventHandler):
  • dom/EventTarget.cpp: (WebCore::EventTarget::uncaughtExceptionInEventHandler):
  • dom/EventTarget.h:
  • storage/IDBRequest.cpp: (WebCore::IDBRequest::uncaughtExceptionInEventHandler):
  • storage/IDBRequest.h:
5:22 PM Changeset in webkit [78654] by jhoneycutt@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Windows build fix for
https://bugs.webkit.org/show_bug.cgi?id=54415

Remove deleted files.

5:19 PM Changeset in webkit [78653] by mrowe@apple.com
  • 5 edits in branches/safari-534.20-branch/Source

Versioning.

5:15 PM Changeset in webkit [78652] by commit-queue@webkit.org
  • 6 edits in trunk/Source/WebCore

2011-02-15 Ian Henderson <ianh@apple.com>

Reviewed by Darin Adler.

To determine image properties, CG allocates memory which isn't included in CachedImage's decoded size
https://bugs.webkit.org/show_bug.cgi?id=53281

When determining properties of an image (such as its size), CG ends up
decoding part of the image. This patch adds accounting for this extra
decoded size so a cache prune can clean up the allocations.

  • platform/graphics/BitmapImage.cpp: (WebCore::BitmapImage::BitmapImage): (WebCore::BitmapImage::destroyMetadataAndNotify): Clearing the source destroys the extra decoded data. Report this change in decoded size to the image observer. (WebCore::BitmapImage::cacheFrame): The first decoded frame subsumes the data decoded when determining image properties, so we subtract it out here. (WebCore::BitmapImage::didDecodeProperties): Reports the extra decoded size to the image's observer. (WebCore::BitmapImage::size): (WebCore::BitmapImage::currentFrameSize): (WebCore::BitmapImage::getHotSpot): (WebCore::BitmapImage::frameCount): (WebCore::BitmapImage::isSizeAvailable): (WebCore::BitmapImage::repetitionCount):
  • platform/graphics/BitmapImage.h:
  • platform/graphics/ImageSource.cpp: (WebCore::ImageSource::bytesDecodedToDetermineProperties): The default value is 0 to match the current behavior on other platforms.
  • platform/graphics/ImageSource.h:
  • platform/graphics/cg/ImageSourceCG.cpp: (WebCore::ImageSource::bytesDecodedToDetermineProperties): Add a constant value for bytesDecodedToDetermineProperties(), measured by tracing malloc/calloc calls while asking an image source for its properties.
5:11 PM Changeset in webkit [78651] by sfalken@apple.com
  • 1 edit
    5 adds in trunk/LayoutTests

Windows-specific results for tests added in r78396.
https://bugs.webkit.org/show_bug.cgi?id=54506

  • platform/win/fast/inline: Added.
  • platform/win/fast/inline/inline-box-background-expected.txt: Added.
  • platform/win/fast/inline/inline-box-background-long-image-expected.txt: Added.
  • platform/win/fast/inline/inline-box-background-repeat-x-expected.txt: Added.
  • platform/win/fast/inline/inline-box-background-repeat-y-expected.txt: Added.
5:05 PM Changeset in webkit [78650] by mrowe@apple.com
  • 1 copy in branches/safari-534.20-branch

New branch.

4:58 PM Changeset in webkit [78649] by mihaip@chromium.org
  • 2 edits
    77 adds in trunk/LayoutTests

2011-02-15 Mihai Parparita <mihaip@chromium.org>

Unreviewed chromium-gpu rebaseline. Rebaseline tests that were unskipped
after r78619 as well as some lingering Mac rebaselines.

  • platform/chromium-gpu-linux/compositing/color-matching/image-color-matching-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/color-matching/image-color-matching-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/color-matching/image-color-matching-expected.txt: Added.
  • platform/chromium-gpu-linux/compositing/geometry/abs-position-inside-opacity-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/geometry/abs-position-inside-opacity-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/geometry/abs-position-inside-opacity-expected.txt: Added.
  • platform/chromium-gpu-linux/compositing/masks/direct-image-mask-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/masks/direct-image-mask-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/masks/direct-image-mask-expected.txt: Added.
  • platform/chromium-gpu-linux/compositing/overflow/ancestor-overflow-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/overflow/ancestor-overflow-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/overflow/ancestor-overflow-expected.txt: Added.
  • platform/chromium-gpu-linux/compositing/repaint/composited-document-element-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/repaint/composited-document-element-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/repaint/composited-document-element-expected.txt: Added.
  • platform/chromium-gpu-linux/compositing/shadows/shadow-drawing-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/shadows/shadow-drawing-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/shadows/shadow-drawing-expected.txt: Added.
  • platform/chromium-gpu-mac/compositing/color-matching/image-color-matching-expected.checksum: Added.
  • platform/chromium-gpu-mac/compositing/color-matching/image-color-matching-expected.png: Added.
  • platform/chromium-gpu-mac/compositing/geometry/abs-position-inside-opacity-expected.checksum: Added.
  • platform/chromium-gpu-mac/compositing/geometry/abs-position-inside-opacity-expected.png: Added.
  • platform/chromium-gpu-mac/compositing/masks/direct-image-mask-expected.checksum: Added.
  • platform/chromium-gpu-mac/compositing/masks/direct-image-mask-expected.png: Added.
  • platform/chromium-gpu-mac/compositing/overflow/overflow-scroll-expected.checksum: Added.
  • platform/chromium-gpu-mac/compositing/overflow/overflow-scroll-expected.png: Added.
  • platform/chromium-gpu-mac/compositing/repaint/composited-document-element-expected.checksum: Added.
  • platform/chromium-gpu-mac/compositing/repaint/composited-document-element-expected.png: Added.
  • platform/chromium-gpu-mac/compositing/repaint/opacity-between-absolute2-expected.checksum: Added.
  • platform/chromium-gpu-mac/compositing/repaint/opacity-between-absolute2-expected.png: Added.
  • platform/chromium-gpu-mac/compositing/shadows/shadow-drawing-expected.checksum: Added.
  • platform/chromium-gpu-mac/compositing/shadows/shadow-drawing-expected.png: Added.
  • platform/chromium-gpu-mac/compositing/text-on-large-layer-expected.checksum: Added.
  • platform/chromium-gpu-mac/compositing/text-on-large-layer-expected.png: Added.
  • platform/chromium-gpu-mac/compositing/tiling/constrained-layer-size-expected.checksum: Added.
  • platform/chromium-gpu-mac/compositing/tiling/constrained-layer-size-expected.png: Added.
  • platform/chromium-gpu-mac/compositing/transitions/scale-transition-no-start-expected.checksum: Added.
  • platform/chromium-gpu-mac/compositing/transitions/scale-transition-no-start-expected.png: Added.
  • platform/chromium-gpu-mac/compositing/z-order/negative-z-index-expected.checksum: Added.
  • platform/chromium-gpu-mac/compositing/z-order/negative-z-index-expected.png: Added.
  • platform/chromium-gpu-win/compositing/color-matching/image-color-matching-expected.checksum: Added.
  • platform/chromium-gpu-win/compositing/color-matching/image-color-matching-expected.png: Added.
  • platform/chromium-gpu-win/compositing/color-matching/image-color-matching-expected.txt: Added.
  • platform/chromium-gpu-win/compositing/geometry/abs-position-inside-opacity-expected.checksum: Added.
  • platform/chromium-gpu-win/compositing/geometry/abs-position-inside-opacity-expected.png: Added.
  • platform/chromium-gpu-win/compositing/geometry/abs-position-inside-opacity-expected.txt: Added.
  • platform/chromium-gpu-win/compositing/masks/direct-image-mask-expected.checksum: Added.
  • platform/chromium-gpu-win/compositing/masks/direct-image-mask-expected.png: Added.
  • platform/chromium-gpu-win/compositing/masks/direct-image-mask-expected.txt: Added.
  • platform/chromium-gpu-win/compositing/overflow/ancestor-overflow-expected.checksum: Added.
  • platform/chromium-gpu-win/compositing/overflow/ancestor-overflow-expected.png: Added.
  • platform/chromium-gpu-win/compositing/overflow/ancestor-overflow-expected.txt: Added.
  • platform/chromium-gpu-win/compositing/repaint/composited-document-element-expected.checksum: Added.
  • platform/chromium-gpu-win/compositing/repaint/composited-document-element-expected.png: Added.
  • platform/chromium-gpu-win/compositing/repaint/composited-document-element-expected.txt: Added.
  • platform/chromium-gpu-win/compositing/shadows/shadow-drawing-expected.checksum: Added.
  • platform/chromium-gpu-win/compositing/shadows/shadow-drawing-expected.png: Added.
  • platform/chromium-gpu-win/compositing/shadows/shadow-drawing-expected.txt: Added.
  • platform/chromium-gpu-win/compositing/tiling/constrained-layer-size-expected.checksum: Added.
  • platform/chromium-gpu-win/compositing/tiling/constrained-layer-size-expected.png: Added.
  • platform/chromium-gpu-win/compositing/z-order/negative-z-index-expected.checksum: Added.
  • platform/chromium-gpu-win/compositing/z-order/negative-z-index-expected.png: Added.
  • platform/chromium/test_expectations.txt:
4:53 PM Changeset in webkit [78648] by jamesr@google.com
  • 9 edits
    4 adds in trunk

2011-02-15 James Robinson <jamesr@chromium.org>

Reviewed by Alexey Proskuryakov.

requestAnimationFrame callbacks should not fire within a modal dialog
https://bugs.webkit.org/show_bug.cgi?id=53188

Tests that requestAnimationFrame callbacks are suspended while a modal
dialog is showing.

  • fast/animation/request-animation-frame-during-modal-expected.txt: Added.
  • fast/animation/request-animation-frame-during-modal.html: Added.

2011-02-15 James Robinson <jamesr@chromium.org>

Reviewed by Alexey Proskuryakov.

requestAnimationFrame callbacks should not fire within a modal dialog
https://bugs.webkit.org/show_bug.cgi?id=53188

requestAnimationFrame callbacks shouldn't fire while a modal dialog is up (like a window.alert()).
This matches Firefox and other async APIs. This patch moves the callback servicing into its own
controller class which receives notifications on suspend/resume.

Test: fast/animation/request-animation-frame-during-modal.html

  • WebCore.gypi:
  • bindings/js/ScriptDebugServer.cpp: (WebCore::ScriptDebugServer::setJavaScriptPaused):
  • dom/Document.cpp: (WebCore::Document::Document): (WebCore::Document::suspendScriptedAnimationControllerCallbacks): (WebCore::Document::resumeScriptedAnimationControllerCallbacks): (WebCore::Document::webkitRequestAnimationFrame): (WebCore::Document::webkitCancelRequestAnimationFrame): (WebCore::Document::serviceScriptedAnimations):
  • dom/Document.h:
  • dom/ScriptExecutionContext.h: (WebCore::ScriptExecutionContext::suspendScriptedAnimationControllerCallbacks): (WebCore::ScriptExecutionContext::resumeScriptedAnimationControllerCallbacks):
  • dom/ScriptedAnimationController.cpp: Added. (WebCore::ScriptedAnimationController::ScriptedAnimationController): (WebCore::ScriptedAnimationController::suspend): (WebCore::ScriptedAnimationController::resume): (WebCore::ScriptedAnimationController::registerCallback): (WebCore::ScriptedAnimationController::cancelCallback): (WebCore::ScriptedAnimationController::serviceScriptedAnimations):
  • dom/ScriptedAnimationController.h: Added. (WebCore::ScriptedAnimationController::create):
  • history/CachedFrame.cpp: (WebCore::CachedFrameBase::restore): (WebCore::CachedFrame::CachedFrame):
  • page/PageGroupLoadDeferrer.cpp: (WebCore::PageGroupLoadDeferrer::PageGroupLoadDeferrer): (WebCore::PageGroupLoadDeferrer::~PageGroupLoadDeferrer):
4:49 PM Changeset in webkit [78647] by andersca@apple.com
  • 14 edits
    2 adds in trunk/Source/WebKit2

2011-02-15 Anders Carlsson <andersca@apple.com>

Reviewed by Jon Honeycutt.

Implement WKPluginSiteDataManagerGetSitesWithData
https://bugs.webkit.org/show_bug.cgi?id=54510
<rdar://problem/8689312>

  • UIProcess/API/C/WKContext.cpp: (WKContextGetPluginSiteDataManager): Call WebContext::pluginSiteDataManager.


  • UIProcess/API/C/WKPluginSiteDataManager.cpp: (WKPluginSiteDataManagerGetSitesWithData): Call WebPluginSiteDataManager::getSitesWithData.
  • UIProcess/Plugins/PluginInfoStore.cpp: (WebKit::PluginInfoStore::getPluginPaths):
  • UIProcess/Plugins/PluginInfoStore.h: Populate the paths argument with the paths of all plug-ins.


  • UIProcess/Plugins/WebPluginSiteDataManager.cpp: Added. (WebKit::WebPluginSiteDataManager::invalidate): Invalidate the callbacks map.

(WebKit::WebPluginSiteDataManager::getSitesWithData):
Ask the plug-in info store for all plug-in paths and send a
GetSitesWithPluginData message to the web process.

(WebKit::WebPluginSiteDataManager::didGetSitesWithPluginData):
Call the callback.

  • UIProcess/Plugins/WebPluginSiteDataManager.h: Added. (WebKit::WebPluginSiteDataManager::clearContext): Clear the context.
  • UIProcess/WebContext.cpp: (WebKit::WebContext::WebContext): Initialize m_pluginSiteDataManager.

(WebKit::WebContext::~WebContext):
Invalidate the plug-in site data manager and clear its context.

(WebKit::WebContext::processDidClose):
Invalidate the plug-in site data manager.


(WebKit::WebContext::didGetSitesWithPluginData):
Call through to the plug-in site data manager.

  • UIProcess/WebContext.h:
  • UIProcess/WebContext.messages.in: Add GetSitesWithPluginData message.
  • WebKit2.pro:
  • WebKit2.xcodeproj/project.pbxproj:
  • win/WebKit2.vcproj: Add new files.
  • WebProcess/WebProcess.cpp: (WebKit::WebProcess::getSitesWithPluginData): Iterate over all plug-in paths and get the sites from all plug-ins.
  • WebProcess/WebProcess.h:
  • WebProcess/WebProcess.messages.in: Add DidGetSitesWithPluginData.
4:43 PM Changeset in webkit [78646] by kalman@chromium.org
  • 5 edits
    2 deletes in trunk/LayoutTests

2011-02-15 Benjamin Kalman <kalman@chromium.org>

Reviewed by Darin Adler.

Clean up results for editing/selection/extend-selection-home-end layout test
https://bugs.webkit.org/show_bug.cgi?id=54508

Line up results in columns, remove unused pixel test results from qt.

  • editing/selection/extend-selection-home-end-expected.txt:
  • editing/selection/extend-selection-home-end.html:
  • platform/mac/editing/selection/extend-selection-home-end-expected.txt:
  • platform/qt/editing/selection/extend-selection-home-end-expected.checksum: Removed.
  • platform/qt/editing/selection/extend-selection-home-end-expected.png: Removed.
  • platform/win/editing/selection/extend-selection-home-end-expected.txt:
4:38 PM Changeset in webkit [78645] by jorlow@chromium.org
  • 11 edits in trunk/Source

2011-02-14 Jeremy Orlow <jorlow@chromium.org>

Reviewed by Darin Fisher.

Add initial support for per-origin quotas to IndexedDB
https://bugs.webkit.org/show_bug.cgi?id=54421

Add support for non-persistent per-origin quotas. If one is
specified, it overrides the default.

No tests as this is only exposed via the Chromium webkit API.

  • storage/IDBFactoryBackendImpl.cpp: (WebCore::IDBFactoryBackendImpl::open): (WebCore::IDBFactoryBackendImpl::setQuota):
  • storage/IDBFactoryBackendImpl.h:
  • storage/IDBFactoryBackendInterface.h:

2011-02-14 Jeremy Orlow <jorlow@chromium.org>

Reviewed by Darin Fisher.

Add initial support for per-origin quotas to IndexedDB
https://bugs.webkit.org/show_bug.cgi?id=54421

  • public/WebIDBFactory.h: (WebKit::WebIDBFactory::setQuota):
  • src/AssertMatchingEnums.cpp:
  • src/IDBFactoryBackendProxy.cpp: (WebCore::IDBFactoryBackendProxy::setQuota):
  • src/IDBFactoryBackendProxy.h:
  • src/WebIDBFactoryImpl.cpp: (WebKit::WebIDBFactoryImpl::setQuota):
  • src/WebIDBFactoryImpl.h:
4:36 PM Changeset in webkit [78644] by abarth@webkit.org
  • 3 edits
    3 adds in trunk

2011-02-15 Adam Barth <abarth@webkit.org>

Reviewed by Darin Adler.

XSLT with output method HTML and images crashes in debug mode
https://bugs.webkit.org/show_bug.cgi?id=54462

http://trac.webkit.org/changeset/75577 created Document::setContent but
didn't notice that the code paths combined into Document::setContent
were subtly different. In particular, some of the code paths called
parser->finish() whereas other did not.

The difference is that an explicit call to parser->finish() is required
in the case where there is no frame because explicitClose doesn't call
endIfNotLoadingMainResource if there is no frame. This patch moves
that logic inside explicitClose, which is more natural.

This patch also removes removeAllChildren, which has not effect in this
situation and should never have been added in the first place.

Test: fast/parser/xslt-with-html.xml

  • dom/Document.cpp: (WebCore::Document::setContent): (WebCore::Document::explicitClose):

2011-02-15 Adam Barth <abarth@webkit.org>

Reviewed by Darin Adler.

XSLT with output method HTML and images crashes in debug mode
https://bugs.webkit.org/show_bug.cgi?id=54462

Test that we don't try to prepare to stop twice when pasing HTML
generated from an XSLT.

  • fast/parser/resources/xslt-with-html.xsl: Added.
  • fast/parser/xslt-with-html-expected.txt: Added.
  • fast/parser/xslt-with-html.xml: Added.
4:36 PM Changeset in webkit [78643] by kbr@google.com
  • 2 edits in trunk/Source/WebKit/win

2011-02-15 Kenneth Russell <kbr@google.com>

Unreviewed. Remove whitespace-only change from
http://trac.webkit.org/changeset/78620 (https://bugs.webkit.org/show_bug.cgi?id=54312)
now that the patch has passed the Windows build bots.

  • Interfaces/WebKit.idl:
4:32 PM Changeset in webkit [78642] by Martin Robinson
  • 6 edits in trunk/LayoutTests

2011-02-15 Martin Robinson <mrobinson@igalia.com>

Rebaseline some GTK+ tests which have different results on the bots.
Skip a test which appears to be timing out intermittently.

  • platform/gtk/Skipped: Skip a test which has been timing out.
  • platform/gtk/svg/custom/use-nested-transform-expected.txt:
  • platform/gtk/svg/hixie/perf/001-expected.txt:
  • platform/gtk/svg/hixie/perf/002-expected.txt:
  • platform/gtk/svg/hixie/perf/007-expected.txt:
4:23 PM Changeset in webkit [78641] by Darin Adler
  • 27 edits in trunk/LayoutTests

Autocorrection should respect undo.
https://bugs.webkit.org/show_bug.cgi?id=52221
<rdar://problem/8663399>

Patch by Jia Pu <jpu@apple.com> on 2011-02-15
Reviewed by Darin Adler.

Rebaselined tests affected by code change.

  • platform/mac/editing/spelling/autocorrection-contraction-expected.txt:
  • platform/mac/editing/spelling/autocorrection-delete-expected.txt:
  • platform/mac/editing/spelling/autocorrection-removing-underline-after-paste-expected.txt:
  • platform/mac/editing/spelling/autocorrection-removing-underline-expected.txt:
  • platform/mac/editing/spelling/autocorrection-simple-expected.txt:
  • platform/mac/editing/spelling/delete-autocorrected-word-1-expected.txt:
4:18 PM Changeset in webkit [78640] by andersca@apple.com
  • 2 edits in trunk/Source/WebKit2

Fix Qt build.

  • WebKit2.pro:
4:11 PM Changeset in webkit [78639] by oliver@apple.com
  • 2 edits in trunk/Source/WebCore

2011-02-15 Oliver Hunt <oliver@apple.com>

Fix EFL build for
https://bugs.webkit.org/show_bug.cgi?id=54415

  • CMakeLists.txt:
4:10 PM Changeset in webkit [78638] by andersca@apple.com
  • 2 edits in trunk/Source/WebKit2

Fix Windows build.

  • win/WebKit2.vcproj:
4:04 PM Changeset in webkit [78637] by oliver@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

2011-02-15 Oliver Hunt <oliver@apple.com>

Fix EFL build for
https://bugs.webkit.org/show_bug.cgi?id=54415

  • CMakeLists.txt:
3:59 PM Changeset in webkit [78636] by ddkilzer@apple.com
  • 2 edits in trunk/Source/WebCore

<http://webkit.org/b/54487> Minor header clean up in RenderLayerBacking.cpp

Reviewed by Darin Adler.

  • rendering/RenderLayerBacking.cpp: Remove unused

WebGLRenderingContext.h header, and move GraphicsContext3D.h

into a #if ENABLE(WEBGL)
ENABLE(ACCELERATED_2D_CANVAS)/#endif

block.

3:55 PM Changeset in webkit [78635] by pkasting@chromium.org
  • 2 edits
    2 deletes in trunk/LayoutTests

Unreviewed, Chromium test expectations update.

https://bugs.webkit.org/show_bug.cgi?id=40147
https://bugs.webkit.org/show_bug.cgi?id=48029
https://bugs.webkit.org/show_bug.cgi?id=53740
https://bugs.webkit.org/show_bug.cgi?id=54387
https://bugs.webkit.org/show_bug.cgi?id=54418
https://bugs.webkit.org/show_bug.cgi?id=54499
Remove a couple erroneously-added baselines, unmark some now-passing
tests, bug numbers, etc.

  • platform/chromium-linux/http/tests/xmlhttprequest: Removed.
  • platform/chromium-linux/http/tests/xmlhttprequest/cache-override-expected.txt: Removed.
  • platform/chromium-win/fast/gradients/css3-repeating-end-fill-expected.txt: Removed.
  • platform/chromium/test_expectations.txt:
3:54 PM Changeset in webkit [78634] by oliver@apple.com
  • 89 edits
    15 adds
    2 deletes in trunk/Source

2011-02-14 Oliver Hunt <oliver@apple.com>

Reviewed by Gavin Barraclough and Geoff Garen.

Refactor handles and weak pointers to become nicer and more automatic
https://bugs.webkit.org/show_bug.cgi?id=54415

Move to a true handle based mechanism for GC value protection. This
also allows us to switch to a more sensible behaviour for weak pointers
in which weak pointers are automatically updated.

This allows us to remove the old (and convoluted) that required all
objects that may be held by a weak reference to be aware of the reference
and manually clear them in their destructors.

This also adds a few new data types to JSC that we use to efficiently
allocate and return the underlying handle storage.

This patch is largely renaming and removing now unnecessary destructors
from objects.

New Global handle type used to keep gc objects live, even if they're not
marked.

(JSC::Global::Global):
(JSC::Global::~Global):
(JSC::Global::set):

We can only assign directly to a global from another global.
In all other cases we need the JSGlobalData to be provided
explicitly so we use a set function.

(JSC::Global::operator=):
(JSC::Global::clear):
(JSC::Global::isHashTableDeletedValue):
(JSC::Global::internalSet):

  • collector/handles/Handle.h: Added.

Root "Handle" type used for immutable handles and to provide the basic
APIs needed for pointer-like behaviour.

(JSC::HandleBase::operator!):
(JSC::HandleBase::operator UnspecifiedBoolType*):
(JSC::HandleBase::isEmpty):
(JSC::HandleBase::HandleBase):
(JSC::HandleBase::slot):
(JSC::HandleBase::invalidate):
(JSC::HandleBase::setSlot):
(JSC::HandleTypes::getFromSlot):
(JSC::HandleTypes::toJSValue):
(JSC::HandleTypes::validateUpcast):
(JSC::HandleConverter::operator->):
(JSC::HandleConverter::operator*):
(JSC::Handle::Handle):
(JSC::Handle::get):
(JSC::Handle::wrapSlot):
(JSC::operator==):
(JSC::operator!=):

  • collector/handles/HandleHeap.cpp: Added.

New heap for global handles.

(JSC::HandleHeap::HandleHeap):
(JSC::HandleHeap::grow):
(JSC::HandleHeap::markStrongHandles):
(JSC::HandleHeap::updateAfterMark):
(JSC::HandleHeap::clearWeakPointers):
(JSC::HandleHeap::writeBarrier):

  • collector/handles/HandleHeap.h: Added. (JSC::HandleHeap::heapFor): (JSC::HandleHeap::toHandle): (JSC::HandleHeap::toNode): (JSC::HandleHeap::allocate): (JSC::HandleHeap::deallocate): (JSC::HandleHeap::makeWeak):

Convert a hard handle into weak handle that does not
protect the object it points to.

(JSC::HandleHeap::makeSelfDestroying):

Converts a handle to a weak handle that will be returned
to the free list when the referenced object dies.

(JSC::HandleHeap::Node::Node):
(JSC::HandleHeap::Node::slot):
(JSC::HandleHeap::Node::handleHeap):
(JSC::HandleHeap::Node::setFinalizer):
(JSC::HandleHeap::Node::makeWeak):
(JSC::HandleHeap::Node::isWeak):
(JSC::HandleHeap::Node::makeSelfDestroying):
(JSC::HandleHeap::Node::isSelfDestroying):
(JSC::HandleHeap::Node::finalizer):
(JSC::HandleHeap::Node::setPrev):
(JSC::HandleHeap::Node::prev):
(JSC::HandleHeap::Node::setNext):
(JSC::HandleHeap::Node::next):

  • interpreter/Interpreter.cpp: (JSC::Interpreter::Interpreter):
  • interpreter/Interpreter.h:
  • interpreter/RegisterFile.cpp: (JSC::RegisterFile::globalObjectCollected):
  • interpreter/RegisterFile.h: (JSC::RegisterFile::RegisterFile):
  • runtime/GCHandle.cpp: Removed.
  • runtime/GCHandle.h: Removed.
  • runtime/Heap.cpp: (JSC::Heap::Heap): (JSC::Heap::destroy): (JSC::Heap::markRoots):
  • runtime/Heap.h: (JSC::Heap::allocateGlobalHandle): (JSC::Heap::reportExtraMemoryCost):
  • runtime/JSGlobalData.cpp: (JSC::JSGlobalData::JSGlobalData):
  • runtime/JSGlobalData.h: (JSC::JSGlobalData::allocateGlobalHandle):
  • runtime/JSGlobalObject.cpp: (JSC::JSGlobalObject::~JSGlobalObject):
  • runtime/JSPropertyNameIterator.cpp: (JSC::JSPropertyNameIterator::create): (JSC::JSPropertyNameIterator::~JSPropertyNameIterator):
  • runtime/JSPropertyNameIterator.h: (JSC::JSPropertyNameIterator::createStructure): (JSC::Structure::setEnumerationCache): (JSC::Structure::clearEnumerationCache):
  • runtime/Protect.h:
  • runtime/Structure.cpp: (JSC::Structure::~Structure):
  • runtime/Structure.h:
  • runtime/WeakGCPtr.h: (JSC::WeakGCPtrBase::get): (JSC::WeakGCPtrBase::clear): (JSC::WeakGCPtrBase::operator!): (JSC::WeakGCPtrBase::operator UnspecifiedBoolType*): (JSC::WeakGCPtrBase::~WeakGCPtrBase): (JSC::WeakGCPtrBase::WeakGCPtrBase): (JSC::WeakGCPtrBase::internalSet): (JSC::LazyWeakGCPtr::LazyWeakGCPtr): (JSC::LazyWeakGCPtr::set): (JSC::WeakGCPtr::WeakGCPtr): (JSC::WeakGCPtr::operator=):
  • runtime/WriteBarrier.h:
  • wtf/BlockStack.h: Added. (WTF::::BlockStack): (WTF::::~BlockStack): (WTF::::blocks): (WTF::::grow): (WTF::::shrink):
  • wtf/SentinelLinkedList.h: Added. (WTF::::SentinelLinkedList): (WTF::::begin): (WTF::::end): (WTF::::push): (WTF::::remove):
  • wtf/SinglyLinkedList.h: Added. (WTF::::SinglyLinkedList): (WTF::::isEmpty): (WTF::::push): (WTF::::pop):

2011-02-14 Oliver Hunt <oliver@apple.com>

Reviewed by Gavin Barraclough and Geoff Garen.

Refactor handles and weak pointers to become nicer and more automatic
https://bugs.webkit.org/show_bug.cgi?id=54415

Update to use new Global<> type

  • JSRun.cpp: (JSRun::JSRun): (JSRun::GlobalObject):
  • JSRun.h:
  • JSValueWrapper.cpp: (JSValueWrapper::JSValueWrapper):
  • JSValueWrapper.h:

2011-02-14 Oliver Hunt <oliver@apple.com>

Reviewed by Gavin Barraclough and Geoff Garen.

Refactor handles and weak pointers to become nicer and more automatic
https://bugs.webkit.org/show_bug.cgi?id=54415

Update WebCore to use the new Global<> type rather than ProtectedJSValue
and gc[Un]Protect. Also update to use new WeakGCPtr APIs, and remove now
unnecessary destructors.

  • ForwardingHeaders/collector/handles/Global.h: Added.
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.vcproj/copyForwardingHeaders.cmd:
  • bindings/js/JSCallbackData.h: (WebCore::JSCallbackData::JSCallbackData):
  • bindings/js/JSCustomVoidCallback.h:
  • bindings/js/JSDOMBinding.cpp: (WebCore::forgetDOMNode): (WebCore::cacheDOMNodeWrapper):
  • bindings/js/JSDOMWindowBase.h:
  • bindings/js/JSDOMWindowShell.cpp: (WebCore::JSDOMWindowShell::setWindow):
  • bindings/js/JSDataGridDataSource.h:
  • bindings/js/JSEventListener.cpp: (WebCore::JSEventListener::JSEventListener):
  • bindings/js/JSEventListener.h: (WebCore::JSEventListener::setWrapper):
  • bindings/js/JSLazyEventListener.cpp: (WebCore::JSLazyEventListener::initializeJSFunction):
  • bindings/js/ScheduledAction.cpp: (WebCore::ScheduledAction::ScheduledAction): (WebCore::ScheduledAction::executeFunctionInContext):
  • bindings/js/ScheduledAction.h: (WebCore::ScheduledAction::ScheduledAction):
  • bindings/js/ScriptCachedFrameData.cpp: (WebCore::ScriptCachedFrameData::ScriptCachedFrameData): (WebCore::ScriptCachedFrameData::restore):
  • bindings/js/ScriptCachedFrameData.h:
  • bindings/js/ScriptCallStackFactory.cpp: (WebCore::createScriptArguments):
  • bindings/js/ScriptController.cpp: (WebCore::ScriptController::createWindowShell): (WebCore::ScriptController::evaluateInWorld): (WebCore::ScriptController::clearWindowShell): (WebCore::ScriptController::attachDebugger):
  • bindings/js/ScriptController.h:
  • bindings/js/ScriptFunctionCall.cpp: (WebCore::ScriptFunctionCall::call): (WebCore::ScriptCallback::call):
  • bindings/js/ScriptObject.cpp: (WebCore::ScriptObject::ScriptObject):
  • bindings/js/ScriptObject.h:
  • bindings/js/ScriptState.cpp: (WebCore::ScriptStateProtectedPtr::ScriptStateProtectedPtr): (WebCore::ScriptStateProtectedPtr::get):
  • bindings/js/ScriptState.h:
  • bindings/js/ScriptValue.cpp: (WebCore::ScriptValue::isFunction): (WebCore::ScriptValue::deserialize):
  • bindings/js/ScriptValue.h: (WebCore::ScriptValue::ScriptValue): (WebCore::ScriptValue::hasNoValue):
  • bindings/js/ScriptWrappable.h: (WebCore::ScriptWrappable::ScriptWrappable): (WebCore::ScriptWrappable::setWrapper):
  • bindings/js/WorkerScriptController.cpp: (WebCore::WorkerScriptController::WorkerScriptController): (WebCore::WorkerScriptController::~WorkerScriptController): (WebCore::WorkerScriptController::initScript): (WebCore::WorkerScriptController::evaluate):
  • bindings/js/WorkerScriptController.h: (WebCore::WorkerScriptController::workerContextWrapper):
  • bindings/scripts/CodeGeneratorJS.pm:
  • bridge/NP_jsobject.cpp: (_NPN_InvokeDefault): (_NPN_Invoke): (_NPN_Evaluate): (_NPN_Construct):
  • bridge/jsc/BridgeJSC.cpp: (JSC::Bindings::Instance::Instance): (JSC::Bindings::Instance::~Instance): (JSC::Bindings::Instance::willDestroyRuntimeObject): (JSC::Bindings::Instance::willInvalidateRuntimeObject):
  • bridge/jsc/BridgeJSC.h:
  • bridge/runtime_object.cpp: (JSC::Bindings::RuntimeObject::invalidate):
  • bridge/runtime_root.cpp: (JSC::Bindings::RootObject::RootObject): (JSC::Bindings::RootObject::invalidate): (JSC::Bindings::RootObject::globalObject): (JSC::Bindings::RootObject::updateGlobalObject):
  • bridge/runtime_root.h:
  • dom/EventListener.h:
  • dom/EventTarget.h: (WebCore::EventTarget::markJSEventListeners):
  • xml/XMLHttpRequest.cpp:

Qt bindings courtesy of Csaba Osztrogonác

  • bridge/qt/qt_runtime.cpp: (JSC::Bindings::QtRuntimeConnectionMethod::call): (JSC::Bindings::QtConnectionObject::QtConnectionObject): (JSC::Bindings::QtConnectionObject::execute): (JSC::Bindings::QtConnectionObject::match):
  • bridge/qt/qt_runtime.h:

2011-02-14 Oliver Hunt <oliver@apple.com>

Reviewed by Gavin Barraclough and Geoff Garen.

Refactor handles and weak pointers to become nicer and more automatic
https://bugs.webkit.org/show_bug.cgi?id=54415

Update to use Global<> instead of ProtectedPtr, and refactored slightly
to get global data to places it's needed for when we're assigning to
Global<>s

  • ForwardingHeaders/collector/handles/Global.h: Added.
  • Plugins/Hosted/NetscapePluginInstanceProxy.h:
  • Plugins/Hosted/NetscapePluginInstanceProxy.mm: (WebKit::NetscapePluginInstanceProxy::LocalObjectMap::get): (WebKit::NetscapePluginInstanceProxy::LocalObjectMap::idForObject): (WebKit::NetscapePluginInstanceProxy::LocalObjectMap::forget): (WebKit::NetscapePluginInstanceProxy::getWindowNPObject): (WebKit::NetscapePluginInstanceProxy::getPluginElementNPObject): (WebKit::NetscapePluginInstanceProxy::evaluate): (WebKit::NetscapePluginInstanceProxy::invoke): (WebKit::NetscapePluginInstanceProxy::invokeDefault): (WebKit::NetscapePluginInstanceProxy::construct): (WebKit::NetscapePluginInstanceProxy::addValueToArray):
  • WebView/WebScriptDebugger.h:
  • WebView/WebScriptDebugger.mm: (WebScriptDebugger::WebScriptDebugger):

2011-02-14 Oliver Hunt <oliver@apple.com>

Reviewed by Gavin Barraclough and Geoff Garen.

Refactor handles and weak pointers to become nicer and more automatic
https://bugs.webkit.org/show_bug.cgi?id=54415

Update code to new Global<> API, and refactor to get global data to
necessary points.

  • WebProcess/Plugins/Netscape/NPJSObject.cpp: (WebKit::NPJSObject::create): (WebKit::NPJSObject::NPJSObject): (WebKit::NPJSObject::initialize): (WebKit::NPJSObject::invokeDefault): (WebKit::NPJSObject::construct): (WebKit::NPJSObject::invoke):
  • WebProcess/Plugins/Netscape/NPJSObject.h:
  • WebProcess/Plugins/Netscape/NPRuntimeObjectMap.cpp: (WebKit::NPRuntimeObjectMap::getOrCreateNPObject): (WebKit::NPRuntimeObjectMap::convertJSValueToNPVariant): (WebKit::NPRuntimeObjectMap::evaluate):
  • WebProcess/Plugins/Netscape/NPRuntimeObjectMap.h:
  • WebProcess/Plugins/PluginView.cpp: (WebKit::PluginView::windowScriptNPObject): (WebKit::PluginView::pluginElementNPObject):
3:51 PM Changeset in webkit [78633] by andersca@apple.com
  • 9 edits
    2 adds in trunk/Source/WebKit2

2011-02-15 Anders Carlsson <andersca@apple.com>

Reviewed by Jon Honeycutt.

Add stubbed out WKPluginSiteDataManagerRef API
https://bugs.webkit.org/show_bug.cgi?id=54504

  • Shared/API/c/WKBase.h:
  • Shared/APIObject.h:
  • UIProcess/API/C/WKAPICast.h:
  • UIProcess/API/C/WKContext.cpp: (WKContextGetPluginSiteDataManager):
  • UIProcess/API/C/WKContext.h:
  • UIProcess/API/C/WKPluginSiteDataManager.cpp: Added. (WKPluginSiteDataManagerGetTypeID): (WKPluginSiteDataManagerGetSitesWithData): (WKPluginSiteDataManagerClearSiteData): (WKPluginSiteDataManagerClearAllSiteData):
  • UIProcess/API/C/WKPluginSiteDataManager.h: Added.
  • WebKit2.pro:
  • WebKit2.xcodeproj/project.pbxproj:
  • win/WebKit2.vcproj:
3:44 PM Changeset in webkit [78632] by Darin Adler
  • 26 edits
    5 adds in trunk/Source

2011-02-15 Jia Pu <jpu@apple.com>

Reviewed by Darin Adler.

Autocorrection should respect undo.
https://bugs.webkit.org/show_bug.cgi?id=52221
<rdar://problem/8663399>

Please see WebCore/ChangeLog for detailed description.

  • WebCoreSupport/WebEditorClient.cpp: (WebFrameImpl::replaceSelection): Adopted new signature of ReplaceSelectionCommand::create().

2011-02-15 Jia Pu <jpu@apple.com>

Reviewed by Darin Adler.

Autocorrection should respect undo.
https://bugs.webkit.org/show_bug.cgi?id=52221
<rdar://problem/8663399>

Please see WebCore/ChangeLog for detailed description.

  • WebCoreSupport/WebEditorClient.h: Updated for the new function declared in EditorClient.
  • WebCoreSupport/WebEditorClient.mm: (WebEditorClient::recordAutocorrectionResponse): Ditto.
  • WebView/WebFrame.mm: (-[WebFrame _replaceSelectionWithFragment:selectReplacement:smartReplace:matchStyle:]):

Adopted new signature of ReplaceSelectionCommand::create().

2011-02-15 Jia Pu <jpu@apple.com>

Reviewed by Darin Adler.

Autocorrection should respect undo.
https://bugs.webkit.org/show_bug.cgi?id=52221
<rdar://problem/8663399>

Manual test: manual-tests/autocorrection/undo-autocorrection.html

When user undoes an autocorrection, we need to do four things:

  1. Revert the change in text that has been made by correction.
  2. Revert the selection to pre-correction state so that user can immediately continue typing.
  3. Add appropriate markers to reverted text so that it won't be corrected again and/or shown as misspelled.
  4. If applicable, notify spell checking service to record this reversion.

To achieve these, this patch introduces following changes:

  1. Created SpellingCorrectionCommand so that correction can be undone in similar way as any other editing command. SpellingCorrectionCommand is a composition of SetSelectionCommand, SpellingCorrectionRecordUndoCommand and ReplaceSelectionCommand.
  2. Created SetSelectionCommand so that undo command can restore selection state.
  3. Added member function recordAutocorrectionResponse() to editor client.

To improve readability, this patch also consolidates various boolean arguments in SelectionController::setSelection()
and ReplaceSelectionCommand::ReplaceSelectionCommand(). These boolean arguments have been
replaced by enum variable.

  • WebCore.exp.in: Updated for changes in Editor and ReplaceSelectionCommand.
  • WebCore.xcodeproj/project.pbxproj: Updated for new source files.
  • editing/CompositeEditCommand.cpp: (WebCore::CompositeEditCommand::moveParagraphs): Adopted new signature of ReplaceSelectionCommand::create().
  • editing/Editor.cpp: (WebCore::Editor::replaceSelectionWithFragment): Ditto. (WebCore::Editor::unappliedEditing): Cleaned up trailing whitespace. (WebCore::Editor::reappliedEditing): Ditto. (WebCore::Editor::selectComposition): Adopted new signature of SelectionController::setSelection(). (WebCore::Editor::confirmComposition): Ditto. (WebCore::Editor::markAllMisspellingsAndBadGrammarInRanges): Rearranged code to reduce the

level of deeply nested if statement. Adopted SpellingCorrectionCommand.

(WebCore::Editor::applyCorrectionPanelInfo): Adopted SpellingCorrectionCommand.
(WebCore::Editor::unappliedSpellCorrection): Function for adding markers to reverted text and

for notifiying editor client about undone correction.

(WebCore::Editor::changeSelectionAfterCommand): Adopted new signature of SelectionController::setSelection().
(WebCore::Editor::respondToChangedSelection): Use SelectionController::SetSelectionOptions

instead of boolean variables.

  • editing/Editor.h: Added Editor::unappliedSpellCorrection().
  • editing/EditorCommand.cpp: (WebCore::executeInsertFragment): Adopted new signature of ReplaceSelectionCommand::create().
  • editing/MoveSelectionCommand.cpp: (WebCore::MoveSelectionCommand::doApply): Ditto.
  • editing/ReplaceSelectionCommand.cpp: (WebCore::ReplaceSelectionCommand::ReplaceSelectionCommand): Replaced all boolean arguments

with an enum value.

  • editing/ReplaceSelectionCommand.h: (WebCore::ReplaceSelectionCommand::create): Ditto.
  • editing/SelectionController.cpp: Adopted new signature of SelectionController::setSelection(). (WebCore::SelectionController::moveTo): (WebCore::SelectionController::setSelection): (WebCore::SelectionController::respondToNodeModification): (WebCore::SelectionController::setBase): (WebCore::SelectionController::setExtent): (WebCore::SelectionController::setSelectedRange):
  • editing/SelectionController.h: (WebCore::SelectionController::setSelection): Replaced all boolean arguments with an enum value.
  • editing/SetSelectionCommand.cpp: Added. (WebCore::SetSelectionCommand::SetSelectionCommand): (WebCore::SetSelectionCommand::doApply): (WebCore::SetSelectionCommand::doUnapply):
  • editing/SetSelectionCommand.h: Added. (WebCore::SetSelectionCommand::create):
  • editing/mac/SpellingCorrectionCommand.cpp: Added. (WebCore::SpellingCorrectionRecordUndoCommand::create): (WebCore::SpellingCorrectionRecordUndoCommand::SpellingCorrectionRecordUndoCommand): (WebCore::SpellingCorrectionRecordUndoCommand::doApply): (WebCore::SpellingCorrectionRecordUndoCommand::doUnapply): (WebCore::SpellingCorrectionCommand::SpellingCorrectionCommand): (WebCore::SpellingCorrectionCommand::doApply):
  • editing/mac/SpellingCorrectionCommand.h: Added. (WebCore::SpellingCorrectionCommand::create):
  • loader/EmptyClients.h: Updated for the new function declared in EditorClient. (WebCore::EmptyEditorClient::recordAutocorrectionResponse):
  • manual-tests/autocorrection/undo-autocorrection.html: Added.
  • page/ContextMenuController.cpp: (WebCore::ContextMenuController::contextMenuItemSelected): Adopted new signature of ReplaceSelectionCommand::create().
  • page/DragController.cpp: (WebCore::DragController::concludeEditDrag): Ditto.
  • page/EditorClient.h: Added EditorClient::recordAutocorrectionResponse().

2011-02-15 Jia Pu <jpu@apple.com>

Reviewed by Darin Adler.

Autocorrection should respect undo.
https://bugs.webkit.org/show_bug.cgi?id=52221
<rdar://problem/8663399>

Please see WebCore/ChangeLog for detailed description.

  • WebProcess/WebCoreSupport/WebEditorClient.h: Updated for the new function declared in EditorClient.
  • WebProcess/WebCoreSupport/mac/WebEditorClientMac.mm: (WebKit::WebEditorClient::recordAutocorrectionResponse): Ditto.
  • WebProcess/WebPage/WebPage.cpp: (WebKit::WebPage::replaceSelectionWithText): Adopted new signature of ReplaceSelectionCommand::create().
3:41 PM Changeset in webkit [78631] by sfalken@apple.com
  • 2 edits in trunk/LayoutTests

Add media/audio-delete-while-slider-thumb-clicked.html to Windows skipped list.
Failing since r78562.

  • platform/win/Skipped:
3:39 PM Changeset in webkit [78630] by Beth Dakin
  • 4 edits in trunk/Source/WebCore

Speculative fix for <rdar://problem/8998498> CrashTracer: [USER]
8 crashes in WebProcess calling setOverlayScrollerState:forceImmediately:

Reviewed by Darin Adler.

My best guess is that this is crashing because
willRemoveVerticalScrollbar()/Horizontal was not being called
properly from the RenderLayer destructor.

Call willRemoveVerticalScrollbar()/Horizontal from destroyScrollbar()
so that all current and future scrollbar-destroyers will properly
call this function. And only do it for native scrollers.
(WebCore::RenderLayer::destroyScrollbar):
(WebCore::RenderListBox::destroyScrollbar):

For consistency's sake, I also moved didAddVerticalScrollbar()
/Horizontal to createScrollbar(). Again, only call for native
scrollers.

  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::createScrollbar):
(WebCore::RenderListBox::createScrollbar):

These functions no longer call didAdd/willRemove.
(WebCore::RenderLayer::setHasHorizontalScrollbar):
(WebCore::RenderLayer::setHasVerticalScrollbar):

  • rendering/RenderListBox.cpp:

(WebCore::RenderListBox::setHasVerticalScrollbar):

Remove unnecessary ScrollableArea::-prefix

  • platform/ScrollView.cpp:

(WebCore::ScrollView::setHasHorizontalScrollbar):
(WebCore::ScrollView::setHasVerticalScrollbar):

3:38 PM Changeset in webkit [78629] by senorblanco@chromium.org
  • 6 edits in trunk/LayoutTests

2011-02-15 Stephen White <senorblanco@chromium.org>

Unreviewed; new baselines for canvas GPU tests.

Rebaseline for slight pixel differences on windows.

  • platform/chromium-gpu-win/fast/canvas/canvas-text-alignment-expected.checksum:
  • platform/chromium-gpu-win/fast/canvas/canvas-text-alignment-expected.png:
  • platform/chromium-gpu-win/fast/canvas/image-object-in-canvas-expected.checksum:
  • platform/chromium-gpu-win/fast/canvas/image-object-in-canvas-expected.png:
  • platform/chromium/test_expectations.txt:
3:31 PM Changeset in webkit [78628] by mihaip@chromium.org
  • 2 edits in trunk/LayoutTests

2011-02-15 Mihai Parparita <mihaip@chromium.org>

Unreviewed chromium-gpu expectations update. Update expectations after
tests that were unskipped by r78619 started to be run again. Most of
them don't time out anymore, instead they have image and/or text diffs.

Also remove flaky expectations for fast/canvas/shadow-offset-*.html,
since they pass consistently now that the bug on the Chromium/V8 side
(http://crbug.com/67732) has been fixed.

  • platform/chromium/test_expectations.txt:
3:25 PM Changeset in webkit [78627] by ddkilzer@apple.com
  • 4 edits in trunk/Source/WebKit/mac

<http://webkit.org/b/54485> Fix spelling of -inProgramaticScroll

Reviewed by Darin Adler.

  • WebView/WebDynamicScrollBarsView.h:
  • WebView/WebDynamicScrollBarsView.mm:

(-[WebDynamicScrollBarsView inProgrammaticScroll]): Renamed from
-inProgramaticScroll.

  • WebView/WebHTMLView.mm:

(-[WebHTMLView _frameOrBoundsChanged]): Corrected method name.

3:20 PM Changeset in webkit [78626] by Joseph Pecoraro
  • 3 edits in trunk/Source/WebCore

2011-02-15 Joseph Pecoraro <Joseph Pecoraro>

Reviewed by David Kilzer.

Cleanup Some Potential ENABLE(INSPECTOR) Related Building Issues
https://bugs.webkit.org/show_bug.cgi?id=54048

  • WebCore.exp.in: moved inspector only export into ENABLE(INSPECTOR) block.
  • bindings/js/ScriptHeapSnapshot.h: include no longer needed.
3:17 PM Changeset in webkit [78625] by senorblanco@chromium.org
  • 6 edits in trunk

2011-02-15 Stephen White <senorblanco@chromium.org>

Reviewed by James Robinson.


[chromium] clearRect() is incorrect in accelerated 2D canvas.
https://bugs.webkit.org/show_bug.cgi?id=54497

When doing GPU-Canvas2D clearRect() using the fast path (glClear()),
we were not correctly converting from canvas to screen coordinates.
Fixed by inverting the rectangle in Y, and changing
SharedGraphicsContext3D::scissor to take glScissor-like parameters.

Covered by fast/canvas/canvas-strokeRect.html.

  • platform/graphics/chromium/GLES2Canvas.cpp: (WebCore::GLES2Canvas::clearRect): Flip the Y coord of the rectangle passed to scissor().
  • platform/graphics/gpu/SharedGraphicsContext3D.cpp: (WebCore::SharedGraphicsContext3D::scissor):
  • platform/graphics/gpu/SharedGraphicsContext3D.h: Give scissor() the same param types as GraphicsContext3D::scissor().

2011-02-15 Stephen White <senorblanco@chromium.org>

Reviewed by James Robinson.

[chromium] Mark fast/canvas/canvas-strokeRect.html as passing on the GPU path.
https://bugs.webkit.org/show_bug.cgi?id=54497

  • platform/chromium/test_expectations.txt:
3:16 PM Changeset in webkit [78624] by jberlin@webkit.org
  • 2 edits in trunk/Source/WebKit2

WebKit2: Use the Database directory location specified in NSUserDefaults.
https://bugs.webkit.org/show_bug.cgi?id=54496

Reviewed by Darin Adler.

  • UIProcess/mac/WebContextMac.mm:

(WebKit::WebContext::platformDefaultDatabaseDirectory):
Use the same logic as WebKit1's WebDatabaseManager::databasesDirectoryPath.

3:01 PM Changeset in webkit [78623] by Simon Fraser
  • 3 edits in trunk/Source/WebKit2

2011-02-15 Simon Fraser <Simon Fraser>

Reviewed by Anders Carlsson, Darin Adler.

Layers stick around in DrawingAreaImpl until we switch out of compositing
https://bugs.webkit.org/show_bug.cgi?id=54498

When leaving compositing mode soon, remove all the child layers
of the nonCompositedContent layer right away, so they don't stick
around.

  • WebProcess/WebPage/DrawingAreaImpl.cpp: (WebKit::DrawingAreaImpl::setRootCompositingLayer):
  • WebProcess/WebPage/mac/LayerTreeHostMac.mm: (WebKit::LayerTreeHostMac::setRootCompositingLayer):
3:01 PM Changeset in webkit [78622] by psolanki@apple.com
  • 4 edits in trunk/Source

2011-02-15 Pratik Solanki <psolanki@apple.com>

Move WTF_USE_CFNETWORK to Platform.h
https://bugs.webkit.org/show_bug.cgi?id=54168

Reviewed by Darin Adler.

  • wtf/Platform.h: Define WTF_USE_CFNETWORK for Windows builds.

2011-02-15 Pratik Solanki <psolanki@apple.com>

Move WTF_USE_CFNETWORK to Platform.h
https://bugs.webkit.org/show_bug.cgi?id=54168

Reviewed by Darin Adler.

  • config.h: Remove WTF_USE_CFNETWORK.
2:55 PM Changeset in webkit [78621] by mihaip@chromium.org
  • 2 edits in trunk/LayoutTests

2011-02-15 Mihai Parparita <mihaip@chromium.org>

Unreviewed chromium-gpu expectations update.
compositing/reflections/animation-inside-reflection.html and
compositing/reflections/nested-reflection-animated.html are flaky on
Linux too.

  • platform/chromium/test_expectations.txt:
2:53 PM Changeset in webkit [78620] by kbr@google.com
  • 50 edits
    8 adds in trunk

2011-02-15 Kenneth Russell <kbr@google.com>

Reviewed by Darin Fisher.

Allow controlling minimum DOMTimer interval on a per-page basis
https://bugs.webkit.org/show_bug.cgi?id=54312

Implemented new method setMinimumTimerInterval in
LayoutTestController for all ports.

  • DumpRenderTree/LayoutTestController.cpp: (setMinimumTimerIntervalCallback): (LayoutTestController::staticFunctions):
  • DumpRenderTree/LayoutTestController.h:
  • DumpRenderTree/chromium/LayoutTestController.cpp: (LayoutTestController::LayoutTestController): (LayoutTestController::setMinimumTimerInterval):
  • DumpRenderTree/chromium/LayoutTestController.h:
  • DumpRenderTree/chromium/WebViewHost.cpp: (WebViewHost::reset):
  • DumpRenderTree/gtk/DumpRenderTree.cpp: (resetDefaultsToConsistentValues):
  • DumpRenderTree/gtk/LayoutTestControllerGtk.cpp: (LayoutTestController::setMinimumTimerInterval):
  • DumpRenderTree/mac/DumpRenderTree.mm: (resetWebViewToConsistentStateBeforeTesting):
  • DumpRenderTree/mac/LayoutTestControllerMac.mm: (LayoutTestController::setMinimumTimerInterval):
  • DumpRenderTree/qt/DumpRenderTreeQt.cpp: (WebCore::WebPage::resetSettings):
  • DumpRenderTree/qt/LayoutTestControllerQt.cpp: (LayoutTestController::setMinimumTimerInterval):
  • DumpRenderTree/qt/LayoutTestControllerQt.h:
  • DumpRenderTree/win/DumpRenderTree.cpp: (resetWebViewToConsistentStateBeforeTesting):
  • DumpRenderTree/win/LayoutTestControllerWin.cpp: (LayoutTestController::setMinimumTimerInterval):

2011-02-15 Kenneth Russell <kbr@google.com>

Reviewed by Darin Fisher.

Allow controlling minimum DOMTimer interval on a per-page basis
https://bugs.webkit.org/show_bug.cgi?id=54312

  • fast/dom/timer-increase-min-interval-and-reset-part-1-expected.txt: Added.
  • fast/dom/timer-increase-min-interval-and-reset-part-1.html: Added.
  • fast/dom/timer-increase-min-interval-and-reset-part-2-expected.txt: Added.
  • fast/dom/timer-increase-min-interval-and-reset-part-2.html: Added.
    • Chained tests (the assumption is that the run-webkit-tests harness will run them sequentially, which is a reasonably good assumption) which verify that the minimum timer interval is reset between tests.
  • fast/dom/timer-increase-min-interval-expected.txt: Added.
  • fast/dom/timer-increase-min-interval.html: Added.
    • Verifies that increasing the minimum timer interval causes fast timers to run slowly.
  • fast/dom/timer-increase-then-decrease-min-interval-expected.txt: Added.
  • fast/dom/timer-increase-then-decrease-min-interval.html: Added.
    • Verifies that decreasing the minimum timer interval causes previously slowed-down timers to be reevaluated immediately.

2011-02-15 Kenneth Russell <kbr@google.com>

Reviewed by Darin Fisher.

Allow controlling minimum DOMTimer interval on a per-page basis
https://bugs.webkit.org/show_bug.cgi?id=54312

  • public/WebSettings.h:
    • Added setMinimumTimerInterval.
  • src/WebKit.cpp: (WebKit::initialize):
    • Added FIXME to remove setting of page's default timer interval.
  • src/WebSettingsImpl.cpp: (WebKit::WebSettingsImpl::setMinimumTimerInterval):
    • Implemented new method on WebSettings.
  • src/WebSettingsImpl.h:

2011-02-15 Kenneth Russell <kbr@google.com>

Reviewed by Darin Fisher.

Allow controlling minimum DOMTimer interval on a per-page basis
https://bugs.webkit.org/show_bug.cgi?id=54312

Added needed methods to implement LayoutTestController's new
setMinimumTimerInterval method.

  • WebCoreSupport/DumpRenderTreeSupportQt.cpp: (DumpRenderTreeSupportQt::defaultMinimumTimerInterval): (DumpRenderTreeSupportQt::setMinimumTimerInterval):
  • WebCoreSupport/DumpRenderTreeSupportQt.h:

2011-02-15 Kenneth Russell <kbr@google.com>

Reviewed by Darin Fisher.

Allow controlling minimum DOMTimer interval on a per-page basis
https://bugs.webkit.org/show_bug.cgi?id=54312

Added needed methods to implement LayoutTestController's new
setMinimumTimerInterval method.

  • WebCoreSupport/DumpRenderTreeSupportGtk.cpp: (DumpRenderTreeSupportGtk::defaultMinimumTimerInterval): (DumpRenderTreeSupportGtk::setMinimumTimerInterval):
  • WebCoreSupport/DumpRenderTreeSupportGtk.h:

2011-02-15 Kenneth Russell <kbr@google.com>

Reviewed by Darin Fisher.

Allow controlling minimum DOMTimer interval on a per-page basis
https://bugs.webkit.org/show_bug.cgi?id=54312

Added needed methods to implement LayoutTestController's new
setMinimumTimerInterval method. Includes whitespace-only change to
WebKit.idl to trigger proper rebuild on bots; will be removed in
subsequent checkin.

  • Interfaces/IWebViewPrivate.idl:
  • Interfaces/WebKit.idl:
  • WebView.cpp: (WebView::initWithFrame): (WebView::defaultMinimumTimerInterval): (WebView::setMinimumTimerInterval):
  • WebView.h:

2011-02-15 Kenneth Russell <kbr@google.com>

Reviewed by Darin Fisher.

Allow controlling minimum DOMTimer interval on a per-page basis
https://bugs.webkit.org/show_bug.cgi?id=54312

Added needed methods to implement LayoutTestController's new
setMinimumTimerInterval method.

  • WebView/WebView.mm: (-[WebView _commonInitializationWithFrameName:groupName:usesDocumentViews:]): (+[WebView _defaultMinimumTimerInterval]): (-[WebView _setMinimumTimerInterval:]):
  • WebView/WebViewPrivate.h:

2011-02-15 Kenneth Russell <kbr@google.com>

Reviewed by Darin Fisher.

Allow controlling minimum DOMTimer interval on a per-page basis
https://bugs.webkit.org/show_bug.cgi?id=54312

Renamed DOMTimer::minTimerInterval and setMinTimerInterval to
defaultMinTimerInterval and setDefaultMinTimerInterval, made them
private and exposed them via Settings::defaultMinDOMTimerInterval
and setDefaultMinDOMTimerInterval. Added new
Settings::setMinDOMTimerInterval and minDOMTimerInterval.

The storage for the minimum timer interval currently lives in the
Page, though this could be moved to the Settings object if
desired. The accessor methods on the Page are private and exposed
to Settings by making Settings a friend, so the abstraction
barrier is clear at the API level.

Adjusting the interval both upward and downward may cause the fire
times of the active timers on the page to be adjusted, if they
would be affected by the clamping value. This is needed to reduce
latency when bringing a tab to the foreground, in particular if
the minimum timer interval was decreased from a very high value to
a very low value.

A new method, setMinimumTimerInterval, has been added to
LayoutTestController, implemented in all ports of DumpRenderTree,
and used in new layout tests.

Ideally changing the page's minimum timer interval would affect
dedicated workers, but this is too much to do in an initial patch,
so a FIXME has been added.

Tested with:

  • The new layout tests on the WebKit Mac and Chromium (Mac, Linux) DRT ports.
  • Hooked up the new API in Chromium and ran some simple manual tests.

Tests: fast/dom/timer-increase-min-interval-and-reset-part-1.html

fast/dom/timer-increase-min-interval-and-reset-part-2.html
fast/dom/timer-increase-min-interval.html
fast/dom/timer-increase-then-decrease-min-interval.html

  • WebCore.exp.in:
  • dom/Document.cpp: (WebCore::Document::minimumTimerInterval):
  • dom/Document.h:
  • dom/ScriptExecutionContext.cpp: (WebCore::ScriptExecutionContext::adjustMinimumTimerInterval): (WebCore::ScriptExecutionContext::minimumTimerInterval):
  • dom/ScriptExecutionContext.h:
  • page/DOMTimer.cpp: (WebCore::DOMTimer::DOMTimer): (WebCore::DOMTimer::fired): (WebCore::DOMTimer::adjustMinimumTimerInterval): (WebCore::DOMTimer::intervalClampedToMinimum):
  • page/DOMTimer.h: (WebCore::DOMTimer::defaultMinTimerInterval): (WebCore::DOMTimer::setDefaultMinTimerInterval):
  • page/Page.cpp: (WebCore::Page::Page): (WebCore::Page::setMinimumTimerInterval): (WebCore::Page::minimumTimerInterval):
  • page/Page.h:
  • page/Settings.cpp: (WebCore::Settings::setDefaultMinDOMTimerInterval): (WebCore::Settings::defaultMinDOMTimerInterval): (WebCore::Settings::setMinDOMTimerInterval): (WebCore::Settings::minDOMTimerInterval):
  • page/Settings.h:
  • platform/Timer.h: (WebCore::TimerBase::augmentFireInterval): (WebCore::TimerBase::augmentRepeatInterval):

2011-02-15 Kenneth Russell <kbr@google.com>

Reviewed by Darin Fisher.

Allow controlling minimum DOMTimer interval on a per-page basis
https://bugs.webkit.org/show_bug.cgi?id=54312

  • WebProcess/WebPage/WebPage.cpp: (WebKit::WebPage::WebPage):
2:49 PM Changeset in webkit [78619] by mihaip@chromium.org
  • 2 edits in trunk/LayoutTests

2011-02-15 Mihai Parparita <mihaip@chromium.org>

Unreviewed chromium-gpu baseline update. Unskip some tests that fail;
we want to keep running them in case they regress in unexpected ways
(e.g. they start to crash).

  • platform/chromium/test_expectations.txt:
2:46 PM Changeset in webkit [78618] by Simon Fraser
  • 7 edits in trunk/Source/WebCore

2011-02-15 Simon Fraser <Simon Fraser>

Reviewed by Beth Dakin.

Fix scrollbar rendering crash when rendered into a layer
https://bugs.webkit.org/show_bug.cgi?id=54494

Remove code added in r78394 which was intended to find out whether
a scrollbar was being rendered into a compositing layer. r78612
obviated the need for this code.

  • page/FrameView.h:
  • platform/ScrollableArea.h:
  • rendering/RenderLayer.cpp:
  • rendering/RenderLayer.h:
  • rendering/RenderListBox.cpp:
  • rendering/RenderListBox.h:
2:37 PM Changeset in webkit [78617] by Simon Fraser
  • 2 edits in trunk/Source/WebCore

2011-02-15 Simon Fraser <Simon Fraser>

Let Xcode have its way with the project.

  • WebCore.xcodeproj/project.pbxproj:
2:37 PM Changeset in webkit [78616] by Simon Fraser
  • 3 edits in trunk/Source/WebCore

2011-02-15 Simon Fraser <Simon Fraser>

Fix Mac builds that don't use rubber-band scrolling
by moving m_drawingIntoLayer out of the #ifdef.

  • platform/mac/ScrollAnimatorMac.h:
  • platform/mac/ScrollAnimatorMac.mm: (WebCore::ScrollAnimatorMac::ScrollAnimatorMac):
2:30 PM Changeset in webkit [78615] by tonyg@chromium.org
  • 5 edits in branches/chromium/648/Source/WebCore

Merge 78548 - 2011-02-15 Gavin Peters <gavinp@chromium.org>

Reviewed by Antti Koivisto.

SharedBuffer::buffer() does not do what you think.
https://bugs.webkit.org/show_bug.cgi?id=54420

No new tests.

  • inspector/InspectorResourceAgent.cpp: (WebCore::InspectorResourceAgent::resourceContentBase64):
  • platform/SharedBuffer.h:
  • platform/image-decoders/jpeg/JPEGImageDecoder.cpp: (WebCore::JPEGImageReader::decode): (WebCore::JPEGImageDecoder::decode):
  • platform/image-decoders/webp/WEBPImageDecoder.cpp: (WebCore::WEBPImageDecoder::decode):

TBR=commit-queue@webkit.org
Review URL: http://codereview.chromium.org/6526023

2:16 PM Changeset in webkit [78614] by Martin Robinson
  • 50 edits in trunk

2011-02-15 Martin Robinson <mrobinson@igalia.com>

Reviewed by Xan Lopez.

[Freetype] Better map CSS font weight to Fontconfig font weight
https://bugs.webkit.org/show_bug.cgi?id=54323

Update the results of this test, which is now passing. Also update results for
all other tests which have different results now.

  • platform/gtk/fast/css/font-weight-1-expected.checksum:
  • platform/gtk/fast/css/font-weight-1-expected.png:
  • platform/gtk/fast/css/font-weight-1-expected.txt:

2011-02-15 Martin Robinson <mrobinson@igalia.com>

Reviewed by Xan Lopez.

[Freetype] Better map CSS font weight to Fontconfig font weight
https://bugs.webkit.org/show_bug.cgi?id=54323

  • platform/graphics/freetype/FontCacheFreeType.cpp: (WebCore::fontWeightToFontconfigWeight): Added this helper to map between CSS and Fontconfig font weights. (WebCore::FontCache::createFontPlatformData): Use the new helper instead of just deciding between bold and regular.

2011-02-15 Martin Robinson <mrobinson@igalia.com>

Reviewed by Xan Lopez.

[Freetype] Better map CSS font weight to Fontconfig font weight
https://bugs.webkit.org/show_bug.cgi?id=54323

Add the WeightWatcher fonts to the list of sourced fonts when intializing
DRT. This will allow us to pass tests that use WeightWatcher.

  • DumpRenderTree/gtk/DumpRenderTree.cpp: (initializeFonts): Source the WebkitWeightWatcher fonts.
2:12 PM Changeset in webkit [78613] by mihaip@chromium.org
  • 18 edits
    54 adds in trunk/LayoutTests

2011-02-15 Mihai Parparita <mihaip@chromium.org>

Unreviewed chromium-gpu-linux rebaseline. Check in correct expectations
which should allow us to remove the PASS FAIL line for compositing/ for
this platform.

  • platform/chromium-gpu-linux/compositing/direct-image-compositing-expected.checksum:
  • platform/chromium-gpu-linux/compositing/direct-image-compositing-expected.png:
  • platform/chromium-gpu-linux/compositing/generated-content-expected.checksum:
  • platform/chromium-gpu-linux/compositing/generated-content-expected.png:
  • platform/chromium-gpu-linux/compositing/geometry/composited-html-size-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/geometry/composited-html-size-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/geometry/fixed-position-expected.checksum:
  • platform/chromium-gpu-linux/compositing/geometry/fixed-position-expected.png:
  • platform/chromium-gpu-linux/compositing/geometry/horizontal-scroll-composited-expected.checksum:
  • platform/chromium-gpu-linux/compositing/geometry/horizontal-scroll-composited-expected.png:
  • platform/chromium-gpu-linux/compositing/geometry/layer-due-to-layer-children-deep-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/geometry/layer-due-to-layer-children-deep-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/geometry/layer-due-to-layer-children-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/geometry/layer-due-to-layer-children-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/geometry/vertical-scroll-composited-expected.checksum:
  • platform/chromium-gpu-linux/compositing/geometry/vertical-scroll-composited-expected.png:
  • platform/chromium-gpu-linux/compositing/masks/masked-ancestor-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/masks/masked-ancestor-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/masks/simple-composited-mask-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/masks/simple-composited-mask-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/overflow/fixed-position-ancestor-clip-expected.checksum:
  • platform/chromium-gpu-linux/compositing/overflow/fixed-position-ancestor-clip-expected.png:
  • platform/chromium-gpu-linux/compositing/reflections/animation-inside-reflection-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/reflections/animation-inside-reflection-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/reflections/compositing-change-inside-reflection-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/reflections/compositing-change-inside-reflection-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/reflections/deeply-nested-reflections-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/reflections/deeply-nested-reflections-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/reflections/masked-reflection-on-composited-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/reflections/masked-reflection-on-composited-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/reflections/nested-reflection-animated-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/reflections/nested-reflection-animated-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/reflections/nested-reflection-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/reflections/nested-reflection-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/reflections/nested-reflection-mask-change-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/reflections/nested-reflection-mask-change-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/reflections/nested-reflection-on-overflow-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/reflections/nested-reflection-on-overflow-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/reflections/nested-reflection-opacity-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/reflections/nested-reflection-opacity-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/reflections/nested-reflection-size-change-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/reflections/nested-reflection-size-change-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/reflections/nested-reflection-transformed-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/reflections/nested-reflection-transformed-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/reflections/nested-reflection-transformed2-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/reflections/nested-reflection-transformed2-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/reflections/nested-reflection-transition-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/reflections/nested-reflection-transition-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/reflections/reflection-in-composited-expected.checksum:
  • platform/chromium-gpu-linux/compositing/reflections/reflection-in-composited-expected.png:
  • platform/chromium-gpu-linux/compositing/reflections/reflection-on-composited-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/reflections/reflection-on-composited-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/reflections/reflection-ordering-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/reflections/reflection-ordering-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/reflections/reflection-positioning-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/reflections/reflection-positioning-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/reflections/reflection-positioning2-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/reflections/reflection-positioning2-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/reflections/simple-composited-reflections-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/reflections/simple-composited-reflections-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/reflections/transform-inside-reflection-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/reflections/transform-inside-reflection-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/sibling-positioning-expected.checksum:
  • platform/chromium-gpu-linux/compositing/sibling-positioning-expected.png:
  • platform/chromium-gpu-linux/compositing/transitions/scale-transition-no-start-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/transitions/scale-transition-no-start-expected.png: Added.
  • platform/chromium-gpu-linux/compositing/webgl/webgl-reflection-expected.checksum: Added.
  • platform/chromium-gpu-linux/compositing/webgl/webgl-reflection-expected.png: Added.
  • platform/chromium/test_expectations.txt:
2:00 PM Changeset in webkit [78612] by Simon Fraser
  • 8 edits in trunk/Source/WebCore

2011-02-15 Simon Fraser <Simon Fraser>

Reviewed by Sam Weinig.

Fix scrollbar rendering crash when rendered into a layer
https://bugs.webkit.org/show_bug.cgi?id=54494

The scroller delegate was failing to return a layer in a case
where the scroller was still rendering into a GraphicsLayer, because
even though WebCore had switched out of compositing mode, the
DrawingAreaImpl was still rendering into its nonCompositedContent
layer. This happens when the m_exitCompositingTimer timer hasn't fired
yet.

The fix is to track whether we're drawing into a layer via the
GraphicsContext, rather than asking about compositing layers.

  • platform/graphics/GraphicsContext.h:
  • platform/graphics/cg/GraphicsContextCG.cpp: (WebCore::GraphicsContext::setIsCALayerContext): (WebCore::GraphicsContext::isCALayerContext): Getter and setter for the bit that says if we're rendering into a CALayer.
  • platform/graphics/cg/GraphicsContextPlatformPrivateCG.h: (WebCore::GraphicsContextPlatformPrivate::GraphicsContextPlatformPrivate): Store a bool for whether this context targets a layer.
  • platform/graphics/mac/WebLayer.mm: (drawLayerContents): Call setIsCALayerContext(true).
  • platform/mac/ScrollAnimatorMac.h: (WebCore::ScrollAnimatorMac::setIsDrawingIntoLayer): (WebCore::ScrollAnimatorMac::isDrawingIntoLayer): New methods to get and set a flag that says when we're drawing into a layer, so that the delegate can get at this state.
  • platform/mac/ScrollAnimatorMac.mm: (-[ScrollbarPainterDelegate layer]): Use isDrawingIntoLayer() (WebCore::ScrollAnimatorMac::ScrollAnimatorMac): Init the flag.
  • platform/mac/ScrollbarThemeMac.mm: (WebCore::ScrollbarThemeMac::unregisterScrollbar): Whitespace. (WebCore::ScrollbarThemeMac::paint): Push the "isDrawingIntoLayer" state down onto ScrollAnimatorMac, getting it from the GraphicsContext.
1:35 PM Changeset in webkit [78611] by andersca@apple.com
  • 3 edits in trunk/Source/WebKit2

2011-02-15 Anders Carlsson <andersca@apple.com>

Reviewed by Sam Weinig.

Add sitesWithData and clearSiteData to NetscapePluginModule
https://bugs.webkit.org/show_bug.cgi?id=54492

  • Shared/Plugins/Netscape/NetscapePluginModule.cpp: (WebKit::NetscapePluginModule::NetscapePluginModule): (WebKit::NetscapePluginModule::pluginCreated): (WebKit::NetscapePluginModule::pluginDestroyed): (WebKit::NetscapePluginModule::sitesWithData): (WebKit::NetscapePluginModule::clearSiteData): (WebKit::NetscapePluginModule::tryGetSitesWithData): (WebKit::NetscapePluginModule::tryClearSiteData): (WebKit::NetscapePluginModule::incrementLoadCount): (WebKit::NetscapePluginModule::decrementLoadCount):
  • Shared/Plugins/Netscape/NetscapePluginModule.h:
1:33 PM Changeset in webkit [78610] by tony@chromium.org
  • 185 edits
    1 delete in trunk/LayoutTests

2011-02-15 Tony Chang <tony@chromium.org>

Rebaseline chromium-linux tests with menulists (select drop downs).
We now match Windows w.r.t. sizes, the only difference is the
background color of the menulist (in themeChromiumLinux.css).

  • platform/chromium-linux/editing/pasteboard/4641033-expected.checksum:
  • platform/chromium-linux/editing/pasteboard/4641033-expected.png:
  • platform/chromium-linux/editing/pasteboard/4641033-expected.txt:
  • platform/chromium-linux/editing/pasteboard/4944770-1-expected.checksum:
  • platform/chromium-linux/editing/pasteboard/4944770-1-expected.png:
  • platform/chromium-linux/editing/pasteboard/4944770-1-expected.txt:
  • platform/chromium-linux/editing/pasteboard/4944770-2-expected.checksum:
  • platform/chromium-linux/editing/pasteboard/4944770-2-expected.png:
  • platform/chromium-linux/editing/pasteboard/4944770-2-expected.txt:
  • platform/chromium-linux/editing/selection/caret-before-select-expected.checksum:
  • platform/chromium-linux/editing/selection/caret-before-select-expected.png:
  • platform/chromium-linux/editing/selection/caret-before-select-expected.txt:
  • platform/chromium-linux/editing/selection/replaced-boundaries-3-expected.checksum:
  • platform/chromium-linux/editing/selection/replaced-boundaries-3-expected.png:
  • platform/chromium-linux/editing/selection/replaced-boundaries-3-expected.txt:
  • platform/chromium-linux/editing/selection/select-box-expected.checksum:
  • platform/chromium-linux/editing/selection/select-box-expected.png:
  • platform/chromium-linux/editing/selection/select-box-expected.txt:
  • platform/chromium-linux/editing/selection/select-element-paragraph-boundary-expected.checksum:
  • platform/chromium-linux/editing/selection/select-element-paragraph-boundary-expected.png:
  • platform/chromium-linux/editing/selection/select-element-paragraph-boundary-expected.txt:
  • platform/chromium-linux/fast/block/float/float-avoidance-expected.checksum:
  • platform/chromium-linux/fast/block/float/float-avoidance-expected.png:
  • platform/chromium-linux/fast/block/float/float-avoidance-expected.txt:
  • platform/chromium-linux/fast/block/margin-collapse/103-expected.checksum:
  • platform/chromium-linux/fast/block/margin-collapse/103-expected.png:
  • platform/chromium-linux/fast/block/margin-collapse/103-expected.txt:
  • platform/chromium-linux/fast/forms/003-expected.checksum:
  • platform/chromium-linux/fast/forms/003-expected.png:
  • platform/chromium-linux/fast/forms/003-expected.txt:
  • platform/chromium-linux/fast/forms/004-expected.checksum:
  • platform/chromium-linux/fast/forms/004-expected.png:
  • platform/chromium-linux/fast/forms/004-expected.txt:
  • platform/chromium-linux/fast/forms/HTMLOptionElement_label01-expected.checksum:
  • platform/chromium-linux/fast/forms/HTMLOptionElement_label01-expected.png:
  • platform/chromium-linux/fast/forms/HTMLOptionElement_label01-expected.txt:
  • platform/chromium-linux/fast/forms/HTMLOptionElement_label02-expected.checksum:
  • platform/chromium-linux/fast/forms/HTMLOptionElement_label02-expected.png:
  • platform/chromium-linux/fast/forms/HTMLOptionElement_label02-expected.txt:
  • platform/chromium-linux/fast/forms/HTMLOptionElement_label03-expected.checksum:
  • platform/chromium-linux/fast/forms/HTMLOptionElement_label03-expected.png:
  • platform/chromium-linux/fast/forms/HTMLOptionElement_label03-expected.txt:
  • platform/chromium-linux/fast/forms/HTMLOptionElement_label04-expected.checksum:
  • platform/chromium-linux/fast/forms/HTMLOptionElement_label04-expected.png:
  • platform/chromium-linux/fast/forms/HTMLOptionElement_label04-expected.txt:
  • platform/chromium-linux/fast/forms/HTMLOptionElement_label06-expected.checksum:
  • platform/chromium-linux/fast/forms/HTMLOptionElement_label06-expected.png:
  • platform/chromium-linux/fast/forms/HTMLOptionElement_label06-expected.txt:
  • platform/chromium-linux/fast/forms/HTMLOptionElement_label07-expected.checksum:
  • platform/chromium-linux/fast/forms/HTMLOptionElement_label07-expected.png:
  • platform/chromium-linux/fast/forms/HTMLOptionElement_label07-expected.txt:
  • platform/chromium-linux/fast/forms/basic-selects-expected.checksum:
  • platform/chromium-linux/fast/forms/basic-selects-expected.png:
  • platform/chromium-linux/fast/forms/basic-selects-expected.txt:
  • platform/chromium-linux/fast/forms/control-clip-overflow-expected.checksum:
  • platform/chromium-linux/fast/forms/control-clip-overflow-expected.png:
  • platform/chromium-linux/fast/forms/control-clip-overflow-expected.txt:
  • platform/chromium-linux/fast/forms/control-restrict-line-height-expected.checksum:
  • platform/chromium-linux/fast/forms/control-restrict-line-height-expected.png:
  • platform/chromium-linux/fast/forms/control-restrict-line-height-expected.txt:
  • platform/chromium-linux/fast/forms/disabled-select-change-index-expected.checksum:
  • platform/chromium-linux/fast/forms/disabled-select-change-index-expected.png:
  • platform/chromium-linux/fast/forms/disabled-select-change-index-expected.txt:
  • platform/chromium-linux/fast/forms/menulist-clip-expected.checksum:
  • platform/chromium-linux/fast/forms/menulist-clip-expected.png:
  • platform/chromium-linux/fast/forms/menulist-clip-expected.txt:
  • platform/chromium-linux/fast/forms/menulist-deselect-update-expected.checksum:
  • platform/chromium-linux/fast/forms/menulist-deselect-update-expected.png:
  • platform/chromium-linux/fast/forms/menulist-deselect-update-expected.txt:
  • platform/chromium-linux/fast/forms/menulist-narrow-width-expected.checksum:
  • platform/chromium-linux/fast/forms/menulist-narrow-width-expected.png:
  • platform/chromium-linux/fast/forms/menulist-narrow-width-expected.txt:
  • platform/chromium-linux/fast/forms/menulist-no-overflow-expected.checksum:
  • platform/chromium-linux/fast/forms/menulist-no-overflow-expected.png:
  • platform/chromium-linux/fast/forms/menulist-no-overflow-expected.txt:
  • platform/chromium-linux/fast/forms/menulist-option-wrap-expected.checksum:
  • platform/chromium-linux/fast/forms/menulist-option-wrap-expected.png:
  • platform/chromium-linux/fast/forms/menulist-option-wrap-expected.txt:
  • platform/chromium-linux/fast/forms/menulist-restrict-line-height-expected.checksum:
  • platform/chromium-linux/fast/forms/menulist-restrict-line-height-expected.png:
  • platform/chromium-linux/fast/forms/menulist-restrict-line-height-expected.txt: Removed.
  • platform/chromium-linux/fast/forms/menulist-separator-painting-expected.checksum:
  • platform/chromium-linux/fast/forms/menulist-separator-painting-expected.png:
  • platform/chromium-linux/fast/forms/menulist-separator-painting-expected.txt:
  • platform/chromium-linux/fast/forms/menulist-style-color-expected.checksum:
  • platform/chromium-linux/fast/forms/menulist-style-color-expected.png:
  • platform/chromium-linux/fast/forms/menulist-style-color-expected.txt:
  • platform/chromium-linux/fast/forms/menulist-width-change-expected.checksum:
  • platform/chromium-linux/fast/forms/menulist-width-change-expected.png:
  • platform/chromium-linux/fast/forms/menulist-width-change-expected.txt:
  • platform/chromium-linux/fast/forms/option-script-expected.checksum:
  • platform/chromium-linux/fast/forms/option-script-expected.png:
  • platform/chromium-linux/fast/forms/option-script-expected.txt:
  • platform/chromium-linux/fast/forms/option-strip-whitespace-expected.checksum:
  • platform/chromium-linux/fast/forms/option-strip-whitespace-expected.png:
  • platform/chromium-linux/fast/forms/option-strip-whitespace-expected.txt:
  • platform/chromium-linux/fast/forms/option-text-clip-expected.checksum:
  • platform/chromium-linux/fast/forms/option-text-clip-expected.png:
  • platform/chromium-linux/fast/forms/option-text-clip-expected.txt:
  • platform/chromium-linux/fast/forms/select-align-expected.checksum:
  • platform/chromium-linux/fast/forms/select-align-expected.png:
  • platform/chromium-linux/fast/forms/select-align-expected.txt:
  • platform/chromium-linux/fast/forms/select-baseline-expected.checksum:
  • platform/chromium-linux/fast/forms/select-baseline-expected.png:
  • platform/chromium-linux/fast/forms/select-baseline-expected.txt:
  • platform/chromium-linux/fast/forms/select-dirty-parent-pref-widths-expected.checksum:
  • platform/chromium-linux/fast/forms/select-dirty-parent-pref-widths-expected.png:
  • platform/chromium-linux/fast/forms/select-dirty-parent-pref-widths-expected.txt:
  • platform/chromium-linux/fast/forms/select-disabled-appearance-expected.checksum:
  • platform/chromium-linux/fast/forms/select-disabled-appearance-expected.png:
  • platform/chromium-linux/fast/forms/select-disabled-appearance-expected.txt:
  • platform/chromium-linux/fast/forms/select-empty-option-height-expected.checksum:
  • platform/chromium-linux/fast/forms/select-empty-option-height-expected.png:
  • platform/chromium-linux/fast/forms/select-empty-option-height-expected.txt:
  • platform/chromium-linux/fast/forms/select-selected-expected.checksum:
  • platform/chromium-linux/fast/forms/select-selected-expected.png:
  • platform/chromium-linux/fast/forms/select-selected-expected.txt:
  • platform/chromium-linux/fast/forms/stuff-on-my-optgroup-expected.checksum:
  • platform/chromium-linux/fast/forms/stuff-on-my-optgroup-expected.png:
  • platform/chromium-linux/fast/forms/stuff-on-my-optgroup-expected.txt:
  • platform/chromium-linux/fast/html/keygen-expected.checksum:
  • platform/chromium-linux/fast/html/keygen-expected.png:
  • platform/chromium-linux/fast/html/keygen-expected.txt:
  • platform/chromium-linux/fast/invalid/014-expected.checksum:
  • platform/chromium-linux/fast/invalid/014-expected.png:
  • platform/chromium-linux/fast/invalid/014-expected.txt:
  • platform/chromium-linux/fast/invalid/residual-style-expected.checksum:
  • platform/chromium-linux/fast/invalid/residual-style-expected.png:
  • platform/chromium-linux/fast/invalid/residual-style-expected.txt:
  • platform/chromium-linux/fast/parser/document-write-option-expected.checksum:
  • platform/chromium-linux/fast/parser/document-write-option-expected.png:
  • platform/chromium-linux/fast/parser/document-write-option-expected.txt:
  • platform/chromium-linux/fast/repaint/control-clip-expected.checksum:
  • platform/chromium-linux/fast/repaint/control-clip-expected.png:
  • platform/chromium-linux/fast/repaint/control-clip-expected.txt:
  • platform/chromium-linux/fast/replaced/replaced-breaking-expected.checksum:
  • platform/chromium-linux/fast/replaced/replaced-breaking-expected.png:
  • platform/chromium-linux/fast/replaced/replaced-breaking-expected.txt:
  • platform/chromium-linux/fast/replaced/replaced-breaking-mixture-expected.checksum:
  • platform/chromium-linux/fast/replaced/replaced-breaking-mixture-expected.png:
  • platform/chromium-linux/fast/replaced/replaced-breaking-mixture-expected.txt:
  • platform/chromium-linux/fast/replaced/three-selects-break-expected.checksum:
  • platform/chromium-linux/fast/replaced/three-selects-break-expected.png:
  • platform/chromium-linux/fast/replaced/three-selects-break-expected.txt:
  • platform/chromium-linux/fast/text/international/bidi-menulist-expected.checksum:
  • platform/chromium-linux/fast/text/international/bidi-menulist-expected.png:
  • platform/chromium-linux/fast/text/international/bidi-menulist-expected.txt:
  • platform/chromium-linux/fast/text/international/pop-up-button-text-alignment-and-direction-expected.checksum:
  • platform/chromium-linux/fast/text/international/pop-up-button-text-alignment-and-direction-expected.png:
  • platform/chromium-linux/fast/text/international/pop-up-button-text-alignment-and-direction-expected.txt:
  • platform/chromium-linux/tables/mozilla/bugs/bug1188-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug1188-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug1188-expected.txt:
  • platform/chromium-linux/tables/mozilla/bugs/bug18359-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug18359-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug18359-expected.txt:
  • platform/chromium-linux/tables/mozilla/bugs/bug2479-3-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug2479-3-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug2479-3-expected.txt:
  • platform/chromium-linux/tables/mozilla/bugs/bug2479-4-expected.txt:
  • platform/chromium-linux/tables/mozilla/bugs/bug29326-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug29326-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug29326-expected.txt:
  • platform/chromium-linux/tables/mozilla/bugs/bug33855-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug33855-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug33855-expected.txt:
  • platform/chromium-linux/tables/mozilla/bugs/bug4382-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug4382-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug4382-expected.txt:
  • platform/chromium-linux/tables/mozilla/bugs/bug96334-expected.checksum:
  • platform/chromium-linux/tables/mozilla/bugs/bug96334-expected.png:
  • platform/chromium-linux/tables/mozilla/bugs/bug96334-expected.txt:
  • platform/chromium-linux/tables/mozilla/core/margins-expected.checksum:
  • platform/chromium-linux/tables/mozilla/core/margins-expected.png:
  • platform/chromium-linux/tables/mozilla/core/margins-expected.txt:
  • platform/chromium-linux/tables/mozilla/dom/tableDom-expected.checksum:
  • platform/chromium-linux/tables/mozilla/dom/tableDom-expected.png:
  • platform/chromium-linux/tables/mozilla/dom/tableDom-expected.txt:
  • platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug2479-5-expected.checksum:
  • platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png:
  • platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt:
  • platform/chromium-linux/transforms/2d/zoom-menulist-expected.checksum:
  • platform/chromium-linux/transforms/2d/zoom-menulist-expected.png:
  • platform/chromium-linux/transforms/2d/zoom-menulist-expected.txt:
  • platform/chromium/test_expectations.txt:
1:30 PM Changeset in webkit [78609] by weinig@apple.com
  • 2 edits in trunk/Source/WebKit2

Fix windows build.

  • Shared/win/WebCoreArgumentCodersWin.cpp:

(CoreIPC::encodeResourceRequest):

1:22 PM Changeset in webkit [78608] by Martin Robinson
  • 3 edits in trunk/LayoutTests

2011-02-15 Martin Robinson <mrobinson@igalia.com>

Reversing an expectations update, that I mistakenly uploaded in r78595.

  • platform/gtk/Skipped: Skip this test, as the results are incorrect on GTK+.
  • svg/text/lengthAdjust-text-metrics-expected.txt: Restore expectations for this test.
1:21 PM Changeset in webkit [78607] by sfalken@apple.com
  • 2 edits in trunk/LayoutTests

Skip failing tests being tracked by https://bugs.webkit.org/show_bug.cgi?id=54490

  • platform/win/Skipped:
1:09 PM Changeset in webkit [78606] by jochen@chromium.org
  • 2 edits in trunk/Source/WebKit/chromium

2011-02-15 Jochen Eisinger <jochen@chromium.org>

Reviewed by Jeremy Orlow.

[chromium] add WebIDBFactory::deleteDatabase method
https://bugs.webkit.org/show_bug.cgi?id=54447

  • public/WebIDBFactory.h: (WebKit::WebIDBFactory::open): (WebKit::WebIDBFactory::deleteDatabase):
1:03 PM Changeset in webkit [78605] by ggaren@apple.com
  • 5 edits in trunk/Source/JavaScriptCore

2011-02-15 Geoffrey Garen <ggaren@apple.com>

Reviewed by Darin Adler.

Moved MarkedBlock data members to the head of the block
https://bugs.webkit.org/show_bug.cgi?id=54482


This allows for a variable-sized tail, to accommodate oversized blocks.

SunSpider reports no change.


  • runtime/JSCell.h: (JSC::JSCell::MarkedBlock::allocate):
  • runtime/MarkedBlock.cpp: (JSC::MarkedBlock::destroy): (JSC::MarkedBlock::MarkedBlock): (JSC::MarkedBlock::sweep):
  • runtime/MarkedBlock.h: Added missing element to the CELLS_PER_BLOCK calculation. This kind of error is why we want to migrate to the system described below.

(JSC::roundUpToMultipleOf):
(JSC::MarkedBlock::firstCell):
(JSC::MarkedBlock::cells):
(JSC::MarkedBlock::cellNumber): Use subtraction instead of masking to
calculate cell number. The mask is no longer correct because the first
cell is not at the head of the block.

(JSC::MarkedBlock::forEach): Replaced m_cells data member with a cells()
accessor. We want to use sizeof(MarkedBlock) to calculate the size of the
block header, so we can't have an explicit data member to represent the block tail.


Also replaced iteration from zero with iteration from startCell(), since
the first N cells are now occupied by the header.

  • runtime/MarkedSpace.cpp: (JSC::MarkedSpace::MarkedSpace): (JSC::MarkedSpace::reset): Replaced iteration from zero as above.
12:50 PM Changeset in webkit [78604] by andersca@apple.com
  • 4 edits in trunk/Source/WebCore

2011-02-15 Anders Carlsson <andersca@apple.com>

Reviewed by Darin Adler.

Add NPP_GetSitesWithData and NPP_URLRedirectNotify to the NPAPI headers
https://bugs.webkit.org/show_bug.cgi?id=54481

We should really sync all headers with the NPAPI repository, but doing that
lead to build errors so I just added what was needed.

  • bridge/npapi.h: Add new functions.
  • bridge/nptypes.h: Sync with the official NPAPI repository, adding 64-bit integer types and removing a duplicate license header.
  • plugins/npfunctions.h: Add new functions.
12:37 PM Changeset in webkit [78603] by ap@apple.com
  • 2 edits in trunk/Source/WebKit2

Reviewed by Darin Adler.

https://bugs.webkit.org/show_bug.cgi?id=54480
<rdar://problem/8975229> REGRESSION (WebKit2): A web page remains unresponsive for a long
time after printing

Nothing was painted until moving the mouse over browser chrome, deactivating the window,
or taking some other drastic measure like that.

  • UIProcess/API/mac/PageClientImpl.mm: (WebKit::PageClientImpl::setAutodisplay): Call -[NSView displayIfNeeded] after enabling autodisplay. For some reason, this makes WebCore push updates again.
12:29 PM Changeset in webkit [78602] by Antti Koivisto
  • 3 edits in trunk/Source/WebCore

https://bugs.webkit.org/show_bug.cgi?id=54486
Crashes under CachedResourceLoader::revalidateResource

Reviewed by Darin Adler.

CachedResourceLoader might get deleted from under one of its methods.
Try to catch a more informative crash stack.

  • loader/cache/CachedResourceLoader.cpp:

(WebCore::CachedResourceLoader::CachedResourceLoader):
(WebCore::CachedResourceLoader::~CachedResourceLoader):
(WebCore::CachedResourceLoader::requestImage):
(WebCore::CachedResourceLoader::requestUserCSSStyleSheet):
(WebCore::CachedResourceLoader::requestResource):
(WebCore::CachedResourceLoader::setAutoLoadImages):
(WebCore::CachedResourceLoader::load):
(WebCore::CachedResourceLoader::loadDone):
(WebCore::CachedResourceLoader::preload):
(WebCore::CachedResourceLoader::requestPreload):

  • loader/cache/CachedResourceLoader.h:
12:12 PM Changeset in webkit [78601] by dpranke@chromium.org
  • 3 edits in trunk/Tools

2011-02-15 Dirk Pranke <dpranke@chromium.org>

Reviewed by Tony Chang.

Make new-run-webkit-tests --processes work under Windows' weird
multiprocessing model. This requires us to be running a Python
file that can be imported as a module, so I've modified the
new-run-webkit-tests script to spawn a subprocess runing
webkitpy.layout_tests.run_webkit_tests.py. I've also modified
the manager_worker_broker tests because you can't pickle a
nested class. This requires us to use globals to pass queues
back and forth for testing, but the alternative is to pass extra
arguments to start_worker() and that feels like a bad tradeoff
just for testing.

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

  • Scripts/new-run-webkit-tests:
  • Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker_unittest.py:
12:10 PM Changeset in webkit [78600] by weinig@apple.com
  • 3 edits in trunk/Source/WebKit2

2011-02-15 Sam Weinig <sam@webkit.org>

Reviewed by Darin Adler.

Crash loading fast/loader/empty-embed-src-attribute.html
<rdar://problem/9005541>
https://bugs.webkit.org/show_bug.cgi?id=54483

Add the ability to encode/decode and empty ResourceRequest.

  • Shared/mac/WebCoreArgumentCodersMac.mm: (CoreIPC::encodeResourceRequest): (CoreIPC::decodeResourceRequest): (CoreIPC::decodeResourceResponse): Add missing false check for the decode step.
  • Shared/win/WebCoreArgumentCodersWin.cpp: (CoreIPC::encodeResourceRequest): (CoreIPC::decodeResourceRequest): (CoreIPC::decodeResourceResponse): Add missing false check for the decode step.
12:02 PM Changeset in webkit [78599] by senorblanco@chromium.org
  • 7 edits in trunk/LayoutTests

2011-02-15 Stephen White <senorblanco@chromium.org>

Unreviewed; new Chromium/Linux test baselines.

canvas-composite.html rebaselined due to new GPU-based path drawing code.
canvas-text-alignment and image-object-in-canvas rebaselined due to slight pixel differences near the scrollbar.

  • platform/chromium-gpu-linux/fast/canvas/canvas-composite-expected.checksum:
  • platform/chromium-gpu-linux/fast/canvas/canvas-composite-expected.png:
  • platform/chromium-gpu-linux/fast/canvas/canvas-text-alignment-expected.checksum:
  • platform/chromium-gpu-linux/fast/canvas/canvas-text-alignment-expected.png:
  • platform/chromium-gpu-linux/fast/canvas/image-object-in-canvas-expected.checksum:
  • platform/chromium-gpu-linux/fast/canvas/image-object-in-canvas-expected.png:
11:58 AM Changeset in webkit [78598] by tony@chromium.org
  • 2 edits in trunk/Source/WebKit/chromium

2011-02-15 Tony Chang <tony@chromium.org>

Unreviewed, update the version of Chromium in webkit.

  • DEPS:
11:52 AM Changeset in webkit [78597] by crogers@google.com
  • 2 edits in trunk/Source/JavaScriptCore

2011-02-15 Chris Rogers <crogers@google.com>

Reviewed by Alexey Proskuryakov.

Fix Mutex::tryLock() on Windows to work properly with PlatformCondition::timedWait()
https://bugs.webkit.org/show_bug.cgi?id=54408

  • wtf/ThreadingWin.cpp: (WTF::PlatformCondition::timedWait):
11:47 AM Changeset in webkit [78596] by andreas.kling@nokia.com
  • 2 edits in trunk/Source/WebCore

2011-02-15 Andreas Kling <kling@webkit.org>

Reviewed by Darin Adler.

Optimize Color::serialized()
https://bugs.webkit.org/show_bug.cgi?id=54452

Apply the optimizations from CSSPrimitiveValue::cssText() [CSS_RGBCOLOR]
to Color::serialized() - build the serialized color strings manually
instead of using String::format().

  • platform/graphics/Color.cpp: (WebCore::appendHexNumber): (WebCore::Color::serialized):
11:26 AM Changeset in webkit [78595] by Martin Robinson
  • 3 edits
    233 adds in trunk/LayoutTests

2011-02-15 Martin Robinson <mrobinson@igalia.com>

Import the last set of GTK+ baselines for SVG tests.

  • platform/gtk/Skipped: Unskip tests which now have results. Classify failures.
11:17 AM Changeset in webkit [78594] by Martin Robinson
  • 3 edits
    161 adds in trunk/LayoutTests

2011-02-15 Martin Robinson <mrobinson@igalia.com>

Add the next batch of GTK+ SVG results.

  • platform/gtk/Skipped: Unskip tests which now have results.
11:17 AM Changeset in webkit [78593] by andreas.kling@nokia.com
  • 2 edits in trunk/Source/WebKit2

2011-02-15 Andreas Kling <kling@webkit.org>

Unreviewed Qt build fix after r78588.

  • UIProcess/API/qt/qwkpage.cpp: (QWKPage::QWKPage): Add WKPageLoaderClient::shouldGoToHistoryItem.
11:10 AM Changeset in webkit [78592] by mario@webkit.org
  • 2 edits in trunk/LayoutTests

2011-02-15 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r78579.
http://trac.webkit.org/changeset/78579
https://bugs.webkit.org/show_bug.cgi?id=54479

Undo wrong rebaseline for Gtk results (Requested by msanchez
on #webkit).

  • platform/gtk/fast/block/float/marquee-shrink-to-avoid-floats-expected.txt:
11:10 AM Changeset in webkit [78591] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebCore

2011-02-15 Jarred Nicholls <jarred@sencha.com>

Reviewed by Alexey Proskuryakov.

XMLHttpRequest::abort() doesn't clear response data
https://bugs.webkit.org/show_bug.cgi?id=54118

Properly clear all buffer data on abort, so no memory hangs around unnecessarily.

No new tests because there is no observable effect except for less memory used.

  • xml/XMLHttpRequest.cpp: (WebCore::XMLHttpRequest::abort):
11:01 AM Changeset in webkit [78590] by andreas.kling@nokia.com
  • 11 edits in trunk/Source/WebCore

2011-02-15 Andreas Kling <kling@webkit.org>

Reviewed by Darin Adler.

Rename Color::name() to Color::nameForRenderTreeAsText()
https://bugs.webkit.org/show_bug.cgi?id=54464

Color::name() returns the color as either #RRGGBB or #RRGGBBAA.
Since the latter is not a valid CSS color, it can't be re-parsed
by WebKit, and should only be used in DRT dumps.

  • editing/ApplyStyleCommand.cpp: (WebCore::StyleChange::extractTextStyles):
  • page/DragController.cpp: (WebCore::DragController::concludeEditDrag):
  • platform/graphics/Color.cpp: (WebCore::Color::nameForRenderTreeAsText):
  • platform/graphics/Color.h:
  • platform/graphics/GraphicsLayer.cpp: (WebCore::GraphicsLayer::dumpProperties):
  • platform/graphics/filters/FEFlood.cpp: (WebCore::FEFlood::externalRepresentation):
  • rendering/RenderTreeAsText.cpp: (WebCore::RenderTreeAsText::writeRenderObject):
  • rendering/svg/SVGRenderTreeAsText.cpp: (WebCore::operator<<): (WebCore::writeRenderSVGTextBox):
  • svg/SVGAnimateElement.cpp: (WebCore::SVGAnimateElement::applyResultsToTarget):
  • svg/SVGColor.cpp: (WebCore::SVGColor::cssText):
10:57 AM Changeset in webkit [78589] by enrica@apple.com
  • 3 edits in trunk/Source/WebKit2

Stop using deprecated API to flip the dragImage.
<rdar://problem/8930897>
https://bugs.webkit.org/show_bug.cgi?id=54477

Reviewed by Darin Adler.

NSImage setFlipped is a deprecated API. We replace it with
drawInRect:fromRect:operation:fraction:respectFlipped:hints.

  • UIProcess/API/mac/PageClientImpl.mm:

(WebKit::PageClientImpl::setDragImage): Removed call to setFlipped.

  • WebProcess/WebCoreSupport/mac/WebDragClientMac.mm:

(WebKit::WebDragClient::startDrag): The image is now drawn with
drawInRect:fromRect:operation:fraction:respectFlipped:hints.

10:46 AM Changeset in webkit [78588] by beidson@apple.com
  • 13 edits in trunk

<rdar://problem/9002047> and https://bugs.webkit.org/show_bug.cgi?id=54426
WebFrameLoaderClient::shouldGoToHistoryItem needs implementation

Reviewed by Darin Adler.

Source/WebKit2:

Expose HistoryItem -> ItemID mapping for the message:

  • WebProcess/WebPage/WebBackForwardListProxy.cpp:

(WebKit::WebBackForwardListProxy::idForItem):

  • WebProcess/WebPage/WebBackForwardListProxy.h:

Sync message to the UIProcess for the answer:

  • WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:

(WebKit::WebFrameLoaderClient::shouldGoToHistoryItem):

Call out to the WebLoaderClient for the answer:

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::shouldGoToBackForwardListItem):

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

Call out to the client application for the answer:

  • UIProcess/WebLoaderClient.cpp:

(WebKit::WebLoaderClient::shouldGoToBackForwardListItem):

  • UIProcess/WebLoaderClient.h:

Add API for the client application to listen for this:

  • UIProcess/API/C/WKPage.h:

Tools:

Add dummy implementations to keep our tools building.

  • MiniBrowser/mac/BrowserWindowController.m:

(-[BrowserWindowController awakeFromNib]):

  • WebKitTestRunner/TestController.cpp:

(WTR::TestController::initialize):

10:43 AM Changeset in webkit [78587] by Martin Robinson
  • 2 edits
    154 adds in trunk/LayoutTests

2011-02-15 Martin Robinson <mrobinson@igalia.com>

Import the next batch of GTK+ SVG test results and correct an incorrect
line in the skipped list.

  • platform/gtk/Skipped: Unskip tests which now have results.
10:38 AM Changeset in webkit [78586] by mnaganov@chromium.org
  • 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-02-15 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed test expectations update.
SKIP two more Inspector tests, from r78581 (by pfeldman's request).

10:25 AM Changeset in webkit [78585] by abecsi@webkit.org
  • 2 edits in trunk/Source/WebCore

2011-02-15 Andras Becsi <abecsi@webkit.org>

Rubber-stamped by Andreas Kling.

[Qt] Typo fix.

No new tests needed.

  • WebCore.pro: add missing ASCII to header name.
10:22 AM Changeset in webkit [78584] by pfeldman@chromium.org
  • 2 edits
    1 delete in trunk/LayoutTests

2011-02-15 Pavel Feldman <pfeldman@chromium.org>

Not reviewed: expectations update for r78548 and r78576.

  • platform/mac-leopard/inspector/extensions/extensions-resources-expected.txt: Removed.
  • platform/qt/Skipped:
10:18 AM Changeset in webkit [78583] by Martin Robinson
  • 2 edits
    150 adds in trunk/LayoutTests

2011-02-15 Martin Robinson <mrobinson@igalia.com>

Continue importing GTK+ SVG test results.

  • platform/gtk/Skipped: Unskip tests which now have results.
10:14 AM Changeset in webkit [78582] by mnaganov@chromium.org
  • 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-02-15 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed test expectations update.
SKIP two Inspector tests (by pfeldman's request).

10:07 AM Changeset in webkit [78581] by pfeldman@chromium.org
  • 4 edits
    5 adds in trunk

2011-02-15 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Yury Semikhatsky.

Web Inspector: test whether inspector gets populated with databases and storages upon opening.
https://bugs.webkit.org/show_bug.cgi?id=54469

  • http/tests/inspector-enabled/database-open-expected.txt: Added.
  • http/tests/inspector-enabled/database-open.html: Added.
  • http/tests/inspector-enabled/dom-storage-open-expected.txt: Added.
  • http/tests/inspector-enabled/dom-storage-open.html: Added.

2011-02-15 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Yury Semikhatsky.

Web Inspector: test whether inspector gets populated with databases and storages upon opening.
https://bugs.webkit.org/show_bug.cgi?id=54469

Tests: http/tests/inspector-enabled/database-open.html

http/tests/inspector-enabled/dom-storage-open.html

  • inspector/front-end/DOMStorage.js:
  • inspector/front-end/Database.js: (WebInspector.DatabaseDispatcher.prototype.addDatabase):
9:58 AM Changeset in webkit [78580] by andreas.kling@nokia.com
  • 8 edits
    1 add in trunk/Source/WebCore

2011-02-15 Andreas Kling <kling@webkit.org>

Reviewed by Darin Adler.

Share the helper functions used by Latin-1 and UTF-8 text codecs
https://bugs.webkit.org/show_bug.cgi?id=54446

Move MachineWord, UCharByteFiller and the other helper functions
into TextCodecASCIIFastPath.h where they can be used by both
TextCodecUTF8 and TextCodecLatin1.

  • GNUmakefile.am:
  • WebCore.gypi:
  • WebCore.pro:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.xcodeproj/project.pbxproj:
  • platform/text/TextCodecASCIIFastPath.h: Added. (WebCore::isAllASCII): (WebCore::copyASCIIMachineWord): (WebCore::isAlignedToMachineWord): (WebCore::alignToMachineWord):
  • platform/text/TextCodecLatin1.cpp: (WebCore::TextCodecLatin1::decode):
  • platform/text/TextCodecUTF8.cpp: (WebCore::TextCodecUTF8::decode):
9:52 AM Changeset in webkit [78579] by mario@webkit.org
  • 2 edits in trunk/LayoutTests

2011-02-15 Mario Sanchez Prada <msanchez@igalia.com>

Unreviewed, rebaseline of Gtk result.

  • platform/gtk/fast/block/float/marquee-shrink-to-avoid-floats-expected.txt:
9:49 AM Changeset in webkit [78578] by weinig@apple.com
  • 2 edits in trunk/Source/WebKit2

Fix Anders typo. false -> 0.

Reviewed by Anders Carlsson.

  • Platform/mac/SharedMemoryMac.cpp:

(WebKit::SharedMemory::create):

9:45 AM Changeset in webkit [78577] by mnaganov@chromium.org
  • 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt

[Chromium] Unreviewed text expectations fix

9:41 AM Changeset in webkit [78576] by pfeldman@chromium.org
  • 12 edits
    11 adds in trunk/LayoutTests

2011-02-15 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Yury Semikhatsky.

Web Inspector: implement DOM agent tests.
https://bugs.webkit.org/show_bug.cgi?id=54459

  • http/tests/inspector/elements-test.js: (initialize_ElementTest.InspectorTest.expandedNodeWithId.callback): (initialize_ElementTest.InspectorTest.expandedNodeWithId): (initialize_ElementTest.InspectorTest.dumpElementsTree): (initialize_ElementTest.InspectorTest.dumpElementsTree.print): (initialize_ElementTest.InspectorTest.expandElementsTree): (initialize_ElementTest.InspectorTest.expandElementsTree.mycallback): (initialize_ElementTest.InspectorTest.dumpDOMAgentTree): (initialize_ElementTest):
  • http/tests/inspector/extensions-resources-redirect-expected.txt:
  • http/tests/inspector/inspector-test.js: (initialize_InspectorTest.InspectorTest.addResult.clearResults): (initialize_InspectorTest.InspectorTest.runTestSuite.runner): (initialize_InspectorTest.InspectorTest.runTestSuite): (output): (clearOutput):
  • inspector/debugger/dom-breakpoints.html:
  • inspector/elements/elements-panel-limited-children-expected.txt:
  • inspector/elements/elements-panel-rewrite-href.html:
  • inspector/elements/elements-panel-structure-expected.txt:
  • inspector/elements/elements-panel-structure.html:
  • inspector/elements/elements-panel-xhtml-structure-expected.txt:
  • inspector/elements/elements-panel-xhtml-structure.xhtml:
  • inspector/elements/insert-node-collapsed-expected.txt: Added.
  • inspector/elements/insert-node-collapsed.html: Added.
  • inspector/elements/insert-node-expected.txt: Added.
  • inspector/elements/insert-node.html: Added.
  • inspector/elements/modify-chardata-expected.txt: Added.
  • inspector/elements/modify-chardata.html: Added.
  • inspector/elements/mutate-unknown-node-expected.txt: Added.
  • inspector/elements/mutate-unknown-node.html: Added.
  • inspector/elements/remove-node-expected.txt: Added.
  • inspector/elements/remove-node.html: Added.
  • inspector/elements/set-attribute.html: Added.
  • inspector/extensions/extensions-expected.txt:
9:36 AM Changeset in webkit [78575] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

2011-02-15 Leo Yang <leo.yang@torchmobile.com.cn>

Reviewed by Kent Tamura.

Code style issue in WebCore/dom/InputElement.cpp
https://bugs.webkit.org/show_bug.cgi?id=54428

Remove 2 extra spaces in InputElement.cpp line 221.

Code style fix, No new tests.

  • dom/InputElement.cpp: (WebCore::InputElement::handleBeforeTextInsertedEvent):
9:30 AM Changeset in webkit [78574] by mnaganov@chromium.org
  • 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-02-15 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed test expectations update.
Mark svg/custom/use-css-no-effect-on-shadow-tree.svg as passing.
Mark media/audio-delete-while-slider-thumb-clicked.html as timing out.
https://bugs.webkit.org/show_bug.cgi?id=54472

9:29 AM Changeset in webkit [78573] by xan@webkit.org
  • 2 edits in trunk/Source/JavaScriptCore

2011-02-15 Xan Lopez <xlopez@igalia.com>

Reviewed by Martin Robinson.

Remove some dead code in ARMv7
https://bugs.webkit.org/show_bug.cgi?id=54461

  • assembler/ARMv7Assembler.h: remove dead code.
9:28 AM Changeset in webkit [78572] by mario@webkit.org
  • 2 edits in trunk/LayoutTests

2011-02-15 Mario Sanchez Prada <msanchez@igalia.com>

Unreviewed, test crashing because of failing ASSERT on GTK 64-bit debug bot.

[GTK] svg/text/select-textLength-spacing-squeeze-1.svg crashes due to ASSERT failing
https://bugs.webkit.org/show_bug.cgi?id=54470

  • platform/gtk/Skipped: Skipped test.
8:59 AM Changeset in webkit [78571] by Philippe Normand
  • 2 edits in trunk/Source/WebCore

2011-02-15 Philippe Normand <pnormand@igalia.com>

Reviewed by Martin Robinson.

[GStreamer] Video player sets system volume to 100%
https://bugs.webkit.org/show_bug.cgi?id=54140

Don't explicitely set volume at startup and use the
GstStreamVolume interface with cubic volume scale when
updating/retrieving the volume value. This gives a much better
user-experience.

  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp: (WebCore::MediaPlayerPrivateGStreamer::createGSTPlayBin):
8:48 AM Changeset in webkit [78570] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

2011-02-15 Zan Dobersek <zandobersek@gmail.com>

Reviewed by Andreas Kling.

[Gtk] Cleanup in the canvas tests
https://bugs.webkit.org/show_bug.cgi?id=54458

Unskip canvas tests that already pass.

  • platform/gtk/Skipped:
8:47 AM Changeset in webkit [78569] by abarth@webkit.org
  • 7 edits
    2 adds in trunk

2011-02-15 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Sketch script-src for Content Security Policy
https://bugs.webkit.org/show_bug.cgi?id=54381

  • http/tests/security/contentSecurityPolicy/script-loads-with-img-src-expected.txt: Added.
  • http/tests/security/contentSecurityPolicy/script-loads-with-img-src.html: Added.
    • Test that we don't block scripts when the policy is just img-src.
  • http/tests/security/contentSecurityPolicy/script-src-in-iframe.html:
  • http/tests/security/contentSecurityPolicy/script-src-none.html:
  • http/tests/security/contentSecurityPolicy/script-src-redirect.html:
    • Turns out we need to escape the ; character in order for it to be echoed back correctly in the header.

2011-02-15 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Sketch script-src for Content Security Policy
https://bugs.webkit.org/show_bug.cgi?id=54381

This patch provides a sketch of the script-src directive. We still do
not parse the value of the directive, and the wiring into the rest of
WebCore is incorrect, but those are things we can fix in future
patches. For the momemnt, this patch lets us test what we're doing.

Test: http/tests/security/contentSecurityPolicy/script-loads-with-img-src.html

  • page/ContentSecurityPolicy.cpp: (WebCore::CSPDirective::CSPDirective): (WebCore::CSPDirective::allows): (WebCore::ContentSecurityPolicy::didReceiveHeader): (WebCore::ContentSecurityPolicy::canLoadExternalScriptFromSrc): (WebCore::ContentSecurityPolicy::parse): (WebCore::ContentSecurityPolicy::emitDirective):
  • page/ContentSecurityPolicy.h:
8:45 AM Changeset in webkit [78568] by Antti Koivisto
  • 2 edits in trunk/Source/WebCore

svg/custom/use-css-no-effect-on-shadow-tree.svg produces empty image on Chromium Linux after r58556
https://bugs.webkit.org/show_bug.cgi?id=54460

Reviewed by Andreas Kling.

Don't use fast path for SVG. There are some additional rules for shadow trees that are not
implemented on fast path.

  • css/CSSStyleSelector.cpp:

(WebCore::CSSStyleSelector::checkSelector):

8:41 AM Changeset in webkit [78567] by mario@webkit.org
  • 2 edits in trunk/LayoutTests

2011-02-15 Mario Sanchez Prada <msanchez@igalia.com>

Unreviewed, skipping flaky test on GTK 64-bit debug bot.

editing/selection/end-of-document.html is failing in the GTK 64-bit debug bot
https://bugs.webkit.org/show_bug.cgi?id=53995

  • platform/gtk/Skipped: Skipped flaky test.
8:15 AM Changeset in webkit [78566] by abecsi@webkit.org
  • 6 edits
    1 copy in trunk/Source

2011-02-15 Andras Becsi <abecsi@webkit.org>

Reviewed by Csaba Osztrogonác.

[Qt] Redesign the build system
https://bugs.webkit.org/show_bug.cgi?id=51339

Part 1.

Introduce CodeGenerators.pri and add common includepaths to WebCore.pri,
thus unnecessary duplications can be removed from project files.

No new tests needed.

  • CodeGenerators.pri: Copied from Source/WebCore/WebCore.pri. Don't add non-source generated files to SOURCES.
  • DerivedSources.pro: Change WebCore.pri to CodeGenerators.pri.
  • WebCore.pri: Move code generation rules to CodeGenerators.pri.
  • WebCore.pro: Move common options to WebCore.pri.

2011-02-15 Andras Becsi <abecsi@webkit.org>

Reviewed by NOBODY Csaba Osztrogonác.

[Qt] Redesign the build system
https://bugs.webkit.org/show_bug.cgi?id=51339

Part 1.

Introduce CodeGenerators.pri and add common includepaths to WebCore.pri,
thus unnecessary duplications can be removed from project files.

  • WebKit2.pro: Simplify and deduplicate includepaths.
8:14 AM Changeset in webkit [78565] by kalman@chromium.org
  • 6 edits in trunk/LayoutTests

2011-02-15 Benjamin Kalman <kalman@chromium.org>

Reviewed by Ryosuke Niwa.

Refactor the extend-selection tests to be clearer what they're doing
https://bugs.webkit.org/show_bug.cgi?id=54429

This is essentially a cleanup to extend-selection.js and propagation of those changes to the affected tests.

  • editing/selection/extend-selection-character.html:
  • editing/selection/extend-selection-enclosing-block.html:
  • editing/selection/extend-selection-home-end.html:
  • editing/selection/extend-selection-word.html:
  • editing/selection/resources/extend-selection.js: (getSerializedSelection): (extendSelectionWithinBlock): (extendSelectionToEnd): (fold): (logMismatchingPositions): (extendAndLogSelection): (extendAndLogSelectionWithinBlock): (extendAndLogSelectionToEnd): (runSelectionTestsWithGranularity): (getTestNodeContainer): (createNode): (createCharAndWordNodes): (createEnclosingBlockNodes): (createHomeEndNodes): (createAllNodes): (.window.onload):
8:11 AM Changeset in webkit [78564] by mihaip@chromium.org
  • 2 edits
    2 copies in branches/chromium/648/Source/WebCore

Merge 78561 - 2011-02-15 Charlie Reis <creis@chromium.org>

Reviewed by Mihai Parparita.

Crash in WebCore::FrameLoader::continueLoadAfterNavigationPolicy
https://bugs.webkit.org/show_bug.cgi?id=54219

Ensures we do not start a new navigation while we are in the process of
stopping a navigation. Also adds a manual test, since the crash can
only be reproduced using the back button and not history.back().

  • loader/FrameLoader.cpp:
  • manual-tests/navigation-during-onload-triggered-by-back.html: Added.
  • manual-tests/resources/navigation-during-onload-container.html: Added.

BUG=72458
TBR=commit-queue@webkit.org
Review URL: http://codereview.chromium.org/6524014

7:58 AM Changeset in webkit [78563] by mnaganov@chromium.org
  • 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt

2011-02-15 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed test expectations update.
Mark svg/custom/use-css-no-effect-on-shadow-tree.svg as failing.
https://bugs.webkit.org/show_bug.cgi?id=54460

7:56 AM Changeset in webkit [78562] by Philippe Normand
  • 4 edits in trunk/LayoutTests

2011-02-15 Philippe Normand <pnormand@igalia.com>

Reviewed by Eric Carlson.

[GTK] media/audio-delete-while-slider-thumb-clicked.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=53247

Refactored the test to use the seeking event instead of timeupdate
and avoid flakyness.

  • media/audio-delete-while-slider-thumb-clicked-expected.txt:
  • media/audio-delete-while-slider-thumb-clicked.html:
  • platform/gtk/Skipped:
7:55 AM Changeset in webkit [78561] by commit-queue@webkit.org
  • 2 edits
    2 adds in trunk/Source/WebCore

2011-02-15 Charlie Reis <creis@chromium.org>

Reviewed by Mihai Parparita.

Crash in WebCore::FrameLoader::continueLoadAfterNavigationPolicy
https://bugs.webkit.org/show_bug.cgi?id=54219

Ensures we do not start a new navigation while we are in the process of
stopping a navigation. Also adds a manual test, since the crash can
only be reproduced using the back button and not history.back().

  • loader/FrameLoader.cpp:
  • manual-tests/navigation-during-onload-triggered-by-back.html: Added.
  • manual-tests/resources/navigation-during-onload-container.html: Added.
7:48 AM Changeset in webkit [78560] by krit@webkit.org
  • 2 edits in trunk/LayoutTests

2011-02-15 Dirk Schulze <krit@webkit.org>

Unreviewed rebaseline.

SVG animation doesn't support attribute value 'inherit'
https://bugs.webkit.org/show_bug.cgi?id=54410

Rebaseline of Gtk result.

  • platform/gtk/svg/W3C-SVG-1.1/animate-elem-31-t-expected.txt:
7:47 AM Changeset in webkit [78559] by jeffm@apple.com
  • 1 edit in trunk/Tools/Scripts/webkitpy/common/config/committers.py

Unreviewed. Add myself to the list of committers.

7:28 AM Changeset in webkit [78558] by commit-queue@webkit.org
  • 9 edits in trunk/Source/WebCore

2011-02-15 Bill Budge <bbudge@chromium.org>

Reviewed by David Levin.

SubresourceLoader should expose finish time
https://bugs.webkit.org/show_bug.cgi?id=54287

No tests needed, exposes no new functionality

  • loader/DocumentThreadableLoader.cpp: (WebCore::DocumentThreadableLoader::didFinishLoading):
  • loader/DocumentThreadableLoader.h:
  • loader/SubresourceLoader.cpp: (WebCore::SubresourceLoader::didFinishLoading):
  • loader/SubresourceLoaderClient.h: (WebCore::SubresourceLoaderClient::didFinishLoading):
  • loader/cache/CachedResourceRequest.cpp: (WebCore::CachedResourceRequest::didFinishLoading):
  • loader/cache/CachedResourceRequest.h:
  • loader/icon/IconLoader.cpp: (WebCore::IconLoader::didFinishLoading):
  • loader/icon/IconLoader.h:
7:23 AM Changeset in webkit [78557] by mnaganov@chromium.org
  • 2 adds in trunk/LayoutTests/platform/chromium-linux/http/tests/xmlhttprequest

2011-02-15 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed test expectations update.
Update test results for xmlhttprequest/cache-override.html after r78541.

7:13 AM Changeset in webkit [78556] by Antti Koivisto
  • 2 edits in trunk/Source/WebCore

Enable fast path selector checking for child and subselector combinators
https://bugs.webkit.org/show_bug.cgi?id=54360

Reviewed by Darin Adler.

  • css/CSSStyleSelector.cpp:

(WebCore::isFastCheckableSelector):
(WebCore::fastCheckSingleSelector):
(WebCore::checkClassValue):
(WebCore::checkIdValue):
(WebCore::checkTagValue):
(WebCore::CSSStyleSelector::SelectorChecker::fastCheckSelector):

7:06 AM Changeset in webkit [78555] by mnaganov@chromium.org
  • 4 edits
    4 adds in trunk/LayoutTests/platform

2011-02-15 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed test expectations update.
Add test results for animate-elem-31-t.svg after r78543, r78552.

6:50 AM Changeset in webkit [78554] by yurys@chromium.org
  • 2 edits in trunk/Source/WebCore

2011-02-15 Yury Semikhatsky <yurys@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: console auto-scroll is broken when there are both scrollers.
https://bugs.webkit.org/show_bug.cgi?id=54273

  • inspector/front-end/utilities.js: (Element.prototype.isScrolledToBottom): use clientHeight instead of offsetHeight to determine whether the element is scrolled to the bottom.
6:39 AM Changeset in webkit [78553] by apavlov@chromium.org
  • 2 edits in trunk/Source/WebCore

2011-02-14 Alexander Pavlov <apavlov@chromium.org>

Reviewed by Yury Semikhatsky.

Web Inspector: highlighter works incorrect at build.chromium.org WebKit cells
https://bugs.webkit.org/show_bug.cgi?id=53910

Use enclosingBoundingBox for the absolute margin quad as the reference box for a tooltip.

  • inspector/InspectorAgent.cpp: (WebCore::InspectorAgent::drawNodeHighlight):
6:03 AM Changeset in webkit [78552] by krit@webkit.org
  • 7 edits in trunk

2011-02-15 Dirk Schulze <krit@webkit.org>

Rubber-stamped by Nikolas Zimmermann.

SVG animation doesn't support attribute value 'inherit'
https://bugs.webkit.org/show_bug.cgi?id=54410

Accidently replaced start value RegularPropertyValue for m_fromPropertyValueType
and m_toPropertyValueType by CurrentColorValue before landing. Check for property
value type 'inherit' on color validation was missing.

  • svg/SVGAnimateElement.cpp: (WebCore::SVGAnimateElement::calculateFromAndToValues): (WebCore::SVGAnimateElement::calculateFromAndByValues):

2011-02-15 Dirk Schulze <krit@webkit.org>

Rubber-stamped by Nikolas Zimmermann.

SVG animation doesn't support attribute value 'inherit'
https://bugs.webkit.org/show_bug.cgi?id=54410

We have support for 'inherit' in SVG animations now. This means the cyan circles
are invisible at the beginning.
The test itself is still broken, since calcMode gets handled incorrectly.

  • platform/mac-wk2/Skipped:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-31-t-expected.checksum:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-31-t-expected.png:
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-31-t-expected.txt:
5:35 AM Changeset in webkit [78551] by christian@webkit.org
  • 33 edits in trunk/Source/WebKit/gtk

Source/WebKit/gtk: * webkit/webkitwebsettings.cpp: Correct a typo, it is

acces*s*ibility with two s.

Rubber-stamped by Gustavo Noronha Silva.

Source/WebKit/gtk/po: * *.po: Correct a typo in acces*s*ibility.

Rubber-stamped by Gustavo Noronha Silva.

5:31 AM Changeset in webkit [78550] by Adam Roben
  • 2 edits in trunk/Source/WebCore

Windows build fix after r78533

  • WebCore.vcproj/WebCore.vcproj: Fix bad XML syntax.
5:23 AM Changeset in webkit [78549] by christian@webkit.org
  • 2 edits in trunk/Source/WebKit/gtk/po

Unreviewed translation file.

Brazilian Portuguese Translation Update
https://bugs.webkit.org/show_bug.cgi?id=42833

  • pt_BR.po: Updated.
5:09 AM Changeset in webkit [78548] by commit-queue@webkit.org
  • 5 edits in trunk/Source/WebCore

2011-02-15 Gavin Peters <gavinp@chromium.org>

Reviewed by Antti Koivisto.

SharedBuffer::buffer() does not do what you think.
https://bugs.webkit.org/show_bug.cgi?id=54420

No new tests.

  • inspector/InspectorResourceAgent.cpp: (WebCore::InspectorResourceAgent::resourceContentBase64):
  • platform/SharedBuffer.h:
  • platform/image-decoders/jpeg/JPEGImageDecoder.cpp: (WebCore::JPEGImageReader::decode): (WebCore::JPEGImageDecoder::decode):
  • platform/image-decoders/webp/WEBPImageDecoder.cpp: (WebCore::WEBPImageDecoder::decode):
3:44 AM Changeset in webkit [78547] by mario@webkit.org
  • 2 edits in trunk/LayoutTests

2011-02-15 Mario Sanchez Prada <msanchez@igalia.com>

Unreviewed, unskip passing test after r78541.

r78499 causes assertion failure in http/tests/xmlhttprequest/cache-override.html
https://bugs.webkit.org/show_bug.cgi?id=54418

  • platform/gtk/Skipped: Unskip passing test.
3:33 AM Changeset in webkit [78546] by mario@webkit.org
  • 1 edit
    12 adds in trunk/LayoutTests

2011-02-15 Mario Sanchez Prada <msanchez@igalia.com>

Unreviewed, GTK baselines for 4 new tests added in r78396.

  • platform/gtk/fast/inline/inline-box-background-expected.checksum: Added.
  • platform/gtk/fast/inline/inline-box-background-expected.png: Added.
  • platform/gtk/fast/inline/inline-box-background-expected.txt: Added.
  • platform/gtk/fast/inline/inline-box-background-long-image-expected.checksum: Added.
  • platform/gtk/fast/inline/inline-box-background-long-image-expected.png: Added.
  • platform/gtk/fast/inline/inline-box-background-long-image-expected.txt: Added.
  • platform/gtk/fast/inline/inline-box-background-repeat-x-expected.checksum: Added.
  • platform/gtk/fast/inline/inline-box-background-repeat-x-expected.png: Added.
  • platform/gtk/fast/inline/inline-box-background-repeat-x-expected.txt: Added.
  • platform/gtk/fast/inline/inline-box-background-repeat-y-expected.checksum: Added.
  • platform/gtk/fast/inline/inline-box-background-repeat-y-expected.png: Added.
  • platform/gtk/fast/inline/inline-box-background-repeat-y-expected.txt: Added.
3:27 AM Changeset in webkit [78545] by levin@chromium.org
  • 3 edits in trunk/Tools

2011-02-15 David Levin <levin@chromium.org>

Reviewed by Shinichiro Hamaji.

check-webkit-style should do some detection for valid uses of WEBKIT_API (in chromium public api).
https://bugs.webkit.org/show_bug.cgi?id=52271

  • Scripts/webkitpy/style/checkers/cpp.py: Added the check for WEBKIT_API usage.
  • Scripts/webkitpy/style/checkers/cpp_unittest.py: Added tests.
3:26 AM Changeset in webkit [78544] by pfeldman@chromium.org
  • 1 edit
    1 move
    1 add in trunk/LayoutTests

2011-02-15 Pavel Feldman <pfeldman@chromium.org>

Not reviewed: update inspector expectation path for mac-leopard.

  • platform/mac-leopard/inspector/extensions/extensions-resources-expected.txt: Renamed from LayoutTests/platform/mac-leopard/inspector/extensions-resources-expected.txt.
3:16 AM Changeset in webkit [78543] by krit@webkit.org
  • 9 edits
    6 adds in trunk

2011-02-15 Dirk Schulze <krit@webkit.org>

Reviewed by Nikolas Zimmermann.

SVG animation doesn't support attribute value 'inherit'
https://bugs.webkit.org/show_bug.cgi?id=54410

Check support for 'inherit' and 'currentColor' on SVG animations.

  • svg/animations/animate-currentColor-expected.txt: Added.
  • svg/animations/animate-currentColor.html: Added.
  • svg/animations/animate-inherit-css-property-expected.txt: Added.
  • svg/animations/animate-inherit-css-property.html: Added.
  • svg/animations/script-tests/animate-currentColor.js: Added. (sample1): (sample2): (sample3): (executeTest):
  • svg/animations/script-tests/animate-inherit-css-property.js: Added. (sample1): (sample2): (sample3): (executeTest):

2011-02-15 Dirk Schulze <krit@webkit.org>

Reviewed by Nikolas Zimmermann.

SVG animation doesn't support attribute value 'inherit'
https://bugs.webkit.org/show_bug.cgi?id=54410

SVG animation does not support 'inherit' as value for CSS property animations. With the patch, SVG determines
if the attribute of the target element is an animatable CSS Property and computes the style during the
animation.

This fixes the following tests on the W3C test suite:

  • animate-elem-84-t.svg
  • animate-elem-85-t.svg

Tests: svg/animations/animate-currentColor.html

svg/animations/animate-inherit-css-property.html

  • svg/SVGAnimateElement.cpp: (WebCore::adjustForCurrentColor): (WebCore::adjustForInheritance): (WebCore::SVGAnimateElement::calculateAnimatedValue): When a property value is 'inherit' or 'currentColor' during the animation, get the computed style of the property since the values could be animated themselves. (WebCore::inheritsFromProperty): (WebCore::attributeValueIsCurrentColor): (WebCore::SVGAnimateElement::calculateFromAndToValues): Check if 'from', 'by' or 'to' value has the string 'inherit' or 'currentColor' and if the attribute supports one of these values. (WebCore::SVGAnimateElement::calculateFromAndByValues): Ditto.
  • svg/SVGAnimateElement.h:
  • svg/SVGAnimationElement.cpp: (WebCore::SVGAnimationElement::isTargetAttributeCSSProperty): Check if target element is stylable and the attribute is an animatable CSS property by using the CSS property map in SVGStyledElement. (WebCore::SVGAnimationElement::setTargetAttributeAnimatedValue): s/target/targetElement/ for consistency.
  • svg/SVGAnimationElement.h:
  • svg/SVGStyledElement.cpp: (WebCore::SVGStyledElement::isAnimatableCSSProperty): Checks if the CSS property is animatable.
  • svg/SVGStyledElement.h:
  • svg/animation/SMILTimeContainer.cpp: Use the new function isTargetAttributeCSSProperty to determine if the target element is stylable and the attribute is an animatable CSS property. (WebCore::SMILTimeContainer::baseValueFor):
3:06 AM Changeset in webkit [78542] by pfeldman@chromium.org
  • 2 edits in branches/chromium/597/WebCore/inspector/front-end

Reverting poor merge of http://trac.webkit.org/changeset/74261 that landed in M9 as http://trac.webkit.org/changeset/74265.
It resulted in the regression: Chrome 9 dev tools no longer lists resources pulled via XHR.

This has been approved by Anthony.
BUG=72834

Review URL: http://codereview.chromium.org/6528009

3:03 AM Changeset in webkit [78541] by Antti Koivisto
  • 2 edits in trunk/Source/WebCore

r78499 causes assertion failure in http/tests/xmlhttprequest/cache-override.html
https://bugs.webkit.org/show_bug.cgi?id=54418

Reviewed by Andreas Kling.

Check for zero buffer length.

  • platform/text/TextCodecUTF8.cpp:

(WebCore::TextCodecUTF8::decode):

2:55 AM Changeset in webkit [78540] by pfeldman@chromium.org
  • 4 edits in trunk/LayoutTests

2011-02-15 Pavel Feldman <pfeldman@chromium.org>

Not reviewed: inspector tests expectations update.

  • platform/chromium/inspector/console/console-format-collections-expected.txt:
  • platform/mac-wk2/Skipped:
  • platform/qt/Skipped:
2:49 AM Changeset in webkit [78539] by mnaganov@chromium.org
  • 51 adds in trunk/LayoutTests/platform/chromium-mac-leopard

2011-02-15 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Update image results for CSS tests on Mac Leopard.

2:35 AM Changeset in webkit [78538] by mnaganov@chromium.org
  • 1 edit in trunk/LayoutTests/platform/chromium/fast/dom/prototype-inheritance-expected.txt

2011-02-15 Mikhail Naganov <mnaganov@chromium.org>

[Chromium] Unreviewed test expectations update after r78525

LayoutTests/platform/chromium/fast/dom/prototype-inheritance-expected.txt

2:26 AM Changeset in webkit [78537] by mario@webkit.org
  • 2 edits in trunk/LayoutTests

2011-02-15 Mario Sanchez Prada <msanchez@igalia.com>

Unreviewed, skipping test timing out on SnowLeopard, GTK and Chromium bots.

r78499 causes assertion failure in http/tests/xmlhttprequest/cache-override.html
https://bugs.webkit.org/show_bug.cgi?id=54418

  • platform/gtk/Skipped: Skipped test.
2:22 AM Changeset in webkit [78536] by Csaba Osztrogonác
  • 2 edits in trunk/LayoutTests

Unreviewed.

[Qt]REGRESSION?(78477): inspector/timeline-network-resource.html and inspector/timeline-script-tag-1.html fail
https://bugs.webkit.org/show_bug.cgi?id=54442

  • platform/qt/Skipped: inspector/timeline-network-resource.html and inspector/timeline-script-tag-1.html added until fix.
2:02 AM Changeset in webkit [78535] by pfeldman@chromium.org
  • 36 edits
    4 copies
    199 moves
    17 adds
    1 delete in trunk/LayoutTests

2011-02-14 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Yury Semikhatsky.

Web Inspector: move rest of the tests off old harness.
https://bugs.webkit.org/show_bug.cgi?id=54437

  • http/tests/inspector-enabled/console-log-before-frame-navigation.html:
  • http/tests/inspector/change-iframe-src-expected.txt:
  • http/tests/inspector/change-iframe-src.html:
  • http/tests/inspector/console-resource-errors.html:
  • http/tests/inspector/console-websocket-error.html:
  • http/tests/inspector/console-xhr-logging.html:
  • http/tests/inspector/extensions-headers.html:
  • http/tests/inspector/extensions-resources-redirect-expected.txt:
  • http/tests/inspector/extensions-resources-redirect.html:
  • http/tests/inspector/extensions-test.js:
  • http/tests/inspector/inspect-iframe-from-different-domain-expected.txt:
  • http/tests/inspector/inspect-iframe-from-different-domain.html:
  • http/tests/inspector/inspector-test.js:
  • http/tests/inspector/inspector-test2.js: Removed.
  • http/tests/inspector/network-preflight-options.html:
  • http/tests/inspector/resource-har-conversion-expected.txt:
  • http/tests/inspector/resource-har-conversion.html:
  • http/tests/inspector/resource-parameters.html:
  • http/tests/inspector/resources/extension-main.html:
  • http/tests/inspector/resources/iframe-from-different-domain-data.html:
  • inspector/audits/audits-panel-functional-expected.txt: Renamed from LayoutTests/inspector/audits-panel-functional-expected.txt.
  • inspector/audits/audits-panel-functional.html: Renamed from LayoutTests/inspector/audits-panel-functional.html.
  • inspector/audits/audits-test.js: Renamed from LayoutTests/inspector/audits-tests2.js.
  • inspector/audits/resources/Ahem.ttf: Copied from LayoutTests/inspector/resources/Ahem.ttf.
  • inspector/audits/resources/abe.png: Copied from LayoutTests/inspector/resources/abe.png.
  • inspector/audits/resources/audits-script1.js: Renamed from LayoutTests/inspector/resources/audits-script1.js.
  • inspector/audits/resources/audits-script2.js: Renamed from LayoutTests/inspector/resources/audits-script2.js.
  • inspector/audits/resources/audits-style1.css: Copied from LayoutTests/inspector/resources/audits-style1.css.
  • inspector/console/command-line-api-expected.txt: Renamed from LayoutTests/inspector/command-line-api-expected.txt.
  • inspector/console/command-line-api.html: Renamed from LayoutTests/inspector/command-line-api.html.
  • inspector/console/console-api-on-call-frame-expected.txt: Renamed from LayoutTests/inspector/console-api-on-call-frame-expected.txt.
  • inspector/console/console-api-on-call-frame.html: Renamed from LayoutTests/inspector/console-api-on-call-frame.html.
  • inspector/console/console-assert-expected.txt: Renamed from LayoutTests/inspector/console-assert-expected.txt.
  • inspector/console/console-assert.html: Renamed from LayoutTests/inspector/console-assert.html.
  • inspector/console/console-clear-expected.txt: Renamed from LayoutTests/inspector/console-clear-expected.txt.
  • inspector/console/console-clear.html: Renamed from LayoutTests/inspector/console-clear.html.
  • inspector/console/console-command-clear-expected.txt: Renamed from LayoutTests/inspector/console-command-clear-expected.txt.
  • inspector/console/console-command-clear.html: Renamed from LayoutTests/inspector/console-command-clear.html.
  • inspector/console/console-dir-expected.txt: Renamed from LayoutTests/inspector/console-dir-expected.txt.
  • inspector/console/console-dir-global-expected.txt: Renamed from LayoutTests/inspector/console-dir-global-expected.txt.
  • inspector/console/console-dir-global.html: Renamed from LayoutTests/inspector/console-dir-global.html.
  • inspector/console/console-dir.html: Renamed from LayoutTests/inspector/console-dir.html.
  • inspector/console/console-dirxml-expected.txt: Renamed from LayoutTests/inspector/console-dirxml-expected.txt.
  • inspector/console/console-dirxml.html: Renamed from LayoutTests/inspector/console-dirxml.html.
  • inspector/console/console-eval-expected.txt: Renamed from LayoutTests/inspector/console-eval-expected.txt.
  • inspector/console/console-eval-global-expected.txt: Renamed from LayoutTests/inspector/console-eval-global-expected.txt.
  • inspector/console/console-eval-global.html: Renamed from LayoutTests/inspector/console-eval-global.html.
  • inspector/console/console-eval.html: Renamed from LayoutTests/inspector/console-eval.html.
  • inspector/console/console-format-collections-expected.txt: Renamed from LayoutTests/inspector/console-format-collections-expected.txt.
  • inspector/console/console-format-collections.html: Renamed from LayoutTests/inspector/console-format-collections.html.
  • inspector/console/console-format-expected.txt: Renamed from LayoutTests/inspector/console-format-expected.txt.
  • inspector/console/console-format.html: Renamed from LayoutTests/inspector/console-format.html.
  • inspector/console/console-log-before-inspector-open-expected.txt: Renamed from LayoutTests/inspector/console-log-before-inspector-open-expected.txt.
  • inspector/console/console-log-before-inspector-open.html: Renamed from LayoutTests/inspector/console-log-before-inspector-open.html.
  • inspector/console/console-log-native-funcs-expected.txt: Renamed from LayoutTests/inspector/console-log-native-funcs-expected.txt.
  • inspector/console/console-log-syntax-error-expected.txt: Renamed from LayoutTests/inspector/console-log-syntax-error-expected.txt.
  • inspector/console/console-log-syntax-error.html: Renamed from LayoutTests/inspector/console-log-syntax-error.html.
  • inspector/console/console-object-constructor-name-expected.txt: Renamed from LayoutTests/inspector/console-object-constructor-name-expected.txt.
  • inspector/console/console-object-constructor-name.html: Renamed from LayoutTests/inspector/console-object-constructor-name.html.
  • inspector/console/console-substituted-expected.txt: Renamed from LayoutTests/inspector/console-substituted-expected.txt.
  • inspector/console/console-substituted.html: Renamed from LayoutTests/inspector/console-substituted.html.
  • inspector/console/console-tests-expected.txt: Renamed from LayoutTests/inspector/console-tests-expected.txt.
  • inspector/console/console-tests.html: Renamed from LayoutTests/inspector/console-tests.html.
  • inspector/console/console-trace-expected.txt: Renamed from LayoutTests/inspector/console-trace-expected.txt.
  • inspector/console/console-trace-in-eval-expected.txt: Renamed from LayoutTests/inspector/console-trace-in-eval-expected.txt.
  • inspector/console/console-trace-in-eval.html: Renamed from LayoutTests/inspector/console-trace-in-eval.html.
  • inspector/console/console-trace.html: Renamed from LayoutTests/inspector/console-trace.html.
  • inspector/console/console-uncaught-exception-expected.txt: Renamed from LayoutTests/inspector/console-uncaught-exception-expected.txt.
  • inspector/console/console-uncaught-exception-in-eval-expected.txt: Renamed from LayoutTests/inspector/console-uncaught-exception-in-eval-expected.txt.
  • inspector/console/console-uncaught-exception-in-eval.html: Renamed from LayoutTests/inspector/console-uncaught-exception-in-eval.html.
  • inspector/console/console-uncaught-exception.html: Renamed from LayoutTests/inspector/console-uncaught-exception.html.
  • inspector/console/resources/syntax-error.js: Copied from LayoutTests/inspector/resources/syntax-error.js.
  • inspector/cookie-parser.html:
  • inspector/cookie-resource-match.html:
  • inspector/cpu-profiler-profiling.html:
  • inspector/debugger/debugger-autocontinue-on-syntax-error-expected.txt: Renamed from LayoutTests/inspector/debugger-autocontinue-on-syntax-error-expected.txt.
  • inspector/debugger/debugger-autocontinue-on-syntax-error.html: Renamed from LayoutTests/inspector/debugger-autocontinue-on-syntax-error.html.
  • inspector/debugger/debugger-breakpoints-not-activated-on-reload-expected.txt: Renamed from LayoutTests/inspector/debugger-breakpoints-not-activated-on-reload-expected.txt.
  • inspector/debugger/debugger-breakpoints-not-activated-on-reload.html: Renamed from LayoutTests/inspector/debugger-breakpoints-not-activated-on-reload.html.
  • inspector/debugger/debugger-cyclic-ref-expected.txt: Renamed from LayoutTests/inspector/debugger-cyclic-ref-expected.txt.
  • inspector/debugger/debugger-cyclic-ref.html: Renamed from LayoutTests/inspector/debugger-cyclic-ref.html.
  • inspector/debugger/debugger-eval-on-call-frame-expected.txt: Renamed from LayoutTests/inspector/debugger-eval-on-call-frame-expected.txt.
  • inspector/debugger/debugger-eval-on-call-frame.html: Renamed from LayoutTests/inspector/debugger-eval-on-call-frame.html.
  • inspector/debugger/debugger-eval-while-paused-expected.txt: Renamed from LayoutTests/inspector/debugger-eval-while-paused-expected.txt.
  • inspector/debugger/debugger-eval-while-paused.html: Renamed from LayoutTests/inspector/debugger-eval-while-paused.html.
  • inspector/debugger/debugger-expand-scope-expected.txt: Renamed from LayoutTests/inspector/debugger-expand-scope-expected.txt.
  • inspector/debugger/debugger-expand-scope.html: Renamed from LayoutTests/inspector/debugger-expand-scope.html.
  • inspector/debugger/debugger-no-nested-pause-expected.txt: Renamed from LayoutTests/inspector/debugger-no-nested-pause-expected.txt.
  • inspector/debugger/debugger-no-nested-pause.html: Renamed from LayoutTests/inspector/debugger-no-nested-pause.html.
  • inspector/debugger/debugger-pause-in-eval-script-expected.txt: Renamed from LayoutTests/inspector/debugger-pause-in-eval-script-expected.txt.
  • inspector/debugger/debugger-pause-in-eval-script.html: Renamed from LayoutTests/inspector/debugger-pause-in-eval-script.html.
  • inspector/debugger/debugger-pause-on-breakpoint-expected.txt: Renamed from LayoutTests/inspector/debugger-pause-on-breakpoint-expected.txt.
  • inspector/debugger/debugger-pause-on-breakpoint.html: Renamed from LayoutTests/inspector/debugger-pause-on-breakpoint.html.
  • inspector/debugger/debugger-pause-on-debugger-statement-expected.txt: Renamed from LayoutTests/inspector/debugger-pause-on-debugger-statement-expected.txt.
  • inspector/debugger/debugger-pause-on-debugger-statement.html: Renamed from LayoutTests/inspector/debugger-pause-on-debugger-statement.html.
  • inspector/debugger/debugger-pause-on-exception-expected.txt: Renamed from LayoutTests/inspector/debugger-pause-on-exception-expected.txt.
  • inspector/debugger/debugger-pause-on-exception.html: Renamed from LayoutTests/inspector/debugger-pause-on-exception.html.
  • inspector/debugger/debugger-proto-property-expected.txt: Renamed from LayoutTests/inspector/debugger-proto-property-expected.txt.
  • inspector/debugger/debugger-proto-property.html: Renamed from LayoutTests/inspector/debugger-proto-property.html.
  • inspector/debugger/debugger-scripts-expected.txt: Renamed from LayoutTests/inspector/debugger-scripts-expected.txt.
  • inspector/debugger/debugger-scripts.html: Renamed from LayoutTests/inspector/debugger-scripts.html.
  • inspector/debugger/debugger-step-in-expected.txt: Renamed from LayoutTests/inspector/debugger-step-in-expected.txt.
  • inspector/debugger/debugger-step-in.html: Renamed from LayoutTests/inspector/debugger-step-in.html.
  • inspector/debugger/debugger-step-out-expected.txt: Renamed from LayoutTests/inspector/debugger-step-out-expected.txt.
  • inspector/debugger/debugger-step-out.html: Renamed from LayoutTests/inspector/debugger-step-out.html.
  • inspector/debugger/debugger-step-over-expected.txt: Renamed from LayoutTests/inspector/debugger-step-over-expected.txt.
  • inspector/debugger/debugger-step-over.html: Renamed from LayoutTests/inspector/debugger-step-over.html.
  • inspector/debugger/debugger-suspend-active-dom-objects-expected.txt: Renamed from LayoutTests/inspector/debugger-suspend-active-dom-objects-expected.txt.
  • inspector/debugger/debugger-suspend-active-dom-objects.html: Renamed from LayoutTests/inspector/debugger-suspend-active-dom-objects.html.
  • inspector/debugger/dom-breakpoints-expected.txt: Renamed from LayoutTests/inspector/dom-breakpoints-expected.txt.
  • inspector/debugger/dom-breakpoints.html: Renamed from LayoutTests/inspector/dom-breakpoints.html.
  • inspector/debugger/resources/syntax-error.js: Renamed from LayoutTests/inspector/resources/syntax-error.js.
  • inspector/elements/elements-delete-inline-style-expected.txt: Renamed from LayoutTests/inspector/elements-delete-inline-style-expected.txt.
  • inspector/elements/elements-delete-inline-style.html: Renamed from LayoutTests/inspector/elements-delete-inline-style.html.
  • inspector/elements/elements-img-tooltip-expected.txt: Renamed from LayoutTests/inspector/elements-img-tooltip-expected.txt.
  • inspector/elements/elements-img-tooltip.html: Renamed from LayoutTests/inspector/elements-img-tooltip.html.
  • inspector/elements/elements-panel-limited-children-expected.txt: Renamed from LayoutTests/inspector/elements-panel-limited-children-expected.txt.
  • inspector/elements/elements-panel-limited-children.html: Renamed from LayoutTests/inspector/elements-panel-limited-children.html.
  • inspector/elements/elements-panel-rewrite-href-expected.txt: Renamed from LayoutTests/inspector/elements-panel-rewrite-href-expected.txt.
  • inspector/elements/elements-panel-rewrite-href.html: Renamed from LayoutTests/inspector/elements-panel-rewrite-href.html.
  • inspector/elements/elements-panel-search-expected.txt: Renamed from LayoutTests/inspector/elements-panel-search-expected.txt.
  • inspector/elements/elements-panel-search.html: Renamed from LayoutTests/inspector/elements-panel-search.html.
  • inspector/elements/elements-panel-selection-on-refresh-expected.txt: Renamed from LayoutTests/inspector/elements-panel-selection-on-refresh-expected.txt.
  • inspector/elements/elements-panel-selection-on-refresh.html: Renamed from LayoutTests/inspector/elements-panel-selection-on-refresh.html.
  • inspector/elements/elements-panel-structure-expected.txt: Renamed from LayoutTests/inspector/elements-panel-structure-expected.txt.
  • inspector/elements/elements-panel-structure.html: Renamed from LayoutTests/inspector/elements-panel-structure.html.
  • inspector/elements/elements-panel-styles-expected.txt: Renamed from LayoutTests/inspector/elements-panel-styles-expected.txt.
  • inspector/elements/elements-panel-styles.html: Renamed from LayoutTests/inspector/elements-panel-styles.html.
  • inspector/elements/elements-panel-xhtml-structure-expected.txt: Renamed from LayoutTests/inspector/elements-panel-xhtml-structure-expected.txt.
  • inspector/elements/elements-panel-xhtml-structure.xhtml: Renamed from LayoutTests/inspector/elements-panel-xhtml-structure.xhtml.
  • inspector/elements/resources/elements-panel-styles.css: Renamed from LayoutTests/inspector/resources/elements-panel-styles.css.
  • inspector/evaluate-in-page.html:
  • inspector/extensions/extensions-api-expected.txt: Renamed from LayoutTests/inspector/extensions-api-expected.txt.
  • inspector/extensions/extensions-api.html: Renamed from LayoutTests/inspector/extensions-api.html.
  • inspector/extensions/extensions-audits-api-expected.txt: Renamed from LayoutTests/inspector/extensions-audits-api-expected.txt.
  • inspector/extensions/extensions-audits-api.html: Renamed from LayoutTests/inspector/extensions-audits-api.html.
  • inspector/extensions/extensions-audits-expected.txt: Renamed from LayoutTests/inspector/extensions-audits-expected.txt.
  • inspector/extensions/extensions-audits-tests.js: Renamed from LayoutTests/inspector/extensions-audits-tests.js.
  • inspector/extensions/extensions-audits.html: Renamed from LayoutTests/inspector/extensions-audits.html.
  • inspector/extensions/extensions-eval-expected.txt: Renamed from LayoutTests/inspector/extensions-eval-expected.txt.
  • inspector/extensions/extensions-eval.html: Renamed from LayoutTests/inspector/extensions-eval.html.
  • inspector/extensions/extensions-events-expected.txt: Renamed from LayoutTests/inspector/extensions-events-expected.txt.
  • inspector/extensions/extensions-events.html: Renamed from LayoutTests/inspector/extensions-events.html.
  • inspector/extensions/extensions-expected.txt: Renamed from LayoutTests/inspector/extensions-expected.txt.
  • inspector/extensions/extensions-resources-expected.txt: Renamed from LayoutTests/inspector/extensions-resources-expected.txt.
  • inspector/extensions/extensions-resources.html: Renamed from LayoutTests/inspector/extensions-resources.html.
  • inspector/extensions/extensions.html: Renamed from LayoutTests/inspector/extensions.html.
  • inspector/extensions/resources/Ahem.ttf: Renamed from LayoutTests/inspector/resources/Ahem.ttf.
  • inspector/extensions/resources/abe.png: Renamed from LayoutTests/inspector/resources/abe.png.
  • inspector/extensions/resources/audits-style1.css: Renamed from LayoutTests/inspector/resources/audits-style1.css.
  • inspector/inspected-objects-not-overriden.html:
  • inspector/report-API-errors.html:
  • inspector/report-protocol-errors.html:
  • inspector/storage-panel-dom-storage.html:
  • inspector/styles/resources/styles-iframe-data.html: Renamed from LayoutTests/inspector/resources/styles-iframe-data.html.
  • inspector/styles/resources/styles-new-API-1.css: Renamed from LayoutTests/inspector/resources/styles-new-API-1.css.
  • inspector/styles/resources/styles-new-API.css: Renamed from LayoutTests/inspector/resources/styles-new-API.css.
  • inspector/styles/resources/styles-source-lines-inline-iframe.html: Renamed from LayoutTests/inspector/resources/styles-source-lines-inline-iframe.html.
  • inspector/styles/resources/styles-source-offsets.css: Renamed from LayoutTests/inspector/resources/styles-source-offsets.css.
  • inspector/styles/resources/styles-url-linkify-iframe.html: Renamed from LayoutTests/inspector/resources/styles-url-linkify-iframe.html.
  • inspector/styles/resources/styles-url-linkify.css: Renamed from LayoutTests/inspector/resources/styles-url-linkify.css.
  • inspector/styles/styles-add-blank-property-expected.txt: Renamed from LayoutTests/inspector/styles-add-blank-property-expected.txt.
  • inspector/styles/styles-add-blank-property.html: Renamed from LayoutTests/inspector/styles-add-blank-property.html.
  • inspector/styles/styles-computed-trace-expected.txt: Renamed from LayoutTests/inspector/styles-computed-trace-expected.txt.
  • inspector/styles/styles-computed-trace.html: Renamed from LayoutTests/inspector/styles-computed-trace.html.
  • inspector/styles/styles-disable-inherited-expected.txt: Renamed from LayoutTests/inspector/styles-disable-inherited-expected.txt.
  • inspector/styles/styles-disable-inherited.html: Renamed from LayoutTests/inspector/styles-disable-inherited.html.
  • inspector/styles/styles-disable-then-change-expected.txt: Renamed from LayoutTests/inspector/styles-disable-then-change-expected.txt.
  • inspector/styles/styles-disable-then-change.html: Renamed from LayoutTests/inspector/styles-disable-then-change.html.
  • inspector/styles/styles-disable-then-delete-expected.txt: Renamed from LayoutTests/inspector/styles-disable-then-delete-expected.txt.
  • inspector/styles/styles-disable-then-delete.html: Renamed from LayoutTests/inspector/styles-disable-then-delete.html.
  • inspector/styles/styles-disable-then-enable-expected.txt: Renamed from LayoutTests/inspector/styles-disable-then-enable-expected.txt.
  • inspector/styles/styles-disable-then-enable.html: Renamed from LayoutTests/inspector/styles-disable-then-enable.html.
  • inspector/styles/styles-iframe-expected.txt: Renamed from LayoutTests/inspector/styles-iframe-expected.txt.
  • inspector/styles/styles-iframe.html: Renamed from LayoutTests/inspector/styles-iframe.html.
  • inspector/styles/styles-new-API-expected.txt: Renamed from LayoutTests/inspector/styles-new-API-expected.txt.
  • inspector/styles/styles-new-API.html: Renamed from LayoutTests/inspector/styles-new-API.html.
  • inspector/styles/styles-source-lines-expected.txt: Renamed from LayoutTests/inspector/styles-source-lines-expected.txt.
  • inspector/styles/styles-source-lines-inline-expected.txt: Renamed from LayoutTests/inspector/styles-source-lines-inline-expected.txt.
  • inspector/styles/styles-source-lines-inline.html: Renamed from LayoutTests/inspector/styles-source-lines-inline.html.
  • inspector/styles/styles-source-lines.html: Renamed from LayoutTests/inspector/styles-source-lines.html.
  • inspector/styles/styles-source-offsets-expected.txt: Renamed from LayoutTests/inspector/styles-source-offsets-expected.txt.
  • inspector/styles/styles-source-offsets.html: Renamed from LayoutTests/inspector/styles-source-offsets.html.
  • inspector/styles/styles-url-linkify-expected.txt: Renamed from LayoutTests/inspector/styles-url-linkify-expected.txt.
  • inspector/styles/styles-url-linkify.html: Renamed from LayoutTests/inspector/styles-url-linkify.html.
  • inspector/syntax-highlight-css.html:
  • inspector/syntax-highlight-html.html:
  • inspector/syntax-highlight-javascript.html:
  • inspector/timeline/resources/timeline-iframe-data.html: Renamed from LayoutTests/inspector/resources/timeline-iframe-data.html.
  • inspector/timeline/timeline-enum-stability-expected.txt: Renamed from LayoutTests/inspector/timeline-enum-stability-expected.txt.
  • inspector/timeline/timeline-enum-stability.html: Renamed from LayoutTests/inspector/timeline-enum-stability.html.
  • inspector/timeline/timeline-event-dispatch-expected.txt: Renamed from LayoutTests/inspector/timeline-event-dispatch-expected.txt.
  • inspector/timeline/timeline-event-dispatch.html: Renamed from LayoutTests/inspector/timeline-event-dispatch.html.
  • inspector/timeline/timeline-layout-expected.txt: Renamed from LayoutTests/inspector/timeline-layout-expected.txt.
  • inspector/timeline/timeline-layout.html: Renamed from LayoutTests/inspector/timeline-layout.html.
  • inspector/timeline/timeline-mark-timeline-expected.txt: Renamed from LayoutTests/inspector/timeline-mark-timeline-expected.txt.
  • inspector/timeline/timeline-mark-timeline.html: Renamed from LayoutTests/inspector/timeline-mark-timeline.html.
  • inspector/timeline/timeline-network-resource-expected.txt: Renamed from LayoutTests/inspector/timeline-network-resource-expected.txt.
  • inspector/timeline/timeline-network-resource.html: Renamed from LayoutTests/inspector/timeline-network-resource.html.
  • inspector/timeline/timeline-network-resource.js: Renamed from LayoutTests/inspector/timeline-network-resource.js.
  • inspector/timeline/timeline-paint-expected.txt: Renamed from LayoutTests/inspector/timeline-paint-expected.txt.
  • inspector/timeline/timeline-paint.html: Renamed from LayoutTests/inspector/timeline-paint.html.
  • inspector/timeline/timeline-parse-html-expected.txt: Renamed from LayoutTests/inspector/timeline-parse-html-expected.txt.
  • inspector/timeline/timeline-parse-html.html: Renamed from LayoutTests/inspector/timeline-parse-html.html.
  • inspector/timeline/timeline-recalculate-styles-expected.txt: Renamed from LayoutTests/inspector/timeline-recalculate-styles-expected.txt.
  • inspector/timeline/timeline-recalculate-styles.html: Renamed from LayoutTests/inspector/timeline-recalculate-styles.html.
  • inspector/timeline/timeline-script-tag-1-expected.txt: Renamed from LayoutTests/inspector/timeline-script-tag-1-expected.txt.
  • inspector/timeline/timeline-script-tag-1.html: Renamed from LayoutTests/inspector/timeline-script-tag-1.html.
  • inspector/timeline/timeline-script-tag-2-expected.txt: Renamed from LayoutTests/inspector/timeline-script-tag-2-expected.txt.
  • inspector/timeline/timeline-script-tag-2.html: Renamed from LayoutTests/inspector/timeline-script-tag-2.html.
  • inspector/timeline/timeline-script-tag-2.js: Renamed from LayoutTests/inspector/timeline-script-tag-2.js.
  • inspector/timeline/timeline-test.js: Renamed from LayoutTests/inspector/timeline-test.js.
  • inspector/timeline/timeline-trivial-expected.txt: Renamed from LayoutTests/inspector/timeline-trivial-expected.txt.
  • inspector/timeline/timeline-trivial.html: Renamed from LayoutTests/inspector/timeline-trivial.html.
  • platform/chromium/inspector/console/console-dir-expected.txt: Renamed from LayoutTests/platform/chromium/inspector/console-dir-expected.txt.
  • platform/chromium/inspector/console/console-dir-global-expected.txt: Renamed from LayoutTests/platform/chromium/inspector/console-dir-global-expected.txt.
  • platform/chromium/inspector/console/console-eval-global-expected.txt: Renamed from LayoutTests/platform/chromium/inspector/console-eval-global-expected.txt.
  • platform/chromium/inspector/console/console-format-collections-expected.txt: Renamed from LayoutTests/platform/chromium/inspector/console-format-collections-expected.txt.
  • platform/chromium/inspector/console/console-format-expected.txt: Renamed from LayoutTests/platform/chromium/inspector/console-format-expected.txt.
  • platform/chromium/inspector/console/console-log-native-funcs-expected.txt: Renamed from LayoutTests/platform/chromium/inspector/console-log-native-funcs-expected.txt.
  • platform/chromium/inspector/console/console-log-syntax-error-expected.txt: Renamed from LayoutTests/platform/chromium/inspector/console-log-syntax-error-expected.txt.
  • platform/chromium/inspector/console/console-object-constructor-name-expected.txt: Renamed from LayoutTests/platform/chromium/inspector/console-object-constructor-name-expected.txt.
  • platform/chromium/inspector/console/console-trace-in-eval-expected.txt: Renamed from LayoutTests/platform/chromium/inspector/console-trace-in-eval-expected.txt.
  • platform/chromium/inspector/console/console-uncaught-exception-expected.txt: Renamed from LayoutTests/platform/chromium/inspector/console-uncaught-exception-expected.txt.
  • platform/chromium/inspector/console/console-uncaught-exception-in-eval-expected.txt: Renamed from LayoutTests/platform/chromium/inspector/console-uncaught-exception-in-eval-expected.txt.
  • platform/chromium/inspector/debugger/debugger-autocontinue-on-syntax-error-expected.txt: Renamed from LayoutTests/platform/chromium/inspector/debugger-autocontinue-on-syntax-error-expected.txt.
  • platform/chromium/inspector/debugger/debugger-expand-scope-expected.txt: Renamed from LayoutTests/platform/chromium/inspector/debugger-expand-scope-expected.txt.
  • platform/chromium/inspector/debugger/debugger-pause-on-exception-expected.txt: Renamed from LayoutTests/platform/chromium/inspector/debugger-pause-on-exception-expected.txt.
  • platform/chromium/inspector/debugger/debugger-step-in-expected.txt: Renamed from LayoutTests/platform/chromium/inspector/debugger-step-in-expected.txt.
  • platform/chromium/inspector/timeline/timeline-event-dispatch-expected.txt: Renamed from LayoutTests/platform/chromium/inspector/timeline-event-dispatch-expected.txt.
  • platform/chromium/inspector/timeline/timeline-mark-timeline-expected.txt: Renamed from LayoutTests/platform/chromium/inspector/timeline-mark-timeline-expected.txt.
  • platform/chromium/inspector/timeline/timeline-network-resource-expected.txt: Renamed from LayoutTests/platform/chromium/inspector/timeline-network-resource-expected.txt.
  • platform/chromium/inspector/timeline/timeline-paint-expected.txt: Renamed from LayoutTests/platform/chromium/inspector/timeline-paint-expected.txt.
  • platform/chromium/inspector/timeline/timeline-parse-html-expected.txt: Renamed from LayoutTests/platform/chromium/inspector/timeline-parse-html-expected.txt.
  • platform/chromium/test_expectations.txt:
  • platform/gtk/Skipped:
  • platform/mac/Skipped:
  • platform/qt/Skipped:
  • platform/win/Skipped:
1:57 AM Changeset in webkit [78534] by morrita@google.com
  • 2 edits in trunk/Source/WebCore

2011-02-15 MORITA Hajime <morrita@google.com>

Unreviewed build fix.

  • page/EditorClient.h: Changed GrammarDetail forward declaration from class to struct.
12:28 AM Changeset in webkit [78533] by morrita@google.com
  • 38 edits
    1 add in trunk/Source

2011-01-26 MORITA Hajime <morrita@google.com>

Reviewed by Ryosuke Niwa.

Refactoring: Extract TextCheckerClient from EditorClient
https://bugs.webkit.org/show_bug.cgi?id=53213

Created new abstract class TextCheckerClient. The class has
spellcheck related API which is split.
This is the first step for sharing spell-checking codebase
between ports. A standalone TextCheckerClient implementation
should be done in future changes.

No new tests. No behavioral change.

  • GNUmakefile.am:
  • WebCore.gypi:
  • WebCore.pro:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.xcodeproj/project.pbxproj:
  • accessibility/mac/AccessibilityObjectWrapper.mm: (AXAttributeStringSetSpelling):
  • editing/Editor.cpp: Replacing some client() call with textChecker(). (WebCore::Editor::textChecker): Added. (WebCore::Editor::ignoreSpelling): (WebCore::Editor::learnSpelling): (WebCore::Editor::isSelectionMisspelled): (WebCore::Editor::guessesForMisspelledSelection): (WebCore::Editor::markMisspellingsAfterTypingToWord): (WebCore::Editor::markAllMisspellingsAndBadGrammarInRanges): (WebCore::Editor::correctionPanelTimerFired):
  • editing/Editor.h:
  • editing/SpellChecker.cpp: (WebCore::SpellChecker::SpellChecker):
  • editing/TextCheckingHelper.cpp: Replacing some client() call with textChecker(). (WebCore::TextCheckingHelper::findFirstMisspelling): (WebCore::TextCheckingHelper::findFirstMisspellingOrBadGrammar): (WebCore::TextCheckingHelper::findFirstBadGrammar): (WebCore::TextCheckingHelper::guessesForMisspelledOrUngrammaticalRange):
  • loader/EmptyClients.h: Added EmptyTextCheckerClient. (WebCore::EmptyTextCheckerClient::ignoreWordInSpellDocument): (WebCore::EmptyTextCheckerClient::learnWord): (WebCore::EmptyTextCheckerClient::checkSpellingOfString): (WebCore::EmptyTextCheckerClient::getAutoCorrectSuggestionForMisspelledWord): (WebCore::EmptyTextCheckerClient::checkGrammarOfString): (WebCore::EmptyTextCheckerClient::checkTextOfParagraph): (WebCore::EmptyTextCheckerClient::getGuessesForWord): (WebCore::EmptyTextCheckerClient::requestCheckingOfString): (WebCore::EmptyEditorClient::textChecker):
  • page/EditorClient.h: Extracted TextCheckerClient.
  • page/Page.h:
  • platform/text/TextCheckerClient.h: Added. (WebCore::TextCheckerClient::~TextCheckerClient):

2011-01-26 MORITA Hajime <morrita@google.com>

Reviewed by Ryosuke Niwa.

Refactoring: Extract TextCheckerClient from EditorClient
https://bugs.webkit.org/show_bug.cgi?id=53213

  • src/EditorClientImpl.h: (WebKit::EditorClientImpl::textChecker):

2011-01-26 MORITA Hajime <morrita@google.com>

Reviewed by Ryosuke Niwa.

Refactoring: Extract TextCheckerClient from EditorClient
https://bugs.webkit.org/show_bug.cgi?id=53213

  • WebCoreSupport/EditorClientEfl.h: (WebCore::EditorClientEfl::textChecker):

2011-01-26 MORITA Hajime <morrita@google.com>

Reviewed by Ryosuke Niwa.

Refactoring: Extract TextCheckerClient from EditorClient
https://bugs.webkit.org/show_bug.cgi?id=53213

  • WebCoreSupport/EditorClientGtk.h: (WebKit::EditorClient::textChecker):

2011-01-26 MORITA Hajime <morrita@google.com>

Reviewed by Ryosuke Niwa.

Refactoring: Extract TextCheckerClient from EditorClient
https://bugs.webkit.org/show_bug.cgi?id=53213

  • WebCoreSupport/EditorClientHaiku.h: (WebCore::EditorClientHaiku::textChecker):

2011-01-26 MORITA Hajime <morrita@google.com>

Reviewed by Ryosuke Niwa.

Refactoring: Extract TextCheckerClient from EditorClient
https://bugs.webkit.org/show_bug.cgi?id=53213

  • WebCoreSupport/WebEditorClient.h: (WebEditorClient::textChecker):

2011-01-26 MORITA Hajime <morrita@google.com>

Reviewed by Ryosuke Niwa.

Refactoring: Extract TextCheckerClient from EditorClient
https://bugs.webkit.org/show_bug.cgi?id=53213

  • WebCoreSupport/EditorClientQt.h: (WebCore::EditorClientQt::textChecker):

2011-01-26 MORITA Hajime <morrita@google.com>

Reviewed by Ryosuke Niwa.

Refactoring: Extract TextCheckerClient from EditorClient
https://bugs.webkit.org/show_bug.cgi?id=53213

  • WebCoreSupport/WebEditorClient.h: (WebEditorClient::textChecker):

2011-01-26 MORITA Hajime <morrita@google.com>

Reviewed by Ryosuke Niwa.

Refactoring: Extract TextCheckerClient from EditorClient
https://bugs.webkit.org/show_bug.cgi?id=53213

  • WebCoreSupport/EditorClientWinCE.h: (WebKit::EditorClientWinCE::textChecker):

2011-01-26 MORITA Hajime <morrita@google.com>

Reviewed by Ryosuke Niwa.

Refactoring: Extract TextCheckerClient from EditorClient
https://bugs.webkit.org/show_bug.cgi?id=53213

  • WebKitSupport/EditorClientWx.h: (WebCore::EditorClientWx::textChecker):

2011-01-26 MORITA Hajime <morrita@google.com>

Reviewed by Ryosuke Niwa.

Refactoring: Extract TextCheckerClient from EditorClient
https://bugs.webkit.org/show_bug.cgi?id=53213

  • Shared/WebCoreArgumentCoders.h:
  • UIProcess/TextChecker.h:
  • WebProcess/WebCoreSupport/WebEditorClient.h: (WebKit::WebEditorClient::textChecker):
  • Scripts/webkit2/messages.py: Re-arranged the include file
12:21 AM Changeset in webkit [78532] by rniwa@webkit.org
  • 34 edits in trunk/Source

2011-02-07 Ryosuke Niwa <rniwa@webkit.org>

Reviewed by Adam Barth.

Add EditorClient callbacks to override isDOMPasteAllowed and javaScriptCanAccessClipboard
https://bugs.webkit.org/show_bug.cgi?id=52417

Added two callback functions, canCopyCut and canPaste to EditorClient. They are currently
not implemented.

  • src/EditorClientImpl.cpp: (WebKit::EditorClientImpl::canCopyCut): Added. (WebKit::EditorClientImpl::canPaste): Added.
  • src/EditorClientImpl.h:

2011-02-07 Ryosuke Niwa <rniwa@webkit.org>

Reviewed by Adam Barth.

Add EditorClient callbacks to override isDOMPasteAllowed and javaScriptCanAccessClipboard
https://bugs.webkit.org/show_bug.cgi?id=52417

Added two callback functions, canCopyCut and canPaste to EditorClient. They are currently
not implemented.

  • WebCoreSupport/EditorClientQt.cpp: (WebCore::EditorClientQt::canCopyCut): Added. (WebCore::EditorClientQt::canPaste): Added.
  • WebCoreSupport/EditorClientQt.h:

2011-02-07 Ryosuke Niwa <rniwa@webkit.org>

Reviewed by Adam Barth.

Add EditorClient callbacks to override isDOMPasteAllowed and javaScriptCanAccessClipboard
https://bugs.webkit.org/show_bug.cgi?id=52417

Added two callback functions, canCopyCut and canPaste to EditorClient. They are currently
not implemented.

  • WebCoreSupport/EditorClientGtk.cpp: (WebKit::EditorClient::canCopyCut): Added. (WebKit::EditorClient::canPaste): Added.
  • WebCoreSupport/EditorClientGtk.h:

2011-02-07 Ryosuke Niwa <rniwa@webkit.org>

Reviewed by Adam Barth.

Add EditorClient callbacks to override isDOMPasteAllowed and javaScriptCanAccessClipboard
https://bugs.webkit.org/show_bug.cgi?id=52417

Added two callback functions, canCopyCut and canPaste to EditorClient. They are currently
not implemented.

  • WebCoreSupport/WebEditorClient.cpp: (WebEditorClient::canCopyCut): Added. (WebEditorClient::canPaste): Added.
  • WebCoreSupport/WebEditorClient.h:

2011-02-07 Ryosuke Niwa <rniwa@webkit.org>

Reviewed by Adam Barth.

Add EditorClient callbacks to override isDOMPasteAllowed and javaScriptCanAccessClipboard
https://bugs.webkit.org/show_bug.cgi?id=52417

Added two callback functions, canCopyCut and canPaste to EditorClient. They are currently
not implemented.

  • WebKitSupport/EditorClientWx.cpp: (WebCore::EditorClientWx::canCopyCut): Added. (WebCore::EditorClientWx::canPaste): Added.
  • WebKitSupport/EditorClientWx.h:

2011-02-07 Ryosuke Niwa <rniwa@webkit.org>

Reviewed by Adam Barth.

Add EditorClient callbacks to override isDOMPasteAllowed and javaScriptCanAccessClipboard
https://bugs.webkit.org/show_bug.cgi?id=52417

Added two callback functions, canCopyCut and canPaste to EditorClient. They are currently
not implemented.

  • WebCoreSupport/WebEditorClient.h:
  • WebCoreSupport/WebEditorClient.mm: (WebEditorClient::canCopyCut): Added. (WebEditorClient::canPaste): Added.

2011-02-07 Ryosuke Niwa <rniwa@webkit.org>

Reviewed by Adam Barth.

Add EditorClient callbacks to override isDOMPasteAllowed and javaScriptCanAccessClipboard
https://bugs.webkit.org/show_bug.cgi?id=52417

Added two callback functions, canCopyCut and canPaste to EditorClient. They are currently
not implemented.

  • WebCoreSupport/EditorClientHaiku.cpp: (WebCore::EditorClientHaiku::canCopyCut): Added. (WebCore::EditorClientHaiku::canPaste): Added.
  • WebCoreSupport/EditorClientHaiku.h:

2011-02-07 Ryosuke Niwa <rniwa@webkit.org>

Reviewed by Adam Barth.

Add EditorClient callbacks to override isDOMPasteAllowed and javaScriptCanAccessClipboard
https://bugs.webkit.org/show_bug.cgi?id=52417

Added two callback functions, canCopyCut and canPaste to EditorClient. They are currently
not implemented.

  • WebCoreSupport/EditorClientWinCE.cpp: (WebKit::EditorClientWinCE::canCopyCut): Added. (WebKit::EditorClientWinCE::canPaste): Added.
  • WebCoreSupport/EditorClientWinCE.h:

2011-02-07 Ryosuke Niwa <rniwa@webkit.org>

Reviewed by Adam Barth.

Add EditorClient callbacks to override isDOMPasteAllowed and javaScriptCanAccessClipboard
https://bugs.webkit.org/show_bug.cgi?id=52417

Added two callback functions, canCopyCut and canPaste to EditorClient. They are currently
not implemented.

  • WebCoreSupport/EditorClientEfl.cpp: (WebCore::EditorClientEfl::canCopyCut): Added. (WebCore::EditorClientEfl::canPaste): Added.
  • WebCoreSupport/EditorClientEfl.h:

2011-02-07 Ryosuke Niwa <rniwa@webkit.org>

Reviewed by Adam Barth.

Add EditorClient callbacks to override isDOMPasteAllowed and javaScriptCanAccessClipboard
https://bugs.webkit.org/show_bug.cgi?id=52417

Added two callback functions, canCopyCut and canPaste to EditorClient. These functions
returns true iff the current frame should be able to copy/cut and paste respectively.
They take the default value determined by isDOMPasteAllowed and javaScriptCanAccessClipboard.

These callbacks allows embedders to decide whether or not copy/cut/paste should be enabled
per frame and thus per origin rather than per page.

No new tests are added since this is a WebKit/WebCore interface change.

  • editing/EditorCommand.cpp: (WebCore::supportedCopyCut): Calls canCopyCut. (WebCore::supportedPaste): Calls canPaste.
  • loader/EmptyClients.h: (WebCore::EmptyEditorClient::canCopyCut): Added. (WebCore::EmptyEditorClient::canPaste): Added.
  • page/EditorClient.h:

2011-02-07 Ryosuke Niwa <rniwa@webkit.org>

Reviewed by Adam Barth.

Add EditorClient callbacks to override isDOMPasteAllowed and javaScriptCanAccessClipboard
https://bugs.webkit.org/show_bug.cgi?id=52417

Added two callback functions, canCopyCut and canPaste to EditorClient. They are currently
not implemented.

  • WebProcess/WebCoreSupport/WebEditorClient.cpp: (WebKit::WebEditorClient::canCopyCut): Added. (WebKit::WebEditorClient::canPaste): Added.
  • WebProcess/WebCoreSupport/WebEditorClient.h:
Note: See TracTimeline for information about the timeline view.