Timeline
Oct 13, 2010:
- 11:58 PM Changeset in webkit [69745] by
-
- 8 edits in trunk/LayoutTests
2010-10-13 James Simonsen <simonjam@chromium.org>
Reviewed by Adam Barth.
Sync tests from html5lib.
https://bugs.webkit.org/show_bug.cgi?id=47627
- html5lib/resources/adoption02.dat: Copied from html5lib.
- html5lib/resources/entities01.dat: Ditto.
- html5lib/resources/pending-spec-changes.dat: Ditto.
- html5lib/resources/tests21.dat: Ditto.
- html5lib/runner-expected.txt: 2 tests now pass.
- platform/chromium/html5lib/runner-expected.txt: Ditto.
- platform/win/html5lib/runner-expected.txt: Ditto.
- 11:55 PM Changeset in webkit [69744] by
-
- 4 edits in trunk/WebKitTools
2010-10-13 Eric Seidel <eric@webkit.org>
Reviewed by Adam Barth.
beat diff_parser with the ugly stick
https://bugs.webkit.org/show_bug.cgi?id=47626
- Scripts/webkitpy/common/checkout/diff_parser.py:
- Scripts/webkitpy/style/patchreader.py:
- Scripts/webkitpy/style/patchreader_unittest.py:
- 11:45 PM Changeset in webkit [69743] by
-
- 5 edits in trunk/JavaScriptCore
2010-10-13 David Goodwin <david_goodwin@apple.com>
Reviewed by Oliver Hunt.
ARMv7 JIT should generated conditional branches when possible
https://bugs.webkit.org/show_bug.cgi?id=47384
Use different jump padding sizes for conditional and unconditional
jumps (12 bytes and 10 bytes respectively). This allows the JIT to
include the IT instruction as part of the conditional jump sequence
which in turn allows it to optimize away the IT using an ARMv7
conditional branch instruction. Use 2-byte B(T1) and 4-byte B(T3) for
conditional branches when displacement is in range. Also use IT/B(T4)
for conditional branch when displacement does not fit in B(T3).
For unconditional jump, instruction selection options are:
B(T2), B(T4), MOVW/MOVT/BX. For conditional jump, instruction selection
options are: B(T1), B(T3), IT/B(T4), ITTT/MOVW/MOVT/BX.
- assembler/ARMv7Assembler.cpp:
- assembler/ARMv7Assembler.h: (JSC::ARMv7Assembler::JmpSrc::JmpSrc): (JSC::ARMv7Assembler::ifThenElse): (JSC::ARMv7Assembler::jumpSizeDelta): (JSC::ARMv7Assembler::canCompact): (JSC::ARMv7Assembler::computeJumpType): (JSC::ARMv7Assembler::link): (JSC::ARMv7Assembler::canBeJumpT1): (JSC::ARMv7Assembler::canBeJumpT3): (JSC::ARMv7Assembler::canBeJumpT4): (JSC::ARMv7Assembler::linkJumpT1): (JSC::ARMv7Assembler::linkJumpT3): (JSC::ARMv7Assembler::linkJumpT4): (JSC::ARMv7Assembler::linkConditionalJumpT4): (JSC::ARMv7Assembler::linkBX): (JSC::ARMv7Assembler::linkConditionalBX): (JSC::ARMv7Assembler::linkJumpAbsolute):
- assembler/LinkBuffer.h: (JSC::LinkBuffer::linkCode):
- assembler/MacroAssemblerARMv7.h: (JSC::MacroAssemblerARMv7::canCompact): (JSC::MacroAssemblerARMv7::computeJumpType): (JSC::MacroAssemblerARMv7::jumpSizeDelta): (JSC::MacroAssemblerARMv7::jump): (JSC::MacroAssemblerARMv7::nearCall): (JSC::MacroAssemblerARMv7::call): (JSC::MacroAssemblerARMv7::ret): (JSC::MacroAssemblerARMv7::tailRecursiveCall): (JSC::MacroAssemblerARMv7::makeJump): (JSC::MacroAssemblerARMv7::makeBranch):
- 11:32 PM Changeset in webkit [69742] by
-
- 7 edits in trunk
2010-10-13 Sergio Villar Senin <svillar@igalia.com>
Reviewed by Martin Robinson.
WebKitGtk+ to use the new API from the imported SoupURILoader code
[GTK] Add HTTP caching support
https://bugs.webkit.org/show_bug.cgi?id=44261
ResourceHandleSoup now does everything via SoupURILoader. This means
that all URLs are handled via the same code path, where WebCore simply
asks libsoup for a WebKitSoupRequest and the request returns an input
stream. Many of ResourceHandleSoup's data members are now PlatformRefPtr
as well, to simplify reference counting
- platform/network/ResourceHandleInternal.h: (WebCore::ResourceHandleInternal::ResourceHandleInternal):
- platform/network/soup/ResourceHandleSoup.cpp: (WebCore::ResourceHandleInternal::~ResourceHandleInternal): (WebCore::ResourceHandle::~ResourceHandle): (WebCore::restartedCallback): (WebCore::gotChunkCallback): (WebCore::parseDataUrl): (WebCore::cleanupSoupRequestOperation): (WebCore::sendRequestCallback): (WebCore::startHttp): (WebCore::ResourceHandle::start): (WebCore::ResourceHandle::cancel): (WebCore::closeCallback): (WebCore::readCallback): (WebCore::startGio):
- platform/network/soup/ResourceRequest.h:
- platform/network/soup/ResourceRequestSoup.cpp: (WebCore::ResourceRequest::updateSoupMessage):
2010-10-13 Sergio Villar Senin <svillar@igalia.com>
Reviewed by Martin Robinson.
WebKitGtk+ to use the new API from the imported SoupURILoader code
[GTK] Add HTTP caching support
https://bugs.webkit.org/show_bug.cgi?id=44261
ResourceHandleInternal m_msg is now called m_soupMessage.
- webkit/webkitdownload.cpp: (webkit_download_new_with_handle): (webkit_download_start):
- 11:28 PM Changeset in webkit [69741] by
-
- 3 edits in trunk/LayoutTests
2010-10-13 Martin Robinson <mrobinson@igalia.com>
Rebaseline canvas/philip/tests/2d.gradient.radial.negative.html. It seems
that the result for this test is only differing by two newlines. Also skip
a failing test on GTK+.
- canvas/philip/tests/2d.gradient.radial.negative-expected.txt: Rebaseline.
- platform/gtk/Skipped: Skip failing test.
- 10:54 PM Changeset in webkit [69740] by
-
- 3 edits2 adds in trunk/WebKitTools
2010-10-13 Eric Seidel <eric@webkit.org>
Reviewed by Adam Barth.
Break LayoutTestResults out into its own file
https://bugs.webkit.org/show_bug.cgi?id=47637
- Scripts/webkitpy/common/net/buildbot.py:
- Scripts/webkitpy/common/net/buildbot_unittest.py:
- Scripts/webkitpy/common/net/layouttestresults.py: Added.
- Scripts/webkitpy/common/net/layouttestresults_unittest.py: Added.
- 10:49 PM Changeset in webkit [69739] by
-
- 2 edits7 adds in trunk/LayoutTests
2010-10-13 Shinichiro Hamaji <hamaji@chromium.org>
Update chromium's test expectations.
- platform/chromium-linux/fast/text/backslash-to-yen-sign-euc-expected.checksum: Added.
- platform/chromium-linux/fast/text/backslash-to-yen-sign-euc-expected.png: Added.
- platform/chromium-linux/fast/text/backslash-to-yen-sign-euc-expected.txt: Added.
- platform/chromium-mac/fast/text/backslash-to-yen-sign-euc-expected.checksum: Added.
- platform/chromium-win/fast/text/backslash-to-yen-sign-euc-expected.checksum: Added.
- platform/chromium-win/fast/text/backslash-to-yen-sign-euc-expected.png: Added.
- platform/chromium-win/fast/text/backslash-to-yen-sign-euc-expected.txt: Added.
- platform/chromium/test_expectations.txt:
- 10:28 PM Changeset in webkit [69738] by
-
- 3 edits in trunk/WebKitTools
2010-10-13 Adam Barth <abarth@webkit.org>
Unreviewed.
Chromium port can't run JavaScriptCore tests
https://bugs.webkit.org/show_bug.cgi?id=47654
This lets webkit-patch build-and-test work on Chromium.
- Scripts/webkitpy/common/config/ports.py:
- Scripts/webkitpy/tool/steps/runtests.py:
- 10:04 PM Changeset in webkit [69737] by
-
- 9 edits in trunk/WebKitTools
2010-10-13 Adam Barth <abarth@webkit.org>
Reviewed by Eric Seidel.
Make --port a global option and pass the port information to the commit-queue subprocess
https://bugs.webkit.org/show_bug.cgi?id=47650
This patch paves the way to run the commit-queue on a non-Mac port.
- Scripts/webkitpy/tool/commands/queues.py:
- Scripts/webkitpy/tool/commands/queues_unittest.py:
- Scripts/webkitpy/tool/commands/queuestest.py:
- Scripts/webkitpy/tool/main.py:
- Scripts/webkitpy/tool/steps/options.py:
- Scripts/webkitpy/tool/steps/preparechangelog.py:
- Scripts/webkitpy/tool/steps/runtests.py:
- Scripts/webkitpy/tool/steps/update.py:
- 10:00 PM Changeset in webkit [69736] by
-
- 3 edits in trunk/WebKitTools
2010-10-13 Adam Barth <abarth@webkit.org>
Reviewed by Eric Seidel.
Introduce the ChromiumXVFBPort for running commit-queue on EC2
https://bugs.webkit.org/show_bug.cgi?id=47653
I'm not entirely sure this is the best way to do this, but we need to
run the tests under XVFB on EC2 because the EC2 instances don't have a
real monitor hooked up. This patch adds a ChromiumXVFBPort that runs
that way. The idea is that XVFB is like a platform for the Chromium
port, but we don't have a real notion of platform separate from port.
- Scripts/webkitpy/common/config/ports.py:
- 9:55 PM Changeset in webkit [69735] by
-
- 3 edits2 adds in trunk
2010-10-12 Abhishek Arya <inferno@chromium.org>
Reviewed by Darin Adler.
Prevent block logical height of a root inline box from overflowing by clamping it
at INT_MAX. Otherwise, we will not be able to properly dirty the set of lines during
removal a floating object.
https://bugs.webkit.org/show_bug.cgi?id=45611
Test: fast/overflow/overflow-block-logical-height-crash.html
- rendering/RootInlineBox.cpp: (WebCore::RootInlineBox::alignBoxesInBlockDirection):
2010-10-12 Abhishek Arya <inferno@chromium.org>
Reviewed by Darin Adler.
Tests that overflowing the block logical height of a root inline box does not result in crash.
https://bugs.webkit.org/show_bug.cgi?id=45611
- fast/overflow/overflow-block-logical-height-crash-expected.txt: Added.
- fast/overflow/overflow-block-logical-height-crash.html: Added.
- 9:11 PM Changeset in webkit [69734] by
-
- 3 edits in trunk/WebKit2
Memory smasher in WebKit2 InjectedBundleHitTestResult::absoluteLinkURL
https://bugs.webkit.org/show_bug.cgi?id=47648
Reviewed by Jon Honeycutt.
- WebProcess/InjectedBundle/InjectedBundleHitTestResult.cpp:
(WebKit::InjectedBundleHitTestResult::absoluteLinkURL):
- WebProcess/InjectedBundle/InjectedBundleHitTestResult.h: Return a String instead of
a const String&.
- 9:11 PM Changeset in webkit [69733] by
-
- 2 edits in trunk/WebKit2
PlatformMouseEvents need to contain modifier flags
https://bugs.webkit.org/show_bug.cgi?id=47651
Reviewed by Jon Honeycutt.
- Shared/WebEventConversion.cpp:
(WebKit::WebKit2PlatformMouseEvent::WebKit2PlatformMouseEvent):
Fill in m_modifierFlags.
- 7:40 PM Changeset in webkit [69732] by
-
- 5 edits in branches/safari-533.19-branch
Versioning.
- 7:36 PM Changeset in webkit [69731] by
-
- 1 copy in tags/Safari-533.19.3
New tag.
- 7:31 PM Changeset in webkit [69730] by
-
- 4 edits in branches/safari-533.19-branch/WebCore
Merge r69596.
- 7:31 PM Changeset in webkit [69729] by
-
- 5 edits in branches/safari-533.19-branch
Versioning.
- 7:16 PM Changeset in webkit [69728] by
-
- 2 edits in trunk/JavaScriptCore
2010-10-13 Fridrich Strba <fridrich.strba@bluewin.ch>
Reviewed by Darin Adler.
Don't depend on Windows on sched_yield and sched.h
https://bugs.webkit.org/show_bug.cgi?id=45543
sched.h is part of pthreads and sched_yield is implemented
in pthreads-win32 as Sleep(0). This patch avoids a gratuitous
dependency on pthreads-win32 in this file.
- wtf/TCSpinLock.h: (TCMalloc_SlowLock):
- 7:13 PM Changeset in webkit [69727] by
-
- 7 edits in trunk
2010-09-23 James Robinson <jamesr@chromium.org>
Reviewed by Darin Adler.
Canvas: radialGradient with negative radius should throw exception
https://bugs.webkit.org/show_bug.cgi?id=37176
Remove test from skipped lists now that it passes.
- platform/chromium/test_expectations.txt:
- platform/gtk/Skipped:
- platform/mac/Skipped:
- platform/qt/Skipped:
2010-10-13 James Robinson <jamesr@chromium.org>
Reviewed by Darin Adler.
Throw INDEX_SIZE_ERR exception if createRadialGradient is called with a negative radius
Canvas: radialGradient with negative radius should throw exception
https://bugs.webkit.org/show_bug.cgi?id=37176
This matches the canvas 2d specification, Opera, IE9 beta and our behavior for arc()
and arcTo(). Also fixes some PassRefPtr/RefPtr errors in this file.
Test: canvas/philip/tests/2d.gradient.radial.negative.html
- html/canvas/CanvasRenderingContext2D.cpp: (WebCore::CanvasRenderingContext2D::createLinearGradient): (WebCore::CanvasRenderingContext2D::createRadialGradient): (WebCore::createEmptyImageData): (WebCore::CanvasRenderingContext2D::measureText):
- 7:03 PM Changeset in webkit [69726] by
-
- 2 edits in trunk/WebCore
2010-10-13 Fridrich Strba <fridrich.strba@bluewin.ch>
Reviewed by Darin Adler.
Add WebCore/plugins/win directory to CFLAGS
https://bugs.webkit.org/show_bug.cgi?id=45547
- GNUmakefile.am:
- 6:30 PM Changeset in webkit [69725] by
-
- 2 edits in trunk/WebCore
2010-10-13 Martin Robinson <mrobinson@igalia.com>
Build fix for older versions of libsoup.
- platform/network/soup/cache/soup-request-file.c: (webkit_soup_request_file_ensure_file): Access the path member of the SoupURI directly.
- 6:26 PM WebKit Team edited by
- (diff)
- 6:12 PM WebKit Team edited by
- Add DRT/Chromium to tkent's area (diff)
- 6:08 PM Changeset in webkit [69724] by
-
- 2 edits in trunk/WebKit/chromium
2010-10-13 Kinuko Yasuda <kinuko@chromium.org>
Reviewed by Jian Li.
[Chromium] Enable FILE_SYSTEM by default for chromium
https://bugs.webkit.org/show_bug.cgi?id=47639
- features.gypi: Add FILE_SYSTEM=1. Also remove FILE_READER=1 as it seems to be not used anymore.
- 6:01 PM Changeset in webkit [69723] by
-
- 3 edits3 adds in trunk/JavaScriptCore
[BREWMP] Port unicode
https://bugs.webkit.org/show_bug.cgi?id=45716
Reviewed by Kent Tamura.
Brew MP port uses only the subset of ICU library to reduce the binary size.
Follow the WinCE's implementation.
- wtf/Platform.h:
- wtf/unicode/Unicode.h:
- wtf/unicode/brew/UnicodeBrew.cpp: Added.
(WTF::Unicode::toLower):
(WTF::Unicode::toUpper):
(WTF::Unicode::foldCase):
(WTF::Unicode::isPrintableChar):
(WTF::Unicode::isUpper):
(WTF::Unicode::isLower):
(WTF::Unicode::isDigit):
(WTF::Unicode::isPunct):
(WTF::Unicode::isAlphanumeric):
(WTF::Unicode::toTitleCase):
(WTF::Unicode::direction):
(WTF::Unicode::category):
(WTF::Unicode::decompositionType):
(WTF::Unicode::combiningClass):
(WTF::Unicode::mirroredChar):
(WTF::Unicode::digitValue):
(WTF::Unicode::isSpace):
(WTF::Unicode::isLetter):
- wtf/unicode/brew/UnicodeBrew.h: Added.
(WTF::Unicode::isArabicChar):
(WTF::Unicode::isSeparatorSpace):
(WTF::Unicode::hasLineBreakingPropertyComplexContext):
(WTF::Unicode::hasLineBreakingPropertyComplexContextOrIdeographic):
(WTF::Unicode::umemcasecmp):
- 5:59 PM WebKit Team edited by
- Add Yuta Kitamura (yutak). (diff)
- 5:49 PM Changeset in webkit [69722] by
-
- 1 edit2 adds in trunk/WebCore
[BREWMP] Add TextBoundaries and TextBreakIterator
https://bugs.webkit.org/show_bug.cgi?id=46105
Reviewed by Kent Tamura.
Copy the implementation of WinCE port.
- platform/text/brew/TextBoundariesBrew.cpp: Added.
(WebCore::findNextWordFromIndex):
(WebCore::findWordBoundary):
- platform/text/brew/TextBreakIteratorBrew.cpp: Added.
(WebCore::isCharStop):
(WebCore::isLineStop):
(WebCore::isSentenceStop):
(WebCore::TextBreakIterator::reset):
(WebCore::TextBreakIterator::following):
(WebCore::TextBreakIterator::preceding):
(WebCore::WordBreakIterator::first):
(WebCore::WordBreakIterator::next):
(WebCore::WordBreakIterator::previous):
(WebCore::CharBreakIterator::first):
(WebCore::CharBreakIterator::next):
(WebCore::CharBreakIterator::previous):
(WebCore::LineBreakIterator::first):
(WebCore::LineBreakIterator::next):
(WebCore::LineBreakIterator::previous):
(WebCore::SentenceBreakIterator::first):
(WebCore::SentenceBreakIterator::next):
(WebCore::SentenceBreakIterator::previous):
(WebCore::wordBreakIterator):
(WebCore::characterBreakIterator):
(WebCore::lineBreakIterator):
(WebCore::sentenceBreakIterator):
(WebCore::textBreakFirst):
(WebCore::textBreakNext):
(WebCore::textBreakPreceding):
(WebCore::textBreakFollowing):
(WebCore::textBreakCurrent):
(WebCore::isTextBreak):
(WebCore::cursorMovementIterator):
- 5:39 PM Changeset in webkit [69721] by
-
- 57 edits in trunk
2010-10-13 Jeremy Orlow <jorlow@chromium.org>
Reviewed by Nate Chapin.
IndexedDB should fire some errors synchronously
https://bugs.webkit.org/show_bug.cgi?id=47530
- storage/indexeddb/objectstore-basics-expected.txt:
- storage/indexeddb/objectstore-basics.html:
- storage/indexeddb/objectstore-removeobjectstore-expected.txt:
- storage/indexeddb/objectstore-removeobjectstore.html:
2010-10-13 Jeremy Orlow <jorlow@chromium.org>
Reviewed by Nate Chapin.
IndexedDB should fire some errors synchronously
https://bugs.webkit.org/show_bug.cgi?id=47530
Add dumb plumbing to pass around exception codes.
Utilize that plumbing in the backend to fire some
errors synchronously.
Verify that create/remove* functions are only called
in setVersionTransactions (and raise when not).
Remove plumbing for obsolete IDBDatabase.objectStore
Remove obsolete mode param.
- storage/IDBCursor.cpp: (WebCore::IDBCursor::update): (WebCore::IDBCursor::continueFunction): (WebCore::IDBCursor::remove):
- storage/IDBCursor.h: (WebCore::IDBCursor::continueFunction):
- storage/IDBCursor.idl:
- storage/IDBCursorBackendImpl.cpp: (WebCore::IDBCursorBackendImpl::update): (WebCore::IDBCursorBackendImpl::continueFunction): (WebCore::IDBCursorBackendImpl::remove):
- storage/IDBCursorBackendImpl.h:
- storage/IDBCursorBackendInterface.h:
- storage/IDBDatabase.cpp: (WebCore::IDBDatabase::IDBDatabase): (WebCore::IDBDatabase::createObjectStore): (WebCore::IDBDatabase::removeObjectStore): (WebCore::IDBDatabase::setVersion): (WebCore::IDBDatabase::transaction):
- storage/IDBDatabase.h: (WebCore::IDBDatabase::createObjectStore): (WebCore::IDBDatabase::transaction):
- storage/IDBDatabase.idl:
- storage/IDBDatabaseBackendImpl.cpp: (WebCore::IDBDatabaseBackendImpl::createObjectStore): (WebCore::IDBDatabaseBackendImpl::objectStore): (WebCore::IDBDatabaseBackendImpl::removeObjectStore): (WebCore::IDBDatabaseBackendImpl::setVersion): (WebCore::IDBDatabaseBackendImpl::transaction):
- storage/IDBDatabaseBackendImpl.h:
- storage/IDBDatabaseBackendInterface.h:
- storage/IDBFactory.cpp: (WebCore::IDBFactory::open):
- storage/IDBFactory.h: (WebCore::IDBFactory::open):
- storage/IDBFactory.idl:
- storage/IDBIndex.cpp: (WebCore::IDBIndex::openCursor): (WebCore::IDBIndex::openKeyCursor): (WebCore::IDBIndex::get): (WebCore::IDBIndex::getKey):
- storage/IDBIndex.h: (WebCore::IDBIndex::openCursor): (WebCore::IDBIndex::openKeyCursor):
- storage/IDBIndex.idl:
- storage/IDBIndexBackendImpl.cpp: (WebCore::IDBIndexBackendImpl::openCursor): (WebCore::IDBIndexBackendImpl::openKeyCursor): (WebCore::IDBIndexBackendImpl::get): (WebCore::IDBIndexBackendImpl::getKey):
- storage/IDBIndexBackendImpl.h:
- storage/IDBIndexBackendInterface.h:
- storage/IDBObjectStore.cpp: (WebCore::IDBObjectStore::get): (WebCore::IDBObjectStore::add): (WebCore::IDBObjectStore::put): (WebCore::IDBObjectStore::remove): (WebCore::IDBObjectStore::createIndex): (WebCore::IDBObjectStore::index): (WebCore::IDBObjectStore::removeIndex): (WebCore::IDBObjectStore::openCursor):
- storage/IDBObjectStore.h: (WebCore::IDBObjectStore::add): (WebCore::IDBObjectStore::put): (WebCore::IDBObjectStore::createIndex): (WebCore::IDBObjectStore::openCursor):
- storage/IDBObjectStore.idl:
- storage/IDBObjectStoreBackendImpl.cpp: (WebCore::IDBObjectStoreBackendImpl::get): (WebCore::IDBObjectStoreBackendImpl::put): (WebCore::IDBObjectStoreBackendImpl::remove): (WebCore::IDBObjectStoreBackendImpl::createIndex): (WebCore::IDBObjectStoreBackendImpl::index): (WebCore::IDBObjectStoreBackendImpl::removeIndex): (WebCore::IDBObjectStoreBackendImpl::openCursor):
- storage/IDBObjectStoreBackendImpl.h: (WebCore::IDBObjectStoreBackendImpl::name): (WebCore::IDBObjectStoreBackendImpl::keyPath): (WebCore::IDBObjectStoreBackendImpl::autoIncrement):
- storage/IDBObjectStoreBackendInterface.h:
- storage/IDBTransaction.cpp: (WebCore::IDBTransaction::objectStore):
- storage/IDBTransaction.h:
- storage/IDBTransactionBackendImpl.cpp: (WebCore::IDBTransactionBackendImpl::objectStore):
2010-10-13 Jeremy Orlow <jorlow@chromium.org>
Reviewed by Nate Chapin.
IndexedDB should fire some errors synchronously
https://bugs.webkit.org/show_bug.cgi?id=47530
- public/WebIDBCursor.h:
- public/WebIDBDatabase.h: (WebKit::WebIDBDatabase::transaction):
- public/WebIDBFactory.h: (WebKit::WebIDBFactory::open):
- public/WebIDBObjectStore.h:
- public/WebIDBTransactionCallbacks.h:
- src/IDBCursorBackendProxy.cpp: (WebCore::IDBCursorBackendProxy::update): (WebCore::IDBCursorBackendProxy::continueFunction): (WebCore::IDBCursorBackendProxy::remove):
- src/IDBCursorBackendProxy.h:
- src/IDBDatabaseProxy.cpp: (WebCore::IDBDatabaseProxy::createObjectStore): (WebCore::IDBDatabaseProxy::removeObjectStore): (WebCore::IDBDatabaseProxy::setVersion): (WebCore::IDBDatabaseProxy::transaction):
- src/IDBDatabaseProxy.h:
- src/IDBIndexBackendProxy.cpp: (WebCore::IDBIndexBackendProxy::openCursor): (WebCore::IDBIndexBackendProxy::openKeyCursor): (WebCore::IDBIndexBackendProxy::get): (WebCore::IDBIndexBackendProxy::getKey):
- src/IDBIndexBackendProxy.h:
- src/IDBObjectStoreProxy.cpp: (WebCore::IDBObjectStoreProxy::get): (WebCore::IDBObjectStoreProxy::put): (WebCore::IDBObjectStoreProxy::remove): (WebCore::IDBObjectStoreProxy::createIndex): (WebCore::IDBObjectStoreProxy::index): (WebCore::IDBObjectStoreProxy::removeIndex): (WebCore::IDBObjectStoreProxy::openCursor):
- src/IDBObjectStoreProxy.h:
- src/WebIDBCursorImpl.cpp: (WebKit::WebIDBCursorImpl::update): (WebKit::WebIDBCursorImpl::continueFunction): (WebKit::WebIDBCursorImpl::remove):
- src/WebIDBCursorImpl.h:
- src/WebIDBDatabaseImpl.cpp: (WebKit::WebIDBDatabaseImpl::createObjectStore): (WebKit::WebIDBDatabaseImpl::removeObjectStore): (WebKit::WebIDBDatabaseImpl::setVersion): (WebKit::WebIDBDatabaseImpl::transaction):
- src/WebIDBDatabaseImpl.h:
- src/WebIDBIndexImpl.cpp: (WebKit::WebIDBIndexImpl::openObjectCursor): (WebKit::WebIDBIndexImpl::openKeyCursor): (WebKit::WebIDBIndexImpl::getObject): (WebKit::WebIDBIndexImpl::getKey):
- src/WebIDBIndexImpl.h:
- src/WebIDBObjectStoreImpl.cpp: (WebKit::WebIDBObjectStoreImpl::get): (WebKit::WebIDBObjectStoreImpl::put): (WebKit::WebIDBObjectStoreImpl::remove): (WebKit::WebIDBObjectStoreImpl::createIndex): (WebKit::WebIDBObjectStoreImpl::index): (WebKit::WebIDBObjectStoreImpl::removeIndex): (WebKit::WebIDBObjectStoreImpl::openCursor):
- src/WebIDBObjectStoreImpl.h:
- 5:36 PM Changeset in webkit [69720] by
-
- 1 edit4 adds in trunk/LayoutTests
2010-10-13 Adam Barth <abarth@webkit.org>
Reviewed by Darin Adler.
Incorrect use of alternate content inside the <object> element
https://bugs.webkit.org/show_bug.cgi?id=11803
Our current behavior appears to match Firefox and the spec. Opera
seems to do what the bug reporter requests, but our current behavior
seems more sane.
- fast/forms/fallback-content-submission-expected.txt: Added.
- fast/forms/fallback-content-submission.html: Added.
- fast/parser/object-with-textarea-fallback-expected.txt: Added.
- fast/parser/object-with-textarea-fallback.html: Added.
- 5:32 PM Changeset in webkit [69719] by
-
- 2 edits in trunk/WebKit/chromium
2010-10-13 Brett Wilson <brettw@chromium.org>
Reviewed by Darin Fisher.
Save and restore the GraphicsContext around setting the clip rect for
drawing text.
https://bugs.webkit.org/show_bug.cgi?id=47634
- src/WebFontImpl.cpp: (WebKit::WebFontImpl::drawText):
- 5:32 PM Changeset in webkit [69718] by
-
- 7 edits19 adds in trunk
2010-10-13 Sergio Villar Senin <svillar@igalia.com>
Reviewed by Martin Robinson.
[GTK] Add HTTP caching support
https://bugs.webkit.org/show_bug.cgi?id=44261
This patch adds HTTP caching support to libsoup networking backend.
This code will eventually be part of libsoup, but has been temporarily
imported into the WebCore tree for testing purposes. All libsoup code
is located in WebCore/platform/network/soup/cache. The webkit prefix
was added to all the symbols to prevent problems when this lands in
libsoup. Some external API was also added under webkit/ directory and
will be used by library clients to enable HTTP caching.
There are two parts to this imported code, the first one is the code
under WebCore/platform/network/soup/cache/ that contains all the
SoupURILoader code that supports the development of the cache. The
second part is the HTTP cache implementation located in
WebCore/platform/network/soup/cache/webkit/.
- GNUmakefile.am:
- platform/network/soup/cache/soup-directory-input-stream.c: Added. (webkit_soup_directory_input_stream_parse_info): (webkit_soup_directory_input_stream_read_next_file): (webkit_soup_directory_input_stream_read): (webkit_soup_directory_input_stream_close): (webkit_soup_directory_input_stream_class_init): (webkit_soup_directory_input_stream_init): (webkit_soup_directory_input_stream_new):
- platform/network/soup/cache/soup-directory-input-stream.h: Added.
- platform/network/soup/cache/soup-http-input-stream.c: Added. (webkit_soup_http_input_stream_finalize): (webkit_soup_http_input_stream_class_init): (webkit_soup_http_input_stream_seekable_iface_init): (webkit_soup_http_input_stream_init): (webkit_soup_http_input_stream_queue_message): (webkit_soup_http_input_stream_new): (webkit_soup_http_input_stream_got_headers): (webkit_soup_http_input_stream_got_chunk): (webkit_soup_http_input_stream_finished): (webkit_soup_http_input_stream_cancelled): (webkit_soup_http_input_stream_prepare_for_io): (webkit_soup_http_input_stream_done_io): (set_error_if_http_failed): (read_from_leftover): (webkit_soup_http_input_stream_send_internal): (send_sync_finished): (webkit_soup_http_input_stream_send): (webkit_soup_http_input_stream_read): (webkit_soup_http_input_stream_close): (wrapper_callback): (send_async_thread): (webkit_soup_http_input_stream_send_async_in_thread): (send_async_finished): (webkit_soup_http_input_stream_send_async_internal): (webkit_soup_http_input_stream_send_async): (webkit_soup_http_input_stream_send_finish): (read_async_done): (webkit_soup_http_input_stream_read_async): (webkit_soup_http_input_stream_read_finish): (webkit_soup_http_input_stream_close_async): (webkit_soup_http_input_stream_close_finish): (webkit_soup_http_input_stream_tell): (webkit_soup_http_input_stream_can_seek): (webkit_soup_http_input_stream_seek): (webkit_soup_http_input_stream_can_truncate): (webkit_soup_http_input_stream_truncate): (webkit_soup_http_input_stream_get_message):
- platform/network/soup/cache/soup-http-input-stream.h: Added.
- platform/network/soup/cache/soup-request-data.c: Added. (webkit_soup_request_data_init): (webkit_soup_request_data_finalize): (webkit_soup_request_data_check_uri): (uri_decoded_copy): (webkit_soup_request_data_send): (webkit_soup_request_data_get_content_length): (webkit_soup_request_data_get_content_type): (webkit_soup_request_data_class_init):
- platform/network/soup/cache/soup-request-data.h: Added.
- platform/network/soup/cache/soup-request-file.c: Added. (webkit_soup_request_file_get_file): (webkit_soup_request_file_init): (webkit_soup_request_file_finalize): (webkit_soup_request_file_check_uri): (webkit_soup_request_file_ftp_main_loop_quit): (webkit_soup_request_file_ensure_file_ftp): (webkit_soup_request_file_ensure_file): (webkit_soup_request_file_send): (webkit_soup_request_file_send_async_thread): (webkit_soup_request_file_send_async): (webkit_soup_request_file_send_finish): (webkit_soup_request_file_get_content_length): (webkit_soup_request_file_get_content_type): (webkit_soup_request_file_class_init):
- platform/network/soup/cache/soup-request-file.h: Added.
- platform/network/soup/cache/soup-request-http.c: Added. (webkit_soup_request_http_get_message): (webkit_soup_request_http_init): (webkit_soup_request_http_check_uri): (webkit_soup_request_http_finalize): (webkit_soup_request_http_send): (sent_async): (conditional_get_ready_cb): (send_async_cb): (webkit_soup_request_http_send_async): (webkit_soup_request_http_send_finish): (webkit_soup_request_http_get_content_length): (webkit_soup_request_http_get_content_type): (webkit_soup_request_http_class_init):
- platform/network/soup/cache/soup-request-http.h: Added.
- platform/network/soup/cache/soup-request.c: Added. (webkit_soup_request_init): (webkit_soup_request_finalize): (webkit_soup_request_set_property): (webkit_soup_request_get_property): (webkit_soup_request_initable_init): (webkit_soup_request_default_check_uri): (webkit_soup_request_default_send_async): (webkit_soup_request_default_send_finish): (webkit_soup_request_send): (webkit_soup_request_send_async): (webkit_soup_request_send_finish): (webkit_soup_request_class_init): (webkit_soup_request_initable_interface_init): (webkit_soup_request_get_uri): (webkit_soup_request_get_session): (webkit_soup_request_get_content_length): (webkit_soup_request_get_content_type):
- platform/network/soup/cache/soup-request.h: Added.
- platform/network/soup/cache/soup-requester.c: Added. (webkit_soup_requester_init): (finalize): (webkit_soup_requester_class_init): (init_request_types): (webkit_soup_requester_new): (webkit_soup_requester_request): (webkit_soup_requester_request_uri): (webkit_soup_scheme_is_valid): (webkit_soup_requester_add_protocol): (webkit_soup_requester_remove_protocol): (webkit_soup_error_quark):
- platform/network/soup/cache/soup-requester.h: Added.
- platform/network/soup/cache/webkit/soup-cache-private.h: Added.
- platform/network/soup/cache/webkit/soup-cache.c: Added. (get_cacheability): (webkit_soup_cache_entry_free): (copy_headers): (update_headers): (webkit_soup_cache_entry_get_current_age): (webkit_soup_cache_entry_is_fresh_enough): (webkit_soup_message_get_cache_key): (webkit_soup_cache_entry_set_freshness): (webkit_soup_cache_entry_new): (webkit_soup_cache_writing_fixture_free): (close_ready_cb): (write_ready_cb): (msg_got_chunk_cb): (msg_got_body_cb): (webkit_soup_cache_entry_delete): (lru_compare_func): (cache_accepts_entries_of_size): (make_room_for_new_entry): (webkit_soup_cache_entry_insert_by_key): (msg_restarted_cb): (append_to_ready_cb): (msg_got_headers_cb): (webkit_soup_cache_send_response): (request_started): (attach): (webkit_soup_cache_session_feature_init): (webkit_soup_cache_init): (webkit_soup_cache_finalize): (webkit_soup_cache_set_property): (webkit_soup_cache_get_property): (webkit_soup_cache_constructed): (webkit_soup_cache_type_get_type): (webkit_soup_cache_class_init): (webkit_soup_cache_new): (webkit_soup_cache_has_response): (webkit_soup_cache_get_cacheability): (force_flush_timeout): (webkit_soup_cache_flush): (remove_cache_item): (webkit_soup_cache_clear): (webkit_soup_cache_generate_conditional_request): (pack_entry): (webkit_soup_cache_dump): (webkit_soup_cache_load): (webkit_soup_cache_set_max_size): (webkit_soup_cache_get_max_size):
- platform/network/soup/cache/webkit/soup-cache.h: Added.
2010-10-13 Sergio Villar Senin <svillar@igalia.com>
Reviewed by Martin Robinson.
[GTK] Add HTTP caching support
https://bugs.webkit.org/show_bug.cgi?id=44261
Bump the required version of GLib. The serialization/deserialization
code of libsoup caching code uses GVariant, which was added to GLib in
version 2.24.
- GNUmakefile.am: Add paths for soup HTTP cache code.
- autotools/webkit.m4: Increase required glib version.
2010-10-13 Sergio Villar Senin <svillar@igalia.com>
Reviewed by Martin Robinson.
[GTK] Add HTTP caching support
https://bugs.webkit.org/show_bug.cgi?id=44261
Add include paths for the new soup HTTP cache code.
- GNUmakefile.am: Add paths for the new soup HTTP cache code.
- 5:27 PM Changeset in webkit [69717] by
-
- 2 edits in trunk/WebCore
Chromium build fix.
- bindings/v8/ScriptProfiler.cpp:
- 5:21 PM Changeset in webkit [69716] by
-
- 4 edits2 adds in trunk
2010-10-13 Chris Evans <cevans@google.com>
Reviewed by Jian Li.
Blob / BlobBuilder can be put into bad state with wild integers and strings, due to integer overflows
https://bugs.webkit.org/show_bug.cgi?id=47382
Add test for Blob.slice() integer overflow.
- fast/files/blob-slice-overflow.html: Added.
- fast/files/blob-slice-overflow-expected.txt: Added.
2010-10-13 Chris Evans <cevans@google.com>
Reviewed by Jian Li.
Blob / BlobBuilder can be put into bad state with wild integers and strings, due to integer overflows
https://bugs.webkit.org/show_bug.cgi?id=47382
Fix integer overflow errors in Blob.slice and BlobBuilder.append.
Test: fast/files/blob-slice-overflow.html
- fileapi/Blob.cpp: (WebCore::Blob::slice): handle integer overflow properly.
- fileapi/BlobBuilder.cpp: (WebCore::BlobBuilder::append): use correct type for vector length.
- 5:16 PM Changeset in webkit [69715] by
-
- 4 edits in trunk/WebCore
Build fix - remove some redundant references to ScriptString.
- WebCore.gypi:
- WebCore.pro:
- bindings/v8/ScriptProfiler.cpp:
- 4:58 PM Changeset in webkit [69714] by
-
- 2 edits in trunk/WebKitTools
2010-10-13 Yi Shen <yi.4.shen@nokia.com>
Reviewed by Antonio Gomes.
[Qt] QtTestBrowser shows two Url input fields
https://bugs.webkit.org/show_bug.cgi?id=47613
- QtTestBrowser/mainwindow.cpp: (MainWindow::MainWindow): (MainWindow::buildUI):
- 4:42 PM Changeset in webkit [69713] by
-
- 2 edits in trunk/WebKitTools
2010-10-13 Yi Shen <yi.4.shen@nokia.com>
Reviewed by Tony Chang.
[gdb] Add pretty-print supports for UString, Identifier and JSString
https://bugs.webkit.org/show_bug.cgi?id=47601
- gdb/webkit.py:
- 4:34 PM Changeset in webkit [69712] by
-
- 4 edits3 deletes in trunk/WebCore
Bug 47621 - Remove bindings/v8/ScriptString
This is now redundant.
Reviewed by Oliver Hunt.
- bindings/v8/ScriptCallFrame.h:
(WebCore::ScriptCallFrame::functionName):
- bindings/v8/ScriptFunctionCall.cpp:
- bindings/v8/ScriptFunctionCall.h:
- bindings/v8/ScriptString.h: Removed.
- bindings/v8/ScriptStringImpl.cpp: Removed.
- bindings/v8/ScriptStringImpl.h: Removed.
- 4:12 PM Changeset in webkit [69711] by
-
- 4 edits in trunk
Draw the find overlay holes
https://bugs.webkit.org/show_bug.cgi?id=47631
Reviewed by John Sullivan.
WebCore:
Export symbols needed by WebKit2.
- WebCore.exp.in:
WebKit2:
- WebProcess/WebPage/FindPageOverlay.cpp:
(WebKit::FindPageOverlay::drawRect):
Draw the white frames and the holes.
- 4:10 PM Changeset in webkit [69710] by
-
- 7 edits in trunk
2010-10-13 James Simonsen <simonjam@chromium.org>
Reviewed by Darin Adler.
Implement onreadystatechange event handler for Documents
https://bugs.webkit.org/show_bug.cgi?id=26140
- fast/dom/Document/readystate-expected.txt:
- fast/dom/Document/readystate.html:
2010-10-13 James Simonsen <simonjam@chromium.org>
Reviewed by Darin Adler.
Implement onreadystatechange event handler for Documents
https://bugs.webkit.org/show_bug.cgi?id=26140
Test: fast/dom/Document/readystate.html
- dom/Document.cpp: (WebCore::Document::setReadyState): Fire readystatechangeevent. (WebCore::Document::open): Clear event listeners.
- dom/Document.h: Add readystatechange event.
- dom/Document.idl: Ditto.
- 4:07 PM Changeset in webkit [69709] by
-
- 3 edits in trunk/LayoutTests
No review. Fix layout test, now that behavior is correct.
AX: accessibilityIsIgnored not respected on ARIA tables
https://bugs.webkit.org/show_bug.cgi?id=47564
- accessibility/aria-hidden-with-elements-expected.txt:
- accessibility/aria-hidden-with-elements.html:
- 4:03 PM Changeset in webkit [69708] by
-
- 2 edits in trunk/WebKitTools/EWSTools
Mark these scripts executable
- 3:53 PM Changeset in webkit [69707] by
-
- 3 edits1 add in trunk
AX: accessibilityIsIgnored not respected on ARIA tables
https://bugs.webkit.org/show_bug.cgi?id=47564
Reviewed by Beth Dakin.
WebCore:
For platforms that ignore column headers and header container objects (everything
except Mac) on accessibility tables, that choice needs to be respected in
ARIA tables as well.
GTK is the only open platform doing this, so I'll have to collect the result of this
test. It was copied from table-hierarchy.html, but changed to use ARIA tables.
Test: platform/gtk/accessibility/aria-table-hierarchy.html
- accessibility/AccessibilityARIAGrid.cpp:
(WebCore::AccessibilityARIAGrid::addChildren):
LayoutTests:
Will gather the results from GTK after this runs.
- platform/gtk/accessibility/aria-table-hierarchy.html: Added.
- 3:50 PM Changeset in webkit [69706] by
-
- 2 edits in trunk/WebCore
No longer ASSERT for LayerRenderer in VideoLayerChromium destructor
https://bugs.webkit.org/show_bug.cgi?id=47432
Patch by Victoria Kirst <vrk@google.com> on 2010-10-13
Reviewed by James Robinson.
- platform/graphics/chromium/VideoLayerChromium.cpp:
(WebCore::VideoLayerChromium::cleanupResources):
- 3:48 PM Changeset in webkit [69705] by
-
- 1 edit1 add in trunk/WebKitTools
2010-10-13 Adam Barth <abarth@webkit.org>
Reviewed by Eric Seidel.
Add list of Ubuntu packages needed by the EWS bots
https://bugs.webkit.org/show_bug.cgi?id=47628
I've been copy/pasting this list between bots, but it's better to have
this checked in.
- EWSTools/ubuntu-ews-packages: Added.
- 3:46 PM Changeset in webkit [69704] by
-
- 5 edits in trunk
2010-10-13 Leandro Pereira <leandro@profusion.mobi>
[EFL] Unreviewed. Build fix.
- WebCoreSupport/FrameLoaderClientEfl.h: Use String instead of WebCore::String.
2010-10-13 Leandro Pereira <leandro@profusion.mobi>
[EFL] Unreviewed. Build fix.
- CMakeLists.txt: Add ContextShadow.cpp.
- CMakeListsEfl.txt: Add ContextShadowCairo.cpp.
- 3:39 PM Changeset in webkit [69703] by
-
- 3 edits in trunk/WebKitTools
2010-10-13 Leandro Pereira <leandro@profusion.mobi>
Reviewed by Csaba Osztrogonác.
[EFL] Adds a build slave.
https://bugs.webkit.org/show_bug.cgi?id=47290
- BuildSlaveSupport/build.webkit.org-config/config.json: Add an entry for a release build of the EFL port.
- BuildSlaveSupport/build.webkit.org-config/master.cfg: Add platform flag to build the EFL port.
- 3:25 PM Changeset in webkit [69702] by
-
- 3 edits in trunk/LayoutTests
2010-10-13 Zhenyao Mo <zmo@google.com>
Unreviewed, update WebGL test expectations.
- platform/chromium/drt_expectations.txt:
- platform/chromium/test_expectations.txt:
- 3:24 PM Changeset in webkit [69701] by
-
- 2 edits in trunk/WebCore
2010-10-13 Martin Robinson <mrobinson@igalia.com>
Reviewed by Holger Freyther.
[GTK] r69681 caused some tests to crash
https://bugs.webkit.org/show_bug.cgi?id=47622
Properly initialize m_layerContext on the ContextShadow so that in situations
where beginShadowLayer bails out early with a null return value, it is set
to null. This may happen when the first call to beginShadowLayer on a particular
ContextShadow uses a region which is entirely outside the clip region or which
is empty.
- platform/graphics/cairo/ContextShadow.cpp: (WebCore::ContextShadow::ContextShadow): Properly initialize m_layerContext.
- 2:44 PM Changeset in webkit [69700] by
-
- 2 edits in trunk/WebCore
Don't set the fill/stroke colorspace before filling/stroking
https://bugs.webkit.org/show_bug.cgi?id=47619
Reviewed by Beth Dakin.
Setting the colorspace has the side-effect of setting the color to black, which is
not what we want. When fill/stroke is called, a fill/stroke color should already have been set.
Pixel tests show no regressions from this change.
- platform/graphics/cg/GraphicsContextCG.cpp:
(WebCore::GraphicsContext::fillPath):
(WebCore::GraphicsContext::strokePath):
(WebCore::GraphicsContext::fillRect):
(WebCore::GraphicsContext::strokeRect):
- 2:29 PM Changeset in webkit [69699] by
-
- 3 edits in trunk/WebCore
Unreviewed WinCairo build fix.
New ContextShadow class not built for Windows builds.
- WebCore.vcproj/WebCore.vcproj: Add missing files for
building ContextShadow on WinCairo.
- platform/graphics/cairo/GraphicsContextPlatformPrivateCairo.h:
Add missing include for ContextShadow definition.
- 2:19 PM Changeset in webkit [69698] by
-
- 5 edits1 delete in branches/chromium/552
Merge 69586 - 2010-10-12 Dave Moore <davemoore@chromium.org>
Reviewed by Tony Chang.
Use new WebThemeEngine api on chromium / linux to draw scrollbars.
https://bugs.webkit.org/show_bug.cgi?id=47473
- platform/chromium/ChromiumBridge.h:
- platform/chromium/ScrollbarThemeChromiumLinux.cpp:
2010-10-12 Dave Moore <davemoore@chromium.org>
Reviewed by Tony Chang.
Use new WebThemeEngine api on chromium / linux to draw scrollbars.
https://bugs.webkit.org/show_bug.cgi?id=47473
- public/WebThemeEngine.h: Removed.
- chromium/src/ChromiumBridge.cpp:
- 2:19 PM Changeset in webkit [69697] by
-
- 3 edits in trunk/LayoutTests
2010-10-13 Nate Chapin <Nate Chapin>
Unreviewed, Chromium expectations update.
Fix line endings in a couple of inspector test expectations.
- platform/chromium/inspector/console-trace-in-eval-expected.txt:
- platform/chromium/inspector/console-uncaught-exception-in-eval-expected.txt:
- 2:02 PM Changeset in webkit [69696] by
-
- 2 edits in branches/chromium/552/WebKitTools
Merge 69591 - 2010-10-12 Tony Chang <tony@chromium.org>
Unreviewed, fixing DRT compile on Windows after r69586.
- DumpRenderTree/chromium/WebThemeEngineDRT.h:
- 1:51 PM Changeset in webkit [69695] by
-
- 2 edits in trunk/WebCore
Chromium build fix pt1.
- bindings/v8/custom/V8XMLHttpRequestCustom.cpp:
(WebCore::V8XMLHttpRequest::responseTextAccessorGetter):
- 1:40 PM Changeset in webkit [69694] by
-
- 4 edits in trunk/WebKit2
Use WKSI to get wheel event deltas
https://bugs.webkit.org/show_bug.cgi?id=47617
Reviewed by Darin Adler.
- Shared/mac/WebEventFactory.mm:
(WebKit::WebEventFactory::createWebWheelEvent):
Call WKGetWheelEventDeltas.
- UIProcess/API/mac/WKView.mm:
(-[WKView initWithFrame:pageNamespaceRef:]):
Call InitWebCoreSystemInterface.
- WebProcess/WebCoreSupport/mac/WebSystemInterface.mm:
(InitWebCoreSystemInterface):
Use dispatch_once.
- 1:29 PM Changeset in webkit [69693] by
-
- 2 edits in trunk/WebKit/chromium
2010-10-13 Kenneth Russell <kbr@google.com>
Reviewed by James Robinson.
Revert changes to WebViewImpl in r69633
https://bugs.webkit.org/show_bug.cgi?id=47610
Revert change to WebViewImpl.cpp in
http://trac.webkit.org/changeset/69633 which incorrectly used
PassRefPtr for a local variable instead of RefPtr. This was a fix
for changes in http://trac.webkit.org/changeset/69619 and
http://trac.webkit.org/changeset/69624 .
- src/WebViewImpl.cpp: (WebKit::WebViewImpl::setIsAcceleratedCompositingActive):
- 1:28 PM Changeset in webkit [69692] by
-
- 2 edits2 adds in trunk/WebKit2
Fix the Cairo build
- Shared/cairo/BackingStoreCairo.cpp: Added.
(WebKit::BackingStore::createGraphicsContext):
(WebKit::BackingStore::paint):
Stubbed out.
- win/WebKit2.vcproj: Build BackingStoreCG.cpp in CG builds and
BackingStoreCairo.cpp in Cairo builds.
- 1:24 PM Changeset in webkit [69691] by
-
- 2 edits in trunk/WebKit2
Build fix.
- Shared/cg/BackingStoreCG.cpp:
- 1:20 PM Changeset in webkit [69690] by
-
- 2 edits in trunk/JavaScriptCore
Windows build fix.
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def:
- 1:18 PM Changeset in webkit [69689] by
-
- 8 edits in trunk
Send over find indicator information to the UI process
https://bugs.webkit.org/show_bug.cgi?id=47612
Reviewed by Sam Weinig.
WebCore:
Export symbols needed by WebKit2.
- WebCore.exp.in:
WebKit2:
- UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::setFindIndicator):
Add stub.
- UIProcess/WebPageProxy.messages.in:
Add SetFindIndicator.
- WebProcess/WebPage/FindController.cpp:
(WebKit::FindController::FindController):
Initialize m_isShowingFindIndicator.
(WebKit::FindController::findString):
Update the find indicator if needed.
(WebKit::FindController::updateFindIndicator):
Compute find indicator information, paint the find indicator text into a
backing store and send it over.
(WebKit::FindController::resetFindIndicator):
Send a SetFindIndicator message with a null backing store.
- 1:10 PM Changeset in webkit [69688] by
-
- 40 edits1 delete in trunk
https://bugs.webkit.org/show_bug.cgi?id=43987
Switch XMLHttpRequest, FileReader, and FileReaderSync to use a Stringbuilder
to construct their internal result string. Remove ScriptString (this is now
redundant).
Reviewed by Oliver Hunt.
WebCore:
- WebCore.xcodeproj/project.pbxproj:
- bindings/js/JSDOMBinding.cpp:
(WebCore::jsOwnedStringOrNull):
- bindings/js/JSDOMBinding.h:
- bindings/js/JSXMLHttpRequestCustom.cpp:
(WebCore::JSXMLHttpRequest::responseText):
- bindings/js/ScriptCallFrame.cpp:
(WebCore::ScriptCallFrame::ScriptCallFrame):
- bindings/js/ScriptCallFrame.h:
(WebCore::ScriptCallFrame::functionName):
- bindings/js/ScriptCallStack.h:
- bindings/js/ScriptFunctionCall.cpp:
- bindings/js/ScriptFunctionCall.h:
- bindings/js/ScriptString.h: Removed.
- dom/ScriptExecutionContext.h:
- fileapi/FileReader.cpp:
(WebCore::FileReader::FileReader):
(WebCore::FileReader::abort):
(WebCore::FileReader::didReceiveData):
(WebCore::FileReader::result):
(WebCore::FileReader::convertToText):
(WebCore::FileReader::convertToDataURL):
- fileapi/FileReader.h:
- fileapi/FileReaderSync.cpp:
(WebCore::FileReaderSyncLoader::FileReaderSyncLoader):
(WebCore::FileReaderSyncLoader::didReceiveData):
(WebCore::FileReaderSync::readAsBinaryString):
(WebCore::FileReaderSync::readAsText):
(WebCore::FileReaderSync::readAsDataURL):
(WebCore::FileReaderSync::read):
(WebCore::FileReaderSync::convertToText):
- fileapi/FileReaderSync.h:
(WebCore::FileReaderSync::readAsText):
(WebCore::FileReaderSync::FileReaderSync):
- inspector/InspectorController.cpp:
(WebCore::InspectorController::resourceRetrievedByXMLHttpRequest):
(WebCore::InspectorController::scriptImported):
- inspector/InspectorController.h:
- inspector/InspectorResource.cpp:
(WebCore::InspectorResource::setOverrideContent):
- inspector/InspectorResource.h:
- loader/FrameLoader.cpp:
- loader/FrameLoader.h:
- loader/FrameLoaderClient.h:
- loader/ResourceLoadNotifier.h:
- workers/WorkerScriptLoader.h:
- xml/XMLHttpRequest.cpp:
(WebCore::XMLHttpRequest::XMLHttpRequest):
(WebCore::XMLHttpRequest::responseText):
(WebCore::XMLHttpRequest::responseXML):
(WebCore::XMLHttpRequest::abort):
(WebCore::XMLHttpRequest::clearResponse):
(WebCore::XMLHttpRequest::dropProtection):
(WebCore::XMLHttpRequest::didFinishLoading):
(WebCore::XMLHttpRequest::didReceiveData):
- xml/XMLHttpRequest.h:
WebKit/efl:
- WebCoreSupport/FrameLoaderClientEfl.cpp:
(WebCore::FrameLoaderClientEfl::dispatchDidLoadResourceByXMLHttpRequest):
- WebCoreSupport/FrameLoaderClientEfl.h:
WebKit/mac:
- WebCoreSupport/WebFrameLoaderClient.mm:
WebKit/qt:
- WebCoreSupport/FrameLoaderClientQt.cpp:
WebKit/win:
- WebCoreSupport/WebFrameLoaderClient.cpp:
WebKit/wx:
- WebKitSupport/FrameLoaderClientWx.cpp:
WebKit2:
- WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:
(WebKit::WebFrameLoaderClient::dispatchDidLoadResourceByXMLHttpRequest):
- WebProcess/WebCoreSupport/WebFrameLoaderClient.h:
- 1:04 PM Changeset in webkit [69687] by
-
- 3 edits1 add in trunk/WebKit2
Add BackingStoreQt.cpp file with stubbed out BackingStore member functions
https://bugs.webkit.org/show_bug.cgi?id=47614
Reviewed by Sam Weinig.
- Shared/BackingStore.h:
Remove unused include.
- Shared/qt/BackingStoreQt.cpp: Added.
(WebKit::BackingStore::createGraphicsContext):
(WebKit::BackingStore::paint):
- WebKit2.pro:
Add BackingStore.cpp, BackingStore.h and BackingStoreQt.cpp
- 1:01 PM Changeset in webkit [69686] by
-
- 2 edits3 adds in trunk/JavaScriptCore
2010-10-13 Adam Barth <abarth@webkit.org>
Reviewed by Maciej Stachowiak.
[WTFURL] Add URLQueryCanonicalizer
https://bugs.webkit.org/show_bug.cgi?id=45088
This class canonicalizes the query component of URLs. The main tricky
bit there is the convertCharset function, which I've moved to a
templated dependency. There'll likely be more about that in future
patches.
- JavaScriptCore.xcodeproj/project.pbxproj:
- wtf/url/src/URLEscape.cpp: Added.
- wtf/url/src/URLEscape.h: Added. (WTF::appendEscapedCharacter):
- wtf/url/src/URLQueryCanonicalizer.h: Added. (WTF::URLQueryCanonicalizer::canonicalize): (WTF::URLQueryCanonicalizer::isAllASCII): (WTF::URLQueryCanonicalizer::appendRaw8BitQueryString): (WTF::URLQueryCanonicalizer::convertToQueryEncoding):
- 12:54 PM Changeset in webkit [69685] by
-
- 6 edits in trunk/WebKitTools
2010-10-13 Adam Barth <abarth@webkit.org>
Reviewed by Csaba Osztrogonác.
webkit-patch build shouldn't need --build to actually build!
https://bugs.webkit.org/show_bug.cgi?id=47438
Yeah, requiring --build for the build command is really dumb. We did
this originally because the build step is usually optional in other
commands. We don't have a good way of reversing the default for an
option in one command. This approach is slightly hacky since --build
still shows up as an option on the help page, but at least it makes
progress. Passing --build is harmless, so the EWS bots shouldn't
explode because of this change.
- Scripts/webkitpy/tool/bot/commitqueuetask.py:
- Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
- Scripts/webkitpy/tool/commands/download.py:
- Scripts/webkitpy/tool/commands/earlywarningsystem.py:
- Scripts/webkitpy/tool/commands/queues_unittest.py:
- 12:38 PM Changeset in webkit [69684] by
-
- 2 edits in trunk/LayoutTests
2010-10-13 Robert Hogan <robert@webkit.org>
Rubber-stamped by Csaba Osztrogonac.
[Qt] editing/execCommand/move-selection-back-line.html fails in DRT
Unskip test that now passes.
- platform/qt/Skipped:
- 12:29 PM Changeset in webkit [69683] by
-
- 19 edits1 add in trunk
JavaScriptCore: Bug 43987 - Downloading using XHR is much slower than before
Change StringBuilder to use overcapacity in a StringImpl, rather than a Vector.
Fundamentally this should be the same (copies current contents to expand capacity,
rather than using a rope), but this approach allows the intermadiate state of the
String to be inspected in the buffer without copying to resolve.
Reviewed by Oliver Hunt.
- runtime/JSONObject.cpp:
(JSC::Stringifier::appendQuotedString):
(JSC::Stringifier::Holder::appendNextProperty):
Renamed StringBuilder::size() -> length() (to match other String types).
- runtime/UStringBuilder.h:
(JSC::UStringBuilder::append):
(JSC::UStringBuilder::toUString):
Update for changes in parent class, can just 'using' the append methods.
- wtf/text/StringBuilder.cpp: Added.
(WTF::StringBuilder::reifyString):
(WTF::StringBuilder::resize):
(WTF::StringBuilder::reserveCapacity):
(WTF::StringBuilder::allocateBuffer):
(WTF::StringBuilder::appendUninitialized):
(WTF::StringBuilder::append):
(WTF::StringBuilder::shrinkToFit):
- wtf/text/StringBuilder.h:
(WTF::StringBuilder::StringBuilder):
(WTF::StringBuilder::append):
(WTF::StringBuilder::toString):
(WTF::StringBuilder::toStringPreserveCapacity):
(WTF::StringBuilder::length):
(WTF::StringBuilder::isEmpty):
(WTF::StringBuilder::operator[]):
(WTF::StringBuilder::clear):
Class updated to use overcapacity in a StringImpl, rather than a Vector.
- Android.mk:
- Android.v8.wtf.mk:
- GNUmakefile.am:
- JavaScriptCore.exp:
- JavaScriptCore.gypi:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreCommon.vsprops:
- JavaScriptCore.vcproj/WTF/WTF.vcproj:
- JavaScriptCore.vcproj/jsc/jsc.vcproj:
- JavaScriptCore.xcodeproj/project.pbxproj:
- wtf/CMakeLists.txt:
- wtf/wtf.pri:
WebCore: Bug 43987 - Downloading using XHR is much slower than before
Reviewed by Oliver Hunt.
- svg/SVGPathStringBuilder.cpp:
(WebCore::SVGPathStringBuilder::result):
StringBuilder::size() -> StringBuilder::length().
WebKit/chromium: Bug 43987 - Downloading using XHR is much slower than before
Reviewed by Oliver Hunt.
- src/WebPageSerializerImpl.cpp:
(WebKit::WebPageSerializerImpl::encodeAndFlushBuffer):
- 12:21 PM Changeset in webkit [69682] by
-
- 2 edits in trunk/WebCore
2010-10-13 Yong Li <yoli@rim.com>
Reviewed by Oliver Hunt.
Fix potential misaligned memory access in CloneDeserializer::readLittleEndian and readString
that can result crash on ARM (<v6).
https://bugs.webkit.org/show_bug.cgi?id=47594
No new test added, because the crash can be produced by existing tests like:
LayoutTests/fast/events/message-channel-gc-4.html
- bindings/js/SerializedScriptValue.cpp: (WebCore::CloneDeserializer::readLittleEndian): (WebCore::CloneDeserializer::readString):
- 12:18 PM Changeset in webkit [69681] by
-
- 63 edits in trunk
2010-09-24 Martin Robinson <mrobinson@igalia.com>
Reviewed by Dirk Schulze.
[Cairo] Activate ContextShadow in all places where shadows are drawn
https://bugs.webkit.org/show_bug.cgi?id=46475
Rebaselined tests. All these changes seem reasonable. In some cases, the
new results are much better / closer matches to Chromium.
- platform/gtk/fast/box-shadow/basic-shadows-expected.checksum:
- platform/gtk/fast/box-shadow/basic-shadows-expected.png:
- platform/gtk/fast/box-shadow/inset-expected.checksum:
- platform/gtk/fast/box-shadow/inset-expected.png:
- platform/gtk/fast/css/shadow-multiple-expected.checksum:
- platform/gtk/fast/css/shadow-multiple-expected.png:
- platform/gtk/fast/text/shadow-no-blur-expected.checksum:
- platform/gtk/fast/text/shadow-no-blur-expected.png:
- platform/gtk/fast/text/shadow-translucent-fill-expected.checksum:
- platform/gtk/fast/text/shadow-translucent-fill-expected.png:
- platform/gtk/fast/text/stroking-decorations-expected.checksum:
- platform/gtk/fast/text/stroking-decorations-expected.png:
- platform/gtk/fast/text/stroking-expected.checksum:
- platform/gtk/fast/text/stroking-expected.png:
- platform/gtk/fast/transforms/shadows-expected.checksum:
- platform/gtk/fast/transforms/shadows-expected.png:
- platform/gtk/svg/css/arrow-with-shadow-expected.checksum:
- platform/gtk/svg/css/arrow-with-shadow-expected.png:
- platform/gtk/svg/css/composite-shadow-text-expected.checksum:
- platform/gtk/svg/css/composite-shadow-text-expected.png:
- platform/gtk/svg/css/group-with-shadow-expected.checksum:
- platform/gtk/svg/css/group-with-shadow-expected.png:
- platform/gtk/svg/css/path-with-shadow-expected.checksum:
- platform/gtk/svg/css/path-with-shadow-expected.png:
- platform/gtk/svg/css/shadow-with-large-radius-expected.checksum:
- platform/gtk/svg/css/shadow-with-large-radius-expected.png:
- platform/gtk/svg/css/shadow-with-negative-offset-expected.checksum:
- platform/gtk/svg/css/shadow-with-negative-offset-expected.png:
2010-10-06 Martin Robinson <mrobinson@igalia.com>
Reviewed by Dirk Schulze.
[Cairo] Activate ContextShadow in all places where shadows are drawn
https://bugs.webkit.org/show_bug.cgi?id=46475
Turn on ContextShadow for the Cairo port and remove all old shadow code.
Shadow tiling optimizations will be added in a followup patch to ContextShadowCairo.
- platform/graphics/GraphicsContext.h: Add a ContextShadow forward declaration for Cairo.
- platform/graphics/cairo/FontCairo.cpp: Switch to using ContextShadow. (WebCore::prepareContextForGlyphDrawing): Added this helper which sets up the translation on the specified cairo_t to prepare for drawing glyphs. (WebCore::drawGlyphsToContext): Added this helper which draws the glyphs to a cairo_t, while properly handling glyphs with synthetic bold. (WebCore::Font::drawGlyphs): Removed old shadow code and replaced it with ContextShadow usage.
- platform/graphics/cairo/GraphicsContextCairo.cpp: (WebCore::drawPathShadow): Modified this to use ContextShadow and to take an enum argument specifying whether to fill or stroke the solid figure for the shadow. (WebCore::fillCurrentCairoPath): Updated drawPathShadow call. (WebCore::strokeCurrentCairoPath): Ditto. (WebCore::GraphicsContext::savePlatformState): Save the ContextShadow. (WebCore::GraphicsContext::restorePlatformState): Restore the ContextShadow. (WebCore::GraphicsContext::drawPath): Updated drawPathShadow call. (WebCore::GraphicsContext::fillRect): Uses ContextShadow now. (WebCore::GraphicsContext::setPlatformShadow): Uses ContextShadow now. (WebCore::GraphicsContext::contextShadow): Added. (WebCore::GraphicsContext::clearPlatformShadow): Clears the ContextShadow member. (WebCore::GraphicsContext::fillRoundedRect): Updated drawPathShadow call.
- platform/graphics/cairo/GraphicsContextPlatformPrivateCairo.h: (WebCore::GraphicsContextPlatformPrivate::hasShadow): Added.
- platform/graphics/cairo/ImageCairo.cpp: (WebCore::BitmapImage::draw): Updated to use ContextShadow.
- 12:15 PM Changeset in webkit [69680] by
-
- 4 edits in trunk/WebKit2
Unreviewed build fixes after r69538.
- UIProcess/WebBackForwardList.h: Add missing include directive
for CoreFoundation.
- UIProcess/cf/WebBackForwardListCF.cpp: Add missing include
directives for RetainPtr.h and CoreFoundation.
- UIProcess/cf/WebPageProxyCF.cpp: Add missing include directive
for RetainPtr.h.
- 11:50 AM Changeset in webkit [69679] by
-
- 1 edit2 moves in trunk/LayoutTests
2010-10-13 Nate Chapin <Nate Chapin>
Unreviewed, Chromium test fix.
Move a couple of platform-specific results that were added to the wrong directory.
- platform/chromium/console-trace-in-eval-expected.txt: Removed.
- platform/chromium/console-uncaught-exception-in-eval-expected.txt: Removed.
- platform/chromium/inspector/console-trace-in-eval-expected.txt: Copied from LayoutTests/platform/chromium/console-trace-in-eval-expected.txt.
- platform/chromium/inspector/console-uncaught-exception-in-eval-expected.txt: Copied from LayoutTests/platform/chromium/console-uncaught-exception-in-eval-expected.txt.
- 11:49 AM Changeset in webkit [69678] by
-
- 4 edits in trunk
Start compiling BackingStore on Windows
Rubber-stamped by Anders Carlsson.
Export tryFastRealloc for WebKit2's benefit
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def: Added
tryFastRealloc. Removed RegExpObject::info, which is now exported via
JS_EXPORTDATA.
WebKit2:
- win/WebKit2.vcproj: Added BackingStore.
- 11:49 AM Changeset in webkit [69677] by
-
- 2 edits1 move1 add in trunk/WebKit2
Rename BackingStoreMac.mm to BackingStoreCG.cpp
There's nothing Mac-specific about this file.
Rubber-stamped by Anders Carlsson.
- Shared/cg/BackingStoreCG.cpp: Renamed from WebKit2/Shared/mac/BackingStoreMac.mm.
- WebKit2.xcodeproj/project.pbxproj: Updated for rename.
- 11:31 AM Changeset in webkit [69676] by
-
- 2 edits in trunk/LayoutTests
2010-10-13 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r69667.
http://trac.webkit.org/changeset/69667
https://bugs.webkit.org/show_bug.cgi?id=47598
"Most of the tests seem to fail in the bots for some reason"
(Requested by xan_ on #webkit).
- platform/gtk/Skipped:
- 11:12 AM Changeset in webkit [69675] by
-
- 3 edits in trunk/WebKit/chromium
2010-10-13 Adam Barth <abarth@webkit.org>
Reviewed by Tony Chang.
[Chromium] Clean up WebPageSerializerImpl::serialize
https://bugs.webkit.org/show_bug.cgi?id=47577
This patch shouldn't have any behavior change. I'm just trying to
understand what this code does.
- src/WebPageSerializerImpl.cpp: (WebKit::WebPageSerializerImpl::saveHTMLContentToBuffer): (WebKit::WebPageSerializerImpl::encodeAndFlushBuffer): (WebKit::WebPageSerializerImpl::serialize):
- src/WebPageSerializerImpl.h:
- 11:10 AM Changeset in webkit [69674] by
-
- 7 edits in trunk/WebKitTools
2010-10-13 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r69638.
http://trac.webkit.org/changeset/69638
https://bugs.webkit.org/show_bug.cgi?id=47595
"Broke win and chromium-win bots" (Requested by dglazkov on
#webkit).
- Scripts/webkitpy/common/system/path.py:
- Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
- Scripts/webkitpy/layout_tests/port/base.py:
- Scripts/webkitpy/layout_tests/port/base_unittest.py:
- Scripts/webkitpy/layout_tests/port/chromium.py:
- Scripts/webkitpy/layout_tests/run_webkit_tests.py:
- 11:01 AM Changeset in webkit [69673] by
-
- 12 edits in trunk
2010-10-13 John Knottenbelt <jknotten@chromium.org>
Reviewed by Steve Block.
First step towards client-based Geolocation in Chromium. Build
fixes for CLIENT_BASED_GEOLOCATION preprocessor feature define.
https://bugs.webkit.org/show_bug.cgi?id=47586
- WebCore.gyp/WebCore.gyp:
- platform/chromium/ChromiumBridge.h:
- platform/chromium/GeolocationServiceChromium.cpp:
2010-10-13 John Knottenbelt <jknotten@chromium.org>
Reviewed by Steve Block.
First step towards client-based Geolocation in Chromium. Build
fixes for CLIENT_BASED_GEOLOCATION preprocessor feature define.
https://bugs.webkit.org/show_bug.cgi?id=47586
- WebKit.gyp:
- src/ChromeClientImpl.cpp: (WebKit::ChromeClientImpl::requestGeolocationPermissionForFrame): (WebKit::ChromeClientImpl::cancelGeolocationPermissionRequestForFrame):
- src/ChromiumBridge.cpp:
- src/WebGeolocationServiceMock.cpp: (WebKit::WebGeolocationServiceMock::createWebGeolocationServiceMock): (WebKit::WebGeolocationServiceMock::setMockGeolocationPermission): (WebKit::WebGeolocationServiceMock::setMockGeolocationPosition): (WebKit::WebGeolocationServiceMock::setMockGeolocationError):
2010-10-13 John Knottenbelt <jknotten@chromium.org>
Reviewed by Steve Block.
First step towards client-based Geolocation in Chromium. Build
fixes for CLIENT_BASED_GEOLOCATION preprocessor feature define.
https://bugs.webkit.org/show_bug.cgi?id=47586
- DumpRenderTree/chromium/WebViewHost.cpp:
- DumpRenderTree/chromium/WebViewHost.h:
- 11:01 AM Changeset in webkit [69672] by
-
- 2 edits in trunk/WebKit2
Allow all signals to be delivered to the web process
https://bugs.webkit.org/show_bug.cgi?id=47602
<rdar://problem/8546399>
Reviewed by Sam Weinig.
- UIProcess/Launcher/mac/ProcessLauncherMac.mm:
(WebKit::ProcessLauncher::launchProcess):
- 10:40 AM Changeset in webkit [69671] by
-
- 12 edits2 adds in trunk
Let WebCore handle scrolling when the spacebar is pressed on Windows
WebCore already has code to do this, and WebKit2 was doing it on
keydown instead of keypress, which caused problems with text fields.
WebCore's spacebar-handling code is currently compiled out on Mac and
Qt, so we continue to handle spacebar in WebKit2 on those platforms.
Fixes <http://webkit.org/b/47544> <rdar://problem/8540645> REGRESSION:
Pressing spacebar in a text field in WebKit2 does not insert a space,
scrolls the page instead
Test: WebKit2/SpacebarScrolling
Reviewed by Sam Weinig.
WebKit2:
- WebProcess/WebPage/win/WebPageWin.cpp:
(WebKit::WebPage::performDefaultBehaviorForKeyEvent):
Removed handling for spacebar presses. WebCore already does this for
us, and does it better.
WebKitTools:
Test that pressing the spacebar in a text field does not scroll the
document
- TestWebKitAPI/PlatformUtilities.h: Added isKeyDown.
- TestWebKitAPI/PlatformWebView.h: Added simulateSpacebarKeyPress.
- TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
- TestWebKitAPI/win/TestWebKitAPI.vcproj:
- TestWebKitAPI/win/copy-resources.cmd:
Added new files.
- TestWebKitAPI/Tests/WebKit2/SpacebarScrolling.cpp: Added.
(TestWebKitAPI::JavaScriptCallbackContext::JavaScriptCallbackContext):
We use this to track what the result of calling into JavaScript was.
(TestWebKitAPI::didFinishLoadForFrame): Records when the page
finishes loading.
(TestWebKitAPI::didNotHandleKeyEventCallback): Records when a key down
event is not handled.
(TestWebKitAPI::javaScriptCallback): Records that JavaScript finished
executing and whether the result matched our expectation.
(TestWebKitAPI::wk): Turns a UTF-8 C string into a WKStringRef.
(TestWebKitAPI::runJSTest): Calls into JS, waits for the call to
complete, and returns whether we got back the expected result.
(TestWebKitAPI::WebKit2_SpacebarScrolling): Tests that pressing
spacebar inside a text field does not scroll the document and that
pressing it outside the text field does scroll the document.
- TestWebKitAPI/Tests/WebKit2/spacebar-scrolling.html: Added.
- TestWebKitAPI/mac/PlatformUtilitiesMac.mm:
(TestWebKitAPI::Util::isKeyDown): Checks the event's type.
- TestWebKitAPI/mac/PlatformWebViewMac.mm:
(TestWebKitAPI::PlatformWebView::simulateSpacebarKeyPress): Copied
code from DRT's EventSendingController.
- TestWebKitAPI/win/PlatformUtilitiesWin.cpp:
(TestWebKitAPI::Util::isKeyDown): Checks the message's type.
- TestWebKitAPI/win/PlatformWebViewWin.cpp:
(TestWebKitAPI::PlatformWebView::simulateSpacebarKeyPress): Send the
same messages that get sent when you press spacebar in Notepad.
- 10:26 AM Changeset in webkit [69670] by
-
- 2 edits in trunk/WebKit/chromium
2010-10-11 Andrei Popescu <andreip@google.com>
Reviewed by Jeremy Orlow.
[Chromium] Cleanup WebIDBFactory::open once the Chromium plumbing has landed.
https://bugs.webkit.org/show_bug.cgi?id=47531
Remove the temporary open() method since the appropriate Chromium plumbing was
added in http://codereview.chromium.org/3729003/
- public/WebIDBFactory.h: (WebKit::WebIDBFactory::open):
- 10:21 AM Changeset in webkit [69669] by
-
- 2 edits2 adds in trunk/JavaScriptCore
2010-10-13 Adam Barth <abarth@webkit.org>
Reviewed by Maciej Stachowiak.
[WTFURL] Add a mechanism for classifying types of characters
https://bugs.webkit.org/show_bug.cgi?id=45085
Various characters have different escaping rules depending on where
they are in URLs. This patch adds a table containing that information.
- JavaScriptCore.xcodeproj/project.pbxproj:
- wtf/url/src/URLCharacterTypes.cpp: Added.
- wtf/url/src/URLCharacterTypes.h: Added. (WTF::URLCharacterTypes::isQueryChar): (WTF::URLCharacterTypes::isIPv4Char): (WTF::URLCharacterTypes::isHexChar): (WTF::URLCharacterTypes::isCharOfType):
- 9:40 AM Changeset in webkit [69668] by
-
- 3 edits in trunk/WebKit/chromium
2010-10-13 Adam Barth <abarth@webkit.org>
Reviewed by Darin Fisher.
[Chromium] Clean up SerializeDomParam
https://bugs.webkit.org/show_bug.cgi?id=47580
This patch just renames a bunch of the members of this struct to be
more sensible. No behavior change, well, except for one struct member
that wasn't initialized. I didn't trace through this code to see if
the uninitialized value was used anywhere, but initializing all the
values seems like a good idea.
- src/WebPageSerializerImpl.cpp: (WebKit::WebPageSerializerImpl::SerializeDomParam::SerializeDomParam): (WebKit::WebPageSerializerImpl::preActionBeforeSerializeOpenTag): (WebKit::WebPageSerializerImpl::postActionAfterSerializeOpenTag): (WebKit::WebPageSerializerImpl::postActionAfterSerializeEndTag): (WebKit::WebPageSerializerImpl::encodeAndFlushBuffer): (WebKit::WebPageSerializerImpl::openTagToString): (WebKit::WebPageSerializerImpl::endTagToString): (WebKit::WebPageSerializerImpl::buildContentForNode):
- src/WebPageSerializerImpl.h:
- 8:53 AM Changeset in webkit [69667] by
-
- 2 edits in trunk/LayoutTests
2010-10-13 Xan Lopez <xlopez@igalia.com>
Reviewed by Martin Robinson.
Unskip some fast/js tests that seem to be working now.
- platform/gtk/Skipped:
- 8:44 AM Changeset in webkit [69666] by
-
- 2 edits in trunk/WebCore
Unreviewed fix
Need to check for the existence of DeviceOrientation and DeviceMotion controllers
These features can be disabled at run time, so an enable guard is not sufficient.
This bug was introduced in http://trac.webkit.org/changeset/69646
Tested with existing tests.
- history/PageCache.cpp:
(WebCore::logCanCachePageDecision):
(WebCore::PageCache::canCache):
- 8:39 AM Changeset in webkit [69665] by
-
- 2 edits in trunk/JavaScriptCore
2010-10-13 Xan Lopez <xlopez@igalia.com>
Reviewed by Csaba Osztrogonác.
Missing parameters for bytecode dump of next_pname
https://bugs.webkit.org/show_bug.cgi?id=47590
- bytecode/CodeBlock.cpp: (JSC::CodeBlock::dump): add missing parameters to the dump.
- 8:24 AM Changeset in webkit [69664] by
-
- 2 edits in trunk/LayoutTests
2010-10-13 Yury Semikhatsky <yurys@chromium.org>
Unreviewed. Update test expectation.
- inspector/console-trace-expected.txt:
- 7:44 AM Changeset in webkit [69663] by
-
- 17 edits1 move1 add in trunk/JavaScriptCore
2010-10-13 Nikolas Zimmermann <nzimmermann@rim.com>
Reviewed by Dirk Schulze.
Add wtf/text/StringConcatenate
https://bugs.webkit.org/show_bug.cgi?id=47584
Move runtime/StringConcatenate.h to wtf/text, make it work for Strings too.
Add a special runtime/UStringConcatenate.h class that inherits from StringConcatenate, and extends it for use with UString.
Exactly the same design that has been followed while refactoring StringBuilder.
The UString variants can all be removed as soon as WTF::String & JSC::UString converge.
- GNUmakefile.am: Add wtf/text/StringConcatenate.h and runtime/UStringConcatenate.h.
- JavaScriptCore.gypi: Ditto.
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj: Ditto.
- JavaScriptCore.vcproj/WTF/WTF.vcproj: Ditto.
- JavaScriptCore.xcodeproj/project.pbxproj: Ditto.
- bytecode/CodeBlock.cpp: s/makeString/makeUString/ (JSC::escapeQuotes): (JSC::valueToSourceString): (JSC::constantName): (JSC::idName): (JSC::CodeBlock::registerName): (JSC::regexpToSourceString): (JSC::regexpName):
- bytecompiler/NodesCodegen.cpp: Ditto. (JSC::substitute):
- profiler/Profiler.cpp: Ditto. (JSC::Profiler::createCallIdentifier):
- runtime/ExceptionHelpers.cpp: Ditto. (JSC::createUndefinedVariableError): (JSC::createErrorMessage): (JSC::createInvalidParamError):
- runtime/FunctionConstructor.cpp: Ditto. (JSC::constructFunction):
- runtime/FunctionPrototype.cpp: Ditto. (JSC::insertSemicolonIfNeeded):
- runtime/JSONObject.cpp: Ditto. (JSC::Stringifier::indent):
- runtime/JSStringBuilder.h: (JSC::jsMakeNontrivialString):
- runtime/RegExpConstructor.cpp: Ditto. (JSC::constructRegExp):
- runtime/RegExpObject.cpp: Ditto. (JSC::RegExpObject::match):
- runtime/RegExpPrototype.cpp: Ditto. (JSC::regExpProtoFuncCompile):
- runtime/StringConcatenate.h: Removed.
- runtime/UStringConcatenate.h: Added. Only contains the StringTypeAdapter<JSC::UString> code and the makeUString variants, the rest lives in wtf/text/StringConcatenate.h (JSC::makeUString):
- wtf/text/StringConcatenate.h: Copied from runtime/StringConcatenate.h. (WTF::makeString):
- 7:43 AM Changeset in webkit [69662] by
-
- 16 edits6 adds in trunk
2010-10-13 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: stack information is inconsistent between console.trace and runtime errors.
https://bugs.webkit.org/show_bug.cgi?id=47252
- console.trace() is now formatted the same way as other stack traces
- If there is @ sourceURL=url line at the end of eval'ed script source the url will be shown in the stack traces for script. That is why ScriptCallFrame::sourceURL type has changed from KURL to String.
Tests: inspector/console-trace-in-eval.html
inspector/console-uncaught-exception-in-eval.html
- bindings/js/ScriptCallFrame.cpp: (WebCore::ScriptCallFrame::ScriptCallFrame):
- bindings/js/ScriptCallFrame.h: (WebCore::ScriptCallFrame::sourceURL):
- bindings/v8/ScriptCallFrame.cpp: (WebCore::ScriptCallFrame::ScriptCallFrame):
- bindings/v8/ScriptCallFrame.h: (WebCore::ScriptCallFrame::sourceURL):
- bindings/v8/ScriptCallStack.cpp: (WebCore::getFrameLocation): (WebCore::ScriptCallStack::create):
- bindings/v8/ScriptCallStack.h:
- bindings/v8/ScriptController.cpp: (WebCore::ScriptController::setCaptureCallStackForUncaughtExceptions):
- bindings/v8/custom/V8ConsoleCustom.cpp: (WebCore::V8Console::traceCallback):
- inspector/ConsoleMessage.cpp: (WebCore::ConsoleMessage::CallFrame::buildInspectorObject): (WebCore::ConsoleMessage::ConsoleMessage):
- inspector/ConsoleMessage.h:
- inspector/front-end/ConsoleView.js: (WebInspector.ConsoleMessage.prototype._formatMessage):
- page/Console.cpp: (WebCore::Console::addMessage): (WebCore::Console::count): (WebCore::Console::timeEnd):
2010-10-13 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: stack information is inconsistent between console.trace and runtime errors.
https://bugs.webkit.org/show_bug.cgi?id=47252
- inspector/console-trace-in-eval-expected.txt: Added.
- inspector/console-trace-in-eval.html: Added.
- inspector/console-uncaught-exception-in-eval-expected.txt: Added.
- inspector/console-uncaught-exception-in-eval.html: Added.
- platform/chromium/console-trace-in-eval-expected.txt: Added.
- platform/chromium/console-uncaught-exception-in-eval-expected.txt: Added.
2010-10-13 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: stack information is inconsistent between console.trace and runtime errors.
https://bugs.webkit.org/show_bug.cgi?id=47252
- DEPS: bump up V8 revision
- 7:42 AM Changeset in webkit [69661] by
-
- 10 edits in trunk/WebKit2
Add ability for WK2 to set domain relaxation forbidden for a URL scheme.
https://bugs.webkit.org/show_bug.cgi?id=47562
Reviewed by Jon Honeycutt.
Add the schemes for which domain relaxation is forbidden to the
WebProcessCreationParameters.
- Shared/WebProcessCreationParameters.cpp:
(WebKit::WebProcessCreationParameters::encode):
(WebKit::WebProcessCreationParameters::decode):
- Shared/WebProcessCreationParameters.h:
- UIProcess/API/C/WKContext.cpp:
(WKContextSetDomainRelaxationForbiddenForURLScheme):
- UIProcess/API/C/WKContextPrivate.h:
- UIProcess/WebContext.cpp:
(WebKit::WebContext::ensureWebProcess):
Copy over the schemes for which domain relaxation is forbidden to
WebProcessCreationParameters.
(WebKit::WebContext::setDomainRelaxationForbiddenForURLScheme):
Only send a message to the WebProcess if it is valid.
- UIProcess/WebContext.h:
- WebProcess/WebProcess.cpp:
(WebKit::WebProcess::initializeWebProcess):
Set domain relaxation forbidden for the schemes in
WebProcesCreationParameters.urlSchemesForWhichDomainRelaxationIsForbidden.
(WebKit::WebProcess::setDomainRelaxationForbiddenForURLScheme):
- WebProcess/WebProcess.h:
- WebProcess/WebProcess.messages.in:
Add the SetDomainRelaxationFobiddenForURLScheme message.
- 7:37 AM Changeset in webkit [69660] by
-
- 2 edits in trunk/WebCore
2010-10-13 Kent Tamura <tkent@chromium.org>
Unreviewed, a trivial change.
Run sort-Xcode-project-file.
- WebCore.xcodeproj/project.pbxproj:
- 7:34 AM Changeset in webkit [69659] by
-
- 4 edits in trunk/WebKitTools
Fix a couple of issues with the TestWebKitAPI build
- TestWebKitAPI/Configurations/TestWebKitAPICFLite.vsprops:
- TestWebKitAPI/Configurations/TestWebKitAPICoreFoundation.vsprops:
Fixed a typo.
- TestWebKitAPI/win/TestWebKitAPIGenerated.vcproj: Use common.vsprops
to set our output and intermediate directories so that we don't spew
files into the source tree.
- 7:08 AM Changeset in webkit [69658] by
-
- 2 edits in trunk/LayoutTests
Unreviewed.
- platform/qt/Skipped: Reskip fast/events/spatial-navigation/snav-clipped-overflowed-content.html again, because it still fails.
- 7:07 AM Changeset in webkit [69657] by
-
- 3 edits in trunk/WebKitTools
2010-10-13 Balazs Kelemen <kbalazs@webkit.org>
Reviewed by Csaba Osztrogonác.
WTR should accept relative paths
https://bugs.webkit.org/show_bug.cgi?id=47486
- WebKitTestRunner/StringFunctions.h:
- WebKitTestRunner/TestInvocation.cpp: (WTR::createWKURL): Moved from StringFunctions.h since it is used only here. Extend relative paths to absolute.
- 6:58 AM Changeset in webkit [69656] by
-
- 6 edits1 copy10 adds in trunk
Make TestWebKitAPI work on Windows
Fixes <http://webkit.org/b/47552> <rdar://problem/8541708>.
Reviewed by Sam Weinig.
WebKit/win:
Build TestWebKitAPI on Windows
- WebKit.vcproj/WebKit.sln: Added TestWebKitAPI and
TestWebKitAPIGenerated and made them build just after
WebKitTestRunner.
WebKitTools:
- Scripts/build-api-tests: Build TestWebKitAPI.sln on Windows.
- Scripts/run-api-tests: Fix the PATH so that TestWebKitAPI can be
run on Windows.
(runTest): Added code to run TestWebKitAPI.exe on Windows and to die
on unsupported platforms.
(populateTests): Added code to run TestWebKitAPI.exe on Windows and to
die on other platforms. Extracted some formerly-Mac-specific code to
be cross-platform and made it handle any style of line-endings.
- TestWebKitAPI/Configurations/TestWebKitAPICFLite.vsprops: Added.
Links against CFLite.
- TestWebKitAPI/Configurations/TestWebKitAPICommon.vsprops: Added.
Contains most properties for the project.
- TestWebKitAPI/Configurations/TestWebKitAPICoreFoundation.vsprops:
Added. Links against CoreFoundation.
- TestWebKitAPI/TestWebKitAPIPrefix.h: Added a Windows-specific
section and moved the cross-platform section after the
platform-specific parts.
- TestWebKitAPI/win/PlatformUtilitiesWin.cpp: Added.
(TestWebKitAPI::Util::run): Runs a normal message pump until we're
done.
(TestWebKitAPI::Util::cf): Turns a UTF-8 C string into a CFString.
(TestWebKitAPI::Util::createURLForResource): Uses CFBundle to get the
resource path.
(TestWebKitAPI::Util::URLForNonExistentResource): Creates a bogus
WKURL.
- TestWebKitAPI/win/PlatformWebViewWin.cpp: Added.
(TestWebKitAPI::registerWindowClass):
(TestWebKitAPI::PlatformWebView::PlatformWebView):
(TestWebKitAPI::PlatformWebView::~PlatformWebView):
(TestWebKitAPI::PlatformWebView::page):
This was mostly copied from WebKitTestRunner's PlatformWebView.
- TestWebKitAPI/win/TestWebKitAPI.sln: Added. Builds both
TestWebKitAPI and TestWebKitAPIGeneratd. This is used by the
build-api-tests script.
- TestWebKitAPI/win/TestWebKitAPI.vcproj: Added. Builds
TestWebKitAPI.exe.
- TestWebKitAPI/win/TestWebKitAPIGenerated.vcproj: Added. Just calls
through to copy-resources.cmd.
- TestWebKitAPI/win/copy-resources.cmd: Added. Copies resources into
or deletes resources from TestWebKitAPI.resources.
- TestWebKitAPI/win/main.cpp: Added.
(main): Calls through to TestsController.
- 6:46 AM Changeset in webkit [69655] by
-
- 10 edits in trunk
2010-10-13 Xan Lopez <xlopez@igalia.com>
Reviewed by Gustavo Noronha.
[GTK] Remove more warnings from the g-i scanner run
https://bugs.webkit.org/show_bug.cgi?id=47255
Fixes almost all warnings coming from the g-i scanner.
- GNUmakefile.am: Add missing files and include dirs to the scanner run.
WebKit/gtk:
2010-10-13 Xan Lopez <xlopez@igalia.com>
Reviewed by Gustavo Noronha.
[GTK] Remove more warnings from the g-i scanner run
https://bugs.webkit.org/show_bug.cgi?id=47255
Fixes almost all warnings coming from the g-i scanner.
- webkit/webkitsecurityorigin.cpp: Rename parameter names in gtk-doc blurb to the actual name of the parameter.
- webkit/webkitsoupauthdialog.c: ditto. (webkit_soup_auth_dialog_class_init): Write missing doc for the 'current-toplevel' signal.
- webkit/webkitsoupauthdialog.h: Rename signal parameter to its actual name.
- webkit/webkitwebdatabase.cpp: Rename parameter names in gtk-doc blurb to the actual name of the parameter.
- webkit/webkitwebinspector.cpp: ditto. (webkit_web_inspector_class_init): ditto.
- webkit/webkitwebview.cpp: ditto. (webkit_web_view_class_init): ditto.
- webkit/webkitwebview.h: Rename the parameter names to be in sync with the ones we use in the function definition.
- 6:32 AM Changeset in webkit [69654] by
-
- 4 edits in trunk/LayoutTests
2010-10-13 Antonio Gomes <agomes@rim.com>
Unreviewed clean up of Spatial Navigation tests listed in Mac, Gtk and Qt's Skipped files.
- platform/qt/Skipped: Unskip fast/events/spatial-navigation/snav-clipped-overflowed-content.html
- platform/gtk/Skipped: Added reference to the respective bug # for the skipped spatial navigation tests.
- platform/mac/Skipped: Ditto.
- 6:09 AM Changeset in webkit [69653] by
-
- 3 edits in trunk/WebKit2
2010-10-13 Csaba Osztrogonác <Csaba Osztrogonác>
Reviewed by Kenneth Rohde Christiansen.
[Qt] Simplify code generation in WebKit2/DerivedSources.pro
https://bugs.webkit.org/show_bug.cgi?id=47543
- DerivedSources.pro: General generator rules added instead of copy/paste code to converge Makefile.DerivedSources.
- WebKit2.pro: PluginProcess' headers and sources added.
- 6:05 AM QtWebKitFeatures21 edited by
- (diff)
- 6:04 AM QtWebKitFeatures21 edited by
- (diff)
- 5:49 AM Changeset in webkit [69652] by
-
- 2 edits in trunk/LayoutTests
2010-10-13 Alexander Pavlov <apavlov@chromium.org>
[Chromium] Unreviewed, build fix.
Bring back the storage/change-version.html CRASH expectation (still crashes on the main waterfall).
- platform/chromium/test_expectations.txt:
- 5:27 AM Changeset in webkit [69651] by
-
- 3 edits2 adds in trunk
2010-10-13 Yael Aharon <yael.aharon@nokia.com>
Reviewed by Andreas Kling.
Wrong ASSERT when select element has size 0
https://bugs.webkit.org/show_bug.cgi?id=47567
- fast/dom/HTMLSelectElement/click-size-zero-no-crash-expected.txt: Added.
- fast/dom/HTMLSelectElement/click-size-zero-no-crash.html: Added.
2010-10-13 Yael Aharon <yael.aharon@nokia.com>
Reviewed by Andreas Kling.
Wrong ASSERT when select element has size 0
https://bugs.webkit.org/show_bug.cgi?id=47567
Keep the ASSERT only if the size of the element list is more than 0
Test: fast/dom/HTMLSelectElement/click-size-zero-no-crash.html
- dom/SelectElement.cpp: (WebCore::SelectElement::updateListBoxSelection): (WebCore::SelectElement::listBoxDefaultEventHandler):
- 5:14 AM Changeset in webkit [69650] by
-
- 8 edits in trunk
2010-10-13 Gyuyoung Kim <gyuyoung.kim@samsung.com>
Reviewed by Kenneth Rohde Christiansen.
[EFL] Support viewport configuration and add new arguments for WebKit EFL
https://bugs.webkit.org/show_bug.cgi?id=47084
Opera spec regarding to viewport meta tag was adjusted to WebCore. So, EFL port
needs to be modified according to the changes.
- WebCoreSupport/ChromeClientEfl.cpp: (WebCore::ChromeClientEfl::dispatchViewportDataDidChange):
- WebCoreSupport/FrameLoaderClientEfl.cpp: (WebCore::FrameLoaderClientEfl::dispatchDidCommitLoad):
- ewk/ewk_private.h:
- ewk/ewk_view.cpp: (_ewk_view_priv_new): (_ewk_view_viewport_attributes_compute): (ewk_view_viewport_attributes_set): (ewk_view_viewport_attributes_get): (ewk_view_device_pixel_ratio_get):
- ewk/ewk_view.h:
2010-10-13 Gyuyoung Kim <gyuyoung.kim@samsung.com>
Reviewed by Kenneth Rohde Christiansen.
[EFL] Support viewport configuration and add new arguments for WebKit EFL
https://bugs.webkit.org/show_bug.cgi?id=47084
Opera spec regarding to viewport meta tag was adjusted to WebCore. So, EFL port
needs to be modified according to the changes.
- EWebLauncher/main.c: (on_viewport_changed):
- 5:05 AM Changeset in webkit [69649] by
-
- 4 edits in trunk/WebKit2
2010-10-13 Andreas Kling <kling@webkit.org>
Reviewed by Kenneth Rohde Christiansen.
[Qt] Use flag instead of magic word to mark memory map free/used
Original patch by Antti Koivisto.
- Shared/qt/MappedMemory.h: (WebKit::MappedMemory::mapSize): (WebKit::MappedMemory::markUsed): (WebKit::MappedMemory::markFree): (WebKit::MappedMemory::isFree): (WebKit::MappedMemory::data):
- Shared/qt/MappedMemoryPool.cpp: (WebKit::MappedMemoryPool::cleanUp):
- Shared/qt/UpdateChunk.cpp: (WebKit::mapMemory): (WebKit::mapFile): (WebKit::UpdateChunk::data): (WebKit::UpdateChunk::decode):
- 4:56 AM Changeset in webkit [69648] by
-
- 2 edits in trunk/WebKit/qt
2010-10-13 Dinu Jacob <dinu.jacob@nokia.com>
Reviewed by Andreas Kling.
[Qt] Update .def file for Symbian
https://bugs.webkit.org/show_bug.cgi?id=47540
Updated symbols for Symbian - added viewportAttributesForSize and
made viewportConfigurationForSize absent based on the API change in
47325
- symbian/eabi/QtWebKitu.def:
- 3:17 AM Changeset in webkit [69647] by
-
- 3 edits6 adds in trunk/LayoutTests
2010-10-13 Nikolas Zimmermann <nzimmermann@rim.com>
Not reviewed.
Rebaseline some windows tests. Add new expectations for two SVG tests.
- platform/win/fast/dom/Window/window-property-descriptors-expected.txt:
- platform/win/fast/dom/prototype-inheritance-2-expected.txt:
- platform/win/svg/batik: Added.
- platform/win/svg/batik/masking: Added.
- platform/win/svg/batik/masking/maskRegions-expected.txt: Added.
- platform/win/svg/zoom: Added.
- platform/win/svg/zoom/page: Added.
- platform/win/svg/zoom/page/zoom-mask-with-percentages-expected.txt: Added.
- 3:00 AM Changeset in webkit [69646] by
-
- 6 edits12 adds in trunk
2010-10-13 Steve Block <steveblock@google.com>
Reviewed by Alexey Proskuryakov.
Pages using DeviceOrientation and DeviceMotion should not go into the page cache
https://bugs.webkit.org/show_bug.cgi?id=47408
- fast/dom/DeviceMotion/no-page-cache-expected.txt: Added.
- fast/dom/DeviceMotion/no-page-cache.html: Added.
- fast/dom/DeviceMotion/resources: Added.
- fast/dom/DeviceMotion/resources/cached-page-1.html: Added.
- fast/dom/DeviceMotion/resources/cached-page-2.html: Added.
- fast/dom/DeviceMotion/script-tests/no-page-cache.js: Added. (reportPageOneOnload):
- fast/dom/DeviceOrientation/no-page-cache-expected.txt: Added.
- fast/dom/DeviceOrientation/no-page-cache.html: Added.
- fast/dom/DeviceOrientation/resources: Added.
- fast/dom/DeviceOrientation/resources/cached-page-1.html: Added.
- fast/dom/DeviceOrientation/resources/cached-page-2.html: Added.
- fast/dom/DeviceOrientation/script-tests/no-page-cache.js: Added. (reportPageOneOnload):
2010-10-13 Steve Block <steveblock@google.com>
Reviewed by Alexey Proskuryakov.
Pages using DeviceOrientation and DeviceMotion should not go into the page cache
https://bugs.webkit.org/show_bug.cgi?id=47408
Tests: fast/dom/DeviceMotion/no-page-cache.html
fast/dom/DeviceOrientation/no-page-cache.html
- dom/DeviceMotionController.h: (WebCore::DeviceMotionController::isActive):
- dom/DeviceOrientationController.h: (WebCore::DeviceOrientationController::isActive):
- history/PageCache.cpp: (WebCore::logCanCachePageDecision): (WebCore::PageCache::canCache):
- page/Page.cpp:
- 2:54 AM QtWebKitFeatures21 edited by
- (diff)
- 2:24 AM Changeset in webkit [69645] by
-
- 2 edits in trunk/LayoutTests
2010-10-13 Alexander Pavlov <apavlov@chromium.org>
[Chromium] Unreviewed, build fix.
Disable printing/simultaneous-position-float-change.html as LayoutTestController::setPrinting()
is not implemented in Chromium.
https://bugs.webkit.org/show_bug.cgi?id=47578
- platform/chromium/test_expectations.txt:
- 2:18 AM QtWebKitFeatures21 created by
- 2:14 AM Changeset in webkit [69644] by
-
- 1 edit9 adds in trunk/LayoutTests
2010-10-13 Roland Steiner <rolandsteiner@chromium.org>
Unreviewed: Chromium pixel baselines for new ruby test.
Add baselines for the new ruby test introduced in WK r69642.
- platform/chromium-linux/fast/ruby/ruby-beforeafter-expected.checksum: Added.
- platform/chromium-linux/fast/ruby/ruby-beforeafter-expected.png: Added.
- platform/chromium-linux/fast/ruby/ruby-beforeafter-expected.txt: Added.
- platform/chromium-mac/fast/ruby/ruby-beforeafter-expected.checksum: Added.
- platform/chromium-mac/fast/ruby/ruby-beforeafter-expected.png: Added.
- platform/chromium-win/fast/ruby/ruby-beforeafter-expected.checksum: Added.
- platform/chromium-win/fast/ruby/ruby-beforeafter-expected.png: Added.
- platform/chromium-win/fast/ruby/ruby-beforeafter-expected.txt: Added.
- 2:03 AM Changeset in webkit [69643] by
-
- 4 edits4 adds in trunk
2010-10-13 Jenn Braithwaite <jennb@chromium.org>
Reviewed by Dmitry Titov.
Make resource identifiers unique across pages
https://bugs.webkit.org/show_bug.cgi?id=47002
- http/tests/misc/iframe-reparenting-id-collision-expected.txt: Added.
- http/tests/misc/iframe-reparenting-id-collision.html: Added.
- http/tests/misc/resources/iframe-reparenting-id-collision-page.html: Added.
- http/tests/misc/resources/send-async-xhr.html: Added.
2010-10-13 Jenn Braithwaite <jennb@chromium.org>
Reviewed by Dmitry Titov.
Make resource identifiers unique across pages
https://bugs.webkit.org/show_bug.cgi?id=47002
Test: http/tests/misc/iframe-reparenting-id-collision.html
- loader/ProgressTracker.cpp: (WebCore::ProgressTracker::ProgressTracker): (WebCore::ProgressTracker::createUniqueIdentifier):
- loader/ProgressTracker.h:
- 12:25 AM Changeset in webkit [69642] by
-
- 8 edits1 copy5 adds in trunk
2010-10-07 Roland Steiner <rolandsteiner@chromium.org>
Reviewed by Davit Hyatt.
Bug 41040 - :before/:after content should not become part of a ruby base
https://bugs.webkit.org/show_bug.cgi?id=41040
Also related to:
https://bugs.webkit.org/show_bug.cgi?id=40895.
https://bugs.webkit.org/show_bug.cgi?id=43722.
Layout tests: verify that generated content is outside of the ruby base.
Also, tests shouldn't crash.
- fast/ruby/after-doesnt-crash-expected.txt:
- fast/ruby/after-doesnt-crash.html: Added.
- fast/ruby/before-doesnt-crash.html:
- fast/ruby/ruby-beforeafter.html: Added.
- platform/gtk/Skipped:
- platform/mac/fast/ruby/ruby-beforeafter-expected.checksum: Added.
- platform/mac/fast/ruby/ruby-beforeafter-expected.png: Added.
- platform/mac/fast/ruby/ruby-beforeafter-expected.txt: Added.
- platform/qt/Skipped:
Explicitly handle :before and :after content in the default way.
Test: fast/ruby/ruby-beforeafter.html
fast/ruby/after-doesnt-crash.html
- rendering/RenderObject.h: (WebCore::RenderObject::isBeforeContent):
- rendering/RenderRuby.cpp: (WebCore::lastRubyRun): (WebCore::RenderRubyAsInline::addChild): (WebCore::RenderRubyAsInline::removeChild): (WebCore::RenderRubyAsBlock::addChild): (WebCore::RenderRubyAsBlock::removeChild):
Oct 12, 2010:
- 11:52 PM Changeset in webkit [69641] by
-
- 2 edits in trunk/WebKit2
Build fix. Unreviewed.
- win/WebKit2Generated.make:
Copy over WKBundleHitTestResult.h.
- 11:34 PM Changeset in webkit [69640] by
-
- 13 edits4 deletes in trunk
2010-10-12 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r69639.
http://trac.webkit.org/changeset/69639
https://bugs.webkit.org/show_bug.cgi?id=47575
"regressed nav-element.html" (Requested by rniwa on #webkit).
- editing/execCommand/format-block-expected.txt:
- editing/execCommand/format-block-from-range-selection-expected.txt:
- editing/execCommand/format-block-multiple-paragraphs-expected.txt: Removed.
- editing/execCommand/format-block-multiple-paragraphs.html: Removed.
- editing/execCommand/format-block-table-expected.txt: Removed.
- editing/execCommand/format-block-table.html: Removed.
- editing/execCommand/format-block-with-braces-expected.txt:
2010-10-12 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r69639.
http://trac.webkit.org/changeset/69639
https://bugs.webkit.org/show_bug.cgi?id=47575
"regressed nav-element.html" (Requested by rniwa on #webkit).
- editing/ApplyBlockElementCommand.cpp: (WebCore::ApplyBlockElementCommand::formatSelection):
- editing/EditorCommand.cpp: (WebCore::executeFormatBlock):
- editing/FormatBlockCommand.cpp: (WebCore::FormatBlockCommand::formatRange):
- editing/FormatBlockCommand.h: (WebCore::FormatBlockCommand::editingAction):
- editing/VisiblePosition.cpp: (WebCore::enclosingBlockFlowElement):
- editing/VisiblePosition.h:
- editing/htmlediting.cpp: (WebCore::validBlockTag):
- editing/htmlediting.h:
- 11:01 PM Changeset in webkit [69639] by
-
- 13 edits4 adds in trunk
2010-10-12 Ryosuke Niwa <rniwa@webkit.org>
Reviewed by Tony Chang.
execCommand FormatBlock creates lots of blockquotes
https://bugs.webkit.org/show_bug.cgi?id=19795
The bug was caused by WebKit's not reusing the block node added by previous iteration
and its inserting block node at wrong places.
Fixed the bug by rewriting FormatBlockCommand::formatRange. New code resembles that of
IndentOutdentCommand::indentIntoBlockquote. The difference between two is that formatRange
avoids the existing block elements when replacing blocks and it also adds a placeholder
when removing the existing block caused paragraphs to collapse.
Tests: editing/execCommand/format-block-multiple-paragraphs.html
editing/execCommand/format-block-table.html
- editing/EditorCommand.cpp: (WebCore::executeFormatBlock):
- editing/FormatBlockCommand.cpp: (WebCore::FormatBlockCommand::formatRange): Rewritten; see above. (WebCore::FormatBlockCommand::isElementToApplyInFormatBlockCommand): Renamed from validBlockElement and moved from htmlediting.cpp. (WebCore::FormatBlockCommand::enclosingBlockToSplitTreeTo): Added.
- editing/FormatBlockCommand.h:
- editing/VisiblePosition.cpp: (WebCore::enclosingBlockFlowElement): Changed the return type to Element*
- editing/VisiblePosition.h:
2010-10-12 Ryosuke Niwa <rniwa@webkit.org>
Reviewed by Tony Chang.
execCommand FormatBlock creates lots of blockquotes
https://bugs.webkit.org/show_bug.cgi?id=19795
Added tests to ensure WebKit does not add multiple block elements when applying block element to
multiple paragraphs. Also added a test to ensure formatBlock works with tables.
- editing/execCommand/format-block-expected.txt: Preserved span and removed erroneous br.
- editing/execCommand/format-block-from-range-selection-expected.txt: Merged dl's and removed erroneous br.
- editing/execCommand/format-block-multiple-paragraphs-expected.txt: Added.
- editing/execCommand/format-block-multiple-paragraphs.html: Added.
- editing/execCommand/format-block-table-expected.txt: Added.
- editing/execCommand/format-block-table.html: Added.
- editing/execCommand/format-block-with-braces-expected.txt: Removed erroneous br.
- 9:39 PM Changeset in webkit [69638] by
-
- 7 edits in trunk/WebKitTools
2010-10-12 Dirk Pranke <dpranke@chromium.org>
Reviewed by Eric Seidel.
This patch enables new-run-webkit-tests (in particular the
chromium-win port) to run under Cygwin as well as Win32. Mostly
this just required some conversions from cygwin paths to Win32
paths when we spawn off Win32 binaries like test_shell.
- Scripts/webkitpy/common/system/path.py:
- Expose the cygpath() function for path conversion
- Scripts/webkitpy/layout_tests/run_webkit_tests.py:
- Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
- shift filename->uri conversion in the TestInfo objects to the dump_render_tree thread
- Scripts/webkitpy/layout_tests/port/base.py:
- Scripts/webkitpy/layout_tests/port/chromium.py:
- use cygpath()
- 9:30 PM Changeset in webkit [69637] by
-
- 2 edits in trunk/WebKitTools
2010-10-12 Yuta Kitamura <yutak@chromium.org>
Unreviewed. Add Yuta Kitamura (yutak) to the committers list.
- Scripts/webkitpy/common/config/committers.py:
- 9:29 PM Changeset in webkit [69636] by
-
- 2 edits in trunk/WebKit/qt
2010-10-12 David Leong <david.leong@nokia.com>
Reviewed by Laszlo Gombos.
[Qt] Enable Netscape plugin metadata caching on Linux
https://bugs.webkit.org/show_bug.cgi?id=46287
QWebSettings::enablePersistentStorage will now store the netscape
plugin cache to QDesktopServices::CacheLocation.
- Api/qwebsettings.cpp: (QWebSettings::enablePersistentStorage):
- 9:11 PM Changeset in webkit [69635] by
-
- 4 edits in trunk/WebCore
Make PluginView inherit from PluginViewBase.
Reviewed by Anders Carlsson.
This change is a precursor to adding accelerated compositing support
for NPAPI plugins.
https://bugs.webkit.org/show_bug.cgi?id=47418
- page/Page.cpp:
(WebCore::Page::privateBrowsingStateChanged):
- plugins/PluginView.h:
- plugins/PluginViewBase.h:
(WebCore::PluginViewBase::PluginViewBase):
- 8:25 PM WebKit Team edited by
- Remove extraneous single quote to fix formatting after revision 192 (diff)
- 7:26 PM Changeset in webkit [69634] by
-
- 2 edits in trunk/WebCore
2010-10-12 Kinuko Yasuda <kinuko@chromium.org>
Reviewed by Jian Li.
Pass platform path (rather than virtual path) when creating File from FileEntry
https://bugs.webkit.org/show_bug.cgi?id=47563
No new tests, the new test for FileWriter will be verifying this.
- fileapi/FileEntry.cpp: (WebCore::FileEntry::file):
- 7:25 PM Changeset in webkit [69633] by
-
- 3 edits in trunk/WebKit/chromium
2010-10-12 Kenneth Russell <kbr@google.com>
Unreviewed. Fixes for all WebGL content causing assertion failures
in Chromium after http://trac.webkit.org/changeset/69619 and
http://trac.webkit.org/changeset/69624 .
- src/GraphicsContext3DChromium.cpp: (WebCore::GraphicsContext3D::create):
- src/WebViewImpl.cpp: (WebKit::WebViewImpl::setIsAcceleratedCompositingActive):
- 6:55 PM Changeset in webkit [69632] by
-
- 1 edit in trunk/WebKitTools/Scripts/webkitpy/common/config/committers.py
Unreviewed: Add Michael Nordman (michaeln) to the committers list.
- 6:47 PM Changeset in webkit [69631] by
-
- 1 edit6 adds in trunk/LayoutTests
Test that workers can be successfully interrupted in the middle of DB operations.
Reviewed by David Levin.
- fast/workers/storage/interrupt-database-expected.txt: Added.
- fast/workers/storage/interrupt-database-sync-expected.txt: Added.
- fast/workers/storage/interrupt-database-sync.html: Added.
- fast/workers/storage/interrupt-database.html: Added.
- fast/workers/storage/resources/interrupt-database-sync.js: Added.
- fast/workers/storage/resources/interrupt-database.js: Added.
(runTransaction):
- 6:46 PM Changeset in webkit [69630] by
-
- 5 edits in trunk/WebKit2
Add API to get the target frame from a HitTestResult.
Reviewed by Gavin "Sometimes" Barraclough.
- WebProcess/InjectedBundle/API/c/WKBundleHitTestResult.cpp:
(WKBundleHitTestResultGetFrame):
(WKBundleHitTestResultGetTargetFrame):
- WebProcess/InjectedBundle/API/c/WKBundleHitTestResult.h:
- WebProcess/InjectedBundle/InjectedBundleHitTestResult.cpp:
(WebKit::InjectedBundleHitTestResult::frame): Rename from webFrame.
(WebKit::InjectedBundleHitTestResult::targetFrame):
- WebProcess/InjectedBundle/InjectedBundleHitTestResult.h:
- 6:40 PM Changeset in webkit [69629] by
-
- 6 edits1 copy in branches/chromium/552/WebKit/chromium
Merge 69541 - 2010-10-11 Jeremy Orlow <jorlow@chromium.org>
Reviewed by Nate Chapin.
[Chromium] Add plumbing for synchronous indexedDB exceptions
https://bugs.webkit.org/show_bug.cgi?id=47511
Add a WebExceptionCode file (already run by fishd) and add versions of
each applicable method that take such a parameter. A follow up patch
will be posted with the meat.
- WebKit.gyp:
- public/WebExceptionCode.h: Added.
- public/WebIDBCursor.h: (WebKit::WebIDBCursor::update): (WebKit::WebIDBCursor::continueFunction): (WebKit::WebIDBCursor::remove):
- public/WebIDBDatabase.h: (WebKit::WebIDBDatabase::objectStore): (WebKit::WebIDBDatabase::createObjectStore): (WebKit::WebIDBDatabase::removeObjectStore): (WebKit::WebIDBDatabase::setVersion): (WebKit::WebIDBDatabase::transaction):
- public/WebIDBIndex.h: (WebKit::WebIDBIndex::openObjectCursor): (WebKit::WebIDBIndex::openKeyCursor): (WebKit::WebIDBIndex::getObject): (WebKit::WebIDBIndex::getKey):
- public/WebIDBObjectStore.h: (WebKit::WebIDBObjectStore::get): (WebKit::WebIDBObjectStore::put): (WebKit::WebIDBObjectStore::remove): (WebKit::WebIDBObjectStore::createIndex): (WebKit::WebIDBObjectStore::index): (WebKit::WebIDBObjectStore::removeIndex): (WebKit::WebIDBObjectStore::openCursor):
- 6:36 PM Changeset in webkit [69628] by
-
- 11 edits4 adds in trunk
<rdar://problem/8488444> REGRESSION (r67771)
https://bugs.webkit.org/show_bug.cgi?id=47434
Crash when printing in RenderBlock::markDescendantBlocksAndLinesForLayout
Reviewed by Dan Bernstein
Added printing/simultaneous-position-float-change.html
Remove the markDescendantBlocksAndLinesForLayout method since it can walk m_floatingObjects lists with deleted
objects in them. Make the mechanism for relayout when the page height changes the same as the one when pageY
changes and just tie a concept of pageHeightChanged to the layout state. If that is set, blocks will just
automatically mark themselves as needing layout.
WebCore:
- rendering/LayoutState.cpp:
(WebCore::LayoutState::LayoutState):
- rendering/LayoutState.h:
(WebCore::LayoutState::LayoutState):
(WebCore::LayoutState::pageHeight):
(WebCore::LayoutState::pageHeightChanged):
- rendering/RenderBlock.cpp:
(WebCore::RenderBlock::layoutBlock):
(WebCore::RenderBlock::layoutBlockChild):
(WebCore::RenderBlock::layoutPositionedObjects):
(WebCore::RenderBlock::markForPaginationRelayoutIfNeeded):
(WebCore::RenderBlock::insertFloatingObject):
(WebCore::RenderBlock::positionNewFloats):
- rendering/RenderBlock.h:
- rendering/RenderBox.cpp:
- rendering/RenderBox.h:
(WebCore::RenderBox::markForPaginationRelayoutIfNeeded):
- rendering/RenderFlexibleBox.cpp:
(WebCore::RenderFlexibleBox::layoutHorizontalBox):
(WebCore::RenderFlexibleBox::layoutVerticalBox):
- rendering/RenderView.cpp:
(WebCore::RenderView::RenderView):
(WebCore::RenderView::layout):
- rendering/RenderView.h:
(WebCore::RenderView::setPageHeight):
(WebCore::RenderView::pushLayoutState):
(WebCore::LayoutStateMaintainer::LayoutStateMaintainer):
(WebCore::LayoutStateMaintainer::push):
LayoutTests:
- platform/mac/printing/simultaneous-position-float-change-expected.checksum: Added.
- platform/mac/printing/simultaneous-position-float-change-expected.png: Added.
- platform/mac/printing/simultaneous-position-float-change-expected.txt: Added.
- printing/simultaneous-position-float-change.html: Added.
- 6:23 PM Changeset in webkit [69627] by
-
- 2 edits in trunk/WebKit/chromium
2010-10-12 Alok priyadarshi <alokp@chromium.org>
Reviewed by Kenneth Russell.
Remove support for ANGLE SH_VERSION <= 100
https://bugs.webkit.org/show_bug.cgi?id=47307
- src/WebGraphicsContext3DDefaultImpl.cpp: (WebKit::WebGraphicsContext3DDefaultImpl::angleCreateCompilers): (WebKit::WebGraphicsContext3DDefaultImpl::angleValidateShaderSource):
- 6:23 PM Changeset in webkit [69626] by
-
- 1 edit3 adds in trunk/LayoutTests
Adding a test that makes sure the same database can be simultaneously accessed from workers and the page.
Reviewed by David Levin.
- fast/workers/storage/resources/use-same-database-in-page-and-workers.js: Added.
- fast/workers/storage/use-same-database-in-page-and-workers-expected.txt: Added.
- fast/workers/storage/use-same-database-in-page-and-workers.html: Added.
- 6:05 PM Changeset in webkit [69625] by
-
- 7 edits in trunk
Paint the find overlay background
https://bugs.webkit.org/show_bug.cgi?id=47565
Reviewed by Dan Bernstein.
WebCore:
Export symbols required by WebKit2.
- WebCore.exp.in:
WebKit2:
- WebProcess/WebPage/FindController.cpp:
(WebKit::FindController::findString):
Don't show the overlay if we have too many matches.
- WebProcess/WebPage/FindPageOverlay.cpp:
(WebKit::FindPageOverlay::rectsForTextMatches):
Get the rects for all text matches.
(WebKit::FindPageOverlay::drawRect):
Assert that we're only being called if there are any text matches.
Paint the background.
- 5:57 PM Changeset in webkit [69624] by
-
- 7 edits in trunk
2010-10-12 James Robinson <jamesr@chromium.org>
Unreviewed chromium compile fixes for http://trac.webkit.org/changeset/69619
- platform/graphics/chromium/LayerRendererChromium.cpp: (WebCore::LayerRendererChromium::create): (WebCore::LayerRendererChromium::LayerRendererChromium):
- platform/graphics/chromium/LayerRendererChromium.h:
2010-10-12 James Robinson <jamesr@chromium.org>
Unreviewed chromium compile fixes for http://trac.webkit.org/changeset/69619.
- src/GraphicsContext3DChromium.cpp: (WebCore::GraphicsContext3D::create):
- src/WebViewImpl.cpp: (WebKit::WebViewImpl::setIsAcceleratedCompositingActive):
- src/WebViewImpl.h:
- 5:51 PM Changeset in webkit [69623] by
-
- 2 edits in trunk/WebKit/mac
Check in some cleanup from the previous commit.
Rubber-stamped by Darin Adler.
- WebView/WebView.mm:
(leakMailQuirksUserScriptPath): Renamed to indicate that this function
leaks an NSString.
(-[WebView _injectMailQuirksScript]): Moved a static initialization from
a separate class method into the only method that used it and removed
the now-unnecessary class method.
- 5:25 PM Changeset in webkit [69622] by
-
- 4 edits1 add in trunk/WebKit
2010-10-12 Eric Seidel <eric@webkit.org>
Reviewed by Darin Adler.
REGRESSION (new parser): Leopard/Tiger Mail <head>/<body> quirk is gone
https://bugs.webkit.org/show_bug.cgi?id=45693
- WebKit.xcodeproj/project.pbxproj:
- Add the MailQuirksUserScript.js to the project.
2010-10-12 Eric Seidel <eric@webkit.org>
Reviewed by Darin Adler.
REGRESSION (new parser): Leopard/Tiger Mail <head>/<body> quirk is gone
https://bugs.webkit.org/show_bug.cgi?id=45693
Re-implement this former WebCore parser quirk as a
Mac-only userscript-based quirk. As far as I can tell
from Darin's description this should satisfy Mail's needs.
- Misc/MailQuirksUserScript.js: Added.
- WebView/WebView.mm: (+[WebView _mailQuirksUserScript]): (-[WebView _injectMailQuirksScript]): (-[WebView _commonInitializationWithFrameName:groupName:usesDocumentViews:]):
- 5:25 PM Changeset in webkit [69621] by
-
- 4 edits in trunk
When a provisional load fails, the provisional URL returned
from WKFrameCopyProvisionalURL should be empty
<rdar://problem/8540878>
https://bugs.webkit.org/show_bug.cgi?id=47546
Reviewed by Dan Bernstein.
WebKit2:
API Tests: FailedLoad (updated).
- UIProcess/WebFrameProxy.cpp:
(WebKit::WebFrameProxy::didFailProvisionalLoad): Empty out the provisional URL.
WebKitTools:
Add test.
- TestWebKitAPI/Tests/WebKit2/FailedLoad.cpp:
(TestWebKitAPI::didFailProvisionalLoadWithErrorForFrame):
- 5:21 PM Changeset in webkit [69620] by
-
- 2 edits in trunk/LayoutTests
2010-10-12 Martin Robinson <mrobinson@igalia.com>
Unskip a test which is now passing.
- platform/gtk/Skipped: Unskip passing test.
- 5:16 PM Changeset in webkit [69619] by
-
- 14 edits in trunk/WebCore
2010-10-12 Chris Marrin <cmarrin@apple.com>
Reviewed by Darin Adler.
Manage DrawingBuffer lifetime in GraphicsContext3D
https://bugs.webkit.org/show_bug.cgi?id=47501
GraphicsContext3D and DrawingBuffer are now Refcounted. DrawingBuffer
has a RefPtr to GraphicsContext3D to ensure the proper lifetime.
DrawingBuffer is now created by GraphicsContext3D. Also DrawingBuffer
refers to GraphicsContext3D rather than SharedGraphicsContext3D.
- 4:28 PM Changeset in webkit [69618] by
-
- 2 edits in trunk/LayoutTests
[chromium] Unreviewed. Build fix.
Marking svg/text/text-tselect-02-f.svg as failed on linux.
It is failing consistently.
- platform/chromium/test_expectations.txt:
- 4:14 PM Changeset in webkit [69617] by
-
- 2 edits in trunk/WebKit/chromium
Unreviewed. Bump up revision in order to pick up fix.
- DEPS:
- 4:10 PM Changeset in webkit [69616] by
-
- 11 edits4 copies in trunk
Start fleshing out find page overlays
https://bugs.webkit.org/show_bug.cgi?id=47559
Reviewed by Sam Weinig.
WebKit2:
- UIProcess/API/C/WKAPICast.h:
(WebKit::toFindOptions):
Handle the kWKFindOptionsShowFindIndicator flag.
- WebKit2.pro:
- WebKit2.xcodeproj/project.pbxproj:
Add new files.
- WebProcess/WebPage/FindController.cpp:
(WebKit::FindController::FindController):
Initialize the find page overlay.
(WebKit::FindController::findString):
Hide or show the find page overlay.
(WebKit::FindController::findPageOverlayDestroyed):
Null out the find page overlay.
- WebProcess/WebPage/FindPageOverlay.cpp: Added.
- WebProcess/WebPage/FindPageOverlay.h: Added.
Add stubbed out FindPageOverlay class.
- WebProcess/WebPage/PageOverlay.cpp: Added.
(WebKit::PageOverlay::setPage):
Set the parent web page.
(WebKit::PageOverlay::setNeedsDisplay):
Invalidate the parent web page.
- WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::drawRect):
If there's a page overlay, ask it to draw on top of the page contents.
(WebKit::WebPage::installPageOverlay):
Set the page overlay.
(WebKit::WebPage::uninstallPageOverlay):
Clear the page overlay.
- win/WebKit2.vcproj:
Add new files.
WebKitTools:
- MiniBrowser/mac/BrowserWindowController.m:
(-[BrowserWindowController find:]):
Pass kWKFindOptionsShowOverlay to WKPageFindString.
- 3:47 PM Changeset in webkit [69615] by
-
- 2 edits in trunk/WebKit/chromium
Unreview. Build fix for chromium.
- public/WebBlobRegistry.h:
- 3:37 PM Changeset in webkit [69614] by
-
- 10 edits in trunk/WebKit2
Add ability for WK2 to register a scheme as secure.
https://bugs.webkit.org/show_bug.cgi?id=47557
Reviewed by Jon Honeycutt.
Add the schemes that need to be registered as secure to the WebProcessCreationParameters.
- Shared/WebProcessCreationParameters.cpp:
(WebKit::WebProcessCreationParameters::encode):
(WebKit::WebProcessCreationParameters::decode):
- Shared/WebProcessCreationParameters.h:
- UIProcess/API/C/WKContext.cpp:
(WKContextRegisterURLSchemeAsSecure):
- UIProcess/API/C/WKContextPrivate.h:
- UIProcess/WebContext.cpp:
(WebKit::WebContext::ensureWebProcess):
Copy over the schemes that are to be registered as secure to the
WebProcessCreationParameters.
(WebKit::WebContext::registerURLSchemeAsSecure):
Only send a message to the WebProcess if it is valid.
- UIProcess/WebContext.h:
- WebProcess/WebProcess.cpp:
(WebKit::WebProcess::initializeWebProcess):
Register the schemes that need to be registered as secure from the
WebProcessCreationParameters.
(WebKit::WebProcess::registerURLSchemeAsSecure):
- WebProcess/WebProcess.h:
- WebProcess/WebProcess.messages.in:
Add the RegisterURLSchemeAsSecure message.
- 3:36 PM Changeset in webkit [69613] by
-
- 3 edits in trunk/WebKit/efl
2010-10-12 Gyuyoung Kim <gyuyoung.kim@samsung.com>
Reviewed by Kenneth Rohde Christiansen.
[EFL] Add a method to get target's dpi value
https://bugs.webkit.org/show_bug.cgi?id=47537
Add a method to get target dpi value using Ecore_X.
When we set layout size, we need to use the dpi value.
- ewk/ewk_private.h:
- ewk/ewk_view.cpp: (ewk_view_page_rect_get): (ewk_view_dpi_get):
- 3:30 PM Changeset in webkit [69612] by
-
- 3 edits in trunk/LayoutTests
2010-10-11 Andrei Popescu <andreip@google.com>
Reviewed by Jeremy Orlow.
storage/indexeddb/database-quota.html expects the wrong database version string
https://bugs.webkit.org/show_bug.cgi?id=47533
- storage/indexeddb/database-quota-expected.txt:
- storage/indexeddb/database-quota.html:
- 3:16 PM Changeset in webkit [69611] by
-
- 5 edits1 copy1 move1 delete in trunk/WebKit/chromium
[chromium] Update WebBlobData to adapt to BlobData change in terms of
handling string data item.
https://bugs.webkit.org/show_bug.cgi?id=47423
Reviewed by Darin Fisher.
Also remove unneeded methods in WebBlobData. WebBlobStorageData.* are
also removed since they're not longer needed.
- WebKit.gyp:
- public/WebBlobData.h:
- public/WebBlobRegistry.h:
- public/WebBlobStorageData.h: Removed.
- public/WebThreadSafeData.h: Added.
- src/WebBlobData.cpp:
- src/WebBlobStorageData.cpp: Removed.
- src/WebThreadSafeData.cpp: Added.
- 3:15 PM Changeset in webkit [69610] by
-
- 10 edits in trunk/WebCore
Fix passing blob data with string data item between threads.
https://bugs.webkit.org/show_bug.cgi?id=46543
Reviewed by David Levin.
The fix is to use a thread-safe ref-counted Vector<char> to store the
string data. This also makes us be able to store any binary data in it.
I've also fix BlobBuilder and BlobRegistryImpl to avoid some additional
copies to make blob handling faster.
- fileapi/BlobBuilder.cpp:
(WebCore::BlobBuilder::append):
- fileapi/ThreadableBlobRegistry.cpp:
(WebCore::BlobRegistryContext::BlobRegistryContext):
- platform/network/BlobData.cpp:
(WebCore::BlobDataItem::RawData::RawData):
(WebCore::BlobDataItem::RawData::detachFromCurrentThread):
(WebCore::BlobDataItem::detachFromCurrentThread):
(WebCore::BlobData::create):
(WebCore::BlobData::detachFromCurrentThread):
(WebCore::BlobData::appendData):
- platform/network/BlobData.h:
(WebCore::BlobDataItem::RawData::create):
(WebCore::BlobDataItem::RawData::data):
(WebCore::BlobDataItem::RawData::length):
(WebCore::BlobDataItem::RawData::mutableData):
(WebCore::BlobDataItem::BlobDataItem):
- platform/network/BlobRegistryImpl.cpp:
(WebCore::BlobRegistryImpl::registerBlobURL):
- platform/network/BlobResourceHandle.cpp:
(WebCore::BlobResourceHandle::readDataSync):
(WebCore::BlobResourceHandle::readDataAsync):
- platform/network/mac/FormDataStreamMac.mm:
(WebCore::setHTTPBody):
- platform/text/LineEnding.cpp:
(OutputBuffer::CStringBuffer::CStringBuffer):
(OutputBuffer::CStringBuffer::~CStringBuffer):
(OutputBuffer::CStringBuffer::allocate):
(OutputBuffer::CStringBuffer::copy):
(OutputBuffer::CStringBuffer::buffer):
(OutputBuffer::VectorCharAppendBuffer::VectorCharAppendBuffer):
(OutputBuffer::VectorCharAppendBuffer::~VectorCharAppendBuffer):
(OutputBuffer::VectorCharAppendBuffer::allocate):
(OutputBuffer::VectorCharAppendBuffer::copy):
(OutputBuffer::internalNormalizeLineEndingsToCRLF):
(WebCore::normalizeToCROrLF):
(WebCore::normalizeLineEndingsToCRLF):
(WebCore::normalizeLineEndingsToCR):
(WebCore::normalizeLineEndingsToLF):
(WebCore::normalizeLineEndingsToNative):
- platform/text/LineEnding.h:
- 3:05 PM Changeset in webkit [69609] by
-
- 3 edits in trunk/WebKit/chromium
2010-10-12 Kavita Kanetkar <kkanetkar@chromium.org>
Reviewed by Dumitru Daniliuc.
[FileSystem] Add ability to pass a bool to create or not create root path while opening filesystem.
https://bugs.webkit.org/show_bug.cgi?id=47519
- public/WebCommonWorkerClient.h: (WebKit::WebCommonWorkerClient::openFileSystem):
- public/WebFrameClient.h: (WebKit::WebFrameClient::openFileSystem):
- 3:05 PM Changeset in webkit [69608] by
-
- 2 edits in trunk/JavaScriptCore
Windows build fix.
- wtf/text/StringBuilder.h:
(WTF::StringBuilder::length):
- 2:59 PM Changeset in webkit [69607] by
-
- 2 edits in trunk/LayoutTests
Unreviewed, updating Chromium expectations.
- platform/chromium/test_expectations.txt:
- 2:44 PM Changeset in webkit [69606] by
-
- 7 edits in trunk
2010-10-12 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r69589.
http://trac.webkit.org/changeset/69589
https://bugs.webkit.org/show_bug.cgi?id=47547
Wrong patch landed from a bug with two patches (Requested by
mrobinson on #webkit).
- platform/network/ResourceHandleInternal.h: (WebCore::ResourceHandleInternal::ResourceHandleInternal):
- platform/network/soup/ResourceHandleSoup.cpp: (WebCore::ResourceHandleInternal::~ResourceHandleInternal): (WebCore::ResourceHandle::~ResourceHandle): (WebCore::restartedCallback): (WebCore::gotChunkCallback): (WebCore::finishedCallback): (WebCore::parseDataUrl): (WebCore::startHttp):
- platform/network/soup/ResourceRequest.h:
- platform/network/soup/ResourceRequestSoup.cpp:
2010-10-12 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r69589.
http://trac.webkit.org/changeset/69589
https://bugs.webkit.org/show_bug.cgi?id=47547
Wrong patch landed from a bug with two patches (Requested by
mrobinson on #webkit).
- webkit/webkitdownload.cpp: (webkit_download_new_with_handle): (webkit_download_start):
- 2:27 PM Changeset in webkit [69605] by
-
- 2 edits in trunk/WebKit/chromium
2010-10-12 James Robinson <jamesr@chromium.org>
Reviewed by Nate Chapin (in person).
Fix chromium compile.
- src/WebPageSerializerImpl.cpp: (WebKit::WebPageSerializerImpl::WebPageSerializerImpl): (WebKit::WebPageSerializerImpl::serialize):
- 2:24 PM Changeset in webkit [69604] by
-
- 2 edits in trunk/WebKit2
https://bugs.webkit.org/show_bug.cgi?id=47556
WKBundleNodeHandlePrivate.h should be marked private, not project
Reviewed by Anders Carlsson.
- WebKit2.xcodeproj/project.pbxproj:
Marked WKBundleNodeHandlePrivate.h as private.
- 2:14 PM Changeset in webkit [69603] by
-
- 1 edit1 add in trunk/WebCore
2010-10-12 Simon Fraser <Simon Fraser>
Screen.availLeft should be signed
https://bugs.webkit.org/show_bug.cgi?id=34397
Add the manual test missed in r69599.
- manual-tests/screen-availLeft.html: Added.
- 2:12 PM Changeset in webkit [69602] by
-
- 4 edits in trunk/WebCore
[Qt] Windowless mode 64-bit Flash/X11 freezes when right-click is sent.
Reviewed by Ariya Hidayat.
Adds a new quirk PluginQuirkIgnoreRightClickInWindowlessMode. This
quirk is enabled only for 64-bit Flash/X11 and should not affect other
plugins. The freeze itself is in Flash code and the backtrace is not
useful.
https://bugs.webkit.org/show_bug.cgi?id=47545
- plugins/PluginPackage.cpp:
(WebCore::PluginPackage::determineQuirks):
- plugins/PluginQuirkSet.h:
- plugins/qt/PluginViewQt.cpp:
(WebCore::PluginView::handleMouseEvent):
- 2:09 PM Changeset in webkit [69601] by
-
- 12 edits2 adds in trunk/LayoutTests
[chromium] Clean up test expectations from gardening shift.
File bugs for new issues, and rebaseline non-issues.
- platform/chromium-linux/svg/text/text-tselect-02-f-expected.checksum:
- platform/chromium-linux/svg/text/text-tselect-02-f-expected.png:
- platform/chromium-mac/fast/css/transformed-mask-expected.checksum: Added.
- platform/chromium-mac/fast/css/transformed-mask-expected.png: Added.
- platform/chromium-win/svg/batik/paints/patternPreserveAspectRatioA-expected.checksum:
- platform/chromium-win/svg/batik/paints/patternPreserveAspectRatioA-expected.png:
- platform/chromium-win/svg/carto.net/button-expected.checksum:
- platform/chromium-win/svg/carto.net/button-expected.png:
- platform/chromium-win/svg/custom/marker-child-changes-expected.checksum:
- platform/chromium-win/svg/custom/marker-child-changes-expected.png:
- platform/chromium-win/svg/custom/marker-viewBox-changes-expected.checksum:
- platform/chromium-win/svg/custom/marker-viewBox-changes-expected.png:
- platform/chromium/test_expectations.txt:
- 2:06 PM Changeset in webkit [69600] by
-
- 3 edits in trunk/WebKit/mac
2010-10-12 Simon Fraser <Simon Fraser>
Reviewed by Sam Weinig.
Add 'didDraw' callback for framerate tracking
https://bugs.webkit.org/show_bug.cgi?id=47478
Add a callback at the end of -[WebHTMLView drawRect:] so
a delegate can get notified when a draw happens.
- WebView/WebHTMLView.mm: (-[WebHTMLView drawRect:]):
- WebView/WebUIDelegatePrivate.h:
- 2:06 PM Changeset in webkit [69599] by
-
- 4 edits in trunk/WebCore
2010-10-08 Simon Fraser <Simon Fraser>
Reviewed by Alexey Proskuryakov.
Screen.availLeft should be signed
https://bugs.webkit.org/show_bug.cgi?id=34397
For the screen to the left of the main screen, screen.availLeft
can be negative, so the Screen API needs to use signed numbers
for availLeft and availTop.
- manual-tests/screen-availLeft.html: Added.
- page/Screen.cpp: (WebCore::Screen::availLeft): (WebCore::Screen::availTop):
- page/Screen.h:
- page/Screen.idl:
- 2:00 PM Changeset in webkit [69598] by
-
- 8 edits2 adds in trunk
Add FindController class
https://bugs.webkit.org/show_bug.cgi?id=47555
Reviewed by Sam Weinig.
WebCore:
Export Page::findString.
- WebCore.exp.in:
WebKit2:
- WebKit2.pro:
- WebKit2.xcodeproj/project.pbxproj:
Add new files.
- WebProcess/WebPage/FindController.cpp: Added.
(WebKit::FindController::FindController):
(WebKit::FindController::findString):
Ask WebCore to find the given string for us.
(WebKit::FindController::hideFindUI):
Add stub.
- WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::WebPage):
Initialize the find controller.
(WebKit::WebPage::findString):
(WebKit::WebPage::hideFindUI):
Call the find controller.
- win/WebKit2.vcproj:
Add new files.
- 1:46 PM Changeset in webkit [69597] by
-
- 4 edits in trunk
2010-10-12 Robert Hogan <robert@webkit.org>
Reviewed by Antonio Gomes.
[Qt] editing/input/emacs-ctrl-o.html
Unskip editing/input/emacs-ctrl-o.html
- platform/qt/Skipped:
2010-10-12 Robert Hogan <robert@webkit.org>
Reviewed by Antonio Gomes.
[Qt] editing/input/emacs-ctrl-o.html
ctrl-o is bound to a sequence of commands on Mac, namely:
insertParagraphSeparator then moveLeft. In the DRT, we just interpret
ctrl-o in EventSenderQt as '\n', i.e. insertParagraphSeparator. As a
result we only issue one command, so don't generate the change in caret
position that results in the extra editing delegate messages.
So for the sake of not managing suspicious-looking differences, just
make DRT issue the appropriate edit commands to pass the test.
- DumpRenderTree/qt/EventSenderQt.cpp: (EventSender::keyDown):
- 1:28 PM Changeset in webkit [69596] by
-
- 5 edits in trunk/WebCore
Reviewed by Simon Fraser.
https://bugs.webkit.org/show_bug.cgi?id=47550
<rdar://problem/8353386> For WebKit plug-ins, beforeload can be called recursively
(esp. with AdBlock style extensions)
No test - we don't have a WebKit-style plugin in DRT, and don't care enough to add one.
The fix is to block plug-in scripting while in beforeload event - the plug-in is obviously
not available yet, so scripting could only attempt to load it recursively.
This didn't affect NPAPI plug-ins, because of a completely different code path taken in
updateWidget(), see <https://bugs.webkit.org/show_bug.cgi?id=44575#c8>.
- html/HTMLEmbedElement.cpp: (WebCore::HTMLEmbedElement::updateWidget):
- html/HTMLObjectElement.cpp: (WebCore::HTMLObjectElement::updateWidget):
- html/HTMLPlugInElement.cpp: (WebCore::HTMLPlugInElement::HTMLPlugInElement): (WebCore::HTMLPlugInElement::pluginWidget):
- html/HTMLPlugInElement.h:
- 1:28 PM Changeset in webkit [69595] by
-
- 4 edits in trunk/WebKitTools
Add a simple Find UI to MiniBrowser
https://bugs.webkit.org/show_bug.cgi?id=47553
Reviewed by Sam Weinig.
- MiniBrowser/mac/BrowserWindow.xib:
Add Find panel.
- MiniBrowser/mac/BrowserWindowController.h:
- MiniBrowser/mac/BrowserWindowController.m:
(-[BrowserWindowController performFindPanelAction:]):
Show the find panel.
(-[BrowserWindowController find:]):
Tell the WKPageRef to find the given string.
- 12:47 PM Changeset in webkit [69594] by
-
- 49 edits1 move3 adds4 deletes in trunk
2010-10-12 Nikolas Zimmermann <nzimmermann@rim.com>
Reviewed by Gavin Barraclough.
Unify JSC::StringBuilder & WebCore::StringBuilder
https://bugs.webkit.org/show_bug.cgi?id=47538
Move runtime/StringBuilder.h to wtf/text/StringBuilder.h. Rename build() to toString() and return a WTF::String().
Move the append(const JSC::UString&) method into runtime/UStringBuilder.h.
UStringBuilder inherits from StringBuilder.h and adds append(const JSC::UString&) and UString toUString() functionality.
No new code, just move code around.
- GNUmakefile.am: Add wtf/text/StringBuilder.h / runtime/UStringBuilder.h. Remove runtime/StringBuilder.h.
- JavaScriptCore.gypi: Ditto.
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj: Ditto.
- JavaScriptCore.vcproj/WTF/WTF.vcproj: Ditto.
- JavaScriptCore.xcodeproj/project.pbxproj: Ditto.
- runtime/Executable.cpp: (JSC::FunctionExecutable::paramString): Use UStringBuilder, instead of StringBuilder. Rename build() -> toUString().
- runtime/FunctionConstructor.cpp: (JSC::constructFunction): Ditto.
- runtime/JSGlobalObjectFunctions.cpp: (JSC::globalFuncUnescape): Ditto.
- runtime/JSONObject.cpp: (JSC::Stringifier::stringify): Ditto. (JSC::Stringifier::appendQuotedString): Ditto. (JSC::Stringifier::appendStringifiedValue): Ditto. (JSC::Stringifier::startNewLine): Ditto. (JSC::Stringifier::Holder::appendNextProperty): Ditto.
- runtime/LiteralParser.cpp: (JSC::LiteralParser::Lexer::lexString): Ditto.
- runtime/NumberPrototype.cpp: Remove unneeded JSStringBuilder.h / StringBuilder.h include.
- runtime/StringBuilder.h: Removed.
- runtime/UStringBuilder.h: Added. Inherits from WTF::StringBuilder, extending it by two methods. (JSC::UStringBuilder::append): append(const JSC::UString&) (JSC::UStringBuilder::toUString):
- wtf/text/StringBuilder.h: Copied from runtime/StringBuilder.h. Move JSC::UString parts into runtime/UStringBuilder.h (WTF::StringBuilder::append): Renamed m_buffer to buffer everywhere. (WTF::StringBuilder::isEmpty): Ditto (+ constify method). (WTF::StringBuilder::reserveCapacity): Ditto. (WTF::StringBuilder::resize): Ditto. (WTF::StringBuilder::size): Ditto. (WTF::StringBuilder::operator[]): Ditto. (WTF::StringBuilder::toString): Ditto (+ renamed from build()). Returns a String, not an UString. The old build() method is now named toUString() and lives in UStringBuilder.
2010-10-12 Nikolas Zimmermann <nzimmermann@rim.com>
Reviewed by Gavin Barraclough.
Unify JSC::StringBuilder & WebCore::StringBuilder
https://bugs.webkit.org/show_bug.cgi?id=47538
- src/LocalizedStrings.cpp: (WebCore::imageTitle): Use WTF::StringBuilder.
- src/WebEntities.cpp: (WebKit::WebEntities::convertEntitiesInString): Ditto.
- src/WebPageSerializerImpl.cpp: Remove useless includes. (WebKit::WebPageSerializerImpl::encodeAndFlushBuffer):
- src/WebPageSerializerImpl.h: Use WTF::StringBuilder.
2010-10-12 Nikolas Zimmermann <nzimmermann@rim.com>
Reviewed by Gavin Barraclough.
Unify JSC::StringBuilder & WebCore::StringBuilder
https://bugs.webkit.org/show_bug.cgi?id=47538
JSC::StringBuilder operates on a Vector<UChar, 64> and allows to build a string based on a stream of characters in an efficient manner.
WebCore::StringBuilder operates on a Vector<String, 16> and allows to concat an arbitary number of Strings. It's not efficient in handling single
characters, as a String with length=1 has to be constructed for those. An analysis of the callers of WebCore::StringBuilder shows that
most callsites actually combine Strings and single characters, so using a Vector<UChar> would be more efficient. Those who only combine large
strings are only used for debugging purposes, so it's fine to switch them to a Vector<UChar> approach as well.
Replace WebCore::StringBuilder with JSC::StringBuilder, and move it to wtf/text/StringBuilder.h into the WTF namespace.
While I was at it remove platform/text/StringBuffer.h, as it was only including wtf/text/StringBuffer.h.
No change in functionality, thus no new tests.
- Android.mk: Remove platform/text/StringBuilder.* and platform/text/StringBuffer.h.
- CMakeLists.txt: Ditto.
- GNUmakefile.am: Ditto.
- WebCore.gypi: Ditto.
- WebCore.order: Ditto.
- WebCore.pro: Ditto.
- WebCore.vcproj/WebCore.vcproj: Ditto.
- WebCore.xcodeproj/project.pbxproj: Ditto.
- ForwardingHeaders/runtime/StringBuilder.h: Removed.
- ForwardingHeaders/runtime/UStringBuilder.h: Added.
- ForwardingHeaders/wtf/text/StringBuilder.h: Added.
- bindings/js/ScriptString.h: Don't include PlatformString.h but wtf/text/WTFString.h. (WebCore::ScriptString::operator+=): Use JSC::UStringBuilder instead of JSC::StringBuilder.
- bridge/jni/JNIBridge.cpp: Use WTF::StringBuilder (+ use append(const UChar) for single characters).
- css/MediaQuery.cpp: Ditto.
- css/MediaQueryExp.cpp: Ditto.
- dom/Node.cpp: Ditto. (WebCore::Node::appendTextContent): Manually track wheter the StringBuilder content is empty or null, the new StringBuilder doesn't differentiate between null & empty strings.
- dom/Node.h: Remove appendTextContent definition, it's not needed to be exported, removes the need for a StringBuilder.h include or forward declaration.
- html/DOMTokenList.cpp: Use WTF::StringBuilder.
- inspector/InspectorResource.cpp: Remove useless StringBuffer.h include.
- platform/android/FileSystemAndroid.cpp: Use WTF::StringBuilder.
- platform/brew/FileSystemBrew.cpp: Ditto.
- platform/chromium/ClipboardChromium.cpp: Ditto (+ use append(const UChar) for single characters).
- platform/graphics/gpu/PODInterval.h: Ditto (Only used as debugging helper here, in debug builds).
- platform/graphics/gpu/PODRedBlackTree.h: Ditto (Only used as debugging helper here, in debug builds).
- platform/graphics/mac/GraphicsLayerCA.mm: Remove useless StringBuilder.h include.
- platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp: Use WTF::StringBuilder, and use append(const UChar) for single characters.
- platform/graphics/win/MediaPlayerPrivateQuickTimeWin.cpp: Ditto.
- platform/network/ProxyServer.cpp: (WebCore::appendProxyServerString): Use WTF::StringBuilder.
- platform/text/StringBuffer.h: Removed.
- platform/text/StringBuilder.cpp: Removed.
- platform/text/StringBuilder.h: Removed.
- plugins/DOMMimeType.cpp: Use WTF::StringBuilder.
- svg/SVGPathParserFactory.cpp: Ditto.
- svg/SVGPathStringBuilder.cpp: SVGPathStringBuilder used stringBuilder.toString(ConcatAddingSpacesBetweenIndividualStrings), adapt to the change, that this mode is gone now. (WebCore::SVGPathStringBuilder::result): Just use toString(), append a space to the end of each command, when building the string. Remove the last trailing space before building the result. (WebCore::SVGPathStringBuilder::moveTo): (WebCore::SVGPathStringBuilder::lineTo): (WebCore::SVGPathStringBuilder::lineToHorizontal): (WebCore::SVGPathStringBuilder::lineToVertical): (WebCore::SVGPathStringBuilder::curveToCubic): (WebCore::SVGPathStringBuilder::curveToCubicSmooth): (WebCore::SVGPathStringBuilder::curveToQuadratic): (WebCore::SVGPathStringBuilder::curveToQuadraticSmooth): (WebCore::SVGPathStringBuilder::arcTo): (WebCore::SVGPathStringBuilder::closePath):
- svg/SVGPathStringBuilder.h: (WebCore::SVGPathStringBuilder::cleanup): StringBuilder::clear() is gone, just cleanup by assigning StringBuilder().
- websockets/WebSocket.cpp: Use WTF::StringBuilder.
- websockets/WebSocketHandshake.cpp: Ditto (+ use append(const UChar) for single characters).
- 12:15 PM Changeset in webkit [69593] by
-
- 2 edits in trunk/WebCore
2010-10-12 Gyuyoung Kim <gyuyoung.kim@samsung.com>
Reviewed by Antonio Gomes.
[EFL] Add a missing file in CMakeListEfl.txt
https://bugs.webkit.org/show_bug.cgi?id=47480
IntRectEfl.cpp was missing in CMakeListEfl.txt. So, IntRectEfl.cpp is added.
- CMakeListsEfl.txt:
- 12:01 PM Changeset in webkit [69592] by
-
- 1 copy in branches/chromium/552
Create branch for Chromium 552.
- 11:37 AM Changeset in webkit [69591] by
-
- 2 edits in trunk/WebKitTools
2010-10-12 Tony Chang <tony@chromium.org>
Unreviewed, fixing DRT compile on Windows after r69586.
- DumpRenderTree/chromium/WebThemeEngineDRT.h:
- 11:34 AM Changeset in webkit [69590] by
-
- 2 edits in trunk/JavaScriptCore
2010-10-12 Michael Saboff <msaboff@apple.com>
Reviewed by Oliver Hunt.
Cleaned up the processing of replacements after regular expression
processing, especially the case where there wasn't a match.
Changed to use empty strings instead of computing a zero length sub
string.
https://bugs.webkit.org/show_bug.cgi?id=47506
- runtime/StringPrototype.cpp: (JSC::jsSpliceSubstringsWithSeparators): (JSC::stringProtoFuncReplace):
- 10:59 AM Changeset in webkit [69589] by
-
- 6 edits in trunk
2010-10-12 Sergio Villar Senin <svillar@igalia.com>
Reviewed by Martin Robinson.
[GTK] Add HTTP caching support
https://bugs.webkit.org/show_bug.cgi?id=44261
ResourceHandle's m_msg renamed to m_soupMsg and it's also now a PlatformRefPtr
- webkit/webkitdownload.cpp: (webkit_download_new_with_handle): (webkit_download_start):
- 10:30 AM Changeset in webkit [69588] by
-
- 2 edits in trunk/WebKit/chromium
2010-10-07 Stephen White <senorblanco@chromium.org>
Reviewed by James Robinson.
[chromium] Zero-out all textures created via WebGraphicsContext3DDefaultImpl::texImage2D().
https://bugs.webkit.org/show_bug.cgi?id=47178
Covered by fast/canvas/toDataURL-alpha.html, when run with --accelerated-2d-canvas.
- src/WebGraphicsContext3DDefaultImpl.cpp: (WebKit::bytesPerComponent): (WebKit::componentsPerPixel): (WebKit::imageSizeInBytes): (WebKit::WebGraphicsContext3DDefaultImpl::texImage2D):
- 10:20 AM Changeset in webkit [69587] by
-
- 11 edits in trunk
Need WebKit2 API to get the cell above a table cell
<rdar://problem/8537111>
https://bugs.webkit.org/show_bug.cgi?id=47532
Reviewed by Anders Carlsson.
WebCore:
Re-factor functionality to get the cell above a table cell
into a function on HTMLTableCellElement and export it for use
as SPI.
- WebCore.exp.in:
- WebCore.xcodeproj/project.pbxproj:
- html/HTMLTableCellElement.cpp:
(WebCore::HTMLTableCellElement::cellAbove): Move implementation here...
- html/HTMLTableCellElement.h:
- page/Frame.cpp:
(WebCore::Frame::searchForLabelsAboveCell): ...from here.
WebKit2:
- WebProcess/InjectedBundle/API/c/WKBundleNodeHandle.cpp:
(WKBundleNodeHandleCopyHTMLTableCellElementCellAbove):
- WebProcess/InjectedBundle/API/c/WKBundleNodeHandlePrivate.h:
- WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp:
(WebKit::InjectedBundleNodeHandle::copyHTMLTableCellElementCellAbove):
- WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.h:
- 10:10 AM Changeset in webkit [69586] by
-
- 5 edits1 delete in trunk
2010-10-12 Dave Moore <davemoore@chromium.org>
Reviewed by Tony Chang.
Use new WebThemeEngine api on chromium / linux to draw scrollbars.
https://bugs.webkit.org/show_bug.cgi?id=47473
- platform/chromium/ChromiumBridge.h:
- platform/chromium/ScrollbarThemeChromiumLinux.cpp:
2010-10-12 Dave Moore <davemoore@chromium.org>
Reviewed by Tony Chang.
Use new WebThemeEngine api on chromium / linux to draw scrollbars.
https://bugs.webkit.org/show_bug.cgi?id=47473
- public/WebThemeEngine.h: Removed.
- chromium/src/ChromiumBridge.cpp:
- 9:32 AM Changeset in webkit [69585] by
-
- 2 edits in trunk/WebKitTools
2010-10-12 Tony Chang <tony@chromium.org>
Unreviewed, trying to fix NRWT on Windows.
- Scripts/webkitpy/layout_tests/port/http_lock.py:
- 9:29 AM Changeset in webkit [69584] by
-
- 6 edits2 adds in trunk/WebKit2
Add BinarySemaphore class to CoreIPC and use it in Connection::waitForSyncReply
https://bugs.webkit.org/show_bug.cgi?id=47526
Reviewed by Sam Weinig.
- Platform/CoreIPC/BinarySemaphore.cpp: Added.
- Platform/CoreIPC/BinarySemaphore.h: Added.
Add BinarySemaphore class.
- Platform/CoreIPC/Connection.cpp:
(CoreIPC::Connection::sendSyncMessage):
(CoreIPC::Connection::waitForSyncReply):
(CoreIPC::Connection::processIncomingMessage):
Use the binary semaphore and the newly added m_pendingSyncRepliesMutex.
- WebKit2.pro:
- WebKit2.xcodeproj/project.pbxproj:
- win/WebKit2.vcproj:
Add new files.
- 8:11 AM Changeset in webkit [69583] by
-
- 3 edits1 add in trunk/LayoutTests
2010-10-12 Martin Robinson <mrobinson@igalia.com>
Rebaselined a failing tests. Unskipped editing tests that are passing and
categorized the remaining failing editing tests.
- platform/gtk/Skipped: Updated skipped list.
- platform/gtk/editing/style/apply-through-end-of-document-expected.txt: Added.
- platform/gtk/fast/dom/Window/window-property-descriptors-expected.txt: Rebaselined.
- 7:47 AM Changeset in webkit [69582] by
-
- 3 edits2 adds in trunk
2010-10-12 Yael Aharon <yael.aharon@nokia.com>
Reviewed by Antonio Gomes.
[Qt] Editing commands should not be executed on non-editable content.
https://bugs.webkit.org/show_bug.cgi?id=47426
- fast/events/scroll-after-click-on-tab-index-expected.txt: Added.
- fast/events/scroll-after-click-on-tab-index.html: Added.
2010-10-12 Yael Aharon <yael.aharon@nokia.com>
Reviewed by Antonio Gomes.
[Qt] Editing commands should not be executed on non-editable content.
https://bugs.webkit.org/show_bug.cgi?id=47426
Remove calls to editor()->command() when we are not in editable content.
There is no value in doing that, and in some cases, it prevents scrolling.
- WebCoreSupport/EditorClientQt.cpp: (WebCore::EditorClientQt::handleKeyboardEvent):
- 7:47 AM Changeset in webkit [69581] by
-
- 2 edits in trunk/WebKitTools
2010-10-12 Balazs Kelemen <kbalazs@webkit.org>
Reviewed by Kenneth Rohde Christiansen.
[Qt][WTR] Checking the path of the injected bundle is bogus
https://bugs.webkit.org/show_bug.cgi?id=47541
- WebKitTestRunner/qt/TestControllerQt.cpp:
(WTR::isExistingLibrary): Added (static helper).
Extend the path with the appropriate suffix(es) on the
platform and check that the file exists.
(WTR::TestController::initializeInjectedBundlePath):
There were two bugs with the path checking:
- the condition should have been inverted
- QLibrary::fileName does not give back the filename with the library suffix so we cannot check that existance of the file this way.
- 7:17 AM Changeset in webkit [69580] by
-
- 3 edits in trunk/WebKit2
Bring WebKit2 .vcproj files up-to-date with reality
- win/WebKit2.vcproj:
- win/WebKit2Generated.vcproj:
Added missing files, removed non-existent files.
- 7:05 AM Changeset in webkit [69579] by
-
- 2 edits in trunk/WebCore
2010-10-12 Andreas Kling <kling@webkit.org>
Reviewed by Antonio Gomes.
[Qt] Clipping problem viewing SVG with WebKit
https://bugs.webkit.org/show_bug.cgi?id=29596
SVG path clipping (via GraphicsContext::clipPath()) was done using the
Qt::ReplaceClip mode (default) instead of Qt::IntersectClip. This led
to misrenderings when nesting multiple clip paths.
- platform/graphics/qt/GraphicsContextQt.cpp: (WebCore::GraphicsContext::clipPath):
- 6:53 AM Changeset in webkit [69578] by
-
- 4 edits2 adds in trunk/WebKitTools
Implement http locking in NRWT.
https://bugs.webkit.org/show_bug.cgi?id=47072
Patch by Gabor Rapcsanyi <rgabor@inf.u-szeged.hu> on 2010-10-12
Reviewed by Tony Chang.
- Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
- Scripts/webkitpy/layout_tests/port/base.py:
- Scripts/webkitpy/layout_tests/port/http_lock.py: Added.
- Scripts/webkitpy/layout_tests/port/http_lock_unittest.py: Added.
- Scripts/webkitpy/layout_tests/run_webkit_tests.py:
- 6:10 AM Changeset in webkit [69577] by
-
- 2 edits in trunk/LayoutTests
2010-10-12 Alexander Pavlov <apavlov@chromium.org>
[Chromium] Unreviewed, clean up chromium-win SVG test expectations.
Remove stale expectations for fixed or rebaselined SVG tests on Windows.
- platform/chromium/test_expectations.txt:
- 5:32 AM Changeset in webkit [69576] by
-
- 2 edits in trunk/LayoutTests
2010-10-12 Alexander Pavlov <apavlov@chromium.org>
[Chromium] Unreviewed, clean up chromium-mac SVG test expectations.
Some tests have started to pass after a series of SVG test rebaselines.
Remove stale failure expectations.
- platform/chromium/test_expectations.txt:
- 5:29 AM Changeset in webkit [69575] by
-
- 4 edits in trunk
Fix the 32-bit WebKit2 build.
WebKit2:
- UIProcess/cf/WebBackForwardListCF.cpp:
(WebKit::WebBackForwardList::restoreFromCFDictionaryRepresentation): Change currentIndex to be of
type CFIndex and specify kCFNumberCFIndexType when calling CFNumberGetValue. This avoids a warning
when comparing currentIndex with another variable of type CFIndex later in the function.
WebKitTools:
- MiniBrowser/mac/BrowserWindowController.m:
(getWindowFrame): Use NSRect rather than CGRect since that's what -frame returns.
(setWindowFrame): Use NSMakeRect rather than CGRectMake since that's what -setFrame:display: expects.
- 5:28 AM Changeset in webkit [69574] by
-
- 4 edits in trunk/WebKit2
Fix class vs struct forward declaration issues in WebKit2 observed when using clang.
- Scripts/webkit2/messages.py: Add WebCore::ViewportArguments to the set of structs.
- UIProcess/PageClient.h:
- UIProcess/WebPageProxy.h:
- 4:55 AM Changeset in webkit [69573] by
-
- 2 edits in trunk/LayoutTests
2010-10-12 Pavel Podivilov <podivilov@chromium.org>
Unreviewed, build fix.
Build fix for r69567.
- inspector/dom-breakpoints.html:
- 4:32 AM Changeset in webkit [69572] by
-
- 371 edits110 adds in trunk/LayoutTests
2010-10-12 Nikolas Zimmermann <nzimmermann@rim.com>
Rubber-stamped by Dirk Schulze.
Update of Leopard pixel test baseline baseline after r69517.
- platform/mac-leopard/svg/W3C-SVG-1.1-SE: Added.
- platform/mac-leopard/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.checksum: Added.
...
- 4:20 AM Changeset in webkit [69571] by
-
- 1 edit9 adds in trunk/LayoutTests
2010-10-12 Alexander Pavlov <apavlov@chromium.org>
[Chromium] Unreviewed, build fix.
Rebaseline inspector/console-dir-global.html to follow r69553.
Rebaseline some SVG tests on chromium-mac to follow r69563.
- platform/chromium-mac/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.checksum: Added.
- platform/chromium-mac/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.png: Added.
- platform/chromium-mac/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.checksum: Added.
- platform/chromium-mac/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.png: Added.
- platform/chromium-mac/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.checksum: Added.
- platform/chromium-mac/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.png: Added.
- platform/chromium-mac/svg/custom/gradient-with-1d-boundingbox-expected.checksum: Added.
- platform/chromium-mac/svg/custom/gradient-with-1d-boundingbox-expected.png: Added.
- platform/chromium-win/inspector/console-dir-global-expected.txt: Added.
- 4:14 AM Changeset in webkit [69570] by
-
- 3 edits in trunk/WebKit2
2010-10-12 Juha Savolainen <juha.savolainen@weego.fi>
Reviewed by Antti Koivisto.
[Qt] Adding Qt WebKit2 API for zooming.
https://bugs.webkit.org/show_bug.cgi?id=47539
Adding zoom methods to QWKPage.
- UIProcess/API/qt/qwkpage.cpp: (QWKPage::textZoomFactor): Added (QWKPage::setTextZoomFactor): Added (QWKPage::pageZoomFactor): Added (QWKPage::setPageZoomFactor): Added (QWKPage::setPageAndTextZoomFactors): Added
- UIProcess/API/qt/qwkpage.h:
- 3:22 AM Changeset in webkit [69569] by
-
- 3 edits in trunk/LayoutTests
2010-10-12 Alexander Pavlov <apavlov@chromium.org>
[Chromium] Unreviewed, build fix.
Rebaseline http/tests/security/cross-frame-access-get.html for chromium-mac and chromium-win
- platform/chromium-mac/http/tests/security/cross-frame-access-get-expected.txt:
- platform/chromium-win/http/tests/security/cross-frame-access-get-expected.txt:
- 2:35 AM Changeset in webkit [69568] by
-
- 4 edits in trunk/LayoutTests
2010-10-12 Shinichiro Hamaji <hamaji@chromium.org>
Update test expectations for r69564.
fast/text/backslash-to-yen-sign-euc.html fails on Windows
https://bugs.webkit.org/show_bug.cgi?id=47018
- platform/gtk/fast/text/backslash-to-yen-sign-euc-expected.txt:
- platform/qt/fast/text/backslash-to-yen-sign-euc-expected.txt:
- platform/win/fast/text/backslash-to-yen-sign-euc-expected.txt:
- 2:35 AM Changeset in webkit [69567] by
-
- 15 edits in trunk/WebCore
2010-10-07 Pavel Podivilov <podivilov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: refactoring of native breakpoints.
https://bugs.webkit.org/show_bug.cgi?id=47360
Make DOM, EventListener and XHR breakpoints subclasses of NativeBreakpoint class.
Move stuff that depends on breakpoint type to corresponding subclass.
- inspector/Inspector.idl:
- inspector/InspectorController.cpp: (WebCore::InspectorController::didCommitLoad): (WebCore::InspectorController::setNativeBreakpoint): (WebCore::InspectorController::removeNativeBreakpoint): (WebCore::InspectorController::findEventListenerBreakpoint): (WebCore::InspectorController::findXHRBreakpoint):
- inspector/InspectorController.h:
- inspector/InspectorDOMAgent.cpp: (WebCore::InspectorDOMAgent::setDOMBreakpoint): (WebCore::InspectorDOMAgent::removeDOMBreakpoint): (WebCore::InspectorDOMAgent::descriptionForDOMEvent): (WebCore::InspectorDOMAgent::didRemoveDOMNode): (WebCore::InspectorDOMAgent::removeBreakpointsForNode): (WebCore::InspectorDOMAgent::createBreakpointId):
- inspector/InspectorDOMAgent.h:
- inspector/InspectorDebuggerAgent.h:
- inspector/InspectorInstrumentation.cpp: (WebCore::InspectorInstrumentation::willInsertDOMNodeImpl): (WebCore::InspectorInstrumentation::willRemoveDOMNodeImpl): (WebCore::InspectorInstrumentation::willModifyDOMAttrImpl): (WebCore::InspectorInstrumentation::willSendXMLHttpRequestImpl): (WebCore::InspectorInstrumentation::willDispatchEventImpl):
- inspector/front-end/BreakpointManager.js: (WebInspector.BreakpointManager): (WebInspector.BreakpointManager.prototype.reset): (WebInspector.BreakpointManager.prototype.createDOMBreakpoint): (WebInspector.BreakpointManager.prototype.createEventListenerBreakpoint): (WebInspector.BreakpointManager.prototype.createXHRBreakpoint): (WebInspector.BreakpointManager.prototype._removeNativeBreakpoint): (WebInspector.BreakpointManager.prototype._setNativeBreakpointOnBackend.didSetNativeBreakpoint): (WebInspector.BreakpointManager.prototype._setNativeBreakpointOnBackend): (WebInspector.BreakpointManager.prototype.debuggerPaused): (WebInspector.BreakpointManager.prototype.debuggerResumed): (WebInspector.BreakpointManager.prototype.restoreDOMBreakpoints.restoreBreakpointsForNode): (WebInspector.BreakpointManager.prototype.restoreDOMBreakpoints): (WebInspector.NativeBreakpoint): (WebInspector.NativeBreakpoint.prototype.remove): (WebInspector.NativeBreakpoint.prototype.get _frontendId): (WebInspector.NativeBreakpoint.prototype.get _type): (WebInspector.NativeBreakpoint.prototype._compare): (WebInspector.NativeBreakpoint.prototype._onRemove): (WebInspector.DOMBreakpoint): (WebInspector.DOMBreakpoint.prototype.click): (WebInspector.DOMBreakpoint.prototype.compareTo): (WebInspector.DOMBreakpoint.prototype.populateLabelElement): (WebInspector.DOMBreakpoint.prototype.populateStatusMessageElement.formatters.s): (WebInspector.DOMBreakpoint.prototype.populateStatusMessageElement.append): (WebInspector.DOMBreakpoint.prototype.populateStatusMessageElement): (WebInspector.DOMBreakpoint.prototype._condition): (WebInspector.DOMBreakpoint.prototype._onRemove): (WebInspector.EventListenerBreakpoint): (WebInspector.EventListenerBreakpoint.prototype.compareTo): (WebInspector.EventListenerBreakpoint.prototype.label): (WebInspector.EventListenerBreakpoint.prototype.populateStatusMessageElement): (WebInspector.EventListenerBreakpoint.prototype._condition): (WebInspector.XHRBreakpoint): (WebInspector.XHRBreakpoint.prototype.compareTo): (WebInspector.XHRBreakpoint.prototype.populateLabelElement): (WebInspector.XHRBreakpoint.prototype.populateStatusMessageElement): (WebInspector.XHRBreakpoint.prototype._condition): (WebInspector.domBreakpointTypeLabel): (WebInspector.domBreakpointTypeContextMenuLabel):
- inspector/front-end/BreakpointsSidebarPane.js: (WebInspector.BreakpointItem): (WebInspector.BreakpointItem.prototype._breakpointClicked): (WebInspector.EventListenerBreakpointsSidebarPane.prototype._populate):
- inspector/front-end/CallStackSidebarPane.js: (WebInspector.CallStackSidebarPane): (WebInspector.CallStackSidebarPane.prototype.registerShortcuts): (WebInspector.CallStackSidebarPane.prototype._breakpointHit):
- inspector/front-end/DOMAgent.js: (WebInspector.DOMNode): (WebInspector.DOMAgent.prototype._setDocument): (WebInspector.DOMAgent.prototype._removeBreakpoints): (WebInspector.childNodeRemoved):
- inspector/front-end/ElementsTreeOutline.js: (WebInspector.ElementsTreeElement.prototype._populateTagContextMenu):
- inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype.debuggerPaused):
- inspector/front-end/inspector.js: (WebInspector.createDOMBreakpointsSidebarPane.breakpointAdded): (WebInspector.createDOMBreakpointsSidebarPane): (WebInspector.reset):
- 1:39 AM Changeset in webkit [69566] by
-
- 1 edit2 adds in trunk/LayoutTests
2010-10-12 Dirk Schulze <krit@webkit.org>
Update of Leopard baseline after r69517.
Rubber-stamped by Nikolas Zimmermann.
- platform/mac-leopard/svg/batik/masking/maskRegions-expected.txt: Added.
- platform/mac-leopard/svg/zoom/page/zoom-mask-with-percentages-expected.txt: Added.
- 1:12 AM Changeset in webkit [69565] by
-
- 2 edits in trunk/LayoutTests
Unreviewed. Update Qt specific expected file after r69517.
- platform/qt/svg/zoom/page/zoom-mask-with-percentages-expected.txt:
- 1:00 AM Changeset in webkit [69564] by
-
- 5 edits in trunk/LayoutTests
2010-10-11 Shinichiro Hamaji <hamaji@chromium.org>
Reviewed by Alexey Proskuryakov.
REGRESSION (r63957): fast/text/backslash-to-yen-sign-euc.html fails on Mac
https://bugs.webkit.org/show_bug.cgi?id=47017
- fast/text/backslash-to-yen-sign-euc.html:
- platform/mac/fast/text/backslash-to-yen-sign-euc-expected.checksum:
- platform/mac/fast/text/backslash-to-yen-sign-euc-expected.png:
- platform/mac/fast/text/backslash-to-yen-sign-euc-expected.txt:
- 12:55 AM Changeset in webkit [69563] by
-
- 1103 edits in trunk/LayoutTests
2010-10-12 Dirk Schulze <krit@webkit.org>
Update of Snow Leopard baseline after r69517.
Rubber-stamped by Nikolas Zimmermann.
- platform/mac/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-02-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-04-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-05-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-06-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-07-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-09-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-10-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-11-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-12-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-13-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-14-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-15-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-16-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-17-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-18-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-19-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-20-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-21-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-22-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-23-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-23-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-24-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-25-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-26-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-26-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-27-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-28-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-28-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-29-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-29-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-30-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-30-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-31-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-31-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-32-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-33-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-33-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-37-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-37-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-39-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-39-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-44-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-44-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-80-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-80-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-84-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-85-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/color-prof-01-f-expected.png:
- platform/mac/svg/W3C-SVG-1.1/color-prop-01-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/color-prop-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/color-prop-02-f-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/color-prop-02-f-expected.png:
- platform/mac/svg/W3C-SVG-1.1/color-prop-03-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/color-prop-03-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/coords-coord-01-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/coords-coord-02-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/coords-trans-02-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/coords-trans-03-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/coords-trans-04-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/coords-trans-05-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/coords-trans-06-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/coords-units-01-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/coords-units-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/coords-units-02-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/coords-units-02-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/extend-namespace-01-f-expected.png:
- platform/mac/svg/W3C-SVG-1.1/filters-felem-01-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/filters-felem-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/filters-light-04-f-expected.png:
- platform/mac/svg/W3C-SVG-1.1/filters-morph-01-f-expected.png:
- platform/mac/svg/W3C-SVG-1.1/filters-offset-01-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/filters-offset-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/fonts-desc-02-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/fonts-glyph-03-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/fonts-glyph-04-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/interact-cursor-01-f-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/interact-cursor-01-f-expected.png:
- platform/mac/svg/W3C-SVG-1.1/interact-dom-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/interact-events-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/interact-order-01-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/interact-order-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/interact-order-02-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/interact-order-02-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/interact-order-03-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/interact-zoom-01-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/interact-zoom-01-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/linking-a-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/linking-a-02-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/linking-a-03-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/linking-a-04-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/linking-a-04-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/linking-a-05-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/linking-a-05-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/linking-uri-01-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/linking-uri-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/linking-uri-02-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/linking-uri-02-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/masking-intro-01-f-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/masking-intro-01-f-expected.png:
- platform/mac/svg/W3C-SVG-1.1/masking-opacity-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/masking-path-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/masking-path-02-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/masking-path-03-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/masking-path-05-f-expected.png:
- platform/mac/svg/W3C-SVG-1.1/metadata-example-01-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/metadata-example-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/painting-fill-01-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/painting-fill-02-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/painting-fill-03-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/painting-fill-04-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/painting-fill-05-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/painting-marker-01-f-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/painting-marker-01-f-expected.png:
- platform/mac/svg/W3C-SVG-1.1/painting-marker-02-f-expected.png:
- platform/mac/svg/W3C-SVG-1.1/painting-marker-03-f-expected.png:
- platform/mac/svg/W3C-SVG-1.1/painting-render-01-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/painting-render-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/painting-stroke-01-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/painting-stroke-02-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/painting-stroke-03-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/painting-stroke-04-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/painting-stroke-07-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/paths-data-01-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/paths-data-04-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/paths-data-05-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/paths-data-06-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/paths-data-07-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/paths-data-08-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/paths-data-09-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/paths-data-10-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/paths-data-12-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/paths-data-13-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/paths-data-14-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/pservers-grad-03-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/pservers-grad-17-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/pservers-grad-17-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/pservers-pattern-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/render-elems-01-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/render-elems-02-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/render-elems-06-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/render-elems-07-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/render-elems-08-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/script-handle-02-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/script-handle-02-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/script-handle-03-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/script-handle-03-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/script-handle-04-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/script-handle-04-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/shapes-circle-01-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/shapes-circle-01-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/shapes-circle-02-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/shapes-circle-02-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/shapes-ellipse-01-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/shapes-ellipse-01-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/shapes-ellipse-02-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/shapes-ellipse-02-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/shapes-intro-01-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/shapes-line-01-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/shapes-polygon-01-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/shapes-polyline-01-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/shapes-rect-01-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/shapes-rect-02-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-cond-01-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-cond-02-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-cond-03-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-defs-01-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-dom-02-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-dom-03-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-dom-04-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-dom-05-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-frag-01-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-frag-02-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/struct-frag-02-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-frag-03-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/struct-frag-03-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-frag-04-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/struct-frag-04-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-frag-05-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-group-01-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-group-02-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-image-05-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-image-07-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-use-01-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/struct-use-01-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-use-05-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/styling-css-01-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/styling-css-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/styling-css-02-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/styling-css-02-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/styling-css-03-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/styling-css-03-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/styling-css-04-f-expected.png:
- platform/mac/svg/W3C-SVG-1.1/styling-css-05-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/styling-css-06-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/styling-inherit-01-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/styling-inherit-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/styling-pres-01-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/text-align-01-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/text-align-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/text-align-02-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/text-align-03-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/text-align-04-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/text-align-05-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/text-align-05-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/text-align-06-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/text-altglyph-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/text-deco-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/text-fonts-01-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/text-fonts-02-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/text-spacing-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/text-text-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/text-text-03-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/text-text-07-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/text-text-08-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/text-tref-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/text-tselect-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/text-tspan-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/text-ws-01-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/text-ws-02-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/types-basicDOM-01-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/types-basicDOM-01-b-expected.png:
- platform/mac/svg/batik/filters/feTile-expected.png:
- platform/mac/svg/batik/filters/filterRegions-expected.png:
- platform/mac/svg/batik/masking/maskRegions-expected.checksum:
- platform/mac/svg/batik/masking/maskRegions-expected.png:
- platform/mac/svg/batik/paints/gradientLimit-expected.png:
- platform/mac/svg/batik/paints/patternPreserveAspectRatioA-expected.checksum:
- platform/mac/svg/batik/paints/patternPreserveAspectRatioA-expected.png:
- platform/mac/svg/batik/paints/patternRegionA-expected.png:
- platform/mac/svg/batik/paints/patternRegions-expected.checksum:
- platform/mac/svg/batik/paints/patternRegions-expected.png:
- platform/mac/svg/batik/paints/patternRegions-positioned-objects-expected.checksum:
- platform/mac/svg/batik/paints/patternRegions-positioned-objects-expected.png:
- platform/mac/svg/batik/text/longTextOnPath-expected.png:
- platform/mac/svg/batik/text/textAnchor-expected.png:
- platform/mac/svg/batik/text/textAnchor2-expected.png:
- platform/mac/svg/batik/text/textAnchor3-expected.png:
- platform/mac/svg/batik/text/textDecoration-expected.png:
- platform/mac/svg/batik/text/textDecoration2-expected.png:
- platform/mac/svg/batik/text/textEffect-expected.png:
- platform/mac/svg/batik/text/textEffect2-expected.png:
- platform/mac/svg/batik/text/textEffect3-expected.png:
- platform/mac/svg/batik/text/textFeatures-expected.png:
- platform/mac/svg/batik/text/textGlyphOrientationHorizontal-expected.png:
- platform/mac/svg/batik/text/textLayout2-expected.png:
- platform/mac/svg/batik/text/textLength-expected.png:
- platform/mac/svg/batik/text/textOnPath-expected.png:
- platform/mac/svg/batik/text/textOnPath2-expected.png:
- platform/mac/svg/batik/text/textOnPath3-expected.png:
- platform/mac/svg/batik/text/textOnPathSpaces-expected.png:
- platform/mac/svg/batik/text/textPCDATA-expected.png:
- platform/mac/svg/batik/text/textPosition-expected.png:
- platform/mac/svg/batik/text/textPosition2-expected.png:
- platform/mac/svg/batik/text/textProperties-expected.png:
- platform/mac/svg/batik/text/textProperties2-expected.png:
- platform/mac/svg/batik/text/textStyles-expected.png:
- platform/mac/svg/batik/text/verticalText-expected.checksum:
- platform/mac/svg/batik/text/verticalText-expected.png:
- platform/mac/svg/batik/text/verticalTextOnPath-expected.png:
- platform/mac/svg/batik/text/xmlSpace-expected.png:
- platform/mac/svg/carto.net/button-expected.checksum:
- platform/mac/svg/carto.net/button-expected.png:
- platform/mac/svg/carto.net/colourpicker-expected.checksum:
- platform/mac/svg/carto.net/colourpicker-expected.png:
- platform/mac/svg/carto.net/combobox-expected.png:
- platform/mac/svg/carto.net/scrollbar-expected.png:
- platform/mac/svg/carto.net/selectionlist-expected.png:
- platform/mac/svg/carto.net/slider-expected.png:
- platform/mac/svg/carto.net/tabgroup-expected.png:
- platform/mac/svg/carto.net/textbox-expected.png:
- platform/mac/svg/carto.net/window-expected.png:
- platform/mac/svg/clip-path/clip-in-mask-expected.checksum:
- platform/mac/svg/clip-path/clip-in-mask-expected.png:
- platform/mac/svg/clip-path/clip-in-mask-objectBoundingBox-expected.checksum:
- platform/mac/svg/clip-path/clip-in-mask-objectBoundingBox-expected.png:
- platform/mac/svg/clip-path/clip-in-mask-userSpaceOnUse-expected.checksum:
- platform/mac/svg/clip-path/clip-in-mask-userSpaceOnUse-expected.png:
- platform/mac/svg/clip-path/clip-path-child-clipped-expected.checksum:
- platform/mac/svg/clip-path/clip-path-child-clipped-expected.png:
- platform/mac/svg/clip-path/clip-path-childs-clipped-expected.checksum:
- platform/mac/svg/clip-path/clip-path-childs-clipped-expected.png:
- platform/mac/svg/clip-path/clip-path-clipped-evenodd-twice-expected.checksum:
- platform/mac/svg/clip-path/clip-path-clipped-evenodd-twice-expected.png:
- platform/mac/svg/clip-path/clip-path-clipped-expected.checksum:
- platform/mac/svg/clip-path/clip-path-clipped-expected.png:
- platform/mac/svg/clip-path/clip-path-clipped-no-content-expected.png:
- platform/mac/svg/clip-path/clip-path-clipped-nonzero-expected.checksum:
- platform/mac/svg/clip-path/clip-path-clipped-nonzero-expected.png:
- platform/mac/svg/clip-path/clip-path-evenodd-expected.png:
- platform/mac/svg/clip-path/clip-path-evenodd-nonzero-expected.checksum:
- platform/mac/svg/clip-path/clip-path-evenodd-nonzero-expected.png:
- platform/mac/svg/clip-path/clip-path-nonzero-evenodd-expected.checksum:
- platform/mac/svg/clip-path/clip-path-nonzero-evenodd-expected.png:
- platform/mac/svg/clip-path/clip-path-nonzero-expected.checksum:
- platform/mac/svg/clip-path/clip-path-nonzero-expected.png:
- platform/mac/svg/clip-path/clip-path-objectBoundingBox-expected.checksum:
- platform/mac/svg/clip-path/clip-path-objectBoundingBox-expected.png:
- platform/mac/svg/clip-path/clip-path-on-clipped-use-expected.checksum:
- platform/mac/svg/clip-path/clip-path-on-clipped-use-expected.png:
- platform/mac/svg/clip-path/clip-path-on-g-and-child-expected.checksum:
- platform/mac/svg/clip-path/clip-path-on-g-and-child-expected.png:
- platform/mac/svg/clip-path/clip-path-on-g-expected.checksum:
- platform/mac/svg/clip-path/clip-path-on-g-expected.png:
- platform/mac/svg/clip-path/clip-path-on-svg-and-child-expected.checksum:
- platform/mac/svg/clip-path/clip-path-on-svg-and-child-expected.png:
- platform/mac/svg/clip-path/clip-path-on-svg-expected.checksum:
- platform/mac/svg/clip-path/clip-path-on-svg-expected.png:
- platform/mac/svg/clip-path/clip-path-pixelation-expected.checksum:
- platform/mac/svg/clip-path/clip-path-pixelation-expected.png:
- platform/mac/svg/clip-path/clip-path-recursive-call-by-child-expected.png:
- platform/mac/svg/clip-path/clip-path-recursive-call-expected.png:
- platform/mac/svg/clip-path/clip-path-text-and-shape-expected.png:
- platform/mac/svg/clip-path/clip-path-text-and-stroke-expected.png:
- platform/mac/svg/clip-path/clip-path-text-expected.png:
- platform/mac/svg/clip-path/clip-path-use-as-child-expected.checksum:
- platform/mac/svg/clip-path/clip-path-use-as-child-expected.png:
- platform/mac/svg/clip-path/clip-path-use-as-child2-expected.checksum:
- platform/mac/svg/clip-path/clip-path-use-as-child2-expected.png:
- platform/mac/svg/clip-path/clip-path-use-as-child3-expected.checksum:
- platform/mac/svg/clip-path/clip-path-use-as-child3-expected.png:
- platform/mac/svg/clip-path/clip-path-use-as-child4-expected.checksum:
- platform/mac/svg/clip-path/clip-path-use-as-child4-expected.png:
- platform/mac/svg/clip-path/clip-path-use-as-child5-expected.png:
- platform/mac/svg/clip-path/clip-path-userSpaceOnUse-expected.png:
- platform/mac/svg/clip-path/clip-path-with-container-expected.png:
- platform/mac/svg/clip-path/clip-path-with-different-unittypes-expected.png:
- platform/mac/svg/clip-path/clip-path-with-different-unittypes2-expected.png:
- platform/mac/svg/clip-path/clip-path-with-invisibile-child-expected.png:
- platform/mac/svg/clip-path/clip-path-with-text-clipped-expected.png:
- platform/mac/svg/clip-path/deep-nested-clip-in-mask-different-unitTypes-expected.checksum:
- platform/mac/svg/clip-path/deep-nested-clip-in-mask-different-unitTypes-expected.png:
- platform/mac/svg/clip-path/deep-nested-clip-in-mask-expected.checksum:
- platform/mac/svg/clip-path/deep-nested-clip-in-mask-expected.png:
- platform/mac/svg/clip-path/deep-nested-clip-in-mask-panning-expected.checksum:
- platform/mac/svg/clip-path/deep-nested-clip-in-mask-panning-expected.png:
- platform/mac/svg/clip-path/nested-clip-in-mask-image-based-clipping-expected.checksum:
- platform/mac/svg/clip-path/nested-clip-in-mask-image-based-clipping-expected.png:
- platform/mac/svg/clip-path/nested-clip-in-mask-path-and-image-based-clipping-expected.checksum:
- platform/mac/svg/clip-path/nested-clip-in-mask-path-and-image-based-clipping-expected.png:
- platform/mac/svg/clip-path/nested-clip-in-mask-path-based-clipping-expected.checksum:
- platform/mac/svg/clip-path/nested-clip-in-mask-path-based-clipping-expected.png:
- platform/mac/svg/css/arrow-with-shadow-expected.png:
- platform/mac/svg/css/background-image-svg-expected.png:
- platform/mac/svg/css/circle-in-mask-with-shadow-expected.checksum:
- platform/mac/svg/css/circle-in-mask-with-shadow-expected.png:
- platform/mac/svg/css/clippath-with-shadow-expected.png:
- platform/mac/svg/css/composite-shadow-example-expected.png:
- platform/mac/svg/css/composite-shadow-text-expected.png:
- platform/mac/svg/css/composite-shadow-with-opacity-expected.png:
- platform/mac/svg/css/group-with-shadow-expected.png:
- platform/mac/svg/css/mask-with-shadow-expected.checksum:
- platform/mac/svg/css/mask-with-shadow-expected.png:
- platform/mac/svg/css/path-with-shadow-expected.png:
- platform/mac/svg/css/shadow-and-opacity-expected.png:
- platform/mac/svg/css/shadow-changes-expected.checksum:
- platform/mac/svg/css/shadow-changes-expected.png:
- platform/mac/svg/css/shadow-with-large-radius-expected.png:
- platform/mac/svg/css/shadow-with-negative-offset-expected.png:
- platform/mac/svg/css/stars-with-shadow-expected.png:
- platform/mac/svg/css/text-shadow-multiple-expected.png:
- platform/mac/svg/custom/SVGMatrix-interface-expected.png:
- platform/mac/svg/custom/SVGNumber-interface-expected.png:
- platform/mac/svg/custom/SVGPoint-interface-expected.png:
- platform/mac/svg/custom/SVGPoint-matrixTransform-expected.png:
- platform/mac/svg/custom/SVGRect-interface-expected.png:
- platform/mac/svg/custom/absolute-sized-content-with-resources-expected.checksum:
- platform/mac/svg/custom/absolute-sized-content-with-resources-expected.png:
- platform/mac/svg/custom/absolute-sized-svg-in-xhtml-expected.png:
- platform/mac/svg/custom/alignment-baseline-modes-expected.png:
- platform/mac/svg/custom/altglyph-expected.png:
- platform/mac/svg/custom/animate-path-discrete-expected.png:
- platform/mac/svg/custom/animate-path-morphing-expected.png:
- platform/mac/svg/custom/animation-currentColor-expected.png:
- platform/mac/svg/custom/attribute-namespace-check-expected.png:
- platform/mac/svg/custom/broken-internal-references-expected.png:
- platform/mac/svg/custom/bug45331-expected.png:
- platform/mac/svg/custom/circle-move-invalidation-expected.checksum:
- platform/mac/svg/custom/circle-move-invalidation-expected.png:
- platform/mac/svg/custom/circular-marker-reference-1-expected.png:
- platform/mac/svg/custom/circular-marker-reference-2-expected.checksum:
- platform/mac/svg/custom/circular-marker-reference-2-expected.png:
- platform/mac/svg/custom/circular-marker-reference-3-expected.png:
- platform/mac/svg/custom/circular-marker-reference-4-expected.png:
- platform/mac/svg/custom/class-baseValue-expected.png:
- platform/mac/svg/custom/class-selector-expected.png:
- platform/mac/svg/custom/clip-path-child-changes-expected.png:
- platform/mac/svg/custom/clip-path-href-changes-expected.png:
- platform/mac/svg/custom/clip-path-id-changes-expected.png:
- platform/mac/svg/custom/clip-path-units-changes-expected.png:
- platform/mac/svg/custom/clip-path-with-transform-expected.png:
- platform/mac/svg/custom/clone-element-with-animated-svg-properties-expected.checksum:
- platform/mac/svg/custom/clone-element-with-animated-svg-properties-expected.png:
- platform/mac/svg/custom/conditional-processing-outside-switch-expected.png:
- platform/mac/svg/custom/control-points-for-S-and-T-expected.png:
- platform/mac/svg/custom/coords-relative-units-transforms-expected.png:
- platform/mac/svg/custom/create-metadata-element-expected.png:
- platform/mac/svg/custom/createImageElement-expected.png:
- platform/mac/svg/custom/createImageElement2-expected.png:
- platform/mac/svg/custom/createelement-expected.png:
- platform/mac/svg/custom/css-pixels-dpi-expected.png:
- platform/mac/svg/custom/dasharrayOrigin-expected.checksum:
- platform/mac/svg/custom/dasharrayOrigin-expected.png:
- platform/mac/svg/custom/deep-dynamic-updates-expected.png:
- platform/mac/svg/custom/display-none-expected.png:
- platform/mac/svg/custom/dominant-baseline-hanging-expected.checksum:
- platform/mac/svg/custom/dominant-baseline-hanging-expected.png:
- platform/mac/svg/custom/dominant-baseline-modes-expected.png:
- platform/mac/svg/custom/dynamic-empty-path-expected.png:
- platform/mac/svg/custom/dynamic-svg-document-creation-expected.png:
- platform/mac/svg/custom/dynamic-viewBox-expected.png:
- platform/mac/svg/custom/empty-clip-path-expected.png:
- platform/mac/svg/custom/empty-mask-expected.png:
- platform/mac/svg/custom/empty-merge-expected.png:
- platform/mac/svg/custom/evt-onload-expected.png:
- platform/mac/svg/custom/feComponentTransfer-Discrete-expected.png:
- platform/mac/svg/custom/feComponentTransfer-Gamma-expected.png:
- platform/mac/svg/custom/feComponentTransfer-Linear-expected.png:
- platform/mac/svg/custom/feComponentTransfer-Table-expected.png:
- platform/mac/svg/custom/feDisplacementMap-01-expected.png:
- platform/mac/svg/custom/fill-SVGPaint-interface-expected.png:
- platform/mac/svg/custom/fill-opacity-hsl-expected.png:
- platform/mac/svg/custom/fill-opacity-rgba-expected.png:
- platform/mac/svg/custom/fill-update-expected.png:
- platform/mac/svg/custom/focus-ring-expected.checksum:
- platform/mac/svg/custom/focus-ring-expected.png:
- platform/mac/svg/custom/font-face-cascade-order-expected.png:
- platform/mac/svg/custom/font-face-simple-expected.png:
- platform/mac/svg/custom/foreign-object-skew-expected.checksum:
- platform/mac/svg/custom/foreign-object-skew-expected.png:
- platform/mac/svg/custom/foreignObject-crash-on-hover-expected.png:
- platform/mac/svg/custom/fractional-rects-expected.png:
- platform/mac/svg/custom/getTransformToElement-expected.png:
- platform/mac/svg/custom/getscreenctm-in-mixed-content-expected.png:
- platform/mac/svg/custom/getscreenctm-in-scrollable-div-area-expected.checksum:
- platform/mac/svg/custom/getscreenctm-in-scrollable-div-area-expected.png:
- platform/mac/svg/custom/getscreenctm-in-scrollable-div-area-nested-expected.checksum:
- platform/mac/svg/custom/getscreenctm-in-scrollable-div-area-nested-expected.png:
- platform/mac/svg/custom/getscreenctm-in-scrollable-svg-area-expected.checksum:
- platform/mac/svg/custom/getscreenctm-in-scrollable-svg-area-expected.png:
- platform/mac/svg/custom/glyph-selection-lang-attribute-expected.png:
- platform/mac/svg/custom/glyph-transformation-with-hkern-expected.png:
- platform/mac/svg/custom/gradient-add-stops-expected.png:
- platform/mac/svg/custom/gradient-attr-update-expected.png:
- platform/mac/svg/custom/gradient-cycle-detection-expected.png:
- platform/mac/svg/custom/gradient-deep-referencing-expected.png:
- platform/mac/svg/custom/gradient-rotated-bbox-expected.png:
- platform/mac/svg/custom/gradient-stop-corner-cases-expected.png:
- platform/mac/svg/custom/gradient-stop-style-change-expected.png:
- platform/mac/svg/custom/gradient-stroke-width-expected.checksum:
- platform/mac/svg/custom/gradient-stroke-width-expected.png:
- platform/mac/svg/custom/gradient-userSpaceOnUse-with-percentage-expected.png:
- platform/mac/svg/custom/gradient-with-1d-boundingbox-expected.checksum:
- platform/mac/svg/custom/gradient-with-1d-boundingbox-expected.png:
- platform/mac/svg/custom/grayscale-gradient-mask-expected.png:
- platform/mac/svg/custom/group-opacity-expected.png:
- platform/mac/svg/custom/hit-test-path-expected.png:
- platform/mac/svg/custom/hit-test-path-stroke-expected.png:
- platform/mac/svg/custom/hit-test-unclosed-subpaths-expected.png:
- platform/mac/svg/custom/hit-test-with-br-expected.png:
- platform/mac/svg/custom/hover-default-fill-expected.png:
- platform/mac/svg/custom/image-small-width-height-expected.png:
- platform/mac/svg/custom/image-with-aspect-ratio-stretch-expected.png:
- platform/mac/svg/custom/image-with-prefix-in-webarchive-expected.png:
- platform/mac/svg/custom/image-with-transform-clip-filter-expected.png:
- platform/mac/svg/custom/inline-svg-in-xhtml-expected.checksum:
- platform/mac/svg/custom/inline-svg-in-xhtml-expected.png:
- platform/mac/svg/custom/inner-percent-expected.png:
- platform/mac/svg/custom/inner-svg-hit-test-expected.png:
- platform/mac/svg/custom/invalid-css-expected.checksum:
- platform/mac/svg/custom/invalid-css-expected.png:
- platform/mac/svg/custom/invalid-fill-expected.checksum:
- platform/mac/svg/custom/invalid-fill-expected.png:
- platform/mac/svg/custom/invalid-fill-hex-expected.checksum:
- platform/mac/svg/custom/invalid-fill-hex-expected.png:
- platform/mac/svg/custom/invalid-lengthlist-expected.png:
- platform/mac/svg/custom/invalid-transforms-expected.png:
- platform/mac/svg/custom/js-late-clipPath-and-object-creation-expected.png:
- platform/mac/svg/custom/js-late-clipPath-creation-expected.png:
- platform/mac/svg/custom/js-late-gradient-and-object-creation-expected.png:
- platform/mac/svg/custom/js-late-gradient-creation-expected.png:
- platform/mac/svg/custom/js-late-marker-and-object-creation-expected.checksum:
- platform/mac/svg/custom/js-late-marker-and-object-creation-expected.png:
- platform/mac/svg/custom/js-late-marker-creation-expected.checksum:
- platform/mac/svg/custom/js-late-marker-creation-expected.png:
- platform/mac/svg/custom/js-late-mask-and-object-creation-expected.png:
- platform/mac/svg/custom/js-late-mask-creation-expected.png:
- platform/mac/svg/custom/js-late-pattern-and-object-creation-expected.png:
- platform/mac/svg/custom/js-late-pattern-creation-expected.png:
- platform/mac/svg/custom/js-repaint-rect-on-path-with-stroke-expected.png:
- platform/mac/svg/custom/js-update-bounce-expected.checksum:
- platform/mac/svg/custom/js-update-bounce-expected.png:
- platform/mac/svg/custom/js-update-container-expected.png:
- platform/mac/svg/custom/js-update-container2-expected.png:
- platform/mac/svg/custom/js-update-gradient-expected.png:
- platform/mac/svg/custom/js-update-image-and-display-expected.png:
- platform/mac/svg/custom/js-update-image-and-display2-expected.png:
- platform/mac/svg/custom/js-update-image-and-display3-expected.png:
- platform/mac/svg/custom/js-update-image-expected.png:
- platform/mac/svg/custom/js-update-path-changes-expected.png:
- platform/mac/svg/custom/js-update-path-removal-expected.png:
- platform/mac/svg/custom/js-update-pattern-child-expected.png:
- platform/mac/svg/custom/js-update-pattern-expected.png:
- platform/mac/svg/custom/js-update-polygon-changes-expected.png:
- platform/mac/svg/custom/js-update-polygon-removal-expected.png:
- platform/mac/svg/custom/js-update-stop-expected.png:
- platform/mac/svg/custom/js-update-stop-linked-gradient-expected.png:
- platform/mac/svg/custom/js-update-style-expected.png:
- platform/mac/svg/custom/js-update-transform-addition-expected.png:
- platform/mac/svg/custom/js-update-transform-changes-expected.png:
- platform/mac/svg/custom/junk-data-expected.png:
- platform/mac/svg/custom/large-bounding-box-percents-expected.png:
- platform/mac/svg/custom/linking-a-03-b-all-expected.checksum:
- platform/mac/svg/custom/linking-a-03-b-all-expected.png:
- platform/mac/svg/custom/linking-a-03-b-preserveAspectRatio-expected.checksum:
- platform/mac/svg/custom/linking-a-03-b-preserveAspectRatio-expected.png:
- platform/mac/svg/custom/linking-a-03-b-transform-expected.checksum:
- platform/mac/svg/custom/linking-a-03-b-transform-expected.png:
- platform/mac/svg/custom/linking-a-03-b-viewBox-expected.checksum:
- platform/mac/svg/custom/linking-a-03-b-viewBox-expected.png:
- platform/mac/svg/custom/linking-a-03-b-viewBox-transform-expected.checksum:
- platform/mac/svg/custom/linking-a-03-b-viewBox-transform-expected.png:
- platform/mac/svg/custom/linking-a-03-b-viewTarget-expected.checksum:
- platform/mac/svg/custom/linking-a-03-b-viewTarget-expected.png:
- platform/mac/svg/custom/linking-a-03-b-zoomAndPan-expected.checksum:
- platform/mac/svg/custom/linking-a-03-b-zoomAndPan-expected.png:
- platform/mac/svg/custom/marker-changes-expected.checksum:
- platform/mac/svg/custom/marker-changes-expected.png:
- platform/mac/svg/custom/marker-child-changes-css-expected.checksum:
- platform/mac/svg/custom/marker-child-changes-css-expected.png:
- platform/mac/svg/custom/marker-child-changes-expected.checksum:
- platform/mac/svg/custom/marker-child-changes-expected.png:
- platform/mac/svg/custom/marker-default-width-height-expected.png:
- platform/mac/svg/custom/marker-empty-path-expected.png:
- platform/mac/svg/custom/marker-opacity-expected.checksum:
- platform/mac/svg/custom/marker-opacity-expected.png:
- platform/mac/svg/custom/marker-overflow-clip-expected.png:
- platform/mac/svg/custom/marker-referencePoint-expected.png:
- platform/mac/svg/custom/marker-strokeWidth-changes-expected.checksum:
- platform/mac/svg/custom/marker-strokeWidth-changes-expected.png:
- platform/mac/svg/custom/marker-viewBox-changes-expected.checksum:
- platform/mac/svg/custom/marker-viewBox-changes-expected.png:
- platform/mac/svg/custom/mask-changes-expected.png:
- platform/mac/svg/custom/mask-child-changes-expected.png:
- platform/mac/svg/custom/mask-colorspace-expected.checksum:
- platform/mac/svg/custom/mask-colorspace-expected.png:
- platform/mac/svg/custom/mask-excessive-malloc-expected.png:
- platform/mac/svg/custom/mask-inside-defs-expected.png:
- platform/mac/svg/custom/mask-on-multiple-objects-expected.checksum:
- platform/mac/svg/custom/mask-on-multiple-objects-expected.png:
- platform/mac/svg/custom/mask-with-all-units-expected.png:
- platform/mac/svg/custom/mask-with-default-value-expected.png:
- platform/mac/svg/custom/massive-coordinates-expected.png:
- platform/mac/svg/custom/missing-xlink-expected.png:
- platform/mac/svg/custom/mouse-move-on-svg-container-expected.checksum:
- platform/mac/svg/custom/mouse-move-on-svg-container-expected.png:
- platform/mac/svg/custom/mouse-move-on-svg-container-standalone-expected.checksum:
- platform/mac/svg/custom/mouse-move-on-svg-container-standalone-expected.png:
- platform/mac/svg/custom/mouse-move-on-svg-root-expected.checksum:
- platform/mac/svg/custom/mouse-move-on-svg-root-expected.png:
- platform/mac/svg/custom/mouse-move-on-svg-root-standalone-expected.checksum:
- platform/mac/svg/custom/mouse-move-on-svg-root-standalone-expected.png:
- platform/mac/svg/custom/no-inherited-dashed-stroke-expected.png:
- platform/mac/svg/custom/non-circular-marker-reference-expected.checksum:
- platform/mac/svg/custom/non-circular-marker-reference-expected.png:
- platform/mac/svg/custom/non-opaque-filters-expected.png:
- platform/mac/svg/custom/non-scaling-stroke-expected.png:
- platform/mac/svg/custom/non-scaling-stroke-markers-expected.png:
- platform/mac/svg/custom/outer-svg-unknown-feature-expected.png:
- platform/mac/svg/custom/path-textPath-simulation-expected.png:
- platform/mac/svg/custom/path-update-expected.png:
- platform/mac/svg/custom/path-zero-strokewidth-expected.checksum:
- platform/mac/svg/custom/path-zero-strokewidth-expected.png:
- platform/mac/svg/custom/pattern-cycle-detection-expected.png:
- platform/mac/svg/custom/pattern-excessive-malloc-expected.png:
- platform/mac/svg/custom/pattern-in-defs-expected.png:
- platform/mac/svg/custom/pattern-incorrect-tiling-expected.checksum:
- platform/mac/svg/custom/pattern-incorrect-tiling-expected.png:
- platform/mac/svg/custom/pattern-no-pixelation-expected.checksum:
- platform/mac/svg/custom/pattern-no-pixelation-expected.png:
- platform/mac/svg/custom/pattern-rotate-expected.checksum:
- platform/mac/svg/custom/pattern-rotate-expected.png:
- platform/mac/svg/custom/pattern-size-bigger-than-target-size-expected.png:
- platform/mac/svg/custom/pattern-skew-transformed-expected.png:
- platform/mac/svg/custom/pattern-with-transformation-expected.png:
- platform/mac/svg/custom/pattern-y-offset-expected.png:
- platform/mac/svg/custom/percentage-rect-expected.png:
- platform/mac/svg/custom/percentage-rect2-expected.png:
- platform/mac/svg/custom/pointer-events-path-expected.png:
- platform/mac/svg/custom/poly-identify-expected.png:
- platform/mac/svg/custom/polyline-hittest-expected.png:
- platform/mac/svg/custom/polyline-invalid-points-expected.png:
- platform/mac/svg/custom/polyline-setattribute-points-null-expected.png:
- platform/mac/svg/custom/prevent-default-expected.png:
- platform/mac/svg/custom/radial-gradient-with-outstanding-focalPoint-expected.png:
- platform/mac/svg/custom/recursive-clippath-expected.png:
- platform/mac/svg/custom/recursive-filter-expected.png:
- platform/mac/svg/custom/recursive-gradient-expected.png:
- platform/mac/svg/custom/recursive-mask-expected.png:
- platform/mac/svg/custom/recursive-pattern-expected.png:
- platform/mac/svg/custom/relative-sized-content-with-resources-expected.checksum:
- platform/mac/svg/custom/relative-sized-content-with-resources-expected.png:
- platform/mac/svg/custom/relative-sized-inner-svg-expected.png:
- platform/mac/svg/custom/relative-sized-use-on-symbol-expected.png:
- platform/mac/svg/custom/relative-sized-use-without-attributes-on-symbol-expected.png:
- platform/mac/svg/custom/repaint-moving-svg-and-div-expected.png:
- platform/mac/svg/custom/repaint-on-image-bounds-change-expected.png:
- platform/mac/svg/custom/repaint-stroke-width-changes-expected.png:
- platform/mac/svg/custom/resource-client-removal-expected.png:
- platform/mac/svg/custom/resource-invalidate-on-target-update-expected.checksum:
- platform/mac/svg/custom/resource-invalidate-on-target-update-expected.png:
- platform/mac/svg/custom/rgbcolor-syntax-expected.png:
- platform/mac/svg/custom/root-container-opacity-clip-viewBox-expected.png:
- platform/mac/svg/custom/rootelement-expected.png:
- platform/mac/svg/custom/rounded-rects-expected.png:
- platform/mac/svg/custom/scroll-hit-test-expected.png:
- platform/mac/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.png:
- platform/mac/svg/custom/second-inline-text-expected.png:
- platform/mac/svg/custom/shapes-supporting-markers-expected.checksum:
- platform/mac/svg/custom/shapes-supporting-markers-expected.png:
- platform/mac/svg/custom/sheet-title-expected.png:
- platform/mac/svg/custom/simpleCDF-expected.png:
- platform/mac/svg/custom/stroke-width-large-expected.png:
- platform/mac/svg/custom/stroked-pattern-expected.checksum:
- platform/mac/svg/custom/stroked-pattern-expected.png:
- platform/mac/svg/custom/struct-use-09-b-expected.png:
- platform/mac/svg/custom/style-attribute-font-size-expected.png:
- platform/mac/svg/custom/svg-absolute-children-expected.png:
- platform/mac/svg/custom/svg-curve-with-relative-cordinates-expected.png:
- platform/mac/svg/custom/svg-fonts-in-html-expected.png:
- platform/mac/svg/custom/svg-fonts-with-no-element-reference-expected.png:
- platform/mac/svg/custom/svg-overflow-types-expected.png:
- platform/mac/svg/custom/svgpolyparser-extra-space-expected.png:
- platform/mac/svg/custom/text-clip-expected.png:
- platform/mac/svg/custom/text-ctm-expected.png:
- platform/mac/svg/custom/text-decoration-visibility-expected.png:
- platform/mac/svg/custom/text-dom-01-f-expected.png:
- platform/mac/svg/custom/text-dom-removal-expected.png:
- platform/mac/svg/custom/text-filter-expected.png:
- platform/mac/svg/custom/text-gradient-no-content-expected.png:
- platform/mac/svg/custom/text-hit-test-expected.png:
- platform/mac/svg/custom/text-image-opacity-expected.png:
- platform/mac/svg/custom/text-letter-spacing-expected.png:
- platform/mac/svg/custom/text-linking-expected.png:
- platform/mac/svg/custom/text-repaint-including-stroke-expected.png:
- platform/mac/svg/custom/text-rotated-gradient-expected.png:
- platform/mac/svg/custom/text-rotation-expected.png:
- platform/mac/svg/custom/text-whitespace-handling-expected.png:
- platform/mac/svg/custom/text-x-dx-lists-expected.png:
- platform/mac/svg/custom/text-x-dy-lists-expected.png:
- platform/mac/svg/custom/text-x-override-in-tspan-child-expected.png:
- platform/mac/svg/custom/text-xy-updates-SVGList-expected.png:
- platform/mac/svg/custom/text-xy-updates-expected.png:
- platform/mac/svg/custom/transform-ignore-after-invalid-expected.png:
- platform/mac/svg/custom/transform-invalid-expected.png:
- platform/mac/svg/custom/transform-removeAttributeNS-expected.png:
- platform/mac/svg/custom/transform-scale-parse-expected.png:
- platform/mac/svg/custom/transform-with-ending-space-expected.png:
- platform/mac/svg/custom/transformedMaskFails-expected.png:
- platform/mac/svg/custom/tref-update-expected.png:
- platform/mac/svg/custom/use-clipped-hit-expected.png:
- platform/mac/svg/custom/use-css-events-expected.checksum:
- platform/mac/svg/custom/use-css-events-expected.png:
- platform/mac/svg/custom/use-css-no-effect-on-shadow-tree-expected.png:
- platform/mac/svg/custom/use-detach-expected.checksum:
- platform/mac/svg/custom/use-detach-expected.png:
- platform/mac/svg/custom/use-dynamic-append-expected.png:
- platform/mac/svg/custom/use-elementInstance-event-target-expected.png:
- platform/mac/svg/custom/use-elementInstance-methods-expected.png:
- platform/mac/svg/custom/use-empty-reference-expected.png:
- platform/mac/svg/custom/use-event-handler-on-referenced-element-expected.png:
- platform/mac/svg/custom/use-event-handler-on-use-element-expected.png:
- platform/mac/svg/custom/use-events-crash-expected.png:
- platform/mac/svg/custom/use-font-face-crash-expected.png:
- platform/mac/svg/custom/use-forward-refs-expected.png:
- platform/mac/svg/custom/use-infinite-recursion-expected.png:
- platform/mac/svg/custom/use-instanceRoot-modifications-expected.checksum:
- platform/mac/svg/custom/use-instanceRoot-modifications-expected.png:
- platform/mac/svg/custom/use-modify-container-in-target-expected.checksum:
- platform/mac/svg/custom/use-modify-container-in-target-expected.png:
- platform/mac/svg/custom/use-modify-target-container-expected.checksum:
- platform/mac/svg/custom/use-modify-target-container-expected.png:
- platform/mac/svg/custom/use-modify-target-symbol-expected.png:
- platform/mac/svg/custom/use-nested-transform-expected.png:
- platform/mac/svg/custom/use-on-clip-path-with-transformation-expected.png:
- platform/mac/svg/custom/use-on-disallowed-foreign-object-1-expected.png:
- platform/mac/svg/custom/use-on-disallowed-foreign-object-2-expected.png:
- platform/mac/svg/custom/use-on-disallowed-foreign-object-3-expected.png:
- platform/mac/svg/custom/use-on-disallowed-foreign-object-4-expected.png:
- platform/mac/svg/custom/use-on-disallowed-foreign-object-5-expected.png:
- platform/mac/svg/custom/use-on-disallowed-foreign-object-6-expected.png:
- platform/mac/svg/custom/use-on-g-containing-foreignObject-and-image-expected.png:
- platform/mac/svg/custom/use-on-g-containing-symbol-expected.png:
- platform/mac/svg/custom/use-on-g-containing-use-expected.checksum:
- platform/mac/svg/custom/use-on-g-containing-use-expected.png:
- platform/mac/svg/custom/use-on-g-expected.checksum:
- platform/mac/svg/custom/use-on-g-expected.png:
- platform/mac/svg/custom/use-on-non-svg-namespaced-element-expected.png:
- platform/mac/svg/custom/use-on-rect-expected.png:
- platform/mac/svg/custom/use-on-symbol-expected.png:
- platform/mac/svg/custom/use-on-symbol-inside-pattern-expected.png:
- platform/mac/svg/custom/use-on-text-expected.png:
- platform/mac/svg/custom/use-on-use-expected.checksum:
- platform/mac/svg/custom/use-on-use-expected.png:
- platform/mac/svg/custom/use-property-changes-through-dom-expected.png:
- platform/mac/svg/custom/use-property-changes-through-svg-dom-expected.png:
- platform/mac/svg/custom/use-property-synchronization-crash-expected.png:
- platform/mac/svg/custom/use-recalcStyle-crash-expected.png:
- platform/mac/svg/custom/use-recursion-1-expected.png:
- platform/mac/svg/custom/use-recursion-2-expected.png:
- platform/mac/svg/custom/use-recursion-3-expected.png:
- platform/mac/svg/custom/use-recursion-4-expected.png:
- platform/mac/svg/custom/use-referencing-nonexisting-symbol-expected.png:
- platform/mac/svg/custom/use-setAttribute-crash-expected.checksum:
- platform/mac/svg/custom/use-setAttribute-crash-expected.png:
- platform/mac/svg/custom/use-symbol-overflow-expected.png:
- platform/mac/svg/custom/use-transform-expected.checksum:
- platform/mac/svg/custom/use-transform-expected.png:
- platform/mac/svg/custom/viewBox-hit-expected.checksum:
- platform/mac/svg/custom/viewBox-hit-expected.png:
- platform/mac/svg/custom/viewport-clip-expected.png:
- platform/mac/svg/custom/viewport-em-expected.png:
- platform/mac/svg/custom/viewport-no-width-height-expected.png:
- platform/mac/svg/custom/viewport-update-expected.png:
- platform/mac/svg/custom/viewport-update2-expected.png:
- platform/mac/svg/custom/visibility-override-clip-expected.png:
- platform/mac/svg/custom/visibility-override-expected.png:
- platform/mac/svg/custom/visibility-override-filter-expected.png:
- platform/mac/svg/custom/visibility-override-mask-expected.png:
- platform/mac/svg/custom/width-full-percentage-expected.checksum:
- platform/mac/svg/custom/width-full-percentage-expected.png:
- platform/mac/svg/custom/xhtml-no-svg-renderer-expected.png:
- platform/mac/svg/custom/xml-stylesheet-expected.png:
- platform/mac/svg/dom/SVGRectElement/rect-modify-rx-expected.png:
- platform/mac/svg/dynamic-updates/SVGCircleElement-dom-cx-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGCircleElement-dom-cx-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGCircleElement-dom-cy-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGCircleElement-dom-cy-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGCircleElement-dom-r-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGCircleElement-dom-r-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGCircleElement-svgdom-cx-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGCircleElement-svgdom-cx-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGCircleElement-svgdom-cy-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGCircleElement-svgdom-cy-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGCircleElement-svgdom-r-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGCircleElement-svgdom-r-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGEllipseElement-dom-cx-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGEllipseElement-dom-cx-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGEllipseElement-dom-cy-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGEllipseElement-dom-cy-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGEllipseElement-dom-rx-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGEllipseElement-dom-rx-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGEllipseElement-dom-ry-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGEllipseElement-dom-ry-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGEllipseElement-svgdom-cx-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGEllipseElement-svgdom-cx-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGEllipseElement-svgdom-cy-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGEllipseElement-svgdom-cy-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGEllipseElement-svgdom-rx-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGEllipseElement-svgdom-rx-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGEllipseElement-svgdom-ry-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGEllipseElement-svgdom-ry-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEColorMatrixElement-dom-in-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEColorMatrixElement-dom-in-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEColorMatrixElement-dom-type-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEColorMatrixElement-dom-type-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEColorMatrixElement-dom-values-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEColorMatrixElement-dom-values-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-in-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-in-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-type-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-type-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-in-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-in-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-in2-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-in2-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k1-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k1-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k2-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k2-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k3-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k3-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k4-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k4-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-operator-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-operator-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-in-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-in-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-in2-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-in2-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k1-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k1-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k2-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k2-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k3-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k3-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k4-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k4-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-operator-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-operator-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-diffuseConstant-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-diffuseConstant-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-in-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-in-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-lighting-color-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-lighting-color-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-surfaceScale-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-surfaceScale-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-lighting-color-css-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-lighting-color-css-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-diffuseConstant-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-diffuseConstant-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-in-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-in-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-surfaceScale-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-surfaceScale-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEDistantLightElement-dom-azimuth-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEDistantLightElement-dom-azimuth-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEDistantLightElement-dom-elevation-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEDistantLightElement-dom-elevation-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEDistantLightElement-svgdom-azimuth-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEDistantLightElement-svgdom-azimuth-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEDistantLightElement-svgdom-elevation-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEDistantLightElement-svgdom-elevation-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEMergeNodeElement-dom-in-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEMergeNodeElement-dom-in-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEMergeNodeElement-svgdom-in-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEMergeNodeElement-svgdom-in-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEOffsetElement-dom-dx-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEOffsetElement-dom-dx-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEOffsetElement-dom-dy-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEOffsetElement-dom-dy-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEOffsetElement-dom-in-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEOffsetElement-dom-in-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEOffsetElement-svgdom-dx-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEOffsetElement-svgdom-dx-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEOffsetElement-svgdom-dy-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEOffsetElement-svgdom-dy-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEOffsetElement-svgdom-in-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEOffsetElement-svgdom-in-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEPointLightElement-dom-x-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEPointLightElement-dom-x-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEPointLightElement-dom-y-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEPointLightElement-dom-y-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEPointLightElement-dom-z-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEPointLightElement-dom-z-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEPointLightElement-svgdom-x-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEPointLightElement-svgdom-x-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEPointLightElement-svgdom-y-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEPointLightElement-svgdom-y-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEPointLightElement-svgdom-z-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEPointLightElement-svgdom-z-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientTransform-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientTransform-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientUnits-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientUnits-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-x1-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-x1-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-x2-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-x2-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-y1-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-y1-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-y2-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-y2-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientTransform-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientTransform-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientUnits-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientUnits-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x1-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x1-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x2-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x2-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y1-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y1-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y2-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y2-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGMaskElement-dom-height-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGMaskElement-dom-height-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGMaskElement-dom-maskContentUnits-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGMaskElement-dom-maskContentUnits-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGMaskElement-dom-maskUnits-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGMaskElement-dom-maskUnits-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGMaskElement-dom-width-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGMaskElement-dom-width-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGMaskElement-dom-x-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGMaskElement-dom-x-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGMaskElement-dom-y-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGMaskElement-dom-y-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGMaskElement-svgdom-height-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGMaskElement-svgdom-height-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGMaskElement-svgdom-maskContentUnits-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGMaskElement-svgdom-maskContentUnits-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGMaskElement-svgdom-maskUnits-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGMaskElement-svgdom-maskUnits-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGMaskElement-svgdom-width-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGMaskElement-svgdom-width-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGMaskElement-svgdom-x-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGMaskElement-svgdom-x-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGMaskElement-svgdom-y-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGMaskElement-svgdom-y-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-cx-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-cx-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-cy-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-cy-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-fx-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-fx-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-fy-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-fy-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientTransform-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientTransform-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientUnits-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientUnits-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-r-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-r-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cx-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cx-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cy-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cy-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fx-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fx-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fy-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fy-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientTransform-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientTransform-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientUnits-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientUnits-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-r-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-r-prop-expected.png:
- platform/mac/svg/filters/big-sized-filter-2-expected.png:
- platform/mac/svg/filters/feColorMatrix-values-expected.png:
- platform/mac/svg/filters/feMerge-wrong-input-expected.png:
- platform/mac/svg/filters/feOffset-expected.png:
- platform/mac/svg/filters/filter-clip-expected.checksum:
- platform/mac/svg/filters/filter-clip-expected.png:
- platform/mac/svg/filters/filter-empty-g-expected.png:
- platform/mac/svg/filters/filter-on-filter-for-text-expected.png:
- platform/mac/svg/filters/parent-children-with-same-filter-expected.png:
- platform/mac/svg/filters/sourceAlpha-expected.png:
- platform/mac/svg/filters/subRegion-one-effect-expected.png:
- platform/mac/svg/filters/subRegion-two-effects-expected.png:
- platform/mac/svg/foreignObject/disallowed-svg-nodes-as-direct-children-expected.png:
- platform/mac/svg/foreignObject/text-tref-02-b-expected.png:
- platform/mac/svg/hixie/cascade/001-broken-expected.checksum:
- platform/mac/svg/hixie/cascade/001-broken-expected.png:
- platform/mac/svg/hixie/cascade/002-expected.checksum:
- platform/mac/svg/hixie/cascade/002-expected.png:
- platform/mac/svg/hixie/data-types/001-expected.png:
- platform/mac/svg/hixie/dynamic/002-expected.png:
- platform/mac/svg/hixie/dynamic/003-expected.png:
- platform/mac/svg/hixie/dynamic/004-expected.png:
- platform/mac/svg/hixie/dynamic/005-expected.png:
- platform/mac/svg/hixie/dynamic/006-expected.png:
- platform/mac/svg/hixie/error/001-expected.png:
- platform/mac/svg/hixie/error/003-expected.png:
- platform/mac/svg/hixie/error/006-expected.png:
- platform/mac/svg/hixie/error/007-expected.png:
- platform/mac/svg/hixie/error/008-expected.png:
- platform/mac/svg/hixie/error/009-expected.png:
- platform/mac/svg/hixie/error/010-expected.png:
- platform/mac/svg/hixie/error/011-expected.png:
- platform/mac/svg/hixie/error/014-expected.png:
- platform/mac/svg/hixie/error/014-test-expected.png:
- platform/mac/svg/hixie/error/015-expected.png:
- platform/mac/svg/hixie/error/016-expected.png:
- platform/mac/svg/hixie/error/017-expected.checksum:
- platform/mac/svg/hixie/error/017-expected.png:
- platform/mac/svg/hixie/links/001-expected.checksum:
- platform/mac/svg/hixie/links/001-expected.png:
- platform/mac/svg/hixie/links/002-expected.png:
- platform/mac/svg/hixie/links/003-broken-expected.checksum:
- platform/mac/svg/hixie/links/003-broken-expected.png:
- platform/mac/svg/hixie/mixed/003-expected.checksum:
- platform/mac/svg/hixie/mixed/003-expected.png:
- platform/mac/svg/hixie/mixed/004-expected.checksum:
- platform/mac/svg/hixie/mixed/004-expected.png:
- platform/mac/svg/hixie/mixed/005-expected.checksum:
- platform/mac/svg/hixie/mixed/005-expected.png:
- platform/mac/svg/hixie/mixed/006-expected.checksum:
- platform/mac/svg/hixie/mixed/006-expected.png:
- platform/mac/svg/hixie/mixed/008-expected.checksum:
- platform/mac/svg/hixie/mixed/008-expected.png:
- platform/mac/svg/hixie/mixed/011-expected.checksum:
- platform/mac/svg/hixie/mixed/011-expected.png:
- platform/mac/svg/hixie/painting/001-expected.png:
- platform/mac/svg/hixie/perf/001-expected.checksum:
- platform/mac/svg/hixie/perf/001-expected.png:
- platform/mac/svg/hixie/perf/002-expected.checksum:
- platform/mac/svg/hixie/perf/002-expected.png:
- platform/mac/svg/hixie/perf/003-expected.png:
- platform/mac/svg/hixie/perf/004-expected.png:
- platform/mac/svg/hixie/perf/005-expected.png:
- platform/mac/svg/hixie/perf/006-expected.png:
- platform/mac/svg/hixie/perf/007-expected.checksum:
- platform/mac/svg/hixie/perf/007-expected.png:
- platform/mac/svg/hixie/processing-model/005-expected.png:
- platform/mac/svg/hixie/rendering-model/001-expected.checksum:
- platform/mac/svg/hixie/rendering-model/001-expected.png:
- platform/mac/svg/hixie/rendering-model/002-expected.checksum:
- platform/mac/svg/hixie/rendering-model/002-expected.png:
- platform/mac/svg/hixie/rendering-model/003a-expected.png:
- platform/mac/svg/hixie/shapes/path/001-expected.checksum:
- platform/mac/svg/hixie/shapes/path/001-expected.png:
- platform/mac/svg/hixie/text/001-expected.png:
- platform/mac/svg/hixie/text/002-expected.png:
- platform/mac/svg/hixie/text/003a-expected.png:
- platform/mac/svg/hixie/text/003b-expected.png:
- platform/mac/svg/hixie/transform/001-expected.checksum:
- platform/mac/svg/hixie/transform/001-expected.png:
- platform/mac/svg/hixie/use/001-expected.png:
- platform/mac/svg/hixie/use/002-expected.png:
- platform/mac/svg/hixie/use/002-test-expected.png:
- platform/mac/svg/hixie/viewbox/001-expected.png:
- platform/mac/svg/hixie/viewbox/002-expected.png:
- platform/mac/svg/hixie/viewbox/003-expected.png:
- platform/mac/svg/hixie/viewbox/004-expected.png:
- platform/mac/svg/hixie/viewbox/preserveAspectRatio/001-expected.png:
- platform/mac/svg/hixie/viewbox/preserveAspectRatio/002-expected.png:
- platform/mac/svg/in-html/circle-expected.checksum:
- platform/mac/svg/in-html/circle-expected.png:
- platform/mac/svg/overflow/overflow-on-foreignObject-expected.png:
- platform/mac/svg/overflow/overflow-on-inner-svg-element-defaults-expected.png:
- platform/mac/svg/overflow/overflow-on-inner-svg-element-expected.png:
- platform/mac/svg/overflow/overflow-on-outermost-svg-element-defaults-expected.png:
- platform/mac/svg/overflow/overflow-on-outermost-svg-element-ignore-attribute-1-expected.png:
- platform/mac/svg/overflow/overflow-on-outermost-svg-element-ignore-attribute-2-expected.png:
- platform/mac/svg/overflow/overflow-on-outermost-svg-element-ignore-attribute-3-expected.png:
- platform/mac/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-auto-expected.png:
- platform/mac/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-defaults-expected.png:
- platform/mac/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-hidden-expected.png:
- platform/mac/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-scroll-expected.png:
- platform/mac/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-visible-expected.png:
- platform/mac/svg/text/foreignObject-repaint-expected.png:
- platform/mac/svg/text/select-textLength-spacing-squeeze-1-expected.png:
- platform/mac/svg/text/select-textLength-spacing-squeeze-2-expected.png:
- platform/mac/svg/text/select-textLength-spacing-squeeze-3-expected.png:
- platform/mac/svg/text/select-textLength-spacing-squeeze-4-expected.png:
- platform/mac/svg/text/select-textLength-spacing-stretch-1-expected.png:
- platform/mac/svg/text/select-textLength-spacing-stretch-2-expected.png:
- platform/mac/svg/text/select-textLength-spacing-stretch-3-expected.png:
- platform/mac/svg/text/select-textLength-spacing-stretch-4-expected.png:
- platform/mac/svg/text/select-textLength-spacingAndGlyphs-squeeze-1-expected.png:
- platform/mac/svg/text/select-textLength-spacingAndGlyphs-squeeze-2-expected.png:
- platform/mac/svg/text/select-textLength-spacingAndGlyphs-squeeze-3-expected.png:
- platform/mac/svg/text/select-textLength-spacingAndGlyphs-squeeze-4-expected.png:
- platform/mac/svg/text/select-textLength-spacingAndGlyphs-stretch-1-expected.png:
- platform/mac/svg/text/select-textLength-spacingAndGlyphs-stretch-2-expected.png:
- platform/mac/svg/text/select-textLength-spacingAndGlyphs-stretch-3-expected.png:
- platform/mac/svg/text/select-textLength-spacingAndGlyphs-stretch-4-expected.png:
- platform/mac/svg/text/select-x-list-1-expected.png:
- platform/mac/svg/text/select-x-list-2-expected.png:
- platform/mac/svg/text/select-x-list-3-expected.png:
- platform/mac/svg/text/select-x-list-4-expected.png:
- platform/mac/svg/text/select-x-list-with-tspans-1-expected.png:
- platform/mac/svg/text/select-x-list-with-tspans-2-expected.png:
- platform/mac/svg/text/select-x-list-with-tspans-3-expected.png:
- platform/mac/svg/text/select-x-list-with-tspans-4-expected.png:
- platform/mac/svg/text/selection-doubleclick-expected.png:
- platform/mac/svg/text/selection-tripleclick-expected.png:
- platform/mac/svg/text/text-align-01-b-expected.checksum:
- platform/mac/svg/text/text-align-01-b-expected.png:
- platform/mac/svg/text/text-align-05-b-expected.checksum:
- platform/mac/svg/text/text-align-05-b-expected.png:
- platform/mac/svg/text/text-gradient-positioning-expected.png:
- platform/mac/svg/text/text-hkern-expected.png:
- platform/mac/svg/text/text-hkern-on-vertical-text-expected.png:
- platform/mac/svg/text/text-spacing-01-b-expected.png:
- platform/mac/svg/text/text-text-01-b-expected.png:
- platform/mac/svg/text/text-vkern-expected.png:
- platform/mac/svg/text/text-vkern-on-horizontal-text-expected.png:
- platform/mac/svg/text/textPathBoundsBug-expected.png:
- platform/mac/svg/webarchive/svg-script-subresouces-expected.png:
- platform/mac/svg/zoom/page/absolute-sized-document-no-scrollbars-expected.png:
- platform/mac/svg/zoom/page/absolute-sized-document-scrollbars-expected.png:
- platform/mac/svg/zoom/page/relative-sized-document-scrollbars-expected.png:
- platform/mac/svg/zoom/page/zoom-hixie-mixed-008-expected.checksum:
- platform/mac/svg/zoom/page/zoom-hixie-mixed-008-expected.png:
- platform/mac/svg/zoom/page/zoom-hixie-mixed-009-expected.png:
- platform/mac/svg/zoom/page/zoom-hixie-rendering-model-004-expected.png:
- platform/mac/svg/zoom/page/zoom-mask-with-percentages-expected.checksum:
- platform/mac/svg/zoom/page/zoom-mask-with-percentages-expected.png:
- platform/mac/svg/zoom/page/zoom-svg-float-border-padding-expected.png:
- platform/mac/svg/zoom/text/absolute-sized-document-no-scrollbars-expected.png:
- platform/mac/svg/zoom/text/absolute-sized-document-scrollbars-expected.png:
- platform/mac/svg/zoom/text/relative-sized-document-scrollbars-expected.png:
- platform/mac/svg/zoom/text/zoom-foreignObject-expected.png:
- platform/mac/svg/zoom/text/zoom-hixie-mixed-008-expected.checksum:
- platform/mac/svg/zoom/text/zoom-hixie-mixed-008-expected.png:
- platform/mac/svg/zoom/text/zoom-hixie-mixed-009-expected.png:
- platform/mac/svg/zoom/text/zoom-hixie-rendering-model-004-expected.png:
- platform/mac/svg/zoom/text/zoom-svg-float-border-padding-expected.png:
- svg/custom/glyph-setting-d-attribute-expected.png:
- svg/custom/text-zoom-expected.png:
- svg/custom/use-clipped-transform-expected.png:
- svg/in-html/by-reference-expected.png:
- 12:31 AM Changeset in webkit [69562] by
-
- 4 edits in trunk/LayoutTests
Unreviewed. Update Qt specific expected files after r69553.
- platform/qt/fast/dom/Window/window-properties-expected.txt:
- platform/qt/fast/dom/Window/window-property-descriptors-expected.txt:
- platform/qt/http/tests/security/cross-frame-access-get-expected.txt: