Timeline



May 24, 2010:

11:54 PM Changeset in webkit [60131] by tony@chromium.org
  • 2 edits in trunk/WebKit/chromium

2010-05-24 Tony Chang <tony@chromium.org>

Reviewed by David Levin.

[chromium] Fix zoom tests after r60104
https://bugs.webkit.org/show_bug.cgi?id=39645

m_zoomFactor moved from Frame to FrameView. FrameView has separate
notions of page zoom and text zoom. In my hurried compile fix, I
assumed that m_zoomFactor was for page zoom, but it's not always.

  • src/WebViewImpl.cpp: (WebKit::WebViewImpl::setZoomLevel):
11:47 PM Changeset in webkit [60130] by abarth@webkit.org
  • 6 edits in trunk

2010-05-24 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

First cut at HTML5 entities
https://bugs.webkit.org/show_bug.cgi?id=39649

Update the expected results to show the new passing tests. Yay!

  • html5lib/webkit-runner-expected-html5.txt:

2010-05-24 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

First cut at HTML5 entities
https://bugs.webkit.org/show_bug.cgi?id=39649

There's still a bunch more work to do to get our entity parsing fully
up to spec. This patch contains the bulk of the implementation
however.

The basics are covered by the existing html5lib tests. I'll add more
detailed tests in a followup patch.

  • html/HTML5Lexer.cpp: (WebCore::HTMLNames::legalEntityFor): (WebCore::HTMLNames::isHexDigit): (WebCore::HTMLNames::isAlphaNumeric): (WebCore::HTMLNames::uncomsumeCharacters): (WebCore::HTML5Lexer::consumeEntity): (WebCore::HTML5Lexer::nextToken): (WebCore::HTML5Lexer::haveBufferedCharacterToken):
  • html/HTML5Lexer.h: (WebCore::HTML5Lexer::):
  • html/HTML5Tokenizer.cpp: (WebCore::HTML5Tokenizer::write):
11:10 PM Changeset in webkit [60129] by tkent@chromium.org
  • 2 edits in trunk/WebKit/chromium

Unreviewed. Sort features.

  • features.gypi:
10:03 PM Changeset in webkit [60128] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-24 Tasuku Suzuki <tasuku.suzuki@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Fix compilation with QT_NO_TEMPORARYFILE
https://bugs.webkit.org/show_bug.cgi?id=38324

  • platform/qt/FileSystemQt.cpp: (WebCore::openTemporaryFile):
9:48 PM Changeset in webkit [60127] by adachan@apple.com
  • 2 edits in trunk/WebKit2

Build fix for 32bit systems.

Rubber-stamped by Mark Rowe.

  • mac/WebKit2.exp:
9:40 PM Changeset in webkit [60126] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-24 Andrey Kosyakov <caseq@chromium.org>

Reviewed by Yury Semikhatsky.

Fixed handling of bare '/' and '?' at console prompt.
https://bugs.webkit.org/show_bug.cgi?id=39585

  • inspector/front-end/inspector.js: (WebInspector.documentKeyDown):
9:32 PM Changeset in webkit [60125] by barraclough@apple.com
  • 10 edits in trunk/JavaScriptCore

Bug 39643 - Clean up code generation in the JIT of stub function calls for op_call.

Reviewed by Sam Weinig.

Presently, as soon as op-call strays off the hot path we set up a set of values on
the stack to be passed as arguments to cti functions, in case any should be called.

Instead, hoist the setup of the callframe to happen slightly sooner, and make the
cti functions to compile & check arity read these values from the callframe. This
allows up to remove the deprecated methods to manually set up cti arguments, rather
than using JITStubCall.h.

  • interpreter/CallFrame.h:
  • jit/JIT.h:
  • jit/JITCall.cpp:

(JSC::JIT::compileOpCallInitializeCallFrame):
(JSC::JIT::compileOpCallVarargs):
(JSC::JIT::compileOpCallVarargsSlowCase):
(JSC::JIT::compileOpCall):
(JSC::JIT::compileOpCallSlowCase):

  • jit/JITCall32_64.cpp:

(JSC::JIT::compileOpCallInitializeCallFrame):
(JSC::JIT::compileOpCallVarargs):
(JSC::JIT::compileOpCallVarargsSlowCase):
(JSC::JIT::compileOpCall):
(JSC::JIT::compileOpCallSlowCase):

  • jit/JITInlineMethods.h:
  • jit/JITOpcodes.cpp:

(JSC::JIT::privateCompileCTIMachineTrampolines):

  • jit/JITOpcodes32_64.cpp:

(JSC::JIT::privateCompileCTIMachineTrampolines):

  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION):

  • jit/JITStubs.h:

(JSC::):

9:28 PM Changeset in webkit [60124] by eric@webkit.org
  • 4 edits in trunk/WebKitTools

2010-05-24 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

webkit-patch land calls scm.changed_files 4 times!
https://bugs.webkit.org/show_bug.cgi?id=39584

  • Scripts/webkitpy/tool/commands/download_unittest.py:
    • Assert that we don't call modified_changelogs too often.
  • Scripts/webkitpy/tool/steps/updatechangelogswithreviewer.py:
    • Use cached changelogs list instead of calling modified_changelogs directly.
  • Scripts/webkitpy/tool/steps/validatereviewer.py:
    • ditto.
9:15 PM Changeset in webkit [60123] by tkent@chromium.org
  • 3 edits
    1 add in trunk

2010-05-24 Kent Tamura <tkent@chromium.org>

Reviewed by Dimitri Glazkov.

[DRT/Chromium] Import layout_test_helper for Windows
https://bugs.webkit.org/show_bug.cgi?id=39581

  • WebKit.gyp: Add a build rule for LayoutTestHelper.exe for Windows.

2010-05-24 Kent Tamura <tkent@chromium.org>

Reviewed by Dimitri Glazkov.

[DRT/Chromium] Import layout_test_helper for Windows
https://bugs.webkit.org/show_bug.cgi?id=39581

Import Chromium win/layout_test_helper.cc as LayoutTestHelperWin.cpp.
http://src.chromium.org/viewvc/chrome/trunk/src/webkit/tools/test_shell/win/layout_test_helper.cc

  • DumpRenderTree/chromium/LayoutTestHelperWin.cpp: Added.
9:13 PM Changeset in webkit [60122] by tkent@chromium.org
  • 2 edits in trunk/WebKitTools

2010-05-24 Kent Tamura <tkent@chromium.org>

Reviewed by Dimitri Glazkov.

[DRT/Chromium] Reset frame name
https://bugs.webkit.org/show_bug.cgi?id=39586

This change fixes about 70 unexpected results.

  • DumpRenderTree/chromium/WebViewHost.cpp: (WebViewHost::reset):
9:10 PM Changeset in webkit [60121] by tkent@chromium.org
  • 5 edits in trunk

2010-05-24 Marcus Bulach <bulach@chromium.org>

Reviewed by Kent Tamura.

[chromium] Adds WebGeolocationServiceMockImpl to remove public dependency on wtf/HashMap.h
https://bugs.webkit.org/show_bug.cgi?id=39587

  • public/WebGeolocationServiceMock.h:
  • src/WebGeolocationServiceMock.cpp: (WebKit::WebGeolocationServiceMockImpl::~WebGeolocationServiceMockImpl): (WebKit::WebGeolocationServiceMock::createWebGeolocationServiceMock): (WebKit::WebGeolocationServiceMockImpl::requestPermissionForFrame): (WebKit::WebGeolocationServiceMockImpl::attachBridge): (WebKit::WebGeolocationServiceMockImpl::detachBridge):

2010-05-24 Marcus Bulach <bulach@chromium.org>

Reviewed by Kent Tamura.

[chromium] Adds WebGeolocationServiceMockImpl to remove public dependency on wtf/HashMap.h
https://bugs.webkit.org/show_bug.cgi?id=39587

  • DumpRenderTree/chromium/WebViewHost.cpp: (WebViewHost::geolocationService):
9:06 PM Changeset in webkit [60120] by eric@webkit.org
  • 7 edits in trunk

2010-05-24 Robert Hogan <robert@webkit.org>

Reviewed by Laszlo Gombos.

[Qt] DRT Support for removeOriginAccessWhitelistEntry

Unskips http/tests/xmlhttprequest/origin-whitelisting-removal.html

[Qt] DRT Support for removeOriginAccessWhitelistEntry
https://bugs.webkit.org/show_bug.cgi?id=39565

  • platform/qt/Skipped:

2010-05-24 Robert Hogan <robert@webkit.org>

Reviewed by Laszlo Gombos.

[Qt] DRT Support for removeOriginAccessWhitelistEntry

Unskips http/tests/xmlhttprequest/origin-whitelisting-removal.html

[Qt] DRT Support for removeOriginAccessWhitelistEntry
https://bugs.webkit.org/show_bug.cgi?id=39565

  • WebCoreSupport/DumpRenderTreeSupportQt.cpp: (DumpRenderTreeSupportQt::removeWhiteListAccessFromOrigin):
  • WebCoreSupport/DumpRenderTreeSupportQt.h:

2010-05-24 Robert Hogan <robert@webkit.org>

Reviewed by Laszlo Gombos.

[Qt] DRT Support for removeOriginAccessWhitelistEntry

Unskips http/tests/xmlhttprequest/origin-whitelisting-removal.html

[Qt] DRT Support for removeOriginAccessWhitelistEntry
https://bugs.webkit.org/show_bug.cgi?id=39565

  • DumpRenderTree/qt/LayoutTestControllerQt.cpp: (LayoutTestController::removeOriginAccessWhitelistEntry):
8:55 PM Changeset in webkit [60119] by eric@webkit.org
  • 5 edits
    3 adds in trunk

2010-05-24 Andreas Kling <andreas.kling@nokia.com>

Reviewed by Sam Weinig.

Add a test to verify that the 'prototype' property on generated Web IDL interfaces is { DontDelete | ReadOnly }.

Spec link:
http://www.w3.org/TR/WebIDL/#interface-object

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

  • fast/dom/global-constructors-expected.txt: Updated baseline.
  • fast/dom/global-constructors.html:
  • fast/dom/prototype-property-expected.txt: Added.
  • fast/dom/prototype-property.html: Added.
  • fast/dom/script-tests/prototype-property.js: Added. (tryToDeletePrototype): (tryToSetPrototype):

2010-05-24 Andreas Kling <andreas.kling@nokia.com>

Reviewed by Sam Weinig.

The 'prototype' property on generated Web IDL interfaces should be { DontDelete | ReadOnly }.

Spec link:
http://www.w3.org/TR/WebIDL/#interface-object

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

Test: fast/dom/prototype-property.html

  • bindings/scripts/CodeGeneratorJS.pm:
8:51 PM Changeset in webkit [60118] by tony@chromium.org
  • 2 edits in trunk/WebKitTools

2010-05-24 Marcus Bulach <bulach@google.com>

Reviewed by Ojan Vafai.

_svn_branch_has_extra_commits needs to check for HEAD instead of head.
https://bugs.webkit.org/show_bug.cgi?id=39603

  • Scripts/webkitpy/common/checkout/scm.py:
8:04 PM Changeset in webkit [60117] by barraclough@apple.com
  • 19 edits in trunk/JavaScriptCore

Relanding r60075.

Reviewed by Sam Weinig.

  • bytecode/CodeBlock.cpp:

(JSC::CodeBlock::dump):
(JSC::CodeBlock::getByIdExceptionInfoForBytecodeOffset):

  • bytecode/CodeBlock.h:
  • bytecode/Opcode.h:
  • bytecompiler/BytecodeGenerator.cpp:

(JSC::BytecodeGenerator::BytecodeGenerator):
(JSC::BytecodeGenerator::emitConstruct):

  • bytecompiler/BytecodeGenerator.h:

(JSC::BytecodeGenerator::emitGetByIdExceptionInfo):

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::privateExecute):

  • jit/JIT.cpp:

(JSC::JIT::privateCompileMainPass):

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

(JSC::JIT::compileOpCall):
(JSC::JIT::compileOpCallSlowCase):

  • jit/JITCall32_64.cpp:

(JSC::JIT::compileOpCall):
(JSC::JIT::compileOpCallSlowCase):

  • jit/JITOpcodes.cpp:

(JSC::JIT::privateCompileCTIMachineTrampolines):
(JSC::JIT::privateCompileCTINativeCall):
(JSC::JIT::emit_op_neq_null):
(JSC::JIT::emit_op_convert_this):
(JSC::JIT::emit_op_get_callee):
(JSC::JIT::emit_op_create_this):

  • jit/JITOpcodes32_64.cpp:

(JSC::JIT::privateCompileCTIMachineTrampolines):
(JSC::JIT::privateCompileCTINativeCall):
(JSC::JIT::emit_op_get_callee):
(JSC::JIT::emit_op_create_this):

  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION):
(JSC::JITThunks::hostFunctionStub):

  • jit/JITStubs.h:

(JSC::JITThunks::ctiNativeConstruct):
(JSC::):

  • runtime/ExceptionHelpers.cpp:

(JSC::createNotAnObjectError):

  • runtime/Executable.h:

(JSC::NativeExecutable::create):
(JSC::NativeExecutable::NativeExecutable):

  • runtime/JSFunction.cpp:

(JSC::callHostFunctionAsConstructor):

  • runtime/JSFunction.h:
  • wtf/Platform.h:
7:39 PM Changeset in webkit [60116] by abarth@webkit.org
  • 4 edits in trunk

2010-05-24 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

Add RCDATA and RAWTEXT suport to the HTML5 parser
https://bugs.webkit.org/show_bug.cgi?id=39642

Adam Barth wrote half of this patch.

  • html/HTML5TreeBuilder.cpp: (WebCore::HTML5TreeBuilder::passTokenToLegacyParser):
7:02 PM Changeset in webkit [60115] by jer.noble@apple.com
  • 4 edits in trunk/WebKitLibraries

No review; build fix only.

Roll-out changes r60110.

  • win/include/WebKitSystemInterface/WebKitSystemInterface.h:
  • win/lib/WebKitSystemInterface.lib:
  • win/lib/WebKitSystemInterface_debug.lib:
7:01 PM Changeset in webkit [60114] by abarth@webkit.org
  • 4 edits in trunk/LayoutTests

2010-05-24 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Import remaining html5lib tests into webkit-runner.html
https://bugs.webkit.org/show_bug.cgi?id=39638

We should be able to drive the diffs between webkit-runner-expected.txt
and webkit-runner-expected-html5.txt to zero.

Another option is to remove webkit-runner and just use runner.html, but
we don't yet support <script src=...> in the HTML5 parser.

  • html5lib/webkit-runner-expected-html5.txt:
  • html5lib/webkit-runner-expected.txt:
  • html5lib/webkit-runner.html:
6:56 PM Changeset in webkit [60113] by bweinstein@apple.com
  • 1 edit in trunk/WebKit/qt/Api/qwebframe.cpp

Try to fix the Qt build by including Settings.h

6:52 PM Changeset in webkit [60112] by mrowe@apple.com
  • 12 edits in branches/safari-533-branch/JavaScriptCore

Merge r59974.

6:48 PM Changeset in webkit [60111] by tony@chromium.org
  • 4 edits in trunk

2010-05-24 Tony Chang <tony@chromium.org>

Not reviewed, build fix.

Fix the chromium compile due to pageZoomFactor refactoring.

  • page/EventHandler.cpp: (WebCore::pageZoomFactor):

2010-05-24 Tony Chang <tony@chromium.org>

Not reviewed, build fix.

Fix the chromium compile due to pageZoomFactor refactoring.

  • src/WebViewImpl.cpp: (WebKit::WebViewImpl::setZoomLevel):
6:36 PM Changeset in webkit [60110] by jer.noble@apple.com
  • 12 edits
    2 copies in trunk

2010-05-24 Jer Noble <jer.noble@apple.com>

Reviewed by Eric Carlson.

HTML5 <video> tag performance worse than Flash
https://bugs.webkit.org/show_bug.cgi?id=39577
rdar://problem/7982458

Added WebKitSystemInterface calls for new CAImageQueue APIs.


  • win/include/WebKitSystemInterface/WebKitSystemInterface.h:
  • win/lib/WebKitSystemInterface.lib:
  • win/lib/WebKitSystemInterface_debug.lib:

010-05-24 Jer Noble <jer.noble@apple.com>

No review; build fix only.

Roll-out changes r60094, 60096-60097.

  • win/include/WebKitSystemInterface/WebKitSystemInterface.h:
  • win/lib/WebKitSystemInterface.lib:
  • win/lib/WebKitSystemInterface_debug.lib:

2010-05-24 Jer Noble <jer.noble@apple.com>

Reviewed by Eric Carlson.

HTML5 <video> tag performance worse than Flash
https://bugs.webkit.org/show_bug.cgi?id=39577
rdar://problem/7982458


Added attachments() back to QTPixelBuffer, as they are necessary for CAImageQueue.


WKCACFLayer contents()/setContents() now return/take a CFTypeRef instead of a CGImageRef, which allows
a CAImageQueueRef to be set as a layer's contents.


WKCAImageQueue is a simple C++ wrapper around the WebKitSystemInterface CAImageQueue functions.


MediaPlayerPrivateQuickTimeVisualContext will now use a CAImageQueue to display movie frames if
certain prerequisites are met (QuartzCore.dll and CoreVideo.dll version numbers must meet a certain
threshold defined in MediaPlayerPrivateQuickTimeVisualContext.cpp).


  • WebCore.vcproj/WebCore.vcproj:
  • platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp:
  • platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.h:
  • platform/graphics/win/QTPixelBuffer.cpp:
  • platform/graphics/win/QTPixelBuffer.h:
  • platform/graphics/win/WKCACFLayer.cpp:
  • platform/graphics/win/WKCACFLayer.h:
  • platform/graphics/win/WKCAImageQueue.cpp: Added.
  • platform/graphics/win/WKCAImageQueue.h: Added.
5:54 PM Changeset in webkit [60109] by abarth@webkit.org
  • 7 edits
    1 add in trunk

2010-05-24 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Teach the HTML5 parser how to lex escaped script data
https://bugs.webkit.org/show_bug.cgi?id=39630

Add a bunch of tests for parsing script data. I think these tests
drive the lexer into all the script data states.

  • html5lib/resources/scriptdata01.dat: Added.
  • html5lib/webkit-runner-expected-html5.txt:
  • html5lib/webkit-runner-expected.txt:
  • html5lib/webkit-runner.html:

2010-05-24 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Teach the HTML5 parser how to lex escaped script data
https://bugs.webkit.org/show_bug.cgi?id=39630

  • html/HTML5Lexer.cpp: (WebCore::HTMLNames::vectorEqualsString): (WebCore::HTML5Lexer::nextToken): (WebCore::HTML5Lexer::temporaryBufferIs): (WebCore::HTML5Lexer::isAppropriateEndTag): (WebCore::HTML5Lexer::maybeFlushBufferedEndTag): (WebCore::HTML5Lexer::flushBufferedEndTag):
  • html/HTML5Lexer.h:
5:51 PM Changeset in webkit [60108] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-24 Eric Seidel <eric@webkit.org>

Unreviewed. Trick MSVC into ignoring our unused code for the moment.

Prepare HTML5TreeBuilder for addition of new HTML5 parser code
https://bugs.webkit.org/show_bug.cgi?id=39623

  • html/HTML5TreeBuilder.cpp: (WebCore::HTML5TreeBuilder::constructTreeFromToken):
5:51 PM Changeset in webkit [60107] by jamesr@google.com
  • 1 edit
    518 copies
    522 adds in trunk/LayoutTests

2010-05-24 James Robinson <jamesr@chromium.org>

Unreviewed baseline only change

Move Leopard-specific pixel test results from platform/mac to platform/mac-leopard
https://bugs.webkit.org/show_bug.cgi?id=39317

This shuffles the pixel failures in editing/ that are due to small (<0.1%) pixel
diffs in text rendering between Leopard and Snow Leopard.

  • platform/mac-leopard/editing/deleting/4922367-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/4922367-expected.checksum.
  • platform/mac-leopard/editing/deleting/4922367-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/4922367-expected.png.
  • platform/mac-leopard/editing/deleting/5026848-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5026848-1-expected.checksum.
  • platform/mac-leopard/editing/deleting/5026848-1-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5026848-1-expected.png.
  • platform/mac-leopard/editing/deleting/5026848-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5026848-2-expected.checksum.
  • platform/mac-leopard/editing/deleting/5026848-2-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5026848-2-expected.png.
  • platform/mac-leopard/editing/deleting/5026848-3-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5026848-3-expected.checksum.
  • platform/mac-leopard/editing/deleting/5026848-3-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5026848-3-expected.png.
  • platform/mac-leopard/editing/deleting/5032066-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5032066-expected.checksum.
  • platform/mac-leopard/editing/deleting/5032066-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5032066-expected.png.
  • platform/mac-leopard/editing/deleting/5091898-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5091898-expected.checksum.
  • platform/mac-leopard/editing/deleting/5091898-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5091898-expected.png.
  • platform/mac-leopard/editing/deleting/5099303-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5099303-expected.checksum.
  • platform/mac-leopard/editing/deleting/5099303-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5099303-expected.png.
  • platform/mac-leopard/editing/deleting/5115601-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5115601-expected.checksum.
  • platform/mac-leopard/editing/deleting/5115601-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5115601-expected.png.
  • platform/mac-leopard/editing/deleting/5126166-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5126166-expected.checksum.
  • platform/mac-leopard/editing/deleting/5126166-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5126166-expected.png.
  • platform/mac-leopard/editing/deleting/5144139-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5144139-2-expected.checksum.
  • platform/mac-leopard/editing/deleting/5144139-2-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5144139-2-expected.png.
  • platform/mac-leopard/editing/deleting/5168598-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5168598-expected.checksum.
  • platform/mac-leopard/editing/deleting/5168598-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5168598-expected.png.
  • platform/mac-leopard/editing/deleting/5206311-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5206311-1-expected.checksum.
  • platform/mac-leopard/editing/deleting/5206311-1-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5206311-1-expected.png.
  • platform/mac-leopard/editing/deleting/5206311-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5206311-2-expected.checksum.
  • platform/mac-leopard/editing/deleting/5206311-2-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5206311-2-expected.png.
  • platform/mac-leopard/editing/deleting/5272440-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5272440-expected.checksum.
  • platform/mac-leopard/editing/deleting/5272440-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5272440-expected.png.
  • platform/mac-leopard/editing/deleting/5369009-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5369009-expected.checksum.
  • platform/mac-leopard/editing/deleting/5369009-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5369009-expected.png.
  • platform/mac-leopard/editing/deleting/5390681-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5390681-2-expected.checksum.
  • platform/mac-leopard/editing/deleting/5390681-2-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5390681-2-expected.png.
  • platform/mac-leopard/editing/deleting/5390681-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5390681-expected.checksum.
  • platform/mac-leopard/editing/deleting/5390681-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5390681-expected.png.
  • platform/mac-leopard/editing/deleting/5433862-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5433862-2-expected.checksum.
  • platform/mac-leopard/editing/deleting/5433862-2-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5433862-2-expected.png.
  • platform/mac-leopard/editing/deleting/5483370-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5483370-expected.checksum.
  • platform/mac-leopard/editing/deleting/5483370-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5483370-expected.png.
  • platform/mac-leopard/editing/deleting/delete-4038408-fix-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/delete-4038408-fix-expected.checksum.
  • platform/mac-leopard/editing/deleting/delete-4038408-fix-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/delete-4038408-fix-expected.png.
  • platform/mac-leopard/editing/deleting/delete-br-013-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/delete-br-013-expected.checksum.
  • platform/mac-leopard/editing/deleting/delete-br-013-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/delete-br-013-expected.png.
  • platform/mac-leopard/editing/deleting/delete-first-list-item-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/delete-first-list-item-expected.checksum.
  • platform/mac-leopard/editing/deleting/delete-first-list-item-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/delete-first-list-item-expected.png.
  • platform/mac-leopard/editing/deleting/delete-line-015-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/delete-line-015-expected.checksum.
  • platform/mac-leopard/editing/deleting/delete-line-015-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/delete-line-015-expected.png.
  • platform/mac-leopard/editing/deleting/delete-line-016-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/delete-line-016-expected.checksum.
  • platform/mac-leopard/editing/deleting/delete-line-016-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/delete-line-016-expected.png.
  • platform/mac-leopard/editing/deleting/delete-line-017-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/delete-line-017-expected.checksum.
  • platform/mac-leopard/editing/deleting/delete-line-017-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/delete-line-017-expected.png.
  • platform/mac-leopard/editing/deleting/delete-ws-fixup-002-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/delete-ws-fixup-002-expected.checksum.
  • platform/mac-leopard/editing/deleting/delete-ws-fixup-002-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/delete-ws-fixup-002-expected.png.
  • platform/mac-leopard/editing/deleting/merge-endOfParagraph-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/merge-endOfParagraph-expected.checksum.
  • platform/mac-leopard/editing/deleting/merge-endOfParagraph-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/merge-endOfParagraph-expected.png.
  • platform/mac-leopard/editing/deleting/merge-into-empty-block-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/merge-into-empty-block-1-expected.checksum.
  • platform/mac-leopard/editing/deleting/merge-into-empty-block-1-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/merge-into-empty-block-1-expected.png.
  • platform/mac-leopard/editing/deleting/merge-no-br-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/merge-no-br-expected.checksum.
  • platform/mac-leopard/editing/deleting/merge-no-br-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/merge-no-br-expected.png.
  • platform/mac-leopard/editing/deleting/merge-whitespace-pre-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/merge-whitespace-pre-expected.checksum.
  • platform/mac-leopard/editing/deleting/merge-whitespace-pre-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/merge-whitespace-pre-expected.png.
  • platform/mac-leopard/editing/deleting/pruning-after-merge-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/pruning-after-merge-2-expected.checksum.
  • platform/mac-leopard/editing/deleting/pruning-after-merge-2-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/pruning-after-merge-2-expected.png.
  • platform/mac-leopard/editing/deleting/smart-delete-003-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/smart-delete-003-expected.checksum.
  • platform/mac-leopard/editing/deleting/smart-delete-003-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/smart-delete-003-expected.png.
  • platform/mac-leopard/editing/deleting/smart-delete-004-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/smart-delete-004-expected.checksum.
  • platform/mac-leopard/editing/deleting/smart-delete-004-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/smart-delete-004-expected.png.
  • platform/mac-leopard/editing/deleting/table-cells-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/table-cells-expected.checksum.
  • platform/mac-leopard/editing/deleting/table-cells-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/table-cells-expected.png.
  • platform/mac-leopard/editing/execCommand: Added.
  • platform/mac-leopard/editing/execCommand/4580583-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/4580583-1-expected.checksum.
  • platform/mac-leopard/editing/execCommand/4580583-1-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/4580583-1-expected.png.
  • platform/mac-leopard/editing/execCommand/4580583-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/4580583-2-expected.checksum.
  • platform/mac-leopard/editing/execCommand/4580583-2-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/4580583-2-expected.png.
  • platform/mac-leopard/editing/execCommand/4641880-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/4641880-1-expected.checksum.
  • platform/mac-leopard/editing/execCommand/4641880-1-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/4641880-1-expected.png.
  • platform/mac-leopard/editing/execCommand/4641880-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/4641880-2-expected.checksum.
  • platform/mac-leopard/editing/execCommand/4641880-2-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/4641880-2-expected.png.
  • platform/mac-leopard/editing/execCommand/4747450-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/4747450-expected.checksum.
  • platform/mac-leopard/editing/execCommand/4747450-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/4747450-expected.png.
  • platform/mac-leopard/editing/execCommand/4786404-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/4786404-2-expected.checksum.
  • platform/mac-leopard/editing/execCommand/4786404-2-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/4786404-2-expected.png.
  • platform/mac-leopard/editing/execCommand/4916402-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/4916402-expected.checksum.
  • platform/mac-leopard/editing/execCommand/4916402-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/4916402-expected.png.
  • platform/mac-leopard/editing/execCommand/4916541-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/4916541-expected.checksum.
  • platform/mac-leopard/editing/execCommand/4916541-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/4916541-expected.png.
  • platform/mac-leopard/editing/execCommand/4920488-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/4920488-expected.checksum.
  • platform/mac-leopard/editing/execCommand/4920488-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/4920488-expected.png.
  • platform/mac-leopard/editing/execCommand/4920742-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/4920742-1-expected.checksum.
  • platform/mac-leopard/editing/execCommand/4920742-1-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/4920742-1-expected.png.
  • platform/mac-leopard/editing/execCommand/4924441-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/4924441-expected.checksum.
  • platform/mac-leopard/editing/execCommand/4924441-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/4924441-expected.png.
  • platform/mac-leopard/editing/execCommand/5049671-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/5049671-expected.checksum.
  • platform/mac-leopard/editing/execCommand/5049671-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/5049671-expected.png.
  • platform/mac-leopard/editing/execCommand/5080333-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/5080333-1-expected.checksum.
  • platform/mac-leopard/editing/execCommand/5080333-1-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/5080333-1-expected.png.
  • platform/mac-leopard/editing/execCommand/5080333-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/5080333-2-expected.checksum.
  • platform/mac-leopard/editing/execCommand/5080333-2-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/5080333-2-expected.png.
  • platform/mac-leopard/editing/execCommand/5136770-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/5136770-expected.checksum.
  • platform/mac-leopard/editing/execCommand/5136770-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/5136770-expected.png.
  • platform/mac-leopard/editing/execCommand/5138441-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/5138441-expected.checksum.
  • platform/mac-leopard/editing/execCommand/5138441-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/5138441-expected.png.
  • platform/mac-leopard/editing/execCommand/5190926-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/5190926-expected.checksum.
  • platform/mac-leopard/editing/execCommand/5190926-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/5190926-expected.png.
  • platform/mac-leopard/editing/execCommand/5481523-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/5481523-expected.checksum.
  • platform/mac-leopard/editing/execCommand/5481523-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/5481523-expected.png.
  • platform/mac-leopard/editing/execCommand/create-list-with-hr-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/create-list-with-hr-expected.checksum.
  • platform/mac-leopard/editing/execCommand/create-list-with-hr-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/create-list-with-hr-expected.png.
  • platform/mac-leopard/editing/execCommand/find-after-replace-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/find-after-replace-expected.checksum.
  • platform/mac-leopard/editing/execCommand/find-after-replace-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/find-after-replace-expected.png.
  • platform/mac-leopard/editing/execCommand/findString-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/findString-2-expected.checksum.
  • platform/mac-leopard/editing/execCommand/findString-2-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/findString-2-expected.png.
  • platform/mac-leopard/editing/execCommand/insertHorizontalRule-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/insertHorizontalRule-expected.checksum.
  • platform/mac-leopard/editing/execCommand/insertHorizontalRule-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/insertHorizontalRule-expected.png.
  • platform/mac-leopard/editing/execCommand/insertImage-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/insertImage-expected.checksum.
  • platform/mac-leopard/editing/execCommand/insertImage-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/insertImage-expected.png.
  • platform/mac-leopard/editing/execCommand/outdent-selection-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/outdent-selection-expected.checksum.
  • platform/mac-leopard/editing/execCommand/outdent-selection-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/outdent-selection-expected.png.
  • platform/mac-leopard/editing/execCommand/remove-formatting-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/remove-formatting-2-expected.checksum.
  • platform/mac-leopard/editing/execCommand/remove-formatting-2-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/remove-formatting-2-expected.png.
  • platform/mac-leopard/editing/execCommand/remove-formatting-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/remove-formatting-expected.checksum.
  • platform/mac-leopard/editing/execCommand/remove-formatting-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/remove-formatting-expected.png.
  • platform/mac-leopard/editing/execCommand/remove-list-from-range-selection-expected.checksum: Copied from LayoutTests/platform/mac/editing/execCommand/remove-list-from-range-selection-expected.checksum.
  • platform/mac-leopard/editing/execCommand/remove-list-from-range-selection-expected.png: Copied from LayoutTests/platform/mac/editing/execCommand/remove-list-from-range-selection-expected.png.
  • platform/mac-leopard/editing/inserting: Added.
  • platform/mac-leopard/editing/inserting/12882-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/12882-expected.checksum.
  • platform/mac-leopard/editing/inserting/12882-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/12882-expected.png.
  • platform/mac-leopard/editing/inserting/4278698-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/4278698-expected.checksum.
  • platform/mac-leopard/editing/inserting/4278698-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/4278698-expected.png.
  • platform/mac-leopard/editing/inserting/4840662-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/4840662-expected.checksum.
  • platform/mac-leopard/editing/inserting/4840662-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/4840662-expected.png.
  • platform/mac-leopard/editing/inserting/4875189-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/4875189-2-expected.checksum.
  • platform/mac-leopard/editing/inserting/4875189-2-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/4875189-2-expected.png.
  • platform/mac-leopard/editing/inserting/5002441-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/5002441-expected.checksum.
  • platform/mac-leopard/editing/inserting/5002441-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/5002441-expected.png.
  • platform/mac-leopard/editing/inserting/5058163-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/5058163-1-expected.checksum.
  • platform/mac-leopard/editing/inserting/5058163-1-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/5058163-1-expected.png.
  • platform/mac-leopard/editing/inserting/5058163-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/5058163-2-expected.checksum.
  • platform/mac-leopard/editing/inserting/5058163-2-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/5058163-2-expected.png.
  • platform/mac-leopard/editing/inserting/5156401-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/5156401-2-expected.checksum.
  • platform/mac-leopard/editing/inserting/5156401-2-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/5156401-2-expected.png.
  • platform/mac-leopard/editing/inserting/5418891-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/5418891-expected.checksum.
  • platform/mac-leopard/editing/inserting/5418891-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/5418891-expected.png.
  • platform/mac-leopard/editing/inserting/5510537-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/5510537-expected.checksum.
  • platform/mac-leopard/editing/inserting/5510537-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/5510537-expected.png.
  • platform/mac-leopard/editing/inserting/5549929-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/5549929-2-expected.checksum.
  • platform/mac-leopard/editing/inserting/5549929-2-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/5549929-2-expected.png.
  • platform/mac-leopard/editing/inserting/5607069-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/5607069-2-expected.checksum.
  • platform/mac-leopard/editing/inserting/5607069-2-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/5607069-2-expected.png.
  • platform/mac-leopard/editing/inserting/5607069-3-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/5607069-3-expected.checksum.
  • platform/mac-leopard/editing/inserting/5607069-3-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/5607069-3-expected.png.
  • platform/mac-leopard/editing/inserting/6703873-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/6703873-expected.checksum.
  • platform/mac-leopard/editing/inserting/6703873-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/6703873-expected.png.
  • platform/mac-leopard/editing/inserting/editable-html-element-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/editable-html-element-expected.checksum.
  • platform/mac-leopard/editing/inserting/editable-html-element-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/editable-html-element-expected.png.
  • platform/mac-leopard/editing/inserting/edited-whitespace-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/edited-whitespace-1-expected.checksum.
  • platform/mac-leopard/editing/inserting/edited-whitespace-1-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/edited-whitespace-1-expected.png.
  • platform/mac-leopard/editing/inserting/editing-empty-divs-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/editing-empty-divs-expected.checksum.
  • platform/mac-leopard/editing/inserting/editing-empty-divs-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/editing-empty-divs-expected.png.
  • platform/mac-leopard/editing/inserting/insert-3786362-fix-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/insert-3786362-fix-expected.checksum.
  • platform/mac-leopard/editing/inserting/insert-3786362-fix-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/insert-3786362-fix-expected.png.
  • platform/mac-leopard/editing/inserting/insert-at-end-01-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/insert-at-end-01-expected.checksum.
  • platform/mac-leopard/editing/inserting/insert-at-end-01-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/insert-at-end-01-expected.png.
  • platform/mac-leopard/editing/inserting/insert-at-end-02-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/insert-at-end-02-expected.checksum.
  • platform/mac-leopard/editing/inserting/insert-at-end-02-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/insert-at-end-02-expected.png.
  • platform/mac-leopard/editing/inserting/insert-br-009-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/insert-br-009-expected.checksum.
  • platform/mac-leopard/editing/inserting/insert-br-009-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/insert-br-009-expected.png.
  • platform/mac-leopard/editing/inserting/insert-br-quoted-001-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/insert-br-quoted-001-expected.checksum.
  • platform/mac-leopard/editing/inserting/insert-br-quoted-001-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/insert-br-quoted-001-expected.png.
  • platform/mac-leopard/editing/inserting/insert-br-quoted-002-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/insert-br-quoted-002-expected.checksum.
  • platform/mac-leopard/editing/inserting/insert-br-quoted-002-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/insert-br-quoted-002-expected.png.
  • platform/mac-leopard/editing/inserting/insert-br-quoted-003-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/insert-br-quoted-003-expected.checksum.
  • platform/mac-leopard/editing/inserting/insert-br-quoted-003-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/insert-br-quoted-003-expected.png.
  • platform/mac-leopard/editing/inserting/insert-br-quoted-004-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/insert-br-quoted-004-expected.checksum.
  • platform/mac-leopard/editing/inserting/insert-br-quoted-004-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/insert-br-quoted-004-expected.png.
  • platform/mac-leopard/editing/inserting/insert-br-quoted-005-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/insert-br-quoted-005-expected.checksum.
  • platform/mac-leopard/editing/inserting/insert-br-quoted-005-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/insert-br-quoted-005-expected.png.
  • platform/mac-leopard/editing/inserting/insert-br-quoted-006-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/insert-br-quoted-006-expected.checksum.
  • platform/mac-leopard/editing/inserting/insert-br-quoted-006-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/insert-br-quoted-006-expected.png.
  • platform/mac-leopard/editing/inserting/insert-paragraph-01-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/insert-paragraph-01-expected.checksum.
  • platform/mac-leopard/editing/inserting/insert-paragraph-01-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/insert-paragraph-01-expected.png.
  • platform/mac-leopard/editing/inserting/insert-paragraph-02-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/insert-paragraph-02-expected.checksum.
  • platform/mac-leopard/editing/inserting/insert-paragraph-02-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/insert-paragraph-02-expected.png.
  • platform/mac-leopard/editing/inserting/insert-paragraph-03-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/insert-paragraph-03-expected.checksum.
  • platform/mac-leopard/editing/inserting/insert-paragraph-03-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/insert-paragraph-03-expected.png.
  • platform/mac-leopard/editing/inserting/insert-paragraph-04-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/insert-paragraph-04-expected.checksum.
  • platform/mac-leopard/editing/inserting/insert-paragraph-04-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/insert-paragraph-04-expected.png.
  • platform/mac-leopard/editing/inserting/insert-paragraph-05-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/insert-paragraph-05-expected.checksum.
  • platform/mac-leopard/editing/inserting/insert-paragraph-05-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/insert-paragraph-05-expected.png.
  • platform/mac-leopard/editing/inserting/line-break-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/line-break-expected.checksum.
  • platform/mac-leopard/editing/inserting/line-break-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/line-break-expected.png.
  • platform/mac-leopard/editing/inserting/multiple-lines-selected-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/multiple-lines-selected-expected.checksum.
  • platform/mac-leopard/editing/inserting/multiple-lines-selected-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/multiple-lines-selected-expected.png.
  • platform/mac-leopard/editing/inserting/paragraph-separator-03-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/paragraph-separator-03-expected.checksum.
  • platform/mac-leopard/editing/inserting/paragraph-separator-03-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/paragraph-separator-03-expected.png.
  • platform/mac-leopard/editing/inserting/paragraph-separator-in-table-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/paragraph-separator-in-table-2-expected.checksum.
  • platform/mac-leopard/editing/inserting/paragraph-separator-in-table-2-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/paragraph-separator-in-table-2-expected.png.
  • platform/mac-leopard/editing/inserting/typing-around-br-001-expected.checksum: Copied from LayoutTests/platform/mac/editing/inserting/typing-around-br-001-expected.checksum.
  • platform/mac-leopard/editing/inserting/typing-around-br-001-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/typing-around-br-001-expected.png.
  • platform/mac-leopard/editing/pasteboard/3976872-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/3976872-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/3976872-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/3976872-expected.png.
  • platform/mac-leopard/editing/pasteboard/4076267-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/4076267-2-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/4076267-2-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/4076267-2-expected.png.
  • platform/mac-leopard/editing/pasteboard/4242293-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/4242293-1-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/4242293-1-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/4242293-1-expected.png.
  • platform/mac-leopard/editing/pasteboard/4242293-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/4242293-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/4242293-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/4242293-expected.png.
  • platform/mac-leopard/editing/pasteboard/4631972-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/4631972-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/4631972-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/4631972-expected.png.
  • platform/mac-leopard/editing/pasteboard/4641033-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/4641033-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/4641033-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/4641033-expected.png.
  • platform/mac-leopard/editing/pasteboard/4861080-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/4861080-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/4861080-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/4861080-expected.png.
  • platform/mac-leopard/editing/pasteboard/4944770-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/4944770-1-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/4944770-1-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/4944770-1-expected.png.
  • platform/mac-leopard/editing/pasteboard/4944770-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/4944770-2-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/4944770-2-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/4944770-2-expected.png.
  • platform/mac-leopard/editing/pasteboard/4947130-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/4947130-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/4947130-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/4947130-expected.png.
  • platform/mac-leopard/editing/pasteboard/5027857-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/5027857-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/5027857-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/5027857-expected.png.
  • platform/mac-leopard/editing/pasteboard/5032095-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/5032095-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/5032095-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/5032095-expected.png.
  • platform/mac-leopard/editing/pasteboard/5065605-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/5065605-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/5065605-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/5065605-expected.png.
  • platform/mac-leopard/editing/pasteboard/5071074-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/5071074-2-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/5071074-2-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/5071074-2-expected.png.
  • platform/mac-leopard/editing/pasteboard/5071074-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/5071074-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/5071074-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/5071074-expected.png.
  • platform/mac-leopard/editing/pasteboard/5075944-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/5075944-2-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/5075944-2-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/5075944-2-expected.png.
  • platform/mac-leopard/editing/pasteboard/5075944-3-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/5075944-3-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/5075944-3-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/5075944-3-expected.png.
  • platform/mac-leopard/editing/pasteboard/5089327-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/5089327-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/5089327-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/5089327-expected.png.
  • platform/mac-leopard/editing/pasteboard/5247341-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/5247341-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/5247341-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/5247341-expected.png.
  • platform/mac-leopard/editing/pasteboard/5368833-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/5368833-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/5368833-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/5368833-expected.png.
  • platform/mac-leopard/editing/pasteboard/5387578-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/5387578-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/5387578-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/5387578-expected.png.
  • platform/mac-leopard/editing/pasteboard/5478250-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/5478250-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/5478250-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/5478250-expected.png.
  • platform/mac-leopard/editing/pasteboard/5601583-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/5601583-1-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/5601583-1-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/5601583-1-expected.png.
  • platform/mac-leopard/editing/pasteboard/8145-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/8145-2-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/8145-2-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/8145-2-expected.png.
  • platform/mac-leopard/editing/pasteboard/8145-3-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/8145-3-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/8145-3-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/8145-3-expected.png.
  • platform/mac-leopard/editing/pasteboard/bad-placeholder-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/bad-placeholder-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/bad-placeholder-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/bad-placeholder-expected.png.
  • platform/mac-leopard/editing/pasteboard/copy-paste-bidi-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/copy-paste-bidi-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/copy-paste-bidi-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/copy-paste-bidi-expected.png.
  • platform/mac-leopard/editing/pasteboard/copy-standalone-image-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/copy-standalone-image-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/copy-standalone-image-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/copy-standalone-image-expected.png.
  • platform/mac-leopard/editing/pasteboard/displaced-generic-placeholder-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/displaced-generic-placeholder-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/displaced-generic-placeholder-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/displaced-generic-placeholder-expected.png.
  • platform/mac-leopard/editing/pasteboard/display-block-on-spans-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/display-block-on-spans-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/display-block-on-spans-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/display-block-on-spans-expected.png.
  • platform/mac-leopard/editing/pasteboard/drop-text-without-selection-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/drop-text-without-selection-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/drop-text-without-selection-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/drop-text-without-selection-expected.png.
  • platform/mac-leopard/editing/pasteboard/interchange-newline-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/interchange-newline-1-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/interchange-newline-1-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/interchange-newline-1-expected.png.
  • platform/mac-leopard/editing/pasteboard/interchange-newline-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/interchange-newline-2-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/interchange-newline-2-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/interchange-newline-2-expected.png.
  • platform/mac-leopard/editing/pasteboard/interchange-newline-3-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/interchange-newline-3-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/interchange-newline-3-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/interchange-newline-3-expected.png.
  • platform/mac-leopard/editing/pasteboard/interchange-newline-4-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/interchange-newline-4-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/interchange-newline-4-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/interchange-newline-4-expected.png.
  • platform/mac-leopard/editing/pasteboard/merge-after-delete-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/merge-after-delete-1-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/merge-after-delete-1-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/merge-after-delete-1-expected.png.
  • platform/mac-leopard/editing/pasteboard/merge-after-delete-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/merge-after-delete-2-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/merge-after-delete-2-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/merge-after-delete-2-expected.png.
  • platform/mac-leopard/editing/pasteboard/merge-end-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/merge-end-1-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/merge-end-1-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/merge-end-1-expected.png.
  • platform/mac-leopard/editing/pasteboard/merge-end-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/merge-end-2-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/merge-end-2-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/merge-end-2-expected.png.
  • platform/mac-leopard/editing/pasteboard/merge-end-5-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/merge-end-5-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/merge-end-5-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/merge-end-5-expected.png.
  • platform/mac-leopard/editing/pasteboard/merge-end-blockquote-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/merge-end-blockquote-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/merge-end-blockquote-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/merge-end-blockquote-expected.png.
  • platform/mac-leopard/editing/pasteboard/merge-end-borders-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/merge-end-borders-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/merge-end-borders-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/merge-end-borders-expected.png.
  • platform/mac-leopard/editing/pasteboard/merge-end-list-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/merge-end-list-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/merge-end-list-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/merge-end-list-expected.png.
  • platform/mac-leopard/editing/pasteboard/merge-end-table-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/merge-end-table-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/merge-end-table-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/merge-end-table-expected.png.
  • platform/mac-leopard/editing/pasteboard/merge-start-blockquote-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/merge-start-blockquote-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/merge-start-blockquote-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/merge-start-blockquote-expected.png.
  • platform/mac-leopard/editing/pasteboard/nested-blocks-with-text-area-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/nested-blocks-with-text-area-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/nested-blocks-with-text-area-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/nested-blocks-with-text-area-expected.png.
  • platform/mac-leopard/editing/pasteboard/nested-blocks-with-text-field-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/nested-blocks-with-text-field-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/nested-blocks-with-text-field-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/nested-blocks-with-text-field-expected.png.
  • platform/mac-leopard/editing/pasteboard/paste-RTFD-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/paste-RTFD-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/paste-RTFD-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/paste-RTFD-expected.png.
  • platform/mac-leopard/editing/pasteboard/paste-blockquote-3-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/paste-blockquote-3-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/paste-blockquote-3-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/paste-blockquote-3-expected.png.
  • platform/mac-leopard/editing/pasteboard/paste-blockquote-into-blockquote-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/paste-blockquote-into-blockquote-2-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/paste-blockquote-into-blockquote-2-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/paste-blockquote-into-blockquote-2-expected.png.
  • platform/mac-leopard/editing/pasteboard/paste-pre-002-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/paste-pre-002-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/paste-pre-002-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/paste-pre-002-expected.png.
  • platform/mac-leopard/editing/pasteboard/paste-table-003-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/paste-table-003-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/paste-table-003-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/paste-table-003-expected.png.
  • platform/mac-leopard/editing/pasteboard/paste-text-012-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/paste-text-012-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/paste-text-012-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/paste-text-012-expected.png.
  • platform/mac-leopard/editing/pasteboard/paste-text-013-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/paste-text-013-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/paste-text-013-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/paste-text-013-expected.png.
  • platform/mac-leopard/editing/pasteboard/paste-text-014-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/paste-text-014-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/paste-text-014-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/paste-text-014-expected.png.
  • platform/mac-leopard/editing/pasteboard/paste-text-016-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/paste-text-016-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/paste-text-016-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/paste-text-016-expected.png.
  • platform/mac-leopard/editing/pasteboard/pasting-object-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/pasting-object-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/pasting-object-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/pasting-object-expected.png.
  • platform/mac-leopard/editing/pasteboard/pasting-tabs-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/pasting-tabs-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/pasting-tabs-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/pasting-tabs-expected.png.
  • platform/mac-leopard/editing/pasteboard/prevent-block-nesting-01-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/prevent-block-nesting-01-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/prevent-block-nesting-01-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/prevent-block-nesting-01-expected.png.
  • platform/mac-leopard/editing/pasteboard/quirks-mode-br-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/quirks-mode-br-1-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/quirks-mode-br-1-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/quirks-mode-br-1-expected.png.
  • platform/mac-leopard/editing/pasteboard/select-element-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/select-element-1-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/select-element-1-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/select-element-1-expected.png.
  • platform/mac-leopard/editing/pasteboard/smart-drag-drop-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/smart-drag-drop-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/smart-drag-drop-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/smart-drag-drop-expected.png.
  • platform/mac-leopard/editing/pasteboard/smart-paste-008-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/smart-paste-008-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/smart-paste-008-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/smart-paste-008-expected.png.
  • platform/mac-leopard/editing/pasteboard/styled-element-markup-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/styled-element-markup-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/styled-element-markup-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/styled-element-markup-expected.png.
  • platform/mac-leopard/editing/pasteboard/subframe-dragndrop-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/subframe-dragndrop-1-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/subframe-dragndrop-1-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/subframe-dragndrop-1-expected.png.
  • platform/mac-leopard/editing/pasteboard/testcase-9507-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/testcase-9507-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/testcase-9507-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/testcase-9507-expected.png.
  • platform/mac-leopard/editing/pasteboard/undoable-fragment-removes-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/undoable-fragment-removes-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/undoable-fragment-removes-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/undoable-fragment-removes-expected.png.
  • platform/mac-leopard/editing/pasteboard/unrendered-br-expected.checksum: Copied from LayoutTests/platform/mac/editing/pasteboard/unrendered-br-expected.checksum.
  • platform/mac-leopard/editing/pasteboard/unrendered-br-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/unrendered-br-expected.png.
  • platform/mac-leopard/editing/selection: Added.
  • platform/mac-leopard/editing/selection/13804-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/13804-expected.checksum.
  • platform/mac-leopard/editing/selection/13804-expected.png: Copied from LayoutTests/platform/mac/editing/selection/13804-expected.png.
  • platform/mac-leopard/editing/selection/14971-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/14971-expected.checksum.
  • platform/mac-leopard/editing/selection/14971-expected.png: Copied from LayoutTests/platform/mac/editing/selection/14971-expected.png.
  • platform/mac-leopard/editing/selection/4402375-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/4402375-expected.checksum.
  • platform/mac-leopard/editing/selection/4402375-expected.png: Copied from LayoutTests/platform/mac/editing/selection/4402375-expected.png.
  • platform/mac-leopard/editing/selection/4818145-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/4818145-expected.checksum.
  • platform/mac-leopard/editing/selection/4818145-expected.png: Copied from LayoutTests/platform/mac/editing/selection/4818145-expected.png.
  • platform/mac-leopard/editing/selection/4889598-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/4889598-expected.checksum.
  • platform/mac-leopard/editing/selection/4889598-expected.png: Copied from LayoutTests/platform/mac/editing/selection/4889598-expected.png.
  • platform/mac-leopard/editing/selection/4895428-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/4895428-2-expected.checksum.
  • platform/mac-leopard/editing/selection/4895428-2-expected.png: Copied from LayoutTests/platform/mac/editing/selection/4895428-2-expected.png.
  • platform/mac-leopard/editing/selection/4895428-3-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/4895428-3-expected.checksum.
  • platform/mac-leopard/editing/selection/4895428-3-expected.png: Copied from LayoutTests/platform/mac/editing/selection/4895428-3-expected.png.
  • platform/mac-leopard/editing/selection/4895428-4-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/4895428-4-expected.checksum.
  • platform/mac-leopard/editing/selection/4895428-4-expected.png: Copied from LayoutTests/platform/mac/editing/selection/4895428-4-expected.png.
  • platform/mac-leopard/editing/selection/4932260-3-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/4932260-3-expected.checksum.
  • platform/mac-leopard/editing/selection/4932260-3-expected.png: Copied from LayoutTests/platform/mac/editing/selection/4932260-3-expected.png.
  • platform/mac-leopard/editing/selection/4947387-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/4947387-expected.checksum.
  • platform/mac-leopard/editing/selection/4947387-expected.png: Copied from LayoutTests/platform/mac/editing/selection/4947387-expected.png.
  • platform/mac-leopard/editing/selection/4960116-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/4960116-expected.checksum.
  • platform/mac-leopard/editing/selection/4960116-expected.png: Copied from LayoutTests/platform/mac/editing/selection/4960116-expected.png.
  • platform/mac-leopard/editing/selection/4975120-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/4975120-expected.checksum.
  • platform/mac-leopard/editing/selection/4975120-expected.png: Copied from LayoutTests/platform/mac/editing/selection/4975120-expected.png.
  • platform/mac-leopard/editing/selection/4983858-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/4983858-expected.checksum.
  • platform/mac-leopard/editing/selection/4983858-expected.png: Copied from LayoutTests/platform/mac/editing/selection/4983858-expected.png.
  • platform/mac-leopard/editing/selection/5007143-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/5007143-2-expected.checksum.
  • platform/mac-leopard/editing/selection/5007143-2-expected.png: Copied from LayoutTests/platform/mac/editing/selection/5007143-2-expected.png.
  • platform/mac-leopard/editing/selection/5007143-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/5007143-expected.checksum.
  • platform/mac-leopard/editing/selection/5007143-expected.png: Copied from LayoutTests/platform/mac/editing/selection/5007143-expected.png.
  • platform/mac-leopard/editing/selection/5057506-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/5057506-2-expected.checksum.
  • platform/mac-leopard/editing/selection/5057506-2-expected.png: Copied from LayoutTests/platform/mac/editing/selection/5057506-2-expected.png.
  • platform/mac-leopard/editing/selection/5057506-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/5057506-expected.checksum.
  • platform/mac-leopard/editing/selection/5057506-expected.png: Copied from LayoutTests/platform/mac/editing/selection/5057506-expected.png.
  • platform/mac-leopard/editing/selection/5076323-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/5076323-1-expected.checksum.
  • platform/mac-leopard/editing/selection/5076323-1-expected.png: Copied from LayoutTests/platform/mac/editing/selection/5076323-1-expected.png.
  • platform/mac-leopard/editing/selection/5081257-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/5081257-1-expected.checksum.
  • platform/mac-leopard/editing/selection/5081257-1-expected.png: Copied from LayoutTests/platform/mac/editing/selection/5081257-1-expected.png.
  • platform/mac-leopard/editing/selection/5099303-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/5099303-expected.checksum.
  • platform/mac-leopard/editing/selection/5099303-expected.png: Copied from LayoutTests/platform/mac/editing/selection/5099303-expected.png.
  • platform/mac-leopard/editing/selection/5131716-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/5131716-1-expected.checksum.
  • platform/mac-leopard/editing/selection/5131716-1-expected.png: Copied from LayoutTests/platform/mac/editing/selection/5131716-1-expected.png.
  • platform/mac-leopard/editing/selection/5131716-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/5131716-2-expected.checksum.
  • platform/mac-leopard/editing/selection/5131716-2-expected.png: Copied from LayoutTests/platform/mac/editing/selection/5131716-2-expected.png.
  • platform/mac-leopard/editing/selection/5131716-3-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/5131716-3-expected.checksum.
  • platform/mac-leopard/editing/selection/5131716-3-expected.png: Copied from LayoutTests/platform/mac/editing/selection/5131716-3-expected.png.
  • platform/mac-leopard/editing/selection/5131716-4-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/5131716-4-expected.checksum.
  • platform/mac-leopard/editing/selection/5131716-4-expected.png: Copied from LayoutTests/platform/mac/editing/selection/5131716-4-expected.png.
  • platform/mac-leopard/editing/selection/5195166-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/5195166-2-expected.checksum.
  • platform/mac-leopard/editing/selection/5195166-2-expected.png: Copied from LayoutTests/platform/mac/editing/selection/5195166-2-expected.png.
  • platform/mac-leopard/editing/selection/5232159-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/5232159-expected.checksum.
  • platform/mac-leopard/editing/selection/5232159-expected.png: Copied from LayoutTests/platform/mac/editing/selection/5232159-expected.png.
  • platform/mac-leopard/editing/selection/5234383-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/5234383-1-expected.checksum.
  • platform/mac-leopard/editing/selection/5234383-1-expected.png: Copied from LayoutTests/platform/mac/editing/selection/5234383-1-expected.png.
  • platform/mac-leopard/editing/selection/5234383-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/5234383-2-expected.checksum.
  • platform/mac-leopard/editing/selection/5234383-2-expected.png: Copied from LayoutTests/platform/mac/editing/selection/5234383-2-expected.png.
  • platform/mac-leopard/editing/selection/5240265-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/5240265-expected.checksum.
  • platform/mac-leopard/editing/selection/5240265-expected.png: Copied from LayoutTests/platform/mac/editing/selection/5240265-expected.png.
  • platform/mac-leopard/editing/selection/5354455-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/5354455-1-expected.checksum.
  • platform/mac-leopard/editing/selection/5354455-1-expected.png: Copied from LayoutTests/platform/mac/editing/selection/5354455-1-expected.png.
  • platform/mac-leopard/editing/selection/5354455-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/5354455-2-expected.checksum.
  • platform/mac-leopard/editing/selection/5354455-2-expected.png: Copied from LayoutTests/platform/mac/editing/selection/5354455-2-expected.png.
  • platform/mac-leopard/editing/selection/6476-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/6476-expected.checksum.
  • platform/mac-leopard/editing/selection/6476-expected.png: Copied from LayoutTests/platform/mac/editing/selection/6476-expected.png.
  • platform/mac-leopard/editing/selection/7152-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/7152-1-expected.checksum.
  • platform/mac-leopard/editing/selection/7152-1-expected.png: Copied from LayoutTests/platform/mac/editing/selection/7152-1-expected.png.
  • platform/mac-leopard/editing/selection/7152-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/7152-2-expected.checksum.
  • platform/mac-leopard/editing/selection/7152-2-expected.png: Copied from LayoutTests/platform/mac/editing/selection/7152-2-expected.png.
  • platform/mac-leopard/editing/selection/addRange-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/addRange-expected.checksum.
  • platform/mac-leopard/editing/selection/addRange-expected.png: Copied from LayoutTests/platform/mac/editing/selection/addRange-expected.png.
  • platform/mac-leopard/editing/selection/after-line-wrap-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/after-line-wrap-expected.checksum.
  • platform/mac-leopard/editing/selection/after-line-wrap-expected.png: Copied from LayoutTests/platform/mac/editing/selection/after-line-wrap-expected.png.
  • platform/mac-leopard/editing/selection/caret-and-focus-ring-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/caret-and-focus-ring-expected.checksum.
  • platform/mac-leopard/editing/selection/caret-and-focus-ring-expected.png: Copied from LayoutTests/platform/mac/editing/selection/caret-and-focus-ring-expected.png.
  • platform/mac-leopard/editing/selection/caret-rtl-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/caret-rtl-2-expected.checksum.
  • platform/mac-leopard/editing/selection/caret-rtl-2-expected.png: Copied from LayoutTests/platform/mac/editing/selection/caret-rtl-2-expected.png.
  • platform/mac-leopard/editing/selection/caret-rtl-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/caret-rtl-expected.checksum.
  • platform/mac-leopard/editing/selection/caret-rtl-expected.png: Copied from LayoutTests/platform/mac/editing/selection/caret-rtl-expected.png.
  • platform/mac-leopard/editing/selection/clear-selection-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/clear-selection-expected.checksum.
  • platform/mac-leopard/editing/selection/clear-selection-expected.png: Copied from LayoutTests/platform/mac/editing/selection/clear-selection-expected.png.
  • platform/mac-leopard/editing/selection/click-start-of-line-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/click-start-of-line-expected.checksum.
  • platform/mac-leopard/editing/selection/click-start-of-line-expected.png: Copied from LayoutTests/platform/mac/editing/selection/click-start-of-line-expected.png.
  • platform/mac-leopard/editing/selection/contenteditable-click-inside-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/contenteditable-click-inside-expected.checksum.
  • platform/mac-leopard/editing/selection/contenteditable-click-inside-expected.png: Copied from LayoutTests/platform/mac/editing/selection/contenteditable-click-inside-expected.png.
  • platform/mac-leopard/editing/selection/designmode-no-caret-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/designmode-no-caret-expected.checksum.
  • platform/mac-leopard/editing/selection/designmode-no-caret-expected.png: Copied from LayoutTests/platform/mac/editing/selection/designmode-no-caret-expected.png.
  • platform/mac-leopard/editing/selection/drag-in-iframe-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/drag-in-iframe-expected.checksum.
  • platform/mac-leopard/editing/selection/drag-in-iframe-expected.png: Copied from LayoutTests/platform/mac/editing/selection/drag-in-iframe-expected.png.
  • platform/mac-leopard/editing/selection/editable-html-element-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/editable-html-element-expected.checksum.
  • platform/mac-leopard/editing/selection/editable-html-element-expected.png: Copied from LayoutTests/platform/mac/editing/selection/editable-html-element-expected.png.
  • platform/mac-leopard/editing/selection/editable-non-editable-crash-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/editable-non-editable-crash-expected.checksum.
  • platform/mac-leopard/editing/selection/editable-non-editable-crash-expected.png: Copied from LayoutTests/platform/mac/editing/selection/editable-non-editable-crash-expected.png.
  • platform/mac-leopard/editing/selection/end-of-document-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/end-of-document-expected.checksum.
  • platform/mac-leopard/editing/selection/end-of-document-expected.png: Copied from LayoutTests/platform/mac/editing/selection/end-of-document-expected.png.
  • platform/mac-leopard/editing/selection/expanding-selections-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/expanding-selections-expected.checksum.
  • platform/mac-leopard/editing/selection/expanding-selections-expected.png: Copied from LayoutTests/platform/mac/editing/selection/expanding-selections-expected.png.
  • platform/mac-leopard/editing/selection/expanding-selections2-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/expanding-selections2-expected.checksum.
  • platform/mac-leopard/editing/selection/expanding-selections2-expected.png: Copied from LayoutTests/platform/mac/editing/selection/expanding-selections2-expected.png.
  • platform/mac-leopard/editing/selection/focus_editable_html-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/focus_editable_html-expected.checksum.
  • platform/mac-leopard/editing/selection/focus_editable_html-expected.png: Copied from LayoutTests/platform/mac/editing/selection/focus_editable_html-expected.png.
  • platform/mac-leopard/editing/selection/iframe-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/iframe-expected.checksum.
  • platform/mac-leopard/editing/selection/iframe-expected.png: Copied from LayoutTests/platform/mac/editing/selection/iframe-expected.png.
  • platform/mac-leopard/editing/selection/inline-closest-leaf-child-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/inline-closest-leaf-child-expected.checksum.
  • platform/mac-leopard/editing/selection/inline-closest-leaf-child-expected.png: Copied from LayoutTests/platform/mac/editing/selection/inline-closest-leaf-child-expected.png.
  • platform/mac-leopard/editing/selection/inline-table-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/inline-table-expected.checksum.
  • platform/mac-leopard/editing/selection/inline-table-expected.png: Copied from LayoutTests/platform/mac/editing/selection/inline-table-expected.png.
  • platform/mac-leopard/editing/selection/leave-requested-block-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/leave-requested-block-expected.checksum.
  • platform/mac-leopard/editing/selection/leave-requested-block-expected.png: Copied from LayoutTests/platform/mac/editing/selection/leave-requested-block-expected.png.
  • platform/mac-leopard/editing/selection/mixed-editability-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/mixed-editability-1-expected.checksum.
  • platform/mac-leopard/editing/selection/mixed-editability-1-expected.png: Copied from LayoutTests/platform/mac/editing/selection/mixed-editability-1-expected.png.
  • platform/mac-leopard/editing/selection/mixed-editability-3-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/mixed-editability-3-expected.checksum.
  • platform/mac-leopard/editing/selection/mixed-editability-3-expected.png: Copied from LayoutTests/platform/mac/editing/selection/mixed-editability-3-expected.png.
  • platform/mac-leopard/editing/selection/mixed-editability-4-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/mixed-editability-4-expected.checksum.
  • platform/mac-leopard/editing/selection/mixed-editability-4-expected.png: Copied from LayoutTests/platform/mac/editing/selection/mixed-editability-4-expected.png.
  • platform/mac-leopard/editing/selection/mixed-editability-5-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/mixed-editability-5-expected.checksum.
  • platform/mac-leopard/editing/selection/mixed-editability-5-expected.png: Copied from LayoutTests/platform/mac/editing/selection/mixed-editability-5-expected.png.
  • platform/mac-leopard/editing/selection/mixed-editability-6-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/mixed-editability-6-expected.checksum.
  • platform/mac-leopard/editing/selection/mixed-editability-6-expected.png: Copied from LayoutTests/platform/mac/editing/selection/mixed-editability-6-expected.png.
  • platform/mac-leopard/editing/selection/mixed-editability-7-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/mixed-editability-7-expected.checksum.
  • platform/mac-leopard/editing/selection/mixed-editability-7-expected.png: Copied from LayoutTests/platform/mac/editing/selection/mixed-editability-7-expected.png.
  • platform/mac-leopard/editing/selection/mixed-editability-8-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/mixed-editability-8-expected.checksum.
  • platform/mac-leopard/editing/selection/mixed-editability-8-expected.png: Copied from LayoutTests/platform/mac/editing/selection/mixed-editability-8-expected.png.
  • platform/mac-leopard/editing/selection/mixed-editability-9-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/mixed-editability-9-expected.checksum.
  • platform/mac-leopard/editing/selection/mixed-editability-9-expected.png: Copied from LayoutTests/platform/mac/editing/selection/mixed-editability-9-expected.png.
  • platform/mac-leopard/editing/selection/move-by-sentence-linebreak-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/move-by-sentence-linebreak-expected.checksum.
  • platform/mac-leopard/editing/selection/move-by-sentence-linebreak-expected.png: Copied from LayoutTests/platform/mac/editing/selection/move-by-sentence-linebreak-expected.png.
  • platform/mac-leopard/editing/selection/node-removal-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/node-removal-1-expected.checksum.
  • platform/mac-leopard/editing/selection/node-removal-1-expected.png: Copied from LayoutTests/platform/mac/editing/selection/node-removal-1-expected.png.
  • platform/mac-leopard/editing/selection/node-removal-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/node-removal-2-expected.checksum.
  • platform/mac-leopard/editing/selection/node-removal-2-expected.png: Copied from LayoutTests/platform/mac/editing/selection/node-removal-2-expected.png.
  • platform/mac-leopard/editing/selection/paragraph-granularity-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/paragraph-granularity-expected.checksum.
  • platform/mac-leopard/editing/selection/paragraph-granularity-expected.png: Copied from LayoutTests/platform/mac/editing/selection/paragraph-granularity-expected.png.
  • platform/mac-leopard/editing/selection/previous-line-position-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/previous-line-position-expected.checksum.
  • platform/mac-leopard/editing/selection/previous-line-position-expected.png: Copied from LayoutTests/platform/mac/editing/selection/previous-line-position-expected.png.
  • platform/mac-leopard/editing/selection/replace-selection-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/replace-selection-1-expected.checksum.
  • platform/mac-leopard/editing/selection/replace-selection-1-expected.png: Copied from LayoutTests/platform/mac/editing/selection/replace-selection-1-expected.png.
  • platform/mac-leopard/editing/selection/replaced-boundaries-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/replaced-boundaries-1-expected.checksum.
  • platform/mac-leopard/editing/selection/replaced-boundaries-1-expected.png: Copied from LayoutTests/platform/mac/editing/selection/replaced-boundaries-1-expected.png.
  • platform/mac-leopard/editing/selection/replaced-boundaries-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/replaced-boundaries-2-expected.checksum.
  • platform/mac-leopard/editing/selection/replaced-boundaries-2-expected.png: Copied from LayoutTests/platform/mac/editing/selection/replaced-boundaries-2-expected.png.
  • platform/mac-leopard/editing/selection/replaced-boundaries-3-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/replaced-boundaries-3-expected.checksum.
  • platform/mac-leopard/editing/selection/replaced-boundaries-3-expected.png: Copied from LayoutTests/platform/mac/editing/selection/replaced-boundaries-3-expected.png.
  • platform/mac-leopard/editing/selection/select-all-005-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/select-all-005-expected.checksum.
  • platform/mac-leopard/editing/selection/select-all-005-expected.png: Copied from LayoutTests/platform/mac/editing/selection/select-all-005-expected.png.
  • platform/mac-leopard/editing/selection/select-all-006-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/select-all-006-expected.checksum.
  • platform/mac-leopard/editing/selection/select-all-006-expected.png: Copied from LayoutTests/platform/mac/editing/selection/select-all-006-expected.png.
  • platform/mac-leopard/editing/selection/select-all-iframe-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/select-all-iframe-expected.checksum.
  • platform/mac-leopard/editing/selection/select-all-iframe-expected.png: Copied from LayoutTests/platform/mac/editing/selection/select-all-iframe-expected.png.
  • platform/mac-leopard/editing/selection/select-box-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/select-box-expected.checksum.
  • platform/mac-leopard/editing/selection/select-box-expected.png: Copied from LayoutTests/platform/mac/editing/selection/select-box-expected.png.
  • platform/mac-leopard/editing/selection/select-element-paragraph-boundary-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/select-element-paragraph-boundary-expected.checksum.
  • platform/mac-leopard/editing/selection/select-element-paragraph-boundary-expected.png: Copied from LayoutTests/platform/mac/editing/selection/select-element-paragraph-boundary-expected.png.
  • platform/mac-leopard/editing/selection/select-from-textfield-outwards-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/select-from-textfield-outwards-expected.checksum.
  • platform/mac-leopard/editing/selection/select-from-textfield-outwards-expected.png: Copied from LayoutTests/platform/mac/editing/selection/select-from-textfield-outwards-expected.png.
  • platform/mac-leopard/editing/selection/selection-actions-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/selection-actions-expected.checksum.
  • platform/mac-leopard/editing/selection/selection-actions-expected.png: Copied from LayoutTests/platform/mac/editing/selection/selection-actions-expected.png.
  • platform/mac-leopard/editing/selection/selection-background-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/selection-background-expected.checksum.
  • platform/mac-leopard/editing/selection/selection-background-expected.png: Copied from LayoutTests/platform/mac/editing/selection/selection-background-expected.png.
  • platform/mac-leopard/editing/selection/triple-click-in-pre-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/triple-click-in-pre-expected.checksum.
  • platform/mac-leopard/editing/selection/triple-click-in-pre-expected.png: Copied from LayoutTests/platform/mac/editing/selection/triple-click-in-pre-expected.png.
  • platform/mac-leopard/editing/selection/unrendered-space-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/unrendered-space-expected.checksum.
  • platform/mac-leopard/editing/selection/unrendered-space-expected.png: Copied from LayoutTests/platform/mac/editing/selection/unrendered-space-expected.png.
  • platform/mac-leopard/editing/selection/word-granularity-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/word-granularity-expected.checksum.
  • platform/mac-leopard/editing/selection/word-granularity-expected.png: Copied from LayoutTests/platform/mac/editing/selection/word-granularity-expected.png.
  • platform/mac-leopard/editing/spelling/inline_spelling_markers-expected.checksum: Copied from LayoutTests/platform/mac/editing/spelling/inline_spelling_markers-expected.checksum.
  • platform/mac-leopard/editing/spelling/inline_spelling_markers-expected.png: Copied from LayoutTests/platform/mac/editing/spelling/inline_spelling_markers-expected.png.
  • platform/mac-leopard/editing/spelling/spellcheck-attribute-expected.checksum: Copied from LayoutTests/platform/mac/editing/spelling/spellcheck-attribute-expected.checksum.
  • platform/mac-leopard/editing/spelling/spellcheck-attribute-expected.png: Copied from LayoutTests/platform/mac/editing/spelling/spellcheck-attribute-expected.png.
  • platform/mac-leopard/editing/style: Added.
  • platform/mac-leopard/editing/style/5017613-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/style/5017613-1-expected.checksum.
  • platform/mac-leopard/editing/style/5017613-1-expected.png: Copied from LayoutTests/platform/mac/editing/style/5017613-1-expected.png.
  • platform/mac-leopard/editing/style/5017613-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/style/5017613-2-expected.checksum.
  • platform/mac-leopard/editing/style/5017613-2-expected.png: Copied from LayoutTests/platform/mac/editing/style/5017613-2-expected.png.
  • platform/mac-leopard/editing/style/5046875-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/style/5046875-1-expected.checksum.
  • platform/mac-leopard/editing/style/5046875-1-expected.png: Copied from LayoutTests/platform/mac/editing/style/5046875-1-expected.png.
  • platform/mac-leopard/editing/style/5046875-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/style/5046875-2-expected.checksum.
  • platform/mac-leopard/editing/style/5046875-2-expected.png: Copied from LayoutTests/platform/mac/editing/style/5046875-2-expected.png.
  • platform/mac-leopard/editing/style/5065910-expected.checksum: Copied from LayoutTests/platform/mac/editing/style/5065910-expected.checksum.
  • platform/mac-leopard/editing/style/5065910-expected.png: Copied from LayoutTests/platform/mac/editing/style/5065910-expected.png.
  • platform/mac-leopard/editing/style/5084241-expected.checksum: Copied from LayoutTests/platform/mac/editing/style/5084241-expected.checksum.
  • platform/mac-leopard/editing/style/5084241-expected.png: Copied from LayoutTests/platform/mac/editing/style/5084241-expected.png.
  • platform/mac-leopard/editing/style/apple-style-editable-mix-expected.checksum: Copied from LayoutTests/platform/mac/editing/style/apple-style-editable-mix-expected.checksum.
  • platform/mac-leopard/editing/style/apple-style-editable-mix-expected.png: Copied from LayoutTests/platform/mac/editing/style/apple-style-editable-mix-expected.png.
  • platform/mac-leopard/editing/style/fontsize-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/style/fontsize-1-expected.checksum.
  • platform/mac-leopard/editing/style/fontsize-1-expected.png: Copied from LayoutTests/platform/mac/editing/style/fontsize-1-expected.png.
  • platform/mac-leopard/editing/style/non-inheritable-styles-expected.checksum: Copied from LayoutTests/platform/mac/editing/style/non-inheritable-styles-expected.checksum.
  • platform/mac-leopard/editing/style/non-inheritable-styles-expected.png: Copied from LayoutTests/platform/mac/editing/style/non-inheritable-styles-expected.png.
  • platform/mac/editing/deleting/4922367-expected.checksum: Replaced.
  • platform/mac/editing/deleting/4922367-expected.png: Replaced.
  • platform/mac/editing/deleting/5026848-1-expected.checksum: Replaced.
  • platform/mac/editing/deleting/5026848-1-expected.png: Replaced.
  • platform/mac/editing/deleting/5026848-2-expected.checksum: Replaced.
  • platform/mac/editing/deleting/5026848-2-expected.png: Replaced.
  • platform/mac/editing/deleting/5026848-3-expected.checksum: Replaced.
  • platform/mac/editing/deleting/5026848-3-expected.png: Replaced.
  • platform/mac/editing/deleting/5032066-expected.checksum: Replaced.
  • platform/mac/editing/deleting/5032066-expected.png: Replaced.
  • platform/mac/editing/deleting/5091898-expected.checksum: Replaced.
  • platform/mac/editing/deleting/5091898-expected.png: Replaced.
  • platform/mac/editing/deleting/5099303-expected.checksum: Replaced.
  • platform/mac/editing/deleting/5099303-expected.png: Replaced.
  • platform/mac/editing/deleting/5115601-expected.checksum: Replaced.
  • platform/mac/editing/deleting/5115601-expected.png: Replaced.
  • platform/mac/editing/deleting/5126166-expected.checksum: Replaced.
  • platform/mac/editing/deleting/5126166-expected.png: Replaced.
  • platform/mac/editing/deleting/5144139-2-expected.checksum: Replaced.
  • platform/mac/editing/deleting/5144139-2-expected.png: Replaced.
  • platform/mac/editing/deleting/5168598-expected.checksum: Replaced.
  • platform/mac/editing/deleting/5168598-expected.png: Replaced.
  • platform/mac/editing/deleting/5206311-1-expected.checksum: Replaced.
  • platform/mac/editing/deleting/5206311-1-expected.png: Replaced.
  • platform/mac/editing/deleting/5206311-2-expected.checksum: Replaced.
  • platform/mac/editing/deleting/5206311-2-expected.png: Replaced.
  • platform/mac/editing/deleting/5272440-expected.checksum: Replaced.
  • platform/mac/editing/deleting/5272440-expected.png: Replaced.
  • platform/mac/editing/deleting/5369009-expected.checksum: Replaced.
  • platform/mac/editing/deleting/5369009-expected.png: Replaced.
  • platform/mac/editing/deleting/5390681-2-expected.checksum: Replaced.
  • platform/mac/editing/deleting/5390681-2-expected.png: Replaced.
  • platform/mac/editing/deleting/5390681-expected.checksum: Replaced.
  • platform/mac/editing/deleting/5390681-expected.png: Replaced.
  • platform/mac/editing/deleting/5433862-2-expected.checksum: Replaced.
  • platform/mac/editing/deleting/5433862-2-expected.png: Replaced.
  • platform/mac/editing/deleting/5483370-expected.checksum: Replaced.
  • platform/mac/editing/deleting/5483370-expected.png: Replaced.
  • platform/mac/editing/deleting/delete-4038408-fix-expected.checksum: Replaced.
  • platform/mac/editing/deleting/delete-4038408-fix-expected.png: Replaced.
  • platform/mac/editing/deleting/delete-br-013-expected.checksum: Replaced.
  • platform/mac/editing/deleting/delete-br-013-expected.png: Replaced.
  • platform/mac/editing/deleting/delete-first-list-item-expected.checksum: Replaced.
  • platform/mac/editing/deleting/delete-first-list-item-expected.png: Replaced.
  • platform/mac/editing/deleting/delete-line-015-expected.checksum: Replaced.
  • platform/mac/editing/deleting/delete-line-015-expected.png: Replaced.
  • platform/mac/editing/deleting/delete-line-016-expected.checksum: Replaced.
  • platform/mac/editing/deleting/delete-line-016-expected.png: Replaced.
  • platform/mac/editing/deleting/delete-line-017-expected.checksum: Replaced.
  • platform/mac/editing/deleting/delete-line-017-expected.png: Replaced.
  • platform/mac/editing/deleting/delete-ws-fixup-002-expected.checksum: Replaced.
  • platform/mac/editing/deleting/delete-ws-fixup-002-expected.png: Replaced.
  • platform/mac/editing/deleting/merge-endOfParagraph-expected.checksum: Replaced.
  • platform/mac/editing/deleting/merge-endOfParagraph-expected.png: Replaced.
  • platform/mac/editing/deleting/merge-into-empty-block-1-expected.checksum: Replaced.
  • platform/mac/editing/deleting/merge-into-empty-block-1-expected.png: Replaced.
  • platform/mac/editing/deleting/merge-no-br-expected.checksum: Replaced.
  • platform/mac/editing/deleting/merge-no-br-expected.png: Replaced.
  • platform/mac/editing/deleting/merge-whitespace-pre-expected.checksum: Replaced.
  • platform/mac/editing/deleting/merge-whitespace-pre-expected.png: Replaced.
  • platform/mac/editing/deleting/pruning-after-merge-2-expected.checksum: Replaced.
  • platform/mac/editing/deleting/pruning-after-merge-2-expected.png: Replaced.
  • platform/mac/editing/deleting/smart-delete-003-expected.checksum: Replaced.
  • platform/mac/editing/deleting/smart-delete-003-expected.png: Replaced.
  • platform/mac/editing/deleting/smart-delete-004-expected.checksum: Replaced.
  • platform/mac/editing/deleting/smart-delete-004-expected.png: Replaced.
  • platform/mac/editing/deleting/table-cells-expected.checksum: Replaced.
  • platform/mac/editing/deleting/table-cells-expected.png: Replaced.
  • platform/mac/editing/execCommand/4580583-1-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/4580583-1-expected.png: Replaced.
  • platform/mac/editing/execCommand/4580583-2-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/4580583-2-expected.png: Replaced.
  • platform/mac/editing/execCommand/4641880-1-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/4641880-1-expected.png: Replaced.
  • platform/mac/editing/execCommand/4641880-2-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/4641880-2-expected.png: Replaced.
  • platform/mac/editing/execCommand/4747450-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/4747450-expected.png: Replaced.
  • platform/mac/editing/execCommand/4786404-2-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/4786404-2-expected.png: Replaced.
  • platform/mac/editing/execCommand/4916402-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/4916402-expected.png: Replaced.
  • platform/mac/editing/execCommand/4916541-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/4916541-expected.png: Replaced.
  • platform/mac/editing/execCommand/4920488-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/4920488-expected.png: Replaced.
  • platform/mac/editing/execCommand/4920742-1-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/4920742-1-expected.png: Replaced.
  • platform/mac/editing/execCommand/4924441-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/4924441-expected.png: Replaced.
  • platform/mac/editing/execCommand/5049671-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/5049671-expected.png: Replaced.
  • platform/mac/editing/execCommand/5080333-1-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/5080333-1-expected.png: Replaced.
  • platform/mac/editing/execCommand/5080333-2-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/5080333-2-expected.png: Replaced.
  • platform/mac/editing/execCommand/5136770-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/5136770-expected.png: Replaced.
  • platform/mac/editing/execCommand/5138441-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/5138441-expected.png: Replaced.
  • platform/mac/editing/execCommand/5190926-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/5190926-expected.png: Replaced.
  • platform/mac/editing/execCommand/5481523-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/5481523-expected.png: Replaced.
  • platform/mac/editing/execCommand/create-list-with-hr-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/create-list-with-hr-expected.png: Replaced.
  • platform/mac/editing/execCommand/find-after-replace-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/find-after-replace-expected.png: Replaced.
  • platform/mac/editing/execCommand/findString-2-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/findString-2-expected.png: Replaced.
  • platform/mac/editing/execCommand/insertHorizontalRule-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/insertHorizontalRule-expected.png: Replaced.
  • platform/mac/editing/execCommand/insertImage-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/insertImage-expected.png: Replaced.
  • platform/mac/editing/execCommand/outdent-selection-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/outdent-selection-expected.png: Replaced.
  • platform/mac/editing/execCommand/remove-formatting-2-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/remove-formatting-2-expected.png: Replaced.
  • platform/mac/editing/execCommand/remove-formatting-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/remove-formatting-expected.png: Replaced.
  • platform/mac/editing/execCommand/remove-list-from-range-selection-expected.checksum: Replaced.
  • platform/mac/editing/execCommand/remove-list-from-range-selection-expected.png: Replaced.
  • platform/mac/editing/inserting/12882-expected.checksum: Replaced.
  • platform/mac/editing/inserting/12882-expected.png: Replaced.
  • platform/mac/editing/inserting/4278698-expected.checksum: Replaced.
  • platform/mac/editing/inserting/4278698-expected.png: Replaced.
  • platform/mac/editing/inserting/4840662-expected.checksum: Replaced.
  • platform/mac/editing/inserting/4840662-expected.png: Replaced.
  • platform/mac/editing/inserting/4875189-2-expected.checksum: Replaced.
  • platform/mac/editing/inserting/4875189-2-expected.png: Replaced.
  • platform/mac/editing/inserting/5002441-expected.checksum: Replaced.
  • platform/mac/editing/inserting/5002441-expected.png: Replaced.
  • platform/mac/editing/inserting/5058163-1-expected.checksum: Replaced.
  • platform/mac/editing/inserting/5058163-1-expected.png: Replaced.
  • platform/mac/editing/inserting/5058163-2-expected.checksum: Replaced.
  • platform/mac/editing/inserting/5058163-2-expected.png: Replaced.
  • platform/mac/editing/inserting/5156401-2-expected.checksum: Replaced.
  • platform/mac/editing/inserting/5156401-2-expected.png: Replaced.
  • platform/mac/editing/inserting/5418891-expected.checksum: Replaced.
  • platform/mac/editing/inserting/5418891-expected.png: Replaced.
  • platform/mac/editing/inserting/5510537-expected.checksum: Replaced.
  • platform/mac/editing/inserting/5510537-expected.png: Replaced.
  • platform/mac/editing/inserting/5549929-2-expected.checksum: Replaced.
  • platform/mac/editing/inserting/5549929-2-expected.png: Replaced.
  • platform/mac/editing/inserting/5607069-2-expected.checksum: Replaced.
  • platform/mac/editing/inserting/5607069-2-expected.png: Replaced.
  • platform/mac/editing/inserting/5607069-3-expected.checksum: Replaced.
  • platform/mac/editing/inserting/5607069-3-expected.png: Replaced.
  • platform/mac/editing/inserting/6703873-expected.checksum: Replaced.
  • platform/mac/editing/inserting/6703873-expected.png: Replaced.
  • platform/mac/editing/inserting/editable-html-element-expected.checksum: Replaced.
  • platform/mac/editing/inserting/editable-html-element-expected.png: Replaced.
  • platform/mac/editing/inserting/edited-whitespace-1-expected.checksum: Replaced.
  • platform/mac/editing/inserting/edited-whitespace-1-expected.png: Replaced.
  • platform/mac/editing/inserting/editing-empty-divs-expected.checksum: Replaced.
  • platform/mac/editing/inserting/editing-empty-divs-expected.png: Replaced.
  • platform/mac/editing/inserting/insert-3786362-fix-expected.checksum: Replaced.
  • platform/mac/editing/inserting/insert-3786362-fix-expected.png: Replaced.
  • platform/mac/editing/inserting/insert-at-end-01-expected.checksum: Replaced.
  • platform/mac/editing/inserting/insert-at-end-01-expected.png: Replaced.
  • platform/mac/editing/inserting/insert-at-end-02-expected.checksum: Replaced.
  • platform/mac/editing/inserting/insert-at-end-02-expected.png: Replaced.
  • platform/mac/editing/inserting/insert-br-009-expected.checksum: Replaced.
  • platform/mac/editing/inserting/insert-br-009-expected.png: Replaced.
  • platform/mac/editing/inserting/insert-br-quoted-001-expected.checksum: Replaced.
  • platform/mac/editing/inserting/insert-br-quoted-001-expected.png: Replaced.
  • platform/mac/editing/inserting/insert-br-quoted-002-expected.checksum: Replaced.
  • platform/mac/editing/inserting/insert-br-quoted-002-expected.png: Replaced.
  • platform/mac/editing/inserting/insert-br-quoted-003-expected.checksum: Replaced.
  • platform/mac/editing/inserting/insert-br-quoted-003-expected.png: Replaced.
  • platform/mac/editing/inserting/insert-br-quoted-004-expected.checksum: Replaced.
  • platform/mac/editing/inserting/insert-br-quoted-004-expected.png: Replaced.
  • platform/mac/editing/inserting/insert-br-quoted-005-expected.checksum: Replaced.
  • platform/mac/editing/inserting/insert-br-quoted-005-expected.png: Replaced.
  • platform/mac/editing/inserting/insert-br-quoted-006-expected.checksum: Replaced.
  • platform/mac/editing/inserting/insert-br-quoted-006-expected.png: Replaced.
  • platform/mac/editing/inserting/insert-paragraph-01-expected.checksum: Replaced.
  • platform/mac/editing/inserting/insert-paragraph-01-expected.png: Replaced.
  • platform/mac/editing/inserting/insert-paragraph-02-expected.checksum: Replaced.
  • platform/mac/editing/inserting/insert-paragraph-02-expected.png: Replaced.
  • platform/mac/editing/inserting/insert-paragraph-03-expected.checksum: Replaced.
  • platform/mac/editing/inserting/insert-paragraph-03-expected.png: Replaced.
  • platform/mac/editing/inserting/insert-paragraph-04-expected.checksum: Replaced.
  • platform/mac/editing/inserting/insert-paragraph-04-expected.png: Replaced.
  • platform/mac/editing/inserting/insert-paragraph-05-expected.checksum: Replaced.
  • platform/mac/editing/inserting/insert-paragraph-05-expected.png: Replaced.
  • platform/mac/editing/inserting/line-break-expected.checksum: Replaced.
  • platform/mac/editing/inserting/line-break-expected.png: Replaced.
  • platform/mac/editing/inserting/multiple-lines-selected-expected.checksum: Replaced.
  • platform/mac/editing/inserting/multiple-lines-selected-expected.png: Replaced.
  • platform/mac/editing/inserting/paragraph-separator-03-expected.checksum: Replaced.
  • platform/mac/editing/inserting/paragraph-separator-03-expected.png: Replaced.
  • platform/mac/editing/inserting/paragraph-separator-in-table-2-expected.checksum: Replaced.
  • platform/mac/editing/inserting/paragraph-separator-in-table-2-expected.png: Replaced.
  • platform/mac/editing/inserting/typing-around-br-001-expected.checksum: Replaced.
  • platform/mac/editing/inserting/typing-around-br-001-expected.png: Replaced.
  • platform/mac/editing/pasteboard/3976872-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/3976872-expected.png: Replaced.
  • platform/mac/editing/pasteboard/4076267-2-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/4076267-2-expected.png: Replaced.
  • platform/mac/editing/pasteboard/4242293-1-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/4242293-1-expected.png: Replaced.
  • platform/mac/editing/pasteboard/4242293-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/4242293-expected.png: Replaced.
  • platform/mac/editing/pasteboard/4631972-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/4631972-expected.png: Replaced.
  • platform/mac/editing/pasteboard/4641033-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/4641033-expected.png: Replaced.
  • platform/mac/editing/pasteboard/4861080-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/4861080-expected.png: Replaced.
  • platform/mac/editing/pasteboard/4944770-1-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/4944770-1-expected.png: Replaced.
  • platform/mac/editing/pasteboard/4944770-2-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/4944770-2-expected.png: Replaced.
  • platform/mac/editing/pasteboard/4947130-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/4947130-expected.png: Replaced.
  • platform/mac/editing/pasteboard/5027857-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/5027857-expected.png: Replaced.
  • platform/mac/editing/pasteboard/5032095-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/5032095-expected.png: Replaced.
  • platform/mac/editing/pasteboard/5065605-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/5065605-expected.png: Replaced.
  • platform/mac/editing/pasteboard/5071074-2-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/5071074-2-expected.png: Replaced.
  • platform/mac/editing/pasteboard/5071074-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/5071074-expected.png: Replaced.
  • platform/mac/editing/pasteboard/5075944-2-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/5075944-2-expected.png: Replaced.
  • platform/mac/editing/pasteboard/5075944-3-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/5075944-3-expected.png: Replaced.
  • platform/mac/editing/pasteboard/5089327-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/5089327-expected.png: Replaced.
  • platform/mac/editing/pasteboard/5247341-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/5247341-expected.png: Replaced.
  • platform/mac/editing/pasteboard/5368833-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/5368833-expected.png: Replaced.
  • platform/mac/editing/pasteboard/5387578-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/5387578-expected.png: Replaced.
  • platform/mac/editing/pasteboard/5478250-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/5478250-expected.png: Replaced.
  • platform/mac/editing/pasteboard/5601583-1-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/5601583-1-expected.png: Replaced.
  • platform/mac/editing/pasteboard/8145-2-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/8145-2-expected.png: Replaced.
  • platform/mac/editing/pasteboard/8145-3-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/8145-3-expected.png: Replaced.
  • platform/mac/editing/pasteboard/bad-placeholder-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/bad-placeholder-expected.png: Replaced.
  • platform/mac/editing/pasteboard/copy-paste-bidi-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/copy-paste-bidi-expected.png: Replaced.
  • platform/mac/editing/pasteboard/copy-standalone-image-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/copy-standalone-image-expected.png: Replaced.
  • platform/mac/editing/pasteboard/displaced-generic-placeholder-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/displaced-generic-placeholder-expected.png: Replaced.
  • platform/mac/editing/pasteboard/display-block-on-spans-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/display-block-on-spans-expected.png: Replaced.
  • platform/mac/editing/pasteboard/drop-text-without-selection-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/drop-text-without-selection-expected.png: Replaced.
  • platform/mac/editing/pasteboard/interchange-newline-1-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/interchange-newline-1-expected.png: Replaced.
  • platform/mac/editing/pasteboard/interchange-newline-2-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/interchange-newline-2-expected.png: Replaced.
  • platform/mac/editing/pasteboard/interchange-newline-3-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/interchange-newline-3-expected.png: Replaced.
  • platform/mac/editing/pasteboard/interchange-newline-4-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/interchange-newline-4-expected.png: Replaced.
  • platform/mac/editing/pasteboard/merge-after-delete-1-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/merge-after-delete-1-expected.png: Replaced.
  • platform/mac/editing/pasteboard/merge-after-delete-2-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/merge-after-delete-2-expected.png: Replaced.
  • platform/mac/editing/pasteboard/merge-end-1-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/merge-end-1-expected.png: Replaced.
  • platform/mac/editing/pasteboard/merge-end-2-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/merge-end-2-expected.png: Replaced.
  • platform/mac/editing/pasteboard/merge-end-5-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/merge-end-5-expected.png: Replaced.
  • platform/mac/editing/pasteboard/merge-end-blockquote-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/merge-end-blockquote-expected.png: Replaced.
  • platform/mac/editing/pasteboard/merge-end-borders-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/merge-end-borders-expected.png: Replaced.
  • platform/mac/editing/pasteboard/merge-end-list-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/merge-end-list-expected.png: Replaced.
  • platform/mac/editing/pasteboard/merge-end-table-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/merge-end-table-expected.png: Replaced.
  • platform/mac/editing/pasteboard/merge-start-blockquote-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/merge-start-blockquote-expected.png: Replaced.
  • platform/mac/editing/pasteboard/nested-blocks-with-text-area-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/nested-blocks-with-text-area-expected.png: Replaced.
  • platform/mac/editing/pasteboard/nested-blocks-with-text-field-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/nested-blocks-with-text-field-expected.png: Replaced.
  • platform/mac/editing/pasteboard/paste-RTFD-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/paste-RTFD-expected.png: Replaced.
  • platform/mac/editing/pasteboard/paste-blockquote-3-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/paste-blockquote-3-expected.png: Replaced.
  • platform/mac/editing/pasteboard/paste-blockquote-into-blockquote-2-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/paste-blockquote-into-blockquote-2-expected.png: Replaced.
  • platform/mac/editing/pasteboard/paste-pre-002-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/paste-pre-002-expected.png: Replaced.
  • platform/mac/editing/pasteboard/paste-table-003-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/paste-table-003-expected.png: Replaced.
  • platform/mac/editing/pasteboard/paste-text-012-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/paste-text-012-expected.png: Replaced.
  • platform/mac/editing/pasteboard/paste-text-013-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/paste-text-013-expected.png: Replaced.
  • platform/mac/editing/pasteboard/paste-text-014-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/paste-text-014-expected.png: Replaced.
  • platform/mac/editing/pasteboard/paste-text-016-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/paste-text-016-expected.png: Replaced.
  • platform/mac/editing/pasteboard/pasting-object-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/pasting-object-expected.png: Replaced.
  • platform/mac/editing/pasteboard/pasting-tabs-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/pasting-tabs-expected.png: Replaced.
  • platform/mac/editing/pasteboard/prevent-block-nesting-01-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/prevent-block-nesting-01-expected.png: Replaced.
  • platform/mac/editing/pasteboard/quirks-mode-br-1-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/quirks-mode-br-1-expected.png: Replaced.
  • platform/mac/editing/pasteboard/select-element-1-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/select-element-1-expected.png: Replaced.
  • platform/mac/editing/pasteboard/smart-drag-drop-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/smart-drag-drop-expected.png: Replaced.
  • platform/mac/editing/pasteboard/smart-paste-008-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/smart-paste-008-expected.png: Replaced.
  • platform/mac/editing/pasteboard/styled-element-markup-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/styled-element-markup-expected.png: Replaced.
  • platform/mac/editing/pasteboard/subframe-dragndrop-1-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/subframe-dragndrop-1-expected.png: Replaced.
  • platform/mac/editing/pasteboard/testcase-9507-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/testcase-9507-expected.png: Replaced.
  • platform/mac/editing/pasteboard/undoable-fragment-removes-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/undoable-fragment-removes-expected.png: Replaced.
  • platform/mac/editing/pasteboard/unrendered-br-expected.checksum: Replaced.
  • platform/mac/editing/pasteboard/unrendered-br-expected.png: Replaced.
  • platform/mac/editing/selection/13804-expected.checksum: Replaced.
  • platform/mac/editing/selection/13804-expected.png: Replaced.
  • platform/mac/editing/selection/14971-expected.checksum: Replaced.
  • platform/mac/editing/selection/14971-expected.png: Replaced.
  • platform/mac/editing/selection/4402375-expected.checksum: Replaced.
  • platform/mac/editing/selection/4402375-expected.png: Replaced.
  • platform/mac/editing/selection/4818145-expected.checksum: Replaced.
  • platform/mac/editing/selection/4818145-expected.png: Replaced.
  • platform/mac/editing/selection/4889598-expected.checksum: Replaced.
  • platform/mac/editing/selection/4889598-expected.png: Replaced.
  • platform/mac/editing/selection/4895428-2-expected.checksum: Replaced.
  • platform/mac/editing/selection/4895428-2-expected.png: Replaced.
  • platform/mac/editing/selection/4895428-3-expected.checksum: Replaced.
  • platform/mac/editing/selection/4895428-3-expected.png: Replaced.
  • platform/mac/editing/selection/4895428-4-expected.checksum: Replaced.
  • platform/mac/editing/selection/4895428-4-expected.png: Replaced.
  • platform/mac/editing/selection/4932260-3-expected.checksum: Replaced.
  • platform/mac/editing/selection/4932260-3-expected.png: Replaced.
  • platform/mac/editing/selection/4947387-expected.checksum: Replaced.
  • platform/mac/editing/selection/4947387-expected.png: Replaced.
  • platform/mac/editing/selection/4960116-expected.checksum: Replaced.
  • platform/mac/editing/selection/4960116-expected.png: Replaced.
  • platform/mac/editing/selection/4975120-expected.checksum: Replaced.
  • platform/mac/editing/selection/4975120-expected.png: Replaced.
  • platform/mac/editing/selection/4983858-expected.checksum: Replaced.
  • platform/mac/editing/selection/4983858-expected.png: Replaced.
  • platform/mac/editing/selection/5007143-2-expected.checksum: Replaced.
  • platform/mac/editing/selection/5007143-2-expected.png: Replaced.
  • platform/mac/editing/selection/5007143-expected.checksum: Replaced.
  • platform/mac/editing/selection/5007143-expected.png: Replaced.
  • platform/mac/editing/selection/5057506-2-expected.checksum: Replaced.
  • platform/mac/editing/selection/5057506-2-expected.png: Replaced.
  • platform/mac/editing/selection/5057506-expected.checksum: Replaced.
  • platform/mac/editing/selection/5057506-expected.png: Replaced.
  • platform/mac/editing/selection/5076323-1-expected.checksum: Replaced.
  • platform/mac/editing/selection/5076323-1-expected.png: Replaced.
  • platform/mac/editing/selection/5081257-1-expected.checksum: Replaced.
  • platform/mac/editing/selection/5081257-1-expected.png: Replaced.
  • platform/mac/editing/selection/5099303-expected.checksum: Replaced.
  • platform/mac/editing/selection/5099303-expected.png: Replaced.
  • platform/mac/editing/selection/5131716-1-expected.checksum: Replaced.
  • platform/mac/editing/selection/5131716-1-expected.png: Replaced.
  • platform/mac/editing/selection/5131716-2-expected.checksum: Replaced.
  • platform/mac/editing/selection/5131716-2-expected.png: Replaced.
  • platform/mac/editing/selection/5131716-3-expected.checksum: Replaced.
  • platform/mac/editing/selection/5131716-3-expected.png: Replaced.
  • platform/mac/editing/selection/5131716-4-expected.checksum: Replaced.
  • platform/mac/editing/selection/5131716-4-expected.png: Replaced.
  • platform/mac/editing/selection/5195166-2-expected.checksum: Replaced.
  • platform/mac/editing/selection/5195166-2-expected.png: Replaced.
  • platform/mac/editing/selection/5232159-expected.checksum: Replaced.
  • platform/mac/editing/selection/5232159-expected.png: Replaced.
  • platform/mac/editing/selection/5234383-1-expected.checksum: Replaced.
  • platform/mac/editing/selection/5234383-1-expected.png: Replaced.
  • platform/mac/editing/selection/5234383-2-expected.checksum: Replaced.
  • platform/mac/editing/selection/5234383-2-expected.png: Replaced.
  • platform/mac/editing/selection/5240265-expected.checksum: Replaced.
  • platform/mac/editing/selection/5240265-expected.png: Replaced.
  • platform/mac/editing/selection/5354455-1-expected.checksum: Replaced.
  • platform/mac/editing/selection/5354455-1-expected.png: Replaced.
  • platform/mac/editing/selection/5354455-2-expected.checksum: Replaced.
  • platform/mac/editing/selection/5354455-2-expected.png: Replaced.
  • platform/mac/editing/selection/6476-expected.checksum: Replaced.
  • platform/mac/editing/selection/6476-expected.png: Replaced.
  • platform/mac/editing/selection/7152-1-expected.checksum: Replaced.
  • platform/mac/editing/selection/7152-1-expected.png: Replaced.
  • platform/mac/editing/selection/7152-2-expected.checksum: Replaced.
  • platform/mac/editing/selection/7152-2-expected.png: Replaced.
  • platform/mac/editing/selection/addRange-expected.checksum: Replaced.
  • platform/mac/editing/selection/addRange-expected.png: Replaced.
  • platform/mac/editing/selection/after-line-wrap-expected.checksum: Replaced.
  • platform/mac/editing/selection/after-line-wrap-expected.png: Replaced.
  • platform/mac/editing/selection/caret-and-focus-ring-expected.checksum: Replaced.
  • platform/mac/editing/selection/caret-and-focus-ring-expected.png: Replaced.
  • platform/mac/editing/selection/caret-rtl-2-expected.checksum: Replaced.
  • platform/mac/editing/selection/caret-rtl-2-expected.png: Replaced.
  • platform/mac/editing/selection/caret-rtl-expected.checksum: Replaced.
  • platform/mac/editing/selection/caret-rtl-expected.png: Replaced.
  • platform/mac/editing/selection/clear-selection-expected.checksum: Replaced.
  • platform/mac/editing/selection/clear-selection-expected.png: Replaced.
  • platform/mac/editing/selection/click-start-of-line-expected.checksum: Replaced.
  • platform/mac/editing/selection/click-start-of-line-expected.png: Replaced.
  • platform/mac/editing/selection/contenteditable-click-inside-expected.checksum: Replaced.
  • platform/mac/editing/selection/contenteditable-click-inside-expected.png: Replaced.
  • platform/mac/editing/selection/designmode-no-caret-expected.checksum: Replaced.
  • platform/mac/editing/selection/designmode-no-caret-expected.png: Replaced.
  • platform/mac/editing/selection/drag-in-iframe-expected.checksum: Replaced.
  • platform/mac/editing/selection/drag-in-iframe-expected.png: Replaced.
  • platform/mac/editing/selection/editable-html-element-expected.checksum: Replaced.
  • platform/mac/editing/selection/editable-html-element-expected.png: Replaced.
  • platform/mac/editing/selection/editable-non-editable-crash-expected.checksum: Replaced.
  • platform/mac/editing/selection/editable-non-editable-crash-expected.png: Replaced.
  • platform/mac/editing/selection/end-of-document-expected.checksum: Replaced.
  • platform/mac/editing/selection/end-of-document-expected.png: Replaced.
  • platform/mac/editing/selection/expanding-selections-expected.checksum: Replaced.
  • platform/mac/editing/selection/expanding-selections-expected.png: Replaced.
  • platform/mac/editing/selection/expanding-selections2-expected.checksum: Replaced.
  • platform/mac/editing/selection/expanding-selections2-expected.png: Replaced.
  • platform/mac/editing/selection/focus_editable_html-expected.checksum: Replaced.
  • platform/mac/editing/selection/focus_editable_html-expected.png: Replaced.
  • platform/mac/editing/selection/iframe-expected.checksum: Replaced.
  • platform/mac/editing/selection/iframe-expected.png: Replaced.
  • platform/mac/editing/selection/inline-closest-leaf-child-expected.checksum: Replaced.
  • platform/mac/editing/selection/inline-closest-leaf-child-expected.png: Replaced.
  • platform/mac/editing/selection/inline-table-expected.checksum: Replaced.
  • platform/mac/editing/selection/inline-table-expected.png: Replaced.
  • platform/mac/editing/selection/leave-requested-block-expected.checksum: Replaced.
  • platform/mac/editing/selection/leave-requested-block-expected.png: Replaced.
  • platform/mac/editing/selection/mixed-editability-1-expected.checksum: Replaced.
  • platform/mac/editing/selection/mixed-editability-1-expected.png: Replaced.
  • platform/mac/editing/selection/mixed-editability-3-expected.checksum: Replaced.
  • platform/mac/editing/selection/mixed-editability-3-expected.png: Replaced.
  • platform/mac/editing/selection/mixed-editability-4-expected.checksum: Replaced.
  • platform/mac/editing/selection/mixed-editability-4-expected.png: Replaced.
  • platform/mac/editing/selection/mixed-editability-5-expected.checksum: Replaced.
  • platform/mac/editing/selection/mixed-editability-5-expected.png: Replaced.
  • platform/mac/editing/selection/mixed-editability-6-expected.checksum: Replaced.
  • platform/mac/editing/selection/mixed-editability-6-expected.png: Replaced.
  • platform/mac/editing/selection/mixed-editability-7-expected.checksum: Replaced.
  • platform/mac/editing/selection/mixed-editability-7-expected.png: Replaced.
  • platform/mac/editing/selection/mixed-editability-8-expected.checksum: Replaced.
  • platform/mac/editing/selection/mixed-editability-8-expected.png: Replaced.
  • platform/mac/editing/selection/mixed-editability-9-expected.checksum: Replaced.
  • platform/mac/editing/selection/mixed-editability-9-expected.png: Replaced.
  • platform/mac/editing/selection/move-by-sentence-linebreak-expected.checksum: Replaced.
  • platform/mac/editing/selection/move-by-sentence-linebreak-expected.png: Replaced.
  • platform/mac/editing/selection/node-removal-1-expected.checksum: Replaced.
  • platform/mac/editing/selection/node-removal-1-expected.png: Replaced.
  • platform/mac/editing/selection/node-removal-2-expected.checksum: Replaced.
  • platform/mac/editing/selection/node-removal-2-expected.png: Replaced.
  • platform/mac/editing/selection/paragraph-granularity-expected.checksum: Replaced.
  • platform/mac/editing/selection/paragraph-granularity-expected.png: Replaced.
  • platform/mac/editing/selection/previous-line-position-expected.checksum: Replaced.
  • platform/mac/editing/selection/previous-line-position-expected.png: Replaced.
  • platform/mac/editing/selection/replace-selection-1-expected.checksum: Replaced.
  • platform/mac/editing/selection/replace-selection-1-expected.png: Replaced.
  • platform/mac/editing/selection/replaced-boundaries-1-expected.checksum: Replaced.
  • platform/mac/editing/selection/replaced-boundaries-1-expected.png: Replaced.
  • platform/mac/editing/selection/replaced-boundaries-2-expected.checksum: Replaced.
  • platform/mac/editing/selection/replaced-boundaries-2-expected.png: Replaced.
  • platform/mac/editing/selection/replaced-boundaries-3-expected.checksum: Replaced.
  • platform/mac/editing/selection/replaced-boundaries-3-expected.png: Replaced.
  • platform/mac/editing/selection/select-all-005-expected.checksum: Replaced.
  • platform/mac/editing/selection/select-all-005-expected.png: Replaced.
  • platform/mac/editing/selection/select-all-006-expected.checksum: Replaced.
  • platform/mac/editing/selection/select-all-006-expected.png: Replaced.
  • platform/mac/editing/selection/select-all-iframe-expected.checksum: Replaced.
  • platform/mac/editing/selection/select-all-iframe-expected.png: Replaced.
  • platform/mac/editing/selection/select-box-expected.checksum: Replaced.
  • platform/mac/editing/selection/select-box-expected.png: Replaced.
  • platform/mac/editing/selection/select-element-paragraph-boundary-expected.checksum: Replaced.
  • platform/mac/editing/selection/select-element-paragraph-boundary-expected.png: Replaced.
  • platform/mac/editing/selection/select-from-textfield-outwards-expected.checksum: Replaced.
  • platform/mac/editing/selection/select-from-textfield-outwards-expected.png: Replaced.
  • platform/mac/editing/selection/selection-actions-expected.checksum: Replaced.
  • platform/mac/editing/selection/selection-actions-expected.png: Replaced.
  • platform/mac/editing/selection/selection-background-expected.checksum: Replaced.
  • platform/mac/editing/selection/selection-background-expected.png: Replaced.
  • platform/mac/editing/selection/triple-click-in-pre-expected.checksum: Replaced.
  • platform/mac/editing/selection/triple-click-in-pre-expected.png: Replaced.
  • platform/mac/editing/selection/unrendered-space-expected.checksum: Replaced.
  • platform/mac/editing/selection/unrendered-space-expected.png: Replaced.
  • platform/mac/editing/selection/word-granularity-expected.checksum: Replaced.
  • platform/mac/editing/selection/word-granularity-expected.png: Replaced.
  • platform/mac/editing/spelling/inline_spelling_markers-expected.checksum: Replaced.
  • platform/mac/editing/spelling/inline_spelling_markers-expected.png: Replaced.
  • platform/mac/editing/spelling/spellcheck-attribute-expected.checksum: Replaced.
  • platform/mac/editing/spelling/spellcheck-attribute-expected.png: Replaced.
  • platform/mac/editing/style/5017613-1-expected.checksum: Replaced.
  • platform/mac/editing/style/5017613-1-expected.png: Replaced.
  • platform/mac/editing/style/5017613-2-expected.checksum: Replaced.
  • platform/mac/editing/style/5017613-2-expected.png: Replaced.
  • platform/mac/editing/style/5046875-1-expected.checksum: Replaced.
  • platform/mac/editing/style/5046875-1-expected.png: Replaced.
  • platform/mac/editing/style/5046875-2-expected.checksum: Replaced.
  • platform/mac/editing/style/5046875-2-expected.png: Replaced.
  • platform/mac/editing/style/5065910-expected.checksum: Replaced.
  • platform/mac/editing/style/5065910-expected.png: Replaced.
  • platform/mac/editing/style/5084241-expected.checksum: Replaced.
  • platform/mac/editing/style/5084241-expected.png: Replaced.
  • platform/mac/editing/style/apple-style-editable-mix-expected.checksum: Replaced.
  • platform/mac/editing/style/apple-style-editable-mix-expected.png: Replaced.
  • platform/mac/editing/style/fontsize-1-expected.checksum: Replaced.
  • platform/mac/editing/style/fontsize-1-expected.png: Replaced.
  • platform/mac/editing/style/non-inheritable-styles-expected.checksum: Replaced.
  • platform/mac/editing/style/non-inheritable-styles-expected.png: Replaced.
5:46 PM Changeset in webkit [60106] by Darin Adler
  • 2 edits in trunk/WebCore

Fix build on platforms with touch code enabled.

  • page/EventHandler.cpp:

(WebCore::pageZoomFactor): Added.
(WebCore::EventHandler::handleTouchEvent): Use pageZoomFactor.

5:44 PM Changeset in webkit [60105] by barraclough@apple.com
  • 19 edits in trunk/JavaScriptCore

Reverting 60075 & 60084, these broke the interpreter.

Reviewed by NOBODY (revert).

  • bytecode/CodeBlock.cpp:

(JSC::CodeBlock::dump):
(JSC::CodeBlock::getByIdExceptionInfoForBytecodeOffset):

  • bytecode/CodeBlock.h:
  • bytecode/Opcode.h:
  • bytecompiler/BytecodeGenerator.cpp:

(JSC::BytecodeGenerator::BytecodeGenerator):
(JSC::BytecodeGenerator::emitConstruct):

  • bytecompiler/BytecodeGenerator.h:

(JSC::BytecodeGenerator::emitGetByIdExceptionInfo):

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::privateExecute):

  • jit/JIT.cpp:

(JSC::JIT::privateCompileMainPass):

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

(JSC::JIT::compileOpConstructSetupArgs):
(JSC::JIT::compileOpCall):
(JSC::JIT::compileOpCallSlowCase):

  • jit/JITCall32_64.cpp:

(JSC::JIT::compileOpConstructSetupArgs):
(JSC::JIT::compileOpCall):
(JSC::JIT::compileOpCallSlowCase):

  • jit/JITOpcodes.cpp:

(JSC::JIT::privateCompileCTIMachineTrampolines):
(JSC::JIT::emit_op_neq_null):
(JSC::JIT::emit_op_convert_this):

  • jit/JITOpcodes32_64.cpp:

(JSC::JIT::privateCompileCTIMachineTrampolines):

  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION):
(JSC::JITThunks::hostFunctionStub):

  • jit/JITStubs.h:

(JSC::JITThunks::ctiNativeCall):
(JSC::):

  • runtime/ExceptionHelpers.cpp:

(JSC::createNotAnObjectError):

  • runtime/Executable.h:

(JSC::NativeExecutable::create):
(JSC::NativeExecutable::NativeExecutable):

  • runtime/JSFunction.cpp:
  • runtime/JSFunction.h:
5:33 PM Changeset in webkit [60104] by Darin Adler
  • 34 edits in trunk

2010-05-24 Darin Adler <Darin Adler>

Reviewed by Eric Seidel.

Move view-related functions from Frame to FrameView
https://bugs.webkit.org/show_bug.cgi?id=39366

  • src/WebViewImpl.cpp: (WebKit::WebViewImpl::setZoomLevel): Call setZoomLevel on FrameView.

2010-05-24 Darin Adler <Darin Adler>

Reviewed by Eric Seidel.

Move view-related functions from Frame to FrameView
https://bugs.webkit.org/show_bug.cgi?id=39366

  • Api/qwebframe.cpp: (QWebFrame::setTextSizeMultiplier): Call functions on FrameView. (QWebFrame::textSizeMultiplier): Ditto. (QWebFrame::setZoomFactor): Ditto. (QWebFrame::zoomFactor): Ditto.
  • Api/qwebpage.cpp: (QWebPage::setContentEditable): Removed call to empty function, removeEditingStyleFromBodyElement.

2010-05-24 Darin Adler <Darin Adler>

Reviewed by Eric Seidel.

Move view-related functions from Frame to FrameView
https://bugs.webkit.org/show_bug.cgi?id=39366

  • webkit/webkitwebview.cpp: (webkit_web_view_set_editable): Remove call to empty function removeEditngStyleFromBodyElement. (webkit_web_view_get_zoom_level): Call functions on FrameView. (webkit_web_view_apply_zoom_level): Ditto.

2010-05-24 Darin Adler <Darin Adler>

Reviewed by Eric Seidel.

Move view-related functions from Frame to FrameView
https://bugs.webkit.org/show_bug.cgi?id=39366

  • efl/ewk/ewk_frame.cpp: (ewk_frame_editable_set): Removed call to empty function, removeEditingStyleFromBodyElement. (ewk_frame_zoom_get): Call function on FrameView. (ewk_frame_zoom_set): Ditto. (ewk_frame_zoom_text_only_set): Ditto.

2010-05-24 Darin Adler <Darin Adler>

Reviewed by Eric Seidel.

Move view-related functions from Frame to FrameView
https://bugs.webkit.org/show_bug.cgi?id=39366

  • WebFrame.cpp: (WebFrame::setTextSizeMultiplier): Call function on FrameView.
  • WebView.cpp: (WebView::setZoomMultiplier): Ditto.

2010-05-24 Darin Adler <Darin Adler>

Reviewed by Eric Seidel.

Move view-related functions from Frame to FrameView
https://bugs.webkit.org/show_bug.cgi?id=39366

  • WebFrame.cpp: (wxWebFrame::CanIncreaseTextSize): Check FrameView is not null. (wxWebFrame::IncreaseTextSize): Call function on FrameView. (wxWebFrame::CanDecreaseTextSize): Ditto. (wxWebFrame::DecreaseTextSize): Ditto. (wxWebFrame::ResetTextSize): Ditto.

2010-05-24 Darin Adler <Darin Adler>

Reviewed by Eric Seidel.

Move view-related functions from Frame to FrameView
https://bugs.webkit.org/show_bug.cgi?id=39366

  • WebView/WebView.mm: (-[WebView _setZoomMultiplier:isTextOnly:]): Call function on FrameView. (-[WebView setEditable:]): Get rid of call to empty function, removeEditingStyleFromBodyElement.

2010-05-24 Darin Adler <Darin Adler>

Reviewed by Eric Seidel.

Move view-related functions from Frame to FrameView
https://bugs.webkit.org/show_bug.cgi?id=39366

Refactoring only so adds no new tests.

  • WebCore.base.exp: Updated.
  • css/CSSStyleSelector.cpp: (WebCore::CSSStyleSelector::styleForDocument): Call zoom factor function on FrameView. (WebCore::CSSStyleSelector::applyProperty): Ditto. (WebCore::CSSStyleSelector::getComputedSizeFromSpecifiedSize): Ditto.
  • dom/Document.cpp: (WebCore::Document::elementFromPoint): Ditto. (WebCore::Document::caretRangeFromPoint): Ditto.
  • dom/MouseRelatedEvent.cpp: (WebCore::contentsX): Ditto. (WebCore::contentsY): Ditto. (WebCore::pageZoomFactor): Added helper function. (WebCore::MouseRelatedEvent::computePageLocation): Use helper. (WebCore::MouseRelatedEvent::receivedTarget): Ditto.
  • dom/Node.cpp: (WebCore::Node::dispatchMouseEvent): Call zoom factor function on FrameView. (WebCore::Node::dispatchWheelEvent): Ditto.
  • dom/Touch.cpp: (WebCore::contentsX): Call zoom factor function on FrameView. (WebCore::contentsY): Ditto.
  • html/HTMLBodyElement.cpp: (WebCore::adjustForZoom): Ditto. (WebCore::HTMLBodyElement::setScrollLeft): Ditto. (WebCore::HTMLBodyElement::setScrollTop): Ditto.
  • html/HTMLImageElement.cpp: (WebCore::HTMLImageElement::width): Ditto. (WebCore::HTMLImageElement::height): Ditto.
  • loader/ImageDocument.cpp: (WebCore::pageZoomFactor): Added helper function. (WebCore::ImageTokenizer::finish): Use helper function (WebCore::ImageDocument::scale): Ditto. (WebCore::ImageDocument::resizeImageToFit): Ditto. (WebCore::ImageDocument::imageChanged): Ditto. (WebCore::ImageDocument::restoreImageSize): Ditto. (WebCore::ImageDocument::imageFitsInWindow): Ditto.
  • page/DOMWindow.cpp: (WebCore::DOMWindow::innerHeight): Ditto. (WebCore::DOMWindow::innerWidth): Ditto. (WebCore::DOMWindow::scrollX): Ditto. (WebCore::DOMWindow::scrollY): Ditto. (WebCore::DOMWindow::scrollTo): Ditto.
  • page/DragController.cpp: (WebCore::elementUnderMouse): Ditto.
  • page/Frame.cpp: (WebCore::Frame::Frame): Removed code to initialize m_zoomFactor.
  • page/Frame.h: Moved functions to FrameView. Moved all #if to the left margin to make the style consistent. Removed empty function removeEditingStyleFromBodyElement.
  • page/FrameView.cpp: (WebCore::parentZoomFactor): Added helper function for constructor. (WebCore::FrameView::FrameView): Added initialization of m_zoomFactor. (WebCore::FrameView::shouldApplyTextZoom): Moved this here from Frame. (WebCore::FrameView::shouldApplyPageZoom): Ditto. (WebCore::FrameView::setZoomFactor): Ditto.
  • page/FrameView.h: Added members moved here from Frame.
  • rendering/RenderView.cpp: (WebCore::RenderView::zoomFactor): Call FrameView instead of Frame.
  • svg/SVGSVGElement.cpp: (WebCore::SVGSVGElement::currentScale): Ditto. (WebCore::SVGSVGElement::setCurrentScale): Ditto.
5:24 PM Changeset in webkit [60103] by mrowe@apple.com
  • 3 edits in branches/safari-533-branch/WebCore

Merge r60045.

5:24 PM Changeset in webkit [60102] by mrowe@apple.com
  • 8 edits
    14 adds in branches/safari-533-branch

Merge r59982.

5:24 PM Changeset in webkit [60101] by mrowe@apple.com
  • 8 edits
    3 adds in branches/safari-533-branch

Merge r60014.

5:01 PM Changeset in webkit [60100] by jer.noble@apple.com
  • 12 edits
    2 deletes in trunk

No review; build fix only.

WebCore:

Roll-out changes r60094, 60096-60097.

  • WebCore.vcproj/WebCore.vcproj:
  • platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp:

(WebCore::MediaPlayerPrivateQuickTimeVisualContext::load):
(WebCore::MediaPlayerPrivateQuickTimeVisualContext::retrieveCurrentImage):
(WebCore::MediaPlayerPrivateQuickTimeVisualContext::destroyLayerForMovie):

  • platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.h:
  • platform/graphics/win/QTPixelBuffer.cpp:
  • platform/graphics/win/QTPixelBuffer.h:
  • platform/graphics/win/WKCACFLayer.cpp:

(WebCore::WKCACFLayer::printLayer):

  • platform/graphics/win/WKCACFLayer.h:

(WebCore::WKCACFLayer::setContents):
(WebCore::WKCACFLayer::contents):
(WebCore::WKCACFLayer::speed):
(WebCore::WKCACFLayer::timeOffset):

  • platform/graphics/win/WKCAImageQueue.cpp: Removed.
  • platform/graphics/win/WKCAImageQueue.h: Removed.

WebKitLibraries:

Roll-out changes r60094, 60096-60097.

  • win/include/WebKitSystemInterface/WebKitSystemInterface.h:
  • win/lib/WebKitSystemInterface.lib:
  • win/lib/WebKitSystemInterface_debug.lib:
5:00 PM Changeset in webkit [60099] by pfeldman@chromium.org
  • 1 edit
    14 deletes in trunk/LayoutTests

2010-05-24 Pavel Feldman <pfeldman@chromium.org>

Not reviewed: cleaning up, actually deleting false expectations.

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

  • platform/chromium-mac/plugins/document-open-expected.txt: Removed.
  • platform/chromium-mac/plugins/geturlnotify-during-document-teardown-expected.txt: Removed.
  • platform/chromium-mac/plugins/netscape-plugin-map-data-to-src-expected.txt: Removed.
  • platform/chromium-mac/plugins/netscape-plugin-setwindow-size-2-expected.txt: Removed.
  • platform/chromium-mac/plugins/netscape-plugin-setwindow-size-expected.txt: Removed.
  • platform/chromium-mac/plugins/open-and-close-window-with-plugin-expected.txt: Removed.
  • platform/chromium-mac/plugins/window-open-expected.txt: Removed.
  • platform/chromium-win/plugins/document-open-expected.txt: Removed.
  • platform/chromium-win/plugins/geturlnotify-during-document-teardown-expected.txt: Removed.
  • platform/chromium-win/plugins/netscape-plugin-map-data-to-src-expected.txt: Removed.
  • platform/chromium-win/plugins/netscape-plugin-setwindow-size-2-expected.txt: Removed.
  • platform/chromium-win/plugins/netscape-plugin-setwindow-size-expected.txt: Removed.
  • platform/chromium-win/plugins/open-and-close-window-with-plugin-expected.txt: Removed.
  • platform/chromium-win/plugins/window-open-expected.txt: Removed.
4:34 PM Changeset in webkit [60098] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-24 Eric Seidel <eric@webkit.org>

Unreviewed. Add wtf/UnusedParam.h include to make Chromium happy.

Chromium does not use a prefix header in order to support
distcc3. Other ports all do. The real fix is to remove
wtf/UnusedParam.h from the prefix header.

  • html/HTML5TreeBuilder.cpp:
4:23 PM Changeset in webkit [60097] by jer.noble@apple.com
  • 2 edits in trunk/WebCore

No review; build fix only.

Second half of previous build fix, in which I add the include in the correct place.

  • platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp:
4:20 PM Changeset in webkit [60096] by jer.noble@apple.com
  • 2 edits in trunk/WebCore

No review; build fix only.

Include WKCAImageQueue.h outside the ACCELERATED_COMPOSITING check.

  • platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp:
4:15 PM Changeset in webkit [60095] by eric@webkit.org
  • 4 edits in trunk/WebCore

2010-05-24 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

Prepare HTML5TreeBuilder for addition of new HTML5 parser code
https://bugs.webkit.org/show_bug.cgi?id=39623

Before we start transcribing the parser, we need a place to put it.

This also cleans up HTML5 token to not convert comment and character
data into AtomicStrings (which makes no sense).

No functionality change, so no new tests.

  • html/HTML5Token.h: (WebCore::HTML5Token::beginStartTag): (WebCore::HTML5Token::beginEndTag): (WebCore::HTML5Token::beginCharacter): (WebCore::HTML5Token::beginComment): (WebCore::HTML5Token::name): (WebCore::HTML5Token::adoptDataAsStringImpl): (WebCore::HTML5Token::characters): (WebCore::HTML5Token::commentData): (WebCore::HTML5Token::clearData):
  • html/HTML5TreeBuilder.cpp: (WebCore::convertToOldStyle): (WebCore::HTML5TreeBuilder::constructTreeFromToken): (WebCore::HTML5TreeBuilder::processToken):
  • html/HTML5TreeBuilder.h:
3:59 PM Changeset in webkit [60094] by jer.noble@apple.com
  • 12 edits
    2 adds in trunk

2010-05-23 Jer Noble <jer.noble@apple.com>

Reviewed by Eric Carlson.

HTML5 <video> tag performance worse than Flash
https://bugs.webkit.org/show_bug.cgi?id=39577
rdar://problem/7982458

Added WebKitSystemInterface calls for new CAImageQueue APIs.


  • win/include/WebKitSystemInterface/WebKitSystemInterface.h:
  • win/lib/WebKitSystemInterface.lib:
  • win/lib/WebKitSystemInterface_debug.lib:

2010-05-23 Jer Noble <jer.noble@apple.com>

Reviewed by Eric Carlson.

HTML5 <video> tag performance worse than Flash
https://bugs.webkit.org/show_bug.cgi?id=39577
rdar://problem/7982458


Added attachments() back to QTPixelBuffer, as they are necessary for CAImageQueue.


WKCACFLayer contents()/setContents() now return/take a CFTypeRef instead of a CGImageRef, which allows
a CAImageQueueRef to be set as a layer's contents.


WKCAImageQueue is a simple C++ wrapper around the WebKitSystemInterface CAImageQueue functions.


MediaPlayerPrivateQuickTimeVisualContext will now use a CAImageQueue to display movie frames if
certain prerequisites are met (QuartzCore.dll and CoreVideo.dll version numbers must meet a certain
threshold defined in MediaPlayerPrivateQuickTimeVisualContext.cpp).


  • WebCore.vcproj/WebCore.vcproj:
  • platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp:
  • platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.h:
  • platform/graphics/win/QTPixelBuffer.cpp:
  • platform/graphics/win/QTPixelBuffer.h:
  • platform/graphics/win/WKCACFLayer.cpp:
  • platform/graphics/win/WKCACFLayer.h:
  • platform/graphics/win/WKCAImageQueue.cpp: Added.
  • platform/graphics/win/WKCAImageQueue.h: Added.
3:51 PM Changeset in webkit [60093] by sfalken@apple.com
  • 1 edit in trunk/WebKit/win/WebFrame.cpp

Windows build fix.

3:46 PM Changeset in webkit [60092] by beidson@apple.com
  • 5 edits in trunk/WebCore

Database origins aren't populated at launch (missing db in prefs sheet, possible other symptoms)
<rdar://problem/8013233> and https://bugs.webkit.org/show_bug.cgi?id=39486

Reviewed by Darin Adler.

Currently, a Tracker needs to know it's path before origins are populated. Testing databases and
related features is made very difficult with this regression, so instead of changing things in a
complicated way to make this not the case, I've added an "initialize Tracker with this path" function
that calls the DatabaseTracker constructor with the initial path.

I checked the other platforms besides Mac and Win, and none of them seem to perform the
"initialize databases if necessary" step in their init routines, so this change shouldn't effect them.

No new tests. (API specific layout test in DRT is forthcoming)

  • WebCore.base.exp:
  • storage/DatabaseTracker.cpp:

(WebCore::DatabaseTracker::initializeTracker): Added to create the tracker with its initial path.
(WebCore::DatabaseTracker::tracker): Move the static tracker out so tracker() and initializeTracker()

can share it. Add a fallback to not change behavior of platforms that don't call the new
"initializeTracker()" method.

(WebCore::DatabaseTracker::DatabaseTracker): Changed to take the initial path as an argument.

  • storage/DatabaseTracker.h:
  • storage/chromium/DatabaseTrackerChromium.cpp:

(WebCore::DatabaseTracker::tracker): Adapt to new c'tor.
(WebCore::DatabaseTracker::DatabaseTracker): Ditto.

3:30 PM Changeset in webkit [60091] by pfeldman@chromium.org
  • 15 edits in trunk/LayoutTests

2010-05-24 Jaime Yap <jaimeyap@google.com>

Reviewed by Pavel Feldman.

Removes test forkages that are no longer needed due to new v8 stack trace API.
https://bugs.webkit.org/show_bug.cgi?id=39622

  • platform/chromium-mac/plugins/document-open-expected.txt: Removed.
  • platform/chromium-mac/plugins/geturlnotify-during-document-teardown-expected.txt: Removed.
  • platform/chromium-mac/plugins/netscape-plugin-map-data-to-src-expected.txt: Removed.
  • platform/chromium-mac/plugins/netscape-plugin-setwindow-size-2-expected.txt: Removed.
  • platform/chromium-mac/plugins/netscape-plugin-setwindow-size-expected.txt: Removed.
  • platform/chromium-mac/plugins/open-and-close-window-with-plugin-expected.txt: Removed.
  • platform/chromium-mac/plugins/window-open-expected.txt: Removed.
  • platform/chromium-win/plugins/document-open-expected.txt: Removed.
  • platform/chromium-win/plugins/geturlnotify-during-document-teardown-expected.txt: Removed.
  • platform/chromium-win/plugins/netscape-plugin-map-data-to-src-expected.txt: Removed.
  • platform/chromium-win/plugins/netscape-plugin-setwindow-size-2-expected.txt: Removed.
  • platform/chromium-win/plugins/netscape-plugin-setwindow-size-expected.txt: Removed.
  • platform/chromium-win/plugins/open-and-close-window-with-plugin-expected.txt: Removed.
  • platform/chromium-win/plugins/window-open-expected.txt: Removed.
3:25 PM Changeset in webkit [60090] by abarth@webkit.org
  • 4 edits in trunk/LayoutTests

2010-05-24 Adam Barth <abarth@webkit.org>

Rubber-stamped by Eric Seidel.

Add the tests14.dat suite to the HTML5 parser test harness because it
passes.

  • html5lib/webkit-runner-expected-html5.txt:
  • html5lib/webkit-runner-expected.txt:
  • html5lib/webkit-runner.html:
3:17 PM Changeset in webkit [60089] by abarth@webkit.org
  • 2 edits in trunk/LayoutTests

2010-05-24 Adam Barth <abarth@webkit.org>

Unreviewed. Update HTML4 parser expected results for new tests.

  • html5lib/webkit-runner-expected.txt:
3:13 PM Changeset in webkit [60088] by abarth@webkit.org
  • 2 edits in trunk/LayoutTests

2010-05-24 Adam Barth <abarth@webkit.org>

Unreviewed. Update expected results for HTML5 parser. I didn't know
we had this file.

  • html5lib/webkit-runner-expected-html5.txt:
3:06 PM Changeset in webkit [60087] by abarth@webkit.org
  • 8 edits
    1 add in trunk

2010-05-24 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Teach the HTML5 parser to lex DOCTYPEs
https://bugs.webkit.org/show_bug.cgi?id=39571

  • html/HTML5Lexer.cpp: (WebCore::HTML5Lexer::nextToken):
  • html/HTML5Lexer.h:
  • html/HTML5Token.h: (WebCore::HTML5Token::beginDOCTYPE): (WebCore::HTML5Token::publicIdentifier): (WebCore::HTML5Token::systemIdentifier): (WebCore::HTML5Token::setPublicIdentifierToEmptyString): (WebCore::HTML5Token::setSystemIdentifierToEmptyString): (WebCore::HTML5Token::appendToPublicIdentifier): (WebCore::HTML5Token::appendToSystemIdentifier): (WebCore::HTML5Token::DoctypeData::DoctypeData):
  • html/HTML5TreeBuilder.cpp: (WebCore::convertToOldStyle): (WebCore::HTML5TreeBuilder::passTokenToLegacyParser):
  • platform/text/SegmentedString.h: (WebCore::SegmentedString::lookAheadIgnoringCase): (WebCore::SegmentedString::advanceAndASSERTIgnoringCase):

2010-05-24 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Teach the HTML5 parser to lex DOCTYPEs
https://bugs.webkit.org/show_bug.cgi?id=39571

Add tests for DOCTYPEs.

  • html5lib/resources/doctype01.dat: Added.
  • html5lib/webkit-runner.html:
2:23 PM Changeset in webkit [60086] by andersca@apple.com
  • 2 edits in trunk/WebKit/chromium

Attempt to fix the Chromium build.

  • src/WebViewImpl.cpp:
2:22 PM Changeset in webkit [60085] by mrowe@apple.com
  • 4 edits
    4 copies in trunk

Roll over some ChangeLog files.

2:15 PM Changeset in webkit [60084] by barraclough@apple.com
  • 2 edits in trunk/JavaScriptCore

Rubber Stamped by Sam Weinig.

Accidentally committed double write of codeblock in Interpreter.

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::privateExecute):

2:03 PM Changeset in webkit [60083] by pfeldman@chromium.org
  • 15 edits in trunk

2010-05-18 Jaime Yap <jaimeyap@google.com>

Reviewed by Pavel Feldman.

Removes public callLocation API and utility context from ScriptCallStack.
Adds ability to grab the top 5 JavaScript stack frames for each timeline
record using new fast V8 stack trace API.
https://bugs.webkit.org/show_bug.cgi?id=37502

  • bindings/js/ScriptCallStack.cpp: (WebCore::ScriptCallStack::stackTrace):
  • bindings/js/ScriptCallStack.h:
  • bindings/v8/ScriptArray.h: (WebCore::ScriptArray::ScriptArray):
  • bindings/v8/ScriptCallStack.cpp: (WebCore::ScriptCallStack::callLocation): (WebCore::ScriptCallStack::stackTrace):
  • bindings/v8/ScriptCallStack.h:
  • inspector/TimelineRecordFactory.cpp: (WebCore::TimelineRecordFactory::createGenericRecord):
  • inspector/front-end/TimelinePanel.js: (WebInspector.TimelinePanel.FormattedRecord): (WebInspector.TimelinePanel.FormattedRecord.prototype._generatePopupContent): (WebInspector.TimelinePanel.FormattedRecord.prototype._getRecordDetails):
1:45 PM Changeset in webkit [60082] by ojan@chromium.org
  • 2 edits in trunk/WebKitTools

2010-05-24 Ojan Vafai <ojan@chromium.org>

Reviewed by Eric Seidel.

add tests to ensure that --git-commit ranges are exclusive of the start of the range
https://bugs.webkit.org/show_bug.cgi?id=39612

  • Scripts/webkitpy/common/checkout/scm_unittest.py:
1:36 PM Changeset in webkit [60081] by eric@webkit.org
  • 2 edits
    2 adds in trunk

2010-05-24 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

Add a temporary script for testing the html5 parser until it can run more layout tests
https://bugs.webkit.org/show_bug.cgi?id=39611

  • html5lib/webkit-runner-expected-html5.txt: Added.

2010-05-24 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

Add a temporary script for testing the html5 parser until it can run more layout tests
https://bugs.webkit.org/show_bug.cgi?id=39611

  • Scripts/test-html5-parser: Added.
1:22 PM Changeset in webkit [60080] by andersca@apple.com
  • 2 edits in trunk/WebKit/win

Yet another Windows build fix.

  • WebView.cpp:

(WebView::canShowMIMEType):
Use the right capitalizatinon of 'MIME' (which also happens to be incorrect according to our guidelines).

1:15 PM Changeset in webkit [60079] by andersca@apple.com
  • 2 edits in trunk/WebKit/win

Another Windows build fix.

  • WebView.cpp:

Don't include PlugInInfoStore.h, instead include PluginData.h

1:01 PM Changeset in webkit [60078] by andersca@apple.com
  • 2 edits in trunk/WebKit/win

Fix Windows build.

  • WebView.cpp:

(WebView::canShowMIMEType):

12:51 PM Changeset in webkit [60077] by andersca@apple.com
  • 2 edits in trunk/WebCore

Try to fix build.

  • plugins/npapi.cpp:

(NPN_ReloadPlugins):

12:41 PM Changeset in webkit [60076] by andersca@apple.com
  • 8 edits
    2 deletes in trunk/WebCore

2010-05-24 Anders Carlsson <andersca@apple.com>

Reviewed by Sam Weinig.

Get rid of PlugInInfoStore.
https://bugs.webkit.org/show_bug.cgi?id=39608

  • WebCore.gyp/WebCore.gyp:
  • WebCore.gypi:
  • WebCore.pro:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.xcodeproj/project.pbxproj:
  • platform/android/TemporaryLinkStubs.cpp:
  • plugins/PluginInfoStore.cpp: Removed.
  • plugins/PluginInfoStore.h: Removed.
  • plugins/npapi.cpp:
12:29 PM WebKit Team edited by robert@roberthogan.net
(diff)
11:46 AM Changeset in webkit [60075] by barraclough@apple.com
  • 19 edits in trunk/JavaScriptCore

https://bugs.webkit.org/show_bug.cgi?id=39583
Move creation of 'this' object from caller to callee in construction.

Reviewed by Sam Weinig.

Presently the caller of a constructor is responsible for providing a this
object. Instead, move the object creation into a new op_create_this opcode,
planted in the head of the contructor bytecode for a function. Since the
prototype for the object is provided by performing a get_by_id on the callee,
also add a new get_callee opcode (this is used to get the callee JSFunction
into a register so that a normal get_by_id can be used).

Currently the caller is also responsible for detecting when op_construct is
performed on a JSFunction representing a host function, in which case an
exception is thrown – and this check currently takes place when constructing
the this object. Instead, mirroring the recent changes for non-host functions,
add a parallel code-path for native constructors to follow, with a thunk for
invoking native constructors provided by JITStubs, and a constructor-specific
NativeFunction on NativeExecutable. Provide an implementation of a host
constructor which will throw an exception.

  • bytecode/CodeBlock.cpp:

(JSC::CodeBlock::dump):
(JSC::CodeBlock::getByIdExceptionInfoForBytecodeOffset):

  • bytecode/CodeBlock.h:
  • bytecode/Opcode.h:
  • bytecompiler/BytecodeGenerator.cpp:

(JSC::BytecodeGenerator::BytecodeGenerator):
(JSC::BytecodeGenerator::emitConstruct):

  • bytecompiler/BytecodeGenerator.h:

(JSC::BytecodeGenerator::emitGetByIdExceptionInfo):

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::privateExecute):

  • jit/JIT.cpp:

(JSC::JIT::privateCompileMainPass):

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

(JSC::JIT::compileOpCall):
(JSC::JIT::compileOpCallSlowCase):

  • jit/JITCall32_64.cpp:

(JSC::JIT::compileOpCall):
(JSC::JIT::compileOpCallSlowCase):

  • jit/JITOpcodes.cpp:

(JSC::JIT::privateCompileCTIMachineTrampolines):
(JSC::JIT::privateCompileCTINativeCall):
(JSC::JIT::emit_op_neq_null):
(JSC::JIT::emit_op_convert_this):
(JSC::JIT::emit_op_get_callee):
(JSC::JIT::emit_op_create_this):

  • jit/JITOpcodes32_64.cpp:

(JSC::JIT::privateCompileCTIMachineTrampolines):
(JSC::JIT::privateCompileCTINativeCall):
(JSC::JIT::emit_op_get_callee):
(JSC::JIT::emit_op_create_this):

  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION):
(JSC::JITThunks::hostFunctionStub):

  • jit/JITStubs.h:

(JSC::JITThunks::ctiNativeConstruct):
(JSC::):

  • runtime/ExceptionHelpers.cpp:

(JSC::createNotAnObjectError):

  • runtime/Executable.h:

(JSC::NativeExecutable::create):
(JSC::NativeExecutable::NativeExecutable):

  • runtime/JSFunction.cpp:

(JSC::callHostFunctionAsConstructor):

  • runtime/JSFunction.h:
11:10 AM Changeset in webkit [60074] by hamaji@chromium.org
  • 3 edits in trunk/LayoutTests

2010-05-24 Shinichiro Hamaji <hamaji@chromium.org>

Unreviewed broken Qt test fix.

0x5C of EUC-JP is not Yen Sign but U+005C
https://bugs.webkit.org/show_bug.cgi?id=24906

  • platform/qt/fast/text/backslash-to-yen-sign-dynamic-expected.txt:
  • platform/qt/fast/text/backslash-to-yen-sign-expected.txt:
9:31 AM Changeset in webkit [60073] by eric@webkit.org
  • 3 edits
    3 deletes in trunk

2010-05-24 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r60068.
http://trac.webkit.org/changeset/60068
https://bugs.webkit.org/show_bug.cgi?id=39600

"Causes fast/repaint/search-field-cancel to fail." (Requested
by jparent on #webkit).

  • fast/forms/script-tests/textarea-percentage-dimensions.js: Removed.
  • fast/forms/textarea-percentage-dimensions-expected.txt: Removed.
  • fast/forms/textarea-percentage-dimensions.html: Removed.

2010-05-24 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r60068.
http://trac.webkit.org/changeset/60068
https://bugs.webkit.org/show_bug.cgi?id=39600

"Causes fast/repaint/search-field-cancel to fail." (Requested
by jparent on #webkit).

  • rendering/RenderObject.h: (WebCore::objectIsRelayoutBoundary):
7:52 AM Changeset in webkit [60072] by chang.shu@nokia.com
  • 6 edits
    1 move
    1 add in trunk/LayoutTests

2010-05-24 Chang Shu <chang.shu@nokia.com>

Unreviewed.

Move Philip's canvas tests from fast/canvas to canvas, as suggested
by James Robinson.
https://bugs.webkit.org/show_bug.cgi?id=20553

  • canvas: Added.
  • canvas/philip: Copied from LayoutTests/fast/canvas/philip.
  • fast/canvas/philip: Removed.
  • fast/canvas/philip/fonts: Removed.
  • fast/canvas/philip/fonts/CanvasTest.sfd: Removed.
  • fast/canvas/philip/fonts/CanvasTest.ttf: Removed.
  • fast/canvas/philip/images: Removed.
  • fast/canvas/philip/images/anim-gr.gif: Removed.
  • fast/canvas/philip/images/anim-gr.png: Removed.
  • fast/canvas/philip/images/anim-poster-gr.png: Removed.
  • fast/canvas/philip/images/background.png: Removed.
  • fast/canvas/philip/images/broken.png: Removed.
  • fast/canvas/philip/images/ggrr-256x256.png: Removed.
  • fast/canvas/philip/images/green-16x16.png: Removed.
  • fast/canvas/philip/images/green-1x1.png: Removed.
  • fast/canvas/philip/images/green-256x256.png: Removed.
  • fast/canvas/philip/images/green-2x2.png: Removed.
  • fast/canvas/philip/images/green.png: Removed.
  • fast/canvas/philip/images/grgr-256x256.png: Removed.
  • fast/canvas/philip/images/red-16x16.png: Removed.
  • fast/canvas/philip/images/red.png: Removed.
  • fast/canvas/philip/images/redtransparent.png: Removed.
  • fast/canvas/philip/images/rgrg-256x256.png: Removed.
  • fast/canvas/philip/images/rrgg-256x256.png: Removed.
  • fast/canvas/philip/images/transparent.png: Removed.
  • fast/canvas/philip/images/transparent50.png: Removed.
  • fast/canvas/philip/images/yellow.png: Removed.
  • fast/canvas/philip/images/yellow75.png: Removed.
  • fast/canvas/philip/tests: Removed.
  • fast/canvas/philip/tests.css: Removed.
  • fast/canvas/philip/tests.js: Removed.
  • fast/canvas/philip/tests/.reportgen.html.swp: Removed.
  • fast/canvas/philip/tests/.reportgen.js.swp: Removed.
  • fast/canvas/philip/tests/2d.canvas.readonly.html: Removed.
  • fast/canvas/philip/tests/2d.canvas.reference.html: Removed.
  • fast/canvas/philip/tests/2d.clearRect.basic.html: Removed.
  • fast/canvas/philip/tests/2d.clearRect.clip.html: Removed.
  • fast/canvas/philip/tests/2d.clearRect.globalalpha.html: Removed.
  • fast/canvas/philip/tests/2d.clearRect.globalcomposite.html: Removed.
  • fast/canvas/philip/tests/2d.clearRect.negative.html: Removed.
  • fast/canvas/philip/tests/2d.clearRect.nonfinite.html: Removed.
  • fast/canvas/philip/tests/2d.clearRect.path.html: Removed.
  • fast/canvas/philip/tests/2d.clearRect.shadow.html: Removed.
  • fast/canvas/philip/tests/2d.clearRect.transform.html: Removed.
  • fast/canvas/philip/tests/2d.clearRect.zero.html: Removed.
  • fast/canvas/philip/tests/2d.composite.canvas.copy.html: Removed.
  • fast/canvas/philip/tests/2d.composite.canvas.copy.png: Removed.
  • fast/canvas/philip/tests/2d.composite.canvas.destination-atop.html: Removed.
  • fast/canvas/philip/tests/2d.composite.canvas.destination-atop.png: Removed.
  • fast/canvas/philip/tests/2d.composite.canvas.destination-in.html: Removed.
  • fast/canvas/philip/tests/2d.composite.canvas.destination-in.png: Removed.
  • fast/canvas/philip/tests/2d.composite.canvas.destination-out.html: Removed.
  • fast/canvas/philip/tests/2d.composite.canvas.destination-out.png: Removed.
  • fast/canvas/philip/tests/2d.composite.canvas.destination-over.html: Removed.
  • fast/canvas/philip/tests/2d.composite.canvas.destination-over.png: Removed.
  • fast/canvas/philip/tests/2d.composite.canvas.lighter.html: Removed.
  • fast/canvas/philip/tests/2d.composite.canvas.lighter.png: Removed.
  • fast/canvas/philip/tests/2d.composite.canvas.source-atop.html: Removed.
  • fast/canvas/philip/tests/2d.composite.canvas.source-atop.png: Removed.
  • fast/canvas/philip/tests/2d.composite.canvas.source-in.html: Removed.
  • fast/canvas/philip/tests/2d.composite.canvas.source-in.png: Removed.
  • fast/canvas/philip/tests/2d.composite.canvas.source-out.html: Removed.
  • fast/canvas/philip/tests/2d.composite.canvas.source-out.png: Removed.
  • fast/canvas/philip/tests/2d.composite.canvas.source-over.html: Removed.
  • fast/canvas/philip/tests/2d.composite.canvas.source-over.png: Removed.
  • fast/canvas/philip/tests/2d.composite.canvas.xor.html: Removed.
  • fast/canvas/philip/tests/2d.composite.canvas.xor.png: Removed.
  • fast/canvas/philip/tests/2d.composite.clip.copy.html: Removed.
  • fast/canvas/philip/tests/2d.composite.clip.destination-atop.html: Removed.
  • fast/canvas/philip/tests/2d.composite.clip.destination-in.html: Removed.
  • fast/canvas/philip/tests/2d.composite.clip.destination-out.html: Removed.
  • fast/canvas/philip/tests/2d.composite.clip.destination-over.html: Removed.
  • fast/canvas/philip/tests/2d.composite.clip.lighter.html: Removed.
  • fast/canvas/philip/tests/2d.composite.clip.source-atop.html: Removed.
  • fast/canvas/philip/tests/2d.composite.clip.source-in.html: Removed.
  • fast/canvas/philip/tests/2d.composite.clip.source-out.html: Removed.
  • fast/canvas/philip/tests/2d.composite.clip.source-over.html: Removed.
  • fast/canvas/philip/tests/2d.composite.clip.xor.html: Removed.
  • fast/canvas/philip/tests/2d.composite.globalAlpha.canvas.html: Removed.
  • fast/canvas/philip/tests/2d.composite.globalAlpha.canvaspattern.html: Removed.
  • fast/canvas/philip/tests/2d.composite.globalAlpha.default.html: Removed.
  • fast/canvas/philip/tests/2d.composite.globalAlpha.fill.html: Removed.
  • fast/canvas/philip/tests/2d.composite.globalAlpha.image.html: Removed.
  • fast/canvas/philip/tests/2d.composite.globalAlpha.imagepattern.html: Removed.
  • fast/canvas/philip/tests/2d.composite.globalAlpha.invalid.html: Removed.
  • fast/canvas/philip/tests/2d.composite.globalAlpha.range.html: Removed.
  • fast/canvas/philip/tests/2d.composite.image.copy.html: Removed.
  • fast/canvas/philip/tests/2d.composite.image.copy.png: Removed.
  • fast/canvas/philip/tests/2d.composite.image.destination-atop.html: Removed.
  • fast/canvas/philip/tests/2d.composite.image.destination-atop.png: Removed.
  • fast/canvas/philip/tests/2d.composite.image.destination-in.html: Removed.
  • fast/canvas/philip/tests/2d.composite.image.destination-in.png: Removed.
  • fast/canvas/philip/tests/2d.composite.image.destination-out.html: Removed.
  • fast/canvas/philip/tests/2d.composite.image.destination-out.png: Removed.
  • fast/canvas/philip/tests/2d.composite.image.destination-over.html: Removed.
  • fast/canvas/philip/tests/2d.composite.image.destination-over.png: Removed.
  • fast/canvas/philip/tests/2d.composite.image.lighter.html: Removed.
  • fast/canvas/philip/tests/2d.composite.image.lighter.png: Removed.
  • fast/canvas/philip/tests/2d.composite.image.source-atop.html: Removed.
  • fast/canvas/philip/tests/2d.composite.image.source-atop.png: Removed.
  • fast/canvas/philip/tests/2d.composite.image.source-in.html: Removed.
  • fast/canvas/philip/tests/2d.composite.image.source-in.png: Removed.
  • fast/canvas/philip/tests/2d.composite.image.source-out.html: Removed.
  • fast/canvas/philip/tests/2d.composite.image.source-out.png: Removed.
  • fast/canvas/philip/tests/2d.composite.image.source-over.html: Removed.
  • fast/canvas/philip/tests/2d.composite.image.source-over.png: Removed.
  • fast/canvas/philip/tests/2d.composite.image.xor.html: Removed.
  • fast/canvas/philip/tests/2d.composite.image.xor.png: Removed.
  • fast/canvas/philip/tests/2d.composite.operation.casesensitive.html: Removed.
  • fast/canvas/philip/tests/2d.composite.operation.clear.html: Removed.
  • fast/canvas/philip/tests/2d.composite.operation.darker.html: Removed.
  • fast/canvas/philip/tests/2d.composite.operation.default.html: Removed.
  • fast/canvas/philip/tests/2d.composite.operation.get.html: Removed.
  • fast/canvas/philip/tests/2d.composite.operation.highlight.html: Removed.
  • fast/canvas/philip/tests/2d.composite.operation.nullsuffix.html: Removed.
  • fast/canvas/philip/tests/2d.composite.operation.over.html: Removed.
  • fast/canvas/philip/tests/2d.composite.operation.unrecognised.html: Removed.
  • fast/canvas/philip/tests/2d.composite.solid.copy.html: Removed.
  • fast/canvas/philip/tests/2d.composite.solid.copy.png: Removed.
  • fast/canvas/philip/tests/2d.composite.solid.destination-atop.html: Removed.
  • fast/canvas/philip/tests/2d.composite.solid.destination-atop.png: Removed.
  • fast/canvas/philip/tests/2d.composite.solid.destination-in.html: Removed.
  • fast/canvas/philip/tests/2d.composite.solid.destination-in.png: Removed.
  • fast/canvas/philip/tests/2d.composite.solid.destination-out.html: Removed.
  • fast/canvas/philip/tests/2d.composite.solid.destination-out.png: Removed.
  • fast/canvas/philip/tests/2d.composite.solid.destination-over.html: Removed.
  • fast/canvas/philip/tests/2d.composite.solid.destination-over.png: Removed.
  • fast/canvas/philip/tests/2d.composite.solid.lighter.html: Removed.
  • fast/canvas/philip/tests/2d.composite.solid.lighter.png: Removed.
  • fast/canvas/philip/tests/2d.composite.solid.source-atop.html: Removed.
  • fast/canvas/philip/tests/2d.composite.solid.source-atop.png: Removed.
  • fast/canvas/philip/tests/2d.composite.solid.source-in.html: Removed.
  • fast/canvas/philip/tests/2d.composite.solid.source-in.png: Removed.
  • fast/canvas/philip/tests/2d.composite.solid.source-out.html: Removed.
  • fast/canvas/philip/tests/2d.composite.solid.source-out.png: Removed.
  • fast/canvas/philip/tests/2d.composite.solid.source-over.html: Removed.
  • fast/canvas/philip/tests/2d.composite.solid.source-over.png: Removed.
  • fast/canvas/philip/tests/2d.composite.solid.xor.html: Removed.
  • fast/canvas/philip/tests/2d.composite.solid.xor.png: Removed.
  • fast/canvas/philip/tests/2d.composite.transparent.copy.html: Removed.
  • fast/canvas/philip/tests/2d.composite.transparent.copy.png: Removed.
  • fast/canvas/philip/tests/2d.composite.transparent.destination-atop.html: Removed.
  • fast/canvas/philip/tests/2d.composite.transparent.destination-atop.png: Removed.
  • fast/canvas/philip/tests/2d.composite.transparent.destination-in.html: Removed.
  • fast/canvas/philip/tests/2d.composite.transparent.destination-in.png: Removed.
  • fast/canvas/philip/tests/2d.composite.transparent.destination-out.html: Removed.
  • fast/canvas/philip/tests/2d.composite.transparent.destination-out.png: Removed.
  • fast/canvas/philip/tests/2d.composite.transparent.destination-over.html: Removed.
  • fast/canvas/philip/tests/2d.composite.transparent.destination-over.png: Removed.
  • fast/canvas/philip/tests/2d.composite.transparent.lighter.html: Removed.
  • fast/canvas/philip/tests/2d.composite.transparent.lighter.png: Removed.
  • fast/canvas/philip/tests/2d.composite.transparent.source-atop.html: Removed.
  • fast/canvas/philip/tests/2d.composite.transparent.source-atop.png: Removed.
  • fast/canvas/philip/tests/2d.composite.transparent.source-in.html: Removed.
  • fast/canvas/philip/tests/2d.composite.transparent.source-in.png: Removed.
  • fast/canvas/philip/tests/2d.composite.transparent.source-out.html: Removed.
  • fast/canvas/philip/tests/2d.composite.transparent.source-out.png: Removed.
  • fast/canvas/philip/tests/2d.composite.transparent.source-over.html: Removed.
  • fast/canvas/philip/tests/2d.composite.transparent.source-over.png: Removed.
  • fast/canvas/philip/tests/2d.composite.transparent.xor.html: Removed.
  • fast/canvas/philip/tests/2d.composite.transparent.xor.png: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.fill.copy.html: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.fill.copy.png: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.fill.destination-atop.html: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.fill.destination-atop.png: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.fill.destination-in.html: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.fill.destination-in.png: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.fill.source-in.html: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.fill.source-in.png: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.fill.source-out.html: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.fill.source-out.png: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.image.copy.html: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.image.copy.png: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.image.destination-atop.html: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.image.destination-atop.png: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.image.destination-in.html: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.image.destination-in.png: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.image.source-in.html: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.image.source-in.png: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.image.source-out.html: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.image.source-out.png: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.nocontext.copy.html: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.nocontext.copy.png: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.nocontext.destination-atop.html: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.nocontext.destination-atop.png: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.nocontext.destination-in.html: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.nocontext.destination-in.png: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.nocontext.source-in.html: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.nocontext.source-in.png: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.nocontext.source-out.html: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.nocontext.source-out.png: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.pattern.copy.html: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.pattern.copy.png: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.pattern.destination-atop.html: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.pattern.destination-atop.png: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.pattern.destination-in.html: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.pattern.destination-in.png: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.pattern.source-in.html: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.pattern.source-in.png: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.pattern.source-out.html: Removed.
  • fast/canvas/philip/tests/2d.composite.uncovered.pattern.source-out.png: Removed.
  • fast/canvas/philip/tests/2d.coordinatespace.html: Removed.
  • fast/canvas/philip/tests/2d.coordinatespace.png: Removed.
  • fast/canvas/philip/tests/2d.drawImage.3arg.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.5arg.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.9arg.basic.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.9arg.destpos.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.9arg.destsize.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.9arg.sourcepos.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.9arg.sourcesize.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.alpha.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.animated.apng.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.animated.gif.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.animated.poster.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.broken.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.canvas.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.clip.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.composite.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.floatsource.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.incomplete.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.negativedest.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.negativedir.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.negativesource.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.nonfinite.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.nowrap.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.null.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.outsidesource.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.path.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.self.1.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.self.2.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.transform.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.wrongtype.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.zerocanvas.html: Removed.
  • fast/canvas/philip/tests/2d.drawImage.zerosource.html: Removed.
  • fast/canvas/philip/tests/2d.fillRect.basic.html: Removed.
  • fast/canvas/philip/tests/2d.fillRect.clip.html: Removed.
  • fast/canvas/philip/tests/2d.fillRect.negative.html: Removed.
  • fast/canvas/philip/tests/2d.fillRect.nonfinite.html: Removed.
  • fast/canvas/philip/tests/2d.fillRect.path.html: Removed.
  • fast/canvas/philip/tests/2d.fillRect.shadow.html: Removed.
  • fast/canvas/philip/tests/2d.fillRect.transform.html: Removed.
  • fast/canvas/philip/tests/2d.fillRect.zero.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.default.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.get.semitransparent.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.get.solid.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.get.transparent.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.invalidstring.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.invalidtype.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.current.basic.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.current.changed.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.current.removed.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.current.removed.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hex3.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hex3.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hex6.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hex6.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-1.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-1.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-2.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-2.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-3.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-3.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-4.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-4.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-5.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-5.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-clamp-1.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-clamp-1.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-clamp-2.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-clamp-2.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-clamp-3.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-clamp-3.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-clamp-4.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-clamp-4.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-1.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-1.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-2.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-2.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-1.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-1.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-2.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-2.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-3.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-3.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-4.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-4.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-5.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-5.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-6.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-6.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.html4.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.html4.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hex1.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hex2.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hex3.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hex4.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hex5.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hex6.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hex7.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hex8.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hsl-1.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hsl-2.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hsl-3.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hsl-4.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hsl-5.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hsla-1.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hsla-2.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.name-1.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.name-2.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.name-3.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgb-1.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgb-2.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgb-3.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgb-4.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgb-5.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgb-6.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgb-7.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgba-1.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgba-2.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgba-3.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgba-4.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgba-5.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-1.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-1.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-2.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-2.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-3.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-3.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-4.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-4.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-5.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-5.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-num.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-num.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-percent.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-percent.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-clamp-1.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-clamp-1.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-clamp-2.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-clamp-2.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-num-1.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-num-1.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-num-2.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-num-2.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-percent.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-percent.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-solid-1.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-solid-1.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-solid-2.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-solid-2.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.svg-1.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.svg-1.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.svg-2.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.svg-2.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.system.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.transparent-1.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.transparent-1.png: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.transparent-2.html: Removed.
  • fast/canvas/philip/tests/2d.fillStyle.parse.transparent-2.png: Removed.
  • fast/canvas/philip/tests/2d.getcontext.exists.html: Removed.
  • fast/canvas/philip/tests/2d.getcontext.shared.html: Removed.
  • fast/canvas/philip/tests/2d.getcontext.unique.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.empty.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.interpolate.alpha.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.interpolate.alpha.png: Removed.
  • fast/canvas/philip/tests/2d.gradient.interpolate.colour.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.interpolate.colour.png: Removed.
  • fast/canvas/philip/tests/2d.gradient.interpolate.colouralpha.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.interpolate.colouralpha.png: Removed.
  • fast/canvas/philip/tests/2d.gradient.interpolate.multiple.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.interpolate.multiple.png: Removed.
  • fast/canvas/philip/tests/2d.gradient.interpolate.outside.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.interpolate.overlap.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.interpolate.overlap.png: Removed.
  • fast/canvas/philip/tests/2d.gradient.interpolate.overlap2.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.interpolate.solid.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.interpolate.vertical.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.interpolate.vertical.png: Removed.
  • fast/canvas/philip/tests/2d.gradient.interpolate.zerosize.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.linear.nonfinite.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.linear.transform.1.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.linear.transform.2.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.linear.transform.3.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.object.compare.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.object.crosscanvas.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.object.invalidcolour.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.object.invalidoffset.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.object.return.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.object.update.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.radial.cone.behind.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.radial.cone.beside.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.radial.cone.bottom.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.radial.cone.cylinder.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.radial.cone.front.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.radial.cone.shape1.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.radial.cone.shape2.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.radial.cone.top.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.radial.equal.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.radial.inside1.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.radial.inside2.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.radial.inside3.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.radial.negative.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.radial.nonfinite.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.radial.outside1.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.radial.outside2.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.radial.outside3.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.radial.touch1.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.radial.touch2.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.radial.touch3.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.radial.transform.1.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.radial.transform.2.html: Removed.
  • fast/canvas/philip/tests/2d.gradient.radial.transform.3.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.create1.basic.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.create1.initial.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.create1.type.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.create1.zero.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.create2.basic.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.create2.initial.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.create2.large.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.create2.negative.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.create2.nonfinite.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.create2.round.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.create2.tiny.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.create2.type.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.create2.zero.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.get.basic.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.get.clamp.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.get.length.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.get.nonfinite.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.get.nonpremul.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.get.order.alpha.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.get.order.cols.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.get.order.rgb.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.get.order.rows.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.get.range.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.get.source.negative.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.get.source.outside.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.get.source.size.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.get.tiny.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.get.type.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.get.unaffected.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.get.zero.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.object.ctor.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.object.nan.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.object.properties.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.object.readonly.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.object.round.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.object.set.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.object.string.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.object.undefined.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.object.wrap.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.put.alpha.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.put.alpha.png: Removed.
  • fast/canvas/philip/tests/2d.imageData.put.basic.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.put.clip.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.put.created.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.put.cross.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.put.dirty.negative.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.put.dirty.outside.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.put.dirty.rect1.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.put.dirty.rect2.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.put.dirty.zero.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.put.modified.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.put.nonfinite.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.put.null.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.put.path.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.put.unaffected.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.put.unchanged.html: Removed.
  • fast/canvas/philip/tests/2d.imageData.put.wrongtype.html: Removed.
  • fast/canvas/philip/tests/2d.line.cap.butt.html: Removed.
  • fast/canvas/philip/tests/2d.line.cap.closed.html: Removed.
  • fast/canvas/philip/tests/2d.line.cap.invalid.html: Removed.
  • fast/canvas/philip/tests/2d.line.cap.open.html: Removed.
  • fast/canvas/philip/tests/2d.line.cap.round.html: Removed.
  • fast/canvas/philip/tests/2d.line.cap.square.html: Removed.
  • fast/canvas/philip/tests/2d.line.cap.valid.html: Removed.
  • fast/canvas/philip/tests/2d.line.cross.html: Removed.
  • fast/canvas/philip/tests/2d.line.defaults.html: Removed.
  • fast/canvas/philip/tests/2d.line.join.bevel.html: Removed.
  • fast/canvas/philip/tests/2d.line.join.closed.html: Removed.
  • fast/canvas/philip/tests/2d.line.join.invalid.html: Removed.
  • fast/canvas/philip/tests/2d.line.join.miter.html: Removed.
  • fast/canvas/philip/tests/2d.line.join.open.html: Removed.
  • fast/canvas/philip/tests/2d.line.join.parallel.html: Removed.
  • fast/canvas/philip/tests/2d.line.join.round.html: Removed.
  • fast/canvas/philip/tests/2d.line.join.valid.html: Removed.
  • fast/canvas/philip/tests/2d.line.miter.acute.html: Removed.
  • fast/canvas/philip/tests/2d.line.miter.exceeded.html: Removed.
  • fast/canvas/philip/tests/2d.line.miter.invalid.html: Removed.
  • fast/canvas/philip/tests/2d.line.miter.lineedge.html: Removed.
  • fast/canvas/philip/tests/2d.line.miter.obtuse.html: Removed.
  • fast/canvas/philip/tests/2d.line.miter.rightangle.html: Removed.
  • fast/canvas/philip/tests/2d.line.miter.valid.html: Removed.
  • fast/canvas/philip/tests/2d.line.miter.within.html: Removed.
  • fast/canvas/philip/tests/2d.line.union.html: Removed.
  • fast/canvas/philip/tests/2d.line.width.basic.html: Removed.
  • fast/canvas/philip/tests/2d.line.width.invalid.html: Removed.
  • fast/canvas/philip/tests/2d.line.width.scaledefault.html: Removed.
  • fast/canvas/philip/tests/2d.line.width.transformed.html: Removed.
  • fast/canvas/philip/tests/2d.line.width.valid.html: Removed.
  • fast/canvas/philip/tests/2d.missingargs.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.angle.1.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.angle.2.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.angle.3.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.angle.4.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.angle.5.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.angle.6.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.empty.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.end.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.negative.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.nonempty.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.nonfinite.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.scale.1.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.scale.2.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.selfintersect.1.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.selfintersect.2.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.shape.1.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.shape.2.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.shape.3.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.shape.4.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.shape.5.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.twopie.1.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.twopie.2.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.twopie.3.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.twopie.4.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.zero.1.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.zero.2.html: Removed.
  • fast/canvas/philip/tests/2d.path.arc.zeroradius.html: Removed.
  • fast/canvas/philip/tests/2d.path.arcTo.coincide.1.html: Removed.
  • fast/canvas/philip/tests/2d.path.arcTo.coincide.2.html: Removed.
  • fast/canvas/philip/tests/2d.path.arcTo.collinear.1.html: Removed.
  • fast/canvas/philip/tests/2d.path.arcTo.collinear.2.html: Removed.
  • fast/canvas/philip/tests/2d.path.arcTo.collinear.3.html: Removed.
  • fast/canvas/philip/tests/2d.path.arcTo.ensuresubpath.1.html: Removed.
  • fast/canvas/philip/tests/2d.path.arcTo.ensuresubpath.2.html: Removed.
  • fast/canvas/philip/tests/2d.path.arcTo.negative.html: Removed.
  • fast/canvas/philip/tests/2d.path.arcTo.nonfinite.html: Removed.
  • fast/canvas/philip/tests/2d.path.arcTo.scale.html: Removed.
  • fast/canvas/philip/tests/2d.path.arcTo.shape.curve1.html: Removed.
  • fast/canvas/philip/tests/2d.path.arcTo.shape.curve2.html: Removed.
  • fast/canvas/philip/tests/2d.path.arcTo.shape.end.html: Removed.
  • fast/canvas/philip/tests/2d.path.arcTo.shape.start.html: Removed.
  • fast/canvas/philip/tests/2d.path.arcTo.transformation.html: Removed.
  • fast/canvas/philip/tests/2d.path.arcTo.zero.1.html: Removed.
  • fast/canvas/philip/tests/2d.path.arcTo.zero.2.html: Removed.
  • fast/canvas/philip/tests/2d.path.beginPath.html: Removed.
  • fast/canvas/philip/tests/2d.path.bezierCurveTo.basic.html: Removed.
  • fast/canvas/philip/tests/2d.path.bezierCurveTo.ensuresubpath.1.html: Removed.
  • fast/canvas/philip/tests/2d.path.bezierCurveTo.ensuresubpath.2.html: Removed.
  • fast/canvas/philip/tests/2d.path.bezierCurveTo.nonfinite.html: Removed.
  • fast/canvas/philip/tests/2d.path.bezierCurveTo.scaled.html: Removed.
  • fast/canvas/philip/tests/2d.path.bezierCurveTo.shape.html: Removed.
  • fast/canvas/philip/tests/2d.path.clip.basic.1.html: Removed.
  • fast/canvas/philip/tests/2d.path.clip.basic.2.html: Removed.
  • fast/canvas/philip/tests/2d.path.clip.empty.html: Removed.
  • fast/canvas/philip/tests/2d.path.clip.intersect.html: Removed.
  • fast/canvas/philip/tests/2d.path.clip.unaffected.html: Removed.
  • fast/canvas/philip/tests/2d.path.clip.winding.1.html: Removed.
  • fast/canvas/philip/tests/2d.path.clip.winding.2.html: Removed.
  • fast/canvas/philip/tests/2d.path.closePath.empty.html: Removed.
  • fast/canvas/philip/tests/2d.path.closePath.newline.html: Removed.
  • fast/canvas/philip/tests/2d.path.closePath.nextpoint.html: Removed.
  • fast/canvas/philip/tests/2d.path.fill.closed.basic.html: Removed.
  • fast/canvas/philip/tests/2d.path.fill.closed.unaffected.html: Removed.
  • fast/canvas/philip/tests/2d.path.fill.overlap.html: Removed.
  • fast/canvas/philip/tests/2d.path.fill.overlap.png: Removed.
  • fast/canvas/philip/tests/2d.path.fill.winding.add.html: Removed.
  • fast/canvas/philip/tests/2d.path.fill.winding.subtract.1.html: Removed.
  • fast/canvas/philip/tests/2d.path.fill.winding.subtract.2.html: Removed.
  • fast/canvas/philip/tests/2d.path.fill.winding.subtract.3.html: Removed.
  • fast/canvas/philip/tests/2d.path.initial.html: Removed.
  • fast/canvas/philip/tests/2d.path.isPointInPath.arc.html: Removed.
  • fast/canvas/philip/tests/2d.path.isPointInPath.basic.1.html: Removed.
  • fast/canvas/philip/tests/2d.path.isPointInPath.basic.2.html: Removed.
  • fast/canvas/philip/tests/2d.path.isPointInPath.bezier.html: Removed.
  • fast/canvas/philip/tests/2d.path.isPointInPath.bigarc.html: Removed.
  • fast/canvas/philip/tests/2d.path.isPointInPath.edge.html: Removed.
  • fast/canvas/philip/tests/2d.path.isPointInPath.empty.html: Removed.
  • fast/canvas/philip/tests/2d.path.isPointInPath.nonfinite.html: Removed.
  • fast/canvas/philip/tests/2d.path.isPointInPath.outside.html: Removed.
  • fast/canvas/philip/tests/2d.path.isPointInPath.subpath.html: Removed.
  • fast/canvas/philip/tests/2d.path.isPointInPath.transform.1.html: Removed.
  • fast/canvas/philip/tests/2d.path.isPointInPath.transform.2.html: Removed.
  • fast/canvas/philip/tests/2d.path.isPointInPath.transform.3.html: Removed.
  • fast/canvas/philip/tests/2d.path.isPointInPath.unclosed.html: Removed.
  • fast/canvas/philip/tests/2d.path.isPointInPath.winding.html: Removed.
  • fast/canvas/philip/tests/2d.path.lineTo.basic.html: Removed.
  • fast/canvas/philip/tests/2d.path.lineTo.ensuresubpath.1.html: Removed.
  • fast/canvas/philip/tests/2d.path.lineTo.ensuresubpath.2.html: Removed.
  • fast/canvas/philip/tests/2d.path.lineTo.nextpoint.html: Removed.
  • fast/canvas/philip/tests/2d.path.lineTo.nonfinite.html: Removed.
  • fast/canvas/philip/tests/2d.path.moveTo.basic.html: Removed.
  • fast/canvas/philip/tests/2d.path.moveTo.multiple.html: Removed.
  • fast/canvas/philip/tests/2d.path.moveTo.newsubpath.html: Removed.
  • fast/canvas/philip/tests/2d.path.moveTo.nonfinite.html: Removed.
  • fast/canvas/philip/tests/2d.path.quadraticCurveTo.basic.html: Removed.
  • fast/canvas/philip/tests/2d.path.quadraticCurveTo.ensuresubpath.1.html: Removed.
  • fast/canvas/philip/tests/2d.path.quadraticCurveTo.ensuresubpath.2.html: Removed.
  • fast/canvas/philip/tests/2d.path.quadraticCurveTo.nonfinite.html: Removed.
  • fast/canvas/philip/tests/2d.path.quadraticCurveTo.scaled.html: Removed.
  • fast/canvas/philip/tests/2d.path.quadraticCurveTo.shape.html: Removed.
  • fast/canvas/philip/tests/2d.path.rect.basic.html: Removed.
  • fast/canvas/philip/tests/2d.path.rect.closed.html: Removed.
  • fast/canvas/philip/tests/2d.path.rect.end.1.html: Removed.
  • fast/canvas/philip/tests/2d.path.rect.end.2.html: Removed.
  • fast/canvas/philip/tests/2d.path.rect.negative.html: Removed.
  • fast/canvas/philip/tests/2d.path.rect.newsubpath.html: Removed.
  • fast/canvas/philip/tests/2d.path.rect.nonfinite.html: Removed.
  • fast/canvas/philip/tests/2d.path.rect.selfintersect.html: Removed.
  • fast/canvas/philip/tests/2d.path.rect.winding.html: Removed.
  • fast/canvas/philip/tests/2d.path.rect.zero.1.html: Removed.
  • fast/canvas/philip/tests/2d.path.rect.zero.2.html: Removed.
  • fast/canvas/philip/tests/2d.path.rect.zero.3.html: Removed.
  • fast/canvas/philip/tests/2d.path.rect.zero.4.html: Removed.
  • fast/canvas/philip/tests/2d.path.rect.zero.5.html: Removed.
  • fast/canvas/philip/tests/2d.path.rect.zero.6.html: Removed.
  • fast/canvas/philip/tests/2d.path.stroke.empty.html: Removed.
  • fast/canvas/philip/tests/2d.path.stroke.overlap.html: Removed.
  • fast/canvas/philip/tests/2d.path.stroke.overlap.png: Removed.
  • fast/canvas/philip/tests/2d.path.stroke.prune.arc.html: Removed.
  • fast/canvas/philip/tests/2d.path.stroke.prune.closed.html: Removed.
  • fast/canvas/philip/tests/2d.path.stroke.prune.corner.html: Removed.
  • fast/canvas/philip/tests/2d.path.stroke.prune.curve.html: Removed.
  • fast/canvas/philip/tests/2d.path.stroke.prune.line.html: Removed.
  • fast/canvas/philip/tests/2d.path.stroke.prune.rect.html: Removed.
  • fast/canvas/philip/tests/2d.path.stroke.scale1.html: Removed.
  • fast/canvas/philip/tests/2d.path.stroke.scale2.html: Removed.
  • fast/canvas/philip/tests/2d.path.stroke.skew.html: Removed.
  • fast/canvas/philip/tests/2d.path.stroke.unaffected.html: Removed.
  • fast/canvas/philip/tests/2d.path.stroke.union.html: Removed.
  • fast/canvas/philip/tests/2d.path.transformation.basic.html: Removed.
  • fast/canvas/philip/tests/2d.path.transformation.changing.html: Removed.
  • fast/canvas/philip/tests/2d.path.transformation.multiple.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.animated.gif.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.basic.canvas.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.basic.image.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.basic.nocontext.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.basic.type.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.basic.zerocanvas.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.crosscanvas.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.image.broken.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.image.incomplete.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.image.null.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.image.string.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.image.undefined.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.modify.canvas1.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.modify.canvas2.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.modify.image1.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.modify.image2.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.paint.norepeat.basic.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.paint.norepeat.coord1.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.paint.norepeat.coord2.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.paint.norepeat.coord3.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.paint.norepeat.outside.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.paint.orientation.canvas.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.paint.orientation.image.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.paint.repeat.basic.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.paint.repeat.coord1.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.paint.repeat.coord2.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.paint.repeat.coord3.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.paint.repeat.outside.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.paint.repeatx.basic.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.paint.repeatx.coord1.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.paint.repeatx.outside.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.paint.repeaty.basic.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.paint.repeaty.coord1.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.paint.repeaty.outside.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.repeat.case.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.repeat.empty.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.repeat.null.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.repeat.nullsuffix.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.repeat.undefined.html: Removed.
  • fast/canvas/philip/tests/2d.pattern.repeat.unrecognised.html: Removed.
  • fast/canvas/philip/tests/2d.scaled.html: Removed.
  • fast/canvas/philip/tests/2d.scaled.png: Removed.
  • fast/canvas/philip/tests/2d.shadow.alpha.1.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.alpha.2.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.alpha.2.png: Removed.
  • fast/canvas/philip/tests/2d.shadow.alpha.3.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.alpha.3.png: Removed.
  • fast/canvas/philip/tests/2d.shadow.alpha.4.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.alpha.4.png: Removed.
  • fast/canvas/philip/tests/2d.shadow.alpha.5.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.alpha.5.png: Removed.
  • fast/canvas/philip/tests/2d.shadow.attributes.shadowBlur.initial.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.attributes.shadowBlur.invalid.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.attributes.shadowBlur.valid.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.attributes.shadowColor.initial.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.attributes.shadowColor.invalid.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.attributes.shadowColor.valid.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.attributes.shadowOffset.initial.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.attributes.shadowOffset.invalid.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.attributes.shadowOffset.valid.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.blur.high.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.blur.high.png: Removed.
  • fast/canvas/philip/tests/2d.shadow.blur.low.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.blur.low.png: Removed.
  • fast/canvas/philip/tests/2d.shadow.canvas.alpha.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.canvas.alpha.png: Removed.
  • fast/canvas/philip/tests/2d.shadow.canvas.basic.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.canvas.transparent.1.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.canvas.transparent.2.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.clip.1.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.clip.2.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.clip.3.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.composite.1.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.composite.2.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.composite.3.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.enable.blur.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.enable.off.1.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.enable.off.2.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.enable.x.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.enable.y.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.gradient.alpha.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.gradient.alpha.png: Removed.
  • fast/canvas/philip/tests/2d.shadow.gradient.basic.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.gradient.transparent.1.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.gradient.transparent.2.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.image.alpha.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.image.alpha.png: Removed.
  • fast/canvas/philip/tests/2d.shadow.image.basic.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.image.scale.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.image.section.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.image.transparent.1.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.image.transparent.2.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.offset.negativeX.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.offset.negativeY.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.offset.positiveX.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.offset.positiveY.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.outside.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.pattern.alpha.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.pattern.alpha.png: Removed.
  • fast/canvas/philip/tests/2d.shadow.pattern.basic.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.pattern.transparent.1.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.pattern.transparent.2.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.stroke.basic.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.stroke.cap.1.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.stroke.cap.2.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.stroke.join.1.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.stroke.join.2.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.stroke.join.3.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.transform.1.html: Removed.
  • fast/canvas/philip/tests/2d.shadow.transform.2.html: Removed.
  • fast/canvas/philip/tests/2d.state.saverestore.bitmap.html: Removed.
  • fast/canvas/philip/tests/2d.state.saverestore.clip.html: Removed.
  • fast/canvas/philip/tests/2d.state.saverestore.fillStyle.html: Removed.
  • fast/canvas/philip/tests/2d.state.saverestore.font.html: Removed.
  • fast/canvas/philip/tests/2d.state.saverestore.globalAlpha.html: Removed.
  • fast/canvas/philip/tests/2d.state.saverestore.globalCompositeOperation.html: Removed.
  • fast/canvas/philip/tests/2d.state.saverestore.lineCap.html: Removed.
  • fast/canvas/philip/tests/2d.state.saverestore.lineJoin.html: Removed.
  • fast/canvas/philip/tests/2d.state.saverestore.lineWidth.html: Removed.
  • fast/canvas/philip/tests/2d.state.saverestore.miterLimit.html: Removed.
  • fast/canvas/philip/tests/2d.state.saverestore.path.html: Removed.
  • fast/canvas/philip/tests/2d.state.saverestore.shadowBlur.html: Removed.
  • fast/canvas/philip/tests/2d.state.saverestore.shadowColor.html: Removed.
  • fast/canvas/philip/tests/2d.state.saverestore.shadowOffsetX.html: Removed.
  • fast/canvas/philip/tests/2d.state.saverestore.shadowOffsetY.html: Removed.
  • fast/canvas/philip/tests/2d.state.saverestore.stack.html: Removed.
  • fast/canvas/philip/tests/2d.state.saverestore.stackdepth.html: Removed.
  • fast/canvas/philip/tests/2d.state.saverestore.strokeStyle.html: Removed.
  • fast/canvas/philip/tests/2d.state.saverestore.textAlign.html: Removed.
  • fast/canvas/philip/tests/2d.state.saverestore.textBaseline.html: Removed.
  • fast/canvas/philip/tests/2d.state.saverestore.transformation.html: Removed.
  • fast/canvas/philip/tests/2d.state.saverestore.underflow.html: Removed.
  • fast/canvas/philip/tests/2d.strokeRect.basic.html: Removed.
  • fast/canvas/philip/tests/2d.strokeRect.clip.html: Removed.
  • fast/canvas/philip/tests/2d.strokeRect.globalalpha.html: Removed.
  • fast/canvas/philip/tests/2d.strokeRect.globalcomposite.html: Removed.
  • fast/canvas/philip/tests/2d.strokeRect.negative.html: Removed.
  • fast/canvas/philip/tests/2d.strokeRect.nonfinite.html: Removed.
  • fast/canvas/philip/tests/2d.strokeRect.path.html: Removed.
  • fast/canvas/philip/tests/2d.strokeRect.shadow.html: Removed.
  • fast/canvas/philip/tests/2d.strokeRect.transform.html: Removed.
  • fast/canvas/philip/tests/2d.strokeRect.zero.1.html: Removed.
  • fast/canvas/philip/tests/2d.strokeRect.zero.2.html: Removed.
  • fast/canvas/philip/tests/2d.strokeRect.zero.3.html: Removed.
  • fast/canvas/philip/tests/2d.strokeRect.zero.4.html: Removed.
  • fast/canvas/philip/tests/2d.strokeRect.zero.5.html: Removed.
  • fast/canvas/philip/tests/2d.strokeStyle.default.html: Removed.
  • fast/canvas/philip/tests/2d.text.align.default.html: Removed.
  • fast/canvas/philip/tests/2d.text.align.invalid.html: Removed.
  • fast/canvas/philip/tests/2d.text.align.valid.html: Removed.
  • fast/canvas/philip/tests/2d.text.baseline.default.html: Removed.
  • fast/canvas/philip/tests/2d.text.baseline.invalid.html: Removed.
  • fast/canvas/philip/tests/2d.text.baseline.valid.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.align.center.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.align.end.ltr.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.align.end.rtl.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.align.left.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.align.right.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.align.start.ltr.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.align.start.rtl.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.baseline.alphabetic.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.baseline.bottom.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.baseline.hanging.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.baseline.ideographic.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.baseline.middle.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.baseline.top.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.fill.basic.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.fill.basic.png: Removed.
  • fast/canvas/philip/tests/2d.text.draw.fill.maxWidth.bound.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.fill.maxWidth.fontface.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.fill.maxWidth.large.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.fill.maxWidth.large.png: Removed.
  • fast/canvas/philip/tests/2d.text.draw.fill.maxWidth.small.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.fill.maxWidth.zero.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.fill.rtl.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.fill.rtl.png: Removed.
  • fast/canvas/philip/tests/2d.text.draw.fill.unaffected.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.fontface.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.fontface.notinpage.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.fontface.repeat.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.kern.consistent.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.space.basic.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.space.collapse.end.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.space.collapse.nonspace.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.space.collapse.other.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.space.collapse.space.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.space.collapse.start.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.stroke.basic.html: Removed.
  • fast/canvas/philip/tests/2d.text.draw.stroke.basic.png: Removed.
  • fast/canvas/philip/tests/2d.text.draw.stroke.unaffected.html: Removed.
  • fast/canvas/philip/tests/2d.text.font.default.html: Removed.
  • fast/canvas/philip/tests/2d.text.font.parse.basic.html: Removed.
  • fast/canvas/philip/tests/2d.text.font.parse.complex.html: Removed.
  • fast/canvas/philip/tests/2d.text.font.parse.invalid.html: Removed.
  • fast/canvas/philip/tests/2d.text.font.parse.size.percentage.default.html: Removed.
  • fast/canvas/philip/tests/2d.text.font.parse.size.percentage.html: Removed.
  • fast/canvas/philip/tests/2d.text.font.parse.system.html: Removed.
  • fast/canvas/philip/tests/2d.text.measure.width.basic.html: Removed.
  • fast/canvas/philip/tests/2d.text.measure.width.empty.html: Removed.
  • fast/canvas/philip/tests/2d.text.measure.width.space.html: Removed.
  • fast/canvas/philip/tests/2d.transformation.order.html: Removed.
  • fast/canvas/philip/tests/2d.transformation.rotate.direction.html: Removed.
  • fast/canvas/philip/tests/2d.transformation.rotate.nonfinite.html: Removed.
  • fast/canvas/philip/tests/2d.transformation.rotate.radians.html: Removed.
  • fast/canvas/philip/tests/2d.transformation.rotate.wrap.html: Removed.
  • fast/canvas/philip/tests/2d.transformation.rotate.wrapnegative.html: Removed.
  • fast/canvas/philip/tests/2d.transformation.rotate.zero.html: Removed.
  • fast/canvas/philip/tests/2d.transformation.scale.basic.html: Removed.
  • fast/canvas/philip/tests/2d.transformation.scale.large.html: Removed.
  • fast/canvas/philip/tests/2d.transformation.scale.multiple.html: Removed.
  • fast/canvas/philip/tests/2d.transformation.scale.negative.html: Removed.
  • fast/canvas/philip/tests/2d.transformation.scale.nonfinite.html: Removed.
  • fast/canvas/philip/tests/2d.transformation.scale.zero.html: Removed.
  • fast/canvas/philip/tests/2d.transformation.setTransform.multiple.html: Removed.
  • fast/canvas/philip/tests/2d.transformation.setTransform.nonfinite.html: Removed.
  • fast/canvas/philip/tests/2d.transformation.setTransform.skewed.html: Removed.
  • fast/canvas/philip/tests/2d.transformation.transform.identity.html: Removed.
  • fast/canvas/philip/tests/2d.transformation.transform.multiply.html: Removed.
  • fast/canvas/philip/tests/2d.transformation.transform.nonfinite.html: Removed.
  • fast/canvas/philip/tests/2d.transformation.transform.skewed.html: Removed.
  • fast/canvas/philip/tests/2d.transformation.translate.basic.html: Removed.
  • fast/canvas/philip/tests/2d.transformation.translate.nonfinite.html: Removed.
  • fast/canvas/philip/tests/2d.voidreturn.html: Removed.
  • fast/canvas/philip/tests/clear-100x50.png: Removed.
  • fast/canvas/philip/tests/context.casesensitive.html: Removed.
  • fast/canvas/philip/tests/context.emptystring.html: Removed.
  • fast/canvas/philip/tests/context.unrecognised.badname.html: Removed.
  • fast/canvas/philip/tests/context.unrecognised.badsuffix.html: Removed.
  • fast/canvas/philip/tests/context.unrecognised.nullsuffix.html: Removed.
  • fast/canvas/philip/tests/context.unrecognised.unicode.html: Removed.
  • fast/canvas/philip/tests/fallback.basic.html: Removed.
  • fast/canvas/philip/tests/fallback.multiple.html: Removed.
  • fast/canvas/philip/tests/fallback.nested.html: Removed.
  • fast/canvas/philip/tests/green-100x50.png: Removed.
  • fast/canvas/philip/tests/initial.colour.html: Removed.
  • fast/canvas/philip/tests/initial.colour.png: Removed.
  • fast/canvas/philip/tests/initial.reset.2dstate.html: Removed.
  • fast/canvas/philip/tests/initial.reset.clip.html: Removed.
  • fast/canvas/philip/tests/initial.reset.different.html: Removed.
  • fast/canvas/philip/tests/initial.reset.different.png: Removed.
  • fast/canvas/philip/tests/initial.reset.gradient.html: Removed.
  • fast/canvas/philip/tests/initial.reset.path.html: Removed.
  • fast/canvas/philip/tests/initial.reset.path.png: Removed.
  • fast/canvas/philip/tests/initial.reset.pattern.html: Removed.
  • fast/canvas/philip/tests/initial.reset.same.html: Removed.
  • fast/canvas/philip/tests/initial.reset.same.png: Removed.
  • fast/canvas/philip/tests/initial.reset.transform.html: Removed.
  • fast/canvas/philip/tests/security.dataURI.html: Removed.
  • fast/canvas/philip/tests/security.drawImage.canvas.html: Removed.
  • fast/canvas/philip/tests/security.drawImage.image.html: Removed.
  • fast/canvas/philip/tests/security.pattern.canvas.fillStyle.html: Removed.
  • fast/canvas/philip/tests/security.pattern.canvas.strokeStyle.html: Removed.
  • fast/canvas/philip/tests/security.pattern.canvas.timing.html: Removed.
  • fast/canvas/philip/tests/security.pattern.create.html: Removed.
  • fast/canvas/philip/tests/security.pattern.cross.html: Removed.
  • fast/canvas/philip/tests/security.pattern.image.fillStyle.html: Removed.
  • fast/canvas/philip/tests/security.pattern.image.strokeStyle.html: Removed.
  • fast/canvas/philip/tests/security.reset.html: Removed.
  • fast/canvas/philip/tests/size.attributes.default.html: Removed.
  • fast/canvas/philip/tests/size.attributes.default.png: Removed.
  • fast/canvas/philip/tests/size.attributes.get.html: Removed.
  • fast/canvas/philip/tests/size.attributes.get.png: Removed.
  • fast/canvas/philip/tests/size.attributes.idl.html: Removed.
  • fast/canvas/philip/tests/size.attributes.idl.set.zero.html: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.decimal.html: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.decimal.png: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.em.html: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.em.png: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.empty.html: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.empty.png: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.exp.html: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.exp.png: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.hex.html: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.junk.html: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.junk.png: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.minus.html: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.minus.png: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.octal.html: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.octal.png: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.onlyspace.html: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.onlyspace.png: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.percent.html: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.percent.png: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.plus.html: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.plus.png: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.space.html: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.space.png: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.trailingjunk.html: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.trailingjunk.png: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.whitespace.html: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.whitespace.png: Removed.
  • fast/canvas/philip/tests/size.attributes.parse.zero.html: Removed.
  • fast/canvas/philip/tests/size.attributes.reflect.setcontent.html: Removed.
  • fast/canvas/philip/tests/size.attributes.reflect.setcontent.png: Removed.
  • fast/canvas/philip/tests/size.attributes.reflect.setidl.html: Removed.
  • fast/canvas/philip/tests/size.attributes.reflect.setidl.png: Removed.
  • fast/canvas/philip/tests/size.attributes.reflect.setidlzero.html: Removed.
  • fast/canvas/philip/tests/size.attributes.removed.html: Removed.
  • fast/canvas/philip/tests/size.attributes.removed.png: Removed.
  • fast/canvas/philip/tests/size.attributes.set.html: Removed.
  • fast/canvas/philip/tests/size.attributes.set.png: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.decimal.html: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.decimal.png: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.em.html: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.em.png: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.empty.html: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.empty.png: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.exp.html: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.exp.png: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.hex.html: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.junk.html: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.junk.png: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.minus.html: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.minus.png: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.octal.html: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.octal.png: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.onlyspace.html: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.onlyspace.png: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.percent.html: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.percent.png: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.plus.html: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.plus.png: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.space.html: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.space.png: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.trailingjunk.html: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.trailingjunk.png: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.whitespace.html: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.whitespace.png: Removed.
  • fast/canvas/philip/tests/size.attributes.setAttribute.zero.html: Removed.
  • fast/canvas/philip/tests/size.attributes.style.html: Removed.
  • fast/canvas/philip/tests/size.attributes.style.png: Removed.
  • fast/canvas/philip/tests/toDataURL.arguments.1.html: Removed.
  • fast/canvas/philip/tests/toDataURL.arguments.2.html: Removed.
  • fast/canvas/philip/tests/toDataURL.arguments.3.html: Removed.
  • fast/canvas/philip/tests/toDataURL.bogustype.html: Removed.
  • fast/canvas/philip/tests/toDataURL.default.html: Removed.
  • fast/canvas/philip/tests/toDataURL.jpeg.alpha.html: Removed.
  • fast/canvas/philip/tests/toDataURL.jpeg.alpha.png: Removed.
  • fast/canvas/philip/tests/toDataURL.jpeg.primarycolours.html: Removed.
  • fast/canvas/philip/tests/toDataURL.jpeg.primarycolours.png: Removed.
  • fast/canvas/philip/tests/toDataURL.jpeg.quality.basic.html: Removed.
  • fast/canvas/philip/tests/toDataURL.jpeg.quality.basic.png: Removed.
  • fast/canvas/philip/tests/toDataURL.jpeg.quality.notnumber.html: Removed.
  • fast/canvas/philip/tests/toDataURL.jpeg.quality.outsiderange.html: Removed.
  • fast/canvas/philip/tests/toDataURL.lowercase.ascii.html: Removed.
  • fast/canvas/philip/tests/toDataURL.lowercase.unicode.html: Removed.
  • fast/canvas/philip/tests/toDataURL.nocontext.html: Removed.
  • fast/canvas/philip/tests/toDataURL.png.complexcolours.html: Removed.
  • fast/canvas/philip/tests/toDataURL.png.complexcolours.png: Removed.
  • fast/canvas/philip/tests/toDataURL.png.html: Removed.
  • fast/canvas/philip/tests/toDataURL.png.primarycolours.html: Removed.
  • fast/canvas/philip/tests/toDataURL.png.primarycolours.png: Removed.
  • fast/canvas/philip/tests/toDataURL.unrecognised.html: Removed.
  • fast/canvas/philip/tests/toDataURL.zerosize.html: Removed.
  • fast/canvas/philip/tests/type.delete.html: Removed.
  • fast/canvas/philip/tests/type.exists.html: Removed.
  • fast/canvas/philip/tests/type.extend.html: Removed.
  • fast/canvas/philip/tests/type.name.html: Removed.
  • fast/canvas/philip/tests/type.prototype.html: Removed.
  • fast/canvas/philip/tests/type.replace.html: Removed.
  • platform/chromium/test_expectations.txt:
  • platform/gtk/Skipped:
  • platform/mac/Skipped:
  • platform/qt/Skipped:
  • platform/win/Skipped:
4:44 AM Changeset in webkit [60071] by jorlow@chromium.org
  • 6 edits in trunk

2010-05-24 Jeremy Orlow <jorlow@chromium.org>

Unreviewed. Forgot to redo the expectation after adding the contains
method.

  • fast/dom/Window/window-properties-expected.txt:
  • platform/gtk/fast/dom/Window/window-properties-expected.txt:
  • platform/qt/fast/dom/Window/window-properties-expected.txt:

2010-05-24 Jeremy Orlow <jorlow@chromium.org>

Unreviewed. Checked in merge error. :-(

  • CMakeLists.txt:
4:24 AM Changeset in webkit [60070] by jorlow@chromium.org
  • 14 edits in trunk/LayoutTests

2010-05-24 Jeremy Orlow <jorlow@chromium.org>

Not reviewed.

I forgot to update platform specific expectations in
http://trac.webkit.org/changeset/44943

  • platform/chromium/fast/dom/prototype-inheritance-expected.txt:
  • platform/gtk/fast/dom/Window/window-properties-expected.txt:
  • platform/gtk/fast/dom/Window/window-property-descriptors-expected.txt:
  • platform/gtk/fast/dom/prototype-inheritance-expected.txt:
  • platform/gtk/fast/js/global-constructors-expected.txt:
  • platform/qt/fast/dom/Window/window-properties-expected.txt:
  • platform/qt/fast/dom/Window/window-property-descriptors-expected.txt:
  • platform/qt/fast/dom/prototype-inheritance-expected.txt:
  • platform/qt/fast/js/global-constructors-expected.txt:
  • platform/win/fast/dom/Window/window-property-descriptors-expected.txt:
  • platform/win/fast/dom/prototype-inheritance-2-expected.txt:
  • platform/win/fast/dom/prototype-inheritance-expected.txt:
  • platform/win/fast/js/global-constructors-expected.txt:
4:15 AM Changeset in webkit [60069] by steveblock@google.com
  • 6 edits
    3 adds in trunk

2010-05-24 Steve Block <steveblock@google.com>

Reviewed by Darin Adler.

Geolocation causes DOMWindow to leak if position requests are in progress when the page is navigated away
https://bugs.webkit.org/show_bug.cgi?id=39288

Test: fast/dom/Geolocation/ongoing-request-leak.html

  • loader/FrameLoader.cpp: (WebCore::FrameLoader::stopLoading): Stop all Geolocation instances. This call is made after the unload event has fired, so no new Geolocation activity is possible.
  • page/Geolocation.cpp: (WebCore::Geolocation::stop): Removes all ongoing requests and stops the service. (WebCore::Geolocation::disconnectFrame): Removed calls to stopUpdating() and stopTimers(), as this will already have been done in stop();
  • page/Geolocation.h: Added stop() method.

2010-05-24 Steve Block <steveblock@google.com>

Reviewed by Darin Adler.

Geolocation causes DOMWindow to leak if position requests are in progress when the page is navigated away
https://bugs.webkit.org/show_bug.cgi?id=39288

  • fast/dom/Geolocation/ongoing-request-leak-expected.txt: Added.
  • fast/dom/Geolocation/ongoing-request-leak.html: Added.
  • fast/dom/Geolocation/script-tests/ongoing-request-leak.js: Added.
  • platform/gtk/Skipped:
3:25 AM Changeset in webkit [60068] by morrita@google.com
  • 3 edits
    3 adds in trunk

2010-05-24 MORITA Hajime <morrita@google.com>

Reviewed by Kent Tamura.

Textarea shouldn't grow when you type.
https://bugs.webkit.org/show_bug.cgi?id=32077

Add test for the case with various type of properties for vertical box size.
including height, min-height, max-height, padding-top/bottom, margin-top/bottom.

  • fast/forms/script-tests/textarea-percentage-dimensions.js: Added. (heightChanged):
  • fast/forms/textarea-percentage-dimensions-expected.txt: Added.
  • fast/forms/textarea-percentage-dimensions.html: Added.

2010-05-24 MORITA Hajime <morrita@google.com>

Reviewed by Kent Tamura.

Textarea shouldn't grow when you type.
https://bugs.webkit.org/show_bug.cgi?id=32077

<textarea> with percent-specified, height-related properties did
cause partial-layout rooted from the renderer, that resulted
different box height between full-layout and partial-layout. This
is because calcHeight() assumes that the layout calculation of the
RenderBlock's parent is ongoing. But this assumption is violated
when the RenderBlock is root of the layout calculation.

So we prevent such <textarea>'s RenderObjects from being layout
root.

Test: fast/forms/textarea-percentage-dimensions.html

  • rendering/RenderObject.h: (WebCore::objectIsRelayoutBoundary):
3:17 AM Changeset in webkit [60067] by jorlow@chromium.org
  • 21 edits
    3 adds in trunk

2010-05-21 Jeremy Orlow <jorlow@chromium.org>

Reviewed by Alexey Proskuryakov.

Add DOMStringList idl, needed for IndexedDB and for HTML5 drag & drop
https://bugs.webkit.org/show_bug.cgi?id=39429

Added new constructor for DOMStringsList, so updating the existing
expected results.

  • fast/dom/Window/window-properties-expected.txt:
  • fast/dom/Window/window-property-descriptors-expected.txt:
  • fast/dom/prototype-inheritance-2-expected.txt:
  • fast/dom/prototype-inheritance-expected.txt:
  • fast/js/global-constructors-expected.txt:

2010-05-20 Jeremy Orlow <jorlow@chromium.org>

Reviewed by Alexey Proskuryakov.

Add DOMStringList idl, needed for IndexedDB and for HTML5 drag & drop
https://bugs.webkit.org/show_bug.cgi?id=39429

IndexedDB depends on DOMStringList.
http://dev.w3.org/2006/webapi/WebSimpleDB/#idl-def-IDBDatabase
It's currently specced here:
http://www.w3.org/TR/DOM-Level-3-Core/core.html#DOMStringList

Existing tests cover the constructor. IndexedDB will also use this
soon (and thus add test coverage).

  • Android.mk:
  • Android.derived.jscbindings.mk:
  • Android.derived.v8bindings.mk:
  • CMakeLists.txt:
  • DerivedSources.cpp:
  • DerivedSources.make:
  • GNUmakefile.am:
  • WebCore.gypi:
  • WebCore.pri:
  • WebCore.pro:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.xcodeproj/project.pbxproj:
  • bindings/scripts/CodeGeneratorJS.pm:
  • dom/DOMStringList.h: Added. (WebCore::DOMStringList::create): (WebCore::DOMStringList::length): (WebCore::DOMStringList::item): (WebCore::DOMStringList::isEmpty): (WebCore::DOMStringList::clear): (WebCore::DOMStringList::append): (WebCore::DOMStringList::DOMStringList):
  • dom/DOMStringList.idl: Added.
  • page/DOMWIndow.idl: Re-enabled constructor
1:31 AM Changeset in webkit [60066] by eric@webkit.org
  • 4 edits in trunk/WebKitTools

2010-05-24 Eric Seidel <eric@webkit.org>

Reviewed by Chris Jerdonek.

webkit-patch needs --verbose flag to enable DEBUG logging
https://bugs.webkit.org/show_bug.cgi?id=39208

I also added some code to print out how long commands take to run.

  • Scripts/webkit-patch:
    • Add hackish -v/--verbose parsing (similar to check-webkit-style)
  • Scripts/webkitpy/common/system/executive.py:
    • Log how long commands take to run.
  • Scripts/webkitpy/tool/main.py:
    • Add -v/--verbose option to global options.
1:22 AM Changeset in webkit [60065] by hamaji@chromium.org
  • 2 edits in trunk/LayoutTests

2010-05-24 Shinichiro Hamaji <hamaji@chromium.org>

Unreviewed. Fixed a typo in test_expecations.txt.

  • platform/chromium/test_expectations.txt:
12:12 AM Changeset in webkit [60064] by hamaji@chromium.org
  • 3 edits in trunk/LayoutTests

2010-05-24 Shinichiro Hamaji <hamaji@chromium.org>

Unreviewed. Fixed the expectations for Windows.
It seems my win environment was unhealthy.

0x5C of EUC-JP is not Yen Sign but U+005C
https://bugs.webkit.org/show_bug.cgi?id=24906

  • platform/win/fast/text/backslash-to-yen-sign-dynamic-expected.txt:
  • platform/win/fast/text/backslash-to-yen-sign-expected.txt:

May 23, 2010:

11:22 PM Changeset in webkit [60063] by hamaji@chromium.org
  • 14 edits
    19 adds in trunk

2010-05-23 Shinichiro Hamaji <hamaji@chromium.org>

Reviewed by Alexey Proskuryakov.

0x5C of EUC-JP is not Yen Sign but U+005C
https://bugs.webkit.org/show_bug.cgi?id=24906

  • editing/selection/find-yensign-and-backslash-with-japanese-fonts-expected.txt: Added.
  • editing/selection/find-yensign-and-backslash-with-japanese-fonts.html: Added.
  • fast/text/backslash-to-yen-sign-dynamic.html: Added.
  • fast/text/backslash-to-yen-sign.html: Added.
  • platform/chromium/test_expectations.txt:
  • platform/gtk/fast/text/backslash-to-yen-sign-dynamic-expected.txt: Added.
  • platform/gtk/fast/text/backslash-to-yen-sign-expected.txt: Added.
  • platform/mac/fast/text/backslash-to-yen-sign-dynamic-expected.checksum: Added.
  • platform/mac/fast/text/backslash-to-yen-sign-dynamic-expected.png: Added.
  • platform/mac/fast/text/backslash-to-yen-sign-dynamic-expected.txt: Added.
  • platform/mac/fast/text/backslash-to-yen-sign-expected.checksum: Added.
  • platform/mac/fast/text/backslash-to-yen-sign-expected.png: Added.
  • platform/mac/fast/text/backslash-to-yen-sign-expected.txt: Added.
  • platform/qt/fast/text/backslash-to-yen-sign-dynamic-expected.txt: Added.
  • platform/qt/fast/text/backslash-to-yen-sign-expected.txt: Added.
  • platform/win/fast/text/backslash-to-yen-sign-dynamic-expected.txt: Added.
  • platform/win/fast/text/backslash-to-yen-sign-expected.txt: Added.

2010-05-23 Shinichiro Hamaji <hamaji@chromium.org>

Reviewed by Alexey Proskuryakov.

0x5C of EUC-JP is not Yen Sign but U+005C
https://bugs.webkit.org/show_bug.cgi?id=24906

Tests: editing/selection/find-yensign-and-backslash-with-japanese-fonts.html

fast/text/backslash-to-yen-sign-dynamic.html
fast/text/backslash-to-yen-sign.html

  • GNUmakefile.am:
  • WebCore.gyp/WebCore.gyp:
  • WebCore.gypi:
  • WebCore.pro:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.vcproj/WebCoreCommon.vsprops:
  • WebCore.xcodeproj/project.pbxproj:
  • platform/graphics/Font.cpp: (WebCore::Font::Font): (WebCore::Font::operator=):
  • platform/graphics/Font.h: (WebCore::Font::needsTranscoding):
  • platform/text/CharacterNames.h:
  • platform/text/transcoder/FontTranscoder.cpp: Added. (WebCore::FontTranscoder::FontTranscoder): (WebCore::FontTranscoder::converterType): (WebCore::FontTranscoder::convert): (WebCore::FontTranscoder::needsTranscoding): (WebCore::fontTranscoder):
  • platform/text/transcoder/FontTranscoder.h: Added. (WebCore::FontTranscoder::):
  • rendering/RenderText.cpp: (WebCore::RenderText::updateNeedsTranscoding): (WebCore::RenderText::styleDidChange): (WebCore::RenderText::setTextInternal):
10:22 PM Changeset in webkit [60062] by morrita@google.com
  • 3 edits
    3 deletes in trunk

2010-05-23 MORITA Hajime <morrita@google.com>

Unreviewed, rolling out r60060.
http://trac.webkit.org/changeset/60060
https://bugs.webkit.org/show_bug.cgi?id=32077

Rollout, beucause it breaks pixel tests under repaint/.

  • fast/forms/script-tests/textarea-percentage-dimensions.js: Removed.
  • fast/forms/textarea-percentage-dimensions-expected.txt: Removed.
  • fast/forms/textarea-percentage-dimensions.html: Removed.

2010-05-23 MORITA Hajime <morrita@google.com>

Unreviewed, rolling out r60060.
http://trac.webkit.org/changeset/60060
https://bugs.webkit.org/show_bug.cgi?id=32077

breaks chromium test

  • rendering/RenderObject.h: (WebCore::objectIsRelayoutBoundary):
10:16 PM Changeset in webkit [60061] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-23 Justin Schuh <jschuh@chromium.org>

Reviewed by Shinichiro Hamaji.

Style cleanup for r56288
https://bugs.webkit.org/show_bug.cgi?id=39554

Cleaning up style from a previous patch. No tests needed because no
logic is changed.

  • svg/SVGFEMorphologyElement.cpp: (WebCore::SVGFEMorphologyElement::build):
9:39 PM Changeset in webkit [60060] by morrita@google.com
  • 3 edits
    3 adds in trunk

2010-05-23 MORITA Hajime <morrita@google.com>

Reviewed by Kent Tamura.

Textarea shouldn't grow when you type.
https://bugs.webkit.org/show_bug.cgi?id=32077

Add test for the case with various type of properties for vertical box size.
including height, min-height, max-height, padding-top/bottom, margin-top/bottom.

  • fast/forms/script-tests/textarea-percentage-dimensions.js: Added. (heightChanged):
  • fast/forms/textarea-percentage-dimensions-expected.txt: Added.
  • fast/forms/textarea-percentage-dimensions.html: Added.

2010-05-23 MORITA Hajime <morrita@google.com>

Reviewed by Kent Tamura.

Textarea shouldn't grow when you type.
https://bugs.webkit.org/show_bug.cgi?id=32077

<textarea> with percent-specified, height-related properties did
cause partial-layout rooted from the renderer, that resulted
different box height between full-layout and partial-layout. This
is because calcHeight() assumes that the layout calculation of the
RenderBlock's parent is ongoing. But this assumption is violated
when the RenderBlock is root of the layout calculation.

So we prevent such <textarea>'s RenderObjects from being layout
root.

Test: fast/forms/textarea-percentage-dimensions.html

  • rendering/RenderObject.h: (WebCore::objectIsRelayoutBoundary):
8:50 PM Changeset in webkit [60059] by tony@chromium.org
  • 2 edits in trunk/LayoutTests

2010-05-23 Tony Chang <tony@chromium.org>

Not reviewed, updating test_expectations.txt

[chromium] remove editing/pasteboard/drop-link.html from test_expectations.txt
https://bugs.webkit.org/show_bug.cgi?id=39580

  • platform/chromium/test_expectations.txt:
7:28 PM Changeset in webkit [60058] by weinig@apple.com
  • 2 edits in trunk/JavaScriptCore

Fix windows build.

7:15 PM Changeset in webkit [60057] by weinig@apple.com
  • 9 edits in trunk

Fix for https://bugs.webkit.org/show_bug.cgi?id=39575
Make JS DOMObject inherit from JSObjectWithGlobalObject instead of JSObject

Reviewed by Oliver Hunt.

JavaScriptCore:

Expose the global object stored in JSObjectWithGlobalObject.

(JSC::JSObjectWithGlobalObject::JSObjectWithGlobalObject):
(JSC::JSObjectWithGlobalObject::globalObject):

  • runtime/JSObjectWithGlobalObject.h:

WebCore:

  • Changes JSDOMWindowShell to inherit from JSObject instead of DOMObject since it doesn't ever go into any DOMObject tables. In a separate change, we may want to make this inherit from JSObjectWithGlobalObject since JSDOMWindowShell does store a global object pointer.
  • Change DOMObject to inherit from JSObjectWithGlobalObject instead of JSObject. In this change I am keeping around DOMObjectWithGlobalPointer, which now just uses the capabilities of JSObjectWithGlobalObject instead of implementing them itself. DOMObjectWithGlobalPointer will go away in a subsequent patch.
  • bindings/js/JSDOMBinding.h:

(WebCore::DOMObjectWithGlobalPointer::globalObject):
(WebCore::DOMObjectWithGlobalPointer::DOMObjectWithGlobalPointer):

  • bindings/js/JSDOMWindowShell.h:
  • bindings/js/JSDOMWrapper.h:

(WebCore::DOMObject::DOMObject):

6:37 PM Changeset in webkit [60056] by eric@webkit.org
  • 7 edits in trunk/WebCore

2010-05-23 Eric Seidel <eric@webkit.org>

Unreviewed, just being a copy/paste monkey. Oook, eeek.

Add new HTML5TreeBuilder class to hold the tree builder section of the HTML5 parsing spec
https://bugs.webkit.org/show_bug.cgi?id=39572

Add HTML5TreeBuilder.* to each of WebKit's 85,324 build systems.

  • Android.mk:
  • CMakeLists.txt:
  • GNUmakefile.am:
  • WebCore.gypi:
  • WebCore.pro:
  • WebCore.vcproj/WebCore.vcproj:
6:20 PM Changeset in webkit [60055] by eric@webkit.org
  • 4 edits
    2 copies in trunk/WebCore

2010-05-23 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

Add new HTML5TreeBuilder class to hold the tree builder section of the HTML5 parsing spec
https://bugs.webkit.org/show_bug.cgi?id=39572

We've been working on the tokenization (lexing) section of the HTML5
spec until now and leaning on the old HTMLParser for tree building.
We need to start writing more of the tree building sections of the spec,
but to do that we need a place to put the new code.

This patch moves our old-to-new conversion hacks out of HTML5Tokenizer
(our Tokenizer.h implementation) and into HTML5TreeBuilder.
Follow-up patches will add new HTML5 tree building code to this file
and will allow us to switch between old and new parser/treebuilder
implementations.

No change in behavior, thus no new tests.

  • WebCore.xcodeproj/project.pbxproj:
  • html/HTML5Tokenizer.cpp: (WebCore::HTML5Tokenizer::HTML5Tokenizer): (WebCore::HTML5Tokenizer::write):
    • Call the new HTML5TreeBuilder code.
  • html/HTML5Tokenizer.h:
  • html/HTML5TreeBuilder.cpp: Added.
  • html/HTML5TreeBuilder.h: Added.
6:14 PM Changeset in webkit [60054] by tony@chromium.org
  • 2 edits in trunk/WebKit/chromium

2010-05-21 Tony Chang <tony@chromium.org>

Reviewed by Ojan Vafai.

[chromium] if keydown is prevented, don't update the IME and clear the IME state
https://bugs.webkit.org/show_bug.cgi?id=39475

  • src/WebViewImpl.cpp: (WebKit::WebViewImpl::handleCompositionEvent):
6:06 PM Changeset in webkit [60053] by eric@webkit.org
  • 5 edits
    2 adds in trunk/WebKitTools

2010-05-23 Eric Seidel <eric@webkit.org>

Reviewed by Daniel Bates.

Split PatchReader out into its own file
https://bugs.webkit.org/show_bug.cgi?id=39576

This is in preparation for making check-webkit-style
support being passed paths to patch files on the command line.

  • Scripts/check-webkit-style:
  • Scripts/webkitpy/style/checker.py:
  • Scripts/webkitpy/style/checker_unittest.py:
  • Scripts/webkitpy/style/patchreader.py: Added.
  • Scripts/webkitpy/style/patchreader_unittest.py: Added.
  • Scripts/webkitpy/style_references.py:
4:20 PM Changeset in webkit [60052] by weinig@apple.com
  • 20 edits
    2 deletes in trunk/WebCore

Fix for https://bugs.webkit.org/show_bug.cgi?id=39574
Complete the merge of NamedMappedAttrMap into NamedNodeMap.

Reviewed by Oliver Hunt.

  • Android.mk:
  • CMakeLists.txt:
  • GNUmakefile.am:
  • WebCore.gypi:
  • WebCore.pro:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.xcodeproj/project.pbxproj:
  • css/CSSStyleSelector.cpp:

(WebCore::CSSStyleSelector::canShareStyleWithElement):
(WebCore::CSSStyleSelector::styleForElement):

  • dom/Element.cpp:

(WebCore::Element::createAttributeMap):

  • dom/NamedMappedAttrMap.cpp: Removed.
  • dom/NamedMappedAttrMap.h: Removed.
  • dom/NamedNodeMap.cpp:

(WebCore::NamedNodeMap::setClass):
(WebCore::NamedNodeMap::declCount):
(WebCore::NamedNodeMap::mapsEquivalent):
(WebCore::NamedNodeMap::mappedMapsEquivalent):

  • dom/NamedNodeMap.h:

(WebCore::NamedNodeMap::create):
(WebCore::NamedNodeMap::clearClass):
(WebCore::NamedNodeMap::classNames):
(WebCore::NamedNodeMap::hasMappedAttributes):
(WebCore::NamedNodeMap::declRemoved):
(WebCore::NamedNodeMap::declAdded):
(WebCore::NamedNodeMap::NamedNodeMap):

  • dom/StyledElement.h:

(WebCore::StyledElement::mappedAttributes):

  • html/HTML5Token.h:
  • html/HTML5Tokenizer.cpp:

(WebCore::convertToOldStyle):

  • html/HTMLInputElement.cpp:

(WebCore::HTMLInputElement::setInputType):

  • html/HTMLParser.cpp:

(WebCore::HTMLParser::handleIsindex):

  • html/HTMLTokenizer.cpp:

(WebCore::Token::addAttribute):
(WebCore::HTMLTokenizer::processToken):

  • html/HTMLTokenizer.h:
  • html/HTMLViewSourceDocument.cpp:

(WebCore::HTMLViewSourceDocument::createContainingTable):
(WebCore::HTMLViewSourceDocument::addSpanWithClassName):
(WebCore::HTMLViewSourceDocument::addLine):
(WebCore::HTMLViewSourceDocument::addLink):

3:22 PM Changeset in webkit [60051] by eric@webkit.org
  • 9 edits
    1 add in trunk

2010-05-23 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Teach HTML5 parser how to lex comments correctly
https://bugs.webkit.org/show_bug.cgi?id=39537

Added a new data file for testing comment parsing. There are some more
things we can test here once we implement the bogus comment state.

  • html5lib/resources/comments01.dat: Added.
  • html5lib/webkit-runner-expected.txt:
    • Some of these tests fail in our current parser because our current parser doesn't comply with HTML5. I've set these expectations to failing so the tests will "pass" in the current parser. I've double-checked the results in comments01.dat with a nightly build of Firefox to make sure we agree on our implementation of the spec.
  • html5lib/webkit-runner.html:

2010-05-23 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Teach HTML5 parser how to lex comments correctly
https://bugs.webkit.org/show_bug.cgi?id=39537

Implement the non-bogus comment states for the lexer. There's more
work to do in some of these states (e.g., to handle doctype tokens and
bogus comments), but I'm trying to keep the patches small.

Tests: comments01.dat

  • html/HTML5Lexer.cpp: (WebCore::HTML5Lexer::nextToken):
  • html/HTML5Lexer.h:
  • html/HTML5Token.h: (WebCore::HTML5Token::beginComment): (WebCore::HTML5Token::appendToComment): (WebCore::HTML5Token::data):
  • html/HTML5Tokenizer.cpp: (WebCore::convertToOldStyle):
  • platform/text/SegmentedString.h: (WebCore::SegmentedString::): (WebCore::SegmentedString::peek):
    • Occationally, the HTML5 parsing algorithm looks ahead in the input stream. The implementation here is incomplete, but its enough to run the current HTML5 parsing tests. I'll eventually need to implement the slow case here.
3:08 PM Changeset in webkit [60050] by eric@webkit.org
  • 4 edits in trunk/WebKitTools

2010-05-23 Adam Barth <abarth@webkit.org>

Reviewed by Daniel Bates.

webkit-patch should let you add a comment when uploading a patch
https://bugs.webkit.org/show_bug.cgi?id=39552

As requested by Dan "the man" Bates.

  • Scripts/webkitpy/tool/steps/options.py:
  • Scripts/webkitpy/tool/steps/postdiff.py:
2:16 PM Changeset in webkit [60049] by eric@webkit.org
  • 4 edits in trunk/LayoutTests

2010-05-23 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Add tests for previous HTML5 parser patches
https://bugs.webkit.org/show_bug.cgi?id=39534

Now that we have the test harness working, I've added tests for the
previous HTML5 parser patches. To run these tests, you need to pass
the --html5-parser flag to DumpRenderTree (of course, you can run them
with the old parser in the usual way).

  • html5lib/resources/webkit01.dat:
  • html5lib/webkit-runner-expected.txt:
  • html5lib/webkit-runner.html:
1:53 PM Changeset in webkit [60048] by eric@webkit.org
  • 3 edits
    3 adds in trunk

2010-05-23 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Make the html5lib parser tests run using the HTML5 parser
https://bugs.webkit.org/show_bug.cgi?id=39533

This patch adds a version of runner.html that's easier to parse (e.g.,
no doctype or HTML comments) as well as a new test data file. The
exciting thing is that this test passes in the new HTML5 parser using
this runner.

Once the HTML5 parser is strong enough, we'll remove webkit-runner.html
and have runner.html run the new webkit*.dat files.

  • html5lib/resources/webkit01.dat: Added.
  • html5lib/webkit-runner-expected.txt: Added.
  • html5lib/webkit-runner.html: Added.

2010-05-23 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Make the html5lib parser tests run using the HTML5 parser
https://bugs.webkit.org/show_bug.cgi?id=39533

Turns out we're just one small tweak away from running the html5lib
tests. After this patch lands, we should be able to introduce tests
for every change to the HTML5 parser.

Test: html5lib/webkit-runner.html

  • html/HTML5Lexer.cpp: (WebCore::HTML5Lexer::nextToken):
1:38 PM Changeset in webkit [60047] by eric@webkit.org
  • 5 edits in trunk/WebCore

2010-05-23 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Make HTML5 parser parse <script>alert("<hi>");</script>
https://bugs.webkit.org/show_bug.cgi?id=39525

More progress towards getting the html5lib test harness running. We
need to parse script data in the ScriptDataState. The spec says the
parser should set the lexer's state to ScriptDataState, but we want to
keep using the existing parser for a while so I've added some temporary
logic to HTML5Tokenizer to set the state in the lexer.

To get this case running, I needed to flesh out a bunch of the
ScriptDataState logic. There's a bunch more to do, but this is a
start.

I'm not 100% happy with this patch, but it lets us execute a simplified
version of the test harness up to the point where it starts running the
first test.

  • html/HTML5Lexer.cpp: (WebCore::HTML5Lexer::nextToken): (WebCore::HTML5Lexer::isAppropriateEndTag): (WebCore::HTML5Lexer::emitCurrentTagToken):
  • html/HTML5Lexer.h: (WebCore::HTML5Lexer::setState):
  • html/HTML5Token.h: (WebCore::HTML5Token::beginEndTag): (WebCore::HTML5Token::appendToCharacter): (WebCore::HTML5Token::name):
  • html/HTML5Tokenizer.cpp: (WebCore::HTML5Tokenizer::write):
12:57 PM QtWebKit edited by Laszlo Gombos
(diff)
8:44 AM Changeset in webkit [60046] by jparent@chromium.org
  • 1 edit
    2 adds in trunk/LayoutTests

Unreviewed.

Adds Chromium expectations for new test added in http://trac.webkit.org/changeset/60026/.
Difference is in the line number printed for the exception.

  • platform/chromium-mac/fast/dom/nested-script-exceptions-expected.txt: Added.
  • platform/chromium-win/fast/dom/nested-script-exceptions-expected.txt: Added.
7:47 AM Changeset in webkit [60045] by cmarrin@apple.com
  • 3 edits in trunk/WebCore

Limit the number of tiles created for large tiled layers
https://bugs.webkit.org/show_bug.cgi?id=39522


I added an algorithm to limit the number of tiles created to 512.
It tried to limit them in only one dimension and if that's not
possible it limits them in both dimensions according to the
ratio of width to height. This has the effect of rendering
tiles starting from the upper-left, which is often the part
that is visible. So it both prevents crashing and tried to do
the best job it can of displaying what the author intended.

The test LayoutTests/compositing/geometry/huge-layers.html was
crashing before this fix. Now it works correctly.

  • platform/graphics/win/WebTiledLayer.cpp: (WebCore::WebTiledLayer::WebTiledLayer): (WebCore::WebTiledLayer::setBounds): (WebCore::WebTiledLayer::constrainedSize): (WebCore::WebTiledLayer::updateTiles):
  • platform/graphics/win/WebTiledLayer.h:
6:32 AM Changeset in webkit [60044] by eric@webkit.org
  • 2 edits in trunk/WebKit/chromium

2010-05-23 Roman Gershman <romange@google.com>

Reviewed by Darin Fisher.

[Chromium] Suggestion popup is not closed when the view is scrolled.
https://bugs.webkit.org/show_bug.cgi?id=38640

This bug appears on both Windows and Linux platforms.
Mac OS, however handles window messages differently and
closes popup menu in RenderWidgetHostViewMac::Destroy().

No tests were added because test_shell does not support suggestion
popup.

  • src/ChromeClientImpl.cpp: (WebKit::ChromeClientImpl::invalidateContentsForSlowScroll): (WebKit::ChromeClientImpl::scroll):
5:44 AM Changeset in webkit [60043] by eric@webkit.org
  • 2 edits in trunk/WebKitTools

2010-05-23 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

webkit-patch should assign newly created bugs to their creator
https://bugs.webkit.org/show_bug.cgi?id=39548

As requested on webkit-dev.

  • Scripts/webkitpy/common/net/bugzilla.py:
5:22 AM Changeset in webkit [60042] by eric@webkit.org
  • 2 edits in trunk/WebKitTools

2010-05-23 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Hide prepare and post commands for webkit-patch
https://bugs.webkit.org/show_bug.cgi?id=39539

It turns out these commands aren't very popular and they confuse new
users. They'll still be there for advanced users, however.

  • Scripts/webkitpy/tool/commands/upload.py:
5:10 AM Changeset in webkit [60041] by eric@webkit.org
  • 2 edits in trunk/WebKit/qt

2010-05-23 Noam Rosenthal <noam.rosenthal@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt] GraphicsLayer: The rocket animation doesn't scroll together with the page
https://bugs.webkit.org/show_bug.cgi?id=39517

A previous fix to this issue was overridden by the PageClientQt refactor. Reapplying.

  • WebCoreSupport/PageClientQt.cpp: (WebCore::PageClientQGraphicsWidget::update):
4:59 AM Changeset in webkit [60040] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-23 Noam Rosenthal <noam.rosenthal@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Using Accelerated Composing the rocket back animation on http://www.the-art-of-web.com/css/css-animation/ works differently as when not using AC.
https://bugs.webkit.org/show_bug.cgi?id=39513

The value of GraphicsLayer->transform() needs to be changed during the animation, regardless of m_fillsForward.
m_fillsForward should only apply at the end of the animation. Based on previous patch by Kenneth Christiansen.

  • platform/graphics/qt/GraphicsLayerQt.cpp: (WebCore::TransformAnimationQt::applyFrame): (WebCore::OpacityAnimationQt::applyFrame):
4:15 AM Changeset in webkit [60039] by tkent@chromium.org
  • 1 edit in trunk/WebCore/bindings/js/JSAttrCustom.cpp

Unreviewed. Fix a Qt build error caused by r60037.

3:21 AM Changeset in webkit [60038] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-23 Kenneth Rohde Christiansen <kenneth@webkit.org>

Reviewed by Eric Seidel.

[Qt] GraphicsLayerQt: Coding style and comment fixes.

  • platform/graphics/qt/GraphicsLayerQt.cpp: (WebCore::MaskEffectQt::MaskEffectQt): (WebCore::MaskEffectQt::draw): (WebCore::GraphicsLayerQtImpl::ContentData::ContentData): (WebCore::GraphicsLayerQtImpl::State::State): (WebCore::GraphicsLayerQtImpl::GraphicsLayerQtImpl): (WebCore::GraphicsLayerQtImpl::~GraphicsLayerQtImpl): (WebCore::GraphicsLayerQtImpl::rootLayer): (WebCore::GraphicsLayerQtImpl::recache): (WebCore::GraphicsLayerQtImpl::updateTransform): (WebCore::GraphicsLayerQtImpl::opaqueArea): (WebCore::GraphicsLayerQtImpl::flushChanges): (WebCore::GraphicsLayerQtImpl::notifyAnimationStarted): (WebCore::GraphicsLayerQt::setNeedsDisplayInRect): (WebCore::GraphicsLayerQt::setContentsToImage): (WebCore::applyTimingFunction): (WebCore::AnimationQtBase::updateState): (WebCore::AnimationQt::AnimationQt): (WebCore::AnimationQt::updateCurrentTime): (WebCore::TransformAnimationQt::applyFrame): (WebCore::TransformAnimationQt::updateState): (WebCore::OpacityAnimationQt::OpacityAnimationQt): (WebCore::OpacityAnimationQt::applyFrame): (WebCore::GraphicsLayerQt::addAnimation): (WebCore::GraphicsLayerQt::removeAnimationsForProperty): (WebCore::GraphicsLayerQt::removeAnimationsForKeyframes): (WebCore::GraphicsLayerQt::pauseAnimation): (WebCore::GraphicsLayerQt::suspendAnimations): (WebCore::GraphicsLayerQt::resumeAnimations):
  • platform/graphics/qt/GraphicsLayerQt.h:
3:05 AM Changeset in webkit [60037] by eric@webkit.org
  • 7 edits
    1 delete in trunk

2010-05-23 Justin Schuh <jschuh@chromium.org>

Reviewed by Darin Adler.

Remove custom binding for Attr.value
https://bugs.webkit.org/show_bug.cgi?id=39499

Test now throws a JavaScript security exception instead of not
implemented.

  • http/tests/security/xss-DENIED-iframe-src-alias-expected.txt:

2010-05-23 Justin Schuh <jschuh@chromium.org>

Reviewed by Darin Adler.

Remove custom binding for Attr.value
https://bugs.webkit.org/show_bug.cgi?id=39499

Custom bindings are no longer needed because origin checks were moved
out of the bindings by: http://trac.webkit.org/changeset/59866

  • Android.v8bindings.mk:
  • WebCore.gypi:
  • bindings/js/JSAttrCustom.cpp:
  • bindings/v8/custom/V8AttrCustom.cpp: Removed.
  • dom/Attr.idl:
2:52 AM Changeset in webkit [60036] by eric@webkit.org
  • 3 edits in trunk/WebCore

2010-05-23 Grace Kloba <klobag@gmail.com>

Reviewed by Nate Chapin.

Match the call of scheduleLocationChange() to its correct signature.
Fixes <http://webkit.org/b/39452>

The call of scheduleLocationChange() in generic and v8 bindings assuming the
fourth parameter is "usergesture". But it is actually the fifth parameter.

No new features. No new tests.

  • bindings/generic/BindingDOMWindow.h: (WebCore::::createWindow):
  • bindings/v8/custom/V8DOMWindowCustom.cpp: (WebCore::V8DOMWindow::openCallback):
2:41 AM Changeset in webkit [60035] by eric@webkit.org
  • 2 edits in trunk/WebKitTools

2010-05-23 Jesus Sanchez-Palencia <jesus@webkit.org>

Reviewed by Laszlo Gombos.

[Qt] QtTestBrowser has two graphicsview options that aren't enabled correctly
https://bugs.webkit.org/show_bug.cgi?id=39491

Making toggleResizesToContents and toggleTiledBackingStore checkable when
QtTestBrowser is started on graphics view mode.

  • QtTestBrowser/main.cpp: (LauncherWindow::createChrome):
2:30 AM Changeset in webkit [60034] by eric@webkit.org
  • 4 edits in trunk/WebKitTools

2010-05-23 Jesus Sanchez-Palencia <jesus@webkit.org>

Reviewed by Laszlo Gombos.

[Qt] QtTestBrowser is still called QtLauncher in the code
https://bugs.webkit.org/show_bug.cgi?id=39488

Finish the name change of QtLauncher to QtTestBrowser.

  • QtTestBrowser/main.cpp: (LauncherApplication::LauncherApplication): (LauncherApplication::handleUserOptions):
  • QtTestBrowser/mainwindow.cpp: (MainWindow::MainWindow):
  • QtTestBrowser/useragentlist.txt:
2:18 AM Changeset in webkit [60033] by eric@webkit.org
  • 2 edits in trunk/LayoutTests

2010-05-23 Anton Muhin <antonm@chromium.org>

Reviewed by Darin Fisher.

[Chromium] Consider implementing addOriginAccessWhitelistEntry method
https://bugs.webkit.org/show_bug.cgi?id=37578

  • platform/chromium/test_expectations.txt: remove now unnecessary skips
2:07 AM Changeset in webkit [60032] by eric@webkit.org
  • 9 edits in trunk

2010-05-23 Marcus Bulach <bulach@chromium.org>

Reviewed by Kent Tamura.

[chromium] Adds Geolocation support to DumpRenderTree.
https://bugs.webkit.org/show_bug.cgi?id=39440

Existing LayoutTests/fast/dom/Geolocation/* should pass.

  • public/WebGeolocationServiceMock.h:
  • src/WebGeolocationServiceMock.cpp: (WebKit::WebGeolocationServiceMock::setMockGeolocationPermission): (WebKit::WebGeolocationServiceMock::requestPermissionForFrame): (WebKit::WebGeolocationServiceMock::attachBridge): (WebKit::WebGeolocationServiceMock::detachBridge):

2010-05-23 Marcus Bulach <bulach@chromium.org>

Reviewed by Kent Tamura.

[chromium] Adds Geolocation support to DumpRenderTree.
https://bugs.webkit.org/show_bug.cgi?id=39440

Existing LayoutTests/fast/dom/Geolocation/* should pass.

  • DumpRenderTree/chromium/LayoutTestController.cpp: (LayoutTestController::LayoutTestController): (LayoutTestController::setGeolocationPermission): (LayoutTestController::setMockGeolocationPosition): (LayoutTestController::setMockGeolocationError):
  • DumpRenderTree/chromium/LayoutTestController.h:
  • DumpRenderTree/chromium/TestShell.cpp: (TestShell::TestShell):
  • DumpRenderTree/chromium/WebViewHost.cpp: (WebViewHost::geolocationService):
  • DumpRenderTree/chromium/WebViewHost.h:
1:55 AM Changeset in webkit [60031] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-23 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

Reduce copy/paste code in HTMLParser using some template functions
https://bugs.webkit.org/show_bug.cgi?id=39471

No functional changes, thus no tests.

  • html/HTMLParser.cpp: (WebCore::addTags):
    • New function which takes a set an an array of QualifiedNames and adds the localName().impl() to the set for each QualifiedName.

(WebCore::isTablePart):
(WebCore::isScopingTag):
(WebCore::mapTagToFunc):
(WebCore::mapTagsToFunc):

  • New functions which take QualifiedNames and a function and map from the localName().impl() to the function.

(WebCore::HTMLParser::getNode):
(WebCore::HTMLParser::isHeadingTag):
(WebCore::HTMLParser::isResidualStyleTag):
(WebCore::HTMLParser::isAffectedByResidualStyle):

1:42 AM Changeset in webkit [60030] by eric@webkit.org
  • 2 edits in trunk/WebKit/qt

2010-05-23 Laszlo Gombos <Laszlo Gombos>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Update the Symbian version for the user agent
https://bugs.webkit.org/show_bug.cgi?id=38389

Fixes a regression introduced by r58648. Ensure that the "Symbian" string
is only listed one time in the User Agent string.

In addition make an effort to align the User Agent string to already
released WebKit based products for Symbian.

  • Api/qwebpage.cpp: (QWebPage::userAgentForUrl):

May 22, 2010:

11:59 PM Changeset in webkit [60029] by mjs@apple.com
  • 3 edits in trunk/LayoutTests

2010-05-22 Maciej Stachowiak <mjs@apple.com>

Reviewed by Mark Rowe.

Fix fast/js/global-recursion-on-full-stack.html to no longer depend on where exactly the stack overflow occurs.
https://bugs.webkit.org/show_bug.cgi?id=39558

  • fast/js/global-recursion-on-full-stack-expected.txt:
  • fast/js/global-recursion-on-full-stack.html:
11:45 PM Changeset in webkit [60028] by jparent@chromium.org
  • 2 edits in trunk/WebCore

REGRESSION: xssAuditor tests failing in Chromium.
https://bugs.webkit.org/show_bug.cgi?id=39560

Reviewed by Adam Barth.

Follow up to r0014. Make if statement in V8 bindings match the one from jsc version.

  • bindings/v8/ScriptController.cpp:

(WebCore::ScriptController::evaluate):

7:11 PM Changeset in webkit [60027] by mjs@apple.com
  • 1 edit
    2 deletes in trunk/LayoutTests

2010-05-22 Maciej Stachowiak <mjs@apple.com>

Reviewed by Dan Bernstein.

Remove recently added test "arobens-test" because it is invalid
https://bugs.webkit.org/show_bug.cgi?id=39555


The test below was based on a false assuption (that document.write propagates exceptions)
and was testing for incorrect behavior. The newly added fast/dom/nested-script-exceptions.html
tests for the correct behavior.

  • inspector/arobens-test-expected.txt: Removed.
  • inspector/arobens-test.html: Removed.
5:34 PM Changeset in webkit [60026] by mjs@apple.com
  • 5 edits
    2 adds in trunk

REGRESSION(r59977): platform/mac/fast/AppleScript/001.html failure
https://bugs.webkit.org/show_bug.cgi?id=39531

Reviewed by Mark Rowe.

Revert r59977 and r59943. These changes caused some exceptions to no longer be
reported in the inspector; I can't tell what they were originally trying to fix
so I am not sure how to fix them other than by reverting.

WebCore:

Covered by existing test platform/mac/fast/AppleScript/001.html, and
also added fast/dom/nested-script-exceptions.html to demonstrate the wider
consequences of the original change.

  • bindings/js/ScriptController.cpp:

(WebCore::ScriptController::ScriptController):
(WebCore::ScriptController::evaluateInWorld):

  • bindings/js/ScriptController.h:

LayoutTests:

Unskipped the test that was broken, and also added a new test.

  • fast/dom/nested-script-exceptions-expected.txt: Added.
  • fast/dom/nested-script-exceptions.html: Added. Shows that inspector functionality

would break in a meaningful way if the reverted change was allowed to stand.

  • platform/mac/Skipped:
5:27 PM Changeset in webkit [60025] by eric@webkit.org
  • 2 edits
    1 add in trunk/WebCore

2010-05-22 Kwang Yul Seo <skyul@company100.net>

Reviewed by Eric Seidel.

[BREWMP] Add DragData
https://bugs.webkit.org/show_bug.cgi?id=39469

As BREW MP does not support dragging, add dummy implementation of DragData.

  • platform/DragData.h:
  • platform/brew/DragDataBrew.cpp: Added. (WebCore::DragData::canSmartReplace): (WebCore::DragData::containsColor): (WebCore::DragData::containsPlainText): (WebCore::DragData::asPlainText): (WebCore::DragData::asColor): (WebCore::DragData::createClipboard): (WebCore::DragData::containsCompatibleContent): (WebCore::DragData::containsURL): (WebCore::DragData::asURL): (WebCore::DragData::asFragment): (WebCore::DragData::asFilenames): (WebCore::DragData::containsFiles):
5:13 PM Changeset in webkit [60024] by eric@webkit.org
  • 1 edit
    1 add in trunk/WebCore

2010-05-22 Kwang Yul Seo <skyul@company100.net>

Reviewed by Eric Seidel.

[BREWMP] Add dummy Icon
https://bugs.webkit.org/show_bug.cgi?id=39468

Add dummy implementation of Icon.

  • platform/graphics/brew/IconBrew.cpp: Added. (WebCore::Icon::~Icon): (WebCore::Icon::createIconForFiles): (WebCore::Icon::paint):
4:46 PM Changeset in webkit [60023] by eric@webkit.org
  • 6 edits in trunk

2010-05-22 Justin Schuh <jschuh@chromium.org>

Reviewed by Nate Chapin.

Remove and simplify custom bindings for Node
https://bugs.webkit.org/show_bug.cgi?id=39467

Child manipulation methods now throw security exception instead of
not implemented exception.

  • http/tests/security/xss-DENIED-iframe-src-alias-expected.txt:

2010-05-22 Justin Schuh <jschuh@chromium.org>

Reviewed by Nate Chapin.

Remove and simplify custom bindings for Node
https://bugs.webkit.org/show_bug.cgi?id=39467

Custom bindings for nodeValue and textContent are no longer needed,
and child manipulators are simplified because origin checks were moved
out of the bindings by: http://trac.webkit.org/changeset/59866

  • bindings/js/JSNodeCustom.cpp: (WebCore::JSNode::insertBefore): (WebCore::JSNode::replaceChild): (WebCore::JSNode::removeChild): (WebCore::JSNode::appendChild):
  • bindings/v8/custom/V8NodeCustom.cpp: (WebCore::V8Node::insertBeforeCallback): (WebCore::V8Node::replaceChildCallback): (WebCore::V8Node::removeChildCallback): (WebCore::V8Node::appendChildCallback):
  • dom/Node.idl:
4:26 PM Changeset in webkit [60022] by eric@webkit.org
  • 4 edits in trunk/WebCore

2010-05-22 Justin Schuh <jschuh@chromium.org>

Reviewed by Nate Chapin.

Remove custom bindings for NamedNodeMap.setNamedItem and .setNamedItemNS
https://bugs.webkit.org/show_bug.cgi?id=39462

Custom bindings are no longer needed because origin checks were moved
out of the bindings by: http://trac.webkit.org/changeset/59866

Behavior isn't changed and is covered by existing tests.

  • bindings/js/JSNamedNodeMapCustom.cpp:
  • bindings/v8/custom/V8NamedNodeMapCustom.cpp:
  • dom/NamedNodeMap.idl:
3:50 PM Changeset in webkit [60021] by dbates@webkit.org
  • 1 edit in trunk/WebCore/ChangeLog

2010-05-22 Daniel Bates <dbates@rim.com>

Unreviewed; fix bug URL in change log.

Inadvertently referenced the wrong bug URL in the change log for change-set
60019 <http://trac.webkit.org/changeset/60019>. The bug URL should have been
<https://bugs.webkit.org/show_bug.cgi?id=39339> not <https://bugs.webkit.org/show_bug.cgi?id=39448>.

3:44 PM Changeset in webkit [60020] by abarth@webkit.org
  • 2 edits in trunk/WebKitTools

2010-05-22 Adam Barth <abarth@webkit.org>

Unreviewed.

Re-order Yong's email addresses because his gmail account is the one he
uses for bugs.webkit.org.

  • Scripts/webkitpy/common/config/committers.py:
3:42 PM Changeset in webkit [60019] by dbates@webkit.org
  • 8 edits
    1 delete in trunk/WebCore

2010-05-22 Daniel Bates <dbates@rim.com>

No review, rolling out 60017.
http://trac.webkit.org/changeset/60017
https://bugs.webkit.org/show_bug.cgi?id=39448

Rolling out since this broke the build on the Windows and Qt bots.
Need to look into this some more.

  • GNUmakefile.am:
  • WebCore.gypi:
  • WebCore.pro:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.xcodeproj/project.pbxproj:
  • bindings/ScriptControllerBase.h: Removed.
  • bindings/js/ScriptController.h: (WebCore::):
  • bindings/v8/ScriptController.h: (WebCore::):
3:15 PM Changeset in webkit [60018] by dbates@webkit.org
  • 1 edit in trunk/WebCore/ChangeLog

2010-05-22 Daniel Bates <dbates@rim.com>

Unreviewed; fix change log order.

Update-webkit failed to move my change log to the top of the file
before my commit in changeset 60017 <http://trac.webkit.org/changeset/60017>,
so I am manually moving it to the correct place.

3:08 PM Changeset in webkit [60017] by dbates@webkit.org
  • 8 edits
    1 add in trunk/WebCore

2010-05-22 Yong Li <yoli@rim.com>

Reviewed by Darin Adler.

Fix a crash when XHTMLMP is enabled. The frame pointer in Document
ctor can be null.
https://bugs.webkit.org/show_bug.cgi?id=39448

No new tests because it is obvious and it must be reproduced with
XHTMLMP enabled.

  • dom/Document.cpp: (WebCore::Document::Document):
3:04 PM Changeset in webkit [60016] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-22 Yong Li <yoli@rim.com>

Reviewed by Darin Adler.

Fix a crash when XHTMLMP is enabled. The frame pointer in Document
ctor can be null.
https://bugs.webkit.org/show_bug.cgi?id=39448

No new tests because it is obvious and it must be reproduced with
XHTMLMP enabled.

  • dom/Document.cpp: (WebCore::Document::Document):
2:40 PM Changeset in webkit [60015] by dbates@webkit.org
  • 2 edits
    1 add in trunk/WebKitTools

2010-05-22 Daniel Bates <dbates@rim.com>

Reviewed by Chris Jerdonek.

Add infrastructure to parse SVN property changes
https://bugs.webkit.org/show_bug.cgi?id=38885

Adds function VCSUtils::parseSvnDiffFooter to parse an SVN footer
that consists of one or more properties.

Note, the first line of an SVN footer begins with "Property changes on".

  • Scripts/VCSUtils.pm:
    • Added function parseSvnDiffFooter. Will use this function towards resolving Bug #39409 <https://bugs.webkit.org/show_bug.cgi?id=39409>.
    • Removed FIXME comment above function parseSvnProperty, since it is being used by parseSvnDiffFooter.
  • Scripts/webkitperl/VCSUtils_unittest/parseSvnDiffFooter.pl: Added.
    • Added unit tests.
1:50 PM Changeset in webkit [60014] by dbates@webkit.org
  • 8 edits
    3 adds in trunk

2010-05-22 Daniel Bates <dbates@rim.com>

Reviewed by Adam Barth.

REGRESSION (r56295): Can't create a new wave on Google Wave
https://bugs.webkit.org/show_bug.cgi?id=39249

Instead of just using the source code portion of a JavaScript URL to
detect an XSS attack, we now include the JavaScript URL schema. This
reduces the chance of a false positive by providing additional context.

Test: http/tests/security/xssAuditor/javascript-link-safe.html

  • WebCore.base.exp: Updated exported symbols as necessary.
  • bindings/ScriptControllerBase.cpp: (WebCore::ScriptController::executeScript): Added parameter shouldAllowXSS. (WebCore::ScriptController::executeIfJavaScriptURL): Ditto.
  • bindings/js/ScriptController.cpp: (WebCore::ScriptController::evaluateInWorld): Ditto. (WebCore::ScriptController::evaluate): Ditto. (WebCore::ScriptController::executeScriptInWorld): Ditto.
  • bindings/js/ScriptController.h: Added enum ShouldAllowXSS. (WebCore::):
  • bindings/v8/ScriptController.cpp: (WebCore::ScriptController::evaluate): Added parameter shouldAllowXSS.
  • bindings/v8/ScriptController.h: Added enum ShouldAllowXSS. (WebCore::):

2010-05-22 Daniel Bates <dbates@rim.com>

Reviewed by Adam Barth.

REGRESSION (r56295): Can't create a new wave on Google Wave
https://bugs.webkit.org/show_bug.cgi?id=39249

Added a test to ensure that we don't raise an alarm when the source code
portion of a JavaScript URL matches some substring of the page URL or
post data.

Our existing test coverage ensures that we raise an alarm when the entire
JavaScript URL matches some substring of the page URL or post data.

  • http/tests/security/xssAuditor/javascript-link-safe-expected.txt: Added.
  • http/tests/security/xssAuditor/javascript-link-safe.html: Added.
  • http/tests/security/xssAuditor/resources/javascript-link-safe.html: Added.
1:45 PM Changeset in webkit [60013] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-22 Jeremy Moskovich <jeremy@chromium.org>

Reviewed by Eric Seidel.

Document RenderObject::m_hasOverflowClip.

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

No new functionality, so no new tests.

  • rendering/RenderObject.h:
1:15 PM Changeset in webkit [60012] by eric@webkit.org
  • 1 edit
    1 add in trunk/WebCore

2010-05-22 Kwang Yul Seo <skyul@company100.net>

Reviewed by Eric Seidel.

[BREWMP] Add DragController
https://bugs.webkit.org/show_bug.cgi?id=39400

Add DragController for BREW MP.

  • page/brew/DragControllerBrew.cpp: Added. (WebCore::DragController::isCopyKeyDown): (WebCore::DragController::dragOperation): (WebCore::DragController::maxDragImageSize): (WebCore::DragController::cleanupAfterSystemDrag):
1:03 PM Changeset in webkit [60011] by eric@webkit.org
  • 6 edits in trunk

2010-05-22 Leandro Pereira <leandro@profusion.mobi>

Reviewed by Eric Seidel.

[EFL] Build fix (always compile libraries with -fPIC when compiler
is gcc; always define WTF_USE_PTHREADS).
http://webkit.org/b/39235

  • cmake/OptionsCommon.cmake:
  • cmake/OptionsEfl.cmake:
  • cmake/WebKitHelpers.cmake:

2010-05-22 Leandro Pereira <leandro@profusion.mobi>

Reviewed by Eric Seidel.

[EFL] Build fix (update source code lists).
http://webkit.org/b/39235

  • CMakeLists.txt:
12:12 PM Changeset in webkit [60010] by Martin Robinson
  • 5 edits in trunk

2010-05-22 Martin Robinson <mrobinson@igalia.com>

Reviewed by Xan Lopez.

[GTK] webkit_web_view_drag_end should call EventHandler::dragSourceEndedAt
https://bugs.webkit.org/show_bug.cgi?id=39465

Added a helper function for converting a GDK action bitmask into a DragOperation bitmask.

No new tests as behavior has not changed.

  • platform/gtk/ClipboardUtilitiesGtk.cpp: (WebCore::gdkDragActionToDragOperation): Added.
  • platform/gtk/ClipboardUtilitiesGtk.h:

2010-05-22 Martin Robinson <mrobinson@igalia.com>

Reviewed by Xan Lopez.

[GTK] webkit_web_view_drag_end should call EventHandler::dragSourceEndedAt
https://bugs.webkit.org/show_bug.cgi?id=39465

Properly call EventHandler::dragSourceEndedAt so that dragEnd events are processed in the DOM.
dragSourceEndedAt is responsible for calling the dragEnd DOM event as well as cleaning up assets
(such as the Clipboard) associated with the drag source.

  • webkit/webkitwebview.cpp: (webkit_web_view_drag_end): Remember to call dragSourceEndedAt here.
12:10 PM Changeset in webkit [60009] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-22 Patrick Gansterer <paroga@paroga.com>

Reviewed by Eric Seidel.

[Qt] Cleanup SharedBuffer::createWithContentsOfFile
https://bugs.webkit.org/show_bug.cgi?id=38917

  • platform/qt/SharedBufferQt.cpp: (WebCore::SharedBuffer::createWithContentsOfFile):
11:14 AM Changeset in webkit [60008] by Martin Robinson
  • 4 edits
    2 adds in trunk

2010-05-22 Martin Robinson <mrobinson@igalia.com>

Reviewed by Xan Lopez.

[GTK] WebKit/gtk/WebCoreSupport/DragClientGtk::startDrag should use the Clipboard::sourceOperation
https://bugs.webkit.org/show_bug.cgi?id=39459

Add ClipboardUtilitiesGtk, a container for GTK+/WebCore clipboard utility functions.
Initially add a function which converts a WebCore::DragOperation to a bitmask of
GdkDragActions.

No new tests, because behavior has not changed.

  • GNUmakefile.am:
  • platform/gtk/ClipboardUtilitiesGtk.cpp: Added. (WebCore::dragOperationToGdkDragActions): Added.
  • platform/gtk/ClipboardUtilitiesGtk.h: Added.

2010-05-22 Martin Robinson <mrobinson@igalia.com>

Reviewed by Xan Lopez.

[GTK] WebKit/gtk/WebCoreSupport/DragClientGtk::startDrag should use the Clipboard::sourceOperation
https://bugs.webkit.org/show_bug.cgi?id=39459

  • WebCoreSupport/DragClientGtk.cpp: (WebKit::DragClient::startDrag): Use Clipboard::sourceOperation instead of trying to figure out the GdkDragAction manually. The DOM may have changed the appropriate list of actions anyhow.
10:59 AM Changeset in webkit [60007] by eric@webkit.org
  • 2 edits in trunk/WebKitTools

2010-05-22 Eric Seidel <eric@webkit.org>

Unreviewed, fixing test results only.

Disable compositing tests on the commit-queue as a workaround for bug 38912
https://bugs.webkit.org/show_bug.cgi?id=39067

  • Scripts/webkitpy/tool/steps/steps_unittest.py:
    • Update test results after my previous change.
10:55 AM Changeset in webkit [60006] by eric@webkit.org
  • 2 edits in trunk/WebKitTools

2010-05-22 Eric Seidel <eric@webkit.org>

Unreviewed.

Disable compositing tests on the commit-queue as a workaround for bug 38912
https://bugs.webkit.org/show_bug.cgi?id=39067

  • Scripts/webkitpy/tool/steps/runtests.py:
    • Disable all of compositing, not just compositing/iframes
10:17 AM Changeset in webkit [60005] by tkent@chromium.org
  • 8 edits in trunk

2010-05-22 Kent Tamura <tkent@chromium.org>

Reviewed by Dimitri Glazkov.

[DRT/Chromium] Link resources and load Ahem font for Windows
https://bugs.webkit.org/show_bug.cgi?id=39473

  • WebKit.gyp: Add net and webkit resources for Windows. Copy AHEM.TTF to DumpRenderTree.exe directory.

2010-05-22 Kent Tamura <tkent@chromium.org>

Reviewed by Dimitri Glazkov.

[DRT/Chromium] Link resources and load Ahem font for Windows
https://bugs.webkit.org/show_bug.cgi?id=39473

  • DumpRenderTree/chromium/DumpRenderTree.cpp: (main): Call platformInit().
  • DumpRenderTree/chromium/TestShell.h: Declare platformInit(). It is not related to TestShell class, but the implementation of paltformInit() is placed at TestShell*.{cpp,mm}.
  • DumpRenderTree/chromium/TestShellGtk.cpp: (platformInit):
  • DumpRenderTree/chromium/TestShellMac.mm: (platformInit):
  • DumpRenderTree/chromium/TestShellWin.cpp: (platformInit):
    • Make stdout/stderr binary mode
    • Load Ahem font
8:58 AM Changeset in webkit [60004] by Simon Fraser
  • 1 edit
    10 moves
    1 add in trunk/LayoutTests

2010-05-22 Simon Fraser <Simon Fraser>

Add test results for Mac; no review.

Add platform-independent test results for new tiling tests, and move them into their own directory.

  • compositing/tiling/huge-layer-add-remove-child-expected.txt: Renamed from LayoutTests/platform/win/compositing/huge-layer-add-remove-child-expected.txt.
  • compositing/tiling/huge-layer-add-remove-child.html: Renamed from LayoutTests/compositing/huge-layer-add-remove-child.html.
  • compositing/tiling/huge-layer-expected.txt: Renamed from LayoutTests/platform/win/compositing/huge-layer-expected.txt.
  • compositing/tiling/huge-layer-resize-expected.txt: Renamed from LayoutTests/platform/win/compositing/huge-layer-resize-expected.txt.
  • compositing/tiling/huge-layer-resize.html: Renamed from LayoutTests/compositing/huge-layer-resize.html.
  • compositing/tiling/huge-layer-with-layer-children-expected.txt: Renamed from LayoutTests/platform/win/compositing/huge-layer-with-layer-children-expected.txt.
  • compositing/tiling/huge-layer-with-layer-children-resize-expected.txt: Renamed from LayoutTests/platform/win/compositing/huge-layer-with-layer-children-resize-expected.txt.
  • compositing/tiling/huge-layer-with-layer-children-resize.html: Renamed from LayoutTests/compositing/huge-layer-with-layer-children-resize.html.
  • compositing/tiling/huge-layer-with-layer-children.html: Renamed from LayoutTests/compositing/huge-layer-with-layer-children.html.
  • compositing/tiling/huge-layer.html: Renamed from LayoutTests/compositing/huge-layer.html.
8:48 AM Changeset in webkit [60003] by tkent@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed.

Skip platform/mac/fast/AppleScript/001.html
https://bugs.webkit.org/show_bug.cgi?id=39531

  • platform/mac/Skipped:
2:46 AM Changeset in webkit [60002] by Csaba Osztrogonác
  • 2 edits in trunk/LayoutTests

Unreviewed. Update GTK specific expected file after r59968.

  • platform/gtk/svg/css/getComputedStyle-basic-expected.txt: updated.
12:43 AM Changeset in webkit [60001] by abarth@webkit.org
  • 5 edits in trunk/WebCore

2010-05-21 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Parse attributes with HTML5 lexer
https://bugs.webkit.org/show_bug.cgi?id=39520

This patch lets the HTML5 lexer parse attributes, as in
<div attr="foo"></div>. This patch is on the critical path to running
the html5lib tests.

  • html/HTML5Lexer.cpp: (WebCore::HTML5Lexer::nextToken):
  • html/HTML5Lexer.h:
  • html/HTML5Token.h: (WebCore::HTML5Token::beginStartTag): (WebCore::HTML5Token::beginEndTag): (WebCore::HTML5Token::addNewAttribute): (WebCore::HTML5Token::appendToAttributeName): (WebCore::HTML5Token::appendToAttributeValue): (WebCore::HTML5Token::attributes):
  • html/HTML5Tokenizer.cpp: (WebCore::convertToOldStyle):

May 21, 2010:

11:44 PM Changeset in webkit [60000] by mrowe@apple.com
  • 1 edit in trunk/WebCore/ChangeLog

60,000!

  • ChangeLog: Point out revision 60,000.
11:44 PM Changeset in webkit [59999] by mrowe@apple.com
  • 1 edit in branches/safari-533-branch/WebCore/rendering/style/RenderStyle.h

Merge r59960.

11:43 PM Changeset in webkit [59998] by mrowe@apple.com
  • 2 edits in branches/safari-533-branch/WebCore/rendering

Merge r59959.

11:43 PM Changeset in webkit [59997] by mrowe@apple.com
  • 1 edit in branches/safari-533-branch/WebCore/rendering/RenderThemeSafari.cpp

Merge r59958.

11:43 PM Changeset in webkit [59996] by mrowe@apple.com
  • 57 edits in branches/safari-533-branch

Merge r59956.

11:39 PM Changeset in webkit [59995] by mrowe@apple.com
  • 4 edits
    1 add in branches/safari-533-branch/WebCore

Merge r59904.

11:39 PM Changeset in webkit [59994] by mrowe@apple.com
  • 10 edits in branches/safari-533-branch

Merge r59966.

11:39 PM Changeset in webkit [59993] by mrowe@apple.com
  • 3 edits
    4 adds in branches/safari-533-branch

Merge r59950.

11:39 PM Changeset in webkit [59992] by mrowe@apple.com
  • 2 edits in branches/safari-533-branch/WebCore

Merge r59897.

11:39 PM Changeset in webkit [59991] by mrowe@apple.com
  • 4 edits
    2 adds in branches/safari-533-branch

Merge r59962.

10:00 PM Changeset in webkit [59990] by mrowe@apple.com
  • 5 edits in trunk

Versioning.

9:58 PM Changeset in webkit [59989] by mrowe@apple.com
  • 1 copy in tags/Safari-534

New tag.

9:23 PM Changeset in webkit [59988] by hyatt@apple.com
  • 11 edits in trunk/WebCore

Preparation for support of column-span, which will be implemented using continuations. When a block splits an inline, a
continuation chain is created of the form inline -> anonymous block -> inline. The middle block is always anonymous. When a column-span
splits the blocks in a multi-column block, it will create a similar chain: block -> anonymous block -> block. Enclosing split elements
directly connect to their continuations, so their chains will look like inline -> inline or block -> block.

Reviewed by Dan Bernstein.

This patch changes the member variable in RenderBlock, m_inlineContinuation, to simply be m_continuation and loosens up the type on it
to RenderBoxModelObject. This reflects the fact that the continuation of the block can now be another block and isn't always simply an inline.

Some renames have been done for cleanup:

isInlineContinuation -> isInlineElementContinuation to emphasize that this is a split non-anonymous element.
inlineContinuation -> inlineElementContinuation, again to emphasize that the inline is not anonymous.


Some new methods have been added:

isBlockElementContinuation - just like isInlineElementContinuation but for split block elements.
blockElementContinuation - just like inlineElementContinuation but for split block elements.
virtualContinuation - A way to just walk an entire continuation chain of mixed types (blocks and inlines) using their common base class.
isAnonymousBlockContinuation - A method for asking if a RenderBlock is an anonymous block in the continuation chain (the guy in the middle).


Code that was specific to the anonymous blocks in a continuation chain has been patched to ask isAnonymousBlockContinuation, so that it won't
incorrectly apply to non-anonymous blocks in the future. Where possible, code that really didn't care about being an inline vs. a block has
been broadened so that it will work with block continuations as well.

  • accessibility/AccessibilityRenderObject.cpp:

(WebCore::lastChildConsideringContinuation):
(WebCore::startOfContinuations):
(WebCore::endOfContinuations):
(WebCore::childBeforeConsideringContinuations):
(WebCore::firstChildIsInlineContinuation):
(WebCore::AccessibilityRenderObject::nextSibling):
(WebCore::AccessibilityRenderObject::anchorElement):

  • rendering/InlineFlowBox.cpp:

(WebCore::InlineFlowBox::determineSpacingForFlowBoxes):
(WebCore::InlineFlowBox::paint):

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::RenderBlock):
(WebCore::RenderBlock::destroy):
(WebCore::RenderBlock::removeLeftoverAnonymousBlock):
(WebCore::RenderBlock::removeChild):
(WebCore::RenderBlock::paintObject):
(WebCore::RenderBlock::inlineElementContinuation):
(WebCore::RenderBlock::blockElementContinuation):
(WebCore::RenderBlock::addContinuationWithOutline):
(WebCore::RenderBlock::absoluteRects):
(WebCore::RenderBlock::absoluteQuads):
(WebCore::RenderBlock::rectWithOutlineForRepaint):
(WebCore::RenderBlock::hoverAncestor):
(WebCore::RenderBlock::updateDragState):
(WebCore::RenderBlock::outlineStyleForRepaint):
(WebCore::RenderBlock::updateHitTestResult):
(WebCore::RenderBlock::addFocusRingRects):

  • rendering/RenderBlock.h:

(WebCore::RenderBlock::continuation):
(WebCore::RenderBlock::setContinuation):
(WebCore::RenderBlock::virtualContinuation):
(WebCore::RenderBlock::isAnonymousBlockContinuation):

  • rendering/RenderInline.cpp:

(WebCore::RenderInline::inlineElementContinuation):
(WebCore::RenderInline::styleDidChange):
(WebCore::nextContinuation):
(WebCore::RenderInline::splitInlines):
(WebCore::RenderInline::positionForPoint):
(WebCore::RenderInline::updateHitTestResult):

  • rendering/RenderInline.h:

(WebCore::RenderInline::setContinuation):
(WebCore::RenderInline::virtualContinuation):

  • rendering/RenderObject.cpp:

(WebCore::RenderObject::getTextDecorationColors):

  • rendering/RenderObject.h:

(WebCore::RenderObject::isElementContinuation):
(WebCore::RenderObject::isInlineElementContinuation):
(WebCore::RenderObject::isBlockElementContinuation):
(WebCore::RenderObject::virtualContinuation):

  • rendering/RenderObjectChildList.cpp:

(WebCore::RenderObjectChildList::updateBeforeAfterContent):

  • rendering/RenderRubyBase.cpp:

(WebCore::RenderRubyBase::moveBlockChildren):

8:16 PM Changeset in webkit [59987] by jamesr@google.com
  • 5 edits
    186 copies
    191 adds in trunk/LayoutTests

2010-05-21 James Robinson <jamesr@chromium.org>

Unreviewed pixel rebaseline

Update pixel test expectations for LayoutTests/svg to account for Leopard-SnowLeopard differences
https://bugs.webkit.org/show_bug.cgi?id=39317

This patch fixes the pixel test expecations for svg/ tests to work on Snow Leopard.
Specifically, for each test that currently passes on Leopard with -p --tolerance=0,
but fails with small diffs on Snow Leopard, the old expectation is moved from
platform/mac to platform/mac-leopard and a new expecation is added in
platform/mac.

  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-36-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-36-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-37-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-37-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-37-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-37-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-39-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-39-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-39-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-39-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-40-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-40-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-40-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-40-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-41-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-41-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-41-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-41-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-46-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-46-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-46-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-46-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-60-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-60-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-60-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-60-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-61-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-61-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-61-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-61-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-62-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-62-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-62-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-62-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-63-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-63-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-63-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-63-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-65-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-65-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-65-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-65-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-66-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-66-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-66-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-66-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-67-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-67-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-67-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-67-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-68-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-68-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-68-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-68-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-69-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-69-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-69-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-69-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-70-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-70-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-70-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-70-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-77-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-77-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-77-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-77-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-78-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-78-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-78-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-78-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-80-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-80-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-80-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-80-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-81-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-81-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-81-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-81-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-83-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-83-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-83-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-83-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/coords-units-01-b-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/coords-units-01-b-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/coords-units-01-b-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/coords-units-01-b-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/coords-units-02-b-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/coords-units-02-b-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/coords-units-02-b-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/coords-units-02-b-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/coords-units-03-b-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/coords-units-03-b-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/coords-units-03-b-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/coords-units-03-b-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/filters-composite-02-b-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/filters-composite-02-b-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/filters-composite-02-b-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/filters-composite-02-b-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/filters-conv-01-f-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/filters-conv-01-f-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/filters-conv-01-f-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/filters-conv-01-f-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/filters-diffuse-01-f-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/filters-diffuse-01-f-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/filters-diffuse-01-f-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/filters-diffuse-01-f-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/filters-gauss-01-b-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/filters-gauss-01-b-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/filters-gauss-01-b-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/filters-gauss-01-b-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/filters-image-01-b-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/filters-image-01-b-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/filters-image-01-b-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/filters-image-01-b-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/filters-morph-01-f-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/filters-morph-01-f-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/filters-morph-01-f-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/filters-morph-01-f-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/filters-specular-01-f-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/filters-specular-01-f-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/filters-specular-01-f-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/filters-specular-01-f-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/fonts-elem-01-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/fonts-elem-01-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/fonts-elem-01-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/fonts-elem-01-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/fonts-elem-03-b-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/fonts-elem-03-b-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/fonts-elem-03-b-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/fonts-elem-03-b-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/fonts-elem-04-b-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/fonts-elem-04-b-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/fonts-elem-04-b-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/fonts-elem-04-b-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/fonts-elem-05-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/fonts-elem-05-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/fonts-elem-05-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/fonts-elem-05-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/fonts-elem-06-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/fonts-elem-06-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/fonts-elem-06-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/fonts-elem-06-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/fonts-elem-07-b-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/fonts-elem-07-b-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/fonts-elem-07-b-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/fonts-elem-07-b-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/linking-a-05-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/linking-a-05-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/linking-a-05-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/linking-a-05-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/linking-uri-01-b-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/linking-uri-01-b-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/linking-uri-01-b-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/linking-uri-01-b-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/linking-uri-02-b-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/linking-uri-02-b-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/linking-uri-02-b-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/linking-uri-02-b-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/linking-uri-03-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/linking-uri-03-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/linking-uri-03-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/linking-uri-03-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/pservers-grad-14-b-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/pservers-grad-14-b-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/pservers-grad-14-b-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/pservers-grad-14-b-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/script-handle-01-b-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/script-handle-01-b-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/script-handle-01-b-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/script-handle-01-b-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/struct-frag-06-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/struct-frag-06-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/struct-frag-06-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/struct-frag-06-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/text-text-04-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/text-text-04-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/text-text-04-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/text-text-04-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/text-text-05-t-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/text-text-05-t-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/text-text-05-t-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/text-text-05-t-expected.png.
  • platform/mac-leopard/svg/W3C-SVG-1.1/text-tselect-02-f-expected.checksum: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/text-tselect-02-f-expected.checksum.
  • platform/mac-leopard/svg/W3C-SVG-1.1/text-tselect-02-f-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-SVG-1.1/text-tselect-02-f-expected.png.
  • platform/mac-leopard/svg/batik: Added.
  • platform/mac-leopard/svg/batik/filters: Added.
  • platform/mac-leopard/svg/batik/filters/feTile-expected.checksum: Copied from LayoutTests/platform/mac/svg/batik/filters/feTile-expected.checksum.
  • platform/mac-leopard/svg/batik/filters/feTile-expected.png: Copied from LayoutTests/platform/mac/svg/batik/filters/feTile-expected.png.
  • platform/mac-leopard/svg/batik/paints: Added.
  • platform/mac-leopard/svg/batik/paints/patternRegions-expected.checksum: Copied from LayoutTests/platform/mac/svg/batik/paints/patternRegions-expected.checksum.
  • platform/mac-leopard/svg/batik/paints/patternRegions-expected.png: Copied from LayoutTests/platform/mac/svg/batik/paints/patternRegions-expected.png.
  • platform/mac-leopard/svg/batik/text: Added.
  • platform/mac-leopard/svg/batik/text/textAnchor3-expected.checksum: Copied from LayoutTests/platform/mac/svg/batik/text/textAnchor3-expected.checksum.
  • platform/mac-leopard/svg/batik/text/textAnchor3-expected.png: Copied from LayoutTests/platform/mac/svg/batik/text/textAnchor3-expected.png.
  • platform/mac-leopard/svg/batik/text/textLayout-expected.checksum: Copied from LayoutTests/platform/mac/svg/batik/text/textLayout-expected.checksum.
  • platform/mac-leopard/svg/batik/text/textLayout-expected.png: Copied from LayoutTests/platform/mac/svg/batik/text/textLayout-expected.png.
  • platform/mac-leopard/svg/batik/text/textLength-expected.checksum: Copied from LayoutTests/platform/mac/svg/batik/text/textLength-expected.checksum.
  • platform/mac-leopard/svg/batik/text/textLength-expected.png: Copied from LayoutTests/platform/mac/svg/batik/text/textLength-expected.png.
  • platform/mac-leopard/svg/batik/text/textOnPath-expected.checksum: Copied from LayoutTests/platform/mac/svg/batik/text/textOnPath-expected.checksum.
  • platform/mac-leopard/svg/batik/text/textOnPath-expected.png: Copied from LayoutTests/platform/mac/svg/batik/text/textOnPath-expected.png.
  • platform/mac-leopard/svg/batik/text/textOnPath2-expected.checksum: Copied from LayoutTests/platform/mac/svg/batik/text/textOnPath2-expected.checksum.
  • platform/mac-leopard/svg/batik/text/textOnPath2-expected.png: Copied from LayoutTests/platform/mac/svg/batik/text/textOnPath2-expected.png.
  • platform/mac-leopard/svg/batik/text/textOnPathSpaces-expected.checksum: Copied from LayoutTests/platform/mac/svg/batik/text/textOnPathSpaces-expected.checksum.
  • platform/mac-leopard/svg/batik/text/textOnPathSpaces-expected.png: Copied from LayoutTests/platform/mac/svg/batik/text/textOnPathSpaces-expected.png.
  • platform/mac-leopard/svg/batik/text/textPCDATA-expected.checksum: Copied from LayoutTests/platform/mac/svg/batik/text/textPCDATA-expected.checksum.
  • platform/mac-leopard/svg/batik/text/textPCDATA-expected.png: Copied from LayoutTests/platform/mac/svg/batik/text/textPCDATA-expected.png.
  • platform/mac-leopard/svg/batik/text/textProperties-expected.checksum: Copied from LayoutTests/platform/mac/svg/batik/text/textProperties-expected.checksum.
  • platform/mac-leopard/svg/batik/text/textProperties-expected.png: Copied from LayoutTests/platform/mac/svg/batik/text/textProperties-expected.png.
  • platform/mac-leopard/svg/batik/text/verticalTextOnPath-expected.checksum: Copied from LayoutTests/platform/mac/svg/batik/text/verticalTextOnPath-expected.checksum.
  • platform/mac-leopard/svg/batik/text/verticalTextOnPath-expected.png: Copied from LayoutTests/platform/mac/svg/batik/text/verticalTextOnPath-expected.png.
  • platform/mac-leopard/svg/batik/text/xmlSpace-expected.checksum: Copied from LayoutTests/platform/mac/svg/batik/text/xmlSpace-expected.checksum.
  • platform/mac-leopard/svg/batik/text/xmlSpace-expected.png: Copied from LayoutTests/platform/mac/svg/batik/text/xmlSpace-expected.png.
  • platform/mac-leopard/svg/custom/altglyph-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/altglyph-expected.checksum.
  • platform/mac-leopard/svg/custom/altglyph-expected.png: Copied from LayoutTests/platform/mac/svg/custom/altglyph-expected.png.
  • platform/mac-leopard/svg/custom/baseval-animval-equality-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/baseval-animval-equality-expected.checksum.
  • platform/mac-leopard/svg/custom/baseval-animval-equality-expected.png: Copied from LayoutTests/platform/mac/svg/custom/baseval-animval-equality-expected.png.
  • platform/mac-leopard/svg/custom/clip-path-referencing-use-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/clip-path-referencing-use-expected.checksum.
  • platform/mac-leopard/svg/custom/clip-path-referencing-use-expected.png: Copied from LayoutTests/platform/mac/svg/custom/clip-path-referencing-use-expected.png.
  • platform/mac-leopard/svg/custom/clip-path-referencing-use2-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/clip-path-referencing-use2-expected.checksum.
  • platform/mac-leopard/svg/custom/clip-path-referencing-use2-expected.png: Copied from LayoutTests/platform/mac/svg/custom/clip-path-referencing-use2-expected.png.
  • platform/mac-leopard/svg/custom/dominant-baseline-hanging-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/dominant-baseline-hanging-expected.checksum.
  • platform/mac-leopard/svg/custom/dominant-baseline-hanging-expected.png: Copied from LayoutTests/platform/mac/svg/custom/dominant-baseline-hanging-expected.png.
  • platform/mac-leopard/svg/custom/feComponentTransfer-Discrete-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/feComponentTransfer-Discrete-expected.checksum.
  • platform/mac-leopard/svg/custom/feComponentTransfer-Discrete-expected.png: Copied from LayoutTests/platform/mac/svg/custom/feComponentTransfer-Discrete-expected.png.
  • platform/mac-leopard/svg/custom/feComponentTransfer-Gamma-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/feComponentTransfer-Gamma-expected.checksum.
  • platform/mac-leopard/svg/custom/feComponentTransfer-Gamma-expected.png: Copied from LayoutTests/platform/mac/svg/custom/feComponentTransfer-Gamma-expected.png.
  • platform/mac-leopard/svg/custom/feComponentTransfer-Linear-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/feComponentTransfer-Linear-expected.checksum.
  • platform/mac-leopard/svg/custom/feComponentTransfer-Linear-expected.png: Copied from LayoutTests/platform/mac/svg/custom/feComponentTransfer-Linear-expected.png.
  • platform/mac-leopard/svg/custom/feComponentTransfer-Table-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/feComponentTransfer-Table-expected.checksum.
  • platform/mac-leopard/svg/custom/feComponentTransfer-Table-expected.png: Copied from LayoutTests/platform/mac/svg/custom/feComponentTransfer-Table-expected.png.
  • platform/mac-leopard/svg/custom/fill-fallback-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/fill-fallback-expected.checksum.
  • platform/mac-leopard/svg/custom/fill-fallback-expected.png: Copied from LayoutTests/platform/mac/svg/custom/fill-fallback-expected.png.
  • platform/mac-leopard/svg/custom/getPresentationAttribute-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/getPresentationAttribute-expected.checksum.
  • platform/mac-leopard/svg/custom/getPresentationAttribute-expected.png: Copied from LayoutTests/platform/mac/svg/custom/getPresentationAttribute-expected.png.
  • platform/mac-leopard/svg/custom/getsvgdocument-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/getsvgdocument-expected.checksum.
  • platform/mac-leopard/svg/custom/getsvgdocument-expected.png: Copied from LayoutTests/platform/mac/svg/custom/getsvgdocument-expected.png.
  • platform/mac-leopard/svg/custom/image-parent-translation-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/image-parent-translation-expected.checksum.
  • platform/mac-leopard/svg/custom/image-parent-translation-expected.png: Copied from LayoutTests/platform/mac/svg/custom/image-parent-translation-expected.png.
  • platform/mac-leopard/svg/custom/invalid-fill-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/invalid-fill-expected.checksum.
  • platform/mac-leopard/svg/custom/invalid-fill-expected.png: Copied from LayoutTests/platform/mac/svg/custom/invalid-fill-expected.png.
  • platform/mac-leopard/svg/custom/invalid-fill-hex-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/invalid-fill-hex-expected.checksum.
  • platform/mac-leopard/svg/custom/invalid-fill-hex-expected.png: Copied from LayoutTests/platform/mac/svg/custom/invalid-fill-hex-expected.png.
  • platform/mac-leopard/svg/custom/invisible-text-after-scrolling-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/invisible-text-after-scrolling-expected.checksum.
  • platform/mac-leopard/svg/custom/invisible-text-after-scrolling-expected.png: Copied from LayoutTests/platform/mac/svg/custom/invisible-text-after-scrolling-expected.png.
  • platform/mac-leopard/svg/custom/percentage-of-html-parent-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/percentage-of-html-parent-expected.checksum.
  • platform/mac-leopard/svg/custom/percentage-of-html-parent-expected.png: Copied from LayoutTests/platform/mac/svg/custom/percentage-of-html-parent-expected.png.
  • platform/mac-leopard/svg/custom/pointer-events-image-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/pointer-events-image-expected.checksum.
  • platform/mac-leopard/svg/custom/pointer-events-image-expected.png: Copied from LayoutTests/platform/mac/svg/custom/pointer-events-image-expected.png.
  • platform/mac-leopard/svg/custom/pointer-events-text-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/pointer-events-text-expected.checksum.
  • platform/mac-leopard/svg/custom/pointer-events-text-expected.png: Copied from LayoutTests/platform/mac/svg/custom/pointer-events-text-expected.png.
  • platform/mac-leopard/svg/custom/relative-sized-content-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/relative-sized-content-expected.checksum.
  • platform/mac-leopard/svg/custom/relative-sized-content-expected.png: Copied from LayoutTests/platform/mac/svg/custom/relative-sized-content-expected.png.
  • platform/mac-leopard/svg/custom/relative-sized-deep-shadow-tree-content-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/relative-sized-deep-shadow-tree-content-expected.checksum.
  • platform/mac-leopard/svg/custom/relative-sized-deep-shadow-tree-content-expected.png: Copied from LayoutTests/platform/mac/svg/custom/relative-sized-deep-shadow-tree-content-expected.png.
  • platform/mac-leopard/svg/custom/relative-sized-shadow-tree-content-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/relative-sized-shadow-tree-content-expected.checksum.
  • platform/mac-leopard/svg/custom/relative-sized-shadow-tree-content-expected.png: Copied from LayoutTests/platform/mac/svg/custom/relative-sized-shadow-tree-content-expected.png.
  • platform/mac-leopard/svg/custom/relative-sized-shadow-tree-content-with-symbol-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/relative-sized-shadow-tree-content-with-symbol-expected.checksum.
  • platform/mac-leopard/svg/custom/relative-sized-shadow-tree-content-with-symbol-expected.png: Copied from LayoutTests/platform/mac/svg/custom/relative-sized-shadow-tree-content-with-symbol-expected.png.
  • platform/mac-leopard/svg/custom/rootmost-svg-xy-attrs-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/rootmost-svg-xy-attrs-expected.checksum.
  • platform/mac-leopard/svg/custom/rootmost-svg-xy-attrs-expected.png: Copied from LayoutTests/platform/mac/svg/custom/rootmost-svg-xy-attrs-expected.png.
  • platform/mac-leopard/svg/custom/shape-rendering-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/shape-rendering-expected.checksum.
  • platform/mac-leopard/svg/custom/shape-rendering-expected.png: Copied from LayoutTests/platform/mac/svg/custom/shape-rendering-expected.png.
  • platform/mac-leopard/svg/custom/stroke-fallback-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/stroke-fallback-expected.checksum.
  • platform/mac-leopard/svg/custom/stroke-fallback-expected.png: Copied from LayoutTests/platform/mac/svg/custom/stroke-fallback-expected.png.
  • platform/mac-leopard/svg/custom/svg-float-border-padding-expected.checksum: Copied from LayoutTests/platform/mac/svg/custom/svg-float-border-padding-expected.checksum.
  • platform/mac-leopard/svg/custom/svg-float-border-padding-expected.png: Copied from LayoutTests/platform/mac/svg/custom/svg-float-border-padding-expected.png.
  • platform/mac-leopard/svg/filters/feGaussianBlur-expected.checksum: Copied from LayoutTests/platform/mac/svg/filters/feGaussianBlur-expected.checksum.
  • platform/mac-leopard/svg/filters/feGaussianBlur-expected.png: Copied from LayoutTests/platform/mac/svg/filters/feGaussianBlur-expected.png.
  • platform/mac-leopard/svg/filters/shadow-on-filter-expected.checksum: Copied from LayoutTests/platform/mac/svg/filters/shadow-on-filter-expected.checksum.
  • platform/mac-leopard/svg/filters/shadow-on-filter-expected.png: Copied from LayoutTests/platform/mac/svg/filters/shadow-on-filter-expected.png.
  • platform/mac-leopard/svg/hixie/links: Added.
  • platform/mac-leopard/svg/text/kerning-expected.checksum: Copied from LayoutTests/platform/mac/svg/text/kerning-expected.checksum.
  • platform/mac-leopard/svg/text/kerning-expected.png: Copied from LayoutTests/platform/mac/svg/text/kerning-expected.png.
  • platform/mac-leopard/svg/text/multichar-glyph-expected.checksum: Copied from LayoutTests/platform/mac/svg/text/multichar-glyph-expected.checksum.
  • platform/mac-leopard/svg/text/multichar-glyph-expected.png: Copied from LayoutTests/platform/mac/svg/text/multichar-glyph-expected.png.
  • platform/mac-leopard/svg/text/text-repaint-rects-expected.checksum: Copied from LayoutTests/platform/mac/svg/text/text-repaint-rects-expected.checksum.
  • platform/mac-leopard/svg/text/text-repaint-rects-expected.png: Copied from LayoutTests/platform/mac/svg/text/text-repaint-rects-expected.png.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-36-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-37-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-37-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-39-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-39-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-40-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-40-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-41-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-41-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-46-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-46-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-60-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-60-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-61-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-61-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-62-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-62-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-63-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-63-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-65-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-65-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-66-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-66-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-67-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-67-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-68-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-68-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-69-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-69-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-70-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-70-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-77-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-77-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-78-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-78-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-80-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-80-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-81-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-81-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-83-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/animate-elem-83-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/coords-units-01-b-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/coords-units-01-b-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/coords-units-02-b-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/coords-units-02-b-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/coords-units-03-b-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/coords-units-03-b-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/filters-composite-02-b-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/filters-composite-02-b-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/filters-conv-01-f-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/filters-conv-01-f-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/filters-diffuse-01-f-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/filters-diffuse-01-f-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/filters-gauss-01-b-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/filters-gauss-01-b-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/filters-image-01-b-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/filters-image-01-b-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/filters-morph-01-f-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/filters-morph-01-f-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/filters-specular-01-f-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/filters-specular-01-f-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/fonts-elem-01-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/fonts-elem-01-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/fonts-elem-03-b-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/fonts-elem-03-b-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/fonts-elem-04-b-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/fonts-elem-04-b-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/fonts-elem-05-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/fonts-elem-05-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/fonts-elem-06-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/fonts-elem-06-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/fonts-elem-07-b-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/fonts-elem-07-b-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/linking-a-05-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/linking-a-05-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/linking-uri-01-b-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/linking-uri-01-b-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/linking-uri-02-b-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/linking-uri-02-b-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/linking-uri-03-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/linking-uri-03-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/pservers-grad-14-b-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/pservers-grad-14-b-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/script-handle-01-b-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/script-handle-01-b-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/struct-frag-06-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/struct-frag-06-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/text-text-04-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/text-text-04-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/text-text-05-t-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/text-text-05-t-expected.png: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/text-tselect-02-f-expected.checksum: Replaced.
  • platform/mac/svg/W3C-SVG-1.1/text-tselect-02-f-expected.png: Replaced.
  • platform/mac/svg/batik/filters/feTile-expected.checksum: Replaced.
  • platform/mac/svg/batik/filters/feTile-expected.png: Replaced.
  • platform/mac/svg/batik/paints/patternRegions-expected.checksum: Replaced.
  • platform/mac/svg/batik/paints/patternRegions-expected.png: Replaced.
  • platform/mac/svg/batik/text/textAnchor3-expected.checksum: Replaced.
  • platform/mac/svg/batik/text/textAnchor3-expected.png: Replaced.
  • platform/mac/svg/batik/text/textLayout-expected.checksum: Replaced.
  • platform/mac/svg/batik/text/textLayout-expected.png: Replaced.
  • platform/mac/svg/batik/text/textLength-expected.checksum: Replaced.
  • platform/mac/svg/batik/text/textLength-expected.png: Replaced.
  • platform/mac/svg/batik/text/textOnPath-expected.checksum: Replaced.
  • platform/mac/svg/batik/text/textOnPath-expected.png: Replaced.
  • platform/mac/svg/batik/text/textOnPath2-expected.checksum: Replaced.
  • platform/mac/svg/batik/text/textOnPath2-expected.png: Replaced.
  • platform/mac/svg/batik/text/textOnPathSpaces-expected.checksum: Replaced.
  • platform/mac/svg/batik/text/textOnPathSpaces-expected.png: Replaced.
  • platform/mac/svg/batik/text/textPCDATA-expected.checksum: Replaced.
  • platform/mac/svg/batik/text/textPCDATA-expected.png: Replaced.
  • platform/mac/svg/batik/text/textProperties-expected.checksum: Replaced.
  • platform/mac/svg/batik/text/textProperties-expected.png: Replaced.
  • platform/mac/svg/batik/text/verticalTextOnPath-expected.checksum: Replaced.
  • platform/mac/svg/batik/text/verticalTextOnPath-expected.png: Replaced.
  • platform/mac/svg/batik/text/xmlSpace-expected.checksum: Replaced.
  • platform/mac/svg/batik/text/xmlSpace-expected.png: Replaced.
  • platform/mac/svg/custom/altglyph-expected.checksum: Replaced.
  • platform/mac/svg/custom/altglyph-expected.png: Replaced.
  • platform/mac/svg/custom/baseval-animval-equality-expected.checksum: Replaced.
  • platform/mac/svg/custom/baseval-animval-equality-expected.png: Replaced.
  • platform/mac/svg/custom/clip-path-referencing-use-expected.checksum: Replaced.
  • platform/mac/svg/custom/clip-path-referencing-use-expected.png: Replaced.
  • platform/mac/svg/custom/clip-path-referencing-use2-expected.checksum: Replaced.
  • platform/mac/svg/custom/clip-path-referencing-use2-expected.png: Replaced.
  • platform/mac/svg/custom/container-opacity-clip-viewBox-expected.checksum:
  • platform/mac/svg/custom/container-opacity-clip-viewBox-expected.png:
  • platform/mac/svg/custom/dominant-baseline-hanging-expected.checksum: Replaced.
  • platform/mac/svg/custom/dominant-baseline-hanging-expected.png: Replaced.
  • platform/mac/svg/custom/feComponentTransfer-Discrete-expected.checksum: Replaced.
  • platform/mac/svg/custom/feComponentTransfer-Discrete-expected.png: Replaced.
  • platform/mac/svg/custom/feComponentTransfer-Gamma-expected.checksum: Replaced.
  • platform/mac/svg/custom/feComponentTransfer-Gamma-expected.png: Replaced.
  • platform/mac/svg/custom/feComponentTransfer-Linear-expected.checksum: Replaced.
  • platform/mac/svg/custom/feComponentTransfer-Linear-expected.png: Replaced.
  • platform/mac/svg/custom/feComponentTransfer-Table-expected.checksum: Replaced.
  • platform/mac/svg/custom/feComponentTransfer-Table-expected.png: Replaced.
  • platform/mac/svg/custom/fill-fallback-expected.checksum: Replaced.
  • platform/mac/svg/custom/fill-fallback-expected.png: Replaced.
  • platform/mac/svg/custom/getPresentationAttribute-expected.checksum: Replaced.
  • platform/mac/svg/custom/getPresentationAttribute-expected.png: Replaced.
  • platform/mac/svg/custom/getsvgdocument-expected.checksum: Replaced.
  • platform/mac/svg/custom/getsvgdocument-expected.png: Replaced.
  • platform/mac/svg/custom/image-parent-translation-expected.checksum: Replaced.
  • platform/mac/svg/custom/image-parent-translation-expected.png: Replaced.
  • platform/mac/svg/custom/invalid-fill-expected.checksum: Replaced.
  • platform/mac/svg/custom/invalid-fill-expected.png: Replaced.
  • platform/mac/svg/custom/invalid-fill-hex-expected.checksum: Replaced.
  • platform/mac/svg/custom/invalid-fill-hex-expected.png: Replaced.
  • platform/mac/svg/custom/invisible-text-after-scrolling-expected.checksum: Replaced.
  • platform/mac/svg/custom/invisible-text-after-scrolling-expected.png: Replaced.
  • platform/mac/svg/custom/percentage-of-html-parent-expected.checksum: Replaced.
  • platform/mac/svg/custom/percentage-of-html-parent-expected.png: Replaced.
  • platform/mac/svg/custom/pointer-events-image-expected.checksum: Replaced.
  • platform/mac/svg/custom/pointer-events-image-expected.png: Replaced.
  • platform/mac/svg/custom/pointer-events-text-expected.checksum: Replaced.
  • platform/mac/svg/custom/pointer-events-text-expected.png: Replaced.
  • platform/mac/svg/custom/relative-sized-content-expected.checksum: Replaced.
  • platform/mac/svg/custom/relative-sized-content-expected.png: Replaced.
  • platform/mac/svg/custom/relative-sized-deep-shadow-tree-content-expected.checksum: Replaced.
  • platform/mac/svg/custom/relative-sized-deep-shadow-tree-content-expected.png: Replaced.
  • platform/mac/svg/custom/relative-sized-shadow-tree-content-expected.checksum: Replaced.
  • platform/mac/svg/custom/relative-sized-shadow-tree-content-expected.png: Replaced.
  • platform/mac/svg/custom/relative-sized-shadow-tree-content-with-symbol-expected.checksum: Replaced.
  • platform/mac/svg/custom/relative-sized-shadow-tree-content-with-symbol-expected.png: Replaced.
  • platform/mac/svg/custom/rootmost-svg-xy-attrs-expected.checksum: Replaced.
  • platform/mac/svg/custom/rootmost-svg-xy-attrs-expected.png: Replaced.
  • platform/mac/svg/custom/shape-rendering-expected.checksum: Replaced.
  • platform/mac/svg/custom/shape-rendering-expected.png: Replaced.
  • platform/mac/svg/custom/stroke-fallback-expected.checksum: Replaced.
  • platform/mac/svg/custom/stroke-fallback-expected.png: Replaced.
  • platform/mac/svg/custom/svg-float-border-padding-expected.checksum: Replaced.
  • platform/mac/svg/custom/svg-float-border-padding-expected.png: Replaced.
  • platform/mac/svg/filters/feGaussianBlur-expected.checksum: Replaced.
  • platform/mac/svg/filters/feGaussianBlur-expected.png: Replaced.
  • platform/mac/svg/filters/shadow-on-filter-expected.checksum: Replaced.
  • platform/mac/svg/filters/shadow-on-filter-expected.png: Replaced.
  • platform/mac/svg/hixie/links/003-broken-expected.checksum:
  • platform/mac/svg/hixie/links/003-broken-expected.png:
  • platform/mac/svg/text/kerning-expected.checksum: Replaced.
  • platform/mac/svg/text/kerning-expected.png: Replaced.
  • platform/mac/svg/text/multichar-glyph-expected.checksum: Replaced.
  • platform/mac/svg/text/multichar-glyph-expected.png: Replaced.
  • platform/mac/svg/text/text-repaint-rects-expected.checksum: Replaced.
  • platform/mac/svg/text/text-repaint-rects-expected.png: Replaced.
8:04 PM Changeset in webkit [59986] by eric@webkit.org
  • 3 edits in trunk/WebKitTools

2010-05-21 Eric Seidel <eric@webkit.org>

Unreviewed, EWS build fix only.

QueueStatusServer returns 500 error when EWS bots post empty queues
https://bugs.webkit.org/show_bug.cgi?id=39523

Mac python seems to have some built-in timezone support
however other python installs don't. So we need to ignore
timezones in our parsing.

Date parsing is tested by existing unit tests.

  • QueueStatusServer/handlers/updateworkitems.py:
    • Fix typo causing exception on server.
  • Scripts/webkitpy/common/net/bugzilla.py:
    • Fix exception due to python's lack of timezone support.
6:56 PM Changeset in webkit [59985] by eric@webkit.org
  • 4 edits in trunk/WebKitTools

2010-05-21 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

QueueStatusServer returns 500 error when EWS bots post empty queues
https://bugs.webkit.org/show_bug.cgi?id=39523

updateworkitems handler was raising an exception because
int() couldn't convert "" to a number.

I attempted to unit test this but we don't yet have a system by
which to load unit tests for appengine classes which depend on
google.appengine libraries which are not in the python default install.

We'll need to write a wrapper script to load those into the python path
and then run the unit test files.

  • QueueStatusServer/handlers/statusbubble.py:
    • Hide cr-win-ews since we're not currently running this bot.
  • QueueStatusServer/handlers/updateworkitems.py:
    • Fix the parsing logic to be able to understand "".
  • Scripts/webkitpy/common/net/statusserver.py:
    • Only log the work items posted to the server to the debug log channel.
6:55 PM Changeset in webkit [59984] by mrowe@apple.com
  • 8 edits
    2 adds in trunk

Teach WebKit2 to build in the Production configuration.

Reviewed by Oliver Hunt.

WebCore:

  • Configurations/WebCore.xcconfig: Pass -allowable_client to the linker in all configurations.

WebKit2:

  • Configurations/Base.xcconfig: Restrict WebKit2 to Intel, and disable the order file.
  • Configurations/BaseTarget.xcconfig: Fix the path to the umbrella framework directory.

This path is used to locate WebCore.framework, so it needs to be relative to WebKit.framework
rather than WebKit2.framework.

  • Configurations/WebKit2.xcconfig: Update the install path. Add an exports file.
  • Configurations/WebProcess.xcconfig: Update the install path.
  • WebKit2.xcodeproj/project.pbxproj: Add a Production configuration.
  • mac/WebKit2.exp: Added.
6:49 PM Changeset in webkit [59983] by oliver@apple.com
  • 2 edits in trunk/JavaScriptCore

"asm volatile" isn't valid outside of functions.

Reviewed by Gavin Barraclough.

6:23 PM Changeset in webkit [59982] by cmarrin@apple.com
  • 8 edits
    14 adds in trunk

Implement tiled compositing layers on Windows
https://bugs.webkit.org/show_bug.cgi?id=39461


This adds a tiling implementation similar (from a GraphicsLayer standpoint)
to the one for Mac. But where Mac uses the existing CATiledLayer, I've had
to implement one. If a layer is greater then 2k x 2k, I split it into an
array of 512 x 512 tiles. These tiles are positioned in the correct place
for the TiledLayer's content. When setNeedsDisplay is called on the TiledLayer
the tiles' setNeedDisplay methods are called. Each tile clips and positions the
CGContext appropriately and then renders the layer.


I also got rid of all frame()/setFrame() API to reduce the number of calls to
override for tiling.


Much optimization is possible. Most significantly right now all tiles are
rendered whether visible or not. We need to only render tiles that are
currently visible.

Tests: compositing/huge-layer-add-remove-child.html

compositing/huge-layer-resize.html
compositing/huge-layer-with-layer-children-resize.html
compositing/huge-layer-with-layer-children.html
compositing/huge-layer.html

6:17 PM Changeset in webkit [59981] by eric@webkit.org
  • 2 edits in trunk/WebKitTools

2010-05-21 Eric Seidel <eric@webkit.org>

Unreviewed, fixing the commit-queue to run again.

Make the EWSes report queue position in white bubbles
https://bugs.webkit.org/show_bug.cgi?id=39519

  • Scripts/webkitpy/common/net/statusserver.py:
    • Fix exception in _post_work_items_to_server when passed integers. Unfortunately we have no good way to mock the Browser object yet, and after several attempts I was not able to create a good one, so no tests. :(
5:55 PM Changeset in webkit [59980] by barraclough@apple.com
  • 4 edits in trunk/JavaScriptCore

Unreviewed build fix.

Interpreter fix following r59974.

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::privateExecute):

  • runtime/JSPropertyNameIterator.cpp:

(JSC::JSPropertyNameIterator::get):

  • runtime/JSPropertyNameIterator.h:
5:31 PM Changeset in webkit [59979] by ojan@chromium.org
  • 3 edits in trunk/WebKitTools

2010-05-14 Ojan Vafai <ojan@chromium.org>

Reviewed by Eric Seidel.

webkit-patch land --squash commits too much if branch is not up to date
https://bugs.webkit.org/show_bug.cgi?id=38852

  • Scripts/webkitpy/common/checkout/scm.py:
  • Scripts/webkitpy/common/checkout/scm_unittest.py:
5:27 PM Changeset in webkit [59978] by eric@webkit.org
  • 9 edits in trunk/WebKitTools

2010-05-21 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

Make the EWSes report queue position in white bubbles
https://bugs.webkit.org/show_bug.cgi?id=39519

This also fixes sorting of commit-queue patches
to be in order of patch attachment.
https://bugs.webkit.org/show_bug.cgi?id=33395

This makes the various Queues post what patches they are about to process
so that we can display a list of patches on status server pages, as well
as report queue position in status bubbles.

This is the first step towards creating a control-channel for the queues.
Next step will be to have them read back the patches in order from the server
and finally we will add the ability for the server to control that order.

  • Scripts/webkitpy/common/net/bugzilla.py:
    • Teach bugzilla how to parse attach_date for attachments.
  • Scripts/webkitpy/common/net/bugzilla_unittest.py:
    • Test that we're parsing dates correctly. This may have timezone issues for non-PST contributers, unsure.
  • Scripts/webkitpy/common/net/statusserver.py:
    • Post work items to the status server for display.
  • Scripts/webkitpy/tool/bot/patchcollection.py:
    • Call StatusServer.update_work_items
  • Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
    • Update unit test results now that we're posting work item list.
  • Scripts/webkitpy/tool/commands/queues.py:
    • Call StatusSever.update_work_items
    • Sort patches so that the server's list understands that the commit-queue gives priority to rollout patches.
    • I also fixed patch sorting per bug 33395 while I was here.
  • Scripts/webkitpy/tool/commands/queues_unittest.py:
    • Update results after update_work_items changes.
    • Test attachment sorting.
  • Scripts/webkitpy/tool/mocktool.py:
    • Add mock for update_work_items
5:00 PM Changeset in webkit [59977] by ggaren@apple.com
  • 3 edits
    2 adds in trunk

2010-05-21 Geoffrey Garen <ggaren@apple.com>

Reviewed by Darin Adler.

Fixed a typo in my last commit: Reset m_inEvaluateInWorld to
wasInEvaluateInWorld, rather than false, to avoid stomping the old value
when it's true.
https://bugs.webkit.org/show_bug.cgi?id=39518

  • bindings/js/ScriptController.cpp: (WebCore::ScriptController::evaluateInWorld):

2010-05-21 Geoffrey Garen <ggaren@apple.com>

Reviewed by Darin Adler.

Added a test for a typo in my last commit.
https://bugs.webkit.org/show_bug.cgi?id=39518

  • inspector/arobens-test-expected.txt: Added.
  • inspector/arobens-test.html: Added. Verify that the first script evaluation doesn't stomp over the bit of state saying that we're a nested script evaluation.
4:55 PM Changeset in webkit [59976] by jparent@chromium.org
  • 7 edits in trunk/LayoutTests

Unreviewed. Updating test expectations for chromium due to http://trac.webkit.org/changeset/59968.

  • platform/chromium-mac/fast/css/getComputedStyle/computed-style-expected.txt:
  • platform/chromium-mac/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
  • platform/chromium-mac/svg/css/getComputedStyle-basic-expected.txt:
  • platform/chromium-win/fast/css/getComputedStyle/computed-style-expected.txt:
  • platform/chromium-win/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
  • platform/chromium-win/svg/css/getComputedStyle-basic-expected.txt:
4:52 PM Changeset in webkit [59975] by barraclough@apple.com
  • 2 edits in trunk/JavaScriptCore

Interpreter fix following r59939.

Rubber stamped by Oliver Hunt.

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::privateExecute):

4:49 PM Changeset in webkit [59974] by barraclough@apple.com
  • 15 edits in trunk/JavaScriptCore

Unreviewed build fix.

Patch by David Levin <levin@chromium.org> on 2010-05-21

  • wtf/SizeLimits.cpp: Removed a check while I figure out how to write it properly.
4:37 PM Changeset in webkit [59973] by jparent@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed.

Updating Chromium test_expectations to mark drop-link test as failing in win debug.

  • platform/chromium/test_expectations.txt:
4:34 PM Changeset in webkit [59972] by victorw@chromium.org
  • 1 edit
    7 adds in trunk/LayoutTests

2010-05-21 Victor Wang <victorw@chromium.org>

Unreviewed. Update test expectations for chromium.

  • platform/chromium-linux/fast/lists/alpha-boundary-values-expected.checksum: Added.
  • platform/chromium-linux/fast/lists/alpha-boundary-values-expected.png: Added.
  • platform/chromium-mac/fast/lists/alpha-boundary-values-expected.checksum: Added.
  • platform/chromium-mac/fast/lists/alpha-boundary-values-expected.png: Added.
  • platform/chromium-win/fast/lists/alpha-boundary-values-expected.checksum: Added.
  • platform/chromium-win/fast/lists/alpha-boundary-values-expected.png: Added.
  • platform/chromium-win/fast/lists/alpha-boundary-values-expected.txt: Added.
4:19 PM Changeset in webkit [59971] by jparent@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed.

Updating Chromium test_expectations to mark two websockets tests as failing in debug mode.

  • platform/chromium/test_expectations.txt:
4:15 PM Changeset in webkit [59970] by levin@chromium.org
  • 2 edits in trunk/JavaScriptCore

Unreviewed build fix.

  • wtf/SizeLimits.cpp: Removed a check while I figure out how to write it properly.
4:06 PM Changeset in webkit [59969] by levin@chromium.org
  • 5 edits
    1 add in trunk/JavaScriptCore

Enforce size constraints on various data structures in JavaScriptCore/wtf.
https://bugs.webkit.org/show_bug.cgi?id=39327

Reviewed by Darin Adler.

I only modified the default build for OSX and Chromium's build file to include WTFCompileAsserts.cpp
as those should be sufficient to catch regressions on the size of the data structures.

  • JavaScriptCore.gypi: Added the WTFCompileAsserts.cpp file.
  • JavaScriptCore.xcodeproj/project.pbxproj: Added the WTFCompileAsserts.cpp file.
  • runtime/UString.cpp: Added a compile assert for UString size.
  • wtf/SizeLimits.cpp: Added compile asserts for data structures that didn't have cpp files.
  • wtf/text/StringImpl.cpp: Added a compile assert for StringImpl size.
3:45 PM Changeset in webkit [59968] by hyatt@apple.com
  • 11 edits in trunk

https://bugs.webkit.org/show_bug.cgi?id=39516, back end support for column-span property.

Reviewed by Dan Bernstein.

  • css/CSSComputedStyleDeclaration.cpp:

(WebCore::):
(WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue):

  • css/CSSParser.cpp:

(WebCore::CSSParser::parseValue):

  • css/CSSPropertyNames.in:
  • css/CSSStyleSelector.cpp:

(WebCore::CSSStyleSelector::applyProperty):

  • rendering/style/RenderStyle.h:

(WebCore::InheritedFlags::columnSpan):
(WebCore::InheritedFlags::setColumnSpan):
(WebCore::InheritedFlags::initialColumnSpan):

  • rendering/style/StyleMultiColData.cpp:

(WebCore::StyleMultiColData::StyleMultiColData):
(WebCore::StyleMultiColData::operator==):

  • rendering/style/StyleMultiColData.h:
3:31 PM Changeset in webkit [59967] by Csaba Osztrogonác
  • 2 edits in trunk/LayoutTests

Unreviewed. Skip failing test until fix.

[Qt] need an implementation of LayoutTestController::computedStyleIncludingVisitedInfo
https://bugs.webkit.org/show_bug.cgi?id=37759

The implementation of LayoutTestController::computedStyleIncludingVisitedInfo
is incorrect now, this bug was revealed by r59956.

  • platform/qt/Skipped: fast/history/self-is-visited.html skipped.
3:19 PM Changeset in webkit [59966] by jer.noble@apple.com
  • 10 edits in trunk

2010-05-21 Jer Noble <jer.noble@apple.com>

Reviewed by Anders Carlsson.

Disable full-screen video on Windows
https://bugs.webkit.org/show_bug.cgi?id=39506
rdar://problem/8012516


Disable full-screen video through MediaPlayerPrivateVisualContext since
we no longer use GWorlds and QuickTime's built in full-screen support.


Media layout tests updated with new expected results.


  • platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp: (WebCore::MediaPlayerPrivateQuickTimeVisualContext::supportsFullscreen):

2010-05-21 Jer Noble <jer.noble@apple.com>

Reviewed by Anders Carlsson.

Disable full-screen video on Windows
https://bugs.webkit.org/show_bug.cgi?id=39506
rdar://problem/8012516

Disable full-screen video through MediaPlayerPrivateVisualContext since
we no longer use GWorlds and QuickTime's built in full-screen support.


Media layout tests updated with new expected results.

  • platform/win/media/controls-after-reload-expected.txt:
  • platform/win/media/controls-drag-timebar-expected.txt:
  • platform/win/media/controls-strict-expected.txt:
  • platform/win/media/controls-styling-expected.txt:
  • platform/win/media/video-controls-rendering-expected.txt:
  • platform/win/media/video-display-toggle-expected.txt:
  • platform/win/media/video-no-audio-expected.txt:
3:02 PM Changeset in webkit [59965] by crogers@google.com
  • 3 edits in branches/audio/WebCore/audio

Make sure that AudioMixerInputNodes are properly reference-counted

3:02 PM Changeset in webkit [59964] by crogers@google.com
  • 2 edits in branches/audio/WebCore/audio

Make sure ConvolverNode keeps reference to its buffer

3:02 PM Changeset in webkit [59963] by crogers@google.com
  • 12 edits in branches/audio/WebCore/audio

More properly reference-count AudioBuffer objects

  • don't let them leak - they'll now be garbage collected
  • but release the memory used by the buffer early (when the context goes away)
2:49 PM Changeset in webkit [59962] by Simon Fraser
  • 4 edits
    2 adds in trunk

2010-05-21 Simon Fraser <Simon Fraser>

Reviewed by Dan Bernstein.

Avoid creating huge tiled layers with accelerated compositing
https://bugs.webkit.org/show_bug.cgi?id=39515

Constrain the size of huge composited layers, to avoid bad behavior. We only
need to do this if we detect that we need a tiled layer, since we'll make tiled
layers for elements over a certain size that need to draw already.

Constrain the size by attempting to shrink the longer dimension first.

Test: compositing/geometry/huge-layer.html

  • platform/graphics/mac/GraphicsLayerCA.h:
  • platform/graphics/mac/GraphicsLayerCA.mm: (WebCore::GraphicsLayerCA::updateLayerPosition): (WebCore::GraphicsLayerCA::updateLayerSize): (WebCore::GraphicsLayerCA::constrainedSize):
2:49 PM Rebaseline edited by victorw@chromium.org
(diff)
2:31 PM Changeset in webkit [59961] by barraclough@apple.com
  • 2 edits in trunk/JavaScriptCore

Fix interpreter build.

Reviewed by NOBODY (build fix).

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::privateExecute):

2:24 PM Changeset in webkit [59960] by hyatt@apple.com
  • 1 edit in trunk/WebCore/rendering/style/RenderStyle.h

Back out unintended RenderStyle checkin just now.

2:23 PM Changeset in webkit [59959] by hyatt@apple.com
  • 2 edits in trunk/WebCore/rendering

Fix Windows Chromium build bustage.

2:13 PM Changeset in webkit [59958] by hyatt@apple.com
  • 1 edit in trunk/WebCore/rendering/RenderThemeSafari.cpp

Fix Windows build bustage.

1:58 PM Changeset in webkit [59957] by alex
  • 2 edits in trunk/LayoutTests

2010-05-21 Alejandro G. Castro <alex@igalia.com>

Rubber-stamped by Xan Lopez.

Updated test results, added web sockets lines.

  • platform/gtk/fast/dom/prototype-inheritance-expected.txt:
  • platform/gtk/fast/dom/prototype-inheritance-expected.txt:
1:56 PM Changeset in webkit [59956] by hyatt@apple.com
  • 57 edits in trunk

WebCore: https://bugs.webkit.org/show_bug.cgi?id=39420, :visited not working with background-color.

Reviewed by Dan Bernstein.

Make the RenderStyle color accessors private. This forces callers to use visitedDependentColor
instead (or to make the decision to become friends of the RenderStyle class in order to get access
to the real style information).

Modified history/self-is-visited.html to also test background colors.

  • WebCore.base.exp:
  • accessibility/AccessibilityTable.cpp:

(WebCore::AccessibilityTable::isTableExposableThroughAccessibility):

  • accessibility/mac/AccessibilityObjectWrapper.mm:

(AXAttributeStringSetStyle):

  • css/CSSComputedStyleDeclaration.cpp:

(WebCore::CSSComputedStyleDeclaration::currentColorOrValidColor):

  • css/CSSComputedStyleDeclaration.h:
  • css/SVGCSSStyleSelector.cpp:

(WebCore::colorFromSVGColorCSSValue):

  • editing/ApplyStyleCommand.cpp:

(WebCore::ApplyStyleCommand::editingStyleAtPosition):
(WebCore::prepareEditingStyleToApplyAt):
(WebCore::removeStylesAddedByNode):
(WebCore::fontColorChangesComputedStyle):
(WebCore::ApplyStyleCommand::addInlineStyleIfNeeded):

  • editing/ApplyStyleCommand.h:

(WebCore::):

  • editing/CompositeEditCommand.cpp:

(WebCore::CompositeEditCommand::moveParagraphs):
(WebCore::CompositeEditCommand::breakOutOfEmptyListItem):

  • editing/DeleteButtonController.cpp:

(WebCore::isDeletableElement):

  • editing/DeleteSelectionCommand.cpp:

(WebCore::DeleteSelectionCommand::saveTypingStyleState):

  • editing/InsertParagraphSeparatorCommand.cpp:

(WebCore::InsertParagraphSeparatorCommand::calculateStyleBeforeInsertion):

  • editing/RemoveFormatCommand.cpp:

(WebCore::RemoveFormatCommand::doApply):

  • editing/ReplaceSelectionCommand.cpp:

(WebCore::handleStyleSpansBeforeInsertion):
(WebCore::ReplaceSelectionCommand::handleStyleSpans):
(WebCore::ReplaceSelectionCommand::doApply):

  • editing/SelectionController.cpp:

(WebCore::SelectionController::paintCaret):

  • editing/markup.cpp:

(WebCore::createMarkup):

  • page/animation/AnimationBase.cpp:

(WebCore::AnimationBase::ensurePropertyMap):

  • page/animation/AnimationBase.h:
  • page/mac/FrameMac.mm:

(WebCore::Frame::fontAttributesForSelectionStart):

  • rendering/EllipsisBox.cpp:

(WebCore::EllipsisBox::paint):
(WebCore::EllipsisBox::paintSelection):

  • rendering/InlineTextBox.cpp:

(WebCore::InlineTextBox::paint):

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::styleDidChange):
(WebCore::RenderBox::paintRootBoxDecorations):
(WebCore::RenderBox::paintBoxDecorationsWithSize):

  • rendering/RenderBoxModelObject.cpp:

(WebCore::RenderBoxModelObject::paintBoxShadow):

  • rendering/RenderFieldset.cpp:

(WebCore::RenderFieldset::paintBoxDecorations):

  • rendering/RenderFileUploadControl.cpp:

(WebCore::RenderFileUploadControl::paintObject):

  • rendering/RenderFrameSet.cpp:

(WebCore::RenderFrameSet::paintColumnBorder):
(WebCore::RenderFrameSet::paintRowBorder):

  • rendering/RenderImage.cpp:

(WebCore::RenderImage::paintReplaced):

  • rendering/RenderLayerBacking.cpp:

(WebCore::RenderLayerBacking::rendererBackgroundColor):

  • rendering/RenderLayerBacking.h:
  • rendering/RenderListBox.cpp:

(WebCore::RenderListBox::paintItemForeground):
(WebCore::RenderListBox::paintItemBackground):

  • rendering/RenderListMarker.cpp:

(WebCore::RenderListMarker::paint):

  • rendering/RenderMenuList.cpp:

(WebCore::RenderMenuList::itemStyle):
(WebCore::RenderMenuList::itemBackgroundColor):
(WebCore::RenderMenuList::menuStyle):

  • rendering/RenderObject.cpp:

(WebCore::RenderObject::selectionBackgroundColor):
(WebCore::RenderObject::selectionForegroundColor):

  • rendering/RenderSVGResource.cpp:

(WebCore::RenderSVGResource::adjustColorForPseudoRules):
(WebCore::RenderSVGResource::fillPaintingResource):
(WebCore::RenderSVGResource::strokePaintingResource):

  • rendering/RenderSVGResource.h:
  • rendering/RenderTable.cpp:

(WebCore::RenderTable::paintBoxDecorations):

  • rendering/RenderTable.h:

(WebCore::RenderTable::bgColor):

  • rendering/RenderTableCell.cpp:

(WebCore::RenderTableCell::paintBackgroundsBehindCell):

  • rendering/RenderTextControl.cpp:

(WebCore::RenderTextControl::adjustInnerTextStyle):

  • rendering/RenderTextControlSingleLine.cpp:

(WebCore::RenderTextControlSingleLine::menuStyle):

  • rendering/RenderTheme.cpp:

(WebCore::RenderTheme::isControlStyled):

  • rendering/RenderThemeMac.mm:

(WebCore::RenderThemeMac::paintMenuListButton):

  • rendering/RenderTreeAsText.cpp:

(WebCore::RenderTreeAsText::writeRenderObject):
(WebCore::write):

  • rendering/RenderTreeAsText.h:
  • rendering/SVGInlineTextBox.cpp:

(WebCore::SVGInlineTextBox::paintSelection):

  • rendering/SVGRenderTreeAsText.cpp:

(WebCore::writeRenderSVGTextBox):

  • rendering/style/RenderStyle.cpp:

(WebCore::RenderStyle::colorIncludingFallback):
(WebCore::RenderStyle::visitedDependentColor):

  • rendering/style/RenderStyle.h:

(WebCore::):
(WebCore::InheritedFlags::hasBackground):
(WebCore::InheritedFlags::borderLeftStyle):
(WebCore::InheritedFlags::borderRightStyle):
(WebCore::InheritedFlags::borderTopStyle):
(WebCore::InheritedFlags::borderBottomStyle):
(WebCore::InheritedFlags::textShadow):
(WebCore::InheritedFlags::textStrokeWidth):
(WebCore::InheritedFlags::hasNormalColumnGap):
(WebCore::InheritedFlags::borderLeftColor):
(WebCore::InheritedFlags::borderRightColor):
(WebCore::InheritedFlags::borderTopColor):
(WebCore::InheritedFlags::borderBottomColor):
(WebCore::InheritedFlags::backgroundColor):
(WebCore::InheritedFlags::color):
(WebCore::InheritedFlags::columnRuleColor):
(WebCore::InheritedFlags::outlineColor):
(WebCore::InheritedFlags::textFillColor):
(WebCore::InheritedFlags::textStrokeColor):

  • svg/SVGAnimationElement.cpp:

(WebCore::adjustForCurrentColor):

WebKit/mac: https://bugs.webkit.org/show_bug.cgi?id=39420

Reviewed by Dan Bernstein.

Make sure everyone who needs to is using visitedDependentColor rather than accessing styles
directly.

  • Misc/WebNSAttributedStringExtras.mm:

(+[NSAttributedString _web_attributedStringFromRange:]):

  • WebView/WebFrame.mm:

(-[WebFrame _bodyBackgroundColor]):

1:52 PM Changeset in webkit [59955] by ggaren@apple.com
  • 17 edits
    1 copy in trunk/JavaScriptCore

2010-05-21 Geoffrey Garen <ggaren@apple.com>

Reviewed by Gavin Barraclough.

Split out JITCall32_64.cpp, and tightened up some #ifdefs in the hopes
of improving compile times.
https://bugs.webkit.org/show_bug.cgi?id=39507

  • JavaScriptCore.xcodeproj/project.pbxproj:
  • jit/JIT.cpp:
  • jit/JITArithmetic.cpp:
  • jit/JITArithmetic32_64.cpp:
  • jit/JITCall.cpp:
  • jit/JITCall32_64.cpp: Copied from jit/JITCall.cpp.
  • jit/JITOpcodes.cpp:
  • jit/JITOpcodes32_64.cpp:
  • jit/JITPropertyAccess.cpp:
  • jit/JITPropertyAccess32_64.cpp:
  • jit/JITStubs.cpp:
1:47 PM Changeset in webkit [59954] by chang.shu@nokia.com
  • 6 edits
    991 adds in trunk/LayoutTests

2010-05-14 Chang Shu <chang.shu@nokia.com>

Reviewed by Eric Seidel.

Import Philip Taylor's HTML5 <canavs> test suite from
http://philip.html5.org/tests/canvas/suite/tests. These
test cases are skipped for now.
https://bugs.webkit.org/show_bug.cgi?id=20553

  • fast/canvas/philip: Added.
  • fast/canvas/philip/fonts: Added.
  • fast/canvas/philip/fonts/CanvasTest.sfd: Added.
  • fast/canvas/philip/fonts/CanvasTest.ttf: Added.
  • fast/canvas/philip/images: Added.
  • fast/canvas/philip/images/anim-gr.gif: Added.
  • fast/canvas/philip/images/anim-gr.png: Added.
  • fast/canvas/philip/images/anim-poster-gr.png: Added.
  • fast/canvas/philip/images/background.png: Added.
  • fast/canvas/philip/images/broken.png: Added.
  • fast/canvas/philip/images/ggrr-256x256.png: Added.
  • fast/canvas/philip/images/green-16x16.png: Added.
  • fast/canvas/philip/images/green-1x1.png: Added.
  • fast/canvas/philip/images/green-256x256.png: Added.
  • fast/canvas/philip/images/green-2x2.png: Added.
  • fast/canvas/philip/images/green.png: Added.
  • fast/canvas/philip/images/grgr-256x256.png: Added.
  • fast/canvas/philip/images/red-16x16.png: Added.
  • fast/canvas/philip/images/red.png: Added.
  • fast/canvas/philip/images/redtransparent.png: Added.
  • fast/canvas/philip/images/rgrg-256x256.png: Added.
  • fast/canvas/philip/images/rrgg-256x256.png: Added.
  • fast/canvas/philip/images/transparent.png: Added.
  • fast/canvas/philip/images/transparent50.png: Added.
  • fast/canvas/philip/images/yellow.png: Added.
  • fast/canvas/philip/images/yellow75.png: Added.
  • fast/canvas/philip/tests: Added.
  • fast/canvas/philip/tests.css: Added.
  • fast/canvas/philip/tests/.reportgen.html.swp: Added.
  • fast/canvas/philip/tests/.reportgen.js.swp: Added.
  • fast/canvas/philip/tests/2d.canvas.readonly.html: Added.
  • fast/canvas/philip/tests/2d.canvas.reference.html: Added.
  • fast/canvas/philip/tests/2d.clearRect.basic.html: Added.
  • fast/canvas/philip/tests/2d.clearRect.clip.html: Added.
  • fast/canvas/philip/tests/2d.clearRect.globalalpha.html: Added.
  • fast/canvas/philip/tests/2d.clearRect.globalcomposite.html: Added.
  • fast/canvas/philip/tests/2d.clearRect.negative.html: Added.
  • fast/canvas/philip/tests/2d.clearRect.nonfinite.html: Added.
  • fast/canvas/philip/tests/2d.clearRect.path.html: Added.
  • fast/canvas/philip/tests/2d.clearRect.shadow.html: Added.
  • fast/canvas/philip/tests/2d.clearRect.transform.html: Added.
  • fast/canvas/philip/tests/2d.clearRect.zero.html: Added.
  • fast/canvas/philip/tests/2d.composite.canvas.copy.html: Added.
  • fast/canvas/philip/tests/2d.composite.canvas.copy.png: Added.
  • fast/canvas/philip/tests/2d.composite.canvas.destination-atop.html: Added.
  • fast/canvas/philip/tests/2d.composite.canvas.destination-atop.png: Added.
  • fast/canvas/philip/tests/2d.composite.canvas.destination-in.html: Added.
  • fast/canvas/philip/tests/2d.composite.canvas.destination-in.png: Added.
  • fast/canvas/philip/tests/2d.composite.canvas.destination-out.html: Added.
  • fast/canvas/philip/tests/2d.composite.canvas.destination-out.png: Added.
  • fast/canvas/philip/tests/2d.composite.canvas.destination-over.html: Added.
  • fast/canvas/philip/tests/2d.composite.canvas.destination-over.png: Added.
  • fast/canvas/philip/tests/2d.composite.canvas.lighter.html: Added.
  • fast/canvas/philip/tests/2d.composite.canvas.lighter.png: Added.
  • fast/canvas/philip/tests/2d.composite.canvas.source-atop.html: Added.
  • fast/canvas/philip/tests/2d.composite.canvas.source-atop.png: Added.
  • fast/canvas/philip/tests/2d.composite.canvas.source-in.html: Added.
  • fast/canvas/philip/tests/2d.composite.canvas.source-in.png: Added.
  • fast/canvas/philip/tests/2d.composite.canvas.source-out.html: Added.
  • fast/canvas/philip/tests/2d.composite.canvas.source-out.png: Added.
  • fast/canvas/philip/tests/2d.composite.canvas.source-over.html: Added.
  • fast/canvas/philip/tests/2d.composite.canvas.source-over.png: Added.
  • fast/canvas/philip/tests/2d.composite.canvas.xor.html: Added.
  • fast/canvas/philip/tests/2d.composite.canvas.xor.png: Added.
  • fast/canvas/philip/tests/2d.composite.clip.copy.html: Added.
  • fast/canvas/philip/tests/2d.composite.clip.destination-atop.html: Added.
  • fast/canvas/philip/tests/2d.composite.clip.destination-in.html: Added.
  • fast/canvas/philip/tests/2d.composite.clip.destination-out.html: Added.
  • fast/canvas/philip/tests/2d.composite.clip.destination-over.html: Added.
  • fast/canvas/philip/tests/2d.composite.clip.lighter.html: Added.
  • fast/canvas/philip/tests/2d.composite.clip.source-atop.html: Added.
  • fast/canvas/philip/tests/2d.composite.clip.source-in.html: Added.
  • fast/canvas/philip/tests/2d.composite.clip.source-out.html: Added.
  • fast/canvas/philip/tests/2d.composite.clip.source-over.html: Added.
  • fast/canvas/philip/tests/2d.composite.clip.xor.html: Added.
  • fast/canvas/philip/tests/2d.composite.globalAlpha.canvas.html: Added.
  • fast/canvas/philip/tests/2d.composite.globalAlpha.canvaspattern.html: Added.
  • fast/canvas/philip/tests/2d.composite.globalAlpha.default.html: Added.
  • fast/canvas/philip/tests/2d.composite.globalAlpha.fill.html: Added.
  • fast/canvas/philip/tests/2d.composite.globalAlpha.image.html: Added.
  • fast/canvas/philip/tests/2d.composite.globalAlpha.imagepattern.html: Added.
  • fast/canvas/philip/tests/2d.composite.globalAlpha.invalid.html: Added.
  • fast/canvas/philip/tests/2d.composite.globalAlpha.range.html: Added.
  • fast/canvas/philip/tests/2d.composite.image.copy.html: Added.
  • fast/canvas/philip/tests/2d.composite.image.copy.png: Added.
  • fast/canvas/philip/tests/2d.composite.image.destination-atop.html: Added.
  • fast/canvas/philip/tests/2d.composite.image.destination-atop.png: Added.
  • fast/canvas/philip/tests/2d.composite.image.destination-in.html: Added.
  • fast/canvas/philip/tests/2d.composite.image.destination-in.png: Added.
  • fast/canvas/philip/tests/2d.composite.image.destination-out.html: Added.
  • fast/canvas/philip/tests/2d.composite.image.destination-out.png: Added.
  • fast/canvas/philip/tests/2d.composite.image.destination-over.html: Added.
  • fast/canvas/philip/tests/2d.composite.image.destination-over.png: Added.
  • fast/canvas/philip/tests/2d.composite.image.lighter.html: Added.
  • fast/canvas/philip/tests/2d.composite.image.lighter.png: Added.
  • fast/canvas/philip/tests/2d.composite.image.source-atop.html: Added.
  • fast/canvas/philip/tests/2d.composite.image.source-atop.png: Added.
  • fast/canvas/philip/tests/2d.composite.image.source-in.html: Added.
  • fast/canvas/philip/tests/2d.composite.image.source-in.png: Added.
  • fast/canvas/philip/tests/2d.composite.image.source-out.html: Added.
  • fast/canvas/philip/tests/2d.composite.image.source-out.png: Added.
  • fast/canvas/philip/tests/2d.composite.image.source-over.html: Added.
  • fast/canvas/philip/tests/2d.composite.image.source-over.png: Added.
  • fast/canvas/philip/tests/2d.composite.image.xor.html: Added.
  • fast/canvas/philip/tests/2d.composite.image.xor.png: Added.
  • fast/canvas/philip/tests/2d.composite.operation.casesensitive.html: Added.
  • fast/canvas/philip/tests/2d.composite.operation.clear.html: Added.
  • fast/canvas/philip/tests/2d.composite.operation.darker.html: Added.
  • fast/canvas/philip/tests/2d.composite.operation.default.html: Added.
  • fast/canvas/philip/tests/2d.composite.operation.get.html: Added.
  • fast/canvas/philip/tests/2d.composite.operation.highlight.html: Added.
  • fast/canvas/philip/tests/2d.composite.operation.nullsuffix.html: Added.
  • fast/canvas/philip/tests/2d.composite.operation.over.html: Added.
  • fast/canvas/philip/tests/2d.composite.operation.unrecognised.html: Added.
  • fast/canvas/philip/tests/2d.composite.solid.copy.html: Added.
  • fast/canvas/philip/tests/2d.composite.solid.copy.png: Added.
  • fast/canvas/philip/tests/2d.composite.solid.destination-atop.html: Added.
  • fast/canvas/philip/tests/2d.composite.solid.destination-atop.png: Added.
  • fast/canvas/philip/tests/2d.composite.solid.destination-in.html: Added.
  • fast/canvas/philip/tests/2d.composite.solid.destination-in.png: Added.
  • fast/canvas/philip/tests/2d.composite.solid.destination-out.html: Added.
  • fast/canvas/philip/tests/2d.composite.solid.destination-out.png: Added.
  • fast/canvas/philip/tests/2d.composite.solid.destination-over.html: Added.
  • fast/canvas/philip/tests/2d.composite.solid.destination-over.png: Added.
  • fast/canvas/philip/tests/2d.composite.solid.lighter.html: Added.
  • fast/canvas/philip/tests/2d.composite.solid.lighter.png: Added.
  • fast/canvas/philip/tests/2d.composite.solid.source-atop.html: Added.
  • fast/canvas/philip/tests/2d.composite.solid.source-atop.png: Added.
  • fast/canvas/philip/tests/2d.composite.solid.source-in.html: Added.
  • fast/canvas/philip/tests/2d.composite.solid.source-in.png: Added.
  • fast/canvas/philip/tests/2d.composite.solid.source-out.html: Added.
  • fast/canvas/philip/tests/2d.composite.solid.source-out.png: Added.
  • fast/canvas/philip/tests/2d.composite.solid.source-over.html: Added.
  • fast/canvas/philip/tests/2d.composite.solid.source-over.png: Added.
  • fast/canvas/philip/tests/2d.composite.solid.xor.html: Added.
  • fast/canvas/philip/tests/2d.composite.solid.xor.png: Added.
  • fast/canvas/philip/tests/2d.composite.transparent.copy.html: Added.
  • fast/canvas/philip/tests/2d.composite.transparent.copy.png: Added.
  • fast/canvas/philip/tests/2d.composite.transparent.destination-atop.html: Added.
  • fast/canvas/philip/tests/2d.composite.transparent.destination-atop.png: Added.
  • fast/canvas/philip/tests/2d.composite.transparent.destination-in.html: Added.
  • fast/canvas/philip/tests/2d.composite.transparent.destination-in.png: Added.
  • fast/canvas/philip/tests/2d.composite.transparent.destination-out.html: Added.
  • fast/canvas/philip/tests/2d.composite.transparent.destination-out.png: Added.
  • fast/canvas/philip/tests/2d.composite.transparent.destination-over.html: Added.
  • fast/canvas/philip/tests/2d.composite.transparent.destination-over.png: Added.
  • fast/canvas/philip/tests/2d.composite.transparent.lighter.html: Added.
  • fast/canvas/philip/tests/2d.composite.transparent.lighter.png: Added.
  • fast/canvas/philip/tests/2d.composite.transparent.source-atop.html: Added.
  • fast/canvas/philip/tests/2d.composite.transparent.source-atop.png: Added.
  • fast/canvas/philip/tests/2d.composite.transparent.source-in.html: Added.
  • fast/canvas/philip/tests/2d.composite.transparent.source-in.png: Added.
  • fast/canvas/philip/tests/2d.composite.transparent.source-out.html: Added.
  • fast/canvas/philip/tests/2d.composite.transparent.source-out.png: Added.
  • fast/canvas/philip/tests/2d.composite.transparent.source-over.html: Added.
  • fast/canvas/philip/tests/2d.composite.transparent.source-over.png: Added.
  • fast/canvas/philip/tests/2d.composite.transparent.xor.html: Added.
  • fast/canvas/philip/tests/2d.composite.transparent.xor.png: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.fill.copy.html: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.fill.copy.png: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.fill.destination-atop.html: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.fill.destination-atop.png: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.fill.destination-in.html: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.fill.destination-in.png: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.fill.source-in.html: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.fill.source-in.png: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.fill.source-out.html: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.fill.source-out.png: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.image.copy.html: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.image.copy.png: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.image.destination-atop.html: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.image.destination-atop.png: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.image.destination-in.html: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.image.destination-in.png: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.image.source-in.html: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.image.source-in.png: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.image.source-out.html: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.image.source-out.png: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.nocontext.copy.html: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.nocontext.copy.png: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.nocontext.destination-atop.html: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.nocontext.destination-atop.png: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.nocontext.destination-in.html: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.nocontext.destination-in.png: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.nocontext.source-in.html: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.nocontext.source-in.png: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.nocontext.source-out.html: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.nocontext.source-out.png: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.pattern.copy.html: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.pattern.copy.png: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.pattern.destination-atop.html: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.pattern.destination-atop.png: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.pattern.destination-in.html: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.pattern.destination-in.png: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.pattern.source-in.html: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.pattern.source-in.png: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.pattern.source-out.html: Added.
  • fast/canvas/philip/tests/2d.composite.uncovered.pattern.source-out.png: Added.
  • fast/canvas/philip/tests/2d.coordinatespace.html: Added.
  • fast/canvas/philip/tests/2d.coordinatespace.png: Added.
  • fast/canvas/philip/tests/2d.drawImage.3arg.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.5arg.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.9arg.basic.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.9arg.destpos.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.9arg.destsize.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.9arg.sourcepos.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.9arg.sourcesize.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.alpha.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.animated.apng.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.animated.gif.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.animated.poster.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.broken.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.canvas.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.clip.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.composite.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.floatsource.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.incomplete.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.negativedest.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.negativedir.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.negativesource.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.nonfinite.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.nowrap.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.null.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.outsidesource.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.path.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.self.1.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.self.2.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.transform.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.wrongtype.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.zerocanvas.html: Added.
  • fast/canvas/philip/tests/2d.drawImage.zerosource.html: Added.
  • fast/canvas/philip/tests/2d.fillRect.basic.html: Added.
  • fast/canvas/philip/tests/2d.fillRect.clip.html: Added.
  • fast/canvas/philip/tests/2d.fillRect.negative.html: Added.
  • fast/canvas/philip/tests/2d.fillRect.nonfinite.html: Added.
  • fast/canvas/philip/tests/2d.fillRect.path.html: Added.
  • fast/canvas/philip/tests/2d.fillRect.shadow.html: Added.
  • fast/canvas/philip/tests/2d.fillRect.transform.html: Added.
  • fast/canvas/philip/tests/2d.fillRect.zero.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.default.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.get.semitransparent.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.get.solid.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.get.transparent.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.invalidstring.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.invalidtype.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.current.basic.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.current.changed.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.current.removed.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.current.removed.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hex3.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hex3.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hex6.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hex6.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-1.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-1.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-2.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-2.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-3.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-3.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-4.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-4.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-5.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-5.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-clamp-1.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-clamp-1.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-clamp-2.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-clamp-2.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-clamp-3.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-clamp-3.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-clamp-4.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsl-clamp-4.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-1.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-1.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-2.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-2.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-1.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-1.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-2.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-2.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-3.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-3.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-4.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-4.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-5.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-5.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-6.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.hsla-clamp-6.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.html4.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.html4.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hex1.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hex2.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hex3.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hex4.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hex5.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hex6.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hex7.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hex8.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hsl-1.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hsl-2.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hsl-3.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hsl-4.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hsl-5.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hsla-1.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.hsla-2.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.name-1.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.name-2.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.name-3.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgb-1.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgb-2.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgb-3.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgb-4.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgb-5.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgb-6.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgb-7.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgba-1.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgba-2.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgba-3.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgba-4.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.invalid.rgba-5.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-1.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-1.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-2.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-2.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-3.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-3.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-4.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-4.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-5.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-clamp-5.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-num.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-num.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-percent.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgb-percent.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-clamp-1.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-clamp-1.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-clamp-2.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-clamp-2.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-num-1.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-num-1.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-num-2.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-num-2.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-percent.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-percent.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-solid-1.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-solid-1.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-solid-2.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.rgba-solid-2.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.svg-1.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.svg-1.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.svg-2.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.svg-2.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.system.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.transparent-1.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.transparent-1.png: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.transparent-2.html: Added.
  • fast/canvas/philip/tests/2d.fillStyle.parse.transparent-2.png: Added.
  • fast/canvas/philip/tests/2d.getcontext.exists.html: Added.
  • fast/canvas/philip/tests/2d.getcontext.shared.html: Added.
  • fast/canvas/philip/tests/2d.getcontext.unique.html: Added.
  • fast/canvas/philip/tests/2d.gradient.empty.html: Added.
  • fast/canvas/philip/tests/2d.gradient.interpolate.alpha.html: Added.
  • fast/canvas/philip/tests/2d.gradient.interpolate.alpha.png: Added.
  • fast/canvas/philip/tests/2d.gradient.interpolate.colour.html: Added.
  • fast/canvas/philip/tests/2d.gradient.interpolate.colour.png: Added.
  • fast/canvas/philip/tests/2d.gradient.interpolate.colouralpha.html: Added.
  • fast/canvas/philip/tests/2d.gradient.interpolate.colouralpha.png: Added.
  • fast/canvas/philip/tests/2d.gradient.interpolate.multiple.html: Added.
  • fast/canvas/philip/tests/2d.gradient.interpolate.multiple.png: Added.
  • fast/canvas/philip/tests/2d.gradient.interpolate.outside.html: Added.
  • fast/canvas/philip/tests/2d.gradient.interpolate.overlap.html: Added.
  • fast/canvas/philip/tests/2d.gradient.interpolate.overlap.png: Added.
  • fast/canvas/philip/tests/2d.gradient.interpolate.overlap2.html: Added.
  • fast/canvas/philip/tests/2d.gradient.interpolate.solid.html: Added.
  • fast/canvas/philip/tests/2d.gradient.interpolate.vertical.html: Added.
  • fast/canvas/philip/tests/2d.gradient.interpolate.vertical.png: Added.
  • fast/canvas/philip/tests/2d.gradient.interpolate.zerosize.html: Added.
  • fast/canvas/philip/tests/2d.gradient.linear.nonfinite.html: Added.
  • fast/canvas/philip/tests/2d.gradient.linear.transform.1.html: Added.
  • fast/canvas/philip/tests/2d.gradient.linear.transform.2.html: Added.
  • fast/canvas/philip/tests/2d.gradient.linear.transform.3.html: Added.
  • fast/canvas/philip/tests/2d.gradient.object.compare.html: Added.
  • fast/canvas/philip/tests/2d.gradient.object.crosscanvas.html: Added.
  • fast/canvas/philip/tests/2d.gradient.object.invalidcolour.html: Added.
  • fast/canvas/philip/tests/2d.gradient.object.invalidoffset.html: Added.
  • fast/canvas/philip/tests/2d.gradient.object.return.html: Added.
  • fast/canvas/philip/tests/2d.gradient.object.update.html: Added.
  • fast/canvas/philip/tests/2d.gradient.radial.cone.behind.html: Added.
  • fast/canvas/philip/tests/2d.gradient.radial.cone.beside.html: Added.
  • fast/canvas/philip/tests/2d.gradient.radial.cone.bottom.html: Added.
  • fast/canvas/philip/tests/2d.gradient.radial.cone.cylinder.html: Added.
  • fast/canvas/philip/tests/2d.gradient.radial.cone.front.html: Added.
  • fast/canvas/philip/tests/2d.gradient.radial.cone.shape1.html: Added.
  • fast/canvas/philip/tests/2d.gradient.radial.cone.shape2.html: Added.
  • fast/canvas/philip/tests/2d.gradient.radial.cone.top.html: Added.
  • fast/canvas/philip/tests/2d.gradient.radial.equal.html: Added.
  • fast/canvas/philip/tests/2d.gradient.radial.inside1.html: Added.
  • fast/canvas/philip/tests/2d.gradient.radial.inside2.html: Added.
  • fast/canvas/philip/tests/2d.gradient.radial.inside3.html: Added.
  • fast/canvas/philip/tests/2d.gradient.radial.negative.html: Added.
  • fast/canvas/philip/tests/2d.gradient.radial.nonfinite.html: Added.
  • fast/canvas/philip/tests/2d.gradient.radial.outside1.html: Added.
  • fast/canvas/philip/tests/2d.gradient.radial.outside2.html: Added.
  • fast/canvas/philip/tests/2d.gradient.radial.outside3.html: Added.
  • fast/canvas/philip/tests/2d.gradient.radial.touch1.html: Added.
  • fast/canvas/philip/tests/2d.gradient.radial.touch2.html: Added.
  • fast/canvas/philip/tests/2d.gradient.radial.touch3.html: Added.
  • fast/canvas/philip/tests/2d.gradient.radial.transform.1.html: Added.
  • fast/canvas/philip/tests/2d.gradient.radial.transform.2.html: Added.
  • fast/canvas/philip/tests/2d.gradient.radial.transform.3.html: Added.
  • fast/canvas/philip/tests/2d.imageData.create1.basic.html: Added.
  • fast/canvas/philip/tests/2d.imageData.create1.initial.html: Added.
  • fast/canvas/philip/tests/2d.imageData.create1.type.html: Added.
  • fast/canvas/philip/tests/2d.imageData.create1.zero.html: Added.
  • fast/canvas/philip/tests/2d.imageData.create2.basic.html: Added.
  • fast/canvas/philip/tests/2d.imageData.create2.initial.html: Added.
  • fast/canvas/philip/tests/2d.imageData.create2.large.html: Added.
  • fast/canvas/philip/tests/2d.imageData.create2.negative.html: Added.
  • fast/canvas/philip/tests/2d.imageData.create2.nonfinite.html: Added.
  • fast/canvas/philip/tests/2d.imageData.create2.round.html: Added.
  • fast/canvas/philip/tests/2d.imageData.create2.tiny.html: Added.
  • fast/canvas/philip/tests/2d.imageData.create2.type.html: Added.
  • fast/canvas/philip/tests/2d.imageData.create2.zero.html: Added.
  • fast/canvas/philip/tests/2d.imageData.get.basic.html: Added.
  • fast/canvas/philip/tests/2d.imageData.get.clamp.html: Added.
  • fast/canvas/philip/tests/2d.imageData.get.length.html: Added.
  • fast/canvas/philip/tests/2d.imageData.get.nonfinite.html: Added.
  • fast/canvas/philip/tests/2d.imageData.get.nonpremul.html: Added.
  • fast/canvas/philip/tests/2d.imageData.get.order.alpha.html: Added.
  • fast/canvas/philip/tests/2d.imageData.get.order.cols.html: Added.
  • fast/canvas/philip/tests/2d.imageData.get.order.rgb.html: Added.
  • fast/canvas/philip/tests/2d.imageData.get.order.rows.html: Added.
  • fast/canvas/philip/tests/2d.imageData.get.range.html: Added.
  • fast/canvas/philip/tests/2d.imageData.get.source.negative.html: Added.
  • fast/canvas/philip/tests/2d.imageData.get.source.outside.html: Added.
  • fast/canvas/philip/tests/2d.imageData.get.source.size.html: Added.
  • fast/canvas/philip/tests/2d.imageData.get.tiny.html: Added.
  • fast/canvas/philip/tests/2d.imageData.get.type.html: Added.
  • fast/canvas/philip/tests/2d.imageData.get.unaffected.html: Added.
  • fast/canvas/philip/tests/2d.imageData.get.zero.html: Added.
  • fast/canvas/philip/tests/2d.imageData.object.ctor.html: Added.
  • fast/canvas/philip/tests/2d.imageData.object.nan.html: Added.
  • fast/canvas/philip/tests/2d.imageData.object.properties.html: Added.
  • fast/canvas/philip/tests/2d.imageData.object.readonly.html: Added.
  • fast/canvas/philip/tests/2d.imageData.object.round.html: Added.
  • fast/canvas/philip/tests/2d.imageData.object.set.html: Added.
  • fast/canvas/philip/tests/2d.imageData.object.string.html: Added.
  • fast/canvas/philip/tests/2d.imageData.object.undefined.html: Added.
  • fast/canvas/philip/tests/2d.imageData.object.wrap.html: Added.
  • fast/canvas/philip/tests/2d.imageData.put.alpha.html: Added.
  • fast/canvas/philip/tests/2d.imageData.put.alpha.png: Added.
  • fast/canvas/philip/tests/2d.imageData.put.basic.html: Added.
  • fast/canvas/philip/tests/2d.imageData.put.clip.html: Added.
  • fast/canvas/philip/tests/2d.imageData.put.created.html: Added.
  • fast/canvas/philip/tests/2d.imageData.put.cross.html: Added.
  • fast/canvas/philip/tests/2d.imageData.put.dirty.negative.html: Added.
  • fast/canvas/philip/tests/2d.imageData.put.dirty.outside.html: Added.
  • fast/canvas/philip/tests/2d.imageData.put.dirty.rect1.html: Added.
  • fast/canvas/philip/tests/2d.imageData.put.dirty.rect2.html: Added.
  • fast/canvas/philip/tests/2d.imageData.put.dirty.zero.html: Added.
  • fast/canvas/philip/tests/2d.imageData.put.modified.html: Added.
  • fast/canvas/philip/tests/2d.imageData.put.nonfinite.html: Added.
  • fast/canvas/philip/tests/2d.imageData.put.null.html: Added.
  • fast/canvas/philip/tests/2d.imageData.put.path.html: Added.
  • fast/canvas/philip/tests/2d.imageData.put.unaffected.html: Added.
  • fast/canvas/philip/tests/2d.imageData.put.unchanged.html: Added.
  • fast/canvas/philip/tests/2d.imageData.put.wrongtype.html: Added.
  • fast/canvas/philip/tests/2d.line.cap.butt.html: Added.
  • fast/canvas/philip/tests/2d.line.cap.closed.html: Added.
  • fast/canvas/philip/tests/2d.line.cap.invalid.html: Added.
  • fast/canvas/philip/tests/2d.line.cap.open.html: Added.
  • fast/canvas/philip/tests/2d.line.cap.round.html: Added.
  • fast/canvas/philip/tests/2d.line.cap.square.html: Added.
  • fast/canvas/philip/tests/2d.line.cap.valid.html: Added.
  • fast/canvas/philip/tests/2d.line.cross.html: Added.
  • fast/canvas/philip/tests/2d.line.defaults.html: Added.
  • fast/canvas/philip/tests/2d.line.join.bevel.html: Added.
  • fast/canvas/philip/tests/2d.line.join.closed.html: Added.
  • fast/canvas/philip/tests/2d.line.join.invalid.html: Added.
  • fast/canvas/philip/tests/2d.line.join.miter.html: Added.
  • fast/canvas/philip/tests/2d.line.join.open.html: Added.
  • fast/canvas/philip/tests/2d.line.join.parallel.html: Added.
  • fast/canvas/philip/tests/2d.line.join.round.html: Added.
  • fast/canvas/philip/tests/2d.line.join.valid.html: Added.
  • fast/canvas/philip/tests/2d.line.miter.acute.html: Added.
  • fast/canvas/philip/tests/2d.line.miter.exceeded.html: Added.
  • fast/canvas/philip/tests/2d.line.miter.invalid.html: Added.
  • fast/canvas/philip/tests/2d.line.miter.lineedge.html: Added.
  • fast/canvas/philip/tests/2d.line.miter.obtuse.html: Added.
  • fast/canvas/philip/tests/2d.line.miter.rightangle.html: Added.
  • fast/canvas/philip/tests/2d.line.miter.valid.html: Added.
  • fast/canvas/philip/tests/2d.line.miter.within.html: Added.
  • fast/canvas/philip/tests/2d.line.union.html: Added.
  • fast/canvas/philip/tests/2d.line.width.basic.html: Added.
  • fast/canvas/philip/tests/2d.line.width.invalid.html: Added.
  • fast/canvas/philip/tests/2d.line.width.scaledefault.html: Added.
  • fast/canvas/philip/tests/2d.line.width.transformed.html: Added.
  • fast/canvas/philip/tests/2d.line.width.valid.html: Added.
  • fast/canvas/philip/tests/2d.missingargs.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.angle.1.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.angle.2.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.angle.3.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.angle.4.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.angle.5.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.angle.6.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.empty.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.end.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.negative.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.nonempty.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.nonfinite.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.scale.1.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.scale.2.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.selfintersect.1.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.selfintersect.2.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.shape.1.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.shape.2.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.shape.3.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.shape.4.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.shape.5.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.twopie.1.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.twopie.2.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.twopie.3.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.twopie.4.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.zero.1.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.zero.2.html: Added.
  • fast/canvas/philip/tests/2d.path.arc.zeroradius.html: Added.
  • fast/canvas/philip/tests/2d.path.arcTo.coincide.1.html: Added.
  • fast/canvas/philip/tests/2d.path.arcTo.coincide.2.html: Added.
  • fast/canvas/philip/tests/2d.path.arcTo.collinear.1.html: Added.
  • fast/canvas/philip/tests/2d.path.arcTo.collinear.2.html: Added.
  • fast/canvas/philip/tests/2d.path.arcTo.collinear.3.html: Added.
  • fast/canvas/philip/tests/2d.path.arcTo.ensuresubpath.1.html: Added.
  • fast/canvas/philip/tests/2d.path.arcTo.ensuresubpath.2.html: Added.
  • fast/canvas/philip/tests/2d.path.arcTo.negative.html: Added.
  • fast/canvas/philip/tests/2d.path.arcTo.nonfinite.html: Added.
  • fast/canvas/philip/tests/2d.path.arcTo.scale.html: Added.
  • fast/canvas/philip/tests/2d.path.arcTo.shape.curve1.html: Added.
  • fast/canvas/philip/tests/2d.path.arcTo.shape.curve2.html: Added.
  • fast/canvas/philip/tests/2d.path.arcTo.shape.end.html: Added.
  • fast/canvas/philip/tests/2d.path.arcTo.shape.start.html: Added.
  • fast/canvas/philip/tests/2d.path.arcTo.transformation.html: Added.
  • fast/canvas/philip/tests/2d.path.arcTo.zero.1.html: Added.
  • fast/canvas/philip/tests/2d.path.arcTo.zero.2.html: Added.
  • fast/canvas/philip/tests/2d.path.beginPath.html: Added.
  • fast/canvas/philip/tests/2d.path.bezierCurveTo.basic.html: Added.
  • fast/canvas/philip/tests/2d.path.bezierCurveTo.ensuresubpath.1.html: Added.
  • fast/canvas/philip/tests/2d.path.bezierCurveTo.ensuresubpath.2.html: Added.
  • fast/canvas/philip/tests/2d.path.bezierCurveTo.nonfinite.html: Added.
  • fast/canvas/philip/tests/2d.path.bezierCurveTo.scaled.html: Added.
  • fast/canvas/philip/tests/2d.path.bezierCurveTo.shape.html: Added.
  • fast/canvas/philip/tests/2d.path.clip.basic.1.html: Added.
  • fast/canvas/philip/tests/2d.path.clip.basic.2.html: Added.
  • fast/canvas/philip/tests/2d.path.clip.empty.html: Added.
  • fast/canvas/philip/tests/2d.path.clip.intersect.html: Added.
  • fast/canvas/philip/tests/2d.path.clip.unaffected.html: Added.
  • fast/canvas/philip/tests/2d.path.clip.winding.1.html: Added.
  • fast/canvas/philip/tests/2d.path.clip.winding.2.html: Added.
  • fast/canvas/philip/tests/2d.path.closePath.empty.html: Added.
  • fast/canvas/philip/tests/2d.path.closePath.newline.html: Added.
  • fast/canvas/philip/tests/2d.path.closePath.nextpoint.html: Added.
  • fast/canvas/philip/tests/2d.path.fill.closed.basic.html: Added.
  • fast/canvas/philip/tests/2d.path.fill.closed.unaffected.html: Added.
  • fast/canvas/philip/tests/2d.path.fill.overlap.html: Added.
  • fast/canvas/philip/tests/2d.path.fill.overlap.png: Added.
  • fast/canvas/philip/tests/2d.path.fill.winding.add.html: Added.
  • fast/canvas/philip/tests/2d.path.fill.winding.subtract.1.html: Added.
  • fast/canvas/philip/tests/2d.path.fill.winding.subtract.2.html: Added.
  • fast/canvas/philip/tests/2d.path.fill.winding.subtract.3.html: Added.
  • fast/canvas/philip/tests/2d.path.initial.html: Added.
  • fast/canvas/philip/tests/2d.path.isPointInPath.arc.html: Added.
  • fast/canvas/philip/tests/2d.path.isPointInPath.basic.1.html: Added.
  • fast/canvas/philip/tests/2d.path.isPointInPath.basic.2.html: Added.
  • fast/canvas/philip/tests/2d.path.isPointInPath.bezier.html: Added.
  • fast/canvas/philip/tests/2d.path.isPointInPath.bigarc.html: Added.
  • fast/canvas/philip/tests/2d.path.isPointInPath.edge.html: Added.
  • fast/canvas/philip/tests/2d.path.isPointInPath.empty.html: Added.
  • fast/canvas/philip/tests/2d.path.isPointInPath.nonfinite.html: Added.
  • fast/canvas/philip/tests/2d.path.isPointInPath.outside.html: Added.
  • fast/canvas/philip/tests/2d.path.isPointInPath.subpath.html: Added.
  • fast/canvas/philip/tests/2d.path.isPointInPath.transform.1.html: Added.
  • fast/canvas/philip/tests/2d.path.isPointInPath.transform.2.html: Added.
  • fast/canvas/philip/tests/2d.path.isPointInPath.transform.3.html: Added.
  • fast/canvas/philip/tests/2d.path.isPointInPath.unclosed.html: Added.
  • fast/canvas/philip/tests/2d.path.isPointInPath.winding.html: Added.
  • fast/canvas/philip/tests/2d.path.lineTo.basic.html: Added.
  • fast/canvas/philip/tests/2d.path.lineTo.ensuresubpath.1.html: Added.
  • fast/canvas/philip/tests/2d.path.lineTo.ensuresubpath.2.html: Added.
  • fast/canvas/philip/tests/2d.path.lineTo.nextpoint.html: Added.
  • fast/canvas/philip/tests/2d.path.lineTo.nonfinite.html: Added.
  • fast/canvas/philip/tests/2d.path.moveTo.basic.html: Added.
  • fast/canvas/philip/tests/2d.path.moveTo.multiple.html: Added.
  • fast/canvas/philip/tests/2d.path.moveTo.newsubpath.html: Added.
  • fast/canvas/philip/tests/2d.path.moveTo.nonfinite.html: Added.
  • fast/canvas/philip/tests/2d.path.quadraticCurveTo.basic.html: Added.
  • fast/canvas/philip/tests/2d.path.quadraticCurveTo.ensuresubpath.1.html: Added.
  • fast/canvas/philip/tests/2d.path.quadraticCurveTo.ensuresubpath.2.html: Added.
  • fast/canvas/philip/tests/2d.path.quadraticCurveTo.nonfinite.html: Added.
  • fast/canvas/philip/tests/2d.path.quadraticCurveTo.scaled.html: Added.
  • fast/canvas/philip/tests/2d.path.quadraticCurveTo.shape.html: Added.
  • fast/canvas/philip/tests/2d.path.rect.basic.html: Added.
  • fast/canvas/philip/tests/2d.path.rect.closed.html: Added.
  • fast/canvas/philip/tests/2d.path.rect.end.1.html: Added.
  • fast/canvas/philip/tests/2d.path.rect.end.2.html: Added.
  • fast/canvas/philip/tests/2d.path.rect.negative.html: Added.
  • fast/canvas/philip/tests/2d.path.rect.newsubpath.html: Added.
  • fast/canvas/philip/tests/2d.path.rect.nonfinite.html: Added.
  • fast/canvas/philip/tests/2d.path.rect.selfintersect.html: Added.
  • fast/canvas/philip/tests/2d.path.rect.winding.html: Added.
  • fast/canvas/philip/tests/2d.path.rect.zero.1.html: Added.
  • fast/canvas/philip/tests/2d.path.rect.zero.2.html: Added.
  • fast/canvas/philip/tests/2d.path.rect.zero.3.html: Added.
  • fast/canvas/philip/tests/2d.path.rect.zero.4.html: Added.
  • fast/canvas/philip/tests/2d.path.rect.zero.5.html: Added.
  • fast/canvas/philip/tests/2d.path.rect.zero.6.html: Added.
  • fast/canvas/philip/tests/2d.path.stroke.empty.html: Added.
  • fast/canvas/philip/tests/2d.path.stroke.overlap.html: Added.
  • fast/canvas/philip/tests/2d.path.stroke.overlap.png: Added.
  • fast/canvas/philip/tests/2d.path.stroke.prune.arc.html: Added.
  • fast/canvas/philip/tests/2d.path.stroke.prune.closed.html: Added.
  • fast/canvas/philip/tests/2d.path.stroke.prune.corner.html: Added.
  • fast/canvas/philip/tests/2d.path.stroke.prune.curve.html: Added.
  • fast/canvas/philip/tests/2d.path.stroke.prune.line.html: Added.
  • fast/canvas/philip/tests/2d.path.stroke.prune.rect.html: Added.
  • fast/canvas/philip/tests/2d.path.stroke.scale1.html: Added.
  • fast/canvas/philip/tests/2d.path.stroke.scale2.html: Added.
  • fast/canvas/philip/tests/2d.path.stroke.skew.html: Added.
  • fast/canvas/philip/tests/2d.path.stroke.unaffected.html: Added.
  • fast/canvas/philip/tests/2d.path.stroke.union.html: Added.
  • fast/canvas/philip/tests/2d.path.transformation.basic.html: Added.
  • fast/canvas/philip/tests/2d.path.transformation.changing.html: Added.
  • fast/canvas/philip/tests/2d.path.transformation.multiple.html: Added.
  • fast/canvas/philip/tests/2d.pattern.animated.gif.html: Added.
  • fast/canvas/philip/tests/2d.pattern.basic.canvas.html: Added.
  • fast/canvas/philip/tests/2d.pattern.basic.image.html: Added.
  • fast/canvas/philip/tests/2d.pattern.basic.nocontext.html: Added.
  • fast/canvas/philip/tests/2d.pattern.basic.type.html: Added.
  • fast/canvas/philip/tests/2d.pattern.basic.zerocanvas.html: Added.
  • fast/canvas/philip/tests/2d.pattern.crosscanvas.html: Added.
  • fast/canvas/philip/tests/2d.pattern.image.broken.html: Added.
  • fast/canvas/philip/tests/2d.pattern.image.incomplete.html: Added.
  • fast/canvas/philip/tests/2d.pattern.image.null.html: Added.
  • fast/canvas/philip/tests/2d.pattern.image.string.html: Added.
  • fast/canvas/philip/tests/2d.pattern.image.undefined.html: Added.
  • fast/canvas/philip/tests/2d.pattern.modify.canvas1.html: Added.
  • fast/canvas/philip/tests/2d.pattern.modify.canvas2.html: Added.
  • fast/canvas/philip/tests/2d.pattern.modify.image1.html: Added.
  • fast/canvas/philip/tests/2d.pattern.modify.image2.html: Added.
  • fast/canvas/philip/tests/2d.pattern.paint.norepeat.basic.html: Added.
  • fast/canvas/philip/tests/2d.pattern.paint.norepeat.coord1.html: Added.
  • fast/canvas/philip/tests/2d.pattern.paint.norepeat.coord2.html: Added.
  • fast/canvas/philip/tests/2d.pattern.paint.norepeat.coord3.html: Added.
  • fast/canvas/philip/tests/2d.pattern.paint.norepeat.outside.html: Added.
  • fast/canvas/philip/tests/2d.pattern.paint.orientation.canvas.html: Added.
  • fast/canvas/philip/tests/2d.pattern.paint.orientation.image.html: Added.
  • fast/canvas/philip/tests/2d.pattern.paint.repeat.basic.html: Added.
  • fast/canvas/philip/tests/2d.pattern.paint.repeat.coord1.html: Added.
  • fast/canvas/philip/tests/2d.pattern.paint.repeat.coord2.html: Added.
  • fast/canvas/philip/tests/2d.pattern.paint.repeat.coord3.html: Added.
  • fast/canvas/philip/tests/2d.pattern.paint.repeat.outside.html: Added.
  • fast/canvas/philip/tests/2d.pattern.paint.repeatx.basic.html: Added.
  • fast/canvas/philip/tests/2d.pattern.paint.repeatx.coord1.html: Added.
  • fast/canvas/philip/tests/2d.pattern.paint.repeatx.outside.html: Added.
  • fast/canvas/philip/tests/2d.pattern.paint.repeaty.basic.html: Added.
  • fast/canvas/philip/tests/2d.pattern.paint.repeaty.coord1.html: Added.
  • fast/canvas/philip/tests/2d.pattern.paint.repeaty.outside.html: Added.
  • fast/canvas/philip/tests/2d.pattern.repeat.case.html: Added.
  • fast/canvas/philip/tests/2d.pattern.repeat.empty.html: Added.
  • fast/canvas/philip/tests/2d.pattern.repeat.null.html: Added.
  • fast/canvas/philip/tests/2d.pattern.repeat.nullsuffix.html: Added.
  • fast/canvas/philip/tests/2d.pattern.repeat.undefined.html: Added.
  • fast/canvas/philip/tests/2d.pattern.repeat.unrecognised.html: Added.
  • fast/canvas/philip/tests/2d.scaled.html: Added.
  • fast/canvas/philip/tests/2d.scaled.png: Added.
  • fast/canvas/philip/tests/2d.shadow.alpha.1.html: Added.
  • fast/canvas/philip/tests/2d.shadow.alpha.2.html: Added.
  • fast/canvas/philip/tests/2d.shadow.alpha.2.png: Added.
  • fast/canvas/philip/tests/2d.shadow.alpha.3.html: Added.
  • fast/canvas/philip/tests/2d.shadow.alpha.3.png: Added.
  • fast/canvas/philip/tests/2d.shadow.alpha.4.html: Added.
  • fast/canvas/philip/tests/2d.shadow.alpha.4.png: Added.
  • fast/canvas/philip/tests/2d.shadow.alpha.5.html: Added.
  • fast/canvas/philip/tests/2d.shadow.alpha.5.png: Added.
  • fast/canvas/philip/tests/2d.shadow.attributes.shadowBlur.initial.html: Added.
  • fast/canvas/philip/tests/2d.shadow.attributes.shadowBlur.invalid.html: Added.
  • fast/canvas/philip/tests/2d.shadow.attributes.shadowBlur.valid.html: Added.
  • fast/canvas/philip/tests/2d.shadow.attributes.shadowColor.initial.html: Added.
  • fast/canvas/philip/tests/2d.shadow.attributes.shadowColor.invalid.html: Added.
  • fast/canvas/philip/tests/2d.shadow.attributes.shadowColor.valid.html: Added.
  • fast/canvas/philip/tests/2d.shadow.attributes.shadowOffset.initial.html: Added.
  • fast/canvas/philip/tests/2d.shadow.attributes.shadowOffset.invalid.html: Added.
  • fast/canvas/philip/tests/2d.shadow.attributes.shadowOffset.valid.html: Added.
  • fast/canvas/philip/tests/2d.shadow.blur.high.html: Added.
  • fast/canvas/philip/tests/2d.shadow.blur.high.png: Added.
  • fast/canvas/philip/tests/2d.shadow.blur.low.html: Added.
  • fast/canvas/philip/tests/2d.shadow.blur.low.png: Added.
  • fast/canvas/philip/tests/2d.shadow.canvas.alpha.html: Added.
  • fast/canvas/philip/tests/2d.shadow.canvas.alpha.png: Added.
  • fast/canvas/philip/tests/2d.shadow.canvas.basic.html: Added.
  • fast/canvas/philip/tests/2d.shadow.canvas.transparent.1.html: Added.
  • fast/canvas/philip/tests/2d.shadow.canvas.transparent.2.html: Added.
  • fast/canvas/philip/tests/2d.shadow.clip.1.html: Added.
  • fast/canvas/philip/tests/2d.shadow.clip.2.html: Added.
  • fast/canvas/philip/tests/2d.shadow.clip.3.html: Added.
  • fast/canvas/philip/tests/2d.shadow.composite.1.html: Added.
  • fast/canvas/philip/tests/2d.shadow.composite.2.html: Added.
  • fast/canvas/philip/tests/2d.shadow.composite.3.html: Added.
  • fast/canvas/philip/tests/2d.shadow.enable.blur.html: Added.
  • fast/canvas/philip/tests/2d.shadow.enable.off.1.html: Added.
  • fast/canvas/philip/tests/2d.shadow.enable.off.2.html: Added.
  • fast/canvas/philip/tests/2d.shadow.enable.x.html: Added.
  • fast/canvas/philip/tests/2d.shadow.enable.y.html: Added.
  • fast/canvas/philip/tests/2d.shadow.gradient.alpha.html: Added.
  • fast/canvas/philip/tests/2d.shadow.gradient.alpha.png: Added.
  • fast/canvas/philip/tests/2d.shadow.gradient.basic.html: Added.
  • fast/canvas/philip/tests/2d.shadow.gradient.transparent.1.html: Added.
  • fast/canvas/philip/tests/2d.shadow.gradient.transparent.2.html: Added.
  • fast/canvas/philip/tests/2d.shadow.image.alpha.html: Added.
  • fast/canvas/philip/tests/2d.shadow.image.alpha.png: Added.
  • fast/canvas/philip/tests/2d.shadow.image.basic.html: Added.
  • fast/canvas/philip/tests/2d.shadow.image.scale.html: Added.
  • fast/canvas/philip/tests/2d.shadow.image.section.html: Added.
  • fast/canvas/philip/tests/2d.shadow.image.transparent.1.html: Added.
  • fast/canvas/philip/tests/2d.shadow.image.transparent.2.html: Added.
  • fast/canvas/philip/tests/2d.shadow.offset.negativeX.html: Added.
  • fast/canvas/philip/tests/2d.shadow.offset.negativeY.html: Added.
  • fast/canvas/philip/tests/2d.shadow.offset.positiveX.html: Added.
  • fast/canvas/philip/tests/2d.shadow.offset.positiveY.html: Added.
  • fast/canvas/philip/tests/2d.shadow.outside.html: Added.
  • fast/canvas/philip/tests/2d.shadow.pattern.alpha.html: Added.
  • fast/canvas/philip/tests/2d.shadow.pattern.alpha.png: Added.
  • fast/canvas/philip/tests/2d.shadow.pattern.basic.html: Added.
  • fast/canvas/philip/tests/2d.shadow.pattern.transparent.1.html: Added.
  • fast/canvas/philip/tests/2d.shadow.pattern.transparent.2.html: Added.
  • fast/canvas/philip/tests/2d.shadow.stroke.basic.html: Added.
  • fast/canvas/philip/tests/2d.shadow.stroke.cap.1.html: Added.
  • fast/canvas/philip/tests/2d.shadow.stroke.cap.2.html: Added.
  • fast/canvas/philip/tests/2d.shadow.stroke.join.1.html: Added.
  • fast/canvas/philip/tests/2d.shadow.stroke.join.2.html: Added.
  • fast/canvas/philip/tests/2d.shadow.stroke.join.3.html: Added.
  • fast/canvas/philip/tests/2d.shadow.transform.1.html: Added.
  • fast/canvas/philip/tests/2d.shadow.transform.2.html: Added.
  • fast/canvas/philip/tests/2d.state.saverestore.bitmap.html: Added.
  • fast/canvas/philip/tests/2d.state.saverestore.clip.html: Added.
  • fast/canvas/philip/tests/2d.state.saverestore.fillStyle.html: Added.
  • fast/canvas/philip/tests/2d.state.saverestore.font.html: Added.
  • fast/canvas/philip/tests/2d.state.saverestore.globalAlpha.html: Added.
  • fast/canvas/philip/tests/2d.state.saverestore.globalCompositeOperation.html: Added.
  • fast/canvas/philip/tests/2d.state.saverestore.lineCap.html: Added.
  • fast/canvas/philip/tests/2d.state.saverestore.lineJoin.html: Added.
  • fast/canvas/philip/tests/2d.state.saverestore.lineWidth.html: Added.
  • fast/canvas/philip/tests/2d.state.saverestore.miterLimit.html: Added.
  • fast/canvas/philip/tests/2d.state.saverestore.path.html: Added.
  • fast/canvas/philip/tests/2d.state.saverestore.shadowBlur.html: Added.
  • fast/canvas/philip/tests/2d.state.saverestore.shadowColor.html: Added.
  • fast/canvas/philip/tests/2d.state.saverestore.shadowOffsetX.html: Added.
  • fast/canvas/philip/tests/2d.state.saverestore.shadowOffsetY.html: Added.
  • fast/canvas/philip/tests/2d.state.saverestore.stack.html: Added.
  • fast/canvas/philip/tests/2d.state.saverestore.stackdepth.html: Added.
  • fast/canvas/philip/tests/2d.state.saverestore.strokeStyle.html: Added.
  • fast/canvas/philip/tests/2d.state.saverestore.textAlign.html: Added.
  • fast/canvas/philip/tests/2d.state.saverestore.textBaseline.html: Added.
  • fast/canvas/philip/tests/2d.state.saverestore.transformation.html: Added.
  • fast/canvas/philip/tests/2d.state.saverestore.underflow.html: Added.
  • fast/canvas/philip/tests/2d.strokeRect.basic.html: Added.
  • fast/canvas/philip/tests/2d.strokeRect.clip.html: Added.
  • fast/canvas/philip/tests/2d.strokeRect.globalalpha.html: Added.
  • fast/canvas/philip/tests/2d.strokeRect.globalcomposite.html: Added.
  • fast/canvas/philip/tests/2d.strokeRect.negative.html: Added.
  • fast/canvas/philip/tests/2d.strokeRect.nonfinite.html: Added.
  • fast/canvas/philip/tests/2d.strokeRect.path.html: Added.
  • fast/canvas/philip/tests/2d.strokeRect.shadow.html: Added.
  • fast/canvas/philip/tests/2d.strokeRect.transform.html: Added.
  • fast/canvas/philip/tests/2d.strokeRect.zero.1.html: Added.
  • fast/canvas/philip/tests/2d.strokeRect.zero.2.html: Added.
  • fast/canvas/philip/tests/2d.strokeRect.zero.3.html: Added.
  • fast/canvas/philip/tests/2d.strokeRect.zero.4.html: Added.
  • fast/canvas/philip/tests/2d.strokeRect.zero.5.html: Added.
  • fast/canvas/philip/tests/2d.strokeStyle.default.html: Added.
  • fast/canvas/philip/tests/2d.text.align.default.html: Added.
  • fast/canvas/philip/tests/2d.text.align.invalid.html: Added.
  • fast/canvas/philip/tests/2d.text.align.valid.html: Added.
  • fast/canvas/philip/tests/2d.text.baseline.default.html: Added.
  • fast/canvas/philip/tests/2d.text.baseline.invalid.html: Added.
  • fast/canvas/philip/tests/2d.text.baseline.valid.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.align.center.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.align.end.ltr.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.align.end.rtl.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.align.left.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.align.right.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.align.start.ltr.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.align.start.rtl.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.baseline.alphabetic.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.baseline.bottom.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.baseline.hanging.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.baseline.ideographic.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.baseline.middle.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.baseline.top.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.fill.basic.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.fill.basic.png: Added.
  • fast/canvas/philip/tests/2d.text.draw.fill.maxWidth.bound.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.fill.maxWidth.fontface.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.fill.maxWidth.large.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.fill.maxWidth.large.png: Added.
  • fast/canvas/philip/tests/2d.text.draw.fill.maxWidth.small.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.fill.maxWidth.zero.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.fill.rtl.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.fill.rtl.png: Added.
  • fast/canvas/philip/tests/2d.text.draw.fill.unaffected.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.fontface.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.fontface.notinpage.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.fontface.repeat.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.kern.consistent.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.space.basic.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.space.collapse.end.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.space.collapse.nonspace.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.space.collapse.other.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.space.collapse.space.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.space.collapse.start.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.stroke.basic.html: Added.
  • fast/canvas/philip/tests/2d.text.draw.stroke.basic.png: Added.
  • fast/canvas/philip/tests/2d.text.draw.stroke.unaffected.html: Added.
  • fast/canvas/philip/tests/2d.text.font.default.html: Added.
  • fast/canvas/philip/tests/2d.text.font.parse.basic.html: Added.
  • fast/canvas/philip/tests/2d.text.font.parse.complex.html: Added.
  • fast/canvas/philip/tests/2d.text.font.parse.invalid.html: Added.
  • fast/canvas/philip/tests/2d.text.font.parse.size.percentage.default.html: Added.
  • fast/canvas/philip/tests/2d.text.font.parse.size.percentage.html: Added.
  • fast/canvas/philip/tests/2d.text.font.parse.system.html: Added.
  • fast/canvas/philip/tests/2d.text.measure.width.basic.html: Added.
  • fast/canvas/philip/tests/2d.text.measure.width.empty.html: Added.
  • fast/canvas/philip/tests/2d.text.measure.width.space.html: Added.
  • fast/canvas/philip/tests/2d.transformation.order.html: Added.
  • fast/canvas/philip/tests/2d.transformation.rotate.direction.html: Added.
  • fast/canvas/philip/tests/2d.transformation.rotate.nonfinite.html: Added.
  • fast/canvas/philip/tests/2d.transformation.rotate.radians.html: Added.
  • fast/canvas/philip/tests/2d.transformation.rotate.wrap.html: Added.
  • fast/canvas/philip/tests/2d.transformation.rotate.wrapnegative.html: Added.
  • fast/canvas/philip/tests/2d.transformation.rotate.zero.html: Added.
  • fast/canvas/philip/tests/2d.transformation.scale.basic.html: Added.
  • fast/canvas/philip/tests/2d.transformation.scale.large.html: Added.
  • fast/canvas/philip/tests/2d.transformation.scale.multiple.html: Added.
  • fast/canvas/philip/tests/2d.transformation.scale.negative.html: Added.
  • fast/canvas/philip/tests/2d.transformation.scale.nonfinite.html: Added.
  • fast/canvas/philip/tests/2d.transformation.scale.zero.html: Added.
  • fast/canvas/philip/tests/2d.transformation.setTransform.multiple.html: Added.
  • fast/canvas/philip/tests/2d.transformation.setTransform.nonfinite.html: Added.
  • fast/canvas/philip/tests/2d.transformation.setTransform.skewed.html: Added.
  • fast/canvas/philip/tests/2d.transformation.transform.identity.html: Added.
  • fast/canvas/philip/tests/2d.transformation.transform.multiply.html: Added.
  • fast/canvas/philip/tests/2d.transformation.transform.nonfinite.html: Added.
  • fast/canvas/philip/tests/2d.transformation.transform.skewed.html: Added.
  • fast/canvas/philip/tests/2d.transformation.translate.basic.html: Added.
  • fast/canvas/philip/tests/2d.transformation.translate.nonfinite.html: Added.
  • fast/canvas/philip/tests/2d.voidreturn.html: Added.
  • fast/canvas/philip/tests/clear-100x50.png: Added.
  • fast/canvas/philip/tests/context.casesensitive.html: Added.
  • fast/canvas/philip/tests/context.emptystring.html: Added.
  • fast/canvas/philip/tests/context.unrecognised.badname.html: Added.
  • fast/canvas/philip/tests/context.unrecognised.badsuffix.html: Added.
  • fast/canvas/philip/tests/context.unrecognised.nullsuffix.html: Added.
  • fast/canvas/philip/tests/context.unrecognised.unicode.html: Added.
  • fast/canvas/philip/tests/fallback.basic.html: Added.
  • fast/canvas/philip/tests/fallback.multiple.html: Added.
  • fast/canvas/philip/tests/fallback.nested.html: Added.
  • fast/canvas/philip/tests/green-100x50.png: Added.
  • fast/canvas/philip/tests/initial.colour.html: Added.
  • fast/canvas/philip/tests/initial.colour.png: Added.
  • fast/canvas/philip/tests/initial.reset.2dstate.html: Added.
  • fast/canvas/philip/tests/initial.reset.clip.html: Added.
  • fast/canvas/philip/tests/initial.reset.different.html: Added.
  • fast/canvas/philip/tests/initial.reset.different.png: Added.
  • fast/canvas/philip/tests/initial.reset.gradient.html: Added.
  • fast/canvas/philip/tests/initial.reset.path.html: Added.
  • fast/canvas/philip/tests/initial.reset.path.png: Added.
  • fast/canvas/philip/tests/initial.reset.pattern.html: Added.
  • fast/canvas/philip/tests/initial.reset.same.html: Added.
  • fast/canvas/philip/tests/initial.reset.same.png: Added.
  • fast/canvas/philip/tests/initial.reset.transform.html: Added.
  • fast/canvas/philip/tests/security.dataURI.html: Added.
  • fast/canvas/philip/tests/security.drawImage.canvas.html: Added.
  • fast/canvas/philip/tests/security.drawImage.image.html: Added.
  • fast/canvas/philip/tests/security.pattern.canvas.fillStyle.html: Added.
  • fast/canvas/philip/tests/security.pattern.canvas.strokeStyle.html: Added.
  • fast/canvas/philip/tests/security.pattern.canvas.timing.html: Added.
  • fast/canvas/philip/tests/security.pattern.create.html: Added.
  • fast/canvas/philip/tests/security.pattern.cross.html: Added.
  • fast/canvas/philip/tests/security.pattern.image.fillStyle.html: Added.
  • fast/canvas/philip/tests/security.pattern.image.strokeStyle.html: Added.
  • fast/canvas/philip/tests/security.reset.html: Added.
  • fast/canvas/philip/tests/size.attributes.default.html: Added.
  • fast/canvas/philip/tests/size.attributes.default.png: Added.
  • fast/canvas/philip/tests/size.attributes.get.html: Added.
  • fast/canvas/philip/tests/size.attributes.get.png: Added.
  • fast/canvas/philip/tests/size.attributes.idl.html: Added.
  • fast/canvas/philip/tests/size.attributes.idl.set.zero.html: Added.
  • fast/canvas/philip/tests/size.attributes.parse.decimal.html: Added.
  • fast/canvas/philip/tests/size.attributes.parse.decimal.png: Added.
  • fast/canvas/philip/tests/size.attributes.parse.em.html: Added.
  • fast/canvas/philip/tests/size.attributes.parse.em.png: Added.
  • fast/canvas/philip/tests/size.attributes.parse.empty.html: Added.
  • fast/canvas/philip/tests/size.attributes.parse.empty.png: Added.
  • fast/canvas/philip/tests/size.attributes.parse.exp.html: Added.
  • fast/canvas/philip/tests/size.attributes.parse.exp.png: Added.
  • fast/canvas/philip/tests/size.attributes.parse.hex.html: Added.
  • fast/canvas/philip/tests/size.attributes.parse.junk.html: Added.
  • fast/canvas/philip/tests/size.attributes.parse.junk.png: Added.
  • fast/canvas/philip/tests/size.attributes.parse.minus.html: Added.
  • fast/canvas/philip/tests/size.attributes.parse.minus.png: Added.
  • fast/canvas/philip/tests/size.attributes.parse.octal.html: Added.
  • fast/canvas/philip/tests/size.attributes.parse.octal.png: Added.
  • fast/canvas/philip/tests/size.attributes.parse.onlyspace.html: Added.
  • fast/canvas/philip/tests/size.attributes.parse.onlyspace.png: Added.
  • fast/canvas/philip/tests/size.attributes.parse.percent.html: Added.
  • fast/canvas/philip/tests/size.attributes.parse.percent.png: Added.
  • fast/canvas/philip/tests/size.attributes.parse.plus.html: Added.
  • fast/canvas/philip/tests/size.attributes.parse.plus.png: Added.
  • fast/canvas/philip/tests/size.attributes.parse.space.html: Added.
  • fast/canvas/philip/tests/size.attributes.parse.space.png: Added.
  • fast/canvas/philip/tests/size.attributes.parse.trailingjunk.html: Added.
  • fast/canvas/philip/tests/size.attributes.parse.trailingjunk.png: Added.
  • fast/canvas/philip/tests/size.attributes.parse.whitespace.html: Added.
  • fast/canvas/philip/tests/size.attributes.parse.whitespace.png: Added.
  • fast/canvas/philip/tests/size.attributes.parse.zero.html: Added.
  • fast/canvas/philip/tests/size.attributes.reflect.setcontent.html: Added.
  • fast/canvas/philip/tests/size.attributes.reflect.setcontent.png: Added.
  • fast/canvas/philip/tests/size.attributes.reflect.setidl.html: Added.
  • fast/canvas/philip/tests/size.attributes.reflect.setidl.png: Added.
  • fast/canvas/philip/tests/size.attributes.reflect.setidlzero.html: Added.
  • fast/canvas/philip/tests/size.attributes.removed.html: Added.
  • fast/canvas/philip/tests/size.attributes.removed.png: Added.
  • fast/canvas/philip/tests/size.attributes.set.html: Added.
  • fast/canvas/philip/tests/size.attributes.set.png: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.decimal.html: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.decimal.png: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.em.html: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.em.png: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.empty.html: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.empty.png: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.exp.html: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.exp.png: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.hex.html: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.junk.html: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.junk.png: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.minus.html: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.minus.png: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.octal.html: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.octal.png: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.onlyspace.html: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.onlyspace.png: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.percent.html: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.percent.png: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.plus.html: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.plus.png: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.space.html: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.space.png: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.trailingjunk.html: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.trailingjunk.png: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.whitespace.html: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.whitespace.png: Added.
  • fast/canvas/philip/tests/size.attributes.setAttribute.zero.html: Added.
  • fast/canvas/philip/tests/size.attributes.style.html: Added.
  • fast/canvas/philip/tests/size.attributes.style.png: Added.
  • fast/canvas/philip/tests/toDataURL.arguments.1.html: Added.
  • fast/canvas/philip/tests/toDataURL.arguments.2.html: Added.
  • fast/canvas/philip/tests/toDataURL.arguments.3.html: Added.
  • fast/canvas/philip/tests/toDataURL.bogustype.html: Added.
  • fast/canvas/philip/tests/toDataURL.default.html: Added.
  • fast/canvas/philip/tests/toDataURL.jpeg.alpha.html: Added.
  • fast/canvas/philip/tests/toDataURL.jpeg.alpha.png: Added.
  • fast/canvas/philip/tests/toDataURL.jpeg.primarycolours.html: Added.
  • fast/canvas/philip/tests/toDataURL.jpeg.primarycolours.png: Added.
  • fast/canvas/philip/tests/toDataURL.jpeg.quality.basic.html: Added.
  • fast/canvas/philip/tests/toDataURL.jpeg.quality.basic.png: Added.
  • fast/canvas/philip/tests/toDataURL.jpeg.quality.notnumber.html: Added.
  • fast/canvas/philip/tests/toDataURL.jpeg.quality.outsiderange.html: Added.
  • fast/canvas/philip/tests/toDataURL.lowercase.ascii.html: Added.
  • fast/canvas/philip/tests/toDataURL.lowercase.unicode.html: Added.
  • fast/canvas/philip/tests/toDataURL.nocontext.html: Added.
  • fast/canvas/philip/tests/toDataURL.png.complexcolours.html: Added.
  • fast/canvas/philip/tests/toDataURL.png.complexcolours.png: Added.
  • fast/canvas/philip/tests/toDataURL.png.html: Added.
  • fast/canvas/philip/tests/toDataURL.png.primarycolours.html: Added.
  • fast/canvas/philip/tests/toDataURL.png.primarycolours.png: Added.
  • fast/canvas/philip/tests/toDataURL.unrecognised.html: Added.
  • fast/canvas/philip/tests/toDataURL.zerosize.html: Added.
  • fast/canvas/philip/tests/type.delete.html: Added.
  • fast/canvas/philip/tests/type.exists.html: Added.
  • fast/canvas/philip/tests/type.extend.html: Added.
  • fast/canvas/philip/tests/type.name.html: Added.
  • fast/canvas/philip/tests/type.prototype.html: Added.
  • fast/canvas/philip/tests/type.replace.html: Added.
  • platform/chromium/test_expectations.txt:
  • platform/gtk/Skipped:
  • platform/mac/Skipped:
  • platform/qt/Skipped:
  • platform/win/Skipped:
1:25 PM Changeset in webkit [59953] by Csaba Osztrogonác
  • 2 edits in trunk/LayoutTests

Unreviewed. Update Qt specific expected file after r59941.

  • platform/qt/fast/dom/prototype-inheritance-expected.txt: updated.
1:20 PM Changeset in webkit [59952] by alex
  • 2 edits in trunk/LayoutTests

2010-05-21 Alejandro G. Castro <alex@igalia.com>

Rubber-stamped by Xan Lopez.

Updated test results.

  • platform/gtk/fast/dom/prototype-inheritance-expected.txt:
1:07 PM Changeset in webkit [59951] by Csaba Osztrogonác
  • 2 edits in trunk/JavaScriptCore

Unreviewed buildfix for Qt after r59941.

  • JavaScriptCore.pro: missing runtime/JSObjectWithGlobalObject.cpp added to SOURCES.
12:53 PM Changeset in webkit [59950] by Beth Dakin
  • 3 edits
    4 adds in trunk

WebCore: Fix for <rdar://problem/8009118> Crash in WebCore::toAlphabetic()
while running MangleMe
-and corresponding-
https://bugs.webkit.org/show_bug.cgi?id=39508

Reviewed by Darin Adler.

The math was slightly off here, and we wound up trying to access an
array at index -1 in some cases. We need to decrement numberShadow
rather than subtracting one from the result of the modulo
operation.

  • rendering/RenderListMarker.cpp:

(WebCore::toAlphabeticOrNumeric):

LayoutTests: Test for <rdar://problem/8009118> Crash in WebCore::toAlphabetic()
while running MangleMe
-and corresponding-
https://bugs.webkit.org/show_bug.cgi?id=39508

Reviewed by Darin Adler.

  • fast/lists/alpha-boundary-values.html: Added.
  • platform/mac/fast/lists/alpha-boundary-values-expected.checksum: Added.
  • platform/mac/fast/lists/alpha-boundary-values-expected.png: Added.
  • platform/mac/fast/lists/alpha-boundary-values-expected.txt: Added.
12:20 PM Changeset in webkit [59949] by oliver@apple.com
  • 2 edits in trunk/WebCore

Qt buildfix #2

12:11 PM Changeset in webkit [59948] by oliver@apple.com
  • 2 edits in trunk/JavaScriptCore

Windows build fix #3

12:06 PM Changeset in webkit [59947] by oliver@apple.com
  • 3 edits in trunk/WebCore

Qt buildfix #1

12:04 PM Changeset in webkit [59946] by crogers@google.com
  • 2 edits in branches/audio/WebCore/audio

Some stopgap sanity checks in resampler to avoid crashes - until this code can really be cleaned up

12:04 PM Changeset in webkit [59945] by crogers@google.com
  • 8 edits in branches/audio/WebCore/audio

Don't rely on garbage collection of AudioContext for audio to stop playing when page unloads

  • also don't use object composition of AudioOutputNode in AudioContext - use RefPtr instead since this can be wrapped in a javascript wrapper!
11:57 AM Changeset in webkit [59944] by oliver@apple.com
  • 2 edits in trunk/JavaScriptCore

Windows build fix #2

11:56 AM Changeset in webkit [59943] by ggaren@apple.com
  • 3 edits in trunk/WebCore

Fixed failure seen on buildbot (due to flaky test).

Reviewed by Oliver Hunt.

Don't report an exception in a nested script evaluation -- just pass the
exception on to our caller. Our caller can decide to report the exception,
if it fully propagates -- but we don't want to report an exception that's
going to get caught.

  • bindings/js/ScriptController.cpp:

(WebCore::ScriptController::ScriptController):
(WebCore::ScriptController::evaluateInWorld):

  • bindings/js/ScriptController.h:
11:42 AM Changeset in webkit [59942] by oliver@apple.com
  • 2 edits in trunk/JavaScriptCore

Windows build fix #1

11:19 AM Changeset in webkit [59941] by oliver@apple.com
  • 114 edits
    3 adds in trunk

2010-05-21 Oliver Hunt <oliver@apple.com>

Reviewed by Geoffrey Garen.

All callable objects should have a global object reference
https://bugs.webkit.org/show_bug.cgi?id=39495

All objects that may ever return a value other CallTypeNone
or ConstructTypeNone now get a global object in their constructor
and store that in their first anonymous slot. We add a new type
JSObjectWithGlobalObject to allow us to share this logic as much
as possible, however some objects have specific inheritance
requirements so we can't just use it universally.

To enforce this requirement JSValue::getCallData and getConstructData
make use of a new "isValidCallee" function to assert that any object
that returns a value other than CallType/ConstructTypeNone has a
global object in anonymous slot 0.

In order to ensure that static function slots are converted into
function objects with the correct global object, all prototype objects
and other classes with static function slots also gain a global object
reference. Happily this fixes the long standing issue where host
function objects get a prototype from the lexical global object of the
first function that calls them, instead of the global object that they
are defined on.

  • API/JSCallbackConstructor.cpp: (JSC::JSCallbackConstructor::JSCallbackConstructor):
  • API/JSCallbackConstructor.h:
  • API/JSCallbackFunction.cpp: (JSC::JSCallbackFunction::JSCallbackFunction):
  • API/JSCallbackFunction.h:
  • API/JSCallbackObject.cpp: (JSC::):
  • API/JSCallbackObject.h:
  • API/JSCallbackObjectFunctions.h: (JSC::::JSCallbackObject): (JSC::::staticFunctionGetter):
  • API/JSClassRef.cpp: (OpaqueJSClass::prototype):
  • API/JSContextRef.cpp:
  • API/JSObjectRef.cpp: (JSObjectMake): (JSObjectMakeFunctionWithCallback): (JSObjectMakeConstructor): (JSObjectGetPrivate): (JSObjectSetPrivate): (JSObjectGetPrivateProperty): (JSObjectSetPrivateProperty): (JSObjectDeletePrivateProperty):
  • API/JSValueRef.cpp: (JSValueIsObjectOfClass):
  • API/JSWeakObjectMapRefPrivate.cpp:
  • CMakeLists.txt:
  • GNUmakefile.am:
  • JavaScriptCore.exp:
  • JavaScriptCore.gypi:
  • JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • interpreter/Interpreter.cpp: (JSC::Interpreter::privateExecute):
  • jit/JITStubs.cpp: (JSC::DEFINE_STUB_FUNCTION):
  • jsc.cpp: (GlobalObject::GlobalObject):
  • runtime/ArrayConstructor.cpp: (JSC::ArrayConstructor::ArrayConstructor):
  • runtime/ArrayConstructor.h:
  • runtime/ArrayPrototype.cpp: (JSC::ArrayPrototype::ArrayPrototype):
  • runtime/ArrayPrototype.h: (JSC::ArrayPrototype::createStructure):
  • runtime/BooleanConstructor.cpp: (JSC::BooleanConstructor::BooleanConstructor):
  • runtime/BooleanConstructor.h:
  • runtime/BooleanPrototype.cpp: (JSC::BooleanPrototype::BooleanPrototype):
  • runtime/BooleanPrototype.h:
  • runtime/DateConstructor.cpp: (JSC::DateConstructor::DateConstructor):
  • runtime/DateConstructor.h:
  • runtime/DatePrototype.cpp: (JSC::DatePrototype::DatePrototype):
  • runtime/DatePrototype.h:
  • runtime/ErrorConstructor.cpp: (JSC::ErrorConstructor::ErrorConstructor):
  • runtime/ErrorConstructor.h:
  • runtime/ErrorPrototype.cpp: (JSC::ErrorPrototype::ErrorPrototype):
  • runtime/ErrorPrototype.h:
  • runtime/FunctionConstructor.cpp: (JSC::FunctionConstructor::FunctionConstructor):
  • runtime/FunctionConstructor.h:
  • runtime/FunctionPrototype.cpp: (JSC::FunctionPrototype::FunctionPrototype): (JSC::FunctionPrototype::addFunctionProperties):
  • runtime/FunctionPrototype.h:
  • runtime/GlobalEvalFunction.cpp: (JSC::GlobalEvalFunction::GlobalEvalFunction):
  • runtime/GlobalEvalFunction.h:
  • runtime/InternalFunction.cpp: (JSC::InternalFunction::InternalFunction):
  • runtime/InternalFunction.h:
  • runtime/JSCell.h: (JSC::JSValue::getCallData): (JSC::JSValue::getConstructData):
  • runtime/JSFunction.cpp: (JSC::JSFunction::JSFunction):
  • runtime/JSFunction.h:
  • runtime/JSGlobalObject.cpp: (JSC::JSGlobalObject::reset):
  • runtime/JSGlobalObject.h: (JSC::JSGlobalObject::JSGlobalObject):
  • runtime/JSONObject.cpp: (JSC::JSONObject::JSONObject):
  • runtime/JSONObject.h:
  • runtime/JSObject.h:
  • runtime/JSObjectWithGlobalObject.cpp: Added. (JSC::JSObjectWithGlobalObject::JSObjectWithGlobalObject):
  • runtime/JSObjectWithGlobalObject.h: Added. (JSC::JSObjectWithGlobalObject::createStructure): (JSC::JSObjectWithGlobalObject::JSObjectWithGlobalObject):
  • runtime/JSValue.cpp: (JSC::JSValue::isValidCallee):
  • runtime/JSValue.h:
  • runtime/Lookup.cpp: (JSC::setUpStaticFunctionSlot):
  • runtime/MathObject.cpp: (JSC::MathObject::MathObject):
  • runtime/MathObject.h:
  • runtime/NativeErrorConstructor.cpp: (JSC::NativeErrorConstructor::NativeErrorConstructor):
  • runtime/NativeErrorConstructor.h:
  • runtime/NativeErrorPrototype.cpp: (JSC::NativeErrorPrototype::NativeErrorPrototype):
  • runtime/NativeErrorPrototype.h:
  • runtime/NumberConstructor.cpp: (JSC::NumberConstructor::NumberConstructor):
  • runtime/NumberConstructor.h:
  • runtime/NumberPrototype.cpp: (JSC::NumberPrototype::NumberPrototype):
  • runtime/NumberPrototype.h:
  • runtime/ObjectConstructor.cpp: (JSC::ObjectConstructor::ObjectConstructor):
  • runtime/ObjectConstructor.h:
  • runtime/ObjectPrototype.cpp: (JSC::ObjectPrototype::ObjectPrototype):
  • runtime/ObjectPrototype.h:
  • runtime/PrototypeFunction.cpp: (JSC::PrototypeFunction::PrototypeFunction):
  • runtime/PrototypeFunction.h:
  • runtime/RegExpConstructor.cpp: (JSC::RegExpConstructor::RegExpConstructor): (JSC::constructRegExp):
  • runtime/RegExpConstructor.h:
  • runtime/RegExpObject.cpp: (JSC::RegExpObject::RegExpObject):
  • runtime/RegExpObject.h:
  • runtime/RegExpPrototype.cpp: (JSC::RegExpPrototype::RegExpPrototype):
  • runtime/RegExpPrototype.h:
  • runtime/StringConstructor.cpp: (JSC::StringConstructor::StringConstructor):
  • runtime/StringConstructor.h:
  • runtime/StringPrototype.cpp: (JSC::StringPrototype::StringPrototype):
  • runtime/StringPrototype.h:

2010-05-21 Oliver Hunt <oliver@apple.com>

Reviewed by Geoffrey Garen.

All callable objects should have a global object reference
https://bugs.webkit.org/show_bug.cgi?id=39495

Update expected results as we now give all function objects
get their prototypes from the correct global object.

  • fast/dom/prototype-inheritance-expected.txt:

2010-05-21 Oliver Hunt <oliver@apple.com>

Reviewed by Geoffrey Garen.

All callable objects should have a global object reference
https://bugs.webkit.org/show_bug.cgi?id=39495

Update the bindings generator to give prototype objects a
global object. Update all the manually written JSObject
subclasses to pass a global object.

  • ForwardingHeaders/runtime/JSObjectWithGlobalObject.h: Added.
  • WebCore.PluginHostProcess.exp:
  • bindings/js/JSDOMBinding.cpp: (WebCore::objectToStringFunctionGetter):
  • bindings/js/JSDOMWindowCustom.cpp: (WebCore::nonCachingStaticFunctionGetter):
  • bindings/js/JSDOMWindowShell.cpp: (WebCore::JSDOMWindowShell::setWindow):
  • bindings/js/JSHistoryCustom.cpp: (WebCore::nonCachingStaticBackFunctionGetter): (WebCore::nonCachingStaticForwardFunctionGetter): (WebCore::nonCachingStaticGoFunctionGetter):
  • bindings/js/JSLocationCustom.cpp: (WebCore::nonCachingStaticReplaceFunctionGetter): (WebCore::nonCachingStaticReloadFunctionGetter): (WebCore::nonCachingStaticAssignFunctionGetter):
  • bindings/js/WorkerScriptController.cpp: (WebCore::WorkerScriptController::initScript):
  • bindings/scripts/CodeGeneratorJS.pm:
  • bridge/c/CRuntimeObject.cpp: (JSC::Bindings::CRuntimeObject::CRuntimeObject):
  • bridge/c/CRuntimeObject.h:
  • bridge/c/c_instance.cpp: (JSC::Bindings::CInstance::newRuntimeObject): (JSC::Bindings::CRuntimeMethod::CRuntimeMethod): (JSC::Bindings::CInstance::getMethod):
  • bridge/jni/jsc/JavaInstanceJSC.cpp: (JavaInstance::newRuntimeObject): (JavaRuntimeMethod::JavaRuntimeMethod): (JavaInstance::getMethod):
  • bridge/jni/jsc/JavaRuntimeObject.cpp: (JSC::Bindings::JavaRuntimeObject::JavaRuntimeObject):
  • bridge/jni/jsc/JavaRuntimeObject.h:
  • bridge/jsc/BridgeJSC.cpp: (JSC::Bindings::Instance::newRuntimeObject):
  • bridge/objc/ObjCRuntimeObject.h:
  • bridge/objc/ObjCRuntimeObject.mm: (JSC::Bindings::ObjCRuntimeObject::ObjCRuntimeObject):
  • bridge/objc/objc_class.mm: (JSC::Bindings::ObjcClass::fallbackObject):
  • bridge/objc/objc_instance.mm: (ObjcInstance::newRuntimeObject): (ObjCRuntimeMethod::ObjCRuntimeMethod): (ObjcInstance::getMethod):
  • bridge/objc/objc_runtime.h:
  • bridge/objc/objc_runtime.mm: (JSC::Bindings::ObjcFallbackObjectImp::ObjcFallbackObjectImp):
  • bridge/runtime_method.cpp: (JSC::RuntimeMethod::RuntimeMethod):
  • bridge/runtime_method.h:
  • bridge/runtime_object.cpp: (JSC::Bindings::RuntimeObject::RuntimeObject):
  • bridge/runtime_object.h:

2010-05-21 Oliver Hunt <oliver@apple.com>

Reviewed by Geoffrey Garen.

All callable objects should have a global object reference
https://bugs.webkit.org/show_bug.cgi?id=39495

Update the plugin proxy to handle the need for global object.

  • Plugins/Hosted/ProxyInstance.mm: (WebKit::ProxyInstance::newRuntimeObject): (WebKit::ProxyRuntimeMethod::ProxyRuntimeMethod): (WebKit::ProxyInstance::getMethod):
  • Plugins/Hosted/ProxyRuntimeObject.h:
  • Plugins/Hosted/ProxyRuntimeObject.mm: (WebKit::ProxyRuntimeObject::ProxyRuntimeObject):
11:14 AM Changeset in webkit [59940] by victorw@chromium.org
  • 2 edits in trunk/LayoutTests

2010-05-21 Victor Wang <victorw@chromium.org>

Unremivewed. Update test expecations for chromium.

  • platform/chromium/test_expectations.txt:
10:20 AM Changeset in webkit [59939] by ggaren@apple.com
  • 3 edits in trunk/JavaScriptCore

2010-05-21 Geoffrey Garen <ggaren@apple.com>

Reviewed by Oliver Hunt.

Need a short description and bug URL (OOPS!)


Removed the unused entry in the CallFrame, and reordered CallFrame
writes on the hot path to be in forwards order.


SunSpider says 0.3% faster.

  • interpreter/RegisterFile.h: (JSC::RegisterFile::):
  • jit/JITCall.cpp: (JSC::JIT::compileOpCall):
9:55 AM Changeset in webkit [59938] by eric@webkit.org
  • 4 edits in trunk

2010-05-21 Robin Cao <robin.cao@torchmobile.com.cn>

Reviewed by Adam Roben.

fast/dom/HTMLObjectElement/children-changed.html times out on Windows run-webkit-tests
https://bugs.webkit.org/show_bug.cgi?id=31315

  • platform/win/Skipped: The test should pass now.

2010-05-21 Robin Cao <robin.cao@torchmobile.com.cn>

Reviewed by Adam Roben.

fast/dom/HTMLObjectElement/children-changed.html times out on Windows run-webkit-tests
https://bugs.webkit.org/show_bug.cgi?id=31315

  • DumpRenderTree/win/FrameLoadDelegate.cpp: (FrameLoadDelegate::didFailProvisionalLoadWithError): Need to invoke locationChangeDone here as mac port does.
9:31 AM Changeset in webkit [59937] by steveblock@google.com
  • 2 edits in trunk/WebKit2

Unreviewed build fix for WebKit2

9:27 AM Changeset in webkit [59936] by jparent@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed.

Updating Chromium test_expectations for newly added test,
svg/animations/animate-points.html which uses unsupported API.

  • platform/chromium/test_expectations.txt:
9:06 AM Changeset in webkit [59935] by steveblock@google.com
  • 22 edits
    3 adds in trunk

2010-05-21 Steve Block <steveblock@google.com>

Reviewed by Jeremy Orlow.

Add DeviceOrientation and DeviceOrientationClient
https://bugs.webkit.org/show_bug.cgi?id=39479

  • src/WebViewImpl.cpp: (WebKit::WebViewImpl::WebViewImpl):

2010-05-21 Steve Block <steveblock@google.com>

Reviewed by Jeremy Orlow.

Add DeviceOrientation and DeviceOrientationClient
https://bugs.webkit.org/show_bug.cgi?id=39479

  • Api/qwebpage.cpp: (QWebPagePrivate::QWebPagePrivate):

2010-05-21 Steve Block <steveblock@google.com>

Reviewed by Jeremy Orlow.

Add DeviceOrientation and DeviceOrientationClient
https://bugs.webkit.org/show_bug.cgi?id=39479

  • webkit/webkitwebview.cpp: (webkit_web_view_init):

2010-05-21 Steve Block <steveblock@google.com>

Reviewed by Jeremy Orlow.

Add DeviceOrientation and DeviceOrientationClient
https://bugs.webkit.org/show_bug.cgi?id=39479

  • WebView.cpp: (WebView::initWithFrame):

2010-05-21 Steve Block <steveblock@google.com>

Reviewed by Jeremy Orlow.

Add DeviceOrientation and DeviceOrientationClient
https://bugs.webkit.org/show_bug.cgi?id=39479

  • WebView/WebView.mm: (-[WebView _commonInitializationWithFrameName:groupName:usesDocumentViews:]):

2010-05-21 Steve Block <steveblock@google.com>

Reviewed by Jeremy Orlow.

Add DeviceOrientation and DeviceOrientationClient
https://bugs.webkit.org/show_bug.cgi?id=39479

The page owns a DeviceOrientation object, which has a pointer to a
DeviceOrientationClient object provided by the embedder. The
DeviceOrientation object forwards requests to start listening to
orientation to the client, and when updates are available, fires a
DeviceOrientationEvent on the window object.

No new tests are possible at this time as the implementation is
incomplete. Future patches will add LayoutTestController methods
to provide mock orientation events to test this.

  • Android.mk:
  • CMakeLists.txt:
  • GNUmakefile.am:
  • WebCore.base.exp:
  • WebCore.gypi:
  • WebCore.pro:
  • WebCore.vcproj/WebCore.vcproj
  • WebCore.xcodeproj/project.pbxproj:
  • dom/DeviceOrientation.cpp: Added. (WebCore::DeviceOrientation::DeviceOrientation): (WebCore::DeviceOrientation::onDeviceOrientationChange):
  • dom/DeviceOrientation.h: Added.
  • dom/DeviceOrientationClient.h: Added. (WebCore::DeviceOrientationClient::~DeviceOrientationClient):
  • page/Page.cpp: (WebCore::Page::Page):
  • page/Page.h: (WebCore::Page::deviceOrientation):
  • svg/graphics/SVGImage.cpp: (WebCore::SVGImage::dataChanged):
8:28 AM Changeset in webkit [59934] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-21 Tasuku Suzuki <tasuku.suzuki@nokia.com>

Reviewed by Simon Hausmann.

[Qt] Fix compilation with QT_NO_GRAPHICSEFFECT
https://bugs.webkit.org/show_bug.cgi?id=38324

  • platform/graphics/qt/GraphicsLayerQt.cpp: (WebCore::GraphicsLayerQtImpl::flushChanges):
8:01 AM Changeset in webkit [59933] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-21 Jedrzej Nowacki <jedrzej.nowacki@nokia.com>

Reviewed by Darin Fisher.

Fix the HistoryController::pushState.

It should be possible to call the pushState method from
the first page in a window.

history.pushState doesn't work for the first page in a window.
https://bugs.webkit.org/show_bug.cgi?id=39418

  • loader/HistoryController.cpp: (WebCore::HistoryController::pushState):
7:44 AM QtWebKitJournal edited by Simon Hausmann
(diff)
7:44 AM Changeset in webkit [59932] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-21 Victoria Kirst <vrk@google.com>

Reviewed by David Levin.

[chromium] Fix slider status when buffering
https://bugs.webkit.org/show_bug.cgi?id=39370
Adjusts the buffering bar to be aligned with the slider thumb.

No new tests. (Covered by existing layout tests.)

  • rendering/RenderMediaControlsChromium.cpp: (WebCore::paintMediaSlider): Added logic to align the buffering bar with the thumb. Half of the thumb image is transparent, so the buffer bar is adjusted to fill in this gap.
7:42 AM QtWebKitJournal edited by Simon Hausmann
(diff)
7:40 AM QtWebKitJournal edited by Simon Hausmann
(diff)
7:21 AM Changeset in webkit [59931] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-21 Jesus Sanchez-Palencia <jesus@webkit.org>

Reviewed by Eric Seidel.

Extra processesArguments() calls in Document::processViewport
https://bugs.webkit.org/show_bug.cgi?id=39358

The viewport arguments are only needed when there is a frame->page(),
therefore we don't need to always call processArguments().

  • dom/Document.cpp: (WebCore::Document::processViewport):
6:42 AM Changeset in webkit [59930] by eric@webkit.org
  • 3 edits
    3 adds
    1 delete in trunk/JavaScriptCore

2010-05-21 Jedrzej Nowacki <jedrzej.nowacki@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

Split the QScriptValue autotest into smaller chunks.

File tst_qscriptvalue_generated.cpp was huge and it was difficult to compile
it with MSVS2008, because of the code optimization.

Tests were splited into a few files for better use of distributed
compilation.
Repeated calls to insert() and operator<<() where replaced by loops,
that should reduce time of code optimizing.

New files were generated by the same application, test logic wasn't changed.

[Qt] The QScriptValue autotest should be refactored.
https://bugs.webkit.org/show_bug.cgi?id=38987

  • qt/tests/qscriptvalue/qscriptvalue.pro:
  • qt/tests/qscriptvalue/tst_qscriptvalue.h:
  • qt/tests/qscriptvalue/tst_qscriptvalue_generated.cpp: Removed.
  • qt/tests/qscriptvalue/tst_qscriptvalue_generated_init.cpp: Added. (tst_QScriptValue::initScriptValues):
  • qt/tests/qscriptvalue/tst_qscriptvalue_generated_istype.cpp: Added. (tst_QScriptValue::isValid_initData): (tst_QScriptValue::isValid_makeData): (tst_QScriptValue::isValid_test): (tst_QScriptValue::isBool_initData): (tst_QScriptValue::isBool_makeData): (tst_QScriptValue::isBool_test): (tst_QScriptValue::isBoolean_initData): (tst_QScriptValue::isBoolean_makeData): (tst_QScriptValue::isBoolean_test): (tst_QScriptValue::isNumber_initData): (tst_QScriptValue::isNumber_makeData): (tst_QScriptValue::isNumber_test): (tst_QScriptValue::isFunction_initData): (tst_QScriptValue::isFunction_makeData): (tst_QScriptValue::isFunction_test): (tst_QScriptValue::isNull_initData): (tst_QScriptValue::isNull_makeData): (tst_QScriptValue::isNull_test): (tst_QScriptValue::isString_initData): (tst_QScriptValue::isString_makeData): (tst_QScriptValue::isString_test): (tst_QScriptValue::isUndefined_initData): (tst_QScriptValue::isUndefined_makeData): (tst_QScriptValue::isUndefined_test): (tst_QScriptValue::isObject_initData): (tst_QScriptValue::isObject_makeData): (tst_QScriptValue::isObject_test):
  • qt/tests/qscriptvalue/tst_qscriptvalue_generated_totype.cpp: Added. (tst_QScriptValue::toString_initData): (tst_QScriptValue::toString_makeData): (tst_QScriptValue::toString_test): (tst_QScriptValue::toNumber_initData): (tst_QScriptValue::toNumber_makeData): (tst_QScriptValue::toNumber_test): (tst_QScriptValue::toBool_initData): (tst_QScriptValue::toBool_makeData): (tst_QScriptValue::toBool_test): (tst_QScriptValue::toBoolean_initData): (tst_QScriptValue::toBoolean_makeData): (tst_QScriptValue::toBoolean_test): (tst_QScriptValue::toInteger_initData): (tst_QScriptValue::toInteger_makeData): (tst_QScriptValue::toInteger_test): (tst_QScriptValue::toInt32_initData): (tst_QScriptValue::toInt32_makeData): (tst_QScriptValue::toInt32_test): (tst_QScriptValue::toUInt32_initData): (tst_QScriptValue::toUInt32_makeData): (tst_QScriptValue::toUInt32_test): (tst_QScriptValue::toUInt16_initData): (tst_QScriptValue::toUInt16_makeData): (tst_QScriptValue::toUInt16_test):
6:18 AM Changeset in webkit [59929] by Philippe Normand
  • 2 edits
    1 add in trunk/WebCore

2010-05-17 Philippe Normand <pnormand@igalia.com>

Reviewed by Eric Carlson.

[GStreamer] video painting support on mac port
https://bugs.webkit.org/show_bug.cgi?id=39206

ImageGStreamer support for mac port. A CG Image is created using
the GstBuffer data. It can then be painted by the gstreamer player.

  • platform/graphics/gstreamer/ImageGStreamer.h:
  • platform/graphics/gstreamer/ImageGStreamerCG.mm: Added. (ImageGStreamer::createImage): (ImageGStreamer::ImageGStreamer): (ImageGStreamer::~ImageGStreamer):
5:55 AM QtWebKitBackportingFixes edited by Simon Hausmann
(diff)
5:53 AM Changeset in webkit [59928] by eric@webkit.org
  • 3 edits
    3 adds in trunk

2010-05-21 Robin Cao <robin.cao@torchmobile.com.cn>

Reviewed by Eric Seidel.

animateTransform does not work on gradientTransform
https://bugs.webkit.org/show_bug.cgi?id=38115

Tests if gradientTransform of a gradient is animateable.

  • svg/animations/animate-gradient-transform-expected.txt: Added.
  • svg/animations/animate-gradient-transform.html: Added.
  • svg/animations/script-tests/animate-gradient-transform.js: Added. (sample1): (sample2): (sample3): (executeTest):

2010-05-21 Robin Cao <robin.cao@torchmobile.com.cn>

Reviewed by Eric Seidel.

animateTransform does not work on gradientTransform
https://bugs.webkit.org/show_bug.cgi?id=38115

Tests: svg/animations/animate-gradient-transform.html

  • svg/SVGAnimateTransformElement.cpp: (WebCore::SVGAnimateTransformElement::hasValidTarget): Check if the target element is gradient. (WebCore::transformListFor): Ditto. (WebCore::SVGAnimateTransformElement::resetToBaseValue): Ditto. (WebCore::SVGAnimateTransformElement::applyResultsToTarget): Ditto.
5:15 AM Changeset in webkit [59927] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-21 Young Han Lee <joybro@company100.net>

Reviewed by Eric Seidel.

Fix guard around DatabaseSync
https://bugs.webkit.org/show_bug.cgi?id=38897

  • storage/DatabaseSync.cpp:
4:59 AM Changeset in webkit [59926] by steveblock@google.com
  • 56 edits
    1 move
    1 delete in trunk/LayoutTests

Geolocation LayoutTests should use standard template pattern
https://bugs.webkit.org/show_bug.cgi?id=39301

4:14 AM Changeset in webkit [59925] by Simon Hausmann
  • 2 edits in trunk/WebCore

[Qt] Prospective Qt/Mac build fix

My cpp is paranoid and doesn't like #if Q_WS_MAC:
error: #if with no expression

  • page/qt/EventHandlerQt.cpp:
4:03 AM Changeset in webkit [59924] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-21 Lucas De Marchi <lucas.demarchi@profusion.mobi>

Reviewed by Eric Seidel.

[EFL] Update Localized Strings. Remove markers from strings
since we are not using them and they are only polluting output.
https://bugs.webkit.org/show_bug.cgi?id=39371

No new tests required.

  • platform/efl/LocalizedStringsEfl.cpp: (WebCore::contextMenuItemTagOpenLinkInNewWindow): (WebCore::contextMenuItemTagDownloadLinkToDisk): (WebCore::contextMenuItemTagCopyLinkToClipboard): (WebCore::contextMenuItemTagOpenImageInNewWindow): (WebCore::contextMenuItemTagDownloadImageToDisk): (WebCore::contextMenuItemTagCopyImageToClipboard): (WebCore::contextMenuItemTagOpenFrameInNewWindow): (WebCore::contextMenuItemTagSelectAll): (WebCore::contextMenuItemTagUnicode): (WebCore::contextMenuItemTagInputMethods): (WebCore::contextMenuItemTagGoBack): (WebCore::contextMenuItemTagGoForward): (WebCore::contextMenuItemTagReload): (WebCore::contextMenuItemTagIgnoreSpelling): (WebCore::contextMenuItemTagLearnSpelling): (WebCore::contextMenuItemTagSearchWeb): (WebCore::contextMenuItemTagLookUpInDictionary): (WebCore::contextMenuItemTagOpenLink): (WebCore::contextMenuItemTagIgnoreGrammar): (WebCore::contextMenuItemTagSpellingMenu): (WebCore::contextMenuItemTagCheckSpelling): (WebCore::contextMenuItemTagCheckGrammarWithSpelling): (WebCore::contextMenuItemTagFontMenu): (WebCore::contextMenuItemTagOutline): (WebCore::contextMenuItemTagInspectElement): (WebCore::searchMenuClearRecentSearchesText): (WebCore::missingPluginText): Add missing message. (WebCore::multipleFileUploadText): (WebCore::crashedPluginText):
3:34 AM Changeset in webkit [59923] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-21 Lucas De Marchi <lucas.demarchi@profusion.mobi>

Reviewed by Eric Seidel.

[EF] Fix support for focus ring.
https://bugs.webkit.org/show_bug.cgi?id=39387

No new tests required.

  • html/HTMLAnchorElement.cpp: Add EFL to #ifdef (WebCore::HTMLAnchorElement::isMouseFocusable):
2:56 AM Changeset in webkit [59922] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-21 Kwang Yul Seo <skyul@company100.net>

Reviewed by Eric Seidel.

[BREWMP] Add missing localized string symbols.
https://bugs.webkit.org/show_bug.cgi?id=39394

Add missingPluginText and crashedPluginText.

  • platform/brew/LocalizedStringsBrew.cpp: (WebCore::missingPluginText): (WebCore::crashedPluginText):
2:40 AM Changeset in webkit [59921] by eric@webkit.org
  • 2 edits in trunk/JavaScriptCore

2010-05-21 Kwang Yul Seo <skyul@company100.net>

Reviewed by Eric Seidel.

Add COMPILER(MSVC) guard for strnstr
https://bugs.webkit.org/show_bug.cgi?id=39397

BREWMP uses MSVC for simulator build, but it is not OS(WINDOWS).
Add COMPILER(MSVC) guard for strnstr.

  • wtf/StringExtras.h:
2:24 AM Changeset in webkit [59920] by eric@webkit.org
  • 2 edits in trunk/JavaScriptCore

2010-05-21 Kwang Yul Seo <skyul@company100.net>

Reviewed by Eric Seidel.

[BREWMP] Add !PLATFORM(BREWMP) guard for isMainThread
https://bugs.webkit.org/show_bug.cgi?id=39396

BREWMP sets ENABLE(SINGLE_THREADED), so it uses isMainThread from ThreadingNone.cpp.
Exclude isMainThread in MainThread.cpp.

  • wtf/MainThread.cpp:
2:23 AM Changeset in webkit [59919] by Simon Hausmann
  • 2 edits in trunk/WebKit/qt

Symbian build fix.

[Qt] Updated the wins def file with one new export.

The DRT symbols are still missing, but I can't build DRT ;(

  • symbian/bwins/QtWebKitu.def:
1:52 AM Changeset in webkit [59918] by steveblock@google.com
  • 2 edits in trunk/WebCore

Calls to CallJNIMethodIDA() in JavaInstance::invokeMethod() are required on Android

12:57 AM Changeset in webkit [59917] by tony@chromium.org
  • 9 edits
    1 add
    9 deletes in trunk

2010-05-20 Tony Chang <tony@chromium.org>

Reviewed by Kent Tamura.

escape link text when copying or dragging links on win or chromium
https://bugs.webkit.org/show_bug.cgi?id=39413

  • editing/pasteboard/drop-link-expected.txt: Added.
  • editing/pasteboard/drop-link.html:
  • platform/chromium-linux/editing/pasteboard/drop-link-expected.checksum: Removed.
  • platform/chromium-linux/editing/pasteboard/drop-link-expected.png: Removed.
  • platform/chromium-linux/editing/pasteboard/drop-link-expected.txt: Removed.
  • platform/chromium-win/editing/pasteboard/drop-link-expected.checksum: Removed.
  • platform/chromium-win/editing/pasteboard/drop-link-expected.png: Removed.
  • platform/chromium-win/editing/pasteboard/drop-link-expected.txt: Removed.
  • platform/mac/editing/pasteboard/drop-link-expected.checksum: Removed.
  • platform/mac/editing/pasteboard/drop-link-expected.png: Removed.
  • platform/mac/editing/pasteboard/drop-link-expected.txt: Removed.

2010-05-20 Tony Chang <tony@chromium.org>

Reviewed by Kent Tamura.

escape link text when copying or dragging links on win or chromium
https://bugs.webkit.org/show_bug.cgi?id=39413

  • editing/markup.cpp: (WebCore::urlToMarkup):
  • editing/markup.h:
  • platform/chromium/ClipboardUtilitiesChromium.cpp:
  • platform/chromium/ClipboardUtilitiesChromium.h:
  • platform/win/ClipboardUtilitiesWin.cpp:
  • platform/win/ClipboardUtilitiesWin.h:

May 20, 2010:

11:17 PM Changeset in webkit [59916] by dbates@webkit.org
  • 2 edits in trunk/WebKitSite

2010-05-20 Daniel Bates <dbates@rim.com>

Rubber-stamped by Simon Fraser.

Spelling correction; change "acces" [sic] to "access".

  • quality/lifecycle.html:
11:10 PM Changeset in webkit [59915] by Philippe Normand
  • 5 edits
    2 adds in trunk/WebCore

2010-05-18 Philippe Normand <pnormand@igalia.com>

Reviewed by Eric Carlson.

[GStreamer] PlatformMedia support
https://bugs.webkit.org/show_bug.cgi?id=39300

Basic support for PlatformMedia in the gst player. The
PlatformMedia object contains a GStreamerGWorld object. That
object is empty for now. XOverlay features will be added later
on for easy review sake.

  • GNUmakefile.am:
  • platform/graphics/MediaPlayer.h: (WebCore::PlatformMedia::):
  • platform/graphics/gstreamer/GStreamerGWorld.cpp: Added. (WebCore::GStreamerGWorld::createGWorld): (WebCore::GStreamerGWorld::GStreamerGWorld): (WebCore::GStreamerGWorld::~GStreamerGWorld):
  • platform/graphics/gstreamer/GStreamerGWorld.h: Added.
  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp: (WebCore::MediaPlayerPrivateGStreamer::platformMedia): (WebCore::MediaPlayerPrivateGStreamer::createGSTPlayBin):
  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.h:
10:58 PM Changeset in webkit [59914] by eric@webkit.org
  • 1 edit
    1 add in trunk/WebCore

2010-05-20 Kwang Yul Seo <skyul@company100.net>

Reviewed by Eric Seidel.

[BREWMP] Add dummy SSLKeyGenerator
https://bugs.webkit.org/show_bug.cgi?id=39403

Add dummy implementation of SSLKeyGenerator.

  • platform/brew/SSLKeyGeneratorBrew.cpp: Added. (WebCore::WebCore::getSupportedKeySizes): (WebCore::WebCore::signedPublicKeyAndChallengeString):
10:23 PM Changeset in webkit [59913] by mrowe@apple.com
  • 4 edits in trunk

<rdar://problem/7848154> Remove the dependency on Foundation's private COCOA_FORMAL_PROTOCOLS_2 define.

Rubber-stamped by Dan Bernstein.

WebCore:

  • platform/mac/EmptyProtocolDefinitions.h:

WebKitTools:

  • DumpRenderTree/mac/LayoutTestControllerMac.mm:
10:15 PM Changeset in webkit [59912] by Simon Fraser
  • 3 edits in trunk/WebKit/win

2010-05-20 Simon Fraser <Simon Fraser>

Build fix, no review.

Fix the non-accelerated-compositing Windows build with some
#if USE(ACCELERATED_COMPOSITING) loving.

  • WebView.cpp:
  • WebView.h:
10:09 PM Changeset in webkit [59911] by eric@webkit.org
  • 1 edit
    2 adds in trunk/WebCore

2010-05-20 Kwang Yul Seo <skyul@company100.net>

Reviewed by Eric Seidel.

[BREWMP] Add Editor
https://bugs.webkit.org/show_bug.cgi?id=39404

Implement Editor::newGeneralClipboard.

  • editing/brew/EditorBrew.cpp: Added. (WebCore::Editor::newGeneralClipboard):
9:49 PM Changeset in webkit [59910] by Simon Fraser
  • 6 edits in trunk

2010-05-20 Simon Fraser <Simon Fraser>

Reviewed by Adam Roben.

Avoid flushing CA layers when a layout is pending
https://bugs.webkit.org/show_bug.cgi?id=39463
<rdar://problem/7999463>

Avoid rendering the compositing layers to the screen if there's a layout pending,
since the layer tree not in a state that should be presented to the user.

This fixes flashes in some types of content that dynamically add and remove layers.

Do this by adding a WKCACFLayerRendererClient for WKCACFLayerRenderer, which it can
call through to ask whether now is a good time to render. If not, it schedules
another render soon.

  • platform/graphics/win/WKCACFLayerRenderer.h: (WebCore::WKCACFLayerRendererClient::~WKCACFLayerRendererClient):
  • platform/graphics/win/WKCACFLayerRenderer.cpp: (WebCore::WKCACFLayerRenderer::acceleratedCompositingAvailable): (WebCore::WKCACFLayerRenderer::create): (WebCore::WKCACFLayerRenderer::WKCACFLayerRenderer): (WebCore::WKCACFLayerRenderer::render):
9:41 PM Changeset in webkit [59909] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-20 Kwang Yul Seo <skyul@company100.net>

Reviewed by Eric Seidel.

[BREWMP] Don't include CoreFoundation.h when building for BREW MP
https://bugs.webkit.org/show_bug.cgi?id=39405

Add !defined(BUILDING_BREWMP) guard for CoreFoundation.h.

  • WebCorePrefix.h:
9:19 PM Changeset in webkit [59908] by eric@webkit.org
  • 2 edits in trunk/JavaScriptCore

2010-05-20 Kwang Yul Seo <skyul@company100.net>

Reviewed by Eric Seidel.

[BREWMP] Use skia as BREW MP's graphics backend.
https://bugs.webkit.org/show_bug.cgi?id=39407

Define WTF_PLATFORM_SKIA=1 for BREW MP.

  • wtf/Platform.h:
8:56 PM Changeset in webkit [59907] by eric@webkit.org
  • 1 edit
    2 adds in trunk/WebCore

2010-05-20 Kwang Yul Seo <skyul@company100.net>

Reviewed by Eric Seidel.

[BREWMP] Add ScrollTheme
https://bugs.webkit.org/show_bug.cgi?id=39406

As BREW MP always uses frame flattening, there is no need to render scorllbars.
Use the default scrollbar theme with thickness 0.

  • platform/brew/ScrollbarThemeBrew.cpp: Added. (WebCore::ScrollbarTheme::nativeTheme): (WebCore::ScrollbarThemeBrew::~ScrollbarThemeBrew):
  • platform/brew/ScrollbarThemeBrew.h: Added.
8:42 PM Changeset in webkit [59906] by eric@webkit.org
  • 2 edits in trunk/WebKitTools

2010-05-20 Tony Gentilcore <tonyg@chromium.org>

Reviewed by Daniel Bates.

Look in /proc/registry64 for the Platform SDK on 64-bit Windows.
https://bugs.webkit.org/show_bug.cgi?id=39296

The build-webkit script failed for me on Vista 64. A web search turned
up this blog post with a patch that worked for me:
http://www.nicholaswilson.me.uk/2010/04/hacking-webkit-fail/

  • Scripts/webkitdirs.pm:
8:39 PM Changeset in webkit [59905] by ggaren@apple.com
  • 3 edits in trunk/JavaScriptCore

Fixed naming mixup: it's op_call_put_result, not ret_result.

Reviewed by Beth Dakin.

  • bytecode/CodeBlock.cpp:

(JSC::CodeBlock::dump):

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::privateExecute):

8:20 PM Changeset in webkit [59904] by jhoneycutt@apple.com
  • 4 edits
    1 add in trunk/WebCore

REGRESSION(r53637): DivX plug-in fails to start until window is resized
https://bugs.webkit.org/show_bug.cgi?id=39457
<rdar://problem/8006102>

Before r53637, we called Widget::move() (which caused us to call
NPP_SetWindow) before painting a plug-in. r53637 removed the call to
Widget::move(), and we end up never calling NPP_SetWindow for plug-ins
with the "DeferFirstSetWindowCall" quirk, including the DivX plug-in.

Reviewed by Simon Fraser.

  • manual-tests/divx-plugin-fails-to-draw.html: Added.
  • plugins/PluginView.cpp:

(WebCore::PluginView::PluginView):
Initialize new member to false.

  • plugins/PluginView.h:

Added new member.

  • plugins/win/PluginViewWin.cpp:

(WebCore::PluginView::paint):
Call setNPWindowRect() before painting to ensure that NPP_SetWindow gets
called.
(WebCore::PluginView::setNPWindowRect):
Set m_haveCalledSetWindow.

8:06 PM Changeset in webkit [59903] by ukai@chromium.org
  • 7 edits in trunk

2010-05-20 Fumitoshi Ukai <ukai@chromium.org>

Reviewed by Alexey Proskuryakov.

WebSocket handshake incompatible change in draft-hixie-thewebsocketprotocol-76
https://bugs.webkit.org/show_bug.cgi?id=35572

Fix LayoutTests for new WebSocket protocol.
It requires https://bugs.webkit.org/show_bug.cgi?id=38034 to pass websocket tests.

  • websocket/tests/handshake-error-expected.txt: Update expected data.
  • websocket/tests/handshake-error_wsh.py: Without CRLF, the wsh will sends "ThisWillCauseHandshakeErrorHTTP/1.1 101 WebSocket Protocol Handshake\r\n", which is legal for the first line of draft 76 WebSocket opening handshake. (4.1 Opening Handhshake, step 28 to 30). To fail handshake, it needs \r\n.
  • websocket/tests/long-invalid-header-expected.txt: Originally, it expects Upgrade header after status line. In draft 76, order is not important. But "pppp..\r\n" would fail because it misses ":" (end of name) before \r.

2010-05-20 Fumitoshi Ukai <ukai@chromium.org>

Reviewed by Alexey Proskuryakov.

WebSocket handshake incompatible change in draft-hixie-thewebsocketprotocol-76
https://bugs.webkit.org/show_bug.cgi?id=35572

WebSocket opening handshake is changed. New protocol draft could be found at http://www.whatwg.org/specs/web-socket-protocol/
It requires https://bugs.webkit.org/show_bug.cgi?id=38034 to pass websocket tests.

  • websockets/WebSocketHandshake.cpp: (WebCore::extractResponseCode): add lineLength parameter to return length of status line. (WebCore::hostName): Added. (WebCore::generateSecWebSocketKey): Added. (WebCore::generateKey3): Added. (WebCore::setChallengeNumber): Added. (WebCore::generateChallengeResponseExpected): Added. (WebCore::WebSocketHandshake::WebSocketHandshake): generate challenge response key and expected data. (WebCore::WebSocketHandshake::clientLocation): use hostName. (WebCore::WebSocketHandshake::clientHandshakeMessage): changed for draft 76 spec. (WebCore::WebSocketHandshake::clientHandshakeRequest): (WebCore::WebSocketHandshake::readServerHandshake): changed for draft 76 spec. m_mode is managed in this method. (WebCore::WebSocketHandshake::readHTTPHeaders): change error log messages. (WebCore::WebSocketHandshake::processHeaders): chagned for draft 76 spec. (WebCore::WebSocketHandshake::checkResponseHeaders): return boolean whether response header is ok or not and not change m_mode in it.
  • websockets/WebSocketHandshake.h:
8:04 PM Changeset in webkit [59902] by eric@webkit.org
  • 2 edits in trunk/WebKitTools

2010-05-20 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

ThreadedMessageQueue should use with_statement for exception safety
https://bugs.webkit.org/show_bug.cgi?id=39233

  • Scripts/webkitpy/common/thread/threadedmessagequeue.py:
7:52 PM Changeset in webkit [59901] by eric@webkit.org
  • 3 edits in trunk/WebKit/chromium

2010-05-20 Viet-Trung Luu <viettrungluu@chromium.org>

Reviewed by Darin Fisher.

[Chromium] Don't rely on focused node to route mouse events to plugins.
https://bugs.webkit.org/show_bug.cgi?id=39375
http://crbug.com/43935

On mouse down, do a hit test and check if a plugin was hit. If so, then
save the node for future mouse events (until mouse up or capture lost).

  • src/WebViewImpl.cpp: (WebKit::WebViewImpl::WebViewImpl): (WebKit::WebViewImpl::mouseDown): (WebKit::WebViewImpl::handleInputEvent): (WebKit::WebViewImpl::mouseCaptureLost):
  • src/WebViewImpl.h: Remove m_haveMouseCapture; add m_mouseCaptureNode.
7:44 PM Changeset in webkit [59900] by victorw@chromium.org
  • 2 edits
    4 adds in trunk/LayoutTests

2010-05-20 Victor Wang <victorw@chromium.org>

Unreviewed. Update test expectations for chromium.

  • platform/chromium-linux/fast/css/font-face-in-shadow-DOM-expected.checksum: Added.
  • platform/chromium-linux/fast/css/font-face-in-shadow-DOM-expected.png: Added.
  • platform/chromium-win/fast/css/font-face-in-shadow-DOM-expected.checksum: Added.
  • platform/chromium-win/fast/css/font-face-in-shadow-DOM-expected.png: Added.
  • platform/chromium/test_expectations.txt:
7:34 PM Changeset in webkit [59899] by eric@webkit.org
  • 4 edits in trunk/LayoutTests

2010-05-20 Zhenyao Mo <zmo@google.com>

Reviewed by Dimitri Glazkov.

fast/canvas/webgl/texture-npot.html failed on leopard bot
https://bugs.webkit.org/show_bug.cgi?id=39128

  • fast/canvas/webgl/texture-npot-expected.txt: Adding the failed test cases back.
  • fast/canvas/webgl/texture-npot.html:
  • platform/mac-leopard/Skipped: Skip texture-npot.html on leopard for now.
7:19 PM Changeset in webkit [59898] by eric@webkit.org
  • 3 edits in trunk/WebKit/chromium

2010-05-20 Dominic Mazzoni <dmazzoni@chromium.org>

Reviewed by Darin Fisher.

Add headingLevel and setFocused methods.

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

  • public/WebAccessibilityObject.h:
  • src/WebAccessibilityObject.cpp: (WebKit::WebAccessibilityObject::headingLevel): (WebKit::WebAccessibilityObject::setFocused):
7:14 PM Changeset in webkit [59897] by Adam Roben
  • 2 edits in trunk/WebCore

Stop leaking all CACFContexts

Fixes <http://webkit.org/b/39466> <rdar://problem/8007141>.

Reviewed by Simon Fraser.

  • platform/graphics/win/WKCACFContextFlusher.cpp:

(WebCore::WKCACFContextFlusher::addContext): Only retain the context
when we first add it to the m_contexts set. Otherwise we'll retain the
same context multiple times, causing it to leak.

7:02 PM Changeset in webkit [59896] by eric@webkit.org
  • 3 edits in trunk/WebKitTools

2010-05-20 Diego Gonzalez <diegohcg@webkit.org>

Reviewed by Kenneth Rohde Christiansen.

[Qt] QtTestBrowser does not support websites which requires HTTP Authentication via dialogs
https://bugs.webkit.org/show_bug.cgi?id=38456

  • QtTestBrowser/webpage.cpp: (WebPage::WebPage): (WebPage::authenticationRequired):
  • QtTestBrowser/webpage.h:
7:01 PM Changeset in webkit [59895] by ggaren@apple.com
  • 6 edits in trunk/JavaScriptCore

2010-05-20 Geoffrey Garen <ggaren@apple.com>

Reviewed by Oliver Hunt.

Whittling away at CodeBlock use: Removed a little wonkiness in closure lookup
https://bugs.webkit.org/show_bug.cgi?id=39444


Calculate all lookup depths at compile time. I'm not sure why we couldn't
do this before, but whatever the reason, it seems to be gone now.

  • bytecompiler/BytecodeGenerator.cpp: (JSC::BytecodeGenerator::findScopedProperty):
  • bytecompiler/BytecodeGenerator.h:
  • interpreter/Interpreter.cpp: (JSC::Interpreter::resolveSkip): (JSC::Interpreter::resolveGlobalDynamic): (JSC::Interpreter::privateExecute):
  • jit/JITOpcodes.cpp: (JSC::JIT::emit_op_get_scoped_var): (JSC::JIT::emit_op_put_scoped_var): (JSC::JIT::emit_op_resolve_skip): (JSC::JIT::emit_op_resolve_global_dynamic): (JSC::JIT::emitSlow_op_resolve_global_dynamic):
  • jit/JITOpcodes32_64.cpp: (JSC::JIT::emit_op_get_scoped_var): (JSC::JIT::emit_op_put_scoped_var): (JSC::JIT::emit_op_resolve_skip):
6:45 PM Changeset in webkit [59894] by eric@webkit.org
  • 2 edits
    1 add in trunk/WebCore

2010-05-20 Young Han Lee <joybro@company100.net>

Reviewed by Darin Adler.

Create filenameFromString for all ports except GTK and EFL.
https://bugs.webkit.org/show_bug.cgi?id=39348

  • platform/FileSystem.cpp: Added. (WebCore::filenameFromString):
  • platform/FileSystem.h:
6:42 PM Changeset in webkit [59893] by mrowe@apple.com
  • 5 edits in branches/safari-533-branch

Versioning.

6:41 PM Changeset in webkit [59892] by mrowe@apple.com
  • 1 copy in tags/Safari-533.10

New tag.

6:40 PM Changeset in webkit [59891] by mthole@apple.com
  • 2 edits in trunk/WebKit/mac

When using a scale factor > 1, scrollbars sometimes appear when not necessary
https://bugs.webkit.org/show_bug.cgi?id=39458

Reviewed by Dave Hyatt.

  • WebView/WebDynamicScrollBarsView.mm:

(-[WebDynamicScrollBarsView updateScrollers]): Round up non-integral sizes from AppKit
so that they can be compared against the integral document size.

6:19 PM Changeset in webkit [59890] by eric@webkit.org
  • 1 edit
    1 add in trunk/WebCore

2010-05-20 Young Han Lee <joybro@company100.net>

Reviewed by Darin Adler.

Port SharedBuffer to POSIX.
https://bugs.webkit.org/show_bug.cgi?id=39283

  • platform/posix/SharedBufferPOSIX.cpp: Added. (WebCore::SharedBuffer::createWithContentsOfFile):
6:19 PM Changeset in webkit [59889] by mrowe@apple.com
  • 13 edits
    4 adds in branches/safari-533-branch

Merge r59876.

6:06 PM Changeset in webkit [59888] by eric@webkit.org
  • 7 edits in trunk

2010-05-20 Zhenyao Mo <zmo@google.com>

Reviewed by Dimitri Glazkov.

Map RGBA4/RGB5_A1 to RGBA and RGB565 to RGB in RenderbufferStorage
https://bugs.webkit.org/show_bug.cgi?id=39077

  • fast/canvas/webgl/framebuffer-object-attachment-expected.txt: Add the test cases for color renderbuffer creation and attachment to framebuffer.
  • fast/canvas/webgl/framebuffer-object-attachment.html: Ditto.

2010-05-20 Zhenyao Mo <zmo@google.com>

Reviewed by Dimitri Glazkov.

Map RGBA4/RGB5_A1 to RGBA and RGB565 to RGB in RenderbufferStorage
https://bugs.webkit.org/show_bug.cgi?id=39077

  • platform/graphics/mac/GraphicsContext3DMac.cpp: (WebCore::GraphicsContext3D::renderbufferStorage): Mapping the enums.

2010-05-20 Zhenyao Mo <zmo@google.com>

Reviewed by Dimitri Glazkov.

Map RGBA4/RGB5_A1 to RGBA and RGB565 to RGB in RenderbufferStorage
https://bugs.webkit.org/show_bug.cgi?id=39077

  • src/WebGraphicsContext3DDefaultImpl.cpp: (WebKit::WebGraphicsContext3DDefaultImpl::renderbufferStorage): Mapping the enums.
6:05 PM Changeset in webkit [59887] by mrowe@apple.com
  • 3 edits in branches/safari-533-branch/WebKit/mac

Merge r59793.

6:05 PM Changeset in webkit [59886] by mrowe@apple.com
  • 2 edits in branches/safari-533-branch/WebCore

Merge r59853.

6:05 PM Changeset in webkit [59885] by mrowe@apple.com
  • 2 edits in branches/safari-533-branch/WebCore

Merge r59873.

6:04 PM Changeset in webkit [59884] by mrowe@apple.com
  • 2 edits in branches/safari-533-branch/WebCore

Merge r59871.

6:04 PM Changeset in webkit [59883] by mrowe@apple.com
  • 5 edits in branches/safari-533-branch/WebCore

Merge r59854.

6:04 PM Changeset in webkit [59882] by mrowe@apple.com
  • 2 edits in branches/safari-533-branch/WebCore

Merge r59864.

6:04 PM Changeset in webkit [59881] by mrowe@apple.com
  • 4 edits
    2 adds in branches/safari-533-branch

Merge r59795.

6:04 PM Changeset in webkit [59880] by mrowe@apple.com
  • 2 edits
    3 adds in branches/safari-533-branch

Merge r59859.

6:04 PM Changeset in webkit [59879] by mrowe@apple.com
  • 2 edits in branches/safari-533-branch/WebCore

Merge r59732.

6:04 PM Changeset in webkit [59878] by mrowe@apple.com
  • 4 edits in branches/safari-533-branch/WebCore

Merge r59731.

6:04 PM Changeset in webkit [59877] by mrowe@apple.com
  • 5 edits
    3 adds in branches/safari-533-branch

Merge r59798.

5:37 PM Changeset in webkit [59876] by mitz@apple.com
  • 13 edits
    4 adds in trunk

<rdar://problem/8007953> Textarea using custom font appears blank

Reviewed by Dave Hyatt.

WebCore:

Test: fast/css/font-face-in-shadow-DOM.html

When a remote font is loaded, CSSFontSelector forces a style recalc, which replaces all
RenderSyles that have FontFallbackLists referencing the placeholder font with fresh
RenderStyles. However, it does not descend into shadow DOM trees, so those may end up with
styles that still reference the placeholder font.

The fix is to add RenderObject::requiresForcedStyleRecalcPropagation() and have it return
true from renderers that maintain shadow DOM trees or otherwise keep their own RenderStyles.

  • dom/Element.cpp:

(WebCore::Element::recalcStyle): Check if forced style recalc needs to propagated.

  • rendering/RenderButton.h:

(WebCore::RenderButton::requiresForcedStyleRecalcPropagation):

  • rendering/RenderDataGrid.h:

(WebCore::RenderDataGrid::requiresForcedStyleRecalcPropagation):

  • rendering/RenderFileUploadControl.h:

(WebCore::RenderFileUploadControl::requiresForcedStyleRecalcPropagation):

  • rendering/RenderListItem.h:

(WebCore::RenderListItem::requiresForcedStyleRecalcPropagation):

  • rendering/RenderMedia.h:

(WebCore::RenderMedia::requiresForcedStyleRecalcPropagation):

  • rendering/RenderMenuList.h:

(WebCore::RenderMenuList::RenderMenuList::requiresForcedStyleRecalcPropagation):

  • rendering/RenderObject.h:

(WebCore::RenderObject::requiresForcedStyleRecalcPropagation):

  • rendering/RenderProgress.h:

(WebCore::RenderProgress::requiresForcedStyleRecalcPropagation):

  • rendering/RenderSlider.h:

(WebCore::RenderSlider::requiresForcedStyleRecalcPropagation):

  • rendering/RenderTextControl.h:

(WebCore::RenderTextControl::requiresForcedStyleRecalcPropagation):

LayoutTests:

  • fast/css/font-face-in-shadow-DOM.html: Added.
  • platform/mac/fast/css/font-face-in-shadow-DOM-expected.checksum: Added.
  • platform/mac/fast/css/font-face-in-shadow-DOM-expected.png: Added.
  • platform/mac/fast/css/font-face-in-shadow-DOM-expected.txt: Added.
4:58 PM Changeset in webkit [59875] by mrowe@apple.com
  • 10 edits in branches/safari-533-branch/WebCore

Merge r59776.

4:57 PM Changeset in webkit [59874] by mrowe@apple.com
  • 11 edits
    1 move
    1 delete in branches/safari-533-branch/WebCore

Merge r59677.

4:02 PM Changeset in webkit [59873] by jer.noble@apple.com
  • 2 edits in trunk/WebCore

No review; build fix only.

When WTF_USE_ACCELERATED_COMPOSITING is turned off, MediaPlayerPrivateQuickTimeVisualContext.cpp
must include CoreGraphics/CGContext.h.

  • platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp:
3:51 PM Changeset in webkit [59872] by Martin Robinson
  • 2 edits in trunk/LayoutTests

2010-05-20 Martin Robinson <mrobinson@igalia.com>

Not reviewed.

Tests that use Geolocation.getCurrentPosition fail
https://bugs.webkit.org/show_bug.cgi?id=39454

  • platform/gtk/Skipped: Skip failing tests until this bug is resolved.
3:41 PM Changeset in webkit [59871] by jer.noble@apple.com
  • 2 edits in trunk/WebCore

2010-05-20 Jer Noble <jer.noble@apple.com>

Reviewed by Sam Weinig.

Video elements show no video on Windows machines that do not support accelerated compositing
https://bugs.webkit.org/show_bug.cgi?id=39446
rdar://problem/7999794

Implement the paint() method in MediaPlayerPrivateQuickTimeVisualContext. The visual context should
be set up in load() and torn down in the destructor (as opposed to setUpVideoRendering and
tearDownVideoRendering, which won't get called in a non-accelerated compositing case).


  • platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp: (WebCore::MediaPlayerPrivateQuickTimeVisualContext::~MediaPlayerPrivateQuickTimeVisualContext): (WebCore::MediaPlayerPrivateQuickTimeVisualContext::load): (WebCore::MediaPlayerPrivateQuickTimeVisualContext::paint): (WebCore::MediaPlayerPrivateQuickTimeVisualContext::visualContextTimerFired): (WebCore::MediaPlayerPrivateQuickTimeVisualContext::retrieveCurrentImage): (WebCore::MediaPlayerPrivateQuickTimeVisualContext::setUpVideoRendering): (WebCore::MediaPlayerPrivateQuickTimeVisualContext::tearDownVideoRendering):
3:32 PM Changeset in webkit [59870] by victorw@chromium.org
  • 5 edits in trunk

2010-05-20 Abhishek Arya <inferno@chromium.org>

Reviewed by Adam Barth.

Added method to WebSecurityOrigin for invoking
SecurityOrigin::canAccessPasswordManager.
https://bugs.webkit.org/show_bug.cgi?id=38916

  • public/WebSecurityOrigin.h:
  • src/WebSecurityOrigin.cpp: (WebKit::WebSecurityOrigin::canAccessPasswordManager):

2010-05-20 Abhishek Arya <inferno@chromium.org>

Reviewed by Adam Barth.

Added a method to check if the security origin can access
password manager.
https://bugs.webkit.org/show_bug.cgi?id=38916

  • page/SecurityOrigin.h: (WebCore::SecurityOrigin::canAccessPasswordManager):
3:27 PM Changeset in webkit [59869] by victorw@chromium.org
  • 2 edits
    4 adds in trunk/LayoutTests

2010-05-20 Victor Wang <victorw@chromium.org>

Unreviewed. Update test expectations for chromium.

  • platform/chromium-mac/svg/filters/feLighting-crash-expected.checksum: Added.
  • platform/chromium-mac/svg/filters/feLighting-crash-expected.png: Added.
  • platform/chromium-win/svg/filters/feLighting-crash-expected.checksum: Added.
  • platform/chromium-win/svg/filters/feLighting-crash-expected.png: Added.
  • platform/chromium/test_expectations.txt:
3:17 PM Changeset in webkit [59868] by Darin Adler
  • 12 edits in trunk

2010-05-20 Darin Adler <Darin Adler>

Reviewed by Eric Seidel.

Fix warnings seen on the buildbots today
https://bugs.webkit.org/show_bug.cgi?id=39368

  • profiler/ProfileNode.cpp: (JSC::getCount): Removed unneeded initialization of global variable. These are all initialized to zero anyway, so no need to try to initialize it and get a warning.
  • wtf/CurrentTime.cpp: (WTF::currentTime): Removed unused global variable.

2010-05-20 Darin Adler <Darin Adler>

Reviewed by Eric Seidel.

Fix warnings seen on the buildbots today
https://bugs.webkit.org/show_bug.cgi?id=39368

  • loader/icon/IconDatabase.cpp: (WebCore::IconDatabase::pruneUnretainedIcons): Use the type "long long" for things being printed with "%lli". There is no guaranteed that int64_t is the same thing as long long.
  • page/EventHandler.cpp: (WebCore::EventHandler::handleMousePressEvent): Added parentheses as suggested by warnings in newer versions of GCC.
  • platform/ContextMenu.cpp: Fix #if around the functions to match the #if around the call sites to avoid unused function warning.
  • platform/graphics/gtk/ImageGtk.cpp: (WebCore::Image::loadPlatformResource): Use NULL to end a variable argument list rather than 0. This is a case where the WebKit "use 0 instead of NULL" guideline is incorrect and won't work properly.
  • platform/win/SystemTimeWin.cpp: (WebCore::userIdleTime): Removed unnecessary initialization of LASTINPUTINFO.
  • platform/win/WebCoreInstanceHandle.h: Added property svn:eol-style. Made functions inline instead of static. It's not correct to have functions with internal linkage in a header file. Marking them inline makes more sense.
  • plugins/win/PluginMessageThrottlerWin.cpp: (WebCore::PluginMessageThrottlerWin::PluginMessageThrottlerWin): Reordered the initializers to match the order of the data members from the class definition.
  • plugins/win/PluginViewWin.cpp: (WebCore::PluginView::paintIntoTransformedContext): Initialized all the fields of WINDOWPOS. I know this goes against the traditions of Windows programming, but it's correct and silences the warning. Also removed the unneeded separate code path for non-WinCE platforms that translates only the corner of the window rectangle; the WinCE version is correct for normal Windows as well. Not sure why this wasn't caught when the code was originally checked in.
3:05 PM Changeset in webkit [59867] by Martin Robinson
  • 2 edits in trunk/LayoutTests

2010-05-20 Martin Robinson <mrobinson@igalia.com>

Not reviewed.

https://bugs.webkit.org/show_bug.cgi?id=39388
Re-enable geolocation tests on GTK+ now that this bug is closed.

  • platform/gtk/Skipped: Re-enable geolocation tests.
2:56 PM Changeset in webkit [59866] by yaar@chromium.org
  • 29 edits
    2 adds in trunk

2010-05-20 Justin Schuh <jschuh@chromium.org>

Reviewed by Adam Barth.

Moving frame.src checks out of the bindings
https://bugs.webkit.org/show_bug.cgi?id=37815

Moved JavaScript frame.src checks out of bindings and into
HTMLFrameElementBase. Added main thread state stack to JavaScriptCore
so ExecState is available inside core DOM. Updated affected bindings
(except for GObject, which will need to be updated to avoid origin
failures inside native code).

  • Android.jscbindings.mk:
  • CMakeLists.txt:
  • GNUmakefile.am:
  • WebCore.gypi:
  • WebCore.pro:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.xcodeproj/project.pbxproj:
  • bindings/js/JSBindingsAllInOne.cpp:
  • bindings/js/JSCallbackData.cpp: (WebCore::JSCallbackData::invokeCallback):
  • bindings/js/JSEventListener.cpp: (WebCore::JSEventListener::handleEvent):
  • bindings/js/JSInjectedScriptHostCustom.cpp: (WebCore::InjectedScriptHost::createInjectedScript):
  • bindings/js/JSMainThreadExecState.cpp: Added.
  • bindings/js/JSMainThreadExecState.h: Added. (WebCore::JSMainThreadExecState::currentState): (WebCore::JSMainThreadExecState::call): (WebCore::JSMainThreadExecState::evaluate): (WebCore::JSMainThreadExecState::JSMainThreadExecState): (WebCore::JSMainThreadExecState::~JSMainThreadExecState): (WebCore::JSMainThreadNullState::JSMainThreadNullState):
  • bindings/js/ScheduledAction.cpp: (WebCore::ScheduledAction::executeFunctionInContext): (WebCore::ScheduledAction::execute):
  • bindings/js/ScheduledAction.h:
  • bindings/js/ScriptController.cpp: (WebCore::ScriptController::evaluateInWorld): (WebCore::ScriptController::canAccessFromCurrentOrigin):
  • bindings/js/ScriptController.h:
  • bindings/js/ScriptFunctionCall.cpp: (WebCore::ScriptFunctionCall::call):
  • bindings/objc/ObjCEventListener.mm:
  • bindings/objc/WebScriptObject.mm: (-[WebScriptObject callWebScriptMethod:withArguments:]): (-[WebScriptObject evaluateWebScript:]):
  • bindings/scripts/CodeGeneratorObjC.pm:
  • bindings/scripts/test/ObjC/DOMTestCallback.mm: (-[DOMTestCallback callbackWithClass1Param:]): (-[DOMTestCallback callbackWithClass2Param:strArg:]): (-[DOMTestCallback callbackWithNonBoolReturnType:]): (-[DOMTestCallback customCallback:class6Param:]):
  • bindings/scripts/test/ObjC/DOMTestInterface.mm:
  • bindings/scripts/test/ObjC/DOMTestObj.mm: (-[DOMTestObj readOnlyIntAttr]): (-[DOMTestObj readOnlyStringAttr]): (-[DOMTestObj readOnlyTestObjAttr]): (-[DOMTestObj intAttr]): (-[DOMTestObj setIntAttr:]): (-[DOMTestObj longLongAttr]): (-[DOMTestObj setLongLongAttr:]): (-[DOMTestObj unsignedLongLongAttr]): (-[DOMTestObj setUnsignedLongLongAttr:]): (-[DOMTestObj stringAttr]): (-[DOMTestObj setStringAttr:]): (-[DOMTestObj testObjAttr]): (-[DOMTestObj setTestObjAttr:]): (-[DOMTestObj attrWithException]): (-[DOMTestObj setAttrWithException:]): (-[DOMTestObj attrWithSetterException]): (-[DOMTestObj setAttrWithSetterException:]): (-[DOMTestObj attrWithGetterException]): (-[DOMTestObj setAttrWithGetterException:]): (-[DOMTestObj customAttr]): (-[DOMTestObj setCustomAttr:]): (-[DOMTestObj scriptStringAttr]): (-[DOMTestObj voidMethod]): (-[DOMTestObj voidMethodWithArgs:strArg:objArg:]): (-[DOMTestObj intMethod]): (-[DOMTestObj intMethodWithArgs:strArg:objArg:]): (-[DOMTestObj objMethod]): (-[DOMTestObj objMethodWithArgs:strArg:objArg:]): (-[DOMTestObj methodThatRequiresAllArgs:objArg:]): (-[DOMTestObj methodThatRequiresAllArgsAndThrows:objArg:]): (-[DOMTestObj serializedValue:]): (-[DOMTestObj methodWithException]): (-[DOMTestObj customMethod]): (-[DOMTestObj customMethodWithArgs:strArg:objArg:]): (-[DOMTestObj customArgsAndException:]): (-[DOMTestObj addEventListener:listener:useCapture:]): (-[DOMTestObj removeEventListener:listener:useCapture:]): (-[DOMTestObj withDynamicFrame]): (-[DOMTestObj withDynamicFrameAndArg:]): (-[DOMTestObj withDynamicFrameAndOptionalArg:optionalArg:]): (-[DOMTestObj withDynamicFrameAndUserGesture:]): (-[DOMTestObj withDynamicFrameAndUserGestureASAD:optionalArg:]): (-[DOMTestObj withScriptStateVoid]): (-[DOMTestObj withScriptStateObj]): (-[DOMTestObj withScriptStateVoidException]): (-[DOMTestObj withScriptStateObjException]): (-[DOMTestObj methodWithOptionalArg:]): (-[DOMTestObj methodWithNonOptionalArgAndOptionalArg:opt:]): (-[DOMTestObj methodWithNonOptionalArgAndTwoOptionalArgs:opt1:opt2:]):
  • bindings/v8/ScriptController.cpp: (WebCore::ScriptController::canAccessFromCurrentOrigin):
  • bindings/v8/ScriptController.h:
  • html/HTMLFrameElementBase.cpp: (WebCore::HTMLFrameElementBase::isURLAllowed):

2010-05-20 Justin Schuh <jschuh@chromium.org>

Reviewed by Adam Barth.

Moving frame.src checks out of the bindings
https://bugs.webkit.org/show_bug.cgi?id=37815

  • http/tests/security/xss-DENIED-iframe-src-alias-expected.txt:
  • http/tests/security/xss-DENIED-iframe-src-alias.html:
2:55 PM Changeset in webkit [59865] by kdecker@apple.com
  • 3 edits in trunk/WebKit/mac

Reviewed by Anders Carlsson.

https://bugs.webkit.org/show_bug.cgi?id=39441
<rdar://problem/7985715> Flash context menu is both horizontally and vertically offset from point of click
<rdar://problem/7986109> Youtube video controller UI entirely missing
<rdar://problem/7986154> Flash content paints at horizontally and vertically shifted locations (within the plug-in region)

  • Plugins/Hosted/WebHostedNetscapePluginView.mm: (-[WebHostedNetscapePluginView updateAndSetWindow]): The base coordinates of a window and it's contentView happen to be the equal at a userSpaceScaleFactor of 1. For non-1.0 scale factors this assumption is false. Accordingly we now convert to the window contentView coordinate system when computing bounds in "window" and the visible rect.
  • Plugins/WebNetscapePluginView.mm: (-[WebNetscapePluginView saveAndSetNewPortStateForUpdate:]): Ditto.
2:30 PM Changeset in webkit [59864] by Adam Roben
  • 2 edits in trunk/WebCore

Fix an HRGN leak in WKCACFLayerRenderer

Fixes <http://webkit.org/b/39312> <rdar://problem/7998728> REGRESSION
(r53686-r55990): Graphics corruption when watching video (affects
youtube.com)

Reviewed by Darin Adler.

  • platform/graphics/win/WKCACFLayerRenderer.cpp:

(WebCore::getDirtyRects): Use an OwnPtr to hold the HRGN we allocate.
That way we don't have to remember to destroy it (as we were
forgetting to do) when we bail out of this function early.

2:20 PM Changeset in webkit [59863] by ggaren@apple.com
  • 2 edits in trunk/JavaScriptCore

2010-05-20 Geoffrey Garen <ggaren@apple.com>

Reviewed by Darin Adler.

Removed some reliance on callFame[CodeBlock] by storing CodeBlock in a
local variable in the Interpreter.
https://bugs.webkit.org/show_bug.cgi?id=39447

Small speedup on SunSpider in Interpreter mode.

  • interpreter/Interpreter.cpp: (JSC::Interpreter::privateExecute):
  • jsc.cpp:
  • wtf/Platform.h:
1:49 PM Changeset in webkit [59862] by darin@chromium.org
  • 11 edits in trunk

2010-05-20 Darin Fisher <darin@chromium.org>

Reviewed by Nate Chapin.

[chromium] Provide a way to catch exceptions thrown while interacting
with a NPObject via WebBindings methods.
https://bugs.webkit.org/show_bug.cgi?id=39378

This change also includes a small bit of cleanup in V8NPObject and
friends. I moved code into the WebCore namespace where appropriate.


In _NPN_Invoke, I also moved the call to _NPN_Evaluate outside of the
context scope. I did this to avoid having nested ExceptionCatcher
objects, which is not strictly necessary, but it seemed cleaner.
_NPN_Evaluate already takes care of creating a context scope.

  • bindings/v8/NPV8Object.cpp: (WebCore::v8ObjectToNPObject): (WebCore::npCreateV8ScriptObject): (_NPN_Invoke): (_NPN_InvokeDefault): (_NPN_Evaluate): (_NPN_EvaluateHelper): (_NPN_GetProperty): (_NPN_SetProperty): (_NPN_RemoveProperty): (_NPN_HasProperty): (_NPN_HasMethod): (_NPN_SetException): (_NPN_Enumerate): (_NPN_Construct):
  • bindings/v8/NPV8Object.h:
  • bindings/v8/V8NPObject.cpp:
  • bindings/v8/V8NPObject.h:
  • bindings/v8/V8NPUtils.cpp: (WebCore::convertV8ObjectToNPVariant): (WebCore::pushExceptionHandler): (WebCore::popExceptionHandler): (WebCore::ExceptionCatcher::ExceptionCatcher): (WebCore::ExceptionCatcher::~ExceptionCatcher):
  • bindings/v8/V8NPUtils.h:
  • bindings/v8/npruntime.cpp:
1:20 PM Changeset in webkit [59861] by Martin Robinson
  • 3 edits in trunk/WebKitTools

2010-05-20 Martin Robinson <mrobinson@igalia.com>

Reviewed by Eric Seidel.

editingBehavior settings needs to be set back to a reasonable default between tests
https://bugs.webkit.org/show_bug.cgi?id=39433

For now, hard code the default setting during reset, so that the serialized
version of the setting stays in sync with expectations.

  • DumpRenderTree/mac/DumpRenderTree.mm: (resetDefaultsToConsistentValues): Reset editing behavior to the appropriate platform default.
  • DumpRenderTree/win/DumpRenderTree.cpp: (resetDefaultsToConsistentValues): Ditto.
1:12 PM Changeset in webkit [59860] by barraclough@apple.com
  • 12 edits in trunk/JavaScriptCore

Bug 39408 - Unify JIT/interpreter return behaviour.

Reviewed by Oliver Hunt.

Presently the JIT and the interpreter have differing implementations in how
they handle storing the result of a function call back to the register file.
In both cases the op_call ( / _eval / _varargs / op_construct) opcode has an
operand indicating the VM register in which the result should be stored.
The JIT plants code after the call to store the result, so the value will be
stored as soon as the callee has returned. In the interpreter the call
passes the return value register id into the callee via the callee callframe,
and the callee is responsible for writing the result back into its callers
register file after it has restored the parents callframe pointer, but before
returning.

Instead, move the task of writing the call result to the register file into a
new opcode (op_call_put_result), and after returning the callee should leave
the return value in a canonical location. In the case of the interpreter,
this canonical location is a local variable in privateExecute
(functionReturnValue), in the case of the JIT this is the normal return value
registers (regT0, or regT1:regT0 in JSVALUE32_64). op_call_put_result stores
the result from the canonical location to the registerfile.

In addition to unifying JIT & interpreter behaviour this change allows us to
remove a slot from the callframe, omit the write of the result where the
return value from the call is not used, and provides a 2% speedup on sunspider
in the interpreter.

  • bytecode/CodeBlock.cpp:

(JSC::CodeBlock::dump):

  • bytecode/Opcode.h:
  • bytecompiler/BytecodeGenerator.cpp:

(JSC::BytecodeGenerator::emitCall):
(JSC::BytecodeGenerator::emitCallVarargs):
(JSC::BytecodeGenerator::emitConstruct):

  • bytecompiler/BytecodeGenerator.h:

(JSC::BytecodeGenerator::finalDestinationOrIgnored):

  • bytecompiler/NodesCodegen.cpp:

(JSC::NewExprNode::emitBytecode):
(JSC::FunctionCallValueNode::emitBytecode):
(JSC::FunctionCallResolveNode::emitBytecode):
(JSC::FunctionCallBracketNode::emitBytecode):
(JSC::FunctionCallDotNode::emitBytecode):
(JSC::CallFunctionCallDotNode::emitBytecode):
(JSC::ApplyFunctionCallDotNode::emitBytecode):

  • interpreter/CallFrame.h:

(JSC::ExecState::init):
(JSC::ExecState::noCaller):

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::dumpRegisters):
(JSC::Interpreter::throwException):
(JSC::Interpreter::privateExecute):

  • interpreter/RegisterFile.h:

(JSC::RegisterFile::):

  • jit/JIT.cpp:

(JSC::JIT::privateCompileMainPass):

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

(JSC::JIT::compileOpCallSetupArgs):
(JSC::JIT::compileOpConstructSetupArgs):
(JSC::JIT::emit_op_call_put_result):
(JSC::JIT::compileOpCallVarargs):
(JSC::JIT::compileOpCallVarargsSlowCase):
(JSC::JIT::compileOpCall):
(JSC::JIT::compileOpCallSlowCase):
(JSC::JIT::compileOpCallVarargsSetupArgs):

1:10 PM Changeset in webkit [59859] by steveblock@google.com
  • 2 edits
    3 adds in trunk

2010-05-20 Marcus Bulach <bulach@chromium.org>

Reviewed by Steve Block.

Ensure timers are stopped on Geolocation::disconnectFrame()
https://bugs.webkit.org/show_bug.cgi?id=39388

fast/dom/Geolocation/notimer-after-unload.html, plus it should be possible to re-enable Gtk LayoutTests.

  • page/Geolocation.cpp: (WebCore::Geolocation::disconnectFrame):
12:44 PM Changeset in webkit [59858] by bfulgham@webkit.org
  • 2 edits in trunk/WebKitTools

Build fix. No review.

The WebKitAPITest targets do not use the "_debug" suffix needed
by the WinCairo port. Added Debug_Cairo target to correct this.

  • WebKitAPITest/WebKitAPITest.vcproj:
12:32 PM Changeset in webkit [59857] by Martin Robinson
  • 2 edits in trunk/LayoutTests

2010-05-20 Martin Robinson <mrobinson@igalia.com>

Unreviewed.

editingBehavior settings needs to be set back to a reasonable default between tests
https://bugs.webkit.org/show_bug.cgi?id=39433

I forgot to revert the expected results for this test after reverting it.

  • editing/selection/extend-selection-after-double-click-expected.txt:
12:18 PM Changeset in webkit [59856] by jamesr@google.com
  • 3 edits
    2 adds in trunk

2010-05-20 James Robinson <jamesr@chromium.org>

Reviewed by Eric Seidel.

Ensures styles are up-to-date before determining selection
https://bugs.webkit.org/show_bug.cgi?id=39389

This adds a call to document::updateStyleIfNeeded() to
Frame::notifyRendererOfSelectionChange(). Without this call, if there
is a pending style update that will detach part of the DOM and the
the selection is within that part of the DOM when
notifyRendererOfSeletionChange is called, the rootEditableElement
algorithm ends up walking through detached parts of the render tree.

Test: editing/selection/focus-and-display-none.html

  • page/Frame.cpp: (WebCore::Frame::notifyRendererOfSelectionChange):

2010-05-20 James Robinson <jamesr@chromium.org>

Reviewed by Eric Seidel.

Tests putting focus into a textarea and setting display:none
https://bugs.webkit.org/show_bug.cgi?id=39389

  • editing/selection/focus-and-display-none-expected.txt: Added.
  • editing/selection/focus-and-display-none.html: Added.
12:14 PM Changeset in webkit [59855] by bfulgham@webkit.org
  • 2 edits in trunk/WebKit/win

[WinCairo] Correct scaling for print preview
https://bugs.webkit.org/show_bug.cgi?id=39329

Reviewed by Adam Roben.

Cairo does not properly deal with Windows HDCs that have been
scaled using MM_ANISOTROPIC mapping mode, and a WindowExt and
ViewportExt setting.
(see http://bugs.freedesktop.org/show_bug.cgi?id=28161)

Instead, reset the HDC's WorldTransform to be unscaled, then
scale the cairo context to the desired scaling, and perform
the drawing operation.

  • WebFrame.cpp:

(WebFrame::drawHeader): Use pre-positioned context to simplify

this method.

(WebFrame::drawFooter): Use pre-positioned context to simplify

this method.

(WebFrame::spoolPage): Revise scaling logic to turn off HDC

scaling, and scale using only Cairo. Revert scaling at end
so that user-defined GDI-based routines (e.g., header/footer)
will draw in the right position.

(WebFrame::spoolPages): Identify print preview case, and

retrieve scaling factors from preview context. Set the
Cairo context to use these factors during the spoolPage
operation.

11:51 AM Changeset in webkit [59854] by Adam Roben
  • 5 edits in trunk/WebCore

Remove code that fetched, but did nothing useful with, a CFDictionary in MediaPlayerPrivateQuickTimeVisualContext

I also removed the code in QTPixelBuffer that vended the dictionary.

Fixes <http://webkit.org/b/39435> <rdar://problem/8009278>
QTPixelBuffer passes CFDictionaries across the DLL boundary, which can
lead to crashes

Reviewed by Darin Adler.

  • platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp:

(WebCore::MediaPlayerPrivateQuickTimeVisualContext::retrieveCurrentImage):
Deleted code that fetched the attachments dictionary, which was never
used other than to pass it to CFRetain/CFRelease, which could be
enough to cause a crash due to incompatible copies of
CoreFoundation.dll.

  • platform/graphics/win/QTMovieVisualContext.h: Added a now-needed

forward declaration.

  • platform/graphics/win/QTPixelBuffer.cpp:
  • platform/graphics/win/QTPixelBuffer.h:

Removed the now-unused attachments function.

11:51 AM Changeset in webkit [59853] by Adam Roben
  • 2 edits in trunk/WebCore

Fix a CFData leak in MediaPlayerPrivateQuickTimeVisualContext

Fixes <http://webkit.org/b/39432> <rdar://problem/8008992>

Reviewed by Ada Chan

  • platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp:

(WebCore::QTCFDictionaryCreateWithDataCallback): Use a RetainPtr to
hold the CFData we allocate so it will get released when this function
is exited. Also pass kCFAllocatorNull as the bytes deallocator to
CFDataCreateWithBytesNoCopy so that CF doesn't try to deallocate the
bytes we pass to it.

11:36 AM Changeset in webkit [59852] by Martin Robinson
  • 2 edits in trunk/LayoutTests

2010-05-20 Martin Robinson <mrobinson@igalia.com>

Reviewed by Ojan Vafai.

editingBehavior settings needs to be set back to a reasonable default between tests
https://bugs.webkit.org/show_bug.cgi?id=39433

Revert the changes from r59840 to this test until there is a method
in the WebKit APIs to consistently reset the editingBehavior setting
to a reasonable default.

11:32 AM Changeset in webkit [59851] by jianli@chromium.org
  • 2 edits in trunk/WebCore

Rename GenericTask* to CrossThreadTask* in CrossThreadTask.h.
https://bugs.webkit.org/show_bug.cgi?id=39437

Reviewed by David Levin.

  • dom/CrossThreadTask.h:

(WebCore::):
(WebCore::CrossThreadTask1::create):
(WebCore::CrossThreadTask1::CrossThreadTask1):
(WebCore::CrossThreadTask2::create):
(WebCore::CrossThreadTask2::CrossThreadTask2):
(WebCore::CrossThreadTask3::create):
(WebCore::CrossThreadTask3::CrossThreadTask3):
(WebCore::CrossThreadTask4::create):
(WebCore::CrossThreadTask4::CrossThreadTask4):
(WebCore::CrossThreadTask5::create):
(WebCore::CrossThreadTask5::CrossThreadTask5):
(WebCore::CrossThreadTask6::create):
(WebCore::CrossThreadTask6::CrossThreadTask6):
(WebCore::CrossThreadTask7::create):
(WebCore::CrossThreadTask7::CrossThreadTask7):
(WebCore::CrossThreadTask8::create):
(WebCore::CrossThreadTask8::CrossThreadTask8):
(WebCore::createCallbackTask):

11:31 AM Changeset in webkit [59850] by victorw@chromium.org
  • 2 edits in trunk/LayoutTests

2010-05-20 Victor Wang <victorw@chromium.org>

Unreviewed. Update test expectations from chromium.

  • platform/chromium/test_expectations.txt:
10:57 AM Changeset in webkit [59849] by jianli@chromium.org
  • 16 edits
    1 move in trunk

Rename GenericWorkerTask.h to CrossThreadTask.h and move it to dom directory.
https://bugs.webkit.org/show_bug.cgi?id=39135

Reviewed by David Levin.

WebCore:

  • GNUmakefile.am:
  • WebCore.gypi:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.xcodeproj/project.pbxproj:
  • dom/CrossThreadTask.h: Renamed from WebCore/workers/GenericWorkerTask.h.
  • html/FileStreamProxy.cpp:
  • loader/WorkerThreadableLoader.cpp:
  • websockets/WorkerThreadableWebSocketChannel.cpp:
  • workers/DefaultSharedWorkerRepository.cpp:
  • workers/WorkerMessagingProxy.cpp:
  • workers/WorkerScriptLoader.cpp:

WebKit/chromium:

  • src/WebSharedWorkerImpl.cpp:
  • src/WebWorkerBase.cpp:
  • src/WebWorkerClientImpl.cpp:
  • src/WebWorkerImpl.cpp:
10:52 AM EFLWebKit edited by leandro@profusion.mobi
(diff)
10:44 AM Changeset in webkit [59848] by adele@apple.com
  • 2 edits in trunk/WebCore

Remove the Safari welcome page site-specific quirk, since its no longer needed.

Reviewed by Mark Rowe.

  • css/CSSStyleSheet.cpp: (WebCore::CSSStyleSheet::cssRules):
10:37 AM Changeset in webkit [59847] by steveblock@google.com
  • 34 edits
    11 adds in trunk

2010-05-20 Steve Block <steveblock@google.com>

Reviewed by Jeremy Orlow.

Provide bindings for DeviceOrientation
https://bugs.webkit.org/show_bug.cgi?id=39210

Adds ENABLE_DEVICE_ORIENTATION to XCode project file, always disabled.

  • Configurations/FeatureDefines.xcconfig:

2010-05-20 Steve Block <steveblock@google.com>

Reviewed by Jeremy Orlow.

Provide bindings for DeviceOrientation
https://bugs.webkit.org/show_bug.cgi?id=39210

Adds ENABLE_DEVICE_ORIENTATION to VisualStudio project files, always disabled.

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

2010-05-20 Steve Block <steveblock@google.com>

Reviewed by Jeremy Orlow.

Provide bindings for DeviceOrientation
https://bugs.webkit.org/show_bug.cgi?id=39210

Adds ENABLE_DEVICE_ORIENTATION to XCode project file, always disabled.

  • Configurations/FeatureDefines.xcconfig:

2010-05-20 Steve Block <steveblock@google.com>

Reviewed by Jeremy Orlow.

Provide bindings for DeviceOrientation
https://bugs.webkit.org/show_bug.cgi?id=39210

Tests: fast/dom/DeviceOrientation/window-property.html

fast/dom/Window/window-properties-on-device-orientation.html

Adds bindings for DeviceOrientation as defined in
http://dev.w3.org/geo/api/spec-source-orientation.html
This is guarded by ENABLE(DEVICE_ORIENTATION) which is currently disabled on
all platforms but Android.

  • Android.derived.jscbindings.mk:
  • Android.derived.v8bindings.mk:
  • Android.mk:
  • Configurations/FeatureDefines.xcconfig:
  • DerivedSources.cpp:
  • DerivedSources.make:
  • GNUmakefile.am:
  • WebCore.gypi:
  • WebCore.pri:
  • WebCore.pro:
  • WebCore.xcodeproj/project.pbxproj:
  • bindings/js/JSEventCustom.cpp: (WebCore::toJS):
  • bindings/v8/custom/V8EventCustom.cpp: (WebCore::toV8):
  • dom/DeviceOrientationEvent.cpp: Added. (WebCore::DeviceOrientationEvent::DeviceOrientationEvent): (WebCore::DeviceOrientationEvent::initDeviceOrientationEvent):
  • dom/DeviceOrientationEvent.h: Added. (WebCore::DeviceOrientationEvent::create): (WebCore::DeviceOrientationEvent::alpha): (WebCore::DeviceOrientationEvent::beta): (WebCore::DeviceOrientationEvent::gamma): (WebCore::DeviceOrientationEvent::isDeviceOrientationEvent):
  • dom/DeviceOrientationEvent.idl: Added.
  • dom/Event.cpp: (WebCore::Event::isDeviceOrientationEvent):
  • dom/Event.h:
  • dom/EventNames.h:
  • page/DOMWindow.h:
  • page/DOMWindow.idl:

2010-05-20 Steve Block <steveblock@google.com>

Reviewed by Jeremy Orlow.

Provide bindings for DeviceOrientation
https://bugs.webkit.org/show_bug.cgi?id=39210

Modifies existing fast/dom/Window tests to skip window.ondeviceorientation until
it is widely supported.
Adds new fast/dom/Window/window-properties-on-device-orientation.html to test
type and presence of window.ondeviceorientation.
Adds new fast/dom/DeviceOrientation directory and initial test.
Adds all DeviceOrientation tests to all skipped lists.

  • fast/dom/DeviceOrientation: Added.
  • fast/dom/DeviceOrientation/script-tests: Added.
  • fast/dom/DeviceOrientation/script-tests/TEMPLATE.html: Added.
  • fast/dom/DeviceOrientation/script-tests/window-property.js: Added. (hasOnDeviceOrientationProperty):
  • fast/dom/DeviceOrientation/window-property-expected.txt: Added.
  • fast/dom/DeviceOrientation/window-property.html: Added.
  • fast/dom/Window/script-tests/window-property-descriptors.js:
  • fast/dom/Window/window-properties-on-device-orientation-expected.txt: Added.
  • fast/dom/Window/window-properties-on-device-orientation.html: Added.
  • fast/dom/Window/window-properties.html:
  • platform/chromium/test_expectations.txt:
  • platform/gtk/Skipped:
  • platform/mac/Skipped:
  • platform/qt/Skipped:
  • platform/win/Skipped:
10:26 AM Changeset in webkit [59846] by kenneth@webkit.org
  • 2 edits in trunk/WebCore

Use 0.15 as text drag delay when Q_WS_MAC is defined, which is
consistent with the Mac OS X platform.

Rubberstamped by Antti Koivisto.

  • page/qt/EventHandlerQt.cpp:
10:24 AM Changeset in webkit [59845] by Martin Robinson
  • 2 edits in trunk/WebKit/win

2010-05-20 Martin Robinson <mrobinson@igalia.com>

Unreviewed.

Touch WebKit.idl to ensure that interfaces rebuild.

  • Interfaces/WebKit.idl: Touched.
10:15 AM Changeset in webkit [59844] by Martin Robinson
  • 2 edits in trunk/WebKitTools

2010-05-20 Martin Robinson <mrobinson@igalia.com>

Reviewed by Ojan Vafai.

editing/selection/extend-selection-after-double-click.html crashes on the Leopard Intel release bot
https://bugs.webkit.org/show_bug.cgi?id=39431

  • DumpRenderTree/mac/LayoutTestControllerMac.mm: (LayoutTestController::setEditingBehavior): Prevent a double-free by not having this variable be in the auto-release pool.
9:48 AM Changeset in webkit [59843] by Martin Robinson
  • 3 edits in trunk/WebKit/win

2010-05-20 Martin Robinson <mrobinson@igalia.com>

Reviewed by Adam Roben.

Fix the Windows build and move new IDL declarations to the bottom of the file.

  • Interfaces/IWebPreferences.idl: Move new API to the bottom of the IDL file to prevent vtable mismatch.
  • WebPreferences.cpp: (WebPreferences::setEditingBehavior): Change the type of the parameter to setEditingBehavior to the proper type.
9:19 AM Changeset in webkit [59842] by Martin Robinson
  • 2 edits in trunk/WebKit/win

2010-05-20 Martin Robinson <mrobinson@igalia.com>

Unreviewed.

Fix the Windows build.

  • WebView.cpp: (WebView::notifyPreferencesChanged): Change behavior to 'editingBehavior'.
9:11 AM Changeset in webkit [59841] by tkent@chromium.org
  • 1 edit in trunk/WebKit/win/Interfaces/WebKit.idl

Unreviewed. Touch WebKit.idl as usual.

8:48 AM Changeset in webkit [59840] by Martin Robinson
  • 32 edits in trunk

2010-05-20 Martin Robinson <Martin Robinson>

Reviewed by Ojan Vafai.

Expose the editing behavior setting in DRT to test all editing code paths
https://bugs.webkit.org/show_bug.cgi?id=38603

  • editing/selection/extend-selection-after-double-click.html: Use the new DRT support for changing editing behavior.
  • editing/selection/extend-selection-after-double-click-expected.txt: Update expected results to reflect both behaviors.

2010-05-20 Martin Robinson <Martin Robinson>

Reviewed by Ojan Vafai.

Expose the editing behavior setting in DRT to test all editing code paths
https://bugs.webkit.org/show_bug.cgi?id=38603

  • public/WebSettings.h: (WebKit::WebSettings::): Added an enum for EditingBehavior types.
  • src/WebSettingsImpl.cpp: (WebKit::WebSettingsImpl::setEditingBehavior): Added.
  • src/WebSettingsImpl.h:

2010-05-20 Martin Robinson <Martin Robinson>

Reviewed by Ojan Vafai.

Expose the editing behavior setting in DRT to test all editing code paths
https://bugs.webkit.org/show_bug.cgi?id=38603

  • WebView/WebFrame.mm: (core):
  • WebView/WebFrameInternal.h: Added a conversion method from the API enum to the WebCore enum.
  • WebView/WebPreferenceKeysPrivate.h: Added a preference key for the new setting.
  • WebView/WebPreferences.mm: (+[WebPreferences initialize]): Initialize the EditingBehavior to Mac style. (-[WebPreferences editingBehavior]): Added. (-[WebPreferences setEditingBehavior:]): Added.
  • WebView/WebPreferencesPrivate.h: Added the new API points to the private API.
  • WebView/WebView.mm: (-[WebView _preferencesChangedNotification:]): Set the editing behavior via the WebPreferences setting.

2010-05-20 Martin Robinson <Martin Robinson>

Reviewed by Ojan Vafai.

Expose the editing behavior setting in DRT to test all editing code paths
https://bugs.webkit.org/show_bug.cgi?id=38603

Expose the EditingBehavior setting in the Windows API.

  • Interfaces/IWebPreferences.idl: Add the API point for setting the editing behavior.
  • WebPreferenceKeysPrivate.h: Add a key for the editing behavior setting.
  • WebPreferences.cpp: (WebPreferences::editingBehavior): Added. (WebPreferences::setEditingBehavior): Added.
  • WebPreferences.h: Add method declarations.
  • WebView.cpp: (WebView::notifyPreferencesChanged): Update the WebCore setting based on the WebPreferences setting.

2010-05-20 Martin Robinson <Martin Robinson>

Reviewed by Ojan Vafai.

Expose the editing behavior setting in DRT to test all editing code paths
https://bugs.webkit.org/show_bug.cgi?id=38603

  • DumpRenderTree/LayoutTestController.cpp: (setEditingBehaviorCallback): Added. (LayoutTestController::staticFunctions): Expose the setEditingBehaviorCallback function.
  • DumpRenderTree/LayoutTestController.h:
  • DumpRenderTree/chromium/LayoutTestController.cpp: Add callback method for setting editing behavior.
  • DumpRenderTree/chromium/LayoutTestController.h: Declaration for this method.
  • DumpRenderTree/gtk/LayoutTestControllerGtk.cpp: (LayoutTestController::setEditingBehavior): Implementation of editing behavior control.
  • DumpRenderTree/mac/LayoutTestControllerMac.mm: (LayoutTestController::setEditingBehavior): Ditto
  • DumpRenderTree/qt/LayoutTestControllerQt.cpp: (LayoutTestController::setEditingBehavior): Added stub implementation of editing behavior control.
  • DumpRenderTree/qt/LayoutTestControllerQt.h: (LayoutTestController::setEditingBehavior): Add slot for controlling editor behavior.
  • DumpRenderTree/win/LayoutTestControllerWin.cpp: (LayoutTestController::setEditingBehavior): Implementation of editing behavior control.
  • DumpRenderTree/wx/LayoutTestControllerWx.cpp: (LayoutTestController::setEditingBehavior): Added stub implementation of editing behavior control.
8:46 AM Changeset in webkit [59839] by tkent@chromium.org
  • 2 edits in trunk/WebKitTools

2010-05-20 Kent Tamura <tkent@chromium.org>

Reviewed by Eric Seidel.

[DRT/Chromium] Increase the time out value
https://bugs.webkit.org/show_bug.cgi?id=39203

Change the time out value of Chromium DRT to 30 seconds, which is
the same as other ports.
If a DRT process exits before new-run-webkit-tests detects time
out, new-run-webkit-tests assumes the DRT process crashed.

  • DumpRenderTree/chromium/TestShell.cpp: (TestShell::layoutTestTimeout): Change the time out value from 10 seconds to 30 seconds.
8:22 AM Changeset in webkit [59838] by eric@webkit.org
  • 2 edits in trunk/WebKit/qt

2010-05-20 Janne Koskinen <janne.p.koskinen@digia.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt] WINSCW compile fix for qwebframe test
https://bugs.webkit.org/show_bug.cgi?id=38722

WINSCW cannot determine template type up the hierarchy
to common base class.

  • tests/qwebframe/tst_qwebframe.cpp:
8:13 AM Changeset in webkit [59837] by Simon Hausmann
  • 2 edits in trunk/WebCore

Fix painting when using clipToImageBuffer()

Reviewed by Simon Hausmann.

When we apply the transform of the parent painter to the painter of
the transparency layer, we adopt its coordinate system, thus offset
should not be in page coordinates, but in the coordinate system of
the parent painter.

  • platform/graphics/qt/GraphicsContextQt.cpp:

(WebCore::TransparencyLayer::TransparencyLayer):

8:01 AM Changeset in webkit [59836] by eric@webkit.org
  • 2 edits in trunk/WebKit/qt

2010-05-20 Laszlo Gombos <Laszlo Gombos>

Reviewed by Kenneth Rohde Christiansen.

Remove unused "old style" private APIs

These symbols were introduced after QtWebKit v4.6
so no-one should be using them

  • WebCoreSupport/DumpRenderTreeSupportQt.cpp:
7:21 AM Changeset in webkit [59835] by agl@chromium.org
  • 3 edits
    2 adds in trunk

2010-05-20 Adam Langley <agl@chromium.org>

Reviewed by David Levin.

[chromium] Avoid crash when msttcorefonts aren't provided

https://bugs.webkit.org/show_bug.cgi?id=39015
http://code.google.com/p/chromium/issues/detail?id=43831

  • platform/graphics/chromium/FontCacheLinux.cpp: (WebCore::FontCache::createFontPlatformData):
7:15 AM Changeset in webkit [59834] by zherczeg@webkit.org
  • 2 edits in trunk/LayoutTests

Unreviewed. Update Qt specific expected file.

  • platform/qt/svg/filters/feLighting-crash-expected.txt:
6:56 AM Changeset in webkit [59833] by eric@webkit.org
  • 3 edits in trunk/WebKit/qt

2010-05-20 Rajiv Ramanasankaran <rajiv.ramanasankaran@nokia.com>

Reviewed by Simon Hausmann.

[Qt] QWebPage::inputMethodQuery() returns wrong values for Qt::ImCursorPosition, Qt::ImAnchorPosition
https://bugs.webkit.org/show_bug.cgi?id=38779

The earlier implementation was written with the assumption that in this scenario the
anchor position always corresponds to the START index and that the current cursor position
always corresponds to the END index in WebKit.

Updated the implementation of QWebPage::inputMethodQuery(Qt::ImCursorPosition) and
QWebPage::inputMethodQuery(Qt::ImAnchorPosition) for the case where the Editor is not in
composition mode. In the non-composition mode, the Anchor and the Current cursor positions
correspond to the Base and Extent position offsets in WebKit.

Also added the auto-tests for the RIGHT to LEFT and LEFT to RIGHT selections.

  • Api/qwebpage.cpp: (QWebPage::inputMethodQuery): Now returning correct values for Qt::ImCursorPosition and Qt::ImAnchorPosition when the Editor is not in composition mode.
  • tests/qwebpage/tst_qwebpage.cpp: (tst_QWebPage::inputMethods): Added auto-tests for RIGHT to LEFT and LEFT to RIGHT selections
6:53 AM Changeset in webkit [59832] by zherczeg@webkit.org
  • 3 edits
    5 adds in trunk

WebCore: Fix a crash caused by feLigthing::apply()
https://bugs.webkit.org/show_bug.cgi?id=39004

Reviewed by Dirk Schulze.

Make FELighting::apply() similar to other filters' applies
to avoid an assertion fail in putUnmultipliedImageData(),
when effectDrawingRect has negative location (x or y is less than 0).

Test: svg/filters/feLighting-crash.svg

  • svg/graphics/filters/SVGFELighting.cpp:

(WebCore::FELighting::apply):

LayoutTests: In case of lighting SVG effects, a wider output rectangle
than the input image size should not cause crash.
https://bugs.webkit.org/show_bug.cgi?id=39004

Reviewed by Dirk Schulze.

  • platform/mac/svg/filters/feLighting-crash-expected.checksum: Added.
  • platform/mac/svg/filters/feLighting-crash-expected.png: Added.
  • platform/mac/svg/filters/feLighting-crash-expected.txt: Added.
  • platform/qt/svg/filters/feLighting-crash-expected.txt: Added.
  • svg/filters/feLighting-crash.svg: Added.
6:43 AM Changeset in webkit [59831] by eric@webkit.org
  • 2 edits in trunk/WebKit/qt

2010-05-20 Luiz Agostini <luiz.agostini@openbossa.org>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Skipping popup focus test for maemo
https://bugs.webkit.org/show_bug.cgi?id=39314

Skipping popup focus test for maemo in qwebframe auto test.

The test method tst_QWebFrame::popupFocus() was testing popup focus AND input
field focus. The input field focus has been removed from the method popupFocus()
and a new test method named inputFieldFocus() has been added. Finally the test
method popupFocus() has been skipped for maemo.

  • tests/qwebframe/tst_qwebframe.cpp:
6:02 AM Changeset in webkit [59830] by cevans@google.com
  • 2 edits in trunk/WebKitTools

Unreviewed.

Marking myself as a committer.

4:48 AM Changeset in webkit [59829] by Chris Jerdonek
  • 6 edits in trunk

2010-05-20 Chris Jerdonek <Chris Jerdonek>

Reviewed by Eric Seidel.

Modified FrameLoader::urlSelected() to accept a KURL instead of a
ResourceRequest.

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

Since ResourceRequest has non-explicit single-parameter constructors for
String and KURL, urlSelected() previously accepted any of String, KURL,
and ResourceRequest. This revision changes urlSelected() to accept only
a KURL to make the API tighter and easier to refactor.

No new functionality, so no new tests.

  • loader/FrameLoader.cpp: (WebCore::FrameLoader::urlSelected):
    • Changed the public overload to accept a KURL instead of a ResourceRequest.
  • loader/FrameLoader.h:
    • Changed the public overload to accept a KURL instead of a ResourceRequest.
  • wml/WMLAElement.cpp: (WebCore::WMLAElement::defaultEventHandler):
    • Updated the call to urlSelected().

2010-05-20 Chris Jerdonek <Chris Jerdonek>

Reviewed by Eric Seidel.

Modified FrameLoader::urlSelected() to accept a KURL instead of a
ResourceRequest.

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

Since ResourceRequest has non-explicit single-parameter constructors for
String and KURL, urlSelected() previously accepted any of String, KURL,
and ResourceRequest. This revision changes urlSelected() to accept only
a KURL to make the API tighter and easier to refactor.

  • WebCoreSupport/WebContextMenuClient.cpp: (WebContextMenuClient::searchWithGoogle):
    • Updated the call to urlSelected().
4:07 AM Changeset in webkit [59828] by morrita@google.com
  • 5 edits
    2 adds in trunk

2010-05-20 MORITA Hajime <morrita@google.com>

Reviewed by Kent Tamura.

2x execCommand ReadAV@NULL
https://bugs.webkit.org/show_bug.cgi?id=35791

This test passes if it doesn't crash.

  • editing/execCommand/35791-expected.txt: Added.
  • editing/execCommand/35791.html: Added.

2010-05-20 MORITA Hajime <morrita@google.com>

Reviewed by Kent Tamura.

2x execCommand ReadAV@NULL
https://bugs.webkit.org/show_bug.cgi?id=35791

In applyBlockStyle(), a node which is referred from
nextParagraphStart sometimes removed from the document and goes
orphan, and that causes an assertion failed. This is because
moveParagraphs() replaces the node with a new one with some new
styles applied. So we re-compute nextParagraphStart in that case.

Test: editing/execCommand/35791.html

  • dom/Position.h: (WebCore::Position::isOrphan):
  • editing/ApplyStyleCommand.cpp: (WebCore::ApplyStyleCommand::applyBlockStyle):
  • editing/VisiblePosition.h: (WebCore::VisiblePosition::isOrphan):
4:04 AM Changeset in webkit [59827] by Simon Hausmann
  • 2 edits in trunk/WebKitTools

[Qt] Weekly binary builds on Mac OS X don't work when launched in the Finder
https://bugs.webkit.org/show_bug.cgi?id=37273

Reviewed by Tor Arne Vestbo.

  • QtTestBrowser/QtTestBrowser.pro: Build QtLauncher as bundle in package builds
2:06 AM Changeset in webkit [59826] by steveblock@google.com
  • 3 edits in trunk/WebCore

2010-05-20 Steve Block <steveblock@google.com>

Reviewed by Eric Seidel.

PluginView contains JSC-specific code
https://bugs.webkit.org/show_bug.cgi?id=38907

Build fix only, no new tests.

  • plugins/PluginView.cpp: (WebCore::PluginView::start): (WebCore::PluginView::stop): (WebCore::PluginView::performRequest):
  • plugins/PluginView.h:
1:44 AM Changeset in webkit [59825] by Philippe Normand
  • 2 edits in trunk/WebCore

2010-05-17 Philippe Normand <pnormand@igalia.com>

Reviewed by Eric Seidel.

[GStreamer] enable gst support if USE_GSTREAMER macro is defined
https://bugs.webkit.org/show_bug.cgi?id=39205

Include gstreamer private player in the build when the
USE_GSTREAMER macro is enabled.

  • platform/graphics/MediaPlayer.cpp: (WebCore::installedMediaEngines):
1:28 AM Changeset in webkit [59824] by ukai@chromium.org
  • 2 edits in trunk/WebKitTools

Unreviewed fix for websocket test failures.

  • Scripts/new-run-webkit-websocketserver: options is named parameter for factory.get().
1:23 AM QtWebKitTriageRoster edited by Simon Hausmann
(diff)
12:45 AM Changeset in webkit [59823] by ukai@chromium.org
  • 2 edits in trunk/WebKitTools

2010-05-20 Fumitoshi Ukai <ukai@chromium.org>

Reviewed by Shinichiro Hamaji.

Chromium: Add --chromium option to new-run-webkit-websocketserver
https://bugs.webkit.org/show_bug.cgi?id=37664

Missed to pass options to factory.get() in r59595

  • Scripts/new-run-webkit-websocketserver: Pass options to factory.get().
Note: See TracTimeline for information about the timeline view.