Timeline



Oct 26, 2010:

11:38 PM Changeset in webkit [70617] by rwlbuis@webkit.org
  • 2 edits in trunk/WebCore

2010-10-26 Rob Buis <rwlbuis@gmail.com>

Reviewed by Nikolas Zimmermann.

Title-Element has no popup on <svg>-Elements, but on <g>
https://bugs.webkit.org/show_bug.cgi?id=47669

Allow tooltips on non-root svg elements.

No new tests.

  • svg/SVGStyledElement.cpp: (WebCore::SVGStyledElement::title):
11:15 PM Changeset in webkit [70616] by commit-queue@webkit.org
  • 2 edits in trunk/WebKitTools

2010-10-26 Antonio Gomes <agomes@rim.com>

Reviewed by Martin Robinson.

Remove the absolute path used to include DumpRenderTreeSupportGtk.h from LayoutTestController.h

It turns out this is rather unneeded since WebKitTools/GNUMakefile.am has WebKit/gtk/ in its include
path, and then we can just do #include "WebCoreSupport/DumpRenderTreeSupportGtk.h"

  • DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:
10:42 PM Changeset in webkit [70615] by commit-queue@webkit.org
  • 5 edits in trunk

2010-10-26 Dai Mikurube <dmikurube@google.com>

Reviewed by Kent Tamura.

constraint validation: stepMismatch (rounding error)
https://bugs.webkit.org/show_bug.cgi?id=48220

  • fast/forms/ValidityState-stepMismatch-expected.txt:
  • fast/forms/script-tests/ValidityState-stepMismatch.js:

2010-10-26 Dai Mikurube <dmikurube@google.com>

Reviewed by Kent Tamura.

constraint validation: stepMismatch (rounding error)
https://bugs.webkit.org/show_bug.cgi?id=48220

  1. Changed the computation to achieve difference from a integral multiple of the allowed value step.

The previous fmod(doubleValue, step) sometimes returned unacceptable
remainder. For example,

double doubleValue = 1.005; Actually, near to 1.005
double step = 0.005;
Actually, near to 0.005
fmod(doubleValue, step) ==> (near to) 0.005

It's a case that doubleValue is a little smaller than 1.005 and step is
a little larger than 0.005.

  1. Changed the error threshold.

Number values in HTML5 are expressed in IEEE 754 single-precision.
Too precise comparison sometimes leads unintended errors.

For example, I found a case :

remainder = 0.00000000000000022204460

acceptableError = 0.00000000000000007105427

  • html/NumberInputType.cpp: (WebCore::NumberInputType::stepMismatch):
10:29 PM Changeset in webkit [70614] by ddkilzer@apple.com
  • 2 edits
    2 moves
    1 add in trunk/WebKitTools

Rename WebArchiveDumpSupport.mm to WebArchiveDumpSupport.cpp

Reviewed by Adam Roben.

Part 4 of 4: <http://webkit.org/b/48278> Convert DumpRenderTree webarchive code to CoreFoundation

  • DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:

Updated for file moves and renames.

  • DumpRenderTree/cf/WebArchiveDumpSupport.cpp: Renamed from DumpRenderTree/mac/WebArchiveDumpSupport.mm.
  • DumpRenderTree/cf/WebArchiveDumpSupport.h: Renamed from DumpRenderTree/mac/WebArchiveDumpSupport.h.
10:29 PM Changeset in webkit [70613] by ddkilzer@apple.com
  • 5 edits in trunk/WebKitTools

Convert WebArchiveDumpSupport.mm from NS objects to CF types

Reviewed by Adam Roben.

Part 3 of 4: <http://webkit.org/b/48278> Convert DumpRenderTree webarchive code to CoreFoundation

In order to share WebArchive code between the Mac and Windows
ports, the code in WebArchiveDumpSupport.mm was converted from
Cocoa to C++ using CoreFoundation (CF) types.

  • DumpRenderTree/mac/DumpRenderTree.mm:

(dump): Renamed serializeWebArchiveToXML() to
createXMLStringFromWebArchiveData() and added HardAutorelease()
to prevent leaks.

  • DumpRenderTree/mac/WebArchiveDumpSupport.h:

(createXMLStringFromWebArchiveData): Renamed from
serializeWebArchiveToXML(). Changed to use CF types.
(createCFURLResponseFromResponseData): Renamed from
unarchiveNSURLResponseFromResponseData(). Changed to use CF
types for its parameter and return type.

  • DumpRenderTree/mac/WebArchiveDumpSupport.mm: Replaced use of

NS objects with CF types. It will be renamed to *.cpp in a
future commit.
(convertMIMEType): Changed to use case-insensitive string
comparisons.
(convertWebResourceDataToString):
(normalizeHTTPResponseHeaderFields):
(normalizeWebResourceURL):
(convertWebResourceResponseToDictionary):
(compareResourceURLs):
(createXMLStringFromWebArchiveData):

  • DumpRenderTree/mac/WebArchiveDumpSupportMac.mm:

(createCFURLResponseFromResponseData): Renamed from
unarchiveNSURLResponseFromResponseData(). Changed to use CF
types for its parameter and return type.

10:29 PM Changeset in webkit [70612] by ddkilzer@apple.com
  • 4 edits in trunk/WebKitTools

Extract use of NSKeyedUnarchiver from WebArchiveDumpSupport.mm

Reviewed by Adam Roben.

Part 2 of 4: <http://webkit.org/b/48278> Convert DumpRenderTree webarchive code to CoreFoundation

There is no equivalent to NSKeyedUnarchiver in CoreFoundation,
so extract it into a platform-specific source file.

  • DumpRenderTree/mac/WebArchiveDumpSupport.h:

(unarchiveNSURLResponseFromResponseData): Added declaration.

  • DumpRenderTree/mac/WebArchiveDumpSupport.mm:

(convertWebResourceResponseToDictionary): Extracted code to
unarchiveNSURLResponseFromResponseData() in
WebArchiveDumpSupportMac.mm. Updated logic to return early if
nil is returned from unarchiveNSURLResponseFromResponseData().

  • DumpRenderTree/mac/WebArchiveDumpSupportMac.mm:

(unarchiveNSURLResponseFromResponseData): Added. Extracted
code from convertWebResourceResponseToDictionary() in
WebArchiveDumpSupport.mm.

10:29 PM Changeset in webkit [70611] by ddkilzer@apple.com
  • 4 edits
    1 copy in trunk/WebKitTools

Extract call to -[WebHTMLRepresentation supportedNonImageMIMETypes] from WebArchiveDumpSupport.mm

Reviewed by Adam Roben.

Part 1 of 4: <http://webkit.org/b/48278> Convert DumpRenderTree webarchive code to CoreFoundation

The call to -[WebHTMLRepresentation supportedNonImageMIMETypes]
is not cross-platform between Mac and Windows, so extract it
into a platform-specific source file.

  • DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj: Added

WebArchiveDumpSupportMac.mm to the project.

  • DumpRenderTree/mac/WebArchiveDumpSupport.h:

(supportedNonImageMIMETypes): Added declaration.

  • DumpRenderTree/mac/WebArchiveDumpSupport.mm:

(convertWebResourceDataToString): Replaced call to
-[WebHTMLRepresentation supportedNonImageMIMETypes] with
supportedNonImageMIMETypes().

  • DumpRenderTree/mac/WebArchiveDumpSupportMac.mm: Added.

(supportedNonImageMIMETypes): Added. Extracted from
WebArchiveDumpSupport.mm.

10:26 PM Changeset in webkit [70610] by commit-queue@webkit.org
  • 3 edits in trunk/WebKit/chromium

2010-10-26 Victoria Kirst <vrk@google.com>

Reviewed by David Levin.

Fix compile when ACCELERATED_COMPOSITING flag is not set
https://bugs.webkit.org/show_bug.cgi?id=48373

  • src/WebMediaPlayerClientImpl.cpp: (WebKit::WebMediaPlayerClientImpl::~WebMediaPlayerClientImpl): (WebKit::WebMediaPlayerClientImpl::readyStateChanged): (WebKit::WebMediaPlayerClientImpl::load):
  • src/WebMediaPlayerClientImpl.h:
10:22 PM Changeset in webkit [70609] by tonikitoo@webkit.org
  • 10 edits
    2 adds in trunk

[GTK] Implement DumpRenderTreeSupportGtk (similarly to DumpRenderTreeSupportQt idea)
https://bugs.webkit.org/show_bug.cgi?id=48199

Reviewed by Martin Robinson.
Patch by Antonio Gomes <agomes@rim.com>

.:

  • GNUmakefile.am: Added WebKit/gtk/WebCoreSupport/DumpRenderTreeSupportGtk.cpp|h to GTK+'s build system;
  • autotools/symbols.filter: Added DumpRenderTreeSupportGtk symbols to symbols.filter so they do not get filtered and get visible by DRT.

WebKit/gtk:

Implemented an initial version of the DumpRenderTreeSupportGtk class.
The main idea is that it groups together the bodies of many LayoutTestController
methods, so they can directly access WebCore features. This way we eliminate the
need of adding APIs to WebKitGTK just to expand its test coverage through DRT.

The DumpRenderTreeSupportGtk class so far includes a getter and setter for the WebKitTabToLinksPreferenceKey
property as a sample implementation. Also it makes it possible to unskip fast/events/tab-focus-anchor.html and
to fix stderr messages from all 22 spatial-navigation tests in fast/events/spatial-navigation.

  • WebCoreSupport/ChromeClientGtk.cpp:

(WebKit::ChromeClient::tabsToLinks):

  • WebCoreSupport/DumpRenderTreeSupportGtk.cpp: Added.

(DumpRenderTreeSupportGtk::DumpRenderTreeSupportGtk):
(DumpRenderTreeSupportGtk::~DumpRenderTreeSupportGtk):
(DumpRenderTreeSupportGtk::setDumpRenderTreeModeEnabled):
(DumpRenderTreeSupportGtk::dumpRenderTreeModeEnabled): Getter to the WebKitTabToLinksPreferenceKey property.
(DumpRenderTreeSupportGtk::setLinksIncludedInFocusChain): Setter to the WebKitTabToLinksPreferenceKey property.
(DumpRenderTreeSupportGtk::linksIncludedInFocusChain):

  • WebCoreSupport/DumpRenderTreeSupportGtk.h: Added.

WebKitTools:

Implements support to WebKitTabToLinksPreferenceKey through LayoutTestController::overridePreference.
The corresponding DumpRenderTreeSupportGtk method is called in the DRT context only.

  • DumpRenderTree/gtk/DumpRenderTree.cpp:

(resetDefaultsToConsistentValues):
(createWebView):

  • DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:

(LayoutTestController::overridePreference):

LayoutTests:

  • platform/gtk/Skipped: Unskiped fast/events/tab-focus-anchor.html.
9:31 PM Changeset in webkit [70608] by ariya@webkit.org
  • 2 edits in trunk/WebKitTools

Unreviewed, change the order of my emails for bugzilla autocompletion.

  • Scripts/webkitpy/common/config/committers.py:
9:29 PM Changeset in webkit [70607] by eric@webkit.org
  • 3 edits
    1 add in trunk/WebKitTools

2010-10-26 Eric Seidel <eric@webkit.org>

Reviewed by David Kilzer.

build-webkit should collect Visual Studio Express logs and display them
https://bugs.webkit.org/show_bug.cgi?id=39199

  • Scripts/build-webkit:
  • Scripts/print-vse-failure-logs: Added.
  • Scripts/webkitdirs.pm:
9:06 PM Changeset in webkit [70606] by ddkilzer@apple.com
  • 2 edits in trunk/WebKitTools

<http://webkit.org/b/48224> build-webkit: add support for --meter-tag switch

Reviewed by Csaba Osztrogonác.

  • Scripts/build-webkit: Added support for --meter-tag switch.

It should have been added with r60820.

8:50 PM Changeset in webkit [70605] by crogers@google.com
  • 1 edit
    3 adds in trunk/WebCore

2010-10-26 Chris Rogers <crogers@google.com>

Reviewed by Kenneth Russell.

Add DelayNode files
https://bugs.webkit.org/show_bug.cgi?id=47516

No new tests since audio API is not yet implemented.

  • webaudio/DelayNode.cpp: Added. (WebCore::DelayNode::DelayNode): (WebCore::DelayNode::delayTime):
  • webaudio/DelayNode.h: Added. (WebCore::DelayNode::create): (WebCore::DelayNode::delayProcessor):
  • webaudio/DelayNode.idl: Added.
8:35 PM Changeset in webkit [70604] by crogers@google.com
  • 6 edits in trunk/WebCore

2010-10-26 Chris Rogers <crogers@google.com>

Reviewed by Kenneth Russell.

AudioContext and AudioNode followup changes for AudioNodeInput/AudioNodeOutput thread safety
https://bugs.webkit.org/show_bug.cgi?id=47504

No new tests since audio API is not yet implemented.

  • webaudio/AudioContext.cpp: (WebCore::AudioContext::isAudioThread): (WebCore::AudioContext::isGraphOwner): (WebCore::AudioContext::handlePreRenderTasks): (WebCore::AudioContext::handlePostRenderTasks): (WebCore::AudioContext::deleteMarkedNodes): (WebCore::AudioContext::markAudioNodeInputDirty): (WebCore::AudioContext::markAudioNodeOutputDirty): (WebCore::AudioContext::handleDirtyAudioNodeInputs): (WebCore::AudioContext::handleDirtyAudioNodeOutputs):
  • webaudio/AudioContext.h:
  • webaudio/AudioNode.cpp:
  • webaudio/AudioNode.h: (WebCore::AudioNode::isMarkedForDeletion):
  • webaudio/AudioNode.idl:
8:21 PM Changeset in webkit [70603] by crogers@google.com
  • 1 edit
    2 adds in trunk/WebCore

2010-10-26 Chris Rogers <crogers@google.com>

Reviewed by Kenneth Russell.

Add DelayProcessor files
https://bugs.webkit.org/show_bug.cgi?id=47517

No new tests since audio API is not yet implemented.

  • webaudio/DelayProcessor.cpp: Added. (WebCore::DelayProcessor::DelayProcessor): (WebCore::DelayProcessor::~DelayProcessor): (WebCore::DelayProcessor::createKernel):
  • webaudio/DelayProcessor.h: Added. (WebCore::DelayProcessor::delayTime):
7:31 PM Changeset in webkit [70602] by crogers@google.com
  • 1 edit
    2 adds in trunk/WebCore

2010-10-26 Chris Rogers <crogers@google.com>

Reviewed by Kenneth Russell.

Add AudioNodeOutput files
https://bugs.webkit.org/show_bug.cgi?id=45581

No new tests since audio API is not yet implemented.

  • webaudio/AudioNodeOutput.cpp: Added. (WebCore::AudioNodeOutput::AudioNodeOutput): (WebCore::AudioNodeOutput::setNumberOfChannels): (WebCore::AudioNodeOutput::setInternalBus): (WebCore::AudioNodeOutput::updateRenderingState): (WebCore::AudioNodeOutput::updateNumberOfChannels): (WebCore::AudioNodeOutput::propagateChannelCount): (WebCore::AudioNodeOutput::pull): (WebCore::AudioNodeOutput::bus): (WebCore::AudioNodeOutput::renderingFanOutCount): (WebCore::AudioNodeOutput::fanOutCount): (WebCore::AudioNodeOutput::addInput): (WebCore::AudioNodeOutput::removeInput): (WebCore::AudioNodeOutput::disconnectAllInputs): (WebCore::AudioNodeOutput::disable): (WebCore::AudioNodeOutput::enable):
  • webaudio/AudioNodeOutput.h: Added. (WebCore::AudioNodeOutput::node): (WebCore::AudioNodeOutput::context): (WebCore::AudioNodeOutput::numberOfChannels): (WebCore::AudioNodeOutput::isChannelCountKnown):
7:01 PM Changeset in webkit [70601] by tkent@chromium.org
  • 2 edits in branches/chromium/552/WebCore

Merge a part of 70555 -

2010-10-26 Kenichi Ishibashi <bashi@google.com>

Reviewed by Kent Tamura.

Input Method inserts conversion candidates unexpectedly
https://bugs.webkit.org/show_bug.cgi?id=46868

Calls updateStyleIfNeeded() before setting selection for the composition to
avoid inserting the previous composition text into a content editable element
which has an event handler that changes the style of the element.

Test: platform/chromium/fast/text/chromium-mac-duplicate-ime-composition.html

  • editing/Editor.cpp: (WebCore::Editor::setComposition): calls updateStyleIfNeeded() before setting selection.

TBR=tkent@chromium.org
BUG=56759

7:01 PM Changeset in webkit [70600] by commit-queue@webkit.org
  • 3 edits in trunk/WebKitTools

2010-10-26 Ademar de Souza Reis Jr. <Ademar Reis>

Reviewed by Dumitru Daniliuc.

check-webkit-style fails on operator+=, operator-=, ... methods
https://bugs.webkit.org/show_bug.cgi?id=48258

  • Scripts/webkitpy/style/checkers/cpp.py: Added exceptions
  • Scripts/webkitpy/style/checkers/cpp_unittest.py: Added unit-tests
6:59 PM Changeset in webkit [70599] by crogers@google.com
  • 1 edit
    2 adds in trunk/WebCore

2010-10-26 Chris Rogers <crogers@google.com>

Reviewed by Kenneth Russell.

Add AudioNodeInput files
https://bugs.webkit.org/show_bug.cgi?id=45577

No new tests since audio API is not yet implemented.

  • webaudio/AudioNodeInput.cpp: Added. (WebCore::AudioNodeInput::AudioNodeInput): (WebCore::AudioNodeInput::connect): (WebCore::AudioNodeInput::disconnect): (WebCore::AudioNodeInput::disable): (WebCore::AudioNodeInput::enable): (WebCore::AudioNodeInput::changedOutputs): (WebCore::AudioNodeInput::updateRenderingState): (WebCore::AudioNodeInput::numberOfChannels): (WebCore::AudioNodeInput::numberOfRenderingChannels): (WebCore::AudioNodeInput::bus): (WebCore::AudioNodeInput::internalSummingBus): (WebCore::AudioNodeInput::sumAllConnections): (WebCore::AudioNodeInput::pull):
  • webaudio/AudioNodeInput.h: Added. (WebCore::AudioNodeInput::node): (WebCore::AudioNodeInput::context): (WebCore::AudioNodeInput::numberOfRenderingConnections): (WebCore::AudioNodeInput::renderingOutput): (WebCore::AudioNodeInput::isConnected): (WebCore::AudioNodeInput::numberOfConnections):
6:56 PM Changeset in webkit [70598] by morrita@google.com
  • 12 edits in trunk

2010-10-26 MORITA Hajime <morrita@google.com>

Reviewed by Tony Chang.

Rolling in r70512 again.

spellcheck= should be the same as spellcheck="true"
https://bugs.webkit.org/show_bug.cgi?id=25539

  • editing/spelling/spellcheck-attribute-expected.txt:
  • editing/spelling/spellcheck-attribute.html:

2010-10-26 MORITA Hajime <morrita@google.com>

Reviewed by Tony Chang.

Rolling in r70512 again, added missing null-check to
Editor::isSpellCheckingEnabled().
http://trac.webkit.org/changeset/70512

spellcheck= should be the same as spellcheck="true"
https://bugs.webkit.org/show_bug.cgi?id=25539

  • dom/Element.cpp: (WebCore::Element::spellcheckAttributeState): (WebCore::Element::isSpellCheckingEnabled):
  • dom/Element.h:
  • editing/Editor.cpp: (WebCore::markMisspellingsOrBadGrammar): (WebCore::Editor::isSpellCheckingEnabledInFocusedNode): (WebCore::Editor::markAllMisspellingsAndBadGrammarInRanges):
  • editing/Editor.h:
  • platform/ContextMenu.cpp: (WebCore::ContextMenu::populate):

2010-10-26 MORITA Hajime <morrita@google.com>

Reviewed by Tony Chang.

Rolling in r70512 again.

spellcheck= should be the same as spellcheck="true"
https://bugs.webkit.org/show_bug.cgi?id=25539

  • src/ContextMenuClientImpl.cpp: (WebKit::ContextMenuClientImpl::getCustomMenuFromDefaultItems):
  • src/EditorClientImpl.cpp: (WebKit::EditorClientImpl::shouldSpellcheckByDefault):
6:41 PM Changeset in webkit [70597] by bfulgham@webkit.org
  • 9 edits in trunk

WebCore: Unreviewed build fixes.

  • WebCore.vcproj/WebCore.vcproj: Turn off several non-WinCairo

files. We don't support CoreAnimation!

  • WebCore.vcproj/WebCoreCairo.vsprops: Add missing include path

for 'image-decoders/webp'

  • platform/network/curl/CookieJarCurl.cpp:

(WebCore::setCookieStoragePrivateBrowsingEnabled): Add build stub.

WebKit/win: Unreviewed build fix.

  • WebView.cpp: Conditionalize includes for CFNetwork-specific

Cookie implementation.

  • WebView.h: Conditionalize includes for ACCELERATED_COMPOSITION.

WinCairo doesn't use CoreAnimation.

WebKit2: Unreviewed build fix.

  • WebProcess/WebCoreSupport/win/WebErrorsWin.cpp:

(WebKit::cancelledError): Conditionalize use of CFNetwork calls
and includes.

6:30 PM Changeset in webkit [70596] by inferno@chromium.org
  • 2 edits
    2 copies in branches/chromium/517

Merge 70594

BUG=51602
Review URL: http://codereview.chromium.org/4182003

6:28 PM Changeset in webkit [70595] by inferno@chromium.org
  • 2 edits
    2 copies in branches/chromium/552

Merge 70594

BUG=51602

5:49 PM Changeset in webkit [70594] by rniwa@webkit.org
  • 4 edits
    2 adds in trunk

Crash in CompositeEditCommand::splitTreeToNode
https://bugs.webkit.org/show_bug.cgi?id=48349

Reviewed by Kent Tamura.

WebCore:

The bug was caused by indentIntoBlockquote's passing null pointer to splitTreeToNode.
Fixed the crash by adding early exits.

Test: editing/execCommand/indent-node-to-split-to-crash.html

  • editing/CompositeEditCommand.cpp:

(WebCore::CompositeEditCommand::splitTreeToNode):

  • editing/IndentOutdentCommand.cpp:

(WebCore::IndentOutdentCommand::indentIntoBlockquote):

LayoutTests:

Added a test to ensure WebKit does not crash when indenting.

  • editing/execCommand/indent-node-to-split-to-crash-expected.txt: Added.
  • editing/execCommand/indent-node-to-split-to-crash.html: Added.
5:42 PM Changeset in webkit [70593] by rniwa@webkit.org
  • 3 edits
    2 adds in trunk

2010-10-26 Ryosuke Niwa <rniwa@webkit.org>

Reviewed by Kent Tamura.

REGRESSION(r67170): crash in removeImplicitlyStyledElement
https://bugs.webkit.org/show_bug.cgi?id=48389

Fixed the crash by adding a null pointer check.

Test: editing/style/invalid-font-size.html

  • editing/ApplyStyleCommand.cpp: (WebCore::ApplyStyleCommand::removeImplicitlyStyledElement):

2010-10-26 Ryosuke Niwa <rniwa@webkit.org>

Reviewed by Kent Tamura.

REGRESSION(r67170): crash in removeImplicitlyStyledElement
https://bugs.webkit.org/show_bug.cgi?id=48389

Added a test to ensure WebKit does not crash when changing the font size
of text inside a font element with an invalid size attribute.

  • editing/style/invalid-font-size-expected.txt: Added.
  • editing/style/invalid-font-size.html: Added.
5:37 PM Changeset in webkit [70592] by tkent@chromium.org
  • 1 edit in trunk/WebCore/ChangeLog

Unreviewed.

Update the ChangeLog entry for r70549 so that the description contains
"form controls."

5:31 PM HackingGtk edited by Martin Robinson
Delete obsolete information and link to up to date sources (diff)
5:15 PM Changeset in webkit [70591] by mitz@apple.com
  • 2 edits in trunk/WebKit

Build fix.

  • WebKit.xcodeproj/project.pbxproj: Allow deprecated methods to be used in NetscapePluginHostProxy.mm.
5:08 PM Changeset in webkit [70590] by ojan@chromium.org
  • 7 edits in trunk/WebKitTools

2010-10-26 Ojan Vafai <ojan@chromium.org>

Reviewed by Tony Chang.

remove DEFER support from new-run-webkit-tests
https://bugs.webkit.org/show_bug.cgi?id=48387

DEFER was needed when we were trying to ship Chrome beta.
Now it's just extra complication.

  • Scripts/webkitpy/layout_tests/layout_package/json_layout_results_generator.py:
  • Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
  • Scripts/webkitpy/layout_tests/layout_package/test_expectations_unittest.py:
  • Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
  • Scripts/webkitpy/layout_tests/run_webkit_tests.py:
  • Scripts/webkitpy/style/checkers/test_expectations_unittest.py:
4:45 PM Changeset in webkit [70589] by crogers@google.com
  • 28 edits
    1 copy in branches/audio/WebCore

audio branch: changes in preparation for landing in trunk

  • added thread safety to ConvolverNode
  • throw exception for invalid arguments in connect() / disconnect()
  • Cleanup JavaScriptAudioNode, AudioResampler, RealtimeAnalyser and RealtimeAnalyserNode, AudioBufferSourceNode
  • add AudioBusMac for loadPlatformResource() method and switch HRTFElevation to use this method
  • add comments about Chrome resource abstraction layers
  • add custom markChildren() method to JavaScriptAudioNode (fixes bug where "onaudioprocess" was anonymous function)
  • minor cleanup in JS and V8 custom bindings
4:39 PM Changeset in webkit [70588] by oliver@apple.com
  • 2 edits in trunk/JavaScriptCore

Interpreter build fix.

4:19 PM Changeset in webkit [70587] by ap@apple.com
  • 2 edits in trunk/WebKit2

Build fix.

  • WebProcess/InjectedBundle/API/c/WKBundlePage.h: Modified original file, not its framework copy this time.
4:15 PM Changeset in webkit [70586] by eric@webkit.org
  • 2 edits in trunk/WebKitTools

2010-10-26 Eric Seidel <eric@webkit.org>

Unreviewed. Adding import with_statement to fix python 2.5.

Teach webkit-patch how to read credentials from the environment
https://bugs.webkit.org/show_bug.cgi?id=48275

  • Scripts/webkitpy/common/net/credentials_unittest.py:
    • import with_statement to fix python 2.5.
4:05 PM Changeset in webkit [70585] by andersca@apple.com
  • 10 edits in trunk/WebKit2

Pass a downloadID to the web process whenever a download is requested
https://bugs.webkit.org/show_bug.cgi?id=48380

Reviewed by Sam Weinig.

  • UIProcess/WebContext.cpp:

(WebKit::WebContext::generateDownloadID):
Generate a unique download ID.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::receivedPolicyDecision):
Pass along a download ID if needed.

  • WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:

(WebKit::WebFrameLoaderClient::startDownload):
Call the web frame member function.

  • WebProcess/WebPage/WebFrame.cpp:

(WebKit::WebFrame::WebFrame):
Initialize m_policyDownloadID.

(WebKit::WebFrame::invalidatePolicyListener):
Reset m_policyDownloadID.

(WebKit::WebFrame::didReceivePolicyDecision):
Set m_policyDownloadID.

(WebKit::WebFrame::startDownload):
Assert that m_policyDownloadID is not zero.

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::didReceivePolicyDecision):
Pass along the download ID.

  • WebProcess/WebPage/WebPage.messages.in:

Add the download ID.

4:00 PM Changeset in webkit [70584] by ap@apple.com
  • 17 edits in trunk

Reviewed by Sam Weinig.

https://bugs.webkit.org/show_bug.cgi?id=48375
<rdar://problem/8392724> Need delegate calls in PageLoaderClient to indicate if we have
loaded insecure content

Added the delegate. Just like the bundle version, it misses WebOrigin parameter that Mac
delegate call used to have. It doesn't seem necessary for clients.

3:57 PM Changeset in webkit [70583] by crogers@google.com
  • 1130 edits
    625 copies
    117 deletes in branches/audio

audio branch: merge 65473:70545 from trunk: remaining files

3:53 PM Changeset in webkit [70582] by senorblanco@chromium.org
  • 2 edits
    199 adds in trunk/LayoutTests

2010-10-26 Stephen White <senorblanco@chromium.org>

Reviewed by Kenneth Russell.

Added new baselines and expectations for the canvas GPU tests.
https://bugs.webkit.org/show_bug.cgi?id=48383

Added fast/canvas layout test results for platforms chromium-gpu-win
and chromium-gpu-linux. Copied list of expected fast/canvas and
canvas/philip failures from main test_expectations.txt (unfortunate,
but necessary for now). Added the tests actually failing on the GPU
which don't fail in the software path to chromium-gpu's
test_expectations.txt.

Covered by, well, everything you see here. :)

  • platform/chromium-gpu-linux/fast: Added.
  • platform/chromium-gpu-linux/fast/canvas: Added.
  • platform/chromium-gpu-linux/fast/canvas/arc360-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/arc360-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/arc360-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/canvas-before-css-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/canvas-before-css-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/canvas-before-css-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/canvas-bg-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/canvas-bg-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/canvas-bg-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/canvas-composite-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/canvas-composite-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/canvas-composite-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/canvas-resize-reset-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/canvas-resize-reset-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/canvas-resize-reset-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/canvas-text-alignment-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/canvas-text-alignment-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/canvas-text-alignment-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/canvas-text-baseline-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/canvas-text-baseline-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/canvas-text-baseline-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/canvas-transforms-during-path-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/canvas-transforms-during-path-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/canvas-transforms-during-path-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/canvasDrawingIntoSelf-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/canvasDrawingIntoSelf-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/canvasDrawingIntoSelf-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/drawImage-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/drawImage-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/drawImage-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/drawImage-with-globalAlpha-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/drawImage-with-globalAlpha-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/drawImage-with-globalAlpha-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/fill-stroke-clip-reset-path-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/fill-stroke-clip-reset-path-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/fill-stroke-clip-reset-path-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/fillrect-gradient-zero-stops-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/fillrect-gradient-zero-stops-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/fillrect-gradient-zero-stops-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/fillrect_gradient-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/fillrect_gradient-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/fillrect_gradient-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/image-object-in-canvas-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/image-object-in-canvas-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/image-object-in-canvas-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/image-pattern-rotate-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/image-pattern-rotate-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/image-pattern-rotate-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/patternfill-repeat-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/patternfill-repeat-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/patternfill-repeat-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/quadraticCurveTo-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/quadraticCurveTo-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/quadraticCurveTo-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/shadow-offset-1-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/shadow-offset-1-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/shadow-offset-1-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/shadow-offset-2-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/shadow-offset-2-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/shadow-offset-2-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/shadow-offset-3-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/shadow-offset-3-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/shadow-offset-3-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/shadow-offset-4-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/shadow-offset-4-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/shadow-offset-4-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/shadow-offset-5-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/shadow-offset-5-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/shadow-offset-5-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/shadow-offset-6-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/shadow-offset-6-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/shadow-offset-6-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/shadow-offset-7-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/shadow-offset-7-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/shadow-offset-7-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/toDataURL-alpha-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/toDataURL-alpha-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/toDataURL-alpha-expected.txt: Added.
  • platform/chromium-gpu-linux/fast/canvas/zero-size-fill-rect-expected.checksum: Added.
  • platform/chromium-gpu-linux/fast/canvas/zero-size-fill-rect-expected.png: Added.
  • platform/chromium-gpu-linux/fast/canvas/zero-size-fill-rect-expected.txt: Added.
  • platform/chromium-gpu-win/fast: Added.
  • platform/chromium-gpu-win/fast/canvas: Added.
  • platform/chromium-gpu-win/fast/canvas/arc360-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/arc360-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/arc360-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-as-image-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-as-image-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-as-image-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-as-image-incremental-repaint-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-as-image-incremental-repaint-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-as-image-incremental-repaint-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-before-css-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-before-css-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-before-css-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-bg-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-bg-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-bg-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-bg-zoom-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-bg-zoom-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-bg-zoom-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-composite-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-composite-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-composite-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-empty-image-pattern-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-empty-image-pattern-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-empty-image-pattern-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-resize-reset-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-resize-reset-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-resize-reset-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-text-alignment-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-text-alignment-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-text-alignment-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-text-baseline-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-text-baseline-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-text-baseline-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-transform-identity-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-transform-identity-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-transform-identity-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-transform-infinity-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-transform-infinity-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-transform-infinity-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-transform-multiply-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-transform-multiply-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-transform-multiply-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-transform-nan-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-transform-nan-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-transform-nan-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-transform-non-invertible-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-transform-non-invertible-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-transform-non-invertible-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-transform-skewed-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-transform-skewed-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-transform-skewed-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-transforms-during-path-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-transforms-during-path-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/canvas-transforms-during-path-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/canvasDrawingIntoSelf-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/canvasDrawingIntoSelf-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/canvasDrawingIntoSelf-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/drawImage-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/drawImage-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/drawImage-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/drawImage-with-globalAlpha-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/drawImage-with-globalAlpha-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/drawImage-with-globalAlpha-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/fill-stroke-clip-reset-path-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/fill-stroke-clip-reset-path-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/fill-stroke-clip-reset-path-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/fillrect-gradient-zero-stops-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/fillrect-gradient-zero-stops-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/fillrect-gradient-zero-stops-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/fillrect_gradient-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/fillrect_gradient-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/fillrect_gradient-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/gradient-add-second-start-end-stop-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/gradient-add-second-start-end-stop-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/gradient-add-second-start-end-stop-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/image-object-in-canvas-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/image-object-in-canvas-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/image-object-in-canvas-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/image-pattern-rotate-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/image-pattern-rotate-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/image-pattern-rotate-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/patternfill-repeat-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/patternfill-repeat-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/patternfill-repeat-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/quadraticCurveTo-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/quadraticCurveTo-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/quadraticCurveTo-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/shadow-offset-1-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/shadow-offset-1-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/shadow-offset-1-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/shadow-offset-2-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/shadow-offset-2-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/shadow-offset-2-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/shadow-offset-3-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/shadow-offset-3-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/shadow-offset-3-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/shadow-offset-4-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/shadow-offset-4-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/shadow-offset-4-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/shadow-offset-5-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/shadow-offset-5-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/shadow-offset-5-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/shadow-offset-6-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/shadow-offset-6-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/shadow-offset-6-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/shadow-offset-7-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/shadow-offset-7-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/shadow-offset-7-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/toDataURL-alpha-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/toDataURL-alpha-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/toDataURL-alpha-expected.txt: Added.
  • platform/chromium-gpu-win/fast/canvas/zero-size-fill-rect-expected.checksum: Added.
  • platform/chromium-gpu-win/fast/canvas/zero-size-fill-rect-expected.png: Added.
  • platform/chromium-gpu-win/fast/canvas/zero-size-fill-rect-expected.txt: Added.
  • platform/chromium-gpu/test_expectations.txt:
3:35 PM Changeset in webkit [70581] by Dimitri Glazkov
  • 31 edits
    4 deletes in trunk

2010-10-26 Dimitri Glazkov <Dimitri Glazkov>

Unreviewed, rolling out r70573.
http://trac.webkit.org/changeset/70573
https://bugs.webkit.org/show_bug.cgi?id=48204

Broke 39 tests on Chromium

  • svg/dom/SVGRect-expected.txt: Removed.
  • svg/dom/SVGRect.html: Removed.
  • svg/dom/script-tests/SVGRect.js: Removed.

2010-10-26 Dimitri Glazkov <Dimitri Glazkov>

Unreviewed, rolling out r70573.
http://trac.webkit.org/changeset/70573
https://bugs.webkit.org/show_bug.cgi?id=48204

Broke 39 tests on Chromium

  • GNUmakefile.am:
  • WebCore.gypi:
  • WebCore.pro:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.xcodeproj/project.pbxproj:
  • bindings/scripts/CodeGenerator.pm:
  • bindings/scripts/CodeGeneratorJS.pm:
  • bindings/scripts/CodeGeneratorObjC.pm:
  • bindings/scripts/CodeGeneratorV8.pm:
  • svg/DeprecatedSVGAnimatedPropertyTraits.h:
  • svg/DeprecatedSVGAnimatedTemplate.h:
  • svg/SVGAngle.idl:
  • svg/SVGAnimatedAngle.idl:
  • svg/SVGAnimatedLength.idl:
  • svg/SVGAnimatedLengthList.idl:
  • svg/SVGAnimatedRect.h: Removed.
  • svg/SVGFitToViewBox.h:
  • svg/SVGLength.idl:
  • svg/SVGMarkerElement.h:
  • svg/SVGPatternElement.h:
  • svg/SVGRect.idl:
  • svg/SVGSVGElement.cpp: (WebCore::SVGSVGElement::currentView): (WebCore::SVGSVGElement::inheritViewAttributes):
  • svg/SVGSVGElement.h:
  • svg/SVGSVGElement.idl:
  • svg/SVGSymbolElement.h:
  • svg/SVGViewElement.h:
  • svg/SVGViewSpec.cpp: (WebCore::SVGViewSpec::SVGViewSpec):
  • svg/SVGViewSpec.h: (WebCore::SVGViewSpec::contextElement):
  • svg/SVGZoomEvent.idl:
  • svg/properties/SVGAnimatedPropertyMacros.h:
3:26 PM Changeset in webkit [70580] by inferno@chromium.org
  • 2 edits in branches/chromium/552/WebCore

Merge 70550

BUG=60769

3:24 PM Changeset in webkit [70579] by inferno@chromium.org
  • 1 edit in branches/chromium/517/WebCore/inspector/InspectorDOMStorageResource.cpp

Merge 70550

BUG=60769
Review URL: http://codereview.chromium.org/4130003

3:11 PM Changeset in webkit [70578] by ojan@chromium.org
  • 2 edits in trunk/LayoutTests

2010-10-26 Ojan Vafai <ojan@chromium.org>

Reviewed by Tony Chang.

[chromium] remove DEFER from test_expectations
https://bugs.webkit.org/show_bug.cgi?id=48378

DEFER is no longer meaningful. We originally used it
to defer tests we didn't need to pass for our beta launch.
Now it just adds noise. I'll remove the python support for
it in a followup patch.

  • platform/chromium/test_expectations.txt:
2:41 PM Changeset in webkit [70577] by crogers@google.com
  • 249 edits
    41 copies
    9 deletes in branches/audio/JavaScriptCore

audio branch: merge 65473:70545 from trunk: JavaScriptCore

2:34 PM Changeset in webkit [70576] by crogers@google.com
  • 2126 edits
    714 copies
    260 deletes in branches/audio/WebCore

audio branch: merge 65473:70545 from trunk: WebCore

2:30 PM Changeset in webkit [70575] by andersca@apple.com
  • 2 edits in trunk/WebCore

Fix 32-bit build.

  • platform/graphics/mac/FontMac.mm:

(WebCore::showGlyphsWithAdvances):

2:10 PM Changeset in webkit [70574] by commit-queue@webkit.org
  • 40 edits
    2 adds in trunk

2010-10-26 Jenn Braithwaite <jennb@chromium.org>

Reviewed by Dmitry Titov.

Resource tracking failure when trying to move a frame between documents
https://bugs.webkit.org/show_bug.cgi?id=44713

  • fast/frames/iframe-reparenting-fail-load-expected.txt: Added.
  • fast/frames/iframe-reparenting-fail-load.html: Added.
  • platform/mac/Skipped: Re-enabled test that failed due to this bug.

2010-10-26 Jenn Braithwaite <jennb@chromium.org>

Reviewed by Dmitry Titov.

Resource tracking failure when trying to move a frame between documents
https://bugs.webkit.org/show_bug.cgi?id=44713

Test: fast/frames/iframe-reparenting-fail-load.html

  • loader/DocumentLoader.cpp: (WebCore::DocumentLoader::transferLoadingResourcesFromPage): Added method that notifies the client to update resource tracking for loading resources that have been transferred to a different page.
  • loader/DocumentLoader.h:
  • loader/EmptyClients.h: (WebCore::EmptyFrameLoaderClient::transferLoadingResourceFromPage): Empty method.
  • loader/FrameLoader.h:
  • loader/FrameLoader.cpp: Added method that triggers resource tracking updates. This wraps the DocumentLoader method as it appears DocumentLoader is opaque to Frame.
  • loader/FrameLoaderClient.h: Added API to notify the client to update resource tracking for a loading resource that has been transferred to a different page.
  • page/Frame.cpp: (WebCore::Frame::transferChildFrameToNewDocument): Update resource tracking if page has changed.

2010-10-26 Jenn Braithwaite <jennb@chromium.org>

Reviewed by Dmitry Titov.

Resource tracking failure when trying to move a frame between documents
https://bugs.webkit.org/show_bug.cgi?id=44713

  • src/FrameLoaderClientImpl.cpp: (WebKit::FrameLoaderClientImpl::transferLoadingResourceFromPage): Empty method.
  • src/FrameLoaderClientImpl.h:

2010-10-26 Jenn Braithwaite <jennb@chromium.org>

Reviewed by Dmitry Titov.

Resource tracking failure when trying to move a frame between documents
https://bugs.webkit.org/show_bug.cgi?id=44713

  • WebCoreSupport/FrameLoaderClientEfl.cpp: (WebCore::FrameLoaderClientEfl::transferLoadingResourceFromPage): Empty method.
  • WebCoreSupport/FrameLoaderClientEfl.h:

2010-10-26 Jenn Braithwaite <jennb@chromium.org>

Reviewed by Dmitry Titov.

Resource tracking failure when trying to move a frame between documents
https://bugs.webkit.org/show_bug.cgi?id=44713

  • WebCoreSupport/FrameLoaderClientGtk.cpp: (WebKit::FrameLoaderClient::transferLoadingResourceFromPage): Empty method.
  • WebCoreSupport/FrameLoaderClientGtk.h:

2010-10-26 Jenn Braithwaite <jennb@chromium.org>

Reviewed by Dmitry Titov.

Resource tracking failure when trying to move a frame between documents
https://bugs.webkit.org/show_bug.cgi?id=44713

  • WebCoreSupport/FrameLoaderClientHaiku.cpp: (WebCore::FrameLoaderClientHaiku::transferLoadingResourceFromPage): Empty method.
  • WebCoreSupport/FrameLoaderClientHaiku.h:

2010-10-26 Jenn Braithwaite <jennb@chromium.org>

Reviewed by Dmitry Titov.

Resource tracking failure when trying to move a frame between documents
https://bugs.webkit.org/show_bug.cgi?id=44713

  • WebCoreSupport/WebFrameLoaderClient.h:
  • WebCoreSupport/WebFrameLoaderClient.mm: (WebFrameLoaderClient::didTransferChildFrameToNewDocument): Empty method. (WebFrameLoaderClient::transferLoadingResourceFromPage): Update resource tracking for a resource load that has been transferred to a new page.

2010-10-26 Jenn Braithwaite <jennb@chromium.org>

Reviewed by Dmitry Titov.

Resource tracking failure when trying to move a frame between documents
https://bugs.webkit.org/show_bug.cgi?id=44713

  • WebCoreSupport/FrameLoaderClientQt.cpp: (WebCore::FrameLoaderClientQt::transferLoadingResourceFromPage): Emtpy method.
  • WebCoreSupport/FrameLoaderClientQt.h:

2010-10-26 Jenn Braithwaite <jennb@chromium.org>

Reviewed by Dmitry Titov.

Resource tracking failure when trying to move a frame between documents
https://bugs.webkit.org/show_bug.cgi?id=44713

  • WebCoreSupport/WebFrameLoaderClient.cpp: (WebFrameLoaderClient::transferLoadingResourceFromPage): Empty method.
  • WebCoreSupport/WebFrameLoaderClient.h:

2010-10-26 Jenn Braithwaite <jennb@chromium.org>

Reviewed by Dmitry Titov.

Resource tracking failure when trying to move a frame between documents
https://bugs.webkit.org/show_bug.cgi?id=44713

  • WebCoreSupport/FrameLoaderClientWinCE.cpp: (WebKit::FrameLoaderClientWinCE::transferLoadingResourceFromPage): Empty method.
  • WebCoreSupport/FrameLoaderClientWinCE.h:

2010-10-26 Jenn Braithwaite <jennb@chromium.org>

Reviewed by Dmitry Titov.

Resource tracking failure when trying to move a frame between documents
https://bugs.webkit.org/show_bug.cgi?id=44713

  • WebKitSupport/FrameLoaderClientWx.cpp: (WebCore::FrameLoaderClientWx::transferLoadingResourceFromPage): Empty method.
  • WebKitSupport/FrameLoaderClientWx.h:

2010-10-26 Jenn Braithwaite <jennb@chromium.org>

Reviewed by Dmitry Titov.

Resource tracking failure when trying to move a frame between documents
https://bugs.webkit.org/show_bug.cgi?id=44713

  • WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp: (WebKit::WebFrameLoaderClient::transferLoadingResourceFromPage): Empty method.
  • WebProcess/WebCoreSupport/WebFrameLoaderClient.h:
1:56 PM Changeset in webkit [70573] by Nikolas Zimmermann
  • 31 edits
    4 adds in trunk

2010-10-26 Nikolas Zimmermann <nzimmermann@rim.com>

Reviewed by Rob Buis.

Convert SVGRect to the new SVGPropertyTearOff concept
https://bugs.webkit.org/show_bug.cgi?id=48204

Convert the next SVG primitive type to use the SVGPropertyTearOff concept: SVGRect.
Added new test verifying that StrictTypeChecking is enabled for SVGRect. Refactor and share code between JSC/V8/ObjC generators.

Test: svg/dom/SVGRect.html

  • GNUmakefile.am: Add SVGAnimatedRect.h to build.
  • WebCore.gypi: Ditto.
  • WebCore.pro: Ditto.
  • WebCore.vcproj/WebCore.vcproj: Ditto.
  • WebCore.xcodeproj/project.pbxproj: Ditto.
  • bindings/scripts/CodeGenerator.pm: Refactor SVGPropertyTearOff handling, and share code between JSC/V8/ObjC generators.
  • bindings/scripts/CodeGeneratorJS.pm: Ditto.
  • bindings/scripts/CodeGeneratorObjC.pm: Ditto.
  • bindings/scripts/CodeGeneratorV8.pm: Ditto.
  • svg/DeprecatedSVGAnimatedPropertyTraits.h: Remove SVGAnimatedRect handling.
  • svg/DeprecatedSVGAnimatedTemplate.h: Ditto.
  • svg/SVGAngle.idl: Remove [SVGProperty] flag.
  • svg/SVGAnimatedAngle.idl: Remove [SVGAnimatedProperty] flag.
  • svg/SVGAnimatedLength.idl: Ditto.
  • svg/SVGAnimatedLengthList.idl: Ditto.
  • svg/SVGAnimatedRect.h: Added.
  • svg/SVGFitToViewBox.h: SVGRect now uses the new tear off concept, adapt code.
  • svg/SVGLength.idl: Remove [SVGProperty] flag.
  • svg/SVGMarkerElement.h:
  • svg/SVGPatternElement.h:
  • svg/SVGRect.idl: Remove [PODType] flag, add StrictTypeChecking to all attributes.
  • svg/SVGSVGElement.cpp: s/setViewBox/setViewBoxBaseValue/. (WebCore::SVGSVGElement::currentView): (WebCore::SVGSVGElement::inheritViewAttributes):
  • svg/SVGSVGElement.h:
  • svg/SVGSVGElement.idl: Remove [Immutable] flags for SVGRect types, no longer needed.
  • svg/SVGSymbolElement.h:
  • svg/SVGViewElement.h:
  • svg/SVGViewSpec.cpp: Take a SVGElement as context element. (WebCore::SVGViewSpec::SVGViewSpec):
  • svg/SVGViewSpec.h: Ditto. (WebCore::SVGViewSpec::contextElement):
  • svg/SVGZoomEvent.idl: Remove [Immutable] flags for SVGRect types, no longer needed.
  • svg/properties/SVGAnimatedPropertyMacros.h: Support declaring animated properties on non-SVGElement types (here: SVGViewSpec), just like the old macros handled it.

2010-10-26 Nikolas Zimmermann <nzimmermann@rim.com>

Reviewed by Rob Buis.

Convert SVGRect to the new SVGPropertyTearOff concept
https://bugs.webkit.org/show_bug.cgi?id=48204

Added new test verifying that StrictTypeChecking is enabled for SVGRect.

  • svg/dom/SVGRect-expected.txt: Added.
  • svg/dom/SVGRect.html: Added.
  • svg/dom/script-tests/SVGRect.js: Added.
1:56 PM Changeset in webkit [70572] by Adam Roben
  • 3 edits in trunk/WebKitTools

Clear up confusion between "3D rendering" and "accelerated compositing"

WebKit has no software-based 3D rendering implementation, so 3D
rendering can only be enabled when accelerated compositing is. But DRT
was falsely reporting that 3D rendering was available on machines that
don't support accelerated compositing, leading to much confusion.

Reviewed by Darin Adler.

Fixes <http://webkit.org/b/48370> REGRESSION (r70540): Many
transforms/3d tests are failing on the XP bots

  • DumpRenderTree/win/DumpRenderTree.cpp:

(main): When ENABLE(3D_RENDERING) is turned on, only report that 3D
rendering is available when acclerated compositing is also available.

  • Scripts/old-run-webkit-tests: Skip tests that use the

-webkit-transform-3d media query when 3D rendering is disabled,
rather than when accelerated compositing is disabled.

1:52 PM Changeset in webkit [70571] by Dimitri Glazkov
  • 2 edits in trunk/LayoutTests

2010-10-26 Dimitri Glazkov <Dimitri Glazkov>

[Chromium] Indicate that the test only passes on Chromium/DRT.
https://bugs.webkit.org/show_bug.cgi?id=46868

  • platform/chromium/test_expectations.txt: Tweaked.
1:47 PM Changeset in webkit [70570] by eric@webkit.org
  • 12 edits
    3 deletes in trunk/WebKitTools

2010-10-26 Eric Seidel <eric@webkit.org>

Reviewed by Ojan Vafai.

Remove rietveld code now that it's unused
https://bugs.webkit.org/show_bug.cgi?id=48359

Was cool that we added this support, but now that it's
not used it makes little sense to keep it around.
We can always restore this code from SVN if we need it.

  • Scripts/webkitpy/common/config/init.py:
  • Scripts/webkitpy/common/net/bugzilla.py:
  • Scripts/webkitpy/common/net/bugzilla_unittest.py:
  • Scripts/webkitpy/common/net/rietveld.py: Removed.
  • Scripts/webkitpy/common/net/rietveld_unittest.py: Removed.
  • Scripts/webkitpy/thirdparty/init.py:
  • Scripts/webkitpy/tool/commands/download.py:
  • Scripts/webkitpy/tool/commands/download_unittest.py:
  • Scripts/webkitpy/tool/commands/queues.py:
  • Scripts/webkitpy/tool/commands/queues_unittest.py:
  • Scripts/webkitpy/tool/main.py:
  • Scripts/webkitpy/tool/mocktool.py:
  • Scripts/webkitpy/tool/steps/init.py:
  • Scripts/webkitpy/tool/steps/postcodereview.py: Removed.
1:47 PM Changeset in webkit [70569] by hyatt@apple.com
  • 16 edits in trunk

Advances are wrong and glyphs are rotated improperly in vertical writing
https://bugs.webkit.org/show_bug.cgi?id=48315

Patch by takano takumi <takano1@asia.apple.com> on 2010-10-26
Reviewed by Dave Hyatt.

WebCore:

We shouldn't use vertical metrics for Roman fonts. Also, we should rotate vertical variant
glyphs back on drawing as the whole run has already been rotated beforehand.

  • platform/graphics/cocoa/FontPlatformDataCocoa.mm:

(WebCore::FontPlatformData::FontPlatformData): Changed to ignore vertical orientation when the font doesn't support vertical metrics.

  • platform/graphics/mac/FontMac.mm:

(WebCore::showGlyphsWithAdvances): Changed to rotate glyphs -90 degree for vertical variants.
(WebCore::Font::drawGlyphs):

LayoutTests:

Changed tests to check more glyphs and updated results.

  • fast/text/international/vertical-text-glyph-test.html:
  • fast/text/international/vertical-text-metrics-test.html:
  • platform/mac/fast/text/international/vertical-text-glyph-test-expected.checksum:
  • platform/mac/fast/text/international/vertical-text-glyph-test-expected.png:
  • platform/mac/fast/text/international/vertical-text-glyph-test-expected.txt:
  • platform/mac/fast/text/international/vertical-text-metrics-test-expected.txt:
1:46 PM Changeset in webkit [70568] by jberlin@webkit.org
  • 2 edits in trunk/WebKit2

Post any pending messages to the Injected Bundle in WebContext::processDidFinishLaunching
instead of in WebContext::ensureWebProcess.
https://bugs.webkit.org/show_bug.cgi?id=48367

Reviewed by Darin Adler.

Send pending injected bundle messages after the process finished launching instead of of
directly after creating it.

  • UIProcess/WebContext.cpp:

(WebKit::WebContext::ensureWebProcess):
Move the logic to dispatch pending injected bundle messages from here ...
(WebKit::WebContext::processDidFinishLaunching):
... to here.
Also use a reference instead of a pointer when sending the pending messages.

1:40 PM Changeset in webkit [70567] by satish@chromium.org
  • 16 edits in trunk

2010-10-26 Satish Sampath <satish@chromium.org>

Reviewed by Jeremy Orlow.

Add a 'grammar' attribute for speech input.
https://bugs.webkit.org/show_bug.cgi?id=48339

To differentiate between various types of speech input, we add a 'x-webkit-grammar' attribute to a
speech enabled input element. This is passed without validation to the speech recognizer. Typical values
could be "builtin:search", "builtin:dictation" and even an externally hosted SRGS grammar XML file URI.
It is up to the recognizer to interpret the value and use it as an aid in recognition.

  • bindings/generic/RuntimeEnabledFeatures.h: (WebCore::RuntimeEnabledFeatures::webkitGrammarEnabled):
  • html/HTMLAttributeNames.in:
  • html/HTMLInputElement.idl:
  • page/SpeechInput.cpp: (WebCore::SpeechInput::startRecognition):
  • page/SpeechInput.h:
  • page/SpeechInputClient.h:
  • platform/mock/SpeechInputClientMock.cpp: (WebCore::SpeechInputClientMock::startRecognition):
  • platform/mock/SpeechInputClientMock.h:
  • rendering/TextControlInnerElements.cpp: (WebCore::InputFieldSpeechButtonElement::defaultEventHandler):

2010-10-26 Satish Sampath <satish@chromium.org>

Reviewed by Jeremy Orlow.

Add a 'grammar' attribute for speech input.
https://bugs.webkit.org/show_bug.cgi?id=48339

To differentiate between various types of speech input, we add a 'x-webkit-grammar' attribute to a
speech enabled input element. This is passed without validation to the speech recognizer. Typical values
could be "builtin:search", "builtin:dictation" and even an externally hosted SRGS grammar XML file URI.
It is up to the recognizer to interpret the value and use it as an aid in recognition.

  • public/WebSpeechInputController.h: (WebKit::WebSpeechInputController::startRecognition):
  • src/SpeechInputClientImpl.cpp: (WebKit::SpeechInputClientImpl::startRecognition):
  • src/SpeechInputClientImpl.h:
  • src/WebSpeechInputControllerMockImpl.cpp: (WebKit::WebSpeechInputControllerMockImpl::startRecognition):
  • src/WebSpeechInputControllerMockImpl.h:
1:37 PM Changeset in webkit [70566] by pfeldman@chromium.org
  • 2 edits in trunk/WebCore

2010-10-26 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Timothy Hatcher.

Web Inspector: console does not work after two reloads.
https://bugs.webkit.org/show_bug.cgi?id=48318

  • inspector/InspectorController.cpp: (WebCore::InspectorController::disconnectFrontend):
1:29 PM Changeset in webkit [70565] by podivilov@chromium.org
  • 2 edits in trunk/WebCore

2010-10-26 Pavel Podivilov <podivilov@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: console doesn't work in closures when window is overrode
https://bugs.webkit.org/show_bug.cgi?id=48320

  • inspector/front-end/InjectedScript.js: (injectedScriptConstructor.):
1:28 PM Changeset in webkit [70564] by andersca@apple.com
  • 12 edits in trunk

WebKit2: pageDidScroll callback should be on the UI process client rather than (or in addition to) the web process client
https://bugs.webkit.org/show_bug.cgi?id=48366

Reviewed by Sam Weinig.

  • UIProcess/API/qt/qwkpage.cpp:

(QWKPage::QWKPage):
Add zero initializer.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::pageDidScroll):
Call the pageDidScroll client function.

  • UIProcess/WebPageProxy.messages.in:

Add PageDidScroll message.

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::pageDidScroll):
Send the PageDidScroll message.

WebKitTools: pageDidScroll callback should be on the UI process client rather than (or in addition to) the web process client
https://bugs.webkit.org/show_bug.cgi?id=48366
<rdar://problem/8595202>

Reviewed by Sam Weinig.

  • MiniBrowser/mac/BrowserWindowController.m:

(-[BrowserWindowController awakeFromNib]):

  • WebKitTestRunner/TestController.cpp:

(WTR::createOtherPage):
(WTR::TestController::initialize):

1:26 PM Changeset in webkit [70563] by Dimitri Glazkov
  • 11 edits
    1 delete in trunk/LayoutTests

[Chromium] Add/change baselines after r70546 and added Chromium-mac
specific test to expectations.
https://bugs.webkit.org/show_bug.cgi?id=48157
https://bugs.webkit.org/show_bug.cgi?id=46868

  • platform/chromium-linux/fast/blockflow/english-rl-text-expected.checksum: Added.
  • platform/chromium-linux/fast/multicol/nested-columns-expected.checksum: Updated.
  • platform/chromium-linux/fast/multicol/nested-columns-expected.png: Updated.
  • platform/chromium-linux/fast/multicol/nested-columns-expected.txt: Removed.
  • platform/chromium-win/fast/blockflow/english-rl-text-expected.checksum: Added.
  • platform/chromium-win/fast/blockflow/english-rl-text-expected.png: Added.
  • platform/chromium-win/fast/blockflow/english-rl-text-expected.txt: Added.
  • platform/chromium-win/fast/multicol/nested-columns-expected.checksum: Updated.
  • platform/chromium-win/fast/multicol/nested-columns-expected.png: Updated.
  • platform/chromium-win/fast/multicol/nested-columns-expected.txt: Updated.
  • platform/chromium/test_expectations.txt: Tweaked.
1:19 PM Changeset in webkit [70562] by eric@webkit.org
  • 4 edits in trunk/WebKitTools

2010-10-26 Eric Seidel <eric@webkit.org>

Reviewed by Tony Chang.

Teach webkit-patch how to read credentials from the environment
https://bugs.webkit.org/show_bug.cgi?id=48275

This makes it possible for svn users to have their bugzilla credentials
stored in their environment instead of typing them every time.

We need this for making it easy to run the win-ews bot (which currently
uses svn instead of git).

  • Scripts/webkitpy/common/net/credentials.py:
  • Scripts/webkitpy/common/net/credentials_unittest.py:
1:16 PM Changeset in webkit [70561] by bweinstein@apple.com
  • 5 edits in trunk/WebKit2

Need a way to retrieve custom user agent from a WKPage
https://bugs.webkit.org/show_bug.cgi?id=48360
<rdar://problem/8466537>

Reviewed by Darin Adler.

Add an exported function on WKPage to get the page's custom user agent.

  • UIProcess/API/C/WKPage.cpp:

(WKPageCopyCustomUserAgent): Exported function that returns the custom user

agent.

  • UIProcess/API/C/WKPage.h:
  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::close): Clear the custom user agent string.
(WebKit::WebPageProxy::processDidCrash): Ditto.
(WebKit::WebPageProxy::setCustomUserAgent): Add a new early return if we're setting

the custom user agent to what it was before, and set the custom user agent member
variable.

  • UIProcess/WebPageProxy.h:

(WebKit::WebPageProxy::customUserAgent): Returns the custom user agent.

1:08 PM Changeset in webkit [70560] by Dimitri Glazkov
  • 2 edits in trunk/LayoutTests

2010-10-26 Dimitri Glazkov <Dimitri Glazkov>

[Chromium] Add yet another flake.
https://bugs.webkit.org/show_bug.cgi?id=48352

  • platform/chromium/test_expectations.txt: Added flakey test.
1:01 PM Changeset in webkit [70559] by hans@chromium.org
  • 8 edits in trunk/WebKit/chromium

2010-10-26 Hans Wennborg <hans@chromium.org>

Reviewed by Jeremy Orlow.

IndexedDB: update stale comments referring to WebIndexedDatabase.
https://bugs.webkit.org/show_bug.cgi?id=48325

WebIndexedDatabase was renamed to WebIDBFactory in
http://trac.webkit.org/changeset/64344, but some comments referring to
it were left unchanged.

  • public/WebIDBCursor.h:
  • public/WebIDBDatabase.h:
  • public/WebIDBDatabaseError.h:
  • public/WebIDBIndex.h:
  • public/WebIDBObjectStore.h:
  • public/WebIDBTransaction.h:
  • src/WebIDBDatabaseImpl.h:
12:49 PM Changeset in webkit [70558] by commit-queue@webkit.org
  • 2 edits in trunk/WebKit/qt

2010-10-26 Yi Shen <yi.4.shen@nokia.com>

Reviewed by Andreas Kling.

[Qt] Skipping popup focus test for symbian
https://bugs.webkit.org/show_bug.cgi?id=48324

  • tests/qwebframe/tst_qwebframe.cpp:
12:47 PM Changeset in webkit [70557] by jocelyn.turcotte@nokia.com
  • 2 edits in trunk/WebCore

2010-10-26 Jocelyn Turcotte <jocelyn.turcotte@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Fix an assert with QtPixmapInstance creation.
https://bugs.webkit.org/show_bug.cgi?id=48323

This places the newly refcounted QtPixmapInstance in a RefPtr
to prevent an assert on the first ref() call.

  • bridge/qt/qt_pixmapruntime.cpp: (JSC::Bindings::QtPixmapInstance::createPixmapRuntimeObject):
12:35 PM Changeset in webkit [70556] by jocelyn.turcotte@nokia.com
  • 4 edits in trunk/WebKit/qt

2010-10-26 Jocelyn Turcotte <jocelyn.turcotte@nokia.com>

Reviewed by Andreas Kling.

[Qt] Unit tests: setHtml("data:text/html,...") -> load(QUrl("data:text/html,..."))
https://bugs.webkit.org/show_bug.cgi?id=48319

These tests were failing since the new HTML parser.
This patch removes the content type from the error page as well.

  • tests/qgraphicswebview/tst_qgraphicswebview.cpp: (tst_QGraphicsWebView::crashOnViewlessWebPages):
  • tests/qwebelement/tst_qwebelement.cpp: (tst_QWebElement::frame):
  • tests/qwebpage/tst_qwebpage.cpp: (tst_QWebPage::loadFinished): (ErrorPage::extension): (tst_QWebPage::errorPageExtension): (tst_QWebPage::errorPageExtensionInIFrames): (tst_QWebPage::errorPageExtensionInFrameset):
12:25 PM Changeset in webkit [70555] by commit-queue@webkit.org
  • 6 edits
    2 adds in trunk

2010-10-26 Kenichi Ishibashi <bashi@google.com>

Reviewed by Kent Tamura.

Input Method inserts conversion candidates unexpectedly
https://bugs.webkit.org/show_bug.cgi?id=46868

Adds a test.

  • platform/chromium/fast/text/chromium-mac-duplicate-ime-composition.html: Added.

2010-10-26 Kenichi Ishibashi <bashi@google.com>

Reviewed by Kent Tamura.

Input Method inserts conversion candidates unexpectedly
https://bugs.webkit.org/show_bug.cgi?id=46868

Calls updateStyleIfNeeded() before setting selection for the composition to
avoid inserting the previous composition text into a content editable element
which has an event handler that changes the style of the element.

Test: platform/chromium/fast/text/chromium-mac-duplicate-ime-composition.html

  • editing/Editor.cpp: (WebCore::Editor::setComposition): calls updateStyleIfNeeded() before setting selection.

2010-10-26 Kenichi Ishibashi <bashi@google.com>

Reviewed by Kent Tamura.

Input Method inserts conversion candidates unexpectedly
https://bugs.webkit.org/show_bug.cgi?id=46868

Adds setComposition() to TextInputController to make DRT emulate
an input method behavior.

  • DumpRenderTree/chromium/TextInputController.cpp: (TextInputController::TextInputController): (TextInputController::setComposition): Added.
  • DumpRenderTree/chromium/TextInputController.h:
12:19 PM Changeset in webkit [70554] by commit-queue@webkit.org
  • 14 edits in trunk

2010-10-26 Mario Sanchez Prada <msanchez@igalia.com>

Reviewed by Chris Fleizach.

[Gtk] Layout tables should indicate that they are not data tables via an object attribute
https://bugs.webkit.org/show_bug.cgi?id=35422

Set the 'layout-guess' attribute to 'true' for data tables.

Reorganized some code in AccessibilityTable so now the function
isDataTable() is more coherent by just answering that very
specific question, regardless of whether the table is being
exposed or not to Assistive Technologies.

Hence, now it's possible to make two questions separately instead
of just one, meaning that the new function isAccessibleTable() is
now what we formerly defined as the isDataTable() function.

  • accessibility/AccessibilityObject.h: (WebCore::AccessibilityObject::isAccessibilityTable):

New function to allow asking tables both whether they are
exposed and whether they are data tables, which are different
questions whose answers might be the same in many situations,
but different sometimes (as it can happen in the GTK port).

  • accessibility/AccessibilityTable.h:
  • accessibility/AccessibilityTable.cpp: (WebCore::AccessibilityTable::hasARIARole):

New, checks whether the table has a valid ARIA role.

(WebCore::AccessibilityTable::isAccessibilityTable):

New, returns the value of m_isAccessibilityTable. It's
basically the former isDataTable() function renamed.

(WebCore::AccessibilityTable::isDataTable):

Changed behaviour. Instead of just returning the value of
m_isAccessibilityTable as it did so far (which was confusing
because of that's not what the name suggests), focus on
checking whether it's a data table or not and return a bool
value accordingly. It's basically a rename of the former
isTableExposableThroughAccessibility() function, but withouth
the GTK-specific if-endif region (which didn't make sense
here now, because that was answering the question "is the table
exposed in the GTK port?", instead of "is it a data table?").

(WebCore::AccessibilityTable::isTableExposableThroughAccessibility):

Uses the hasAriaRole(), and isDataTable() to determine whether
a table should be exposed or not. Also includes the GTK-specific
if-region coming from the former implementation of the function
isTableExposableThroughAccessibility() not to check whether it's
a data table in case the rest of the checks succeeded (all
tables are exposed in the GTK port).

(WebCore::AccessibilityTable::addChildren):

Replace usage of isDataTable() with isAccessibilityTable(), to
keep exactly the same behaviour happening before this patch.

(WebCore::AccessibilityTable::roleValue): Ditto.
(WebCore::AccessibilityTable::accessibilityIsIgnored): Ditto.
(WebCore::AccessibilityTable::title): Ditto.

Updated usage of the former function isDataTable() everywhere
else, replacing it with the new isAccessibilityTable(), so keeping
exactly the same behaviour happening before this patch.

  • accessibility/AccessibilityARIAGrid.cpp: (WebCore::AccessibilityARIAGrid::addChildren):

Use isAccessibilityTable() instead of isDataTable().

  • accessibility/AccessibilityARIAGridCell.cpp: (WebCore::AccessibilityARIAGridCell::parentTable): Ditto.
  • accessibility/AccessibilityARIAGridRow.cpp: (WebCore::AccessibilityARIAGridRow::disclosedRows): Ditto. (WebCore::AccessibilityARIAGridRow::disclosedByRow): Ditto. (WebCore::AccessibilityARIAGridRow::parentTable): Ditto.
  • accessibility/AccessibilityTableCell.cpp: (WebCore::AccessibilityTableCell::isTableCell):

Use isAccessibilityTable() instead of isDataTable().

  • accessibility/AccessibilityTableHeaderContainer.cpp: (WebCore::AccessibilityTableHeaderContainer::addChildren): Ditto.
  • accessibility/AccessibilityTableRow.cpp: (WebCore::AccessibilityTableRow::isTableRow): Ditto
  • accessibility/mac/AccessibilityObjectWrapper.mm: (-[AccessibilityObjectWrapper additionalAccessibilityAttributeNames]):

Use isAccessibilityTable() instead of isDataTable().

(-[AccessibilityObjectWrapper accessibilityAttributeNames]): Ditto.
(-[AccessibilityObjectWrapper accessibilityAttributeValue:]): Ditto.
(-[AccessibilityObjectWrapper accessibilityParameterizedAttributeNames]): Ditto.
(-[AccessibilityObjectWrapper accessibilitySetValue:forAttribute:]): Ditto.
(-[AccessibilityObjectWrapper accessibilityAttributeValue:forParameter:]): Ditto.

Use the new function isAccessibilityTable() together with the
modified implementation of isDataTable() to set the 'layout-guess'
attribute when needed.

  • accessibility/gtk/AccessibilityObjectWrapperAtk.cpp: (webkit_accessible_get_attributes):

Set the 'layout-guess' attribute to 'true' to help Assistive
Technologies guessing which tables are not data tables.

2010-10-26 Mario Sanchez Prada <msanchez@igalia.com>

Reviewed by Chris Fleizach.

[Gtk] Layout tables should indicate that they are not data tables via an object attribute
https://bugs.webkit.org/show_bug.cgi?id=35422

New unit test to check the 'layout-guess' attribute in tables.

  • tests/testatk.c: (atkAttributeSetAttributeNameHasValue): New, looks for a attribute with a specific value, by the name of attribute. (atkAttributeSetContainsAttributeName): New, just checks whether an attribute with a specified name is present in the set. (atkAttributeSetAttributeHasValue): Modified to relay on the new function atkAttributeSetAttributeNameHasValue(). (testWebkitAtkLayoutAndDataTables): New test. (main): Added the new test.
12:11 PM Changeset in webkit [70553] by cmarrin@apple.com
  • 4 edits
    2 adds in trunk

2010-10-26 Chris Marrin <cmarrin@apple.com>

Reviewed by Simon Fraser.

Resuming animations causes webkitAnimationStart events to be fired
https://bugs.webkit.org/show_bug.cgi?id=46540

Added a flag that makes sure start animation event is only ever
fired once.

Test: animations/suspend-resume-animation-events.html

  • page/animation/KeyframeAnimation.cpp: (WebCore::KeyframeAnimation::KeyframeAnimation): (WebCore::KeyframeAnimation::sendAnimationEvent):
  • page/animation/KeyframeAnimation.h:
12:01 PM Changeset in webkit [70552] by senorblanco@chromium.org
  • 5 edits in trunk/WebKit/chromium

2010-10-22 Stephen White <senorblanco@chromium.org>

Reviewed by Kenneth Russell.

Implement copy-texture-to-parent-texture API for WebGraphicsContext3DDefaultImpl.
https://bugs.webkit.org/show_bug.cgi?id=48152


This allows the in-process implementation to do accelerated canvas and
accelerated compositing together. It requires some changes landed
in chromium 63528, so this patch also rolls chromium DEPS to 63722
(current LKGR).

Covered by fast/canvas/arc360.html, and many more when run with
--accelerated-compositing and --accelerated-2d-canvas.

  • src/WebGraphicsContext3DDefaultImpl.cpp: (WebKit::WebGraphicsContext3DDefaultImpl::WebGraphicsContext3DDefaultImpl): Add member vars to save the currently-bound texture and for the texture-to-texture FBO. (WebKit::WebGraphicsContext3DDefaultImpl::~WebGraphicsContext3DDefaultImpl): Delete the texture-to-texture FBO on destruction.

(WebKit::WebGraphicsContext3DDefaultImpl::initialize):
Generate the texture-to-texture FBO.
(WebKit::WebGraphicsContext3DDefaultImpl::supportsCopyTextureToParentTextureCHROMIUM):
Check for support of the glGetTexLevelParameteriv function (required
for this implementation).
(WebKit::WebGraphicsContext3DDefaultImpl::copyTextureToParentTextureCHROMIUM):
Implement the extension: bind the FBO, bind the child texture, then
do a glCopyTexImage2D() into the parent texture.
(WebKit::WebGraphicsContext3DDefaultImpl::bindTexture):
Record the newly-bound texture in m_boundTexture.

  • src/WebGraphicsContext3DDefaultImpl.h: Add the two new member variables.
  • src/WebViewImpl.cpp: (WebKit::WebViewImpl::graphicsContext3D): Make sure the graphics context is reshaped to the correct size on all platforms.
11:57 AM Changeset in webkit [70551] by Martin Robinson
  • 6 edits
    485 adds in trunk/LayoutTests

2010-10-26 Martin Robinson <mrobinson@igalia.com>

Add baselines for some GTK+ tests, unskip passing tests and organize
failing tests in preparation for landing GTK+ form control fixes.

  • platform/gtk/Skipped: Organization.
  • platform/gtk/fast/forms/001-expected.checksum: Added.
  • platform/gtk/fast/forms/001-expected.png: Added.
  • platform/gtk/fast/forms/001-expected.txt: Added.
  • platform/gtk/fast/forms/002-expected.checksum: Added.
  • platform/gtk/fast/forms/002-expected.png: Added.
  • platform/gtk/fast/forms/002-expected.txt: Added.
  • platform/gtk/fast/forms/003-expected.checksum: Added.
  • platform/gtk/fast/forms/003-expected.png: Added.
  • platform/gtk/fast/forms/003-expected.txt: Added.
  • platform/gtk/fast/forms/004-expected.checksum: Added.
  • platform/gtk/fast/forms/004-expected.png: Added.
  • platform/gtk/fast/forms/004-expected.txt: Added.
  • platform/gtk/fast/forms/005-expected.checksum: Added.
  • platform/gtk/fast/forms/005-expected.png: Added.
  • platform/gtk/fast/forms/005-expected.txt: Added.
  • platform/gtk/fast/forms/006-expected.checksum: Added.
  • platform/gtk/fast/forms/006-expected.png: Added.
  • platform/gtk/fast/forms/006-expected.txt: Added.
  • platform/gtk/fast/forms/007-expected.checksum: Added.
  • platform/gtk/fast/forms/007-expected.png: Added.
  • platform/gtk/fast/forms/007-expected.txt: Added.
  • platform/gtk/fast/forms/HTMLOptionElement_label01-expected.checksum: Added.
  • platform/gtk/fast/forms/HTMLOptionElement_label01-expected.png: Added.
  • platform/gtk/fast/forms/HTMLOptionElement_label01-expected.txt: Added.
  • platform/gtk/fast/forms/HTMLOptionElement_label02-expected.checksum: Added.
  • platform/gtk/fast/forms/HTMLOptionElement_label02-expected.png: Added.
  • platform/gtk/fast/forms/HTMLOptionElement_label02-expected.txt: Added.
  • platform/gtk/fast/forms/HTMLOptionElement_label03-expected.checksum: Added.
  • platform/gtk/fast/forms/HTMLOptionElement_label03-expected.png: Added.
  • platform/gtk/fast/forms/HTMLOptionElement_label03-expected.txt: Added.
  • platform/gtk/fast/forms/HTMLOptionElement_label04-expected.checksum: Added.
  • platform/gtk/fast/forms/HTMLOptionElement_label04-expected.png: Added.
  • platform/gtk/fast/forms/HTMLOptionElement_label04-expected.txt: Added.
  • platform/gtk/fast/forms/HTMLOptionElement_label05-expected.checksum: Added.
  • platform/gtk/fast/forms/HTMLOptionElement_label05-expected.png: Added.
  • platform/gtk/fast/forms/HTMLOptionElement_label05-expected.txt: Added.
  • platform/gtk/fast/forms/HTMLOptionElement_label06-expected.checksum: Added.
  • platform/gtk/fast/forms/HTMLOptionElement_label06-expected.png: Added.
  • platform/gtk/fast/forms/HTMLOptionElement_label06-expected.txt: Added.
  • platform/gtk/fast/forms/HTMLOptionElement_label07-expected.checksum: Added.
  • platform/gtk/fast/forms/HTMLOptionElement_label07-expected.png: Added.
  • platform/gtk/fast/forms/HTMLOptionElement_label07-expected.txt: Added.
  • platform/gtk/fast/forms/basic-buttons-expected.checksum: Added.
  • platform/gtk/fast/forms/basic-buttons-expected.png: Added.
  • platform/gtk/fast/forms/basic-buttons-expected.txt: Added.
  • platform/gtk/fast/forms/basic-inputs-expected.checksum: Added.
  • platform/gtk/fast/forms/basic-inputs-expected.png: Added.
  • platform/gtk/fast/forms/basic-inputs-expected.txt: Added.
  • platform/gtk/fast/forms/basic-selects-expected.checksum: Added.
  • platform/gtk/fast/forms/basic-selects-expected.png: Added.
  • platform/gtk/fast/forms/basic-selects-expected.txt: Added.
  • platform/gtk/fast/forms/basic-textareas-expected.checksum: Added.
  • platform/gtk/fast/forms/basic-textareas-expected.png: Added.
  • platform/gtk/fast/forms/basic-textareas-expected.txt: Added.
  • platform/gtk/fast/forms/basic-textareas-quirks-expected.checksum: Added.
  • platform/gtk/fast/forms/basic-textareas-quirks-expected.png: Added.
  • platform/gtk/fast/forms/basic-textareas-quirks-expected.txt: Added.
  • platform/gtk/fast/forms/blankbuttons-expected.checksum: Added.
  • platform/gtk/fast/forms/blankbuttons-expected.png: Added.
  • platform/gtk/fast/forms/blankbuttons-expected.txt: Added.
  • platform/gtk/fast/forms/button-align-expected.checksum: Added.
  • platform/gtk/fast/forms/button-align-expected.png: Added.
  • platform/gtk/fast/forms/button-align-expected.txt: Added.
  • platform/gtk/fast/forms/button-cannot-be-nested-expected.checksum: Added.
  • platform/gtk/fast/forms/button-cannot-be-nested-expected.png: Added.
  • platform/gtk/fast/forms/button-cannot-be-nested-expected.txt: Added.
  • platform/gtk/fast/forms/button-default-title-expected.checksum: Added.
  • platform/gtk/fast/forms/button-default-title-expected.png: Added.
  • platform/gtk/fast/forms/button-default-title-expected.txt: Added.
  • platform/gtk/fast/forms/button-generated-content-expected.checksum: Added.
  • platform/gtk/fast/forms/button-generated-content-expected.png: Added.
  • platform/gtk/fast/forms/button-generated-content-expected.txt: Added.
  • platform/gtk/fast/forms/button-inner-block-reuse-expected.checksum: Added.
  • platform/gtk/fast/forms/button-inner-block-reuse-expected.png: Added.
  • platform/gtk/fast/forms/button-inner-block-reuse-expected.txt: Added.
  • platform/gtk/fast/forms/button-positioned-expected.checksum: Added.
  • platform/gtk/fast/forms/button-positioned-expected.png: Added.
  • platform/gtk/fast/forms/button-positioned-expected.txt: Added.
  • platform/gtk/fast/forms/button-sizes-expected.checksum: Added.
  • platform/gtk/fast/forms/button-sizes-expected.png: Added.
  • platform/gtk/fast/forms/button-sizes-expected.txt: Added.
  • platform/gtk/fast/forms/button-submit-expected.checksum: Added.
  • platform/gtk/fast/forms/button-submit-expected.png: Added.
  • platform/gtk/fast/forms/button-submit-expected.txt: Added.
  • platform/gtk/fast/forms/button-table-styles-expected.checksum: Added.
  • platform/gtk/fast/forms/button-table-styles-expected.png: Added.
  • platform/gtk/fast/forms/button-table-styles-expected.txt: Added.
  • platform/gtk/fast/forms/button-text-transform-expected.checksum: Added.
  • platform/gtk/fast/forms/button-text-transform-expected.png: Added.
  • platform/gtk/fast/forms/button-text-transform-expected.txt: Added.
  • platform/gtk/fast/forms/button-white-space-expected.checksum: Added.
  • platform/gtk/fast/forms/button-white-space-expected.png: Added.
  • platform/gtk/fast/forms/button-white-space-expected.txt: Added.
  • platform/gtk/fast/forms/caret-rtl-expected.checksum: Added.
  • platform/gtk/fast/forms/caret-rtl-expected.png: Added.
  • platform/gtk/fast/forms/caret-rtl-expected.txt: Added.
  • platform/gtk/fast/forms/checkbox-radio-onchange-expected.checksum: Added.
  • platform/gtk/fast/forms/checkbox-radio-onchange-expected.png: Added.
  • platform/gtk/fast/forms/checkbox-radio-onchange-expected.txt: Added.
  • platform/gtk/fast/forms/control-clip-expected.checksum: Added.
  • platform/gtk/fast/forms/control-clip-expected.png: Added.
  • platform/gtk/fast/forms/control-clip-expected.txt: Added.
  • platform/gtk/fast/forms/control-clip-overflow-expected.checksum: Added.
  • platform/gtk/fast/forms/control-clip-overflow-expected.png: Added.
  • platform/gtk/fast/forms/control-clip-overflow-expected.txt: Added.
  • platform/gtk/fast/forms/control-restrict-line-height-expected.checksum: Added.
  • platform/gtk/fast/forms/control-restrict-line-height-expected.png: Added.
  • platform/gtk/fast/forms/control-restrict-line-height-expected.txt: Added.
  • platform/gtk/fast/forms/disabled-select-change-index-expected.checksum: Added.
  • platform/gtk/fast/forms/disabled-select-change-index-expected.png: Added.
  • platform/gtk/fast/forms/disabled-select-change-index-expected.txt: Added.
  • platform/gtk/fast/forms/encoding-test-expected.checksum: Added.
  • platform/gtk/fast/forms/encoding-test-expected.png: Added.
  • platform/gtk/fast/forms/encoding-test-expected.txt: Added.
  • platform/gtk/fast/forms/fieldset-align-expected.checksum: Added.
  • platform/gtk/fast/forms/fieldset-align-expected.png: Added.
  • platform/gtk/fast/forms/fieldset-align-expected.txt: Added.
  • platform/gtk/fast/forms/fieldset-with-float-expected.checksum: Added.
  • platform/gtk/fast/forms/fieldset-with-float-expected.png: Added.
  • platform/gtk/fast/forms/fieldset-with-float-expected.txt: Added.
  • platform/gtk/fast/forms/file-input-direction-expected.checksum: Added.
  • platform/gtk/fast/forms/file-input-direction-expected.png: Added.
  • platform/gtk/fast/forms/file-input-direction-expected.txt: Added.
  • platform/gtk/fast/forms/file-input-disabled-expected.checksum: Added.
  • platform/gtk/fast/forms/file-input-disabled-expected.png: Added.
  • platform/gtk/fast/forms/file-input-disabled-expected.txt: Added.
  • platform/gtk/fast/forms/float-before-fieldset-expected.checksum: Added.
  • platform/gtk/fast/forms/float-before-fieldset-expected.png: Added.
  • platform/gtk/fast/forms/float-before-fieldset-expected.txt: Added.
  • platform/gtk/fast/forms/floating-textfield-relayout-expected.checksum: Added.
  • platform/gtk/fast/forms/floating-textfield-relayout-expected.png: Added.
  • platform/gtk/fast/forms/floating-textfield-relayout-expected.txt: Added.
  • platform/gtk/fast/forms/form-added-to-table-expected.checksum: Added.
  • platform/gtk/fast/forms/form-added-to-table-expected.png: Added.
  • platform/gtk/fast/forms/form-added-to-table-expected.txt: Added.
  • platform/gtk/fast/forms/form-element-geometry-expected.checksum: Added.
  • platform/gtk/fast/forms/form-element-geometry-expected.png: Added.
  • platform/gtk/fast/forms/form-element-geometry-expected.txt: Added.
  • platform/gtk/fast/forms/form-hides-table-expected.checksum: Added.
  • platform/gtk/fast/forms/form-hides-table-expected.png: Added.
  • platform/gtk/fast/forms/form-hides-table-expected.txt: Added.
  • platform/gtk/fast/forms/form-in-malformed-markup-expected.checksum: Added.
  • platform/gtk/fast/forms/form-in-malformed-markup-expected.png: Added.
  • platform/gtk/fast/forms/form-in-malformed-markup-expected.txt: Added.
  • platform/gtk/fast/forms/formmove-expected.checksum: Added.
  • platform/gtk/fast/forms/formmove-expected.png: Added.
  • platform/gtk/fast/forms/formmove-expected.txt: Added.
  • platform/gtk/fast/forms/formmove2-expected.checksum: Added.
  • platform/gtk/fast/forms/formmove2-expected.png: Added.
  • platform/gtk/fast/forms/formmove2-expected.txt: Added.
  • platform/gtk/fast/forms/formmove3-expected.checksum: Added.
  • platform/gtk/fast/forms/formmove3-expected.png: Added.
  • platform/gtk/fast/forms/formmove3-expected.txt: Added.
  • platform/gtk/fast/forms/hidden-input-file-expected.checksum: Added.
  • platform/gtk/fast/forms/hidden-input-file-expected.png: Added.
  • platform/gtk/fast/forms/hidden-input-file-expected.txt: Added.
  • platform/gtk/fast/forms/hidden-listbox-expected.checksum: Added.
  • platform/gtk/fast/forms/hidden-listbox-expected.png: Added.
  • platform/gtk/fast/forms/hidden-listbox-expected.txt: Added.
  • platform/gtk/fast/forms/image-border-expected.checksum: Added.
  • platform/gtk/fast/forms/image-border-expected.png: Added.
  • platform/gtk/fast/forms/image-border-expected.txt: Added.
  • platform/gtk/fast/forms/indeterminate-expected.checksum: Added.
  • platform/gtk/fast/forms/indeterminate-expected.png: Added.
  • platform/gtk/fast/forms/indeterminate-expected.txt: Added.
  • platform/gtk/fast/forms/input-align-expected.checksum: Added.
  • platform/gtk/fast/forms/input-align-expected.png: Added.
  • platform/gtk/fast/forms/input-align-expected.txt: Added.
  • platform/gtk/fast/forms/input-align-image-expected.checksum: Added.
  • platform/gtk/fast/forms/input-align-image-expected.png: Added.
  • platform/gtk/fast/forms/input-align-image-expected.txt: Added.
  • platform/gtk/fast/forms/input-appearance-bkcolor-expected.checksum: Added.
  • platform/gtk/fast/forms/input-appearance-bkcolor-expected.png: Added.
  • platform/gtk/fast/forms/input-appearance-bkcolor-expected.txt: Added.
  • platform/gtk/fast/forms/input-appearance-default-bkcolor-expected.checksum: Added.
  • platform/gtk/fast/forms/input-appearance-default-bkcolor-expected.png: Added.
  • platform/gtk/fast/forms/input-appearance-default-bkcolor-expected.txt: Added.
  • platform/gtk/fast/forms/input-appearance-disabled-expected.checksum: Added.
  • platform/gtk/fast/forms/input-appearance-disabled-expected.png: Added.
  • platform/gtk/fast/forms/input-appearance-disabled-expected.txt: Added.
  • platform/gtk/fast/forms/input-appearance-focus-expected.checksum: Added.
  • platform/gtk/fast/forms/input-appearance-focus-expected.png: Added.
  • platform/gtk/fast/forms/input-appearance-focus-expected.txt: Added.
  • platform/gtk/fast/forms/input-appearance-height-expected.checksum: Added.
  • platform/gtk/fast/forms/input-appearance-height-expected.png: Added.
  • platform/gtk/fast/forms/input-appearance-height-expected.txt: Added.
  • platform/gtk/fast/forms/input-appearance-preventDefault-expected.checksum: Added.
  • platform/gtk/fast/forms/input-appearance-preventDefault-expected.png: Added.
  • platform/gtk/fast/forms/input-appearance-preventDefault-expected.txt: Added.
  • platform/gtk/fast/forms/input-appearance-readonly-expected.checksum: Added.
  • platform/gtk/fast/forms/input-appearance-readonly-expected.png: Added.
  • platform/gtk/fast/forms/input-appearance-readonly-expected.txt: Added.
  • platform/gtk/fast/forms/input-appearance-selection-expected.checksum: Added.
  • platform/gtk/fast/forms/input-appearance-selection-expected.png: Added.
  • platform/gtk/fast/forms/input-appearance-selection-expected.txt: Added.
  • platform/gtk/fast/forms/input-appearance-visibility-expected.checksum: Added.
  • platform/gtk/fast/forms/input-appearance-visibility-expected.png: Added.
  • platform/gtk/fast/forms/input-appearance-visibility-expected.txt: Added.
  • platform/gtk/fast/forms/input-appearance-width-expected.checksum: Added.
  • platform/gtk/fast/forms/input-appearance-width-expected.png: Added.
  • platform/gtk/fast/forms/input-appearance-width-expected.txt: Added.
  • platform/gtk/fast/forms/input-baseline-expected.checksum: Added.
  • platform/gtk/fast/forms/input-baseline-expected.png: Added.
  • platform/gtk/fast/forms/input-baseline-expected.txt: Added.
  • platform/gtk/fast/forms/input-disabled-color-expected.checksum: Added.
  • platform/gtk/fast/forms/input-disabled-color-expected.png: Added.
  • platform/gtk/fast/forms/input-disabled-color-expected.txt: Added.
  • platform/gtk/fast/forms/input-double-click-selection-gap-bug-expected.checksum: Added.
  • platform/gtk/fast/forms/input-double-click-selection-gap-bug-expected.png: Added.
  • platform/gtk/fast/forms/input-double-click-selection-gap-bug-expected.txt: Added.
  • platform/gtk/fast/forms/input-field-text-truncated-expected.checksum: Added.
  • platform/gtk/fast/forms/input-field-text-truncated-expected.png: Added.
  • platform/gtk/fast/forms/input-field-text-truncated-expected.txt: Added.
  • platform/gtk/fast/forms/input-first-letter-expected.checksum: Added.
  • platform/gtk/fast/forms/input-first-letter-expected.png: Added.
  • platform/gtk/fast/forms/input-first-letter-expected.txt: Added.
  • platform/gtk/fast/forms/input-no-renderer-expected.checksum: Added.
  • platform/gtk/fast/forms/input-no-renderer-expected.png: Added.
  • platform/gtk/fast/forms/input-no-renderer-expected.txt: Added.
  • platform/gtk/fast/forms/input-paste-undo-expected.checksum: Added.
  • platform/gtk/fast/forms/input-paste-undo-expected.png: Added.
  • platform/gtk/fast/forms/input-paste-undo-expected.txt: Added.
  • platform/gtk/fast/forms/input-placeholder-focus-twice-expected.checksum:
  • platform/gtk/fast/forms/input-placeholder-focus-twice-expected.png:
  • platform/gtk/fast/forms/input-readonly-autoscroll-expected.checksum: Added.
  • platform/gtk/fast/forms/input-readonly-autoscroll-expected.png: Added.
  • platform/gtk/fast/forms/input-readonly-autoscroll-expected.txt: Added.
  • platform/gtk/fast/forms/input-readonly-dimmed-expected.checksum: Added.
  • platform/gtk/fast/forms/input-readonly-dimmed-expected.png: Added.
  • platform/gtk/fast/forms/input-readonly-dimmed-expected.txt: Added.
  • platform/gtk/fast/forms/input-readonly-empty-expected.checksum: Added.
  • platform/gtk/fast/forms/input-readonly-empty-expected.png: Added.
  • platform/gtk/fast/forms/input-readonly-empty-expected.txt: Added.
  • platform/gtk/fast/forms/input-selectedoption-expected.txt: Added.
  • platform/gtk/fast/forms/input-spaces-expected.checksum: Added.
  • platform/gtk/fast/forms/input-spaces-expected.png: Added.
  • platform/gtk/fast/forms/input-spaces-expected.txt: Added.
  • platform/gtk/fast/forms/input-table-expected.checksum: Added.
  • platform/gtk/fast/forms/input-table-expected.png: Added.
  • platform/gtk/fast/forms/input-table-expected.txt: Added.
  • platform/gtk/fast/forms/input-text-click-inside-expected.checksum: Added.
  • platform/gtk/fast/forms/input-text-click-inside-expected.png: Added.
  • platform/gtk/fast/forms/input-text-click-inside-expected.txt: Added.
  • platform/gtk/fast/forms/input-text-click-outside-expected.checksum: Added.
  • platform/gtk/fast/forms/input-text-click-outside-expected.png: Added.
  • platform/gtk/fast/forms/input-text-click-outside-expected.txt: Added.
  • platform/gtk/fast/forms/input-text-double-click-expected.checksum: Added.
  • platform/gtk/fast/forms/input-text-double-click-expected.png: Added.
  • platform/gtk/fast/forms/input-text-double-click-expected.txt: Added.
  • platform/gtk/fast/forms/input-text-option-delete-expected.checksum: Added.
  • platform/gtk/fast/forms/input-text-option-delete-expected.png: Added.
  • platform/gtk/fast/forms/input-text-option-delete-expected.txt: Added.
  • platform/gtk/fast/forms/input-text-scroll-left-on-blur-expected.checksum: Added.
  • platform/gtk/fast/forms/input-text-scroll-left-on-blur-expected.png: Added.
  • platform/gtk/fast/forms/input-text-scroll-left-on-blur-expected.txt: Added.
  • platform/gtk/fast/forms/input-text-self-emptying-click-expected.checksum: Added.
  • platform/gtk/fast/forms/input-text-self-emptying-click-expected.png: Added.
  • platform/gtk/fast/forms/input-text-self-emptying-click-expected.txt: Added.
  • platform/gtk/fast/forms/input-text-word-wrap-expected.checksum: Added.
  • platform/gtk/fast/forms/input-text-word-wrap-expected.png: Added.
  • platform/gtk/fast/forms/input-text-word-wrap-expected.txt: Added.
  • platform/gtk/fast/forms/input-type-change-expected.checksum: Added.
  • platform/gtk/fast/forms/input-type-change-expected.png: Added.
  • platform/gtk/fast/forms/input-type-change-expected.txt: Added.
  • platform/gtk/fast/forms/input-type-change2-expected.checksum: Added.
  • platform/gtk/fast/forms/input-type-change2-expected.png: Added.
  • platform/gtk/fast/forms/input-type-change2-expected.txt: Added.
  • platform/gtk/fast/forms/input-type-text-min-width-expected.checksum: Added.
  • platform/gtk/fast/forms/input-type-text-min-width-expected.png: Added.
  • platform/gtk/fast/forms/input-type-text-min-width-expected.txt: Added.
  • platform/gtk/fast/forms/input-value-expected.checksum: Added.
  • platform/gtk/fast/forms/input-value-expected.png: Added.
  • platform/gtk/fast/forms/input-value-expected.txt: Added.
  • platform/gtk/fast/forms/input-width-expected.checksum: Added.
  • platform/gtk/fast/forms/input-width-expected.png: Added.
  • platform/gtk/fast/forms/input-width-expected.txt: Added.
  • platform/gtk/fast/forms/isindex-placeholder-expected.checksum: Added.
  • platform/gtk/fast/forms/isindex-placeholder-expected.png: Added.
  • platform/gtk/fast/forms/isindex-placeholder-expected.txt: Added.
  • platform/gtk/fast/forms/linebox-overflow-in-textarea-padding-expected.checksum: Added.
  • platform/gtk/fast/forms/linebox-overflow-in-textarea-padding-expected.png: Added.
  • platform/gtk/fast/forms/linebox-overflow-in-textarea-padding-expected.txt: Added.
  • platform/gtk/fast/forms/listbox-clip-expected.checksum: Added.
  • platform/gtk/fast/forms/listbox-clip-expected.png: Added.
  • platform/gtk/fast/forms/listbox-clip-expected.txt: Added.
  • platform/gtk/fast/forms/listbox-scrollbar-incremental-load-expected.checksum: Added.
  • platform/gtk/fast/forms/listbox-scrollbar-incremental-load-expected.png: Added.
  • platform/gtk/fast/forms/listbox-scrollbar-incremental-load-expected.txt: Added.
  • platform/gtk/fast/forms/listbox-width-change-expected.checksum: Added.
  • platform/gtk/fast/forms/listbox-width-change-expected.png: Added.
  • platform/gtk/fast/forms/listbox-width-change-expected.txt: Added.
  • platform/gtk/fast/forms/minWidthPercent-expected.checksum: Added.
  • platform/gtk/fast/forms/minWidthPercent-expected.png: Added.
  • platform/gtk/fast/forms/minWidthPercent-expected.txt: Added.
  • platform/gtk/fast/forms/negativeLineHeight-expected.checksum: Added.
  • platform/gtk/fast/forms/negativeLineHeight-expected.png: Added.
  • platform/gtk/fast/forms/negativeLineHeight-expected.txt: Added.
  • platform/gtk/fast/forms/option-index-expected.checksum: Added.
  • platform/gtk/fast/forms/option-index-expected.png: Added.
  • platform/gtk/fast/forms/option-index-expected.txt: Added.
  • platform/gtk/fast/forms/option-script-expected.checksum: Added.
  • platform/gtk/fast/forms/option-script-expected.png: Added.
  • platform/gtk/fast/forms/option-script-expected.txt: Added.
  • platform/gtk/fast/forms/option-strip-whitespace-expected.checksum: Added.
  • platform/gtk/fast/forms/option-strip-whitespace-expected.png: Added.
  • platform/gtk/fast/forms/option-strip-whitespace-expected.txt: Added.
  • platform/gtk/fast/forms/option-text-clip-expected.checksum: Added.
  • platform/gtk/fast/forms/option-text-clip-expected.png: Added.
  • platform/gtk/fast/forms/option-text-clip-expected.txt: Added.
  • platform/gtk/fast/forms/password-placeholder-expected.checksum: Added.
  • platform/gtk/fast/forms/password-placeholder-expected.png: Added.
  • platform/gtk/fast/forms/password-placeholder-expected.txt: Added.
  • platform/gtk/fast/forms/password-placeholder-text-security-expected.checksum: Added.
  • platform/gtk/fast/forms/password-placeholder-text-security-expected.png: Added.
  • platform/gtk/fast/forms/password-placeholder-text-security-expected.txt: Added.
  • platform/gtk/fast/forms/placeholder-pseudo-style-expected.checksum: Added.
  • platform/gtk/fast/forms/placeholder-pseudo-style-expected.png: Added.
  • platform/gtk/fast/forms/placeholder-pseudo-style-expected.txt: Added.
  • platform/gtk/fast/forms/placeholder-set-attribute-expected.checksum: Added.
  • platform/gtk/fast/forms/placeholder-set-attribute-expected.png: Added.
  • platform/gtk/fast/forms/placeholder-set-attribute-expected.txt: Added.
  • platform/gtk/fast/forms/placeholder-set-value-expected.checksum: Added.
  • platform/gtk/fast/forms/placeholder-set-value-expected.png: Added.
  • platform/gtk/fast/forms/placeholder-set-value-expected.txt: Added.
  • platform/gtk/fast/forms/plaintext-mode-2-expected.checksum: Added.
  • platform/gtk/fast/forms/plaintext-mode-2-expected.png: Added.
  • platform/gtk/fast/forms/plaintext-mode-2-expected.txt: Added.
  • platform/gtk/fast/forms/preserveFormDuringResidualStyle-expected.checksum: Added.
  • platform/gtk/fast/forms/preserveFormDuringResidualStyle-expected.png: Added.
  • platform/gtk/fast/forms/preserveFormDuringResidualStyle-expected.txt: Added.
  • platform/gtk/fast/forms/radio-attr-order-expected.checksum: Added.
  • platform/gtk/fast/forms/radio-attr-order-expected.png: Added.
  • platform/gtk/fast/forms/radio-attr-order-expected.txt: Added.
  • platform/gtk/fast/forms/radio-nested-labels-expected.checksum: Added.
  • platform/gtk/fast/forms/radio-nested-labels-expected.png: Added.
  • platform/gtk/fast/forms/radio-nested-labels-expected.txt: Added.
  • platform/gtk/fast/forms/radio_checked-expected.checksum: Added.
  • platform/gtk/fast/forms/radio_checked-expected.png: Added.
  • platform/gtk/fast/forms/radio_checked-expected.txt: Added.
  • platform/gtk/fast/forms/radio_checked_dynamic-expected.checksum: Added.
  • platform/gtk/fast/forms/radio_checked_dynamic-expected.png: Added.
  • platform/gtk/fast/forms/radio_checked_dynamic-expected.txt: Added.
  • platform/gtk/fast/forms/range-thumb-height-percentage-expected.checksum: Added.
  • platform/gtk/fast/forms/range-thumb-height-percentage-expected.png: Added.
  • platform/gtk/fast/forms/search-cancel-button-style-sharing-expected.checksum: Added.
  • platform/gtk/fast/forms/search-cancel-button-style-sharing-expected.png: Added.
  • platform/gtk/fast/forms/search-cancel-button-style-sharing-expected.txt: Added.
  • platform/gtk/fast/forms/search-display-none-cancel-button-expected.checksum: Added.
  • platform/gtk/fast/forms/search-display-none-cancel-button-expected.png: Added.
  • platform/gtk/fast/forms/search-display-none-cancel-button-expected.txt: Added.
  • platform/gtk/fast/forms/search-placeholder-value-changed-expected.checksum: Added.
  • platform/gtk/fast/forms/search-placeholder-value-changed-expected.png: Added.
  • platform/gtk/fast/forms/search-placeholder-value-changed-expected.txt: Added.
  • platform/gtk/fast/forms/search-rtl-expected.checksum: Added.
  • platform/gtk/fast/forms/search-rtl-expected.png: Added.
  • platform/gtk/fast/forms/search-rtl-expected.txt: Added.
  • platform/gtk/fast/forms/search-styled-expected.checksum: Added.
  • platform/gtk/fast/forms/search-styled-expected.png: Added.
  • platform/gtk/fast/forms/search-styled-expected.txt: Added.
  • platform/gtk/fast/forms/search-transformed-expected.checksum: Added.
  • platform/gtk/fast/forms/search-transformed-expected.png: Added.
  • platform/gtk/fast/forms/search-transformed-expected.txt: Added.
  • platform/gtk/fast/forms/search-vertical-alignment-expected.checksum: Added.
  • platform/gtk/fast/forms/search-vertical-alignment-expected.png: Added.
  • platform/gtk/fast/forms/search-vertical-alignment-expected.txt: Added.
  • platform/gtk/fast/forms/search-zoomed-expected.checksum: Added.
  • platform/gtk/fast/forms/search-zoomed-expected.png: Added.
  • platform/gtk/fast/forms/search-zoomed-expected.txt: Added.
  • platform/gtk/fast/forms/searchfield-heights-expected.checksum: Added.
  • platform/gtk/fast/forms/searchfield-heights-expected.png: Added.
  • platform/gtk/fast/forms/searchfield-heights-expected.txt: Added.
  • platform/gtk/fast/forms/select-align-expected.checksum: Added.
  • platform/gtk/fast/forms/select-align-expected.png: Added.
  • platform/gtk/fast/forms/select-align-expected.txt: Added.
  • platform/gtk/fast/forms/select-baseline-expected.checksum: Added.
  • platform/gtk/fast/forms/select-baseline-expected.png: Added.
  • platform/gtk/fast/forms/select-baseline-expected.txt: Added.
  • platform/gtk/fast/forms/select-block-background-expected.checksum: Added.
  • platform/gtk/fast/forms/select-block-background-expected.png: Added.
  • platform/gtk/fast/forms/select-block-background-expected.txt: Added.
  • platform/gtk/fast/forms/select-change-listbox-size-expected.checksum: Added.
  • platform/gtk/fast/forms/select-change-listbox-size-expected.png: Added.
  • platform/gtk/fast/forms/select-change-listbox-size-expected.txt: Added.
  • platform/gtk/fast/forms/select-change-listbox-to-popup-expected.checksum: Added.
  • platform/gtk/fast/forms/select-change-listbox-to-popup-expected.png: Added.
  • platform/gtk/fast/forms/select-change-listbox-to-popup-expected.txt: Added.
  • platform/gtk/fast/forms/select-change-popup-to-listbox-expected.checksum: Added.
  • platform/gtk/fast/forms/select-change-popup-to-listbox-expected.png: Added.
  • platform/gtk/fast/forms/select-change-popup-to-listbox-expected.txt: Added.
  • platform/gtk/fast/forms/select-dirty-parent-pref-widths-expected.checksum: Added.
  • platform/gtk/fast/forms/select-dirty-parent-pref-widths-expected.png: Added.
  • platform/gtk/fast/forms/select-dirty-parent-pref-widths-expected.txt: Added.
  • platform/gtk/fast/forms/select-disabled-appearance-expected.checksum: Added.
  • platform/gtk/fast/forms/select-disabled-appearance-expected.png: Added.
  • platform/gtk/fast/forms/select-disabled-appearance-expected.txt: Added.
  • platform/gtk/fast/forms/select-display-none-style-resolve-expected.checksum: Added.
  • platform/gtk/fast/forms/select-display-none-style-resolve-expected.png: Added.
  • platform/gtk/fast/forms/select-display-none-style-resolve-expected.txt: Added.
  • platform/gtk/fast/forms/select-empty-option-height-expected.checksum: Added.
  • platform/gtk/fast/forms/select-empty-option-height-expected.png: Added.
  • platform/gtk/fast/forms/select-empty-option-height-expected.txt: Added.
  • platform/gtk/fast/forms/select-initial-position-expected.checksum: Added.
  • platform/gtk/fast/forms/select-initial-position-expected.png: Added.
  • platform/gtk/fast/forms/select-initial-position-expected.txt: Added.
  • platform/gtk/fast/forms/select-item-background-clip-expected.checksum: Added.
  • platform/gtk/fast/forms/select-item-background-clip-expected.png: Added.
  • platform/gtk/fast/forms/select-item-background-clip-expected.txt: Added.
  • platform/gtk/fast/forms/select-list-box-with-height-expected.checksum: Added.
  • platform/gtk/fast/forms/select-list-box-with-height-expected.png: Added.
  • platform/gtk/fast/forms/select-list-box-with-height-expected.txt: Added.
  • platform/gtk/fast/forms/select-selected-expected.checksum: Added.
  • platform/gtk/fast/forms/select-selected-expected.png: Added.
  • platform/gtk/fast/forms/select-selected-expected.txt: Added.
  • platform/gtk/fast/forms/select-size-expected.checksum: Added.
  • platform/gtk/fast/forms/select-size-expected.png: Added.
  • platform/gtk/fast/forms/select-size-expected.txt: Added.
  • platform/gtk/fast/forms/select-style-expected.checksum: Added.
  • platform/gtk/fast/forms/select-style-expected.png: Added.
  • platform/gtk/fast/forms/select-style-expected.txt: Added.
  • platform/gtk/fast/forms/select-visual-hebrew-expected.checksum: Added.
  • platform/gtk/fast/forms/select-visual-hebrew-expected.png: Added.
  • platform/gtk/fast/forms/select-visual-hebrew-expected.txt: Added.
  • platform/gtk/fast/forms/select-writing-direction-natural-expected.checksum: Added.
  • platform/gtk/fast/forms/select-writing-direction-natural-expected.png: Added.
  • platform/gtk/fast/forms/select-writing-direction-natural-expected.txt: Added.
  • platform/gtk/fast/forms/slider-thumb-shared-style-expected.checksum: Added.
  • platform/gtk/fast/forms/slider-thumb-shared-style-expected.png: Added.
  • platform/gtk/fast/forms/slider-thumb-stylability-expected.checksum: Added.
  • platform/gtk/fast/forms/slider-thumb-stylability-expected.png: Added.
  • platform/gtk/fast/forms/stuff-on-my-optgroup-expected.checksum: Added.
  • platform/gtk/fast/forms/stuff-on-my-optgroup-expected.png: Added.
  • platform/gtk/fast/forms/stuff-on-my-optgroup-expected.txt: Added.
  • platform/gtk/fast/forms/tabbing-input-iframe-expected.checksum: Added.
  • platform/gtk/fast/forms/tabbing-input-iframe-expected.png: Added.
  • platform/gtk/fast/forms/tabbing-input-iframe-expected.txt: Added.
  • platform/gtk/fast/forms/targeted-frame-submission-expected.checksum: Added.
  • platform/gtk/fast/forms/targeted-frame-submission-expected.png: Added.
  • platform/gtk/fast/forms/targeted-frame-submission-expected.txt: Added.
  • platform/gtk/fast/forms/text-control-intrinsic-widths-expected.txt: Added.
  • platform/gtk/fast/forms/text-style-color-expected.checksum: Added.
  • platform/gtk/fast/forms/text-style-color-expected.png: Added.
  • platform/gtk/fast/forms/text-style-color-expected.txt: Added.
  • platform/gtk/fast/forms/textAreaLineHeight-expected.checksum: Added.
  • platform/gtk/fast/forms/textAreaLineHeight-expected.png: Added.
  • platform/gtk/fast/forms/textAreaLineHeight-expected.txt: Added.
  • platform/gtk/fast/forms/textarea-align-expected.checksum: Added.
  • platform/gtk/fast/forms/textarea-align-expected.png: Added.
  • platform/gtk/fast/forms/textarea-align-expected.txt: Added.
  • platform/gtk/fast/forms/textarea-metrics-expected.txt: Added.
  • platform/gtk/fast/forms/textarea-placeholder-pseudo-style-expected.checksum: Added.
  • platform/gtk/fast/forms/textarea-placeholder-pseudo-style-expected.png: Added.
  • platform/gtk/fast/forms/textarea-placeholder-pseudo-style-expected.txt: Added.
  • platform/gtk/fast/forms/textarea-placeholder-set-attribute-expected.checksum: Added.
  • platform/gtk/fast/forms/textarea-placeholder-set-attribute-expected.png: Added.
  • platform/gtk/fast/forms/textarea-placeholder-set-attribute-expected.txt: Added.
  • platform/gtk/fast/forms/textarea-placeholder-set-value-expected.checksum: Added.
  • platform/gtk/fast/forms/textarea-placeholder-set-value-expected.png: Added.
  • platform/gtk/fast/forms/textarea-placeholder-set-value-expected.txt: Added.
  • platform/gtk/fast/forms/textarea-scroll-height-expected.checksum: Added.
  • platform/gtk/fast/forms/textarea-scroll-height-expected.png: Added.
  • platform/gtk/fast/forms/textarea-scroll-height-expected.txt: Added.
  • platform/gtk/fast/forms/textarea-scrollbar-expected.checksum: Added.
  • platform/gtk/fast/forms/textarea-scrollbar-expected.png: Added.
  • platform/gtk/fast/forms/textarea-scrollbar-expected.txt: Added.
  • platform/gtk/fast/forms/textarea-scrolled-type-expected.checksum: Added.
  • platform/gtk/fast/forms/textarea-scrolled-type-expected.png: Added.
  • platform/gtk/fast/forms/textarea-scrolled-type-expected.txt: Added.
  • platform/gtk/fast/forms/textarea-setinnerhtml-expected.checksum: Added.
  • platform/gtk/fast/forms/textarea-setinnerhtml-expected.png: Added.
  • platform/gtk/fast/forms/textarea-setinnerhtml-expected.txt: Added.
  • platform/gtk/fast/forms/textarea-width-expected.checksum: Added.
  • platform/gtk/fast/forms/textarea-width-expected.png: Added.
  • platform/gtk/fast/forms/textarea-width-expected.txt: Added.
  • platform/gtk/fast/forms/textfield-focus-ring-expected.checksum:
  • platform/gtk/fast/forms/textfield-focus-ring-expected.png:
  • platform/gtk/fast/forms/textfield-outline-expected.checksum: Added.
  • platform/gtk/fast/forms/textfield-outline-expected.png: Added.
  • platform/gtk/fast/forms/textfield-outline-expected.txt: Added.
  • platform/gtk/fast/forms/textfield-overflow-expected.checksum: Added.
  • platform/gtk/fast/forms/textfield-overflow-expected.png: Added.
  • platform/gtk/fast/forms/textfield-overflow-expected.txt: Added.
  • platform/gtk/fast/forms/thumbslider-crash-expected.checksum: Added.
  • platform/gtk/fast/forms/thumbslider-crash-expected.png: Added.
  • platform/gtk/fast/forms/thumbslider-no-parent-slider-expected.checksum: Added.
  • platform/gtk/fast/forms/thumbslider-no-parent-slider-expected.png: Added.
  • platform/gtk/fast/forms/visual-hebrew-text-field-expected.checksum: Added.
  • platform/gtk/fast/forms/visual-hebrew-text-field-expected.png: Added.
  • platform/gtk/fast/forms/visual-hebrew-text-field-expected.txt: Added.
11:55 AM Changeset in webkit [70550] by inferno@chromium.org
  • 3 edits in trunk/WebCore

2010-10-26 Abhishek Arya <inferno@chromium.org>

Reviewed by Dimitri Glazkov.

Added checks to ensure that events types are right before casting.
https://bugs.webkit.org/show_bug.cgi?id=48345

  • html/ImageDocument.cpp: (WebCore::ImageEventListener::handleEvent):
  • inspector/InspectorDOMStorageResource.cpp: (WebCore::InspectorDOMStorageResource::handleEvent):
11:47 AM Changeset in webkit [70549] by commit-queue@webkit.org
  • 12 edits in trunk

2010-10-26 Dai Mikurube <dmikurube@google.com>

Reviewed by Kent Tamura.

Number values should be in the range of IEEE 754 single-precision floating point number
https://bugs.webkit.org/show_bug.cgi?id=48221

Changed tests and test expectations for number values to fit in the
range of IEEE 754 single-precision

  • fast/forms/ValidityState-stepMismatch-expected.txt:
  • fast/forms/input-stepup-stepdown-expected.txt:
  • fast/forms/input-valueasnumber-number-expected.txt:
  • fast/forms/input-valueasnumber-range-expected.txt:
  • fast/forms/script-tests/ValidityState-stepMismatch.js:
  • fast/forms/script-tests/input-stepup-stepdown.js:
  • fast/forms/script-tests/input-valueasnumber-number.js:
  • fast/forms/script-tests/input-valueasnumber-range.js:

2010-10-26 Dai Mikurube <dmikurube@google.com>

Reviewed by Kent Tamura.

Number values should be in the range of IEEE 754 single-precision floating point number
https://bugs.webkit.org/show_bug.cgi?id=48221

Changed the range of number values to fit in IEEE 754 single-precision

  • html/parser/HTMLParserIdioms.cpp: (WebCore::parseToDoubleForNumberType):
  • html/NumberInputType.cpp:
11:38 AM Changeset in webkit [70548] by Simon Fraser
  • 11 edits in trunk

2010-10-26 Simon Fraser <Simon Fraser>

Reviewed by Sam Weinig.

Support layoutTestController.layerTreeAsText in WebKitTestRunner
https://bugs.webkit.org/show_bug.cgi?id=42145

Implement layerTreeAsText() in WebKitTestRunner.

  • WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
  • WebKitTestRunner/InjectedBundle/LayoutTestController.cpp: (WTR::LayoutTestController::layerTreeAsText):
  • WebKitTestRunner/InjectedBundle/LayoutTestController.h:

2010-10-26 Simon Fraser <Simon Fraser>

Reviewed by Sam Weinig.

Support layoutTestController.layerTreeAsText in WebKitTestRunner
https://bugs.webkit.org/show_bug.cgi?id=42145

Expose layerTreeAsText() as private API so that
WebKitTestRunner can use it.

  • WebProcess/InjectedBundle/API/c/WKBundleFrame.cpp: (WKBundleFrameCopyLayerTreeAsText):
  • WebProcess/InjectedBundle/API/c/WKBundleFramePrivate.h:
  • WebProcess/WebPage/WebFrame.cpp: (WebKit::WebFrame::numberOfActiveAnimations): (WebKit::WebFrame::layerTreeAsText): (WebKit::WebFrame::pendingUnloadCount):
  • WebProcess/WebPage/WebFrame.h:

2010-10-26 Simon Fraser <Simon Fraser>

Reviewed by Sam Weinig.

Support layoutTestController.layerTreeAsText in WebKitTestRunner
https://bugs.webkit.org/show_bug.cgi?id=42145

Unskip tests that relied on layerTreeAsText(), but skip
two compositing tests that continue to be flakey.

  • platform/mac-wk2/Skipped:
11:36 AM Changeset in webkit [70547] by abarth@webkit.org
  • 2 edits in trunk/WebKitTools

2010-10-26 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

webkit-patch rollout produces incorrect patch when using svn move
https://bugs.webkit.org/show_bug.cgi?id=48244

We need to flush our caches when we modify the working copy.

  • Scripts/webkitpy/tool/steps/revertrevision.py:
11:32 AM Changeset in webkit [70546] by hyatt@apple.com
  • 13 edits
    16 adds in trunk

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

Reviewed by Sam Weinig.

Direction and writing-mode should propagate from the <body> to the <html> to the initial containing block.
Modify the existing code that propagates from the document element to also propagate from the body.

Fix the buggy code that was trying to dirty the body when the view changed size if it stretched to fill the
viewport. The code didn't consider the root element, and it only worked with one axis. I pulled it
out of calculateScrollbarModesForLayout, since it should never have been put there in the first place.

Added four new tests in fast/blockflow.

WebCore:

  • css/CSSStyleSelector.cpp:

(WebCore::CSSStyleSelector::initElement):
(WebCore::CSSStyleSelector::styleForDocument):
(WebCore::CSSStyleSelector::applyProperty):

  • dom/Document.cpp:

(WebCore::Document::Document):

  • dom/Document.h:

(WebCore::Document::directionSetOnDocumentElement):
(WebCore::Document::writingModeSetOnDocumentElement):
(WebCore::Document::setDirectionSetOnDocumentElement):
(WebCore::Document::setWritingModeSetOnDocumentElement):

  • page/FrameView.cpp:

(WebCore::FrameView::calculateScrollbarModesForLayout):
(WebCore::FrameView::layout):

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::styleDidChange):

  • rendering/RenderBox.h:

(WebCore::RenderBox::stretchesToViewport):

LayoutTests:

  • fast/blockflow/body-direction-propagation-blocked.html: Added.
  • fast/blockflow/body-direction-propagation.html: Added.
  • fast/blockflow/body-writing-mode-propagation-blocked.html: Added.
  • fast/blockflow/body-writing-mode-propagation.html: Added.
  • platform/mac/fast/blockflow/body-direction-propagation-blocked-expected.checksum: Added.
  • platform/mac/fast/blockflow/body-direction-propagation-blocked-expected.png: Added.
  • platform/mac/fast/blockflow/body-direction-propagation-blocked-expected.txt: Added.
  • platform/mac/fast/blockflow/body-direction-propagation-expected.checksum: Added.
  • platform/mac/fast/blockflow/body-direction-propagation-expected.png: Added.
  • platform/mac/fast/blockflow/body-direction-propagation-expected.txt: Added.
  • platform/mac/fast/blockflow/body-writing-mode-propagation-blocked-expected.checksum: Added.
  • platform/mac/fast/blockflow/body-writing-mode-propagation-blocked-expected.png: Added.
  • platform/mac/fast/blockflow/body-writing-mode-propagation-blocked-expected.txt: Added.
  • platform/mac/fast/blockflow/body-writing-mode-propagation-expected.checksum: Added.
  • platform/mac/fast/blockflow/body-writing-mode-propagation-expected.png: Added.
  • platform/mac/fast/blockflow/body-writing-mode-propagation-expected.txt: Added.
  • platform/mac/fast/blockflow/english-rl-text-expected.checksum:
  • platform/mac/fast/blockflow/english-rl-text-expected.png:
  • platform/mac/fast/blockflow/english-rl-text-expected.txt:
  • platform/mac/fast/blockflow/floats-in-block-layout-expected.txt:
  • platform/mac/fast/blockflow/self-collapsing-block-expected.txt:
11:30 AM Changeset in webkit [70545] by Joseph Pecoraro
  • 2 edits in trunk/WebCore

2010-10-26 Joseph Pecoraro <Joseph Pecoraro>

Reviewed by David Kilzer.

Fix Cache::dumpStats formatting
https://bugs.webkit.org/show_bug.cgi?id=48286

This updates the column width in the dumpStats output to be wide enough
for all the titles. Previously one of the titles was too wide and crept
into later column space.

  • loader/Cache.cpp: (WebCore::Cache::dumpStats): make columns 13 characters wide.
11:23 AM Changeset in webkit [70544] by andersca@apple.com
  • 5 edits in trunk

Enable the plug-in process on Mac
https://bugs.webkit.org/show_bug.cgi?id=48350

Reviewed by Sam Weinig.

WebKit2:

  • WebKit2Prefix.h:

Flip the switch and enable the plug-in process on Mac.

  • WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm:

(WebKit::NetscapePlugin::platformDestroy):
Fix a bogus assert.

LayoutTests:

  • platform/mac-wk2/Skipped:

Update WebKit2 mac skipped list.

11:18 AM Changeset in webkit [70543] by commit-queue@webkit.org
  • 6 edits in trunk

2010-10-26 Alexey Marinichev <amarinichev@chromium.org>

Reviewed by Kenneth Russell.

[chromium] Check getGraphicsResetStatusARB and reinitialize the
renderer in an error is returned.
https://bugs.webkit.org/show_bug.cgi?id=47848

Tested by failure injection (stopping in the debugger and issuing a
jump as if an error has occurred).

  • platform/graphics/chromium/LayerChromium.cpp: (WebCore::LayerChromium::setLayerRenderer):
  • platform/graphics/chromium/LayerRendererChromium.h: (WebCore::LayerRendererChromium::transferRootLayer): added

2010-10-26 Alexey Marinichev <amarinichev@chromium.org>

Reviewed by Kenneth Russell.

[chromium] Check getGraphicsResetStatusARB and reinitialize the
renderer in an error is returned.
https://bugs.webkit.org/show_bug.cgi?id=47848

  • src/WebViewImpl.cpp: (WebKit::WebViewImpl::composite): added getGraphicsResetStatusARB check (WebKit::WebViewImpl::reallocateRenderer): added
  • src/WebViewImpl.h:
11:14 AM Changeset in webkit [70542] by pfeldman@chromium.org
  • 2 edits in trunk/LayoutTests

2010-10-26 Pavel Feldman <pfeldman@chromium.org>

Not reviewed. Disabling inspector audits tests on Qt.
Will figure out what is wrong with it later.

  • platform/qt/Skipped:
11:13 AM Changeset in webkit [70541] by eric@webkit.org
  • 4 edits in trunk/WebKitTools

2010-10-26 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

commit-queue flaky test message can list the same author more than once
https://bugs.webkit.org/show_bug.cgi?id=48268

tonikitoo reported to me over IRC this morning that he's seen
the commit-queue report flaky tests with author lists like:
"adam, adam and adam", suggesting we're not uniquing authors
before writing the message.

I fixed the uniquing and added a bunch more unit testing.

  • Scripts/webkitpy/tool/commands/queues.py:
  • Scripts/webkitpy/tool/commands/queues_unittest.py:
  • Scripts/webkitpy/tool/mocktool.py:
11:04 AM Changeset in webkit [70540] by Adam Roben
  • 3 edits in trunk/WebKitTools

Pull in the FeatureDefines*.vsprops files when building DRT

This ensures that various ENABLE() macros will get set correctly.
(Prior to r70320 we were picking up the ENABLE(3D_RENDERING) flag
through wtf/Platform.h.)

Fixes <http://webkit.org/b/48343> REGRESSION (r70320): DumpRenderTree
says 3D_RENDERING is disabled even when it is enabled

Reviewed by Ada Chan.

  • DumpRenderTree/win/DumpRenderTree.vcproj: Added

FeaturesDefines*.vsprops to all configurations.

  • DumpRenderTree/win/DumpRenderTreeWin.h: Touched to force a rebuild.
11:04 AM Changeset in webkit [70539] by Adam Roben
  • 2 edits in trunk/WebKitLibraries

Fix duplicate vsprops name

  • win/tools/vsprops/FeatureDefinesCairo.vsprops: Renamed to

"FeatureDefinesCairo" to match the filename.

11:01 AM Changeset in webkit [70538] by jorlow@chromium.org
  • 2 edits in trunk/LayoutTests

2010-10-26 Jeremy Orlow <jorlow@chromium.org>

Fix minor typo.

  • storage/indexeddb/objectstore-basics-expected.txt:
10:54 AM Changeset in webkit [70537] by commit-queue@webkit.org
  • 4 edits in trunk/WebKitTools

2010-10-26 Søren Gjesse <sgjesse@chromium.org>

Reviewed by Dimitri Glazkov.

Added options --multiple-loads and --js-flags to chromium DumpRenderTree. The option --multiple-loads=X
is used to have DumpRenderTree load each test it runs X times. To be able to have more fine-grained control
of how the JavaScript engine behaves for each load the flag --js-flags can specify a list of flag-sets like this

--js-flags="--xxx,--noxxx --yyy,--noyyy"

First load will run with --xxx, the second with --yyy and the third without any (the 'no' prefix is handled by
V8 to turn off the flag).

The changes to the Python test runner will be in a separate change.

  • DumpRenderTree/chromium/DumpRenderTree.cpp: (runTest): (main):
  • DumpRenderTree/chromium/TestShell.cpp: (TestShell::TestShell): (TestShell::runFileTest): (TestShell::testFinished):
  • DumpRenderTree/chromium/TestShell.h: (TestShell::loadCount): (TestShell::setLoadCount): (TestShell::javaScriptFlagsForLoad): (TestShell::setJavaScriptFlags): (TestShell::setDumpWhenFinished):
10:52 AM Changeset in webkit [70536] by Dimitri Glazkov
  • 2 edits in trunk/LayoutTests

2010-10-26 Dimitri Glazkov <Dimitri Glazkov>

[Chromium] Add another flaky test to expectations.
https://bugs.webkit.org/show_bug.cgi?id=48341

  • platform/chromium/test_expectations.txt: Added flaky crash.
10:42 AM Changeset in webkit [70535] by pfeldman@chromium.org
  • 4 edits in trunk/WebCore

2010-10-26 Pavel Feldman <pfeldman@chromium.org>

Not reviewed. Touching inspector controller to kick gtk build, removing comments.

  • inspector/InspectorController.cpp:
  • inspector/front-end/ResourceManager.js:
  • inspector/front-end/ScriptsPanel.js:
10:40 AM WebKit2 edited by Simon Fraser
(diff)
10:28 AM Changeset in webkit [70534] by kbr@google.com
  • 2 edits in trunk/WebKit/chromium

2010-10-26 Kenneth Russell <kbr@google.com>

Reviewed by Andreas Kling.

Valgrind failure in GraphicsContext3DInternal::reshape
https://bugs.webkit.org/show_bug.cgi?id=48284

  • src/WebGraphicsContext3DDefaultImpl.cpp: (WebKit::WebGraphicsContext3DDefaultImpl::WebGraphicsContext3DDefaultImpl):
10:15 AM Changeset in webkit [70533] by mitz@apple.com
  • 151 edits in trunk/LayoutTests/platform

Set the svn:mime-type property of recently-added PNG files to image/png.

10:06 AM Changeset in webkit [70532] by pfeldman@chromium.org
  • 20 edits in trunk

2010-10-26 Pavel Feldman <pfeldman@chromium.org>

Web Inspector: continue making resources panel optional.
https://bugs.webkit.org/show_bug.cgi?id=48261

This refactoring makes console, audits and extensions tests pass while taking data from
resources panel. Network panel as a source is to follow.

  • inspector/front-end/AuditLauncherView.js: (WebInspector.AuditLauncherView.prototype._createLauncherUI):
  • inspector/front-end/AuditsPanel.js:
  • inspector/front-end/ConsoleView.js: (WebInspector.ConsoleView.prototype.addMessage):
  • inspector/front-end/CookieItemsView.js: (WebInspector.CookieItemsView.prototype._filterCookiesForDomain.populateResourcesForDocuments): (WebInspector.CookieItemsView.prototype._filterCookiesForDomain):
  • inspector/front-end/ExtensionServer.js: (WebInspector.ExtensionServer.prototype._onRevealAndSelectResource): (WebInspector.ExtensionServer.prototype._onGetResources): (WebInspector.ExtensionServer.prototype._onGetResourceContent):
  • inspector/front-end/HAREntry.js: (WebInspector.HARLog.prototype.build): (WebInspector.HARLog.prototype.buildMainResourceTimings): (WebInspector.HARLog.prototype._convertResource):
  • inspector/front-end/NetworkPanel.js: (WebInspector.NetworkPanel): (WebInspector.NetworkPanel.prototype._reset): (WebInspector.NetworkPanel.prototype.get resources): (WebInspector.NetworkPanel.prototype.addResource):
  • inspector/front-end/Resource.js: (WebInspector.Resource.prototype.set category):
  • inspector/front-end/ResourceCategory.js: (WebInspector.ResourceCategory): (WebInspector.ResourceCategory.prototype.toString):
  • inspector/front-end/ResourceManager.js: (WebInspector.ResourceManager.prototype.identifierForInitialRequest): (WebInspector.ResourceManager.prototype.willSendRequest): (WebInspector.ResourceManager.prototype.didFinishLoading): (WebInspector.ResourceManager.prototype.didFailLoading): (WebInspector.ResourceManager.prototype.didLoadResourceFromMemoryCache): (WebInspector.ResourceManager.prototype.setOverrideContent): (WebInspector.ResourceTreeModel.prototype._callForFrameResources):
  • inspector/front-end/ResourcesPanel.js: (WebInspector.ResourcesPanel): (WebInspector.ResourcesPanel.prototype.reset): (WebInspector.ResourcesPanel.prototype.addResource): (WebInspector.ResourcesPanel.prototype.removeResource): (WebInspector.ResourcesPanel.prototype._toggleResourceTracking):
  • inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype.addScript): (WebInspector.ScriptsPanel.prototype._resourceLoadingFinished): (WebInspector.ScriptsPanel.prototype._breakpointAdded):
  • inspector/front-end/StylesSidebarPane.js: (WebInspector.StylePropertyTreeElement.prototype.updateTitle.linkifyURL):
  • inspector/front-end/inspector.js: (WebInspector._updateFocusedNode): (WebInspector.get networkResources): (WebInspector.forAllResources): (WebInspector.updateResource): (WebInspector.domContentEventFired): (WebInspector.loadEventFired): (WebInspector.removeResource): (WebInspector.reset): (WebInspector.displayNameForURL): (WebInspector.linkifyStringAsFragment): (WebInspector.resourceURLForRelatedNode.callback): (WebInspector.resourceURLForRelatedNode):

2010-10-26 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Timothy Hatcher.

Web Inspector: continue making resources panel optional.
https://bugs.webkit.org/show_bug.cgi?id=48261

This refactoring makes console, audits and extensions tests pass while taking data from
resources panel. Network panel as a source is to follow.

  • http/tests/inspector/inspector-test2.js: (initialize_InspectorTest.InspectorTest.completeTest): (initialize_InspectorTest.InspectorTest.evaluateInConsole): (initialize_InspectorTest.InspectorTest.evaluateInPage): (initialize_InspectorTest.InspectorTest.evaluateInPageWithTimeout): (initialize_InspectorTest.InspectorTest.addResult): (initialize_InspectorTest.InspectorTest.addObject): (initialize_InspectorTest.InspectorTest.reloadPage): (initialize_InspectorTest.InspectorTest.reloadPageIfNeeded): (initialize_InspectorTest.InspectorTest.pageReloaded): (initialize_InspectorTest.InspectorTest.runAfterPendingDispatches): (initialize_InspectorTest.InspectorTest.enableResourceTracking): (initialize_InspectorTest.InspectorTest.disableResourceTracking): (initialize_InspectorTest.InspectorTest.findDOMNode): (initialize_InspectorTest.InspectorTest._addSniffer):
  • http/tests/inspector/resource-parameters.html:
  • inspector/audits-panel-functional.html:
  • inspector/styles-source-offsets.html:
10:03 AM Changeset in webkit [70531] by jorlow@chromium.org
  • 27 edits in trunk

2010-10-26 Jeremy Orlow <jorlow@chromium.org>

Reviewed by Steve Block.

Fix IndexedDB crashes
https://bugs.webkit.org/show_bug.cgi?id=48266

Test all the changes made in WebCore.

  • storage/indexeddb/constants-expected.txt:
  • storage/indexeddb/constants.html:
  • storage/indexeddb/database-quota-expected.txt:
  • storage/indexeddb/index-basics-expected.txt:
  • storage/indexeddb/index-basics.html:
  • storage/indexeddb/index-cursor-expected.txt:
  • storage/indexeddb/index-cursor.html:
  • storage/indexeddb/keyrange-expected.txt:
  • storage/indexeddb/keyrange.html:
  • storage/indexeddb/objectstore-basics-expected.txt:
  • storage/indexeddb/objectstore-basics.html:
  • storage/indexeddb/objectstore-cursor-expected.txt:
  • storage/indexeddb/objectstore-cursor.html:
  • storage/indexeddb/open-cursor-expected.txt:
  • storage/indexeddb/open-cursor.html:

2010-10-26 Jeremy Orlow <jorlow@chromium.org>

Reviewed by Steve Block.
Fix IndexedDB crashes
https://bugs.webkit.org/show_bug.cgi?id=48266

If IDBKey returns null, type conversion failed. Handle this case
in the bindings.

Change UNKNOWN_ERR to be 1 since 0 is hard coded to mean no error.
This is just a stop-gap move until we get it figured out in standards
land.

IDBObjectStore needs to handle null ranges.

It's actually OK for m_transaction to be non-null when hitting the
destructor. We just need to then remove it from the set of pending
transactions.

The transaction can become aborted in the middle of processing a
list of tasks. Fix this.

All changes (except the last 2 races) are tested in LayoutTests.
I couldn't find a way to reliably reproduce the races.

  • bindings/scripts/CodeGeneratorV8.pm:
  • bindings/scripts/test/V8/V8TestObj.cpp: (WebCore::TestObjInternal::idbKeyCallback):
  • bindings/v8/IDBBindingUtilities.cpp: (WebCore::createIDBKeyFromValue):
  • storage/IDBDatabaseException.h:
  • storage/IDBDatabaseException.idl:
  • storage/IDBObjectStoreBackendImpl.cpp: (WebCore::IDBObjectStoreBackendImpl::openCursorInternal):
  • storage/IDBRequest.cpp: (WebCore::IDBRequest::~IDBRequest): (WebCore::IDBRequest::timerFired):
  • storage/IDBTransactionBackendImpl.cpp: (WebCore::IDBTransactionBackendImpl::taskTimerFired):

2010-10-26 Jeremy Orlow <jorlow@chromium.org>

Reviewed by Steve Block.

Fix IndexedDB crashes
https://bugs.webkit.org/show_bug.cgi?id=48266

Make WebIDBObjectStoreImpl match the way that WebIDBIndexImpl passes
in cursor parameters (which is the correct way). KeyRange knows how
to convert itself to a WebCore type--even if the value is null.

  • src/WebIDBObjectStoreImpl.cpp: (WebKit::WebIDBObjectStoreImpl::openCursor):
9:55 AM Changeset in webkit [70530] by Adam Roben
  • 1 edit
    11 adds in trunk/LayoutTests

Land expected Windows results for new vertical text tests

  • platform/win/fast/blockflow/english-lr-text-expected.checksum: Added.
  • platform/win/fast/blockflow/english-lr-text-expected.png: Added.
  • platform/win/fast/blockflow/english-lr-text-expected.txt: Added.
  • platform/win/fast/blockflow/english-rl-text-expected.checksum: Added.
  • platform/win/fast/blockflow/english-rl-text-expected.png: Added.
  • platform/win/fast/blockflow/english-rl-text-expected.txt: Added.
  • platform/win/fast/text/international/vertical-text-glyph-test-expected.checksum: Added.
  • platform/win/fast/text/international/vertical-text-glyph-test-expected.png: Added.
  • platform/win/fast/text/international/vertical-text-glyph-test-expected.txt: Added.
  • platform/win/fast/text/international/vertical-text-metrics-test-expected.txt: Added.
9:24 AM Changeset in webkit [70529] by caseq@chromium.org
  • 9 edits in trunk/WebCore

2010-10-25 Andrey Kosyakov <caseq@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: Show cookie data in the request headers in network pane
https://bugs.webkit.org/show_bug.cgi?id=16531

  • inspector/front-end/CookieItemsView.js: (WebInspector.CookieItemsView): Factor out common cookies grid logic to CookiesTable (WebInspector.CookieItemsView.prototype._populateDataGrid):
  • inspector/front-end/CookieParser.js: Store cookie type (request/response) within a cookie. (WebInspector.CookieParser.prototype.parseCookie): (WebInspector.CookieParser.prototype.parseSetCookie): (WebInspector.CookieParser.prototype._addCookie): (WebInspector.Cookie):
  • inspector/front-end/DataGrid.js: (WebInspector.DataGrid.prototype.autoSizeColumns): Optionally, traverse nested nodes when looking for max field widths. (WebInspector.DataGrid.prototype._enumerateChildren): (WebInspector.DataGrid.prototype.updateWidths): Skip attempt to calculate column widths if grid is not attached to DOM tree yet.
  • inspector/front-end/FontView.js: (WebInspector.FontView.prototype.resize):
  • inspector/front-end/ResourceView.js: (WebInspector.ResourceView.prototype.resize): (WebInspector.ResourceView.prototype._selectTab): (WebInspector.ResourceView.prototype._selectCookiesTab): (WebInspector.ResourceView.prototype._innerSelectContentTab): (WebInspector.ResourceView.prototype._refreshRequestHeaders): (WebInspector.ResourceView.prototype._refreshResponseHeaders): (WebInspector.ResourceView.prototype._refreshHeaders): (WebInspector.ResourceView.prototype._refreshCookies): (WebInspector.ResourceCookiesTab): (WebInspector.ResourceCookiesTab.prototype.set requestCookies): (WebInspector.ResourceCookiesTab.prototype.set responseCookies): (WebInspector.ResourceCookiesTab.prototype._populateDataGrid): (WebInspector.ResourceCookiesTab.prototype._populateCookies): (WebInspector.ResourceCookiesTab.prototype._createFolder):
  • inspector/front-end/SourceView.js: (WebInspector.SourceView.prototype.resize):
  • inspector/front-end/inspector.css: (.resource-view .resource-view-cookies): (.resource-view.headers-visible .resource-view-cookies): (.resource-view-cookies.table .data-grid): (.resource-view-cookies .data-grid .row-group):
9:15 AM Changeset in webkit [70528] by Adam Roben
  • 2 edits in trunk/WebKitTools

Skip more tests that depend on accelerated compositing when accelerated compositing is disabled

Fixes <http://webkit.org/b/48329> Some tests fail when accelerated
compositing is disabled

Reviewed by John Sullivan.

  • Scripts/old-run-webkit-tests: Added more tests to skip when

accelerated compositing is disable. The tests all have output that
changes depending on whether accelerated compositing is enabled.

9:10 AM Changeset in webkit [70527] by inferno@chromium.org
  • 1 edit
    2 copies in branches/chromium/552

Merge 70517

BUG=60238

9:06 AM Changeset in webkit [70526] by inferno@chromium.org
  • 1 edit
    2 copies in branches/chromium/517

Merge 70517

BUG=60238
Review URL: http://codereview.chromium.org/4188001

8:59 AM Changeset in webkit [70525] by jorlow@chromium.org
  • 20 edits in trunk

2010-10-26 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r70518.
http://trac.webkit.org/changeset/70518
https://bugs.webkit.org/show_bug.cgi?id=48332

Breaks inspector tests. (Requested by pfeldman on #webkit).

  • http/tests/inspector/inspector-test2.js: (initialize_InspectorTest.InspectorTest.completeTest): (initialize_InspectorTest.InspectorTest.evaluateInConsole): (initialize_InspectorTest.InspectorTest.evaluateInPage): (initialize_InspectorTest.InspectorTest.evaluateInPageWithTimeout): (initialize_InspectorTest.InspectorTest.addResult): (initialize_InspectorTest.InspectorTest.addObject): (initialize_InspectorTest.InspectorTest.reloadPage): (initialize_InspectorTest.InspectorTest.pageReloaded): (initialize_InspectorTest.InspectorTest.runAfterPendingDispatches): (initialize_InspectorTest.InspectorTest.enableResourceTracking): (initialize_InspectorTest.InspectorTest.disableResourceTracking): (initialize_InspectorTest.InspectorTest.findDOMNode): (initialize_InspectorTest.InspectorTest._addSniffer):
  • http/tests/inspector/resource-parameters.html:
  • inspector/audits-panel-functional.html:
  • inspector/styles-source-offsets.html:

2010-10-26 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r70518.
http://trac.webkit.org/changeset/70518
https://bugs.webkit.org/show_bug.cgi?id=48332

Breaks inspector tests. (Requested by pfeldman on #webkit).

  • inspector/front-end/AuditLauncherView.js: (WebInspector.AuditLauncherView.prototype._createLauncherUI):
  • inspector/front-end/AuditsPanel.js:
  • inspector/front-end/ConsoleView.js: (WebInspector.ConsoleView.prototype.addMessage):
  • inspector/front-end/CookieItemsView.js: (WebInspector.CookieItemsView.prototype._filterCookiesForDomain):
  • inspector/front-end/ExtensionServer.js: (WebInspector.ExtensionServer.prototype._onRevealAndSelectResource): (WebInspector.ExtensionServer.prototype._onGetResources): (WebInspector.ExtensionServer.prototype._onGetResourceContent):
  • inspector/front-end/HAREntry.js: (WebInspector.HARLog.prototype.build): (WebInspector.HARLog.prototype.buildMainResourceTimings): (WebInspector.HARLog.prototype._convertResource):
  • inspector/front-end/NetworkPanel.js: (WebInspector.NetworkPanel): (WebInspector.NetworkPanel.prototype._reset): (WebInspector.NetworkPanel.prototype.addResource):
  • inspector/front-end/Resource.js: (WebInspector.Resource.prototype.set category):
  • inspector/front-end/ResourceCategory.js: (WebInspector.ResourceCategory): (WebInspector.ResourceCategory.prototype.toString): (WebInspector.ResourceCategory.prototype.addResource): (WebInspector.ResourceCategory.prototype.removeResource): (WebInspector.ResourceCategory.prototype.removeAllResources):
  • inspector/front-end/ResourceManager.js: (WebInspector.ResourceManager.prototype.identifierForInitialRequest): (WebInspector.ResourceManager.prototype.willSendRequest): (WebInspector.ResourceManager.prototype.didFinishLoading): (WebInspector.ResourceManager.prototype.didFailLoading): (WebInspector.ResourceManager.prototype.didLoadResourceFromMemoryCache): (WebInspector.ResourceManager.prototype.setOverrideContent): (WebInspector.ResourceTreeModel.prototype._callForFrameResources):
  • inspector/front-end/ResourcesPanel.js: (WebInspector.ResourcesPanel): (WebInspector.ResourcesPanel.prototype.reset): (WebInspector.ResourcesPanel.prototype.addResource): (WebInspector.ResourcesPanel.prototype.removeResource): (WebInspector.ResourcesPanel.prototype._toggleResourceTracking):
  • inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype.addScript): (WebInspector.ScriptsPanel.prototype._resourceLoadingFinished): (WebInspector.ScriptsPanel.prototype._breakpointAdded):
  • inspector/front-end/StylesSidebarPane.js: (WebInspector.StylePropertyTreeElement.prototype.updateTitle.linkifyURL):
  • inspector/front-end/inspector.js: (WebInspector._updateFocusedNode): (WebInspector.updateResource): (WebInspector.domContentEventFired): (WebInspector.loadEventFired): (WebInspector.removeResource): (WebInspector.reset): (WebInspector.displayNameForURL): (WebInspector.resourceForURL): (WebInspector.linkifyStringAsFragment): (WebInspector.resourceURLForRelatedNode):
8:50 AM Changeset in webkit [70524] by jorlow@chromium.org
  • 1 edit
    2 deletes in trunk/LayoutTests

2010-10-26 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r70521.
http://trac.webkit.org/changeset/70521
https://bugs.webkit.org/show_bug.cgi?id=48334

This patch depends on another not yet committed. (Requested by
jorlow on #webkit).

  • storage/indexeddb/tutorial-expected.txt: Removed.
  • storage/indexeddb/tutorial.html: Removed.
8:47 AM Changeset in webkit [70523] by satish@chromium.org
  • 2 edits in trunk/WebKit/chromium

2010-10-26 Satish Sampath <satish@chromium.org>

Reviewed by Steve Block.

Remove obsolete public/API methods in chromium port.
https://bugs.webkit.org/show_bug.cgi?id=48330

  • public/WebSpeechInputListener.h:
8:21 AM Changeset in webkit [70522] by jorlow@chromium.org
  • 17 edits
    1 copy
    4 adds
    1 delete in trunk

2010-10-26 Jeremy Orlow <jorlow@chromium.org>

Reviewed by Steve Block.

Quota for IndexedDB should be per origin not per database
https://bugs.webkit.org/show_bug.cgi?id=48064

Verify our backing database can handle multiple indexes, objectStores,
items in the index/object stores, etc within databases of different
names.

Also adjust the quota test so it doesn't fail with subtle differences
in the backing db (which can change the size a bit).

  • storage/indexeddb/database-quota-expected.txt:
  • storage/indexeddb/database-quota.html:
  • storage/indexeddb/duplicates-expected.txt: Added.
  • storage/indexeddb/duplicates.html: Added.

2010-10-26 Jeremy Orlow <jorlow@chromium.org>

Reviewed by Steve Block.

Quota for IndexedDB should be per origin not per database
https://bugs.webkit.org/show_bug.cgi?id=48064

Merge all databases for each origin into a single SQLiteDatabase.

Replace the awkward metaData table with a Database table.

Create a new IDBSQLiteDatabase class that wraps SQLiteDatabase
and implements weak pointer semantics for IDBFactory. It's ref
counted so multiple IDBDatabaseBackendImpls can share one.

Fix uniqueness constraints that were overly conservitive.

Get rid of the code that blows away existing data every time
the database is opened.

Get rid of the fairly useless indexedDB manual test and replace
it with one that verifies data persists.

Use name+origin (not just name) in our cache of IDBDatabaseBackend
objects (so one origin can't access anothers' data).

Test: storage/indexeddb/duplicates.html

  • WebCore.gypi:
  • manual-tests/indexed-database.html: Removed.
  • manual-tests/indexeddb-persists.html: Added.
  • storage/IDBDatabaseBackendImpl.cpp: (WebCore::extractMetaData): (WebCore::setMetaData): (WebCore::IDBDatabaseBackendImpl::IDBDatabaseBackendImpl): (WebCore::IDBDatabaseBackendImpl::setDescription): (WebCore::IDBDatabaseBackendImpl::sqliteDatabase): (WebCore::IDBDatabaseBackendImpl::createObjectStoreInternal): (WebCore::IDBDatabaseBackendImpl::setVersionInternal): (WebCore::IDBDatabaseBackendImpl::loadObjectStores):
  • storage/IDBDatabaseBackendImpl.h: (WebCore::IDBDatabaseBackendImpl::create): (WebCore::IDBDatabaseBackendImpl::id):
  • storage/IDBFactoryBackendImpl.cpp: (WebCore::IDBFactoryBackendImpl::removeSQLiteDatabase): (WebCore::openSQLiteDatabase): (WebCore::createTables): (WebCore::IDBFactoryBackendImpl::open): (WebCore::IDBFactoryBackendImpl::databaseFileName):
  • storage/IDBFactoryBackendImpl.h:
  • storage/IDBObjectStoreBackendImpl.cpp: (WebCore::putObjectStoreData): (WebCore::IDBObjectStoreBackendImpl::putInternal):
  • storage/IDBSQLiteDatabase.cpp: Added. (WebCore::IDBSQLiteDatabase::IDBSQLiteDatabase): (WebCore::IDBSQLiteDatabase::~IDBSQLiteDatabase):
  • storage/IDBSQLiteDatabase.h: Added. (WebCore::IDBSQLiteDatabase::create): (WebCore::IDBSQLiteDatabase::db):

2010-10-26 Jeremy Orlow <jorlow@chromium.org>

Reviewed by Steve Block.

Quota for IndexedDB should be per origin not per database
https://bugs.webkit.org/show_bug.cgi?id=48064

  • public/WebIDBFactory.h:
  • public/WebSecurityOrigin.h:
  • src/WebIDBFactory.cpp: (WebKit::WebIDBFactory::databaseFileName):
  • src/WebSecurityOrigin.cpp: (WebKit::WebSecurityOrigin::get):
8:19 AM Changeset in webkit [70521] by jorlow@chromium.org
  • 1 edit
    2 adds in trunk/LayoutTests

2010-10-26 Jeremy Orlow <jorlow@chromium.org>

Reviewed by Steve Block.

Add IndexedDB test/tutorial
https://bugs.webkit.org/show_bug.cgi?id=48067

This document is useful in terms of demonstrating IndexedDB and
documenting what we do and don't support currently, since I'll be
maintaining it for at least some time.

  • storage/indexeddb/tutorial-expected.txt: Added.
  • storage/indexeddb/tutorial.html: Added.
8:02 AM Changeset in webkit [70520] by zoltan@webkit.org
  • 6 edits
    2 moves in trunk/WebKit2

[Qt] Implement SharedMemory for WebKit2
https://bugs.webkit.org/show_bug.cgi?id=47345

Reviewed by Kenneth Rohde Christiansen.

Implement unimplemented functions in SharedMemoryQt.cpp.
Rename MappedMemory.h to MappedMemoryPool.h, move MappedMemoryPool.{h|cpp} from
Shared/qt to Platform/qt. Modify affected lines of WebKit2.pro.
Move MappedMemory implementation into MappedMemoryPool. Remove unnecessary
methods of MappedMemoryPool.

  • Platform/SharedMemory.h: Add a handle member for Qt.
  • Platform/qt/MappedMemoryPool.cpp: Copied from WebKit2/Shared/qt/MappedMemoryPool.cpp.

(WebKit::MappedMemoryPool::searchForMappedMemory):
(WebKit::MappedMemoryPool::mapMemory):
(WebKit::MappedMemoryPool::mapFile):

  • Platform/qt/MappedMemoryPool.h: Copied from WebKit2/Shared/qt/MappedMemory.h.

(WebKit::MappedMemoryPool::MappedMemory::mapSize):
(WebKit::MappedMemoryPool::MappedMemory::markUsed):
(WebKit::MappedMemoryPool::MappedMemory::markFree):
(WebKit::MappedMemoryPool::MappedMemory::isFree):
(WebKit::MappedMemoryPool::MappedMemory::data):
(WebKit::MappedMemoryPool::MappedMemoryPool):
Move MappedMemory implementation into MappedMemoryPool.

  • Platform/qt/SharedMemoryQt.cpp:

(WebKit::SharedMemory::Handle::Handle): Implement.
(WebKit::SharedMemory::Handle::~Handle):
(WebKit::SharedMemory::Handle::isNull): Implement.
(WebKit::SharedMemory::Handle::encode): Implement.
(WebKit::SharedMemory::Handle::decode): Implement.
(WebKit::SharedMemory::create): Implement.
(WebKit::mapProtection): Added.
(WebKit::SharedMemory::~SharedMemory): Implement.
(WebKit::SharedMemory::createHandle): Implement.
(WebKit::SharedMemory::systemPageSize): Implement.

  • Shared/qt/MappedMemory.h: Removed.
  • Shared/qt/MappedMemoryPool.cpp: Removed.
  • Shared/qt/UpdateChunk.cpp:

(WebKit::UpdateChunk::UpdateChunk):
(WebKit::UpdateChunk::decode):
Modify to use MappedMemoryPool.

  • Shared/qt/UpdateChunk.h:
  • WebKit2.pro:

Modify affected lines.

7:18 AM Changeset in webkit [70519] by caseq@chromium.org
  • 12 edits in trunk/WebCore

2010-10-20 Andrey Kosyakov <caseq@chromium.org>

Reviewed by Yury Semikhatsky.

Inspector needs to use cached resources to display image resources.
https://bugs.webkit.org/show_bug.cgi?id=16395

  • inspector/Inspector.idl: Add base64Encode parameter to getContent
  • inspector/InspectorResourceAgent.cpp: (WebCore::InspectorResourceAgent::resourceContent):
  • inspector/InspectorResourceAgent.h:
  • inspector/front-end/ExtensionServer.js: (WebInspector.ExtensionServer.prototype._onGetResourceContent):
  • inspector/front-end/ImageView.js: (WebInspector.ImageView.prototype.contentTabSelected.onResourceContent): (WebInspector.ImageView.prototype.contentTabSelected):
  • inspector/front-end/NetworkPanel.js: (WebInspector.NetworkDataGridNode.prototype._refreshNameCell.): (WebInspector.NetworkDataGridNode.prototype._refreshNameCell):
  • inspector/front-end/Resource.js: (WebInspector.Resource): (WebInspector.Resource.prototype.set finished): (WebInspector.Resource.prototype.getContent): (WebInspector.Resource.prototype.get contentURL): (WebInspector.Resource.prototype._requestContent.onResourceContent): (WebInspector.Resource.prototype._requestContent):
  • inspector/front-end/ResourcesPanel.js: (WebInspector.ResourceSidebarTreeElement.prototype.createIconElement.): (WebInspector.ResourceSidebarTreeElement.prototype.createIconElement):
  • inspector/front-end/Settings.js: Added useDataURLForResourceImageIcons
  • inspector/front-end/SourceView.js: (WebInspector.SourceView.prototype.setupSourceFrameIfNeeded):
6:52 AM Changeset in webkit [70518] by pfeldman@chromium.org
  • 20 edits in trunk

2010-10-26 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Timothy Hatcher.

Web Inspector: continue making resources panel optional.
https://bugs.webkit.org/show_bug.cgi?id=48261

This refactoring makes console, audits and extensions tests pass while taking data from
resources panel. Network panel as a source is to follow.

  • http/tests/inspector/inspector-test2.js: (initialize_InspectorTest.InspectorTest.completeTest): (initialize_InspectorTest.InspectorTest.evaluateInConsole): (initialize_InspectorTest.InspectorTest.evaluateInPage): (initialize_InspectorTest.InspectorTest.evaluateInPageWithTimeout): (initialize_InspectorTest.InspectorTest.addResult): (initialize_InspectorTest.InspectorTest.addObject): (initialize_InspectorTest.InspectorTest.reloadPage): (initialize_InspectorTest.InspectorTest.reloadPageIfNeeded): (initialize_InspectorTest.InspectorTest.pageReloaded): (initialize_InspectorTest.InspectorTest.runAfterPendingDispatches): (initialize_InspectorTest.InspectorTest.enableResourceTracking): (initialize_InspectorTest.InspectorTest.disableResourceTracking): (initialize_InspectorTest.InspectorTest.findDOMNode): (initialize_InspectorTest.InspectorTest._addSniffer):
  • http/tests/inspector/resource-parameters.html:
  • inspector/audits-panel-functional.html:
  • inspector/styles-source-offsets.html:

2010-10-26 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Timothy Hatcher.

Web Inspector: continue making resources panel optional.
https://bugs.webkit.org/show_bug.cgi?id=48261

This refactoring makes console, audits and extensions tests pass while taking data from
resources panel. Network panel as a source is to follow.

  • http/tests/inspector/inspector-test2.js: (initialize_InspectorTest.InspectorTest.completeTest): (initialize_InspectorTest.InspectorTest.evaluateInConsole): (initialize_InspectorTest.InspectorTest.evaluateInPage): (initialize_InspectorTest.InspectorTest.evaluateInPageWithTimeout): (initialize_InspectorTest.InspectorTest.addResult): (initialize_InspectorTest.InspectorTest.addObject): (initialize_InspectorTest.InspectorTest.reloadPage): (initialize_InspectorTest.InspectorTest.reloadPageIfNeeded): (initialize_InspectorTest.InspectorTest.pageReloaded): (initialize_InspectorTest.InspectorTest.runAfterPendingDispatches): (initialize_InspectorTest.InspectorTest.enableResourceTracking): (initialize_InspectorTest.InspectorTest.disableResourceTracking): (initialize_InspectorTest.InspectorTest.findDOMNode): (initialize_InspectorTest.InspectorTest._addSniffer):
  • http/tests/inspector/resource-parameters.html:
  • inspector/audits-panel-functional.html:
  • inspector/styles-source-offsets.html:
6:29 AM Changeset in webkit [70517] by inferno@chromium.org
  • 3 edits
    2 adds in trunk

2010-10-26 Abhishek Arya <inferno@chromium.org>

Reviewed by Adam Barth.

Protect the frame from being blown away in loadWithDocumentLoader function call.
dispatchBeforeLoadEvent can cause the frame to be freed, which gets later used in
continueLoadAfterNavigationPolicy call.
https://bugs.webkit.org/show_bug.cgi?id=48281

Test: fast/events/form-iframe-target-before-load-crash.html

  • loader/FrameLoader.cpp: (WebCore::FrameLoader::loadWithDocumentLoader):

2010-10-26 Abhishek Arya <inferno@chromium.org>

Reviewed by Adam Barth.

Tests that submit the form on a removed target iframe does not result in crash.
https://bugs.webkit.org/show_bug.cgi?id=48281

  • fast/events/form-iframe-target-before-load-crash-expected.txt: Added.
  • fast/events/form-iframe-target-before-load-crash.html: Added.
4:37 AM Changeset in webkit [70516] by xan@webkit.org
  • 2 edits in trunk/WebCore

2010-10-26 Xan Lopez <xlopez@igalia.com>

Restore another mix-up in copy&paste error. Use height for the
vertical adjustments instead of width.

  • platform/gtk/ScrollViewGtk.cpp: (WebCore::ScrollView::setVerticalAdjustment):
3:53 AM Changeset in webkit [70515] by xan@webkit.org
  • 2 edits in trunk/WebCore

2010-10-26 Xan Lopez <xlopez@igalia.com>

Restore early return accidentally removed in previous
patch. Should make API tests pass again.

  • platform/gtk/ScrollViewGtk.cpp: (WebCore::ScrollView::setHorizontalAdjustment): (WebCore::ScrollView::setVerticalAdjustment):
1:37 AM Changeset in webkit [70514] by xan@webkit.org
  • 5 edits in trunk

WebCore:

2010-10-26 Xan Lopez <xlopez@igalia.com>

Reviewed by Martin Robinson.

[GTK] Port to new GtkScrollable interface in GTK+ 3.x
https://bugs.webkit.org/show_bug.cgi?id=48202

The new GtkScrollable API sets the adjustments individually, so
adjust the code for this fact.

  • platform/ScrollView.h:
  • platform/gtk/ScrollViewGtk.cpp: (WebCore::ScrollView::setHorizontalAdjustment): new method to set the horizontal adjustment. (WebCore::ScrollView::setVerticalAdjustment): new method to set the vertical adjustment. (WebCore::ScrollView::setGtkAdjustments): make this just call the other two methods.

WebKit/gtk:

2010-10-26 Xan Lopez <xlopez@igalia.com>

Reviewed by Martin Robinson.

[GTK] Port to new GtkScrollable interface in GTK+ 3.x
https://bugs.webkit.org/show_bug.cgi?id=48202

Use the new GtkScrollable interface when compiling against GTK+
3.x.

  • webkit/webkitwebview.cpp: (setHorizontalAdjustment): (setVerticalAdjustment): (getHorizontalAdjustment): (getVerticalAdjustment): (webkit_web_view_get_property): (webkit_web_view_set_property): (webkit_web_view_class_init):
1:27 AM Changeset in webkit [70513] by morrita@google.com
  • 12 edits in trunk

2010-10-26 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r70512.
http://trac.webkit.org/changeset/70512
https://bugs.webkit.org/show_bug.cgi?id=48314

crashes many tests (Requested by inferno-sec on #webkit).

  • editing/spelling/spellcheck-attribute-expected.txt:
  • editing/spelling/spellcheck-attribute.html:

2010-10-26 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r70512.
http://trac.webkit.org/changeset/70512
https://bugs.webkit.org/show_bug.cgi?id=48314

crashes many tests (Requested by inferno-sec on #webkit).

  • dom/Element.cpp:
  • dom/Element.h:
  • editing/Editor.cpp: (WebCore::markMisspellingsOrBadGrammar): (WebCore::Editor::spellCheckingEnabledInFocusedNode): (WebCore::Editor::markAllMisspellingsAndBadGrammarInRanges):
  • editing/Editor.h:
  • platform/ContextMenu.cpp: (WebCore::ContextMenu::populate):

2010-10-26 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r70512.
http://trac.webkit.org/changeset/70512
https://bugs.webkit.org/show_bug.cgi?id=48314

crashes many tests (Requested by inferno-sec on #webkit).

  • src/ContextMenuClientImpl.cpp: (WebKit::ContextMenuClientImpl::getCustomMenuFromDefaultItems):
  • src/EditorClientImpl.cpp: (WebKit::EditorClientImpl::shouldSpellcheckByDefault):

Oct 25, 2010:

9:45 PM Changeset in webkit [70512] by morrita@google.com
  • 12 edits in trunk

2010-10-22 MORITA Hajime <morrita@google.com>

Reviewed by Tony Chang.

spellcheck= should be the same as spellcheck="true"
https://bugs.webkit.org/show_bug.cgi?id=25539

  • editing/spelling/spellcheck-attribute-expected.txt:
  • editing/spelling/spellcheck-attribute.html:

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

Reviewed by Tony Chang.

spellcheck= should be the same as spellcheck="true"
https://bugs.webkit.org/show_bug.cgi?id=25539

  • Added a check for empty string and missing attribute.
  • Extracted the check to Element::spellCheckingEnabled()
  • Introduced SpellcheckAttributeState enum to represent the states for spellcheck attributes.
  • dom/Element.cpp: (WebCore::Element::spellcheckAttributeState): Added. (WebCore::Element::isSpellCheckingEnabled): Added.
  • dom/Element.h:
  • editing/Editor.cpp: (WebCore::markMisspellingsOrBadGrammar): (WebCore::Editor::isSpellCheckingEnabledInFocusedNode): Renamed, partly extracted to Element::isSpellCheckingEnabled() (WebCore::Editor::markAllMisspellingsAndBadGrammarInRanges):
  • editing/Editor.h:
  • platform/ContextMenu.cpp: (WebCore::ContextMenu::populate):

2010-10-25 MORITA Hajime <morrita@google.com>

Reviewed by Tony Chang.

spellcheck= should be the same as spellcheck="true"
https://bugs.webkit.org/show_bug.cgi?id=25539

Followed API rename in WebCore.

  • src/ContextMenuClientImpl.cpp: (WebKit::ContextMenuClientImpl::getCustomMenuFromDefaultItems):
  • src/EditorClientImpl.cpp: (WebKit::EditorClientImpl::shouldSpellcheckByDefault):
7:27 PM Changeset in webkit [70511] by tkent@chromium.org
  • 30 edits
    4 copies in trunk/WebCore

2010-10-25 Kent Tamura <tkent@chromium.org>

Reviewed by Darin Adler.

Refactor HTMLInputElement: Move createRender(), appendFormData(),
saveFormControlState() and restoreFormControlState() to InputTypes.
https://bugs.webkit.org/show_bug.cgi?id=47834

This change adds BaseButtonInputType and BaseCheckableInputType. They
are super classes of some concrete InputType classes.

No new tests. Just a code refactoring.

  • CMakeLists.txt: Add BaseButtonInputType and BaseCheckableInputType files.
  • GNUmakefile.am: ditto.
  • WebCore.gypi: ditto.
  • WebCore.pro: ditto.
  • WebCore.vcproj/WebCore.vcproj: ditto.
  • WebCore.xcodeproj/project.pbxproj: ditto.
  • html/BaseButtonInputType.cpp: Added. (WebCore::BaseButtonInputType::appendFormData): (WebCore::BaseButtonInputType::createRenderer):
  • html/BaseButtonInputType.h: Added. (WebCore::BaseButtonInputType::BaseButtonInputType):
  • html/BaseCheckableInputType.cpp: Added. (WebCore::BaseCheckableInputType::saveFormControlState): (WebCore::BaseCheckableInputType::restoreFormControlState): (WebCore::BaseCheckableInputType::appendFormData):
  • html/BaseCheckableInputType.h: Added. (WebCore::BaseCheckableInputType::BaseCheckableInputType):
  • html/ButtonInputType.h: Change the super class. (WebCore::ButtonInputType::ButtonInputType):
  • html/CheckboxInputType.h: Change the super class. (WebCore::CheckboxInputType::CheckboxInputType):
  • html/FileInputType.cpp: (WebCore::FileInputType::appendFormData): (WebCore::FileInputType::createRenderer):
  • html/FileInputType.h: Change the super class. (WebCore::FileInputType::FileInputType):
  • html/HTMLFormControlElement.h: Make placeholderShouldBeVisible() public for access from TextFieldInputType.
  • html/HTMLInputElement.cpp: (WebCore::HTMLInputElement::saveFormControlState): (WebCore::HTMLInputElement::restoreFormControlState): (WebCore::HTMLInputElement::createRenderer): (WebCore::HTMLInputElement::appendFormData):
  • html/HTMLInputElement.h: Add the following functions for ImageInputType and SubmitInputType. (WebCore::HTMLInputElement::xPosition): (WebCore::HTMLInputElement::yPosition):
  • html/HiddenInputType.cpp: (WebCore::HiddenInputType::createRenderer):
  • html/HiddenInputType.h:
  • html/ImageInputType.cpp: (WebCore::ImageInputType::isFormDataAppendable): (WebCore::ImageInputType::appendFormData): (WebCore::ImageInputType::createRenderer):
  • html/ImageInputType.h: Change the super class. (WebCore::ImageInputType::ImageInputType):
  • html/InputType.cpp: (WebCore::InputType::saveFormControlState): (WebCore::InputType::restoreFormControlState): (WebCore::InputType::isFormDataAppendable): (WebCore::InputType::appendFormData): (WebCore::InputType::createRenderer):
  • html/InputType.h:
  • html/PasswordInputType.cpp: (WebCore::PasswordInputType::saveFormControlState): (WebCore::PasswordInputType::restoreFormControlState):
  • html/PasswordInputType.h:
  • html/RadioInputType.h: Change the super class. (WebCore::RadioInputType::RadioInputType):
  • html/RangeInputType.cpp: (WebCore::RangeInputType::createRenderer):
  • html/RangeInputType.h:
  • html/ResetInputType.h: (WebCore::ResetInputType::ResetInputType):
  • html/SubmitInputType.cpp: (WebCore::SubmitInputType::appendFormData):
  • html/SubmitInputType.h: Change the super class. (WebCore::SubmitInputType::SubmitInputType):
  • html/TextFieldInputType.cpp: (WebCore::TextFieldInputType::createRenderer):
  • html/TextFieldInputType.h:
6:51 PM Changeset in webkit [70510] by andersca@apple.com
  • 3 edits in trunk/WebKit2

WebKit2 callbacks for findString() and countMatchesForString() should report whether the match count was exceeded
https://bugs.webkit.org/show_bug.cgi?id=48285
<rdar://problem/8576318>

Reviewed by Sam Weinig.

  • UIProcess/API/C/WKPage.h:

Add a kWKMoreThanMaximumMatchCount constant.

  • WebProcess/WebPage/FindController.cpp:

(WebKit::FindController::findString):
If we get back more matches than allowed, send kWKMoreThanMaximumMatchCount as the match constant.

6:06 PM Changeset in webkit [70509] by Simon Fraser
  • 6 edits
    5 adds in trunk

2010-10-25 Simon Fraser <Simon Fraser>

Reviewed by Dan Bernstein.

Fix scrolling of noncomposited iframes within composited document
https://bugs.webkit.org/show_bug.cgi?id=47391

When an iframe that is painting into a compositing layer is scrolled,
we need to repaint via the RenderObject (which dirties the compositing layer contents),
rather than going out to hostWindow.

Test: compositing/iframes/composited-iframe-scroll.html

  • page/FrameView.cpp: (WebCore::FrameView::scrollContentsSlowPath):
  • page/FrameView.h:
  • platform/ScrollView.cpp: (WebCore::ScrollView::scrollContents): (WebCore::ScrollView::scrollContentsSlowPath):
  • platform/ScrollView.h:
5:10 PM Changeset in webkit [70508] by kbr@google.com
  • 2 edits in trunk/LayoutTests

2010-10-25 Kenneth Russell <kbr@google.com>

Unreviewed, test expectations update. Mark WebGL layout test
glsl-conformance.html as also failing after Mesa 7.9 upgrade.

  • platform/chromium/test_expectations.txt:
5:07 PM Changeset in webkit [70507] by rniwa@webkit.org
  • 1 edit
    2 adds in trunk/LayoutTests

2010-10-25 Ryosuke Niwa <rniwa@webkit.org>

Reviewed by Tony Chang.

execCommand('removeFormat') adds extra styles inside tables
https://bugs.webkit.org/show_bug.cgi?id=29164

Added a test to ensure RemoveFormat command does not add erroneous style attribute
when removing styles inside a table cell.

  • editing/execCommand/remove-format-in-table-cell-expected.txt: Added.
  • editing/execCommand/remove-format-in-table-cell.html: Added.
4:52 PM Changeset in webkit [70506] by mitz@apple.com
  • 2 edits in trunk/WebKit2

Non-Carbon build fix.

  • WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm:

(WebKit::NetscapePlugin::windowFrameChanged):

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

2010-10-25 Kenneth Russell <kbr@google.com>

Unreviewed, test expectations update. Temporarily WebGL layout
tests gl-object-get-calls.html and uniform-location.html as
failing per http://crbug.com/60651 after Mesa 7.9 upgrade until
the failures can be investigated.

  • platform/chromium/test_expectations.txt:
4:43 PM Changeset in webkit [70504] by timothy@apple.com
  • 14 edits
    1 copy
    5 adds in trunk/WebKit2

Stub out WebInspector objects and WKInspectorRef API.

https://webkit.org/b/48265

Reviewed by Anders Carlsson.

  • Platform/CoreIPC/MessageID.h: Added MessageClassWebInspector and MessageClassWebInspectorProxy.
  • Shared/API/c/WKBase.h: Added WKInspectorRef.
  • Shared/APIObject.h: Added TypeInspector.
  • UIProcess/API/C/WKAPICast.h: Added WKInspectorRef to WebInspectorProxy mapping.
  • UIProcess/API/C/WKInspector.cpp: Added.

(WKInspectorGetTypeID):
(WKInspectorGetPage):

  • UIProcess/API/C/WKInspector.h: Added.
  • UIProcess/API/C/WKPage.cpp:

(WKPageGetInspector): Added.

  • UIProcess/API/C/WKPage.h:
  • UIProcess/WebInspectorProxy.cpp: Added.

(WebKit::WebInspectorProxy::WebInspectorProxy):
(WebKit::WebInspectorProxy::~WebInspectorProxy):
(WebKit::WebInspectorProxy::invalidate):

  • UIProcess/WebInspectorProxy.h:

(WebKit::WebInspectorProxy::create):
(WebKit::WebInspectorProxy::page):
(WebKit::WebInspectorProxy::type):

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::inspector): Lazily create the WebInspectorProxy.

  • UIProcess/WebPageProxy.h:
  • WebKit2.pro: Added new files.
  • WebKit2.xcodeproj/project.pbxproj: Added new files.
  • WebProcess/WebPage/WebInspector.cpp: Added.

(WebKit::WebInspector::WebInspector):

  • WebProcess/WebPage/WebInspector.h: Added.
  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::inspector): Lazily create the WebInspector.

  • WebProcess/WebPage/WebPage.h:
  • win/WebKit2.vcproj: Added new files.
4:32 PM Changeset in webkit [70503] by rniwa@webkit.org
  • 4 edits in trunk/WebCore

2010-10-25 Ryosuke Niwa <rniwa@webkit.org>

Unreviewed Qt build fix for r70496.

  • bridge/qt/qt_instance.cpp: (JSC::Bindings::QtInstance::numberValue):
  • bridge/qt/qt_pixmapruntime.cpp: (JSC::Bindings::QtPixmapWidthField::valueFromInstance): (JSC::Bindings::QtPixmapHeightField::valueFromInstance):
  • bridge/qt/qt_runtime.cpp: (JSC::Bindings::convertValueToQVariant): (JSC::Bindings::convertQVariantToValue): (JSC::Bindings::QtRuntimeMetaMethod::lengthGetter): (JSC::Bindings::QtRuntimeConnectionMethod::lengthGetter):
4:25 PM Changeset in webkit [70502] by eric@webkit.org
  • 3 edits in trunk/WebKitTools

2010-10-25 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

webkit-patch should clean up svn locks when passed --force-clean
https://bugs.webkit.org/show_bug.cgi?id=48269

  • Scripts/webkitpy/common/checkout/scm.py:
4:22 PM Changeset in webkit [70501] by weinig@apple.com
  • 2 edits in trunk/LayoutTests

Update WebKit2 skipped list.

Rubber-stamped by Anders Carlsson.

  • platform/mac-wk2/Skipped:
4:03 PM Changeset in webkit [70500] by rniwa@webkit.org
  • 1 edit
    2 adds in trunk/LayoutTests

2010-10-25 Ryosuke Niwa <rniwa@webkit.org>

Reviewed by Tony Chang.

execCommand removeFormat is blowing away text outside the selection
https://bugs.webkit.org/show_bug.cgi?id=21843

Added a test to ensure executing RemoveFormant command on an orphaned list item
does not remove non-orphaned list items preceding the orphaned item.

  • editing/execCommand/remove-format-orphaned-list-item-expected.txt: Added.
  • editing/execCommand/remove-format-orphaned-list-item.html: Added.
3:59 PM Changeset in webkit [70499] by andersca@apple.com
  • 4 edits in trunk/WebKit2

Update the fake Carbon window when the window frame changes
https://bugs.webkit.org/show_bug.cgi?id=48273

Reviewed by Dan Bernstein.

  • UIProcess/API/mac/WKView.mm:

(screenForWindow):
(-[WKView _updateWindowFrame]):
Pass the window frame in Carbon coordinates.

  • WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm:

(WebKit::NetscapePlugin::windowFrameChanged):
Update the window bounds.

  • WebProcess/Plugins/PluginView.cpp:

(WebKit::PluginView::setWindowFrame):
Call the plug-in.

(WebKit::PluginView::platformLayer):
Fix a crash when WebCore asked for the layer before it was initialized.

3:59 PM Changeset in webkit [70498] by Csaba Osztrogonác
  • 2 edits
    1 delete in trunk/LayoutTests

Unreviewed.

[Qt] DRT sideeffect revealed by r63657
https://bugs.webkit.org/show_bug.cgi?id=42578

Remove incorrect Qt specific expected file for http/tests/security/mixedContent/insecure-css-in-main-frame.html.
Platform independent is the correct one.

Add http/tests/security/mixedContent/insecure-css-in-main-frame.html
to the Skipped list, because it is a flakey test due to this bug.

  • platform/qt/Skipped:
  • platform/qt/http/tests/security/mixedContent/insecure-css-in-main-frame-expected.txt: Removed.
3:48 PM Changeset in webkit [70497] by aestes@apple.com
  • 3 edits
    2 adds in trunk

2010-10-25 Andy Estes <aestes@apple.com>

Reviewed by Simon Fraser.

Source change by Simon Fraser.

Setting an element's visibility property to visible has no effect when
it has a hidden parent.
https://bugs.webkit.org/show_bug.cgi?id=48267

Test: fast/layers/visible-layer-with-hidden-parent.html

When a layer is hidden, there is an optimization that removes it from
the layer tree. If the layer is made visible again, it would only mark
its own stacking context's z-order list as dirty. If there are hidden
parent layers, they need to be marked dirty as well so layers with
visible descendents are re-added to the layer tree.

  • rendering/RenderLayer.cpp: (WebCore::RenderLayer::setHasVisibleContent): Dirty the z-order lists of all parent stacking context render layers up to and including the first visible stacking context.

2010-10-25 Andy Estes <aestes@apple.com>

Reviewed by Simon Fraser.

Setting an element's visibility property to visible has no effect when
it has a hidden parent.
https://bugs.webkit.org/show_bug.cgi?id=48267

  • fast/layers/visible-layer-with-hidden-parent-expected.txt: Added.
  • fast/layers/visible-layer-with-hidden-parent.html: Added.
3:40 PM Changeset in webkit [70496] by oliver@apple.com
  • 83 edits in trunk

2010-10-25 Oliver Hunt <oliver@apple.com>

Reviewed by Gavin Barraclough.

Remove exec and globalData arguments from jsNumber
https://bugs.webkit.org/show_bug.cgi?id=48270

Remove the now unused exec and globalData arguments from jsNumber
and mechanically update all users of jsNumber.

  • API/JSValueRef.cpp: (JSValueMakeNumber):
  • bytecompiler/BytecodeGenerator.cpp: (JSC::BytecodeGenerator::emitLoad):
  • bytecompiler/NodesCodegen.cpp: (JSC::ArrayNode::emitBytecode):
  • jit/JITArithmetic.cpp: (JSC::JIT::emit_op_mod):
  • jit/JITArithmetic32_64.cpp: (JSC::JIT::emit_op_mod):
  • jit/JITOpcodes.cpp: (JSC::JIT::emit_op_jfalse): (JSC::JIT::emit_op_jtrue):
  • jit/JITStubs.cpp: (JSC::DEFINE_STUB_FUNCTION):
  • jsc.cpp: (functionRun):
  • runtime/Arguments.cpp: (JSC::Arguments::getOwnPropertySlot): (JSC::Arguments::getOwnPropertyDescriptor):
  • runtime/ArrayConstructor.cpp: (JSC::ArrayConstructor::ArrayConstructor):
  • runtime/ArrayPrototype.cpp: (JSC::arrayProtoFuncPop): (JSC::arrayProtoFuncPush): (JSC::arrayProtoFuncShift): (JSC::arrayProtoFuncSplice): (JSC::arrayProtoFuncUnShift): (JSC::arrayProtoFuncFilter): (JSC::arrayProtoFuncMap): (JSC::arrayProtoFuncEvery): (JSC::arrayProtoFuncForEach): (JSC::arrayProtoFuncSome): (JSC::arrayProtoFuncReduce): (JSC::arrayProtoFuncReduceRight): (JSC::arrayProtoFuncIndexOf): (JSC::arrayProtoFuncLastIndexOf):
  • runtime/BooleanConstructor.cpp: (JSC::BooleanConstructor::BooleanConstructor):
  • runtime/CachedTranscendentalFunction.h: (JSC::CachedTranscendentalFunction::operator()):
  • runtime/DateConstructor.cpp: (JSC::DateConstructor::DateConstructor): (JSC::dateParse): (JSC::dateNow): (JSC::dateUTC):
  • runtime/DateInstance.cpp: (JSC::DateInstance::DateInstance):
  • runtime/DatePrototype.cpp: (JSC::dateProtoFuncGetFullYear): (JSC::dateProtoFuncGetUTCFullYear): (JSC::dateProtoFuncGetMonth): (JSC::dateProtoFuncGetUTCMonth): (JSC::dateProtoFuncGetDate): (JSC::dateProtoFuncGetUTCDate): (JSC::dateProtoFuncGetDay): (JSC::dateProtoFuncGetUTCDay): (JSC::dateProtoFuncGetHours): (JSC::dateProtoFuncGetUTCHours): (JSC::dateProtoFuncGetMinutes): (JSC::dateProtoFuncGetUTCMinutes): (JSC::dateProtoFuncGetSeconds): (JSC::dateProtoFuncGetUTCSeconds): (JSC::dateProtoFuncGetMilliSeconds): (JSC::dateProtoFuncGetUTCMilliseconds): (JSC::dateProtoFuncGetTimezoneOffset): (JSC::dateProtoFuncSetTime): (JSC::setNewValueFromTimeArgs): (JSC::setNewValueFromDateArgs): (JSC::dateProtoFuncSetYear): (JSC::dateProtoFuncGetYear):
  • runtime/Error.cpp: (JSC::addErrorSourceInfo): (JSC::addErrorDivotInfo):
  • runtime/ErrorConstructor.cpp: (JSC::ErrorConstructor::ErrorConstructor):
  • runtime/FunctionConstructor.cpp: (JSC::FunctionConstructor::FunctionConstructor):
  • runtime/FunctionPrototype.cpp: (JSC::FunctionPrototype::FunctionPrototype):
  • runtime/JSArray.cpp: (JSC::JSArray::getOwnPropertySlot): (JSC::JSArray::getOwnPropertyDescriptor):
  • runtime/JSByteArray.cpp: (JSC::JSByteArray::JSByteArray):
  • runtime/JSByteArray.h: (JSC::JSByteArray::getIndex):
  • runtime/JSFunction.cpp: (JSC::JSFunction::JSFunction): (JSC::JSFunction::lengthGetter): (JSC::JSFunction::getOwnPropertyDescriptor):
  • runtime/JSGlobalObject.cpp: (JSC::JSGlobalObject::reset):
  • runtime/JSGlobalObjectFunctions.cpp: (JSC::globalFuncParseInt): (JSC::globalFuncParseFloat):
  • runtime/JSNumberCell.h: (JSC::JSValue::JSValue): (JSC::jsNaN): (JSC::JSValue::toJSNumber):
  • runtime/JSONObject.cpp: (JSC::unwrapBoxedPrimitive): (JSC::PropertyNameForFunctionCall::value): (JSC::JSONStringify):
  • runtime/JSString.cpp: (JSC::JSString::getStringPropertyDescriptor):
  • runtime/JSString.h: (JSC::JSString::getStringPropertySlot):
  • runtime/JSValue.h: (JSC::jsDoubleNumber): (JSC::jsNumber): (JSC::jsNaN): (JSC::JSValue::JSValue): (JSC::JSValue::toJSNumber):
  • runtime/LiteralParser.cpp: (JSC::LiteralParser::parse):
  • runtime/MathObject.cpp: (JSC::MathObject::MathObject): (JSC::mathProtoFuncAbs): (JSC::mathProtoFuncACos): (JSC::mathProtoFuncASin): (JSC::mathProtoFuncATan): (JSC::mathProtoFuncATan2): (JSC::mathProtoFuncCeil): (JSC::mathProtoFuncCos): (JSC::mathProtoFuncExp): (JSC::mathProtoFuncFloor): (JSC::mathProtoFuncLog): (JSC::mathProtoFuncMax): (JSC::mathProtoFuncMin): (JSC::mathProtoFuncPow): (JSC::mathProtoFuncRandom): (JSC::mathProtoFuncRound): (JSC::mathProtoFuncSin): (JSC::mathProtoFuncSqrt): (JSC::mathProtoFuncTan):
  • runtime/NativeErrorConstructor.cpp: (JSC::NativeErrorConstructor::NativeErrorConstructor):
  • runtime/NumberConstructor.cpp: (JSC::NumberConstructor::NumberConstructor): (JSC::numberConstructorNaNValue): (JSC::numberConstructorNegInfinity): (JSC::numberConstructorPosInfinity): (JSC::numberConstructorMaxValue): (JSC::numberConstructorMinValue): (JSC::constructWithNumberConstructor): (JSC::callNumberConstructor):
  • runtime/NumberPrototype.cpp: (JSC::NumberPrototype::NumberPrototype):
  • runtime/ObjectConstructor.cpp: (JSC::ObjectConstructor::ObjectConstructor):
  • runtime/Operations.cpp: (JSC::jsAddSlowCase):
  • runtime/Operations.h: (JSC::jsAdd):
  • runtime/PrototypeFunction.cpp: (JSC::PrototypeFunction::PrototypeFunction):
  • runtime/RegExpConstructor.cpp: (JSC::RegExpConstructor::RegExpConstructor): (JSC::RegExpMatchesArray::fillArrayInstance):
  • runtime/RegExpObject.cpp: (JSC::regExpObjectLastIndex):
  • runtime/StringConstructor.cpp: (JSC::StringConstructor::StringConstructor):
  • runtime/StringPrototype.cpp: (JSC::StringPrototype::StringPrototype): (JSC::stringProtoFuncReplace): (JSC::stringProtoFuncCharCodeAt): (JSC::stringProtoFuncIndexOf): (JSC::stringProtoFuncLastIndexOf): (JSC::stringProtoFuncSearch): (JSC::stringProtoFuncLocaleCompare):

2010-10-25 Oliver Hunt <oliver@apple.com>

Reviewed by Gavin Barraclough.

Remove exec and globalData arguments from jsNumber
https://bugs.webkit.org/show_bug.cgi?id=48270

Don't pass exec to jsNumber

  • JSUtils.cpp: (JSObjectKJSValue):
  • UserObjectImp.cpp: (UserObjectImp::toPrimitive):

2010-10-25 Oliver Hunt <oliver@apple.com>

Reviewed by Gavin Barraclough.

Remove exec and globalData arguments from jsNumber
https://bugs.webkit.org/show_bug.cgi?id=48270

Mechanical removal of exec parameter to jsNumber.

  • bindings/js/JSAudioConstructor.cpp: (WebCore::JSAudioConstructor::JSAudioConstructor):
  • bindings/js/JSCSSStyleDeclarationCustom.cpp: (WebCore::JSCSSStyleDeclaration::nameGetter):
  • bindings/js/JSCoordinatesCustom.cpp: (WebCore::JSCoordinates::altitude): (WebCore::JSCoordinates::altitudeAccuracy): (WebCore::JSCoordinates::heading): (WebCore::JSCoordinates::speed):
  • bindings/js/JSDOMWindowCustom.cpp: (WebCore::JSDOMWindow::setTimeout): (WebCore::JSDOMWindow::setInterval):
  • bindings/js/JSDeviceMotionEventCustom.cpp: (WebCore::createAccelerationObject): (WebCore::createRotationRateObject): (WebCore::JSDeviceMotionEvent::interval):
  • bindings/js/JSDeviceOrientationEventCustom.cpp: (WebCore::JSDeviceOrientationEvent::alpha): (WebCore::JSDeviceOrientationEvent::beta): (WebCore::JSDeviceOrientationEvent::gamma):
  • bindings/js/JSGeolocationCustom.cpp: (WebCore::JSGeolocation::watchPosition):
  • bindings/js/JSHTMLInputElementCustom.cpp: (WebCore::JSHTMLInputElement::selectionStart): (WebCore::JSHTMLInputElement::selectionEnd):
  • bindings/js/JSHTMLOptionsCollectionCustom.cpp: (WebCore::JSHTMLOptionsCollection::length):
  • bindings/js/JSIDBKeyCustom.cpp: (WebCore::toJS):
  • bindings/js/JSInjectedScriptHostCustom.cpp: (WebCore::InjectedScriptHost::createInjectedScript): (WebCore::JSInjectedScriptHost::pushNodePathToFrontend):
  • bindings/js/JSOptionConstructor.cpp: (WebCore::JSOptionConstructor::JSOptionConstructor):
  • bindings/js/JSSQLResultSetRowListCustom.cpp: (WebCore::JSSQLResultSetRowList::item):
  • bindings/js/JSSVGLengthCustom.cpp: (WebCore::JSSVGLength::value):
  • bindings/js/JSScriptProfileNodeCustom.cpp: (WebCore::JSScriptProfileNode::callUID):
  • bindings/js/JSWebGLRenderingContextCustom.cpp: (WebCore::toJS):
  • bindings/js/JSWorkerContextCustom.cpp: (WebCore::JSWorkerContext::setTimeout): (WebCore::JSWorkerContext::setInterval):
  • bindings/js/JSWorkerContextErrorHandler.cpp: (WebCore::JSWorkerContextErrorHandler::handleEvent):
  • bindings/js/ScriptFunctionCall.cpp: (WebCore::ScriptCallArgumentHandler::appendArgument):
  • bindings/js/SerializedScriptValue.cpp: (WebCore::CloneDeserializer::readTerminal):
  • bindings/scripts/CodeGeneratorJS.pm:
  • bridge/c/c_instance.cpp: (JSC::Bindings::CInstance::numberValue):
  • bridge/c/c_utility.cpp: (JSC::Bindings::convertNPVariantToValue):
  • bridge/jni/jsc/JNIBridgeJSC.cpp: (JavaField::valueFromInstance): (JavaArray::valueAt):
  • bridge/jni/jsc/JavaInstanceJSC.cpp: (JavaInstance::numberValue): (JavaInstance::invokeMethod):
  • bridge/objc/objc_instance.mm: (ObjcInstance::numberValue):
  • bridge/objc/objc_utility.mm: (JSC::Bindings::convertObjcValueToValue):
  • bridge/runtime_array.cpp: (JSC::RuntimeArray::lengthGetter):
  • bridge/runtime_method.cpp: (JSC::RuntimeMethod::lengthGetter):

2010-10-25 Oliver Hunt <oliver@apple.com>

Reviewed by Gavin Barraclough.

Remove exec and globalData arguments from jsNumber
https://bugs.webkit.org/show_bug.cgi?id=48270

Mechanical removal of exec parameter to jsNumber

  • Plugins/Hosted/NetscapePluginInstanceProxy.mm: (WebKit::NetscapePluginInstanceProxy::demarshalValueFromArray):
  • Plugins/Hosted/ProxyInstance.mm: (WebKit::ProxyInstance::numberValue):

2010-10-25 Oliver Hunt <oliver@apple.com>

Reviewed by Gavin Barraclough.

Remove exec and globalData arguments from jsNumber
https://bugs.webkit.org/show_bug.cgi?id=48270

Mechanical removal of exec parameter to jsNumber

  • WebProcess/Plugins/NPRuntimeObjectMap.cpp: (WebKit::NPRuntimeObjectMap::convertNPVariantToJSValue):
3:21 PM Changeset in webkit [70495] by mihaip@chromium.org
  • 109 edits
    108 copies
    10 adds in trunk/LayoutTests

2010-10-25 Mihai Parparita <mihaip@chromium.org>

Unreviewed Snow Leopard rebaseline of animations, compositing, css1,
css3, dom, and fast/backgrounds.

  • platform/mac-leopard/animations/state-at-end-event-expected.checksum: Copied from LayoutTests/platform/mac/animations/state-at-end-event-expected.checksum.
  • platform/mac-leopard/animations/state-at-end-event-expected.png: Copied from LayoutTests/platform/mac/animations/state-at-end-event-expected.png.
  • platform/mac-leopard/compositing/generated-content-expected.checksum: Copied from LayoutTests/platform/mac/compositing/generated-content-expected.checksum.
  • platform/mac-leopard/compositing/generated-content-expected.png: Copied from LayoutTests/platform/mac/compositing/generated-content-expected.png.
  • platform/mac-leopard/compositing/geometry/composited-html-size-expected.checksum: Copied from LayoutTests/platform/mac/compositing/geometry/composited-html-size-expected.checksum.
  • platform/mac-leopard/compositing/geometry/composited-html-size-expected.png: Copied from LayoutTests/platform/mac/compositing/geometry/composited-html-size-expected.png.
  • platform/mac-leopard/compositing/geometry/outline-change-expected.checksum: Copied from LayoutTests/platform/mac/compositing/geometry/outline-change-expected.checksum.
  • platform/mac-leopard/compositing/geometry/outline-change-expected.png: Copied from LayoutTests/platform/mac/compositing/geometry/outline-change-expected.png.
  • platform/mac-leopard/compositing/iframes/composited-iframe-alignment-expected.checksum: Copied from LayoutTests/platform/mac/compositing/iframes/composited-iframe-alignment-expected.checksum.
  • platform/mac-leopard/compositing/iframes/composited-iframe-alignment-expected.png: Copied from LayoutTests/platform/mac/compositing/iframes/composited-iframe-alignment-expected.png.
  • platform/mac-leopard/compositing/iframes/iframe-in-composited-layer-expected.checksum: Copied from LayoutTests/platform/mac/compositing/iframes/iframe-in-composited-layer-expected.checksum.
  • platform/mac-leopard/compositing/iframes/iframe-in-composited-layer-expected.png: Copied from LayoutTests/platform/mac/compositing/iframes/iframe-in-composited-layer-expected.png.
  • platform/mac-leopard/compositing/overflow/parent-overflow-expected.checksum: Copied from LayoutTests/platform/mac/compositing/overflow/parent-overflow-expected.checksum.
  • platform/mac-leopard/compositing/overflow/parent-overflow-expected.png: Copied from LayoutTests/platform/mac/compositing/overflow/parent-overflow-expected.png.
  • platform/mac-leopard/compositing/sibling-positioning-expected.checksum: Copied from LayoutTests/platform/mac/compositing/sibling-positioning-expected.checksum.
  • platform/mac-leopard/compositing/sibling-positioning-expected.png: Copied from LayoutTests/platform/mac/compositing/sibling-positioning-expected.png.
  • platform/mac-leopard/css1/box_properties/acid_test-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/acid_test-expected.checksum.
  • platform/mac-leopard/css1/box_properties/acid_test-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/acid_test-expected.png.
  • platform/mac-leopard/css1/box_properties/float_margin-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/float_margin-expected.checksum.
  • platform/mac-leopard/css1/box_properties/float_margin-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/float_margin-expected.png.
  • platform/mac-leopard/css1/box_properties/width-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/width-expected.checksum.
  • platform/mac-leopard/css1/box_properties/width-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/width-expected.png.
  • platform/mac-leopard/css1/conformance/forward_compatible_parsing-expected.checksum: Copied from LayoutTests/platform/mac/css1/conformance/forward_compatible_parsing-expected.checksum.
  • platform/mac-leopard/css1/conformance/forward_compatible_parsing-expected.png: Copied from LayoutTests/platform/mac/css1/conformance/forward_compatible_parsing-expected.png.
  • platform/mac-leopard/css1/font_properties/font_variant-expected.checksum: Copied from LayoutTests/platform/mac/css1/font_properties/font_variant-expected.checksum.
  • platform/mac-leopard/css1/font_properties/font_variant-expected.png: Copied from LayoutTests/platform/mac/css1/font_properties/font_variant-expected.png.
  • platform/mac-leopard/css3/css3-modsel-33-expected.checksum: Copied from LayoutTests/platform/mac/css3/css3-modsel-33-expected.checksum.
  • platform/mac-leopard/css3/css3-modsel-33-expected.png: Copied from LayoutTests/platform/mac/css3/css3-modsel-33-expected.png.
  • platform/mac-leopard/css3/css3-modsel-35-expected.checksum: Copied from LayoutTests/platform/mac/css3/css3-modsel-35-expected.checksum.
  • platform/mac-leopard/css3/css3-modsel-35-expected.png: Copied from LayoutTests/platform/mac/css3/css3-modsel-35-expected.png.
  • platform/mac-leopard/css3/css3-modsel-36-expected.checksum: Copied from LayoutTests/platform/mac/css3/css3-modsel-36-expected.checksum.
  • platform/mac-leopard/css3/css3-modsel-36-expected.png: Copied from LayoutTests/platform/mac/css3/css3-modsel-36-expected.png.
  • platform/mac-leopard/css3/css3-modsel-37-expected.checksum: Copied from LayoutTests/platform/mac/css3/css3-modsel-37-expected.checksum.
  • platform/mac-leopard/css3/css3-modsel-37-expected.png: Copied from LayoutTests/platform/mac/css3/css3-modsel-37-expected.png.
  • platform/mac-leopard/dom/xhtml/level3/core/documentgetinputencoding03-expected.checksum: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/documentgetinputencoding03-expected.checksum.
  • platform/mac-leopard/dom/xhtml/level3/core/documentgetinputencoding03-expected.png: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/documentgetinputencoding03-expected.png.
  • platform/mac-leopard/dom/xhtml/level3/core/entitygetinputencoding02-expected.checksum: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/entitygetinputencoding02-expected.checksum.
  • platform/mac-leopard/dom/xhtml/level3/core/entitygetinputencoding02-expected.png: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/entitygetinputencoding02-expected.png.
  • platform/mac-leopard/dom/xhtml/level3/core/entitygetxmlversion02-expected.checksum: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/entitygetxmlversion02-expected.checksum.
  • platform/mac-leopard/dom/xhtml/level3/core/entitygetxmlversion02-expected.png: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/entitygetxmlversion02-expected.png.
  • platform/mac-leopard/dom/xhtml/level3/core/nodegetbaseuri05-expected.checksum: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/nodegetbaseuri05-expected.checksum.
  • platform/mac-leopard/dom/xhtml/level3/core/nodegetbaseuri05-expected.png: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/nodegetbaseuri05-expected.png.
  • platform/mac-leopard/dom/xhtml/level3/core/nodegetbaseuri07-expected.checksum: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/nodegetbaseuri07-expected.checksum.
  • platform/mac-leopard/dom/xhtml/level3/core/nodegetbaseuri07-expected.png: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/nodegetbaseuri07-expected.png.
  • platform/mac-leopard/dom/xhtml/level3/core/nodegetbaseuri09-expected.checksum: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/nodegetbaseuri09-expected.checksum.
  • platform/mac-leopard/dom/xhtml/level3/core/nodegetbaseuri09-expected.png: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/nodegetbaseuri09-expected.png.
  • platform/mac-leopard/dom/xhtml/level3/core/nodegetbaseuri10-expected.checksum: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/nodegetbaseuri10-expected.checksum.
  • platform/mac-leopard/dom/xhtml/level3/core/nodegetbaseuri10-expected.png: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/nodegetbaseuri10-expected.png.
  • platform/mac-leopard/dom/xhtml/level3/core/nodegetbaseuri11-expected.checksum: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/nodegetbaseuri11-expected.checksum.
  • platform/mac-leopard/dom/xhtml/level3/core/nodegetbaseuri11-expected.png: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/nodegetbaseuri11-expected.png.
  • platform/mac-leopard/dom/xhtml/level3/core/nodegetbaseuri15-expected.checksum: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/nodegetbaseuri15-expected.checksum.
  • platform/mac-leopard/dom/xhtml/level3/core/nodegetbaseuri15-expected.png: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/nodegetbaseuri15-expected.png.
  • platform/mac-leopard/dom/xhtml/level3/core/nodegetbaseuri17-expected.checksum: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/nodegetbaseuri17-expected.checksum.
  • platform/mac-leopard/dom/xhtml/level3/core/nodegetbaseuri17-expected.png: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/nodegetbaseuri17-expected.png.
  • platform/mac-leopard/dom/xhtml/level3/core/nodegetbaseuri18-expected.checksum: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/nodegetbaseuri18-expected.checksum.
  • platform/mac-leopard/dom/xhtml/level3/core/nodegetbaseuri18-expected.png: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/nodegetbaseuri18-expected.png.
  • platform/mac-leopard/dom/xhtml/level3/core/nodelookupnamespaceuri01-expected.checksum: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/nodelookupnamespaceuri01-expected.checksum.
  • platform/mac-leopard/dom/xhtml/level3/core/nodelookupnamespaceuri01-expected.png: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/nodelookupnamespaceuri01-expected.png.
  • platform/mac-leopard/dom/xhtml/level3/core/nodelookupprefix19-expected.checksum: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/nodelookupprefix19-expected.checksum.
  • platform/mac-leopard/dom/xhtml/level3/core/nodelookupprefix19-expected.png: Copied from LayoutTests/platform/mac/dom/xhtml/level3/core/nodelookupprefix19-expected.png.
  • platform/mac-leopard/fast/backgrounds/001-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/001-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/001-expected.png: Copied from LayoutTests/platform/mac/fast/backgrounds/001-expected.png.
  • platform/mac-leopard/fast/backgrounds/animated-gif-as-background-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/animated-gif-as-background-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/animated-gif-as-background-expected.png: Copied from LayoutTests/platform/mac/fast/backgrounds/animated-gif-as-background-expected.png.
  • platform/mac-leopard/fast/backgrounds/background-clip-text-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/background-clip-text-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/background-clip-text-expected.png: Copied from LayoutTests/platform/mac/fast/backgrounds/background-clip-text-expected.png.
  • platform/mac-leopard/fast/backgrounds/background-inherit-color-bug-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/background-inherit-color-bug-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/background-inherit-color-bug-expected.png: Copied from LayoutTests/platform/mac/fast/backgrounds/background-inherit-color-bug-expected.png.
  • platform/mac-leopard/fast/backgrounds/background-origin-root-element-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/background-origin-root-element-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/background-origin-root-element-expected.png: Copied from LayoutTests/platform/mac/fast/backgrounds/background-origin-root-element-expected.png.
  • platform/mac-leopard/fast/backgrounds/background-position-1-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/background-position-1-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/background-position-1-expected.png: Copied from LayoutTests/platform/mac/fast/backgrounds/background-position-1-expected.png.
  • platform/mac-leopard/fast/backgrounds/background-position-rounding-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/background-position-rounding-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/background-position-rounding-expected.png: Copied from LayoutTests/platform/mac/fast/backgrounds/background-position-rounding-expected.png.
  • platform/mac-leopard/fast/backgrounds/body-generated-image-propagated-to-root-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/body-generated-image-propagated-to-root-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/body-generated-image-propagated-to-root-expected.png: Copied from LayoutTests/platform/mac/fast/backgrounds/body-generated-image-propagated-to-root-expected.png.
  • platform/mac-leopard/fast/backgrounds/opacity-on-document-element-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/opacity-on-document-element-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/opacity-on-document-element-expected.png: Copied from LayoutTests/platform/mac/fast/backgrounds/opacity-on-document-element-expected.png.
  • platform/mac-leopard/fast/backgrounds/repeat/mask-negative-offset-repeat-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/repeat/mask-negative-offset-repeat-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/repeat/mask-negative-offset-repeat-expected.png: Copied from LayoutTests/platform/mac/fast/backgrounds/repeat/mask-negative-offset-repeat-expected.png.
  • platform/mac-leopard/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.png: Copied from LayoutTests/platform/mac/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.png.
  • platform/mac-leopard/fast/backgrounds/size/backgroundSize02-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/size/backgroundSize02-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/size/backgroundSize02-expected.png: Copied from LayoutTests/platform/mac/fast/backgrounds/size/backgroundSize02-expected.png.
  • platform/mac-leopard/fast/backgrounds/size/backgroundSize04-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/size/backgroundSize04-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/size/backgroundSize04-expected.png: Copied from LayoutTests/platform/mac/fast/backgrounds/size/backgroundSize04-expected.png.
  • platform/mac-leopard/fast/backgrounds/size/backgroundSize13-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/size/backgroundSize13-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/size/backgroundSize13-expected.png: Copied from LayoutTests/platform/mac/fast/backgrounds/size/backgroundSize13-expected.png.
  • platform/mac-leopard/fast/backgrounds/size/backgroundSize14-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/size/backgroundSize14-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/size/backgroundSize14-expected.png: Copied from LayoutTests/platform/mac/fast/backgrounds/size/backgroundSize14-expected.png.
  • platform/mac-leopard/fast/backgrounds/size/backgroundSize15-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/size/backgroundSize15-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/size/backgroundSize15-expected.png: Copied from LayoutTests/platform/mac/fast/backgrounds/size/backgroundSize15-expected.png.
  • platform/mac-leopard/fast/backgrounds/size/backgroundSize16-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/size/backgroundSize16-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/size/backgroundSize16-expected.png: Copied from LayoutTests/platform/mac/fast/backgrounds/size/backgroundSize16-expected.png.
  • platform/mac-leopard/fast/backgrounds/size/zero-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/size/zero-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/size/zero-expected.png: Copied from LayoutTests/platform/mac/fast/backgrounds/size/zero-expected.png.
  • platform/mac-leopard/fast/backgrounds/solid-color-context-restore-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/solid-color-context-restore-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/solid-color-context-restore-expected.png: Copied from LayoutTests/platform/mac/fast/backgrounds/solid-color-context-restore-expected.png.
  • platform/mac-leopard/fast/backgrounds/svg-as-background-1-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/svg-as-background-1-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/svg-as-background-1-expected.png: Copied from LayoutTests/platform/mac/fast/backgrounds/svg-as-background-1-expected.png.
  • platform/mac-leopard/fast/backgrounds/svg-as-background-3-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/svg-as-background-3-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/svg-as-background-3-expected.png: Copied from LayoutTests/platform/mac/fast/backgrounds/svg-as-background-3-expected.png.
  • platform/mac-leopard/fast/backgrounds/svg-as-background-5-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/svg-as-background-5-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/svg-as-background-5-expected.png: Copied from LayoutTests/platform/mac/fast/backgrounds/svg-as-background-5-expected.png.
  • platform/mac-leopard/fast/backgrounds/svg-as-background-6-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/svg-as-background-6-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/svg-as-background-6-expected.png: Copied from LayoutTests/platform/mac/fast/backgrounds/svg-as-background-6-expected.png.
  • platform/mac-leopard/fast/backgrounds/svg-as-mask-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/svg-as-mask-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/svg-as-mask-expected.png: Copied from LayoutTests/platform/mac/fast/backgrounds/svg-as-mask-expected.png.
  • platform/mac/animations/state-at-end-event-expected.checksum:
  • platform/mac/animations/state-at-end-event-expected.png:
  • platform/mac/compositing/generated-content-expected.checksum:
  • platform/mac/compositing/generated-content-expected.png:
  • platform/mac/compositing/geometry/composited-html-size-expected.checksum:
  • platform/mac/compositing/geometry/composited-html-size-expected.png:
  • platform/mac/compositing/geometry/outline-change-expected.checksum:
  • platform/mac/compositing/geometry/outline-change-expected.png:
  • platform/mac/compositing/geometry/tall-page-composited-expected.checksum: Added.
  • platform/mac/compositing/geometry/tall-page-composited-expected.png: Added.
  • platform/mac/compositing/iframes/composited-iframe-alignment-expected.checksum:
  • platform/mac/compositing/iframes/composited-iframe-alignment-expected.png:
  • platform/mac/compositing/iframes/iframe-in-composited-layer-expected.checksum:
  • platform/mac/compositing/iframes/iframe-in-composited-layer-expected.png:
  • platform/mac/compositing/overflow/parent-overflow-expected.checksum:
  • platform/mac/compositing/overflow/parent-overflow-expected.png:
  • platform/mac/compositing/sibling-positioning-expected.checksum:
  • platform/mac/compositing/sibling-positioning-expected.png:
  • platform/mac/css1/box_properties/acid_test-expected.checksum:
  • platform/mac/css1/box_properties/acid_test-expected.png:
  • platform/mac/css1/box_properties/float_margin-expected.checksum:
  • platform/mac/css1/box_properties/float_margin-expected.png:
  • platform/mac/css1/box_properties/width-expected.checksum:
  • platform/mac/css1/box_properties/width-expected.png:
  • platform/mac/css1/conformance/forward_compatible_parsing-expected.checksum:
  • platform/mac/css1/conformance/forward_compatible_parsing-expected.png:
  • platform/mac/css1/font_properties/font_variant-expected.checksum:
  • platform/mac/css1/font_properties/font_variant-expected.png:
  • platform/mac/css3/css3-modsel-33-expected.checksum:
  • platform/mac/css3/css3-modsel-33-expected.png:
  • platform/mac/css3/css3-modsel-35-expected.checksum:
  • platform/mac/css3/css3-modsel-35-expected.png:
  • platform/mac/css3/css3-modsel-36-expected.checksum:
  • platform/mac/css3/css3-modsel-36-expected.png:
  • platform/mac/css3/css3-modsel-37-expected.checksum:
  • platform/mac/css3/css3-modsel-37-expected.png:
  • platform/mac/dom/xhtml/level3/core/documentgetinputencoding03-expected.checksum:
  • platform/mac/dom/xhtml/level3/core/documentgetinputencoding03-expected.png:
  • platform/mac/dom/xhtml/level3/core/entitygetinputencoding02-expected.checksum:
  • platform/mac/dom/xhtml/level3/core/entitygetinputencoding02-expected.png:
  • platform/mac/dom/xhtml/level3/core/entitygetxmlversion02-expected.checksum:
  • platform/mac/dom/xhtml/level3/core/entitygetxmlversion02-expected.png:
  • platform/mac/dom/xhtml/level3/core/nodegetbaseuri05-expected.checksum:
  • platform/mac/dom/xhtml/level3/core/nodegetbaseuri05-expected.png:
  • platform/mac/dom/xhtml/level3/core/nodegetbaseuri07-expected.checksum:
  • platform/mac/dom/xhtml/level3/core/nodegetbaseuri07-expected.png:
  • platform/mac/dom/xhtml/level3/core/nodegetbaseuri09-expected.checksum:
  • platform/mac/dom/xhtml/level3/core/nodegetbaseuri09-expected.png:
  • platform/mac/dom/xhtml/level3/core/nodegetbaseuri10-expected.checksum:
  • platform/mac/dom/xhtml/level3/core/nodegetbaseuri10-expected.png:
  • platform/mac/dom/xhtml/level3/core/nodegetbaseuri11-expected.checksum:
  • platform/mac/dom/xhtml/level3/core/nodegetbaseuri11-expected.png:
  • platform/mac/dom/xhtml/level3/core/nodegetbaseuri15-expected.checksum:
  • platform/mac/dom/xhtml/level3/core/nodegetbaseuri15-expected.png:
  • platform/mac/dom/xhtml/level3/core/nodegetbaseuri17-expected.checksum:
  • platform/mac/dom/xhtml/level3/core/nodegetbaseuri17-expected.png:
  • platform/mac/dom/xhtml/level3/core/nodegetbaseuri18-expected.checksum:
  • platform/mac/dom/xhtml/level3/core/nodegetbaseuri18-expected.png:
  • platform/mac/dom/xhtml/level3/core/nodelookupnamespaceuri01-expected.checksum:
  • platform/mac/dom/xhtml/level3/core/nodelookupnamespaceuri01-expected.png:
  • platform/mac/dom/xhtml/level3/core/nodelookupprefix19-expected.checksum:
  • platform/mac/dom/xhtml/level3/core/nodelookupprefix19-expected.png:
  • platform/mac/fast/backgrounds/001-expected.checksum:
  • platform/mac/fast/backgrounds/001-expected.png:
  • platform/mac/fast/backgrounds/animated-gif-as-background-expected.checksum:
  • platform/mac/fast/backgrounds/animated-gif-as-background-expected.png:
  • platform/mac/fast/backgrounds/background-clip-text-expected.checksum:
  • platform/mac/fast/backgrounds/background-clip-text-expected.png:
  • platform/mac/fast/backgrounds/background-inherit-color-bug-expected.checksum:
  • platform/mac/fast/backgrounds/background-inherit-color-bug-expected.png:
  • platform/mac/fast/backgrounds/background-origin-root-element-expected.checksum:
  • platform/mac/fast/backgrounds/background-origin-root-element-expected.png:
  • platform/mac/fast/backgrounds/background-position-1-expected.checksum:
  • platform/mac/fast/backgrounds/background-position-1-expected.png:
  • platform/mac/fast/backgrounds/background-position-rounding-expected.checksum:
  • platform/mac/fast/backgrounds/background-position-rounding-expected.png:
  • platform/mac/fast/backgrounds/body-generated-image-propagated-to-root-expected.checksum:
  • platform/mac/fast/backgrounds/body-generated-image-propagated-to-root-expected.png:
  • platform/mac/fast/backgrounds/opacity-on-document-element-expected.checksum:
  • platform/mac/fast/backgrounds/opacity-on-document-element-expected.png:
  • platform/mac/fast/backgrounds/repeat/mask-negative-offset-repeat-expected.checksum:
  • platform/mac/fast/backgrounds/repeat/mask-negative-offset-repeat-expected.png:
  • platform/mac/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.checksum:
  • platform/mac/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.png:
  • platform/mac/fast/backgrounds/size/backgroundSize02-expected.checksum:
  • platform/mac/fast/backgrounds/size/backgroundSize02-expected.png:
  • platform/mac/fast/backgrounds/size/backgroundSize04-expected.checksum:
  • platform/mac/fast/backgrounds/size/backgroundSize04-expected.png:
  • platform/mac/fast/backgrounds/size/backgroundSize13-expected.checksum:
  • platform/mac/fast/backgrounds/size/backgroundSize13-expected.png:
  • platform/mac/fast/backgrounds/size/backgroundSize14-expected.checksum:
  • platform/mac/fast/backgrounds/size/backgroundSize14-expected.png:
  • platform/mac/fast/backgrounds/size/backgroundSize15-expected.checksum:
  • platform/mac/fast/backgrounds/size/backgroundSize15-expected.png:
  • platform/mac/fast/backgrounds/size/backgroundSize16-expected.checksum:
  • platform/mac/fast/backgrounds/size/backgroundSize16-expected.png:
  • platform/mac/fast/backgrounds/size/zero-expected.checksum:
  • platform/mac/fast/backgrounds/size/zero-expected.png:
  • platform/mac/fast/backgrounds/solid-color-context-restore-expected.checksum:
  • platform/mac/fast/backgrounds/solid-color-context-restore-expected.png:
  • platform/mac/fast/backgrounds/svg-as-background-1-expected.checksum:
  • platform/mac/fast/backgrounds/svg-as-background-1-expected.png:
  • platform/mac/fast/backgrounds/svg-as-background-3-expected.checksum:
  • platform/mac/fast/backgrounds/svg-as-background-3-expected.png:
  • platform/mac/fast/backgrounds/svg-as-background-5-expected.checksum:
  • platform/mac/fast/backgrounds/svg-as-background-5-expected.png:
  • platform/mac/fast/backgrounds/svg-as-background-6-expected.checksum:
  • platform/mac/fast/backgrounds/svg-as-background-6-expected.png:
  • platform/mac/fast/backgrounds/svg-as-mask-expected.checksum:
  • platform/mac/fast/backgrounds/svg-as-mask-expected.png:
3:19 PM Changeset in webkit [70494] by satish@chromium.org
  • 2 edits in trunk/WebKit/chromium

2010-10-25 Satish Sampath <satish@chromium.org>

Unreviewed, fix for a build break caused by my earlier patch.

  • public/WebSpeechInputListener.h: (WebKit::WebSpeechInputListener::setRecognitionResult): Explicitly invoking the correct constructor.
3:17 PM Changeset in webkit [70493] by rniwa@webkit.org
  • 1 edit
    2 adds in trunk/LayoutTests

2010-10-25 Ryosuke Niwa <rniwa@webkit.org>

Reviewed by Ojan Vafai.

Unformat deletes images
https://bugs.webkit.org/show_bug.cgi?id=17926

  • editing/execCommand/remove-format-image-expected.txt: Added.
  • editing/execCommand/remove-format-image.html: Added.
2:37 PM Changeset in webkit [70492] by Dimitri Glazkov
  • 1 edit
    9 adds in trunk/LayoutTests

2010-10-25 Dimitri Glazkov <Dimitri Glazkov>

[Chromium] Added expectations for r70482.
https://bugs.webkit.org/show_bug.cgi?id=48257

  • platform/chromium-linux/fast/blockflow/english-bt-text-expected.checksum: Added.
  • platform/chromium-linux/fast/blockflow/english-rl-text-expected.checksum: Added.
  • platform/chromium-mac/fast/blockflow/english-bt-text-expected.checksum: Added.
  • platform/chromium-win/fast/blockflow/english-bt-text-expected.checksum: Added.
  • platform/chromium-win/fast/blockflow/english-bt-text-expected.png: Added.
  • platform/chromium-win/fast/blockflow/english-bt-text-expected.txt: Added.
  • platform/chromium-win/fast/blockflow/english-rl-text-expected.checksum: Added.
  • platform/chromium-win/fast/blockflow/english-rl-text-expected.png: Added.
  • platform/chromium-win/fast/blockflow/english-rl-text-expected.txt: Added.
2:29 PM Changeset in webkit [70491] by andersca@apple.com
  • 8 edits in trunk/WebKit2

Replace matchCountDidChange with didFindString/didFailToFindString
https://bugs.webkit.org/show_bug.cgi?id=48262
<rdar://problem/8568928>

Reviewed by Darin Adler.

  • UIProcess/API/C/WKPage.h:
  • UIProcess/WebFindClient.cpp:

(WebKit::WebFindClient::didFindString):
(WebKit::WebFindClient::didFailToFindString):

  • UIProcess/WebFindClient.h:
  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::didFindString):
(WebKit::WebPageProxy::didFailToFindString):

  • UIProcess/WebPageProxy.h:
  • UIProcess/WebPageProxy.messages.in:
  • WebProcess/WebPage/FindController.cpp:

(WebKit::FindController::findString):

2:10 PM Changeset in webkit [70490] by satish@chromium.org
  • 19 edits
    4 adds in trunk

2010-10-21 Satish Sampath <satish@chromium.org>

Reviewed by Jeremy Orlow.

Allow embedder to pass on all the speech recognition results to the input element.
https://bugs.webkit.org/show_bug.cgi?id=48068

No new tests added as functionality has not changed, tests will be added in the next
patch where these results are exposed as an attribute to scripts.

  • Android.mk: Added new source files.
  • GNUmakefile.am:
  • WebCore.gypi:
  • WebCore.pro:
  • WebCore.xcodeproj/project.pbxproj:
  • page/SpeechInput.cpp: (WebCore::SpeechInput::setRecognitionResult): Accept an array instead of a single string.
  • page/SpeechInput.h:
  • page/SpeechInputListener.h:
  • page/SpeechInputResult.cpp: Added, defines a class for managing a speech input result. (WebCore::SpeechInputResult::create): (WebCore::SpeechInputResult::SpeechInputResult): (WebCore::SpeechInputResult::confidence): (WebCore::SpeechInputResult::utterance):
  • page/SpeechInputResult.h: Added.
  • platform/mock/SpeechInputClientMock.cpp: (WebCore::SpeechInputClientMock::timerFired):
  • rendering/TextControlInnerElements.cpp: (WebCore::InputFieldSpeechButtonElement::setRecognitionResult):
  • rendering/TextControlInnerElements.h:

2010-10-21 Satish Sampath <satish@chromium.org>

Reviewed by Jeremy Orlow.

Allow embedder to pass on all the speech recognition results to the input element.
https://bugs.webkit.org/show_bug.cgi?id=48068

  • WebKit.gyp: Added new files
  • public/WebSpeechInputListener.h:
  • public/WebSpeechInputResult.h: Added, wrapper around WebCore::SpeechInputResult (WebKit::WebSpeechInputResult::WebSpeechInputResult): (WebKit::WebSpeechInputResult::~WebSpeechInputResult):
  • src/SpeechInputClientImpl.cpp: (WebKit::SpeechInputClientImpl::setRecognitionResult): Accepts an array instead of a single string.
  • src/SpeechInputClientImpl.h:
  • src/WebSpeechInputControllerMockImpl.cpp: (WebKit::WebSpeechInputControllerMockImpl::setRecognitionResult):
  • src/WebSpeechInputControllerMockImpl.h:
  • src/WebSpeechInputResult.cpp: Added. (WebKit::WebSpeechInputResult::reset): (WebKit::WebSpeechInputResult::WebSpeechInputResult): (WebKit::WebSpeechInputResult::set): (WebKit::WebSpeechInputResult::operator PassRefPtr<WebCore::SpeechInputResult>):
2:02 PM Changeset in webkit [70489] by Dimitri Glazkov
  • 2 edits in trunk/LayoutTests

2010-10-25 Dimitri Glazkov <Dimitri Glazkov>

Added more flakiness expectations.
https://bugs.webkit.org/show_bug.cgi?id=48263

  • platform/chromium/test_expectations.txt: Added flaky timeout.
1:45 PM Changeset in webkit [70488] by jianli@chromium.org
  • 9 edits in trunk

Support appending an ArrayBuffer object in BlobBuilder
https://bugs.webkit.org/show_bug.cgi?id=47701

Reviewed by David Levin.

WebCore:

Test cases have been added to read-blob-test-cases.js.

  • fileapi/BlobBuilder.cpp:

(WebCore::BlobBuilder::getBuffer):
(WebCore::BlobBuilder::append): Removed bool return values since they
weren't used.

  • fileapi/BlobBuilder.h:
  • fileapi/BlobBuilder.idl:

LayoutTests:

  • fast/files/read-blob-async-expected.txt:
  • fast/files/resources/read-blob-test-cases.js:

(testReadingSingleArrayBufferBlob):
(testReadingSlicedArrayBufferBlob):
(testReadingMultipleArrayBufferBlob):
(testReadingHybridBlob):
(testReadingSlicedHybridBlob):
(testReadingTripleSlicedHybridBlob):

  • fast/files/workers/worker-read-blob-async-expected.txt:
  • fast/files/workers/worker-read-blob-sync-expected.txt:
1:43 PM Changeset in webkit [70487] by noam.rosenthal@nokia.com
  • 10 edits in trunk

2010-10-25 No'am Rosenthal <noam.rosenthal@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

[Texmap] [Qt] Texture mapper initial implementation
https://bugs.webkit.org/show_bug.cgi?id=47070

Glue layer (WebCoreSupport) changes to allow connecting TextureMapper to a Qt PageClient, i.e.
a QWebView or a QGraphicsWebView. This enables the new type, TextureMapperPlatformLayer, to be recognized both by
the compositor and by the page client.
Note that this is temporarily an opt-in, under USE(TEXTURE_MAPPER)

No new tests: the existing tests under LayoutTests/compositing already cover this.

  • platform/graphics/GraphicsLayer.h:
  • platform/qt/QWebPageClient.h: (QWebPageClient::setRootGraphicsLayer):

2010-10-25 No'am Rosenthal <noam.rosenthal@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

[Texmap] [Qt] Texture mapper initial implementation
https://bugs.webkit.org/show_bug.cgi?id=47070

Glue layer (WebCoreSupport) changes to allow connecting TextureMapper to a Qt PageClient, i.e.
a QWebView or a QGraphicsWebView. This enables the new type, TextureMapperPlatformLayer, to be recognized both by
the compositor and by the page client.
Note that this is temporarily an opt-in, under USE(TEXTURE_MAPPER)

  • Api/qwebframe.h:
  • Api/qwebframe_p.h: (QWebFramePrivate::QWebFramePrivate):
  • Api/qwebpage.cpp: (QWebPage::setView):
  • WebCoreSupport/ChromeClientQt.cpp: (WebCore::ChromeClientQt::attachRootGraphicsLayer):
  • WebCoreSupport/PageClientQt.cpp: (WebCore::PlatformLayerProxyQt::PlatformLayerProxyQt): (WebCore::PlatformLayerProxyQt::~PlatformLayerProxyQt): (WebCore::PlatformLayerProxyQt::setSizeChanged): (WebCore::PlatformLayerProxyQWidget::PlatformLayerProxyQWidget): (WebCore::PlatformLayerProxyQWidget::eventFilter): (WebCore::PlatformLayerProxyQWidget::setNeedsDisplay): (WebCore::PlatformLayerProxyQWidget::setNeedsDisplayInRect): (WebCore::PlatformLayerProxyQGraphicsObject::PlatformLayerProxyQGraphicsWidget): (WebCore::PlatformLayerProxyQGraphicsObject::setNeedsDisplay): (WebCore::PlatformLayerProxyQGraphicsObject::setNeedsDisplayInRect): (WebCore::PageClientQWidget::setRootGraphicsLayer): (WebCore::PageClientQWidget::markForSync): (WebCore::PageClientQWidget::syncLayers): (WebCore::PageClientQGraphicsWidget::updateCompositingScrollPosition): (WebCore::PageClientQGraphicsWidget::createOrDeleteOverlay): (WebCore::PageClientQGraphicsWidget::setRootGraphicsLayer):
  • WebCoreSupport/PageClientQt.h: (WebCore::PageClientQWidget::PageClientQWidget): (WebCore::PageClientQWidget::allowsAcceleratedCompositing): (WebCore::PageClientQGraphicsWidget::PageClientQGraphicsWidget):
1:36 PM Changeset in webkit [70486] by weinig@apple.com
  • 2 edits in trunk/LayoutTests

Update WebKit2 skipped list.

Rubber-stamped by Jon Honeycutt.

  • platform/mac-wk2/Skipped:
1:20 PM Changeset in webkit [70485] by noam.rosenthal@nokia.com
  • 2 edits in trunk/WebCore

2010-10-25 No'am Rosenthal <noam.rosenthal@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

[Texmap] [Qt] Texture mapper initial implementation
https://bugs.webkit.org/show_bug.cgi?id=47070

Add a config flag and a define (WTF_USE_TEXTURE_MAPPER) to WebCore, to enable opt-in compilation of texture-mapper with Qt.

No new tests: WIP for a new implementation.

  • WebCore.pro:
1:11 PM Changeset in webkit [70484] by jianli@chromium.org
  • 4 edits
    2 adds in trunk

Calling FileReader.abort during reading could cause crash
https://bugs.webkit.org/show_bug.cgi?id=48163

Reviewed by David Levin.

WebCore:

Test: fast/files/file-reader-abort.html

  • fileapi/FileReader.cpp:

(WebCore::delayedAbort):
(WebCore::FileReader::abort): Schedule to do the abort later to work
around the case that abort() could be called from event handler.
(WebCore::FileReader::doAbort):
(WebCore::FileReader::didFail): Do not go with normal error handling
when we are in the process of aborting.
(WebCore::FileReader::failed):
(WebCore::FileReader::readyState):

  • fileapi/FileReader.h:

LayoutTests:

  • fast/files/file-reader-abort-expected.txt: Added.
  • fast/files/file-reader-abort.html: Added.
1:08 PM Changeset in webkit [70483] by Patrick Gansterer
  • 2 edits in trunk/WebCore

2010-10-25 Patrick Gansterer <Patrick Gansterer>

Reviewed by Adam Roben.

[WINCE] Buildfix for NetworkStateNotifier
https://bugs.webkit.org/show_bug.cgi?id=48240

WinCE does not support RegisterWaitForSingleObject, so disable it for now.

  • platform/network/win/NetworkStateNotifierWin.cpp: (WebCore::NetworkStateNotifier::NetworkStateNotifier):
1:06 PM Changeset in webkit [70482] by hyatt@apple.com
  • 11 edits
    8 adds in trunk

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

Reviewed by Dan Bernstein.

WebCore:

Make "rl" and "bt" writing-modes work for blocks and lines. InlineTextBox is refactored to compute the correct
top left corner and left baseline edge once so that can be passed down to all the painting functions instead of
tx and ty.

adjustment helpers have been added that can be called before painting children or lines and that fix up
the coordinates from flipped to physical.

Added fast/blockflow/english-rl-text.html and fast/blockflow/english-bt-text.html

  • rendering/InlineBox.cpp:

(WebCore::InlineBox::adjustForFlippedBlocksWritingMode):

  • rendering/InlineBox.h:
  • rendering/InlineFlowBox.cpp:

(WebCore::InlineFlowBox::paintBoxDecorations):
(WebCore::InlineFlowBox::paintMask):

  • rendering/InlineTextBox.cpp:

(WebCore::paintTextWithShadows):
(WebCore::InlineTextBox::paint):
(WebCore::InlineTextBox::paintSelection):
(WebCore::InlineTextBox::paintCompositionBackground):
(WebCore::InlineTextBox::paintDecoration):
(WebCore::InlineTextBox::paintSpellingOrGrammarMarker):
(WebCore::InlineTextBox::paintTextMatchMarker):
(WebCore::InlineTextBox::computeRectForReplacementMarker):
(WebCore::InlineTextBox::paintDocumentMarkers):
(WebCore::InlineTextBox::paintCompositionUnderline):

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

(WebCore::RenderBlock::paintChildren):
(WebCore::RenderBlock::paintFloats):

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::adjustForFlippedBlocksWritingMode):

  • rendering/RenderBox.h:
  • rendering/style/RenderStyle.h:

(WebCore::InheritedFlags::isFlippedBlocksWritingMode):

LayoutTests:

Make "rl" and "bt" writing-modes work for blocks and lines. InlineTextBox is refactored to compute the correct
top left corner and left baseline edge once so that can be passed down to all the painting functions instead of
tx and ty.

adjustment helpers have been added that can be called before painting children or lines and that fix up
the coordinates from flipped to physical.

Added fast/blockflow/english-rl-text.html and fast/blockflow/english-bt-text.html

  • fast/blockflow/english-bt-text.html: Added.
  • fast/blockflow/english-rl-text.html: Added.
  • platform/mac/fast/blockflow/english-bt-text-expected.checksum: Added.
  • platform/mac/fast/blockflow/english-bt-text-expected.png: Added.
  • platform/mac/fast/blockflow/english-bt-text-expected.txt: Added.
  • platform/mac/fast/blockflow/english-rl-text-expected.checksum: Added.
  • platform/mac/fast/blockflow/english-rl-text-expected.png: Added.
  • platform/mac/fast/blockflow/english-rl-text-expected.txt: Added.
1:04 PM Changeset in webkit [70481] by chang.shu@nokia.com
  • 4 edits in trunk/LayoutTests

2010-10-25 Chang Shu <chang.shu@nokia.com>

Reviewed by Antonio Gomes.

Should use eventSender for simulating keyboard events instead of using js
event.initKeyboardEvent. Otherwise, inside WebCore, the keyboardevent
object does not have a "PlatformKeyboardEvent" associated with it and this
results different behavior as the real key press.
This code change unveils that test snav-multiple-select.html is broken. It
alos causes snav-single-select.html hangs on Mac. These will be fixed in
seperate patches.
https://bugs.webkit.org/show_bug.cgi?id=48134

  • fast/events/spatial-navigation/resources/spatial-navigation-utils.js: (doMove):
  • fast/events/spatial-navigation/snav-multiple-select-expected.txt:
  • platform/mac/Skipped:
12:54 PM Changeset in webkit [70480] by andersca@apple.com
  • 9 edits in trunk

Add a pageDidScroll BundleUIClient callback
https://bugs.webkit.org/show_bug.cgi?id=48260
<rdar://problem/8531159>

Reviewed by Adam Roben.

WebKit2:

  • WebProcess/InjectedBundle/API/c/WKBundlePage.h:
  • WebProcess/InjectedBundle/InjectedBundlePageUIClient.cpp:

(WebKit::InjectedBundlePageUIClient::pageDidScroll):
Call the pageDidScroll callback.

  • WebProcess/InjectedBundle/InjectedBundlePageUIClient.h:
  • WebProcess/WebCoreSupport/WebChromeClient.cpp:

(WebKit::WebChromeClient::invalidateContentsForSlowScroll):
(WebKit::WebChromeClient::scroll):
Call pageDidScroll.

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::pageDidScroll):
Hide the find banner UI and call the BundleUIClient pageDidScroll callback.

WebKitTools:

  • WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp:

(WTR::InjectedBundlePage::InjectedBundlePage):

12:49 PM Changeset in webkit [70479] by bweinstein@apple.com
  • 2 edits in trunk/WebKit2

Control + Mousewheel shouldn't be handled in WebKit2
https://bugs.webkit.org/show_bug.cgi?id=48253

Reviewed by Adam Roben.

Don't handle a wheel event if Control is pressed, pass the message back to DefWindowProc.

  • UIProcess/win/WebView.cpp:

(WebKit::WebView::onWheelEvent):

12:48 PM Changeset in webkit [70478] by benm@google.com
  • 3 edits in trunk/WebCore

2010-10-25 Ben Murdoch <benm@google.com>

Reviewed by Steve Block.

Build break with ENABLE(BLOB) and not ENABLE(3D_CANVAS)
https://bugs.webkit.org/show_bug.cgi?id=48243

Build fix only so no new tests.

  • bindings/generic/RuntimeEnabledFeatures.h: Guard appropriately.
  • bindings/v8/custom/V8ArrayBufferViewCustom.h: ditto.
12:38 PM Changeset in webkit [70477] by inferno@chromium.org
  • 1 edit
    2 copies in branches/chromium/552

Merge 70473

BUG=60327

12:37 PM Changeset in webkit [70476] by mihaip@chromium.org
  • 50 edits
    47 copies
    61 adds in trunk/LayoutTests

2010-10-25 Mihai Parparita <mihaip@chromium.org>

Unreviewed checksum rebaseline for Snow Leopard.

  • platform/mac-leopard/compositing/overflow/ancestor-overflow-expected.checksum: Copied from LayoutTests/platform/mac/compositing/overflow/ancestor-overflow-expected.checksum.
  • platform/mac-leopard/compositing/overflow/ancestor-overflow-expected.png: Added.
  • platform/mac-leopard/compositing/overflow/scrollbar-painting-expected.checksum: Copied from LayoutTests/platform/mac/compositing/overflow/scrollbar-painting-expected.checksum.
  • platform/mac-leopard/compositing/overflow/scrollbar-painting-expected.png: Added.
  • platform/mac-leopard/compositing/transitions/singular-scale-transition-expected.checksum: Copied from LayoutTests/platform/mac/compositing/transitions/singular-scale-transition-expected.checksum.
  • platform/mac-leopard/compositing/transitions/singular-scale-transition-expected.png: Added.
  • platform/mac-leopard/editing/selection/select-text-overflow-ellipsis-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/select-text-overflow-ellipsis-expected.checksum.
  • platform/mac-leopard/editing/selection/select-text-overflow-ellipsis-expected.png: Added.
  • platform/mac-leopard/editing/selection/transformed-selection-rects-expected.checksum: Copied from LayoutTests/platform/mac/editing/selection/transformed-selection-rects-expected.checksum.
  • platform/mac-leopard/editing/selection/transformed-selection-rects-expected.png: Added.
  • platform/mac-leopard/fast/backgrounds/quirks-mode-line-box-backgrounds-expected.checksum: Copied from LayoutTests/platform/mac/fast/backgrounds/quirks-mode-line-box-backgrounds-expected.checksum.
  • platform/mac-leopard/fast/backgrounds/quirks-mode-line-box-backgrounds-expected.png: Added.
  • platform/mac-leopard/fast/block/float/avoidance-percent-width-compat-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/float/avoidance-percent-width-compat-expected.checksum.
  • platform/mac-leopard/fast/block/float/avoidance-percent-width-compat-expected.png: Added.
  • platform/mac-leopard/fast/block/float/avoidance-percent-width-strict-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/float/avoidance-percent-width-strict-expected.checksum.
  • platform/mac-leopard/fast/block/float/avoidance-percent-width-strict-expected.png: Added.
  • platform/mac-leopard/fast/css/color-correction-backgrounds-and-text-expected.checksum: Copied from LayoutTests/platform/mac/fast/css/color-correction-backgrounds-and-text-expected.checksum.
  • platform/mac-leopard/fast/css/color-correction-backgrounds-and-text-expected.png: Added.
  • platform/mac-leopard/fast/css/color-correction-expected.checksum: Copied from LayoutTests/platform/mac/fast/css/color-correction-expected.checksum.
  • platform/mac-leopard/fast/css/color-correction-expected.png: Added.
  • platform/mac-leopard/fast/css/color-correction-on-background-image-expected.checksum: Copied from LayoutTests/platform/mac/fast/css/color-correction-on-background-image-expected.checksum.
  • platform/mac-leopard/fast/css/color-correction-on-background-image-expected.png: Added.
  • platform/mac-leopard/fast/css/color-correction-on-backgrounds-expected.checksum: Copied from LayoutTests/platform/mac/fast/css/color-correction-on-backgrounds-expected.checksum.
  • platform/mac-leopard/fast/css/color-correction-on-backgrounds-expected.png: Added.
  • platform/mac-leopard/fast/css/color-correction-on-box-shadow-expected.checksum: Copied from LayoutTests/platform/mac/fast/css/color-correction-on-box-shadow-expected.checksum.
  • platform/mac-leopard/fast/css/color-correction-on-box-shadow-expected.png: Added.
  • platform/mac-leopard/fast/css/color-correction-on-text-expected.checksum: Copied from LayoutTests/platform/mac/fast/css/color-correction-on-text-expected.checksum.
  • platform/mac-leopard/fast/css/color-correction-on-text-expected.png: Added.
  • platform/mac-leopard/fast/css/color-correction-on-text-shadow-expected.checksum: Copied from LayoutTests/platform/mac/fast/css/color-correction-on-text-shadow-expected.checksum.
  • platform/mac-leopard/fast/css/color-correction-on-text-shadow-expected.png: Added.
  • platform/mac-leopard/fast/css/color-correction-untagged-images-expected.checksum: Copied from LayoutTests/platform/mac/fast/css/color-correction-untagged-images-expected.checksum.
  • platform/mac-leopard/fast/css/color-correction-untagged-images-expected.png: Added.
  • platform/mac-leopard/fast/css/namespaces/namespaces-comments-expected.checksum: Copied from LayoutTests/platform/mac/fast/css/namespaces/namespaces-comments-expected.checksum.
  • platform/mac-leopard/fast/css/namespaces/namespaces-comments-expected.png: Added.
  • platform/mac-leopard/fast/css/namespaces/namespaces-empty-expected.checksum: Copied from LayoutTests/platform/mac/fast/css/namespaces/namespaces-empty-expected.checksum.
  • platform/mac-leopard/fast/css/namespaces/namespaces-empty-expected.png: Added.
  • platform/mac-leopard/fast/css/namespaces/namespaces-escapes-expected.checksum: Copied from LayoutTests/platform/mac/fast/css/namespaces/namespaces-escapes-expected.checksum.
  • platform/mac-leopard/fast/css/namespaces/namespaces-escapes-expected.png: Added.
  • platform/mac-leopard/fast/css/namespaces/namespaces-invalid-at-expected.checksum: Copied from LayoutTests/platform/mac/fast/css/namespaces/namespaces-invalid-at-expected.checksum.
  • platform/mac-leopard/fast/css/namespaces/namespaces-invalid-at-expected.png: Added.
  • platform/mac-leopard/fast/css/variables/misplaced-import-test-expected.checksum: Copied from LayoutTests/platform/mac/fast/css/variables/misplaced-import-test-expected.checksum.
  • platform/mac-leopard/fast/css/variables/misplaced-import-test-expected.png: Added.
  • platform/mac-leopard/fast/fast-mobile-scrolling/fixed-position-element-expected.checksum: Copied from LayoutTests/platform/mac/fast/fast-mobile-scrolling/fixed-position-element-expected.checksum.
  • platform/mac-leopard/fast/fast-mobile-scrolling/fixed-position-element-expected.png: Added.
  • platform/mac-leopard/fast/fast-mobile-scrolling/no-fixed-position-elements-expected.checksum: Copied from LayoutTests/platform/mac/fast/fast-mobile-scrolling/no-fixed-position-elements-expected.checksum.
  • platform/mac-leopard/fast/fast-mobile-scrolling/no-fixed-position-elements-expected.png: Added.
  • platform/mac-leopard/fast/lists/anonymous-items-expected.checksum: Copied from LayoutTests/platform/mac/fast/lists/anonymous-items-expected.checksum.
  • platform/mac-leopard/fast/lists/anonymous-items-expected.png: Added.
  • platform/mac-leopard/fast/overflow/line-clamp-expected.checksum: Copied from LayoutTests/platform/mac/fast/overflow/line-clamp-expected.checksum.
  • platform/mac-leopard/fast/overflow/line-clamp-expected.png: Added.
  • platform/mac-leopard/fast/overflow/position-fixed-transform-clipping-expected.checksum: Copied from LayoutTests/platform/mac/fast/overflow/position-fixed-transform-clipping-expected.checksum.
  • platform/mac-leopard/fast/overflow/position-fixed-transform-clipping-expected.png: Added.
  • platform/mac-leopard/fast/reflections/abs-position-in-reflection-expected.checksum: Copied from LayoutTests/platform/mac/fast/reflections/abs-position-in-reflection-expected.checksum.
  • platform/mac-leopard/fast/reflections/abs-position-in-reflection-expected.png: Added.
  • platform/mac-leopard/fast/reflections/opacity-reflection-transform-expected.checksum: Copied from LayoutTests/platform/mac/fast/reflections/opacity-reflection-transform-expected.checksum.
  • platform/mac-leopard/fast/reflections/opacity-reflection-transform-expected.png: Added.
  • platform/mac-leopard/fast/repaint/line-in-scrolled-clipped-block-expected.checksum: Copied from LayoutTests/platform/mac/fast/repaint/line-in-scrolled-clipped-block-expected.checksum.
  • platform/mac-leopard/fast/repaint/line-in-scrolled-clipped-block-expected.png: Added.
  • platform/mac-leopard/fast/repaint/no-caret-repaint-in-non-content-editable-element-expected.checksum: Copied from LayoutTests/platform/mac/fast/repaint/no-caret-repaint-in-non-content-editable-element-expected.checksum.
  • platform/mac-leopard/fast/repaint/no-caret-repaint-in-non-content-editable-element-expected.png: Added.
  • platform/mac-leopard/fast/repaint/rel-positioned-inline-with-overflow-expected.checksum: Copied from LayoutTests/platform/mac/fast/repaint/rel-positioned-inline-with-overflow-expected.checksum.
  • platform/mac-leopard/fast/repaint/rel-positioned-inline-with-overflow-expected.png: Added.
  • platform/mac-leopard/fast/repaint/selection-gap-overflow-scroll-2-expected.checksum: Copied from LayoutTests/platform/mac/fast/repaint/selection-gap-overflow-scroll-2-expected.checksum.
  • platform/mac-leopard/fast/repaint/selection-gap-overflow-scroll-2-expected.png: Added.
  • platform/mac-leopard/fast/repaint/subtree-layoutstate-transform-expected.checksum: Copied from LayoutTests/platform/mac/fast/repaint/subtree-layoutstate-transform-expected.checksum.
  • platform/mac-leopard/fast/repaint/subtree-layoutstate-transform-expected.png: Added.
  • platform/mac-leopard/fast/table/fixed-table-with-percent-inside-percent-table-expected.checksum: Copied from LayoutTests/platform/mac/fast/table/fixed-table-with-percent-inside-percent-table-expected.checksum.
  • platform/mac-leopard/fast/table/fixed-table-with-percent-inside-percent-table-expected.png: Added.
  • platform/mac-leopard/fast/table/fixed-table-with-percent-width-inside-auto-table-expected.checksum: Copied from LayoutTests/platform/mac/fast/table/fixed-table-with-percent-width-inside-auto-table-expected.checksum.
  • platform/mac-leopard/fast/table/fixed-table-with-percent-width-inside-auto-table-expected.png: Added.
  • platform/mac-leopard/fast/table/fixed-table-with-percent-width-inside-div-expected.checksum: Copied from LayoutTests/platform/mac/fast/table/fixed-table-with-percent-width-inside-div-expected.checksum.
  • platform/mac-leopard/fast/table/fixed-table-with-percent-width-inside-div-expected.png: Added.
  • platform/mac-leopard/fast/table/fixed-table-with-percent-width-inside-extra-large-div-expected.checksum: Copied from LayoutTests/platform/mac/fast/table/fixed-table-with-percent-width-inside-extra-large-div-expected.checksum.
  • platform/mac-leopard/fast/table/fixed-table-with-percent-width-inside-extra-large-div-expected.png: Added.
  • platform/mac-leopard/fast/table/fixed-table-with-percent-width-inside-fixed-width-table-expected.checksum: Copied from LayoutTests/platform/mac/fast/table/fixed-table-with-percent-width-inside-fixed-width-table-expected.checksum.
  • platform/mac-leopard/fast/table/fixed-table-with-percent-width-inside-fixed-width-table-expected.png: Added.
  • platform/mac-leopard/fast/table/fixed-table-with-small-percent-width-expected.checksum: Copied from LayoutTests/platform/mac/fast/table/fixed-table-with-small-percent-width-expected.checksum.
  • platform/mac-leopard/fast/table/fixed-table-with-small-percent-width-expected.png: Added.
  • platform/mac-leopard/fast/text/sticky-typesetting-features-expected.checksum: Copied from LayoutTests/platform/mac/fast/text/sticky-typesetting-features-expected.checksum.
  • platform/mac-leopard/fast/text/sticky-typesetting-features-expected.png: Added.
  • platform/mac-leopard/http/tests/misc/slow-loading-mask-expected.checksum: Copied from LayoutTests/platform/mac/http/tests/misc/slow-loading-mask-expected.checksum.
  • platform/mac-leopard/http/tests/misc/slow-loading-mask-expected.png: Added.
  • platform/mac-leopard/plugins/embed-attributes-style-expected.checksum: Copied from LayoutTests/platform/mac/plugins/embed-attributes-style-expected.checksum.
  • platform/mac-leopard/plugins/embed-attributes-style-expected.png: Added.
  • platform/mac-leopard/tables/mozilla/bugs/bug106158-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug106158-1-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug106158-1-expected.png: Added.
  • platform/mac-leopard/tables/mozilla/bugs/bug106158-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug106158-2-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug106158-2-expected.png: Added.
  • platform/mac-leopard/tables/mozilla/bugs/bug34176-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug34176-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug34176-expected.png: Added.
  • platform/mac-leopard/tables/mozilla/bugs/bug6674-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug6674-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug6674-expected.png: Added.
  • platform/mac-leopard/transforms/2d/transform-fixed-container-expected.checksum: Copied from LayoutTests/platform/mac/transforms/2d/transform-fixed-container-expected.checksum.
  • platform/mac-leopard/transforms/2d/transform-fixed-container-expected.png: Added.
  • platform/mac/compositing/masks/direct-image-mask-expected.checksum:
  • platform/mac/compositing/overflow/ancestor-overflow-expected.checksum:
  • platform/mac/compositing/overflow/scrollbar-painting-expected.checksum:
  • platform/mac/compositing/transitions/singular-scale-transition-expected.checksum:
  • platform/mac/editing/selection/select-text-overflow-ellipsis-expected.checksum:
  • platform/mac/editing/selection/transformed-selection-rects-expected.checksum:
  • platform/mac/fast/backgrounds/quirks-mode-line-box-backgrounds-expected.checksum:
  • platform/mac/fast/block/float/avoidance-percent-width-compat-expected.checksum:
  • platform/mac/fast/block/float/avoidance-percent-width-strict-expected.checksum:
  • platform/mac/fast/css/color-correction-backgrounds-and-text-expected.checksum:
  • platform/mac/fast/css/color-correction-expected.checksum:
  • platform/mac/fast/css/color-correction-on-background-image-expected.checksum:
  • platform/mac/fast/css/color-correction-on-backgrounds-expected.checksum:
  • platform/mac/fast/css/color-correction-on-box-shadow-expected.checksum:
  • platform/mac/fast/css/color-correction-on-text-expected.checksum:
  • platform/mac/fast/css/color-correction-on-text-shadow-expected.checksum:
  • platform/mac/fast/css/color-correction-untagged-images-expected.checksum:
  • platform/mac/fast/css/namespaces/namespaces-comments-expected.checksum:
  • platform/mac/fast/css/namespaces/namespaces-empty-expected.checksum:
  • platform/mac/fast/css/namespaces/namespaces-escapes-expected.checksum:
  • platform/mac/fast/css/namespaces/namespaces-invalid-at-expected.checksum:
  • platform/mac/fast/css/variables/misplaced-import-test-expected.checksum:
  • platform/mac/fast/fast-mobile-scrolling/fixed-position-element-expected.checksum:
  • platform/mac/fast/fast-mobile-scrolling/no-fixed-position-elements-expected.checksum:
  • platform/mac/fast/lists/anonymous-items-expected.checksum:
  • platform/mac/fast/overflow/line-clamp-expected.checksum:
  • platform/mac/fast/overflow/position-fixed-transform-clipping-expected.checksum:
  • platform/mac/fast/reflections/abs-position-in-reflection-expected.checksum:
  • platform/mac/fast/reflections/opacity-reflection-transform-expected.checksum:
  • platform/mac/fast/repaint/line-in-scrolled-clipped-block-expected.checksum:
  • platform/mac/fast/repaint/no-caret-repaint-in-non-content-editable-element-expected.checksum:
  • platform/mac/fast/repaint/rel-positioned-inline-with-overflow-expected.checksum:
  • platform/mac/fast/repaint/selection-gap-overflow-scroll-2-expected.checksum:
  • platform/mac/fast/repaint/subtree-layoutstate-transform-expected.checksum:
  • platform/mac/fast/table/fixed-table-with-percent-inside-percent-table-expected.checksum:
  • platform/mac/fast/table/fixed-table-with-percent-width-inside-auto-table-expected.checksum:
  • platform/mac/fast/table/fixed-table-with-percent-width-inside-div-expected.checksum:
  • platform/mac/fast/table/fixed-table-with-percent-width-inside-extra-large-div-expected.checksum:
  • platform/mac/fast/table/fixed-table-with-percent-width-inside-fixed-width-table-expected.checksum:
  • platform/mac/fast/table/fixed-table-with-small-percent-width-expected.checksum:
  • platform/mac/fast/text/sticky-typesetting-features-expected.checksum:
  • platform/mac/http/tests/misc/slow-loading-mask-expected.checksum:
  • platform/mac/plugins/embed-attributes-style-expected.checksum:
  • platform/mac/tables/mozilla/bugs/bug106158-1-expected.checksum:
  • platform/mac/tables/mozilla/bugs/bug106158-2-expected.checksum:
  • platform/mac/tables/mozilla/bugs/bug34176-expected.checksum:
  • platform/mac/tables/mozilla/bugs/bug6674-expected.checksum:
  • platform/mac/transforms/2d/transform-fixed-container-expected.checksum:
  • platform/mac/transitions/move-after-transition-expected.checksum:
12:32 PM Changeset in webkit [70475] by inferno@chromium.org
  • 1 edit
    2 copies in branches/chromium/517

Merge 70473

BUG=60327
Review URL: http://codereview.chromium.org/4065007

12:30 PM Changeset in webkit [70474] by commit-queue@webkit.org
  • 2 edits in trunk/JavaScriptCore

2010-10-25 David Tapuska <dtapuska@rim.com>

Reviewed by David Kilzer.

Enable VFP if our compiler settings indicated we had a hardware
VFP.

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

  • assembler/MacroAssemblerARM.cpp: (JSC::isVFPPresent):
12:17 PM Changeset in webkit [70473] by inferno@chromium.org
  • 3 edits
    2 adds in trunk

2010-10-25 Cris Neckar <cdn@chromium.org>

Reviewed by Dimitri Glazkov.

Added check to ensure that events with the type "mousedown" are mouse events before dispatching.
https://bugs.webkit.org/show_bug.cgi?id=48159

Test: fast/events/keyboardevent-mousedown-crash.html

  • dom/Node.cpp: (WebCore::Node::defaultEventHandler):

2010-10-25 Cris Neckar <cdn@chromium.org>

Reviewed by Dimitri Glazkov.

Tests for a crash when an event with the type "mousedown" is not a MouseEvent.
https://bugs.webkit.org/show_bug.cgi?id=48159

  • fast/events/keyboardevent-mousedown-crash-expected.txt: Added.
  • fast/events/keyboardevent-mousedown-crash.html: Added.
12:14 PM Changeset in webkit [70472] by kseo@webkit.org
  • 1 edit
    1 add in trunk/WebCore

Unreviewed build fix for r70400.

Add dummy setCookieStoragePrivateBrowsingEnabled.

  • platform/brew/TemporaryLinkStubs.cpp: Added.

(WebCore::setCookieStoragePrivateBrowsingEnabled):

12:07 PM Changeset in webkit [70471] by Dimitri Glazkov
  • 2 edits in trunk/LayoutTests

2010-10-25 Dimitri Glazkov <Dimitri Glazkov>

Add a flaky test to expectations.
https://bugs.webkit.org/show_bug.cgi?id=48256

  • platform/chromium/test_expectations.txt: Moar flakes :(.
12:03 PM Changeset in webkit [70470] by commit-queue@webkit.org
  • 16 edits in trunk

2010-10-25 Johnny Ding <jnd@chromium.org>

Reviewed by Tony Chang.

Dump the gesture status of frame in frame load callbacks in DumpRenderTree
by adding a new method dumpUserGestureInFrameLoadCallbacks.
Now only dump the gesture status in "DidStartProvisionalLoad" callback.
https://bugs.webkit.org/show_bug.cgi?id=47849

  • WebCoreSupport/DumpRenderTreeSupportQt.cpp: (DumpRenderTreeSupportQt::dumpUserGestureInFrameLoader):
  • WebCoreSupport/DumpRenderTreeSupportQt.h:
  • WebCoreSupport/FrameLoaderClientQt.cpp: (drtPrintFrameUserGestureStatus): (WebCore::FrameLoaderClientQt::dispatchDidHandleOnloadEvents): (WebCore::FrameLoaderClientQt::dispatchDidPushStateWithinPage): (WebCore::FrameLoaderClientQt::dispatchDidReplaceStateWithinPage): (WebCore::FrameLoaderClientQt::dispatchDidPopStateWithinPage): (WebCore::FrameLoaderClientQt::dispatchDidStartProvisionalLoad):
  • WebCoreSupport/FrameLoaderClientQt.h:

2010-10-25 Johnny Ding <jnd@chromium.org>

Reviewed by Tony Chang.

Dump the gesture status of frame in frame load callbacks in DumpRenderTree
by adding a new method dumpUserGestureInFrameLoadCallbacks.
Now only dump the gesture status in "DidStartProvisionalLoad" callback.
https://bugs.webkit.org/show_bug.cgi?id=47849

  • DumpRenderTree/LayoutTestController.cpp: (LayoutTestController::LayoutTestController): (dumpUserGestureInFrameLoadCallbacksCallback): (LayoutTestController::staticFunctions):
  • DumpRenderTree/LayoutTestController.h: (LayoutTestController::dumpUserGestureInFrameLoadCallbacks): (LayoutTestController::setDumpUserGestureInFrameLoadCallbacks):
  • DumpRenderTree/chromium/LayoutTestController.cpp: (LayoutTestController::LayoutTestController): (LayoutTestController::dumpUserGestureInFrameLoadCallbacks): (LayoutTestController::reset):
  • DumpRenderTree/chromium/LayoutTestController.h: (LayoutTestController::shouldDumpUserGestureInFrameLoadCallbacks): (LayoutTestController::setShouldDumpUserGestureInFrameLoadCallbacks):
  • DumpRenderTree/chromium/TestShell.h: (TestShell::shouldDumpUserGestureInFrameLoadCallbacks):
  • DumpRenderTree/chromium/WebViewHost.cpp: (WebViewHost::didStartProvisionalLoad): (WebViewHost::printFrameUserGestureStatus):
  • DumpRenderTree/chromium/WebViewHost.h:
  • DumpRenderTree/mac/FrameLoadDelegate.mm: (-[WebFrame _drt_printFrameUserGestureStatus]): (-[FrameLoadDelegate webView:didStartProvisionalLoadForFrame:]): (-[FrameLoadDelegate webView:didCommitLoadForFrame:]): (-[FrameLoadDelegate webView:didFailProvisionalLoadWithError:forFrame:]): (-[FrameLoadDelegate webView:didFinishLoadForFrame:]): (-[FrameLoadDelegate webView:didFailLoadWithError:forFrame:]): (-[FrameLoadDelegate webView:windowScriptObjectAvailable:]): (-[FrameLoadDelegate webView:didReceiveTitle:forFrame:]):
  • DumpRenderTree/qt/LayoutTestControllerQt.cpp: (LayoutTestController::reset): (LayoutTestController::dumpUserGestureInFrameLoadCallbacks):
  • DumpRenderTree/qt/LayoutTestControllerQt.h:
11:45 AM Changeset in webkit [70469] by Patrick Gansterer
  • 2 edits in trunk/WebCore

2010-10-25 Patrick Gansterer <Patrick Gansterer>

Reviewed by Adam Roben.

[WINCE] Use default implementation of AXObjectCache::platformGenerateAXID
https://bugs.webkit.org/show_bug.cgi?id=48239

WinCE does not support NotifyWinEvent, so use the default implementation.

  • accessibility/AXObjectCache.cpp:
11:44 AM Changeset in webkit [70468] by weinig@apple.com
  • 2 edits in trunk/WebCore

Need WebKit2 API to figure out if a frame can provide source
<rdar://problem/8424632>
https://bugs.webkit.org/show_bug.cgi?id=48252

Reviewed by Anders Carlsson.

  • WebCore.exp.in:
11:41 AM Changeset in webkit [70467] by weinig@apple.com
  • 2 edits in trunk/WebKit2

cancelledError for WebKit2 on windows should use kCFErrorDomainCFNetwork instead of webKitErrorDomain
https://bugs.webkit.org/show_bug.cgi?id=48254

Reviewed by Dan Bernstein.

  • WebProcess/WebCoreSupport/win/WebErrorsWin.cpp:

(WebKit::cancelledError): Use kCFErrorDomainCFNetwork instead of webKitErrorDomain and switch over
to using kCFURLErrorCancelled instead of a hard coded constant.

11:22 AM Changeset in webkit [70466] by weinig@apple.com
  • 5 edits in trunk/WebKit2

Need WebKit2 API to figure out if a frame can provide source
<rdar://problem/8424632>
https://bugs.webkit.org/show_bug.cgi?id=48252

Reviewed by Anders Carlsson.

  • UIProcess/API/C/WKFrame.cpp:

(WKFrameCanProvideSource):

  • UIProcess/API/C/WKFrame.h:
  • UIProcess/WebFrameProxy.cpp:

(WebKit::WebFrameProxy::canProvideSource):

  • UIProcess/WebFrameProxy.h:

Add API to figure out if a frame can provide source based on its
MIME type.

11:20 AM Changeset in webkit [70465] by mihaip@chromium.org
  • 21 edits
    1 copy
    1 add in trunk/LayoutTests

2010-10-25 Mihai Parparita <mihaip@chromium.org>

Unreviewed checksum rebaseline for animations/ and compositing/ for Snow
Leopard.

  • platform/mac-leopard/animations/3d/state-at-end-event-transform-expected.checksum: Copied from LayoutTests/platform/mac/animations/3d/state-at-end-event-transform-expected.checksum.
  • platform/mac-leopard/animations/3d/state-at-end-event-transform-expected.png: Added.
  • platform/mac/animations/3d/change-transform-in-end-event-expected.checksum:
  • platform/mac/animations/3d/state-at-end-event-transform-expected.checksum:
  • platform/mac/compositing/animation/state-at-end-event-transform-layer-expected.checksum:
  • platform/mac/compositing/compositing-visible-descendant-expected.checksum:
  • platform/mac/compositing/geometry/abs-position-inside-opacity-expected.checksum:
  • platform/mac/compositing/geometry/fixed-position-expected.checksum:
  • platform/mac/compositing/geometry/horizontal-scroll-composited-expected.checksum:
  • platform/mac/compositing/geometry/partial-layout-update-expected.checksum:
  • platform/mac/compositing/geometry/transfrom-origin-on-zero-size-layer-expected.checksum:
  • platform/mac/compositing/overflow/fixed-position-ancestor-clip-expected.checksum:
  • platform/mac/compositing/reflections/reflection-in-composited-expected.checksum:
  • platform/mac/compositing/reflections/reflection-ordering-expected.checksum:
  • platform/mac/compositing/reflections/simple-composited-reflections-expected.checksum:
  • platform/mac/compositing/repaint/become-overlay-composited-layer-expected.checksum:
  • platform/mac/compositing/repaint/content-into-overflow-expected.checksum:
  • platform/mac/compositing/repaint/layer-repaint-expected.checksum:
  • platform/mac/compositing/repaint/layer-repaint-rects-expected.checksum:
  • platform/mac/compositing/repaint/opacity-between-absolute-expected.checksum:
  • platform/mac/compositing/repaint/opacity-between-absolute2-expected.checksum:
  • platform/mac/compositing/repaint/overflow-into-content-expected.checksum:
10:58 AM Changeset in webkit [70464] by andersca@apple.com
  • 9 edits in trunk/WebKit2

Java applets don't display on the page
https://bugs.webkit.org/show_bug.cgi?id=48251
<rdar://problem/8483759>

Reviewed by Dan Bernstein.

Add WKPreferencesSetJavaEnabled and initialize it to true by default, matching old WebKit.

  • Shared/WebPreferencesStore.cpp:

(WebKit::WebPreferencesStore::WebPreferencesStore):
Initialize javaEnabled.

(WebKit::WebPreferencesStore::encode):
Encode javaEnabled.

(WebKit::WebPreferencesStore::decode):
Decode javaEnabled.

  • Shared/WebPreferencesStore.h:

Add javaEnabled.

  • UIProcess/API/C/WKPreferences.cpp:

(WKPReferencesSetJavaEnabled):
(WKPReferencesGetJavaEnabled):
Call the WebPreferences functions.

  • WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:

(WebKit::WebFrameLoaderClient::createJavaAppletWidget):
Just call createPlugin.

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::updatePreferences):
Call Settings::setJavaEnabled.

10:44 AM Changeset in webkit [70463] by commit-queue@webkit.org
  • 33 edits
    3 deletes in trunk

2010-10-25 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r70451.
http://trac.webkit.org/changeset/70451
https://bugs.webkit.org/show_bug.cgi?id=48249

Broke set-unloaded-frame-location.html under Qt (Requested by
caseq on #webkit).

2010-10-25 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r70451.
http://trac.webkit.org/changeset/70451
https://bugs.webkit.org/show_bug.cgi?id=48249

Broke set-unloaded-frame-location.html under Qt (Requested by
caseq on #webkit).

  • ForwardingHeaders/wtf/text/TextPosition.h: Removed.

2010-10-25 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r70451.
http://trac.webkit.org/changeset/70451
https://bugs.webkit.org/show_bug.cgi?id=48249

Broke set-unloaded-frame-location.html under Qt (Requested by
caseq on #webkit).

  • ForwardingHeaders/wtf/text/TextPosition.h: Removed.
  • bindings/js/ScriptSourceCode.h: (WebCore::ScriptSourceCode::ScriptSourceCode):
  • bindings/v8/ScheduledAction.cpp: (WebCore::ScheduledAction::ScheduledAction):
  • bindings/v8/ScriptController.cpp: (WebCore::ScriptController::eventHandlerLineNumber): (WebCore::ScriptController::eventHandlerColumnNumber):
  • bindings/v8/ScriptController.h:
  • bindings/v8/ScriptEventListener.cpp: (WebCore::createAttributeEventListener):
  • bindings/v8/ScriptSourceCode.h: (WebCore::ScriptSourceCode::ScriptSourceCode): (WebCore::ScriptSourceCode::startLine):
  • bindings/v8/V8LazyEventListener.cpp: (WebCore::V8LazyEventListener::V8LazyEventListener): (WebCore::V8LazyEventListener::prepareListenerObject):
  • bindings/v8/V8LazyEventListener.h: (WebCore::V8LazyEventListener::create):
  • bindings/v8/V8Proxy.cpp: (WebCore::V8Proxy::compileScript): (WebCore::V8Proxy::evaluate): (WebCore::V8Proxy::runScript):
  • bindings/v8/V8Proxy.h:
  • bindings/v8/WorkerContextExecutionProxy.cpp: (WebCore::WorkerContextExecutionProxy::evaluate): (WebCore::WorkerContextExecutionProxy::runScript):
  • bindings/v8/WorkerContextExecutionProxy.h:
  • bindings/v8/WorkerScriptController.cpp: (WebCore::WorkerScriptController::evaluate):
  • dom/PendingScript.cpp: (WebCore::PendingScript::releaseElementAndClear):
  • dom/PendingScript.h: (WebCore::PendingScript::PendingScript): (WebCore::PendingScript::operator=): (WebCore::PendingScript::startingLineNumber):
  • dom/ScriptableDocumentParser.h:
  • dom/XMLDocumentParser.h:
  • dom/XMLDocumentParserLibxml2.cpp: (WebCore::XMLDocumentParser::XMLDocumentParser): (WebCore::XMLDocumentParser::startElementNs): (WebCore::XMLDocumentParser::endElementNs): (WebCore::XMLDocumentParser::lineNumber): (WebCore::XMLDocumentParser::columnNumber):
  • dom/XMLDocumentParserQt.cpp: (WebCore::XMLDocumentParser::XMLDocumentParser): (WebCore::XMLDocumentParser::parseStartElement): (WebCore::XMLDocumentParser::parseEndElement):
  • html/parser/HTMLDocumentParser.cpp: (WebCore::HTMLDocumentParser::runScriptsForPausedTreeBuilder): (WebCore::HTMLDocumentParser::columnNumber):
  • html/parser/HTMLDocumentParser.h:
  • html/parser/HTMLScriptRunner.cpp: (WebCore::HTMLScriptRunner::sourceFromPendingScript): (WebCore::HTMLScriptRunner::execute): (WebCore::HTMLScriptRunner::runScript):
  • html/parser/HTMLScriptRunner.h:
  • html/parser/HTMLTreeBuilder.cpp: (WebCore::HTMLTreeBuilder::HTMLTreeBuilder): (WebCore::HTMLTreeBuilder::takeScriptToProcess): (WebCore::HTMLTreeBuilder::processEndTag): (WebCore::HTMLTreeBuilder::processScriptStartTag):
  • html/parser/HTMLTreeBuilder.h:

2010-10-25 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r70451.
http://trac.webkit.org/changeset/70451
https://bugs.webkit.org/show_bug.cgi?id=48249

Broke set-unloaded-frame-location.html under Qt (Requested by
caseq on #webkit).

  • src/WebFrameImpl.cpp: (WebKit::WebFrameImpl::executeScript): (WebKit::WebFrameImpl::executeScriptInIsolatedWorld): (WebKit::WebFrameImpl::executeScriptAndReturnValue):
10:25 AM Changeset in webkit [70462] by mihaip@chromium.org
  • 47 edits
    46 copies
    2 adds in trunk/LayoutTests

2010-10-25 Mihai Parparita <mihaip@chromium.org>

Unreviewed rebaseline for fast/block for Snow Leopard.

  • platform/mac-leopard/fast/block/basic/001-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/basic/001-expected.checksum.
  • platform/mac-leopard/fast/block/basic/001-expected.png: Copied from LayoutTests/platform/mac/fast/block/basic/001-expected.png.
  • platform/mac-leopard/fast/block/basic/002-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/basic/002-expected.checksum.
  • platform/mac-leopard/fast/block/basic/002-expected.png: Copied from LayoutTests/platform/mac/fast/block/basic/002-expected.png.
  • platform/mac-leopard/fast/block/basic/003-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/basic/003-expected.checksum.
  • platform/mac-leopard/fast/block/basic/003-expected.png: Copied from LayoutTests/platform/mac/fast/block/basic/003-expected.png.
  • platform/mac-leopard/fast/block/basic/004-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/basic/004-expected.checksum.
  • platform/mac-leopard/fast/block/basic/004-expected.png: Copied from LayoutTests/platform/mac/fast/block/basic/004-expected.png.
  • platform/mac-leopard/fast/block/basic/005-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/basic/005-expected.checksum.
  • platform/mac-leopard/fast/block/basic/005-expected.png: Copied from LayoutTests/platform/mac/fast/block/basic/005-expected.png.
  • platform/mac-leopard/fast/block/basic/006-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/basic/006-expected.checksum.
  • platform/mac-leopard/fast/block/basic/006-expected.png: Copied from LayoutTests/platform/mac/fast/block/basic/006-expected.png.
  • platform/mac-leopard/fast/block/basic/007-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/basic/007-expected.checksum.
  • platform/mac-leopard/fast/block/basic/007-expected.png: Copied from LayoutTests/platform/mac/fast/block/basic/007-expected.png.
  • platform/mac-leopard/fast/block/basic/008-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/basic/008-expected.checksum.
  • platform/mac-leopard/fast/block/basic/008-expected.png: Copied from LayoutTests/platform/mac/fast/block/basic/008-expected.png.
  • platform/mac-leopard/fast/block/basic/009-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/basic/009-expected.checksum.
  • platform/mac-leopard/fast/block/basic/009-expected.png: Copied from LayoutTests/platform/mac/fast/block/basic/009-expected.png.
  • platform/mac-leopard/fast/block/basic/011-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/basic/011-expected.checksum.
  • platform/mac-leopard/fast/block/basic/011-expected.png: Copied from LayoutTests/platform/mac/fast/block/basic/011-expected.png.
  • platform/mac-leopard/fast/block/basic/012-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/basic/012-expected.checksum.
  • platform/mac-leopard/fast/block/basic/012-expected.png: Copied from LayoutTests/platform/mac/fast/block/basic/012-expected.png.
  • platform/mac-leopard/fast/block/basic/013-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/basic/013-expected.checksum.
  • platform/mac-leopard/fast/block/basic/013-expected.png: Copied from LayoutTests/platform/mac/fast/block/basic/013-expected.png.
  • platform/mac-leopard/fast/block/basic/014-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/basic/014-expected.checksum.
  • platform/mac-leopard/fast/block/basic/014-expected.png: Copied from LayoutTests/platform/mac/fast/block/basic/014-expected.png.
  • platform/mac-leopard/fast/block/basic/015-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/basic/015-expected.checksum.
  • platform/mac-leopard/fast/block/basic/015-expected.png: Copied from LayoutTests/platform/mac/fast/block/basic/015-expected.png.
  • platform/mac-leopard/fast/block/basic/018-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/basic/018-expected.checksum.
  • platform/mac-leopard/fast/block/basic/018-expected.png: Copied from LayoutTests/platform/mac/fast/block/basic/018-expected.png.
  • platform/mac-leopard/fast/block/basic/019-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/basic/019-expected.checksum.
  • platform/mac-leopard/fast/block/basic/019-expected.png: Copied from LayoutTests/platform/mac/fast/block/basic/019-expected.png.
  • platform/mac-leopard/fast/block/basic/020-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/basic/020-expected.checksum.
  • platform/mac-leopard/fast/block/basic/020-expected.png: Copied from LayoutTests/platform/mac/fast/block/basic/020-expected.png.
  • platform/mac-leopard/fast/block/basic/021-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/basic/021-expected.checksum.
  • platform/mac-leopard/fast/block/basic/021-expected.png: Copied from LayoutTests/platform/mac/fast/block/basic/021-expected.png.
  • platform/mac-leopard/fast/block/basic/adding-near-anonymous-block-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/basic/adding-near-anonymous-block-expected.checksum.
  • platform/mac-leopard/fast/block/basic/adding-near-anonymous-block-expected.png: Copied from LayoutTests/platform/mac/fast/block/basic/adding-near-anonymous-block-expected.png.
  • platform/mac-leopard/fast/block/basic/fieldset-stretch-to-legend-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/basic/fieldset-stretch-to-legend-expected.checksum.
  • platform/mac-leopard/fast/block/basic/fieldset-stretch-to-legend-expected.png: Copied from LayoutTests/platform/mac/fast/block/basic/fieldset-stretch-to-legend-expected.png.
  • platform/mac-leopard/fast/block/basic/quirk-height-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/basic/quirk-height-expected.checksum.
  • platform/mac-leopard/fast/block/basic/quirk-height-expected.png: Copied from LayoutTests/platform/mac/fast/block/basic/quirk-height-expected.png.
  • platform/mac-leopard/fast/block/basic/text-indent-rtl-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/basic/text-indent-rtl-expected.checksum.
  • platform/mac-leopard/fast/block/basic/text-indent-rtl-expected.png: Copied from LayoutTests/platform/mac/fast/block/basic/text-indent-rtl-expected.png.
  • platform/mac-leopard/fast/block/basic/white-space-pre-wraps-expected.checksum: Copied from LayoutTests/platform/mac/fast/block/basic/white-space-pre-wraps-expected.checksum.
  • platform/mac-leopard/fast/block/basic/white-space-pre-wraps-expected.png: Copied from LayoutTests/platform/mac/fast/block/basic/white-space-pre-wraps-expected.png.
  • platform/mac/fast/block/basic/001-expected.checksum:
  • platform/mac/fast/block/basic/001-expected.png:
  • platform/mac/fast/block/basic/002-expected.checksum:
  • platform/mac/fast/block/basic/002-expected.png:
  • platform/mac/fast/block/basic/003-expected.checksum:
  • platform/mac/fast/block/basic/003-expected.png:
  • platform/mac/fast/block/basic/004-expected.checksum:
  • platform/mac/fast/block/basic/004-expected.png:
  • platform/mac/fast/block/basic/005-expected.checksum:
  • platform/mac/fast/block/basic/005-expected.png:
  • platform/mac/fast/block/basic/006-expected.checksum:
  • platform/mac/fast/block/basic/006-expected.png:
  • platform/mac/fast/block/basic/007-expected.checksum:
  • platform/mac/fast/block/basic/007-expected.png:
  • platform/mac/fast/block/basic/008-expected.checksum:
  • platform/mac/fast/block/basic/008-expected.png:
  • platform/mac/fast/block/basic/009-expected.checksum:
  • platform/mac/fast/block/basic/009-expected.png:
  • platform/mac/fast/block/basic/011-expected.checksum:
  • platform/mac/fast/block/basic/011-expected.png:
  • platform/mac/fast/block/basic/012-expected.checksum:
  • platform/mac/fast/block/basic/012-expected.png:
  • platform/mac/fast/block/basic/013-expected.checksum:
  • platform/mac/fast/block/basic/013-expected.png:
  • platform/mac/fast/block/basic/014-expected.checksum:
  • platform/mac/fast/block/basic/014-expected.png:
  • platform/mac/fast/block/basic/015-expected.checksum:
  • platform/mac/fast/block/basic/015-expected.png:
  • platform/mac/fast/block/basic/018-expected.checksum:
  • platform/mac/fast/block/basic/018-expected.png:
  • platform/mac/fast/block/basic/019-expected.checksum:
  • platform/mac/fast/block/basic/019-expected.png:
  • platform/mac/fast/block/basic/020-expected.checksum:
  • platform/mac/fast/block/basic/020-expected.png:
  • platform/mac/fast/block/basic/021-expected.checksum:
  • platform/mac/fast/block/basic/021-expected.png:
  • platform/mac/fast/block/basic/adding-near-anonymous-block-expected.checksum:
  • platform/mac/fast/block/basic/adding-near-anonymous-block-expected.png:
  • platform/mac/fast/block/basic/fieldset-stretch-to-legend-expected.checksum:
  • platform/mac/fast/block/basic/fieldset-stretch-to-legend-expected.png:
  • platform/mac/fast/block/basic/quirk-height-expected.checksum:
  • platform/mac/fast/block/basic/quirk-height-expected.png:
  • platform/mac/fast/block/basic/text-indent-rtl-expected.checksum:
  • platform/mac/fast/block/basic/text-indent-rtl-expected.png:
  • platform/mac/fast/block/basic/white-space-pre-wraps-expected.checksum:
  • platform/mac/fast/block/basic/white-space-pre-wraps-expected.png:
10:13 AM Changeset in webkit [70461] by kseo@webkit.org
  • 2 edits
    1 add in trunk/WebCore

Unreviewed build fix for r70095.

Provide platformDefaultLanguage().

  • platform/brew/LanguageBrew.cpp: Added.

(WebCore::platformDefaultLanguage):

  • platform/brew/LocalizedStringsBrew.cpp:
10:03 AM Changeset in webkit [70460] by Patrick Gansterer
  • 15 edits in trunk

2010-10-25 Patrick Gansterer <Patrick Gansterer>

Reviewed by David Kilzer.

Replace _countof with WTF_ARRAY_LENGTH
https://bugs.webkit.org/show_bug.cgi?id=48229

  • wtf/Platform.h:

2010-10-25 Patrick Gansterer <Patrick Gansterer>

Reviewed by David Kilzer.

Replace _countof with WTF_ARRAY_LENGTH
https://bugs.webkit.org/show_bug.cgi?id=48229

  • platform/win/FileSystemWin.cpp: (WebCore::openTemporaryFile):
  • platform/wince/FileSystemWinCE.cpp: (WebCore::openTemporaryFile):
  • plugins/win/PluginDatabaseWin.cpp: (WebCore::addPluginPathsFromRegistry): (WebCore::addWindowsMediaPlayerPluginDirectory): (WebCore::addMacromediaPluginDirectories):

2010-10-25 Patrick Gansterer <Patrick Gansterer>

Reviewed by David Kilzer.

Replace _countof with WTF_ARRAY_LENGTH
https://bugs.webkit.org/show_bug.cgi?id=48229

  • WebCoreSupport/WebContextMenuClient.cpp: (isPreInspectElementTagSafari):
  • WebView.cpp: (WebView::interpretKeyEvent):

2010-10-25 Patrick Gansterer <Patrick Gansterer>

Reviewed by David Kilzer.

Replace _countof with WTF_ARRAY_LENGTH
https://bugs.webkit.org/show_bug.cgi?id=48229

  • WebCoreSupport/EditorClientWinCE.cpp: (WebKit::EditorClientWinCE::interpretKeyEvent):

2010-10-25 Patrick Gansterer <Patrick Gansterer>

Reviewed by David Kilzer.

Replace _countof with WTF_ARRAY_LENGTH
https://bugs.webkit.org/show_bug.cgi?id=48229

  • UIProcess/Launcher/win/ProcessLauncherWin.cpp: (WebKit::ProcessLauncher::launchProcess):
  • UIProcess/Plugins/win/PluginInfoStoreWin.cpp: (WebKit::safariPluginsDirectory): (WebKit::addMozillaPluginDirectories): (WebKit::addWindowsMediaPlayerPluginDirectory): (WebKit::addAdobeAcrobatPluginDirectory): (WebKit::addMacromediaPluginDirectories): (WebKit::addPluginPathsFromRegistry):
  • WebProcess/WebPage/win/WebPageWin.cpp: (WebKit::WebPage::interpretKeyEvent):
9:29 AM Changeset in webkit [70459] by Adam Roben
  • 2 edits in trunk/WebKit2

Stop copying .messages.in files into WebKit2's framework bundle

Fixes <http://webkit.org/b/48232> Several .messages.in files end up in
WebKit2's framework bundle

Reviewed by Dan Bernstein.

  • WebKit2.xcodeproj/project.pbxproj:
9:12 AM Changeset in webkit [70458] by commit-queue@webkit.org
  • 3 edits in trunk/WebKitTools

2010-10-25 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r70442.
http://trac.webkit.org/changeset/70442
https://bugs.webkit.org/show_bug.cgi?id=48248

http locking doesn't work on Windows (Requested by Ossy on
#webkit).

  • Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
  • Scripts/webkitpy/layout_tests/run_webkit_tests.py:
9:08 AM Changeset in webkit [70457] by abecsi@webkit.org
  • 1 edit
    1 add
    1 delete in trunk/WebKit2

2010-10-25 Andras Becsi <abecsi@webkit.org>

Reviewed by Csaba Osztrogonác.

[Qt] Fix the WebKit2 build after sheriffbot messed up the rollout patch.
https://bugs.webkit.org/show_bug.cgi?id=48238

  • Shared/qt/MappedMemory.h: Renamed from WebKit2/Platform/qt/MappedMemoryPool.h. (WebKit::MappedMemory::mapSize): (WebKit::MappedMemory::markUsed): (WebKit::MappedMemory::markFree): (WebKit::MappedMemory::isFree): (WebKit::MappedMemory::data):
9:05 AM Changeset in webkit [70456] by hyatt@apple.com
  • 2 edits in trunk/WebCore

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

Reviewed by Sam Weinig.

Make selectionRect() on InlineTextBox give the right value for a vertical line. Selection is still too broken
to test anything though.

  • rendering/InlineTextBox.cpp:

(WebCore::InlineTextBox::selectionRect):

9:04 AM Changeset in webkit [70455] by benjamin.poulain@nokia.com
  • 2 edits in trunk/WebCore

2010-10-25 Benjamin Poulain <benjamin.poulain@nokia.com>

Reviewed by Antonio Gomes.

Typo in the TextureMapperGL
https://bugs.webkit.org/show_bug.cgi?id=48241

Fix the typo.

  • platform/graphics/opengl/TextureMapperGL.cpp: (WebCore::TextureMapperGL::TextureMapperGL):
9:01 AM Changeset in webkit [70454] by pfeldman@chromium.org
  • 4 edits in trunk/WebCore

2010-10-25 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Timothy Hatcher.

Web Inspector: slowly make old resources panel optional (continued).
https://bugs.webkit.org/show_bug.cgi?id=48207

  • inspector/front-end/Resource.js: (WebInspector.Resource.prototype.set url):
  • inspector/front-end/StoragePanel.js: (WebInspector.StoragePanel.prototype.get toolbarItemLabel): (WebInspector.StoragePanel.prototype.showResource): (WebInspector.StoragePanel.prototype.searchMatchFound): (WebInspector.StoragePanel.prototype._findTreeElementForResource): (WebInspector.StoragePanel.prototype._findTreeElementForResource.getParent): (WebInspector.BaseStorageTreeElement.prototype.onattach):
  • inspector/front-end/inspector.css: (.storage.panel .sidebar): (.storage.panel .sidebar li): (.storage.panel .sidebar li.parent): (.storage.panel .sidebar li.selected): (.storage.panel .sidebar li .selection): (.storage.panel .sidebar :focus li .selection): (body.inactive .storage.panel .sidebar li .selection): (.storage.panel .sidebar .icon):
8:14 AM Changeset in webkit [70453] by commit-queue@webkit.org
  • 6 edits
    1 add
    1 delete in trunk/WebKit2

2010-10-25 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r70450.
http://trac.webkit.org/changeset/70450
https://bugs.webkit.org/show_bug.cgi?id=48238

Causes WTR to crash on tests which use SharedMemory.
(Requested by bbandix on #webkit).

  • Platform/SharedMemory.h:
  • Platform/qt/MappedMemoryPool.cpp: Removed.
  • Platform/qt/SharedMemoryQt.cpp: (WebKit::SharedMemory::Handle::Handle): (WebKit::SharedMemory::Handle::~Handle): (WebKit::SharedMemory::Handle::encode): (WebKit::SharedMemory::Handle::decode): (WebKit::SharedMemory::create): (WebKit::SharedMemory::~SharedMemory): (WebKit::SharedMemory::createHandle): (WebKit::SharedMemory::systemPageSize):
  • Shared/qt/MappedMemory.h: Renamed from WebKit2/Platform/qt/MappedMemoryPool.h. (WebKit::MappedMemory::mapSize): (WebKit::MappedMemory::markUsed): (WebKit::MappedMemory::markFree): (WebKit::MappedMemory::isFree): (WebKit::MappedMemory::data):
  • Shared/qt/MappedMemoryPool.cpp: Added. (WebKit::MappedMemoryPool::MappedMemoryPool): (WebKit::MappedMemoryPool::instance): (WebKit::MappedMemoryPool::size): (WebKit::MappedMemoryPool::at): (WebKit::MappedMemoryPool::append): (WebKit::MappedMemoryPool::cleanUp):
  • Shared/qt/UpdateChunk.cpp: (WebKit::mapMemory): (WebKit::mapFile): (WebKit::UpdateChunk::UpdateChunk): (WebKit::UpdateChunk::decode):
  • Shared/qt/UpdateChunk.h:
  • WebKit2.pro:
7:53 AM Changeset in webkit [70452] by noam.rosenthal@nokia.com
  • 1 edit
    2 adds in trunk/WebCore

2010-10-25 No'am Rosenthal <noam.rosenthal@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

[Texmap] [Qt] Texture mapper initial implementation
This patch adds the OpenGL implementation of TextureMapper. See the other entries from bug 47070 for details.
https://bugs.webkit.org/show_bug.cgi?id=47070

No new tests. Part of a new implementation.

  • platform/graphics/opengl/TextureMapperGL.cpp: Added.
  • platform/graphics/opengl/TextureMapperGL.h: Added.
7:15 AM Changeset in webkit [70451] by caseq@chromium.org
  • 32 edits
    3 adds in trunk

2010-10-25 Peter Rybin <peter.rybin@gmail.com>

Reviewed by Adam Barth.

HTML parser should provide script column position within HTML document to JavaScript engine
https://bugs.webkit.org/show_bug.cgi?id=45271

Adds TextPosition* classes -- a structure that stores line/column/generation
level coordinates inside text document. Adds *BasedNumber classes -- typesafe int
wrappers that emphasize whether int number is used as zero-based or
one-based.

  • GNUmakefile.am:
  • JavaScriptCore.gypi:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • wtf/text/TextPosition.h: Added. (WTF::TextPosition::TextPosition): (WTF::TextPosition::minimumPosition): (WTF::TextPosition::belowRangePosition): (WTF::ZeroBasedNumber::fromZeroBasedInt): (WTF::ZeroBasedNumber::ZeroBasedNumber): (WTF::ZeroBasedNumber::zeroBasedInt): (WTF::ZeroBasedNumber::base): (WTF::ZeroBasedNumber::belowBase): (WTF::OneBasedNumber::fromOneBasedInt): (WTF::OneBasedNumber::OneBasedNumber): (WTF::OneBasedNumber::oneBasedInt): (WTF::OneBasedNumber::convertAsZeroBasedInt): (WTF::OneBasedNumber::convertToZeroBased): (WTF::OneBasedNumber::base): (WTF::OneBasedNumber::belowBase): (WTF::toZeroBasedTextPosition): (WTF::toOneBasedTextPosition): (WTF::ZeroBasedNumber::convertToOneBased):

2010-10-25 Peter Rybin <peter.rybin@gmail.com>

Reviewed by Adam Barth.

HTML parser should provide script column position within HTML document to JavaScript engine
https://bugs.webkit.org/show_bug.cgi?id=45271

Replaces line number with TextPosition struct so that script engine
gets script starting line/column.

  • ForwardingHeaders/wtf/text/TextPosition.h: Added.
  • bindings/js/ScriptSourceCode.h: (WebCore::ScriptSourceCode::ScriptSourceCode):
  • bindings/v8/ScheduledAction.cpp: (WebCore::ScheduledAction::ScheduledAction):
  • bindings/v8/ScriptController.cpp: (WebCore::ScriptController::eventHandlerPosition):
  • bindings/v8/ScriptController.h:
  • bindings/v8/ScriptEventListener.cpp: (WebCore::createAttributeEventListener):
  • bindings/v8/ScriptSourceCode.h: (WebCore::ScriptSourceCode::ScriptSourceCode): (WebCore::ScriptSourceCode::startLine): (WebCore::ScriptSourceCode::startPosition):
  • bindings/v8/V8LazyEventListener.cpp: (WebCore::V8LazyEventListener::V8LazyEventListener): (WebCore::V8LazyEventListener::prepareListenerObject):
  • bindings/v8/V8LazyEventListener.h: (WebCore::V8LazyEventListener::create):
  • bindings/v8/V8Proxy.cpp: (WebCore::V8Proxy::compileScript): (WebCore::V8Proxy::evaluate): (WebCore::V8Proxy::runScript):
  • bindings/v8/V8Proxy.h:
  • bindings/v8/WorkerContextExecutionProxy.cpp: (WebCore::WorkerContextExecutionProxy::evaluate): (WebCore::WorkerContextExecutionProxy::runScript):
  • bindings/v8/WorkerContextExecutionProxy.h:
  • bindings/v8/WorkerScriptController.cpp: (WebCore::WorkerScriptController::evaluate):
  • dom/PendingScript.cpp: (WebCore::PendingScript::releaseElementAndClear):
  • dom/PendingScript.h: (WebCore::PendingScript::PendingScript): (WebCore::PendingScript::operator=): (WebCore::PendingScript::startingPosition):
  • dom/ScriptableDocumentParser.h:
  • dom/XMLDocumentParser.h:
  • dom/XMLDocumentParserLibxml2.cpp: (WebCore::XMLDocumentParser::XMLDocumentParser): (WebCore::XMLDocumentParser::startElementNs): (WebCore::XMLDocumentParser::endElementNs): (WebCore::XMLDocumentParser::lineNumber): (WebCore::XMLDocumentParser::columnNumber): (WebCore::XMLDocumentParser::textPosition): (WebCore::XMLDocumentParser::textPositionOneBased):
  • dom/XMLDocumentParserQt.cpp: (WebCore::XMLDocumentParser::XMLDocumentParser): (WebCore::XMLDocumentParser::textPosition): (WebCore::XMLDocumentParser::parseStartElement): (WebCore::XMLDocumentParser::parseEndElement):
  • html/parser/HTMLDocumentParser.cpp: (WebCore::HTMLDocumentParser::runScriptsForPausedTreeBuilder): (WebCore::HTMLDocumentParser::textPosition):
  • html/parser/HTMLDocumentParser.h:
  • html/parser/HTMLScriptRunner.cpp: (WebCore::HTMLScriptRunner::sourceFromPendingScript): (WebCore::HTMLScriptRunner::execute): (WebCore::HTMLScriptRunner::runScript):
  • html/parser/HTMLScriptRunner.h:
  • html/parser/HTMLTreeBuilder.cpp: (WebCore::uninitializedPositionValue1): (WebCore::HTMLTreeBuilder::HTMLTreeBuilder): (WebCore::HTMLTreeBuilder::takeScriptToProcess): (WebCore::HTMLTreeBuilder::processEndTag): (WebCore::HTMLTreeBuilder::processScriptStartTag):
  • html/parser/HTMLTreeBuilder.h:

2010-10-25 Peter Rybin <peter.rybin@gmail.com>

Reviewed by Adam Barth.

HTML parser should provide script column position within HTML document to JavaScript engine
https://bugs.webkit.org/show_bug.cgi?id=45271

Replaces script line number with TextPosition structure.

  • src/WebFrameImpl.cpp: (WebKit::WebFrameImpl::executeScript): (WebKit::WebFrameImpl::executeScriptInIsolatedWorld): (WebKit::WebFrameImpl::executeScriptAndReturnValue):
6:54 AM BuildingQtOnLinux edited by Ademar Reis
(diff)
6:48 AM Changeset in webkit [70450] by zoltan@webkit.org
  • 6 edits
    2 moves in trunk/WebKit2

[Qt] Implement SharedMemory for WebKit2
https://bugs.webkit.org/show_bug.cgi?id=47345

Reviewed by Kenneth Rohde Christiansen.

Implement unimplemented functions in SharedMemoryQt.cpp.
Rename MappedMemory.h to MappedMemoryPool.h, move MappedMemoryPool.{h|cpp} from
Shared/qt to Platform/qt. Modify affected lines of WebKit2.pro.
Move MappedMemory implementation into MappedMemoryPool. Remove unnecessary
methods of MappedMemoryPool.

  • Platform/SharedMemory.h: Add a handle member for Qt.
  • Platform/qt/MappedMemoryPool.cpp: Copied from WebKit2/Shared/qt/MappedMemoryPool.cpp.

(WebKit::MappedMemoryPool::searchForMappedMemory):
(WebKit::MappedMemoryPool::mapMemory):
(WebKit::MappedMemoryPool::mapFile):

  • Platform/qt/MappedMemoryPool.h: Copied from WebKit2/Shared/qt/MappedMemory.h.

(WebKit::MappedMemoryPool::MappedMemory::mapSize):
(WebKit::MappedMemoryPool::MappedMemory::markUsed):
(WebKit::MappedMemoryPool::MappedMemory::markFree):
(WebKit::MappedMemoryPool::MappedMemory::isFree):
(WebKit::MappedMemoryPool::MappedMemory::data):
(WebKit::MappedMemoryPool::MappedMemoryPool):
Move MappedMemory implementation into MappedMemoryPool.

  • Platform/qt/SharedMemoryQt.cpp:

(WebKit::SharedMemory::Handle::Handle): Implement.
(WebKit::SharedMemory::Handle::~Handle):
(WebKit::SharedMemory::Handle::isNull): Implement.
(WebKit::SharedMemory::Handle::encode): Implement.
(WebKit::SharedMemory::Handle::decode): Implement.
(WebKit::SharedMemory::create): Implement.
(WebKit::mapProtection): Added.
(WebKit::SharedMemory::~SharedMemory): Implement.
(WebKit::SharedMemory::createHandle): Implement.
(WebKit::SharedMemory::systemPageSize): Implement.

  • Shared/qt/MappedMemory.h: Removed.
  • Shared/qt/MappedMemoryPool.cpp: Removed.
  • Shared/qt/UpdateChunk.cpp:

(WebKit::UpdateChunk::UpdateChunk):
(WebKit::UpdateChunk::decode):
Modify to use MappedMemoryPool.

  • Shared/qt/UpdateChunk.h:
  • WebKit2.pro:

Modify affected lines.

6:34 AM Changeset in webkit [70449] by Adam Roben
  • 2 edits in trunk/LayoutTests

Land new XP results for backslash-to-yen-sign-euc.html

These match the changes made in r69568 for other platforms.

  • platform/win-xp/fast/text/backslash-to-yen-sign-euc-expected.txt:
5:31 AM Changeset in webkit [70448] by commit-queue@webkit.org
  • 3 edits
    2 adds
    21 deletes in trunk/LayoutTests

2010-10-25 Benjamin Kalman <kalman@chromium.org>

Reviewed by Kent Tamura.

Make editing/deleting/5390681.html and
editing/deleting/delete-mixed-editable-content-001.html use Markup
instead of render tree.
https://bugs.webkit.org/show_bug.cgi?id=48112

  • editing/deleting/5390681-expected.txt: Added.
  • editing/deleting/5390681.html: Updated to use Markup instead of render tree.
  • editing/deleting/delete-mixed-editable-content-001-expected.txt: Added.
  • editing/deleting/delete-mixed-editable-content-001.html: Updated to use Markup instead of render tree.
  • platform/chromium-linux/editing/deleting/5390681-expected.checksum: Removed.
  • platform/chromium-linux/editing/deleting/5390681-expected.png: Removed.
  • platform/chromium-linux/editing/deleting/delete-mixed-editable-content-001-expected.checksum: Removed.
  • platform/chromium-linux/editing/deleting/delete-mixed-editable-content-001-expected.png: Removed.
  • platform/chromium-win/editing/deleting/5390681-expected.checksum: Removed.
  • platform/chromium-win/editing/deleting/5390681-expected.png: Removed.
  • platform/chromium-win/editing/deleting/5390681-expected.txt: Removed.
  • platform/chromium-win/editing/deleting/delete-mixed-editable-content-001-expected.checksum: Removed.
  • platform/chromium-win/editing/deleting/delete-mixed-editable-content-001-expected.png: Removed.
  • platform/chromium-win/editing/deleting/delete-mixed-editable-content-001-expected.txt: Removed.
  • platform/gtk/editing/deleting/5390681-expected.txt: Removed.
  • platform/mac-leopard/editing/deleting/5390681-expected.checksum: Removed.
  • platform/mac-leopard/editing/deleting/5390681-expected.png: Removed.
  • platform/mac/editing/deleting/5390681-expected.checksum: Removed.
  • platform/mac/editing/deleting/5390681-expected.png: Removed.
  • platform/mac/editing/deleting/5390681-expected.txt: Removed.
  • platform/mac/editing/deleting/delete-mixed-editable-content-001-expected.checksum: Removed.
  • platform/mac/editing/deleting/delete-mixed-editable-content-001-expected.png: Removed.
  • platform/mac/editing/deleting/delete-mixed-editable-content-001-expected.txt: Removed.
  • platform/qt/editing/deleting/5390681-expected.txt: Removed.
  • platform/qt/editing/deleting/delete-mixed-editable-content-001-expected.txt: Removed.
3:09 AM Changeset in webkit [70447] by ariya@webkit.org
  • 3 edits in trunk/LayoutTests

2010-10-25 Ariya Hidayat <ariya@sencha.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Update the baseline for blur shadow test
https://bugs.webkit.org/show_bug.cgi?id=48223

After the blur radius fix in r68145, the baseline needs to be updated.

  • platform/qt/fast/box-shadow/basic-shadows-expected.checksum:
  • platform/qt/fast/box-shadow/basic-shadows-expected.png:
2:50 AM Changeset in webkit [70446] by pfeldman@chromium.org
  • 7 edits in trunk/WebCore

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

Reviewed by Timothy Hatcher.

Web Inspector: slowly make old resources panel optional.
https://bugs.webkit.org/show_bug.cgi?id=48207

2:36 AM Changeset in webkit [70445] by pfeldman@chromium.org
  • 8 edits in trunk/WebCore

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

Reviewed by Timothy Hatcher.

Web Inspector: add support for errors, warnings and search to the storage panel.
https://bugs.webkit.org/show_bug.cgi?id=48206

  • inspector/front-end/ConsoleView.js: (WebInspector.ConsoleView.prototype.addMessage): (WebInspector.ConsoleView.prototype.clearMessages):
  • inspector/front-end/Resource.js: (WebInspector.Resource.prototype.set errors): (WebInspector.Resource.prototype.set warnings): (WebInspector.Resource.prototype.get searchMatches): (WebInspector.Resource.prototype.set searchMatches): (WebInspector.Resource.prototype.clearErrorsAndWarnings):
  • inspector/front-end/ResourceManager.js: (WebInspector.ResourceManager): (WebInspector.ResourceManager.prototype.identifierForInitialRequest): (WebInspector.ResourceManager.prototype._createResource): (WebInspector.ResourceManager.prototype._appendRedirect): (WebInspector.ResourceManager.prototype.didReceiveResponse): (WebInspector.ResourceManager.prototype.didFinishLoading): (WebInspector.ResourceManager.prototype.didFailLoading): (WebInspector.ResourceManager.prototype.didLoadResourceFromMemoryCache): (WebInspector.ResourceManager.prototype.didCommitLoadForFrame): (WebInspector.ResourceManager.prototype.frameDetachedFromParent): (WebInspector.ResourceManager.prototype._addFramesRecursively): (WebInspector.ResourceManager.prototype.resourceForURL): (WebInspector.ResourceManager.prototype.addConsoleMessage): (WebInspector.ResourceManager.prototype.clearConsoleMessages): (WebInspector.ResourceTreeModel): (WebInspector.ResourceTreeModel.prototype.addOrUpdateFrame): (WebInspector.ResourceTreeModel.prototype.didCommitLoadForFrame): (WebInspector.ResourceTreeModel.prototype.frameDetachedFromParent): (WebInspector.ResourceTreeModel.prototype._clearChildFramesAndResources): (WebInspector.ResourceTreeModel.prototype.addResourceToFrame): (WebInspector.ResourceTreeModel.prototype._clearResources): (WebInspector.ResourceTreeModel.prototype._bindResourceURL): (WebInspector.ResourceTreeModel.prototype._unbindResourceURL): (WebInspector.ResourceTreeModel.prototype.resourceForURL): (WebInspector.ResourceTreeModel.prototype.forAllResources): (WebInspector.ResourceTreeModel.prototype._callForFrameResources):
  • inspector/front-end/StoragePanel.js: (WebInspector.StoragePanel): (WebInspector.StoragePanel.prototype.get toolbarItemLabel): (WebInspector.StoragePanel.prototype.reset): (WebInspector.StoragePanel.prototype.removeFrame): (WebInspector.StoragePanel.prototype.canShowSourceLine): (WebInspector.StoragePanel.prototype.showSourceLine): (WebInspector.StoragePanel.prototype.showResource): (WebInspector.StoragePanel.prototype._showResourceView): (WebInspector.StoragePanel.prototype.updateMainViewWidth): (WebInspector.StoragePanel.prototype.get searchableViews.callback): (WebInspector.StoragePanel.prototype.get searchableViews): (WebInspector.StoragePanel.prototype._forAllResourceTreeElements): (WebInspector.StoragePanel.prototype.searchMatchFound): (WebInspector.StoragePanel.prototype.searchCanceled.callback): (WebInspector.StoragePanel.prototype.searchCanceled): (WebInspector.StoragePanel.prototype.performSearch): (WebInspector.StoragePanel.prototype.showView): (WebInspector.BaseStorageTreeElement.prototype.onattach): (WebInspector.BaseStorageTreeElement.prototype.set titleText): (WebInspector.BaseStorageTreeElement.prototype.isEventWithinDisclosureTriangle): (WebInspector.FrameResourceTreeElement): (WebInspector.FrameResourceTreeElement.prototype.onselect): (WebInspector.FrameResourceTreeElement.prototype.ondblclick): (WebInspector.FrameResourceTreeElement.prototype.onattach): (WebInspector.FrameResourceTreeElement.prototype._ondragstart): (WebInspector.FrameResourceTreeElement.prototype._setBubbleText): (WebInspector.FrameResourceTreeElement.prototype._resetBubble): (WebInspector.FrameResourceTreeElement.prototype._searchMatchesUpdated): (WebInspector.FrameResourceTreeElement.prototype._errorsWarningsUpdated):
  • inspector/front-end/inspector.css: (.storage.panel .sidebar): (.storage.panel .outline-disclosure li): (.storage.panel .outline-disclosure li.parent): (.storage.panel .outline-disclosure li .selection): (.storage.panel .outline-disclosure .icon): (.storage.panel .base-storage-tree-element-title): (.storage.panel .status): (.storage.panel li .status .bubble): (li .status): (li .status:empty): (li .status .bubble): (li .status .bubble:empty): (li.selected .status .bubble): (:focus li.selected .status .bubble): (body.inactive li.selected .status .bubble): (li.selected .bubble.search-matches): (:focus li.selected .bubble.search-matches): (body.inactive li.selected .bubble.search-matches):
2:11 AM Changeset in webkit [70444] by yuzo@google.com
  • 2 edits in trunk/LayoutTests

2010-10-25 Yuzo Fujishima <yuzo@google.com>

Unreviewed Chromium test expectation change.

editing/spelling/spellcheck-attribute.html now passes for Mac.

  • platform/chromium/test_expectations.txt:
2:06 AM Changeset in webkit [70443] by yuzo@google.com
  • 2 edits in trunk/LayoutTests

2010-10-25 Yuzo Fujishima <yuzo@google.com>

Unreviewed Chromium test expectation change.

fast/frames/frame-src-attribute.html now passes for Mac.

  • platform/chromium/test_expectations.txt:
12:56 AM Changeset in webkit [70442] by Csaba Osztrogonác
  • 3 edits in trunk/WebKitTools

Make http locking default in NRWT.
https://bugs.webkit.org/show_bug.cgi?id=48053

Patch by Gabor Rapcsanyi <rgabor@inf.u-szeged.hu> on 2010-10-25
Reviewed by Ojan Vafai.

  • Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
  • Scripts/webkitpy/layout_tests/run_webkit_tests.py:
12:25 AM Changeset in webkit [70441] by Csaba Osztrogonác
  • 2 edits in trunk/WebKitTools

<http://webkit.org/b/48185> build-webkit: add support for --progress-tag switch
(Re-landing r70413 after Qt minimal buildfix: r70440.)

Patch by David Kilzer <ddkilzer@apple.com> on 2010-10-25
Reviewed by Kenneth Rohde Christiansen.

  • Scripts/build-webkit: Added support for --progress-tag switch.

It should have been added with r57051.

12:16 AM Changeset in webkit [70440] by Csaba Osztrogonác
  • 2 edits in trunk/WebCore

Fix Qt minimal build break revealed by r70413.
https://bugs.webkit.org/show_bug.cgi?id=48185

Reviewed by David Kilzer.

  • rendering/RenderMeter.h: Missing include added, needless include removed.

Oct 24, 2010:

11:25 PM Changeset in webkit [70439] by kinuko@chromium.org
  • 40 edits in branches/chromium/552

Merge 70438 - 2010-10-20 Kinuko Yasuda <kinuko@chromium.org>

BUG=60520

TBR=kinuko@chromium.org

10:53 PM Changeset in webkit [70438] by kinuko@chromium.org
  • 40 edits in trunk

2010-10-20 Kinuko Yasuda <kinuko@chromium.org>

Reviewed by Jian Li.

Renumber FileError/FileException error codes per latest File API spec changes
https://bugs.webkit.org/show_bug.cgi?id=47936

  • public/WebFileError.h:
  • src/AssertMatchingEnums.cpp:
  • src/AsyncFileWriterChromium.cpp: (WebCore::AsyncFileWriterChromium::didFail):

2010-10-20 Kinuko Yasuda <kinuko@chromium.org>

Reviewed by Jian Li.

Renumber FileError/FileException error codes per latest File API spec changes
https://bugs.webkit.org/show_bug.cgi?id=47936

  • bindings/js/JSDOMBinding.cpp: (WebCore::setDOMException): Added FileExceptionType case.
  • bindings/v8/V8Proxy.cpp: (WebCore::V8Proxy::setDOMException): Added FileExceptionType case.
  • dom/ExceptionCode.cpp: (WebCore::getExceptionCodeDescription): Added code for FileException.
  • dom/ExceptionCode.h:
  • fileapi/AsyncFileWriterClient.h:
  • fileapi/DirectoryEntry.cpp: (WebCore::DirectoryEntry::getFile): (WebCore::DirectoryEntry::getDirectory): (WebCore::DirectoryEntry::removeRecursively):
  • fileapi/DirectoryEntrySync.cpp: (WebCore::DirectoryEntrySync::getFile): (WebCore::DirectoryEntrySync::getDirectory): (WebCore::DirectoryEntrySync::removeRecursively):
  • fileapi/DirectoryReaderSync.cpp: (WebCore::DirectoryReaderSync::readEntries):
  • fileapi/Entry.cpp: (WebCore::Entry::getMetadata): (WebCore::Entry::moveTo): (WebCore::Entry::copyTo): (WebCore::Entry::remove): (WebCore::Entry::getParent):
  • fileapi/EntrySync.cpp: (WebCore::EntrySync::getMetadata): (WebCore::EntrySync::moveTo): (WebCore::EntrySync::copyTo): (WebCore::EntrySync::remove):
  • fileapi/FileError.h: Added error code enum. (WebCore::FileError::create): (WebCore::FileError::code): (WebCore::FileError::FileError):
  • fileapi/FileError.idl: Rebased error code numbers.
  • fileapi/FileException.h: Added exception code enum. (WebCore::FileException::ErrorCodeToExceptionCode): Added.
  • fileapi/FileException.idl: Rebased exception code numbers.
  • fileapi/FileReader.cpp: (WebCore::FileReader::abort): (WebCore::FileReader::failed): (WebCore::FileReader::httpStatusCodeToErrorCode): Changed from httpStatuCodeToExceptionCode.
  • fileapi/FileReader.h:
  • fileapi/FileReaderSync.cpp: (WebCore::FileReaderSyncLoader::start):
  • fileapi/FileSystemCallbacks.cpp: (WebCore::FileSystemCallbacksBase::didFail):
  • fileapi/FileWriter.cpp: (WebCore::FileWriter::write): (WebCore::FileWriter::seek): (WebCore::FileWriter::truncate): (WebCore::FileWriter::abort): (WebCore::FileWriter::didFail): (WebCore::FileWriter::setError):
  • fileapi/FileWriter.h:
  • fileapi/SyncCallbackHelper.h: (WebCore::SyncCallbackHelper::SyncCallbackHelper): (WebCore::SyncCallbackHelper::getResult): (WebCore::SyncCallbackHelper::setError):
  • page/DOMWindow.cpp: (WebCore::DOMWindow::requestFileSystem):
  • workers/WorkerContext.cpp: (WebCore::WorkerContext::requestFileSystem): (WebCore::WorkerContext::requestFileSystemSync):

2010-10-20 Kinuko Yasuda <kinuko@chromium.org>

Reviewed by Jian Li.

Renumber FileError/FileException error codes per latest File API spec changes
https://bugs.webkit.org/show_bug.cgi?id=47936

Updated test expectations to match with the new error code.

  • fast/files/read-blob-async-expected.txt:
  • fast/files/read-file-async-expected.txt:
  • fast/files/workers/worker-read-blob-async-expected.txt:
  • fast/files/workers/worker-read-blob-sync-expected.txt:
  • fast/files/workers/worker-read-file-async-expected.txt:
  • fast/files/workers/worker-read-file-sync-expected.txt:
  • fast/filesystem/op-copy-expected.txt:
  • fast/filesystem/op-get-entry-expected.txt:
  • fast/filesystem/op-move-expected.txt:
  • fast/filesystem/op-remove-expected.txt:
  • fast/filesystem/op-restricted-chars-expected.txt:
  • fast/filesystem/op-restricted-names-expected.txt:
10:29 PM Changeset in webkit [70437] by abarth@webkit.org
  • 2 edits in trunk/WebKitTools

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

Reviewed by David Kilzer.

webkit-patch upload fails when the patch removes a file
https://bugs.webkit.org/show_bug.cgi?id=48187

We need to use "--" to separate file names from the rest of the
command.

  • Scripts/webkitpy/common/checkout/scm.py:
10:28 PM Changeset in webkit [70436] by mitz@apple.com
  • 2 edits in trunk/WebKit/win

Build fix.

  • Interfaces/WebKit.idl: Touched.
10:17 PM Changeset in webkit [70435] by mitz@apple.com
  • 10 edits in trunk

Expose HitTestResult::absoluteMediaURL() via WebKit API
https://bugs.webkit.org/show_bug.cgi?id=48219

Reviewed by Anders Carlsson.

WebCore:

  • WebCore.exp.in: Export HitTestResult::absoluteMediaURL().

WebKit/mac:

  • Misc/WebElementDictionary.mm:

(+[WebElementDictionary initializeLookupTable]): Map WebElementMediaURLKey to
_absoluteMediaURL.
(-[WebElementDictionary _absoluteMediaURL]): Added. Returns absoluteMediaURL().

  • WebKit.exp: Export WebElementMediaURLKey.
  • WebView/WebView.mm: Define WebElementMediaURLKey.
  • WebView/WebViewPrivate.h: Declare WebElementMediaURLKey.

WebKit/win:

  • Interfaces/IWebView.idl: Added WebElementMediaURLKey.
  • WebElementPropertyBag.cpp:

(WebElementPropertyBag::Read): Map WebElementMediaURLKey to absoluteMediaURL().

9:39 PM Changeset in webkit [70434] by commit-queue@webkit.org
  • 2 edits in trunk/JavaScriptCore

2010-10-24 Kwang Yul Seo <skyul@company100.net>

Reviewed by David Kilzer.

Check endianness with BIG_ENDIAN in RVCT.
https://bugs.webkit.org/show_bug.cgi?id=46122

RVCT defines BIG_ENDIAN if compiling for a big-endian target.

  • wtf/Platform.h:
8:45 PM Changeset in webkit [70433] by mitz@apple.com
  • 1 edit
    1 delete in trunk/JavaScriptCore

Removed empty directories.

Rubber-stamped by Dave Kilzer.

8:12 PM Changeset in webkit [70432] by morrita@google.com
  • 2 edits in trunk/LayoutTests

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

Unreviewed skip.

Added editing/spelling/spelling-linebreak.html to skip,
which was originally tested against a wrong expectation.

  • platform/gtk/Skipped:
7:29 PM Changeset in webkit [70431] by tkent@chromium.org
  • 1 edit
    7 deletes in trunk/LayoutTests

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

Reviewed by David Kilzer.

Remove unnecessary test results.
https://bugs.webkit.org/show_bug.cgi?id=47711

The following tests were converted to dumpAsText() in
http://trac.webkit.org/changeset/47608. So corresponding PNG files
are unnecessary.

  • editing/execCommand/italicizeByCharacter.html
  • editing/execCommand/modifyForeColorByCharacter.html
  • editing/execCommand/strikethroughSelection.html

The following tests were converted to dumpAsText() in
http://trac.webkit.org/changeset/47543.

  • editing/style/remove-underline-across-paragraph.html
  • editing/style/remove-underline-across-paragraph-in-bold.html

The following tests were converted to dumpAsText() in
http://trac.webkit.org/changeset/47542.

  • editing/style/remove-underline-after-paragraph.html
  • editing/style/remove-underline-after-paragraph-in-bold.html
  • platform/mac/editing/execCommand/italicizeByCharacter-expected.png: Removed.
  • platform/mac/editing/execCommand/modifyForeColorByCharacter-expected.png: Removed.
  • platform/mac/editing/execCommand/strikethroughSelection-expected.png: Removed.
  • platform/mac/editing/style/remove-underline-across-paragraph-expected.png: Removed.
  • platform/mac/editing/style/remove-underline-across-paragraph-in-bold-expected.png: Removed.
  • platform/mac/editing/style/remove-underline-after-paragraph-expected.png: Removed.
  • platform/mac/editing/style/remove-underline-after-paragraph-in-bold-expected.png: Removed.
7:18 PM Changeset in webkit [70430] by yuzo@google.com
  • 2 edits in trunk/WebKit/chromium

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

Unreviewed, rolling out r70361.
http://trac.webkit.org/changeset/70361
https://bugs.webkit.org/show_bug.cgi?id=48217

Chromium tests NoInitialAutocompleteForReadOnly and
InitialAutocomplete don't complete (Requested by yuzo on
#webkit).

  • public/WebDocument.h:
6:21 PM Changeset in webkit [70429] by morrita@google.com
  • 2 edits
    1 add
    4 deletes in trunk/LayoutTests

2010-10-22 MORITA Hajime <morrita@google.com>

Reviewed by Tony Chang.

Text test conversion: editing/spelling/spelling-linebreak.html
https://bugs.webkit.org/show_bug.cgi?id=47649

Rewrote verification part using hasSpellingMarker().

  • editing/spelling/spelling-linebreak-expected.txt: Added.
  • editing/spelling/spelling-linebreak.html:
  • platform/gtk/editing/spelling/spelling-linebreak-expected.txt: Removed.
  • platform/mac/editing/spelling/spelling-linebreak-expected.checksum: Removed.
  • platform/mac/editing/spelling/spelling-linebreak-expected.png: Removed.
  • platform/mac/editing/spelling/spelling-linebreak-expected.txt: Removed.
6:10 PM Changeset in webkit [70428] by weinig@apple.com
  • 10 edits in trunk

Need a way to determine the screen rect for a form control in WebKit2
<rdar://problem/8530670>
https://bugs.webkit.org/show_bug.cgi?id=48216

Reviewed by Dan Bernstein.

WebCore:

  • WebCore.exp.in: Add export.
  • dom/Element.cpp:

(WebCore::Element::boundsInWindowSpace):

  • dom/Element.h:

Add function to return the bounding box in window (in ScrollView terminology) space,
this is the same space as the root viewport.

WebKit2:

  • Shared/API/c/WKSharedAPICast.h:

(WebKit::toAPI):
Add conversion from IntRect to WKRect.

  • WebProcess/InjectedBundle/API/c/WKBundleNodeHandle.cpp:

(WKBundleNodeHandleGetElementBounds):

  • WebProcess/InjectedBundle/API/c/WKBundleNodeHandlePrivate.h:
  • WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp:

(WebKit::InjectedBundleNodeHandle::elementBounds):

  • WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.h:

Add SPI to get the rect in window space. The client can then convert this to screen
space if they wish to.

5:38 PM Changeset in webkit [70427] by Patrick Gansterer
  • 2 edits in trunk/JavaScriptCore

2010-10-24 Patrick Gansterer <Patrick Gansterer>

Unreviewed, fix typo of last build fix.

  • wtf/DateMath.cpp:
5:29 PM Changeset in webkit [70426] by Patrick Gansterer
  • 2 edits in trunk/JavaScriptCore

2010-10-24 Patrick Gansterer <Patrick Gansterer>

Unreviewed build fix for chromium.

  • wtf/DateMath.cpp: Added missing include.
4:20 PM Changeset in webkit [70425] by Patrick Gansterer
  • 8 edits in trunk/JavaScriptCore

2010-10-24 Patrick Gansterer <Patrick Gansterer>

Reviewed by David Kilzer.

Add WTF_ARRAY_LENGTH macro to WTF
https://bugs.webkit.org/show_bug.cgi?id=32828

Unify the different implementations and usages.

  • interpreter/Interpreter.cpp: (JSC::Interpreter::privateExecute):
  • runtime/DatePrototype.cpp: (JSC::formatLocaleDate):
  • runtime/JSGlobalObject.cpp: (JSC::JSGlobalObject::reset):
  • runtime/JSONObject.cpp: (JSC::Stringifier::appendQuotedString): (JSC::Stringifier::toJSON): (JSC::Stringifier::appendStringifiedValue):
  • runtime/UString.cpp: (JSC::UString::number):
  • wtf/DateMath.cpp: (WTF::parseDateFromNullTerminatedCharacters):
  • wtf/StdLibExtras.h:
2:08 PM Changeset in webkit [70424] by andreas.kling@nokia.com
  • 2 edits in trunk/WebCore

2010-10-24 Andreas Kling <kling@webkit.org>

Reviewed by Kenneth Rohde Christiansen.

[Qt] ImageBuffer::platformTransformColorSpace is unnecessarily slow
https://bugs.webkit.org/show_bug.cgi?id=48211

Grab the QImage::bits() and do direct access instead of going through
QImage::pixel() and QImage::setPixel().

This is a performance optimization, so no new tests.

  • platform/graphics/qt/ImageBufferQt.cpp: (WebCore::ImageBuffer::platformTransformColorSpace):
12:49 PM Changeset in webkit [70423] by commit-queue@webkit.org
  • 2 edits in trunk/WebKitTools

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

Unreviewed, rolling out r70413.
http://trac.webkit.org/changeset/70413
https://bugs.webkit.org/show_bug.cgi?id=48210

It broke Qt minimal build (Requested by Ossy on #webkit).

  • Scripts/build-webkit:
12:31 PM Changeset in webkit [70422] by mitz@apple.com
  • 3 edits in trunk/WebKit/mac

Removed deprecated methods from the WebHTMLHighlighter private protocol.

Reviewed by Simon Fraser.

  • WebCoreSupport/WebChromeClient.mm:

(WebChromeClient::customHighlightRect): Call -highlightRectForLine:representedNode:
unconditionally.
(WebChromeClient::paintCustomHighlight): Call
-paintHighlightForBox:onLine:behindText:entireLine:representedNode: unconditionally.

  • WebView/WebHTMLViewPrivate.h:
12:24 PM Changeset in webkit [70421] by krit@webkit.org
  • 12 edits in trunk

2010-10-24 Dirk Schulze <krit@webkit.org>

Reviewed by Nikolas Zimmermann.

Filter example Chiseled from SVG Wow! is slow
https://bugs.webkit.org/show_bug.cgi?id=48174

Added 'using WTF::ByteArray;' at the end of ByteArray.h

  • wtf/ByteArray.h:

2010-10-24 Dirk Schulze <krit@webkit.org>

Reviewed by Nikolas Zimmermann.

Filter example Chiseled from SVG Wow! is slow
https://bugs.webkit.org/show_bug.cgi?id=48174

Use a pointer to the ByteArray instead of the ref counted CanvasPixelArray or ImageData directly
to access the data for pixel manipulation on SVG Filters or SVG Masker. This is a
performance increase since the recurring use of the -> operator can be avoided.
FEConvolveMatrix and FELighting still need to change in a followup patch.

No functionality was changed. So, no new tests.

  • platform/graphics/filters/FEBlend.cpp: (WebCore::FEBlend::apply):
  • platform/graphics/filters/FEColorMatrix.cpp: (WebCore::luminance): (WebCore::effectType): (WebCore::FEColorMatrix::apply):
  • platform/graphics/filters/FEComponentTransfer.cpp: (WebCore::FEComponentTransfer::apply):
  • platform/graphics/filters/FEComposite.cpp: (WebCore::arithmetic): (WebCore::FEComposite::apply):
  • platform/graphics/filters/FEDisplacementMap.cpp: (WebCore::FEDisplacementMap::apply):
  • platform/graphics/filters/FEGaussianBlur.cpp: (WebCore::boxBlur): (WebCore::FEGaussianBlur::apply):
  • platform/graphics/filters/FEMorphology.cpp: (WebCore::FEMorphology::apply):
  • platform/graphics/filters/FETurbulence.cpp: (WebCore::FETurbulence::apply):
  • rendering/RenderSVGResourceMasker.cpp: (WebCore::RenderSVGResourceMasker::drawContentIntoMaskImage):
11:58 AM Changeset in webkit [70420] by pfeldman@chromium.org
  • 5 edits in trunk/WebCore

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

Reviewed by Timothy Hatcher.

Web Inspector: polish network panel UI.
https://bugs.webkit.org/show_bug.cgi?id=48205

  • inspector/front-end/Images/frame.png:
  • inspector/front-end/Images/networkIcon.png:
  • inspector/front-end/NetworkPanel.js: (WebInspector.NetworkPanel.prototype._createTable): (WebInspector.NetworkPanel.prototype._setLargerResources): (WebInspector.NetworkPanel.prototype._toggleGridMode):
  • inspector/front-end/networkPanel.css: (.network.panel .data-grid td): (.network.panel .data-grid.small td): (#network-views .resource-view.headers-visible .resource-view-content): (#network-views.small .resource-view.headers-visible .resource-view-content): (#network-views .resource-view-headers): (#network-views.small .resource-view-headers): (#network-views .resource-view .tabbed-pane-header): (#network-views.small .resource-view .tabbed-pane-header):
11:53 AM Changeset in webkit [70419] by Patrick Gansterer
  • 2 edits in trunk/JavaScriptCore

2010-10-24 Patrick Gansterer <Patrick Gansterer>

Reviewed by David Kilzer.

Inline WTF::bitwise_cast and fix style
https://bugs.webkit.org/show_bug.cgi?id=48208

  • wtf/StdLibExtras.h: (WTF::bitwise_cast): (WTF::bitCount):
10:15 AM Changeset in webkit [70418] by commit-queue@webkit.org
  • 2 edits in trunk

2010-10-24 Anders Bakken <agbakken@gmail.com>

Reviewed by Simon Hausmann.

[Qt] Disable enable_fast_mobile_scrolling for QWS
https://bugs.webkit.org/show_bug.cgi?id=48006

Turning this on breaks the acidtests for QWS/DirectFB and QWS/QVFB

  • WebKit.pri:
9:59 AM Changeset in webkit [70417] by commit-queue@webkit.org
  • 2 edits in trunk/WebKitTools

2010-10-24 Yi Shen <yi.4.shen@nokia.com>

Reviewed by Andreas Kling.

[Qt][QtTestBrowser] Toggle use of QGraphicsView messes up the menu
https://bugs.webkit.org/show_bug.cgi?id=48141

  • QtTestBrowser/launcherwindow.cpp: (LauncherWindow::init): (LauncherWindow::initializeView): (LauncherWindow::toggleWebView):
9:58 AM Changeset in webkit [70416] by dbates@webkit.org
  • 2 edits
    1 add
    11 deletes in trunk/LayoutTests

2010-10-24 Daniel Bates <dbates@rim.com>

Reviewed by Antonio Gomes.

Convert layout test fast/frame/frame-src-attribute.html from
render-tree/pixel test to text-only test
https://bugs.webkit.org/show_bug.cgi?id=48200

Modified the test case LayoutTests/fast/frame/frame-src-attribute.html
to dump its output as text.

Currently, the test produces a render-tree dump. Instead, it is sufficient
for this test to dump as text since it is a PASS/FAIL-style test. This will
also make the test results platform-independent.

  • fast/frames/frame-src-attribute-expected.txt: Added.
  • fast/frames/frame-src-attribute.html: Modified to dump its output as text.
  • platform/chromium-linux/fast/frames/frame-src-attribute-expected.checksum: Removed.
  • platform/chromium-linux/fast/frames/frame-src-attribute-expected.png: Removed.
  • platform/chromium-mac/fast/frames/frame-src-attribute-expected.checksum: Removed.
  • platform/chromium-mac/fast/frames/frame-src-attribute-expected.png: Removed.
  • platform/chromium-win/fast/frames/frame-src-attribute-expected.checksum: Removed.
  • platform/chromium-win/fast/frames/frame-src-attribute-expected.png: Removed.
  • platform/chromium-win/fast/frames/frame-src-attribute-expected.txt: Removed.
  • platform/gtk/fast/frames/frame-src-attribute-expected.txt: Removed.
  • platform/mac/fast/frames/frame-src-attribute-expected.checksum: Removed.
  • platform/mac/fast/frames/frame-src-attribute-expected.png: Removed.
  • platform/mac/fast/frames/frame-src-attribute-expected.txt: Removed.
  • platform/qt/fast/frames/frame-src-attribute-expected.txt: Removed.
9:54 AM Changeset in webkit [70415] by dbates@webkit.org
  • 2 edits
    1 add in trunk/WebKitTools

2010-10-24 Daniel Bates <dbates@rim.com>

Reviewed by David Kilzer.

Fix Perl uninitialized warnings in VCSUtils::svnStatus()
and VCSUtils::removeEOL().
https://bugs.webkit.org/show_bug.cgi?id=48196

VCSUtils::svnStatus() concatenates the output of svn status with
a new line character and svn status may return no output (say for
a file that has not been added, deleted, or modified). We should
only concatenate the output of svn status if there is some.

Also, VCSUtils::removeEOL() should ensure that its argument
is initialized before performing a string substitution.

  • Scripts/VCSUtils.pm:
    • Modified removeEOL() to return "" if its argument is undefined.
    • Exported removeEOL() so that it can be tested.
  • Scripts/webkitperl/VCSUtils_unittest/removeEOL.pl: Added.
9:12 AM Changeset in webkit [70414] by Nikolas Zimmermann
  • 7 edits in trunk

2010-10-24 Nikolas Zimmermann <nzimmermann@rim.com>

Reviewed by Dimitri Glazkov.

Convert SVGAngle to the new SVGPropertyTearOff concept, reimplement it properly
https://bugs.webkit.org/show_bug.cgi?id=48179

Fix WebGL tests. Accept 'boolean' as valid numeric type in StrictTypeChecking mode.

  • bindings/scripts/CodeGeneratorJS.pm:
  • bindings/scripts/CodeGeneratorV8.pm:

2010-10-24 Nikolas Zimmermann <nzimmermann@rim.com>

Reviewed by Dimitri Glazkov.

Convert SVGAngle to the new SVGPropertyTearOff concept, reimplement it properly
https://bugs.webkit.org/show_bug.cgi?id=48179

It turns out the CodeGenerator changes are right, and the webgl tests have a problem, since StrictTypeChecking was enabled for numeric types.
When calling gl.bindAttribLocation() be sure to pass the second argument as integer, not as string.
Fixes all failing webgl tests on the snow leopard bot.

  • fast/canvas/webgl/context-attributes-alpha-depth-stencil-antialias.html:
  • fast/canvas/webgl/resources/webgl-test-utils.js: (WebGLTestUtils):
  • fast/canvas/webgl/resources/webgl-test.js: (createProgram):
6:59 AM Changeset in webkit [70413] by ddkilzer@apple.com
  • 2 edits in trunk/WebKitTools

<http://webkit.org/b/48185> build-webkit: add support for --progress-tag switch

Reviewed by Kenneth Rohde Christiansen.

  • Scripts/build-webkit: Added support for --progress-tag switch.

It should have been added with r57051.

6:49 AM Changeset in webkit [70412] by ddkilzer@apple.com
  • 2 edits in trunk/WebKitTools

<http://webkit.org/b/48184> build-webkit: reformat support variables for better maintainability

Reviewed by Daniel Bates.

  • Scripts/build-webkit: Alphabetized the @features array based

on the name of the feature. Reformatted the list of support
variables so that they match the order of @features, and so that
each has its own line. This makes it easy to add new variables
in the correct order.

4:58 AM Changeset in webkit [70411] by Nikolas Zimmermann
  • 3 edits in trunk/WebCore

2010-10-24 Nikolas Zimmermann <nzimmermann@rim.com>

Reviewed by Dirk Schulze.

Convert SVGAngle to the new SVGPropertyTearOff concept, reimplement it properly
https://bugs.webkit.org/show_bug.cgi?id=48179

Speculative fix for the WebGL tests, I was not aware they're not run on Leopard, so I missed the breakage.

  • bindings/scripts/CodeGeneratorJS.pm: Restore the order of type checking in the 'StrictTypeChecking' code.
  • bindings/scripts/CodeGeneratorV8.pm: Ditto.
3:38 AM Changeset in webkit [70410] by Nikolas Zimmermann
  • 25 edits
    4 adds in trunk

2010-10-23 Nikolas Zimmermann <nzimmermann@rim.com>

Reviewed by Dirk Schulze.

Convert SVGAngle to the new SVGPropertyTearOff concept, reimplement it properly
https://bugs.webkit.org/show_bug.cgi?id=48179

Rewrite SVGAngle to use the new SVGPropertyTearOff concept, and consume much less memory.
Down from two floats, one string and an ushort to one float and one ushort. Synchronize value/valueInSpecifiedUnits/valueAsString on demand.

Adding an extensive SVGAngle test, that required to implement 'StrictTypeChecking' for attribute setters (was only implemented in V8/JSC for function cals so far).

Test: svg/dom/SVGAngle.html

  • GNUmakefile.am: Add SVGAnimatedAngle.h to build.
  • WebCore.gypi: Ditto.
  • WebCore.pro: Ditto.
  • WebCore.vcproj/WebCore.vcproj: Ditto.
  • WebCore.xcodeproj/project.pbxproj: Ditto.
  • bindings/scripts/CodeGenerator.pm: Split IsPrimitiveType in IsPrimitiveType and IsNumericType.
  • bindings/scripts/CodeGeneratorJS.pm: Implement 'StrictTypeChecking' for setters and recognize SVGAngle as new SVGPropertyTearOff type.
  • bindings/scripts/CodeGeneratorObjC.pm: Ditto.
  • bindings/scripts/CodeGeneratorV8.pm: Ditto.
  • svg/DeprecatedSVGAnimatedPropertyTraits.h: Remove SVGAngle handling.
  • svg/DeprecatedSVGAnimatedTemplate.h: Remove SVGAnimatedAngle handling.
  • svg/SVGAngle.cpp: Rewrite, to consume less memory and to operate more efficient.
  • svg/SVGAngle.h: Ditto.
  • svg/SVGAngle.idl: Add 'StrictTypeChecking' to the value/valueInSpecifiedUnits methods.
  • svg/SVGAnimatedAngle.h: Added.
  • svg/SVGAnimatedAngle.idl: Mark as [SVGAnimatedProperty].
  • svg/SVGMarkerElement.cpp: (WebCore::SVGMarkerElement::parseMappedAttribute): SVGAngle::setValueAsString() now takes an ExceptionCode parameter.
  • svg/SVGMarkerElement.h: s/ANIMATED_PROPERTY/ANIMATED_PROPERTY_NEW/ for the SVGAngle type.
  • svg/SVGNumber.idl: Remove exception setter exceptions, which aren't needed. As we're now generating exception handlers in the bindings, it would lead to compile errors.
  • svg/SVGPoint.idl: Ditto.
  • svg/SVGRect.idl: Ditto.
  • svg/SVGSVGElement.idl: Remove obsolete [SVGLiveProperty] flag.

2010-10-23 Nikolas Zimmermann <nzimmermann@rim.com>

Reviewed by Dirk Schulze.

Convert SVGAngle to the new SVGPropertyTearOff concept, reimplement it properly
https://bugs.webkit.org/show_bug.cgi?id=48179

Add an extensive SVGAngle test, checking all getter/setters & methods, with valid and invalid arguments.
The test exposes bugs in Opera & FireFox, we now pass them all.

  • svg/dom/SVGAngle-expected.txt: Added.
  • svg/dom/SVGAngle.html: Added.
  • svg/dom/script-tests/SVGAngle.js: Added.
  • svg/dom/svg-element-attribute-js-null-expected.txt:
  • svg/dom/svg-element-attribute-js-null.xhtml: Update incorrect test, setting valueAsString to null, should not result in "0deg" but "0".

Oct 23, 2010:

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

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

Reviewed by Adam Barth.

EWS never removes invalid patch ids
https://bugs.webkit.org/show_bug.cgi?id=48173

This is just sticking another finger in the dam.
However this adds more unit testing which will help
us make sure we're always releasing patches once we
redesign the release_patch API and call these from
a more central place.

  • Scripts/webkitpy/tool/commands/queues.py:
  • Scripts/webkitpy/tool/commands/queues_unittest.py:
  • Scripts/webkitpy/tool/mocktool.py:
    • Added the ability to request invalid patches. Log a warning message to make sure we don't ever have tests use invalid patch fetches by mistake.
9:34 PM Changeset in webkit [70408] by Dimitri Glazkov
  • 2 edits in trunk/LayoutTests

2010-10-23 Dimitri Glazkov <Dimitri Glazkov>

[Chromium/DRT] Unbreak build by removing duplicate test expectations.

  • platform/chromium/drt_expectations.txt: Removed duplicates.
7:19 PM Changeset in webkit [70407] by commit-queue@webkit.org
  • 3 edits in trunk/WebCore

2010-10-23 Daniel Bates <dbates@rim.com>

Reviewed by Adam Barth.

Remove unused method HTMLFrameElementBase::setNameAndOpenURLCallback()
https://bugs.webkit.org/show_bug.cgi?id=48197

With the landing of the patch for bug #45365 in
changeset 67182 <http://trac.webkit.org/changeset/67182>,
HTMLFrameElementBase::setNameAndOpenURLCallback() is not needed.
Therefore, we remove it.

Before changeset 67182, HTMLFrameElementBase::attach() set up a post-attach
callback to HTMLFrameElementBase::setNameAndOpenURLCallback(). Changeset 67182
removed this callback.

No functionality was changed. So, no new tests.

  • html/HTMLFrameElementBase.cpp: Remove HTMLFrameElementBase::setNameAndOpenURLCallback().
  • html/HTMLFrameElementBase.h: Ditto.
4:49 PM Changeset in webkit [70406] by xan@webkit.org
  • 28 edits in trunk

2010-10-23 Xan Lopez <xlopez@igalia.com>

Reviewed by Sam Weinig.

Unify globalData APIs
https://bugs.webkit.org/show_bug.cgi?id=47969

Make JSGlobalObject::globalData return a reference and adapt
callers. This unifies the API with the existing
CallFrame::globalData, which also returns a reference.

  • debugger/Debugger.cpp: (JSC::evaluateInGlobalCallFrame):
  • interpreter/CallFrame.h:
  • interpreter/Interpreter.cpp: (JSC::Interpreter::dumpRegisters):
  • jsc.cpp: (runWithScripts):
  • parser/JSParser.cpp: (JSC::jsParse):
  • parser/Parser.cpp: (JSC::Parser::parse):
  • parser/Parser.h: (JSC::Parser::parse):
  • runtime/Error.cpp: (JSC::createError): (JSC::createEvalError): (JSC::createRangeError): (JSC::createReferenceError): (JSC::createSyntaxError): (JSC::createTypeError): (JSC::createURIError):
  • runtime/FunctionConstructor.cpp: (JSC::constructFunction):
  • runtime/JSGlobalObject.cpp: (JSC::JSGlobalObject::~JSGlobalObject): (JSC::JSGlobalObject::markChildren):
  • runtime/JSGlobalObject.h: (JSC::JSGlobalObject::globalData):

WebCore:

2010-10-23 Xan Lopez <xlopez@igalia.com>

Reviewed by Sam Weinig.

Unify globalData APIs
https://bugs.webkit.org/show_bug.cgi?id=47969

Adapt code to JSGlobalObject::globalData returning a reference
instead of a pointer.

  • bindings/js/JSCallbackData.cpp: (WebCore::JSCallbackData::invokeCallback):
  • bindings/js/JSCustomXPathNSResolver.cpp: (WebCore::JSCustomXPathNSResolver::lookupNamespaceURI):
  • bindings/js/JSEventListener.cpp: (WebCore::JSEventListener::handleEvent):
  • bindings/js/JSWorkerContextCustom.cpp: (WebCore::JSWorkerContext::markChildren):
  • bindings/js/JSWorkerContextErrorHandler.cpp: (WebCore::JSWorkerContextErrorHandler::handleEvent):
  • bindings/js/ScheduledAction.cpp: (WebCore::ScheduledAction::executeFunctionInContext):
  • bindings/js/WorkerScriptController.cpp: (WebCore::WorkerScriptController::evaluate):
  • bridge/NP_jsobject.cpp: (_NPN_InvokeDefault): (_NPN_Invoke): (_NPN_Evaluate): (_NPN_Construct):

WebKit2:

2010-10-23 Xan Lopez <xlopez@igalia.com>

Reviewed by Sam Weinig.

Unify globalData APIs
https://bugs.webkit.org/show_bug.cgi?id=47969

Adapt code to JSGlobalObject::globalData returning a reference
instead of a pointer.

  • WebProcess/Plugins/NPRuntimeObjectMap.cpp: (WebKit::NPRuntimeObjectMap::getOrCreateJSObject): (WebKit::NPRuntimeObjectMap::evaluate):

WebKit/mac:

2010-10-23 Xan Lopez <xlopez@igalia.com>

Reviewed by Sam Weinig.

Unify globalData APIs
https://bugs.webkit.org/show_bug.cgi?id=47969

  • Plugins/Hosted/NetscapePluginInstanceProxy.mm: (WebKit::NetscapePluginInstanceProxy::evaluate): (WebKit::NetscapePluginInstanceProxy::invoke): (WebKit::NetscapePluginInstanceProxy::invokeDefault): (WebKit::NetscapePluginInstanceProxy::construct):
  • WebView/WebScriptDebugDelegate.mm: (-[WebScriptCallFrame evaluateWebScript:]):
4:47 PM Changeset in webkit [70405] by ap@apple.com
  • 2 edits in trunk/WebCore

2010-10-23 Alexey Proskuryakov <ap@apple.com>

Windows debug build fix.

  • platform/network/cf/CookieStorageCFNet.cpp: Include MainThread.h for isMainThread().
4:24 PM Changeset in webkit [70404] by mitz@apple.com
  • 2 edits in trunk/WebKitTools

Build fix. Add stub implementations for required NSDraggingInfo methods.

  • DumpRenderTree/mac/DumpRenderTreeDraggingInfo.mm:

(-[DumpRenderTreeDraggingInfo draggingFormation]):
(-[DumpRenderTreeDraggingInfo setDraggingFormation:]):
(-[DumpRenderTreeDraggingInfo animatesToDestination]):
(-[DumpRenderTreeDraggingInfo setAnimatesToDestination:]):
(-[DumpRenderTreeDraggingInfo numberOfValidItemsForDrop]):
(-[DumpRenderTreeDraggingInfo setNumberOfValidItemsForDrop:]):
(-[DumpRenderTreeDraggingInfo enumerateDraggingItemsWithOptions:forView:classes:searchOptions:usingBlock:]):

4:21 PM Changeset in webkit [70403] by ddkilzer@apple.com
  • 5 edits
    2 deletes in trunk

2010-10-23 David Kilzer <ddkilzer@apple.com>

<http://webkit.org/b/48186> Remove unneeded WebHTMLRepresentationInternal.h header

Reviewed by Sam Weinig.

The only method defined in WebHTMLRepresentationInternal.h is
also defined in WebHTMLRepresentation.h, so use that instead.

  • WebKit.xcodeproj/project.pbxproj: Removed references to WebHTMLRepresentationInternal.h.

2010-10-23 David Kilzer <ddkilzer@apple.com>

<http://webkit.org/b/48186> Remove unneeded WebHTMLRepresentationInternal.h header

Reviewed by Sam Weinig.

The only method defined in WebHTMLRepresentationInternal.h is
also defined in WebHTMLRepresentation.h, so use that instead.

  • WebView/WebHTMLRepresentationInternal.h: Removed.

2010-10-23 David Kilzer <ddkilzer@apple.com>

<http://webkit.org/b/48186> Remove unneeded WebHTMLRepresentationInternal.h header

Reviewed by Sam Weinig.

The only method defined in WebHTMLRepresentationInternal.h is
also defined in WebHTMLRepresentation.h, so use that instead.

  • DumpRenderTree/mac/InternalHeaders/WebKit/WebHTMLRepresentationInternal.h: Removed.
  • DumpRenderTree/mac/WebArchiveDumpSupport.mm: Switched to use WebHTMLRepresentation.h.
4:18 PM Changeset in webkit [70402] by ap@apple.com
  • 3 edits in trunk/WebKitLibraries

2010-10-23 Alexey Proskuryakov <ap@apple.com>

Windows build fix.

  • win/lib/WebKitSystemInterface.lib:
  • win/lib/WebKitSystemInterface_debug.lib:
3:32 PM Changeset in webkit [70401] by ap@apple.com
  • 2 edits in trunk/WebCore

Windows build fix.

  • platform/network/cf/CookieStorageCFNet.cpp: (WebCore::setCookieStoragePrivateBrowsingEnabled): It's adoptCF, not adoptPtr.
3:17 PM Changeset in webkit [70400] by ap@apple.com
  • 30 edits
    2 adds in trunk

Reviewed by Anders Carlsson.

https://bugs.webkit.org/show_bug.cgi?id=48083
<rdar://problem/8489082> Need WebKit2 API for private browsing (48083)

1:53 PM Changeset in webkit [70399] by ddkilzer@apple.com
  • 2 edits in trunk/WebCore

2010-10-23 David Kilzer <ddkilzer@apple.com>

<http://webkit.org/b/48181> Add missing include of MacErrors.h

Reviewed by Alexey Proskuryakov.

  • platform/network/mac/FormDataStreamMac.mm: Added #import of <MacErrors.h> for iOS since the formOpen() method uses "fnfErr", which was added in r55670. The same header is included through <CoreServices/CoreServices.h> on Mac OS X.
1:02 PM Changeset in webkit [70398] by Patrick Gansterer
  • 2 edits in trunk/WebCore

2010-10-23 Patrick Gansterer <Patrick Gansterer>

Reviewed by David Kilzer.

[WINCE] Port COMPtr.h to WinCE
https://bugs.webkit.org/show_bug.cgi?id=48190

Don't include guiddef.h on WinCE. It's not required and only creates build problems.

  • platform/win/COMPtr.h:
11:58 AM Changeset in webkit [70397] by Patrick Gansterer
  • 4 edits in trunk/WebCore

2010-10-23 Patrick Gansterer <Patrick Gansterer>

Reviewed by David Kilzer.

[WINCE] Rename SharedBitmap::createInstance to SharedBitmap::create
https://bugs.webkit.org/show_bug.cgi?id=48180

Also use better arguments for the create function.

  • platform/graphics/wince/GraphicsContextWinCE.cpp: (WebCore::GraphicsContextPlatformPrivate::getTransparentLayerBitmap): (WebCore::TransparentLayerDC::TransparentLayerDC): (WebCore::GraphicsContext::drawFrameControl):
  • platform/graphics/wince/ImageBufferWinCE.cpp: (WebCore::ImageBufferData::ImageBufferData):
  • platform/graphics/wince/ImageWinCE.cpp: (WebCore::RGBA32Buffer::asNewNativeImage):
11:08 AM Changeset in webkit [70396] by mihaip@chromium.org
  • 9 edits
    6 copies
    2 adds in trunk/LayoutTests

2010-10-23 Mihai Parparita <mihaip@chromium.org>

css2.1/ layout tests need new Mac baselines for Snow Leopard
https://bugs.webkit.org/show_bug.cgi?id=47760

Unreviewed rebaseline of remaining 5 css2.1/ tests for Snow Leopard
using the experimental local rebaselining tool.

  • platform/mac-leopard/css2.1/t1202-counter-04-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-04-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counter-04-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-04-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counters-04-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-04-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counters-04-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-04-b-expected.png.
  • platform/mac-leopard/css2.1/t1504-c543-txt-decor-00-d-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1504-c543-txt-decor-00-d-g-expected.checksum.
  • platform/mac-leopard/css2.1/t1504-c543-txt-decor-00-d-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1504-c543-txt-decor-00-d-g-expected.png.
  • platform/mac/css2.1/t0804-c5510-padn-00-b-ag-expected.checksum:
  • platform/mac/css2.1/t0804-c5510-padn-00-b-ag-expected.png:
  • platform/mac/css2.1/t1202-counter-04-b-expected.checksum:
  • platform/mac/css2.1/t1202-counter-04-b-expected.png:
  • platform/mac/css2.1/t1202-counters-04-b-expected.checksum:
  • platform/mac/css2.1/t1202-counters-04-b-expected.png:
  • platform/mac/css2.1/t1504-c543-txt-decor-00-d-g-expected.checksum:
  • platform/mac/css2.1/t1504-c543-txt-decor-00-d-g-expected.png:
  • platform/mac/css2.1/t1605-c545-txttrans-00-b-ag-expected.checksum: Added.
  • platform/mac/css2.1/t1605-c545-txttrans-00-b-ag-expected.png: Added.
10:14 AM Changeset in webkit [70395] by Martin Robinson
  • 2 edits in trunk/LayoutTests

2010-10-23 Martin Robinson <mrobinson@igalia.com>

Rebaseline a test after r70391.

  • platform/gtk/transforms/2d/zoom-menulist-expected.txt:
10:05 AM Changeset in webkit [70394] by Dimitri Glazkov
  • 13 edits
    1 delete in trunk

2010-10-23 Dimitri Glazkov <Dimitri Glazkov>

Unreviewed, rolling out r70369.
http://trac.webkit.org/changeset/70369
https://bugs.webkit.org/show_bug.cgi?id=47974

Caused weird artifacts in expected results.

  • wtf/Platform.h:

2010-10-23 Dimitri Glazkov <Dimitri Glazkov>

Unreviewed, rolling out r70369.
http://trac.webkit.org/changeset/70369
https://bugs.webkit.org/show_bug.cgi?id=47974

Caused weird artifacts in expected results.

  • WebCore.gyp/WebCore.gyp:
  • WebCore.gypi:
  • loader/CachedImage.cpp: (WebCore::CachedImage::createImage):
  • platform/graphics/ImageSource.h:
  • platform/image-decoders/ImageDecoder.cpp: (WebCore::RGBA32Buffer::operator=): (WebCore::RGBA32Buffer::clear): (WebCore::RGBA32Buffer::zeroFill): (WebCore::RGBA32Buffer::copyBitmapData): (WebCore::RGBA32Buffer::setSize):
  • platform/image-decoders/ImageDecoder.h: (WebCore::RGBA32Buffer::getAddr):
  • platform/image-decoders/cairo/ImageDecoderCairo.cpp: (WebCore::RGBA32Buffer::asNewNativeImage):
  • platform/image-decoders/cg/ImageDecoderCG.cpp: Removed.
  • platform/image-decoders/haiku/ImageDecoderHaiku.cpp: (WebCore::RGBA32Buffer::asNewNativeImage):
  • platform/image-decoders/openvg/ImageDecoderOpenVG.cpp: (WebCore::RGBA32Buffer::asNewNativeImage):
  • platform/image-decoders/wx/ImageDecoderWx.cpp: (WebCore::RGBA32Buffer::asNewNativeImage):
9:51 AM Changeset in webkit [70393] by Dimitri Glazkov
  • 2 edits in trunk/LayoutTests

2010-10-23 Dimitri Glazkov <Dimitri Glazkov>

[Chromium/DRT] Remove duplicate expectations.

  • platform/chromium/drt_expectations.txt: Unduplicated.
9:48 AM Changeset in webkit [70392] by abarth@webkit.org
  • 2 edits in trunk/WebCore

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

Reviewed by Andreas Kling.

WebP decoding hits ASSERT
https://bugs.webkit.org/show_bug.cgi?id=48168

Calling reserveCapacity only allocates the memory. It doesn't actually
set the length. When you try to access the zeroth element, you hit an
ASSERT.

Covered by fast/images/webp-image-decoding.html in debug.

  • platform/image-decoders/webp/WEBPImageDecoder.cpp: (WebCore::WEBPImageDecoder::decode):
8:29 AM Changeset in webkit [70391] by Martin Robinson
  • 5 edits
    27 adds in trunk

2010-10-23 Martin Robinson <mrobinson@igalia.com>

Reviewed by Xan Lopez.

[GTK] Menu list buttons do react properly to CSS styling
https://bugs.webkit.org/show_bug.cgi?id=48099

Rebaseline menu list button tests and add pixel results. There
are still issues with padding around separators, but these will
be fixed in a further patch.

  • platform/gtk/editing/selection/select-box-expected.txt:
  • platform/gtk/fast/forms/menulist-clip-expected.checksum: Added.
  • platform/gtk/fast/forms/menulist-clip-expected.png: Added.
  • platform/gtk/fast/forms/menulist-clip-expected.txt: Added.
  • platform/gtk/fast/forms/menulist-deselect-update-expected.checksum: Added.
  • platform/gtk/fast/forms/menulist-deselect-update-expected.png: Added.
  • platform/gtk/fast/forms/menulist-deselect-update-expected.txt: Added.
  • platform/gtk/fast/forms/menulist-narrow-width-expected.checksum: Added.
  • platform/gtk/fast/forms/menulist-narrow-width-expected.png: Added.
  • platform/gtk/fast/forms/menulist-narrow-width-expected.txt: Added.
  • platform/gtk/fast/forms/menulist-no-overflow-expected.checksum: Added.
  • platform/gtk/fast/forms/menulist-no-overflow-expected.png: Added.
  • platform/gtk/fast/forms/menulist-no-overflow-expected.txt: Added.
  • platform/gtk/fast/forms/menulist-option-wrap-expected.checksum: Added.
  • platform/gtk/fast/forms/menulist-option-wrap-expected.png: Added.
  • platform/gtk/fast/forms/menulist-option-wrap-expected.txt: Added.
  • platform/gtk/fast/forms/menulist-restrict-line-height-expected.checksum: Added.
  • platform/gtk/fast/forms/menulist-restrict-line-height-expected.png: Added.
  • platform/gtk/fast/forms/menulist-restrict-line-height-expected.txt: Added.
  • platform/gtk/fast/forms/menulist-separator-painting-expected.checksum: Added.
  • platform/gtk/fast/forms/menulist-separator-painting-expected.png: Added.
  • platform/gtk/fast/forms/menulist-separator-painting-expected.txt: Added.
  • platform/gtk/fast/forms/menulist-style-color-expected.checksum: Added.
  • platform/gtk/fast/forms/menulist-style-color-expected.png: Added.
  • platform/gtk/fast/forms/menulist-style-color-expected.txt: Added.
  • platform/gtk/fast/forms/menulist-width-change-expected.checksum: Added.
  • platform/gtk/fast/forms/menulist-width-change-expected.png: Added.
  • platform/gtk/fast/forms/menulist-width-change-expected.txt: Added.

2010-10-23 Martin Robinson <mrobinson@igalia.com>

Reviewed by Xan Lopez.

[GTK] Menu list buttons do react properly to CSS styling
https://bugs.webkit.org/show_bug.cgi?id=48099

Correct the way that menu list buttons get their necessary padding from
GTK+. Instead of resetting the padding to these values, return them via
the popupInternalPadding* methods. Add implementations for *MenuListButton*
methods.

  • platform/gtk/RenderThemeGtk.cpp: (WebCore::getComboBoxPadding): Added. (WebCore::RenderThemeGtk::popupInternalPaddingLeft): Added. (WebCore::RenderThemeGtk::popupInternalPaddingRight): Added. (WebCore::RenderThemeGtk::popupInternalPaddingTop): Added. (WebCore::RenderThemeGtk::popupInternalPaddingBottom): Added. (WebCore::RenderThemeGtk::adjustMenuListStyle): Do not reset CSS properties, instead rely on the poupInternalPadding* methods. (WebCore::RenderThemeGtk::adjustMenuListButtonStyle): Added. (WebCore::RenderThemeGtk::paintMenuListButton): Added.
  • platform/gtk/RenderThemeGtk.h: Added new method declarations.
8:08 AM Changeset in webkit [70390] by Martin Robinson
  • 2 edits in trunk/JavaScriptCore

2010-10-23 Martin Robinson <mrobinson@igalia.com>

Reviewed by Xan Lopez.

Crashes randomly in cairo_scaled_font_destroy
https://bugs.webkit.org/show_bug.cgi?id=46794

Make PlatformRefPtr aware of hashTableDeletedValue. When PlatformRefPtr
goes away this should probably be handled in the future via some special
hooks in RefCounted (or its contained type).

  • wtf/PlatformRefPtr.h: (WTF::PlatformRefPtr::~PlatformRefPtr): (WTF::PlatformRefPtr::clear): (WTF::::operator):
8:08 AM Changeset in webkit [70389] by Patrick Gansterer
  • 3 edits in trunk/WebCore

2010-10-23 Patrick Gansterer <Patrick Gansterer>

Reviewed by David Kilzer.

Add Gradient::hasAlpha
https://bugs.webkit.org/show_bug.cgi?id=48183

WinCE can do some performance improvements if the gradient is opaque.

  • platform/graphics/Gradient.cpp: (WebCore::Gradient::hasAlpha):
  • platform/graphics/Gradient.h:
7:40 AM Changeset in webkit [70388] by commit-queue@webkit.org
  • 2 edits in trunk/WebCore

2010-10-23 Gyuyoung Kim <gyuyoung.kim@samsung.com>

Reviewed by David Kilzer.

[EFL] Implement platformDefaultLanguage()
https://bugs.webkit.org/show_bug.cgi?id=48113

Implement the platformDefaultLanguage() function for EFL port.

  • platform/efl/LanguageEfl.cpp: (WebCore::platformDefaultLanguage):
7:22 AM Changeset in webkit [70387] by timothy@apple.com
  • 4 edits
    2 adds in trunk/WebKit2

Stub out WebInspectorFrontendClient.

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

Reviewed by Adam Roben.

  • WebKit2.pro: Added WebInspectorFrontendClient.{cpp,h}.
  • WebKit2.xcodeproj/project.pbxproj: Added WebInspectorFrontendClient.{cpp,h}.
  • WebProcess/WebCoreSupport/WebInspectorFrontendClient.cpp: Added.

(WebKit::WebInspectorFrontendClient::windowObjectCleared): Added.
(WebKit::WebInspectorFrontendClient::frontendLoaded): Added.
(WebKit::WebInspectorFrontendClient::moveWindowBy): Added.
(WebKit::WebInspectorFrontendClient::localizedStringsURL): Added.
(WebKit::WebInspectorFrontendClient::hiddenPanels): Added.
(WebKit::WebInspectorFrontendClient::bringToFront): Added.
(WebKit::WebInspectorFrontendClient::closeWindow): Added.
(WebKit::WebInspectorFrontendClient::disconnectFromBackend): Added.
(WebKit::WebInspectorFrontendClient::requestAttachWindow): Added.
(WebKit::WebInspectorFrontendClient::requestDetachWindow): Added.
(WebKit::WebInspectorFrontendClient::changeAttachedWindowHeight): Added.
(WebKit::WebInspectorFrontendClient::inspectedURLChanged): Added.
(WebKit::WebInspectorFrontendClient::sendMessageToBackend): Added.

  • WebProcess/WebCoreSupport/WebInspectorFrontendClient.h: Added.

(WebKit::WebInspectorFrontendClient::WebInspectorFrontendClient): Added.

  • win/WebKit2.vcproj: Added WebInspectorFrontendClient.{cpp,h}.
7:22 AM Changeset in webkit [70386] by timothy@apple.com
  • 3 edits in trunk/WebKit2

Remove stale stubs that are not longer part of InspectorClient.

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

Reviewed by Adam Roben.

  • WebProcess/WebCoreSupport/WebInspectorClient.cpp:
  • WebProcess/WebCoreSupport/WebInspectorClient.h:
12:44 AM Changeset in webkit [70385] by commit-queue@webkit.org
  • 18 edits
    2 deletes in trunk

2010-10-23 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r70367.
http://trac.webkit.org/changeset/70367
https://bugs.webkit.org/show_bug.cgi?id=48176

It made 8-10 tests crash on Qt bot (Requested by Ossy on
#webkit).

  • fast/loader/decide-policy-for-mime-type-async-expected.txt: Removed.
  • fast/loader/decide-policy-for-mime-type-async.html: Removed.
  • platform/gtk/Skipped:
  • platform/mac-wk2/Skipped:
  • platform/qt-wk2/Skipped:
  • platform/qt/Skipped:
  • platform/win/Skipped:

2010-10-23 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r70367.
http://trac.webkit.org/changeset/70367
https://bugs.webkit.org/show_bug.cgi?id=48176

It made 8-10 tests crash on Qt bot (Requested by Ossy on
#webkit).

  • loader/MainResourceLoader.cpp: (WebCore::MainResourceLoader::MainResourceLoader): (WebCore::MainResourceLoader::continueAfterContentPolicy): (WebCore::MainResourceLoader::didReceiveResponse): (WebCore::MainResourceLoader::setDefersLoading):
  • loader/MainResourceLoader.h:

2010-10-23 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r70367.
http://trac.webkit.org/changeset/70367
https://bugs.webkit.org/show_bug.cgi?id=48176

It made 8-10 tests crash on Qt bot (Requested by Ossy on
#webkit).

  • DumpRenderTree/LayoutTestController.cpp: (setCustomPolicyDelegateCallback):
  • DumpRenderTree/LayoutTestController.h:
  • DumpRenderTree/gtk/LayoutTestControllerGtk.cpp: (LayoutTestController::setCustomPolicyDelegate):
  • DumpRenderTree/mac/LayoutTestControllerMac.mm: (LayoutTestController::setCustomPolicyDelegate):
  • DumpRenderTree/mac/PolicyDelegate.h:
  • DumpRenderTree/mac/PolicyDelegate.mm: (-[PolicyDelegate webView:decidePolicyForNavigationAction:request:frame:decisionListener:]): (-[PolicyDelegate setPermissive:]): (-[PolicyDelegate setControllerToNotifyDone:]):
  • DumpRenderTree/win/LayoutTestControllerWin.cpp: (LayoutTestController::setCustomPolicyDelegate):
  • DumpRenderTree/wx/LayoutTestControllerWx.cpp: (LayoutTestController::setCustomPolicyDelegate):
12:18 AM Changeset in webkit [70384] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

2010-10-23 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r70381.
http://trac.webkit.org/changeset/70381
https://bugs.webkit.org/show_bug.cgi?id=48175

"Fails in the 32bit debug bot" (Requested by xan_ on #webkit).

  • platform/gtk/Skipped:

Oct 22, 2010:

11:57 PM Changeset in webkit [70383] by alex
  • 2 edits in trunk/LayoutTests

2010-10-22 Alejandro G. Castro <alex@igalia.com>

Unreviewed, skip flaky tests in the GTK bots, all the
mathml/presentation tests.
https://bugs.webkit.org/show_bug.cgi?id=47727

  • platform/gtk/Skipped:
11:47 PM Changeset in webkit [70382] by eric@webkit.org
  • 3 edits in trunk/WebKitTools

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

Reviewed by Adam Barth.

EWS never releases patches which fail to apply
https://bugs.webkit.org/show_bug.cgi?id=48171

  • Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
  • Scripts/webkitpy/tool/commands/queues.py:
11:40 PM Changeset in webkit [70381] by xan@webkit.org
  • 2 edits in trunk/LayoutTests

2010-10-22 Xan Lopez <xlopez@igalia.com>

Reviewed by Martin Robinson.

Unskip the two fast/js/kde tests. Both check syntax error in
string construction, and seem to be passing just fine.

  • platform/gtk/Skipped:
8:25 PM Changeset in webkit [70380] by eric@webkit.org
  • 2 edits in trunk/WebKitTools

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

Unreviewed.

Make the EWS queues restart themselves more often.
This matches the commit-queue.

  • EWSTools/start-queue.sh:
7:26 PM Changeset in webkit [70379] by aestes@apple.com
  • 4 edits in trunk

WebKit shouldn't load a plug-in based on file extension if a MIME type
is specified.
https://bugs.webkit.org/show_bug.cgi?id=48046

Reviewed by Adam Roben and Sam Weinig.

WebCore:

The fix landed in r70332 only covered the Mac port. Implement this fix
for other ports as well.

  • plugins/PluginDatabase.cpp:

(WebCore::PluginDatabase::findPlugin):

WebKit2:

The fix landed in r70332 only covered the Mac port. Implement this fix
for WebKit2 as well.

  • UIProcess/Plugins/PluginInfoStore.cpp:

(WebKit::PluginInfoStore::findPlugin):

7:11 PM Changeset in webkit [70378] by mihaip@chromium.org
  • 571 edits
    570 copies in trunk/LayoutTests

2010-10-22 Mihai Parparita <mihaip@chromium.org>

css2.1/ layout tests need new Mac baselines for Snow Leopard
https://bugs.webkit.org/show_bug.cgi?id=47760

Unreviewed rebaseline of 285 more css2.1/ test for Snow Leopard using
the experimental local rebaselining tool.

  • platform/mac-leopard/css2.1/t0805-c5514-ibrdr-lw-00-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5514-ibrdr-lw-00-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5514-ibrdr-lw-00-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5514-ibrdr-lw-00-a-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5515-brdr-w-00-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5515-brdr-w-00-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5515-brdr-w-00-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5515-brdr-w-00-a-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5515-brdr-w-01-b-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5515-brdr-w-01-b-g-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5515-brdr-w-01-b-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5515-brdr-w-01-b-g-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5515-brdr-w-02-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5515-brdr-w-02-b-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5515-brdr-w-02-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5515-brdr-w-02-b-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5515-ibrdr-00-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5515-ibrdr-00-b-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5515-ibrdr-00-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5515-ibrdr-00-b-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5516-brdr-c-00-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5516-brdr-c-00-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5516-brdr-c-00-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5516-brdr-c-00-a-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5516-ibrdr-c-00-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5516-ibrdr-c-00-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5516-ibrdr-c-00-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5516-ibrdr-c-00-a-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5517-brdr-s-00-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5517-brdr-s-00-c-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5517-brdr-s-00-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5517-brdr-s-00-c-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5517-ibrdr-s-00-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5517-ibrdr-s-00-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5517-ibrdr-s-00-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5517-ibrdr-s-00-a-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5518-brdr-t-00-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5518-brdr-t-00-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5518-brdr-t-00-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5518-brdr-t-00-a-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5518-brdr-t-01-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5518-brdr-t-01-e-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5518-brdr-t-01-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5518-brdr-t-01-e-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5518-ibrdr-t-00-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5518-ibrdr-t-00-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5518-ibrdr-t-00-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5518-ibrdr-t-00-a-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5519-brdr-r-00-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5519-brdr-r-00-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5519-brdr-r-00-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5519-brdr-r-00-a-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5519-brdr-r-01-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5519-brdr-r-01-e-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5519-brdr-r-01-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5519-brdr-r-01-e-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5519-brdr-r-02-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5519-brdr-r-02-e-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5519-brdr-r-02-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5519-brdr-r-02-e-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5519-ibrdr-r-00-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5519-ibrdr-r-00-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5519-ibrdr-r-00-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5519-ibrdr-r-00-a-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5520-brdr-b-00-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5520-brdr-b-00-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5520-brdr-b-00-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5520-brdr-b-00-a-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5520-brdr-b-01-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5520-brdr-b-01-e-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5520-brdr-b-01-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5520-brdr-b-01-e-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5520-ibrdr-b-00-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5520-ibrdr-b-00-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5520-ibrdr-b-00-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5520-ibrdr-b-00-a-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5521-brdr-l-00-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5521-brdr-l-00-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5521-brdr-l-00-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5521-brdr-l-00-a-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5521-brdr-l-01-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5521-brdr-l-01-e-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5521-brdr-l-01-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5521-brdr-l-01-e-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5521-brdr-l-02-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5521-brdr-l-02-e-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5521-brdr-l-02-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5521-brdr-l-02-e-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5521-ibrdr-l-00-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5521-ibrdr-l-00-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5521-ibrdr-l-00-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5521-ibrdr-l-00-a-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5522-brdr-00-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5522-brdr-00-b-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5522-brdr-00-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5522-brdr-00-b-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5522-brdr-01-b-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5522-brdr-01-b-g-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5522-brdr-01-b-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5522-brdr-01-b-g-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5522-brdr-02-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5522-brdr-02-e-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5522-brdr-02-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5522-brdr-02-e-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5522-ibrdr-00-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5522-ibrdr-00-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5522-ibrdr-00-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5522-ibrdr-00-a-expected.png.
  • platform/mac-leopard/css2.1/t090204-display-change-01-b-ao-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t090204-display-change-01-b-ao-expected.checksum.
  • platform/mac-leopard/css2.1/t090204-display-change-01-b-ao-expected.png: Copied from LayoutTests/platform/mac/css2.1/t090204-display-change-01-b-ao-expected.png.
  • platform/mac-leopard/css2.1/t090402-c42-ibx-pad-00-d-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t090402-c42-ibx-pad-00-d-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t090402-c42-ibx-pad-00-d-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t090402-c42-ibx-pad-00-d-ag-expected.png.
  • platform/mac-leopard/css2.1/t0905-c414-flt-00-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0905-c414-flt-00-d-expected.checksum.
  • platform/mac-leopard/css2.1/t0905-c414-flt-00-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0905-c414-flt-00-d-expected.png.
  • platform/mac-leopard/css2.1/t0905-c414-flt-01-d-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0905-c414-flt-01-d-g-expected.checksum.
  • platform/mac-leopard/css2.1/t0905-c414-flt-01-d-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0905-c414-flt-01-d-g-expected.png.
  • platform/mac-leopard/css2.1/t0905-c414-flt-02-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0905-c414-flt-02-c-expected.checksum.
  • platform/mac-leopard/css2.1/t0905-c414-flt-02-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0905-c414-flt-02-c-expected.png.
  • platform/mac-leopard/css2.1/t0905-c414-flt-03-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0905-c414-flt-03-c-expected.checksum.
  • platform/mac-leopard/css2.1/t0905-c414-flt-03-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0905-c414-flt-03-c-expected.png.
  • platform/mac-leopard/css2.1/t0905-c414-flt-04-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0905-c414-flt-04-c-expected.checksum.
  • platform/mac-leopard/css2.1/t0905-c414-flt-04-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0905-c414-flt-04-c-expected.png.
  • platform/mac-leopard/css2.1/t0905-c414-flt-fit-00-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0905-c414-flt-fit-00-d-expected.checksum.
  • platform/mac-leopard/css2.1/t0905-c414-flt-fit-00-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0905-c414-flt-fit-00-d-expected.png.
  • platform/mac-leopard/css2.1/t0905-c414-flt-fit-01-d-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0905-c414-flt-fit-01-d-g-expected.checksum.
  • platform/mac-leopard/css2.1/t0905-c414-flt-fit-01-d-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0905-c414-flt-fit-01-d-g-expected.png.
  • platform/mac-leopard/css2.1/t0905-c414-flt-wrap-00-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0905-c414-flt-wrap-00-e-expected.checksum.
  • platform/mac-leopard/css2.1/t0905-c414-flt-wrap-00-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0905-c414-flt-wrap-00-e-expected.png.
  • platform/mac-leopard/css2.1/t0905-c414-flt-wrap-01-d-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0905-c414-flt-wrap-01-d-g-expected.checksum.
  • platform/mac-leopard/css2.1/t0905-c414-flt-wrap-01-d-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0905-c414-flt-wrap-01-d-g-expected.png.
  • platform/mac-leopard/css2.1/t0905-c5525-fltblck-00-d-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0905-c5525-fltblck-00-d-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0905-c5525-fltblck-00-d-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0905-c5525-fltblck-00-d-ag-expected.png.
  • platform/mac-leopard/css2.1/t0905-c5525-fltblck-01-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0905-c5525-fltblck-01-d-expected.checksum.
  • platform/mac-leopard/css2.1/t0905-c5525-fltblck-01-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0905-c5525-fltblck-01-d-expected.png.
  • platform/mac-leopard/css2.1/t0905-c5525-fltclr-00-c-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0905-c5525-fltclr-00-c-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0905-c5525-fltclr-00-c-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0905-c5525-fltclr-00-c-ag-expected.png.
  • platform/mac-leopard/css2.1/t0905-c5525-flthw-00-c-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0905-c5525-flthw-00-c-g-expected.checksum.
  • platform/mac-leopard/css2.1/t0905-c5525-flthw-00-c-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0905-c5525-flthw-00-c-g-expected.png.
  • platform/mac-leopard/css2.1/t0905-c5525-fltinln-00-c-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0905-c5525-fltinln-00-c-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0905-c5525-fltinln-00-c-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0905-c5525-fltinln-00-c-ag-expected.png.
  • platform/mac-leopard/css2.1/t0905-c5525-fltmrgn-00-c-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0905-c5525-fltmrgn-00-c-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0905-c5525-fltmrgn-00-c-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0905-c5525-fltmrgn-00-c-ag-expected.png.
  • platform/mac-leopard/css2.1/t0905-c5525-fltmult-00-d-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0905-c5525-fltmult-00-d-g-expected.checksum.
  • platform/mac-leopard/css2.1/t0905-c5525-fltmult-00-d-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0905-c5525-fltmult-00-d-g-expected.png.
  • platform/mac-leopard/css2.1/t0905-c5525-fltwidth-03-c-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0905-c5525-fltwidth-03-c-g-expected.checksum.
  • platform/mac-leopard/css2.1/t0905-c5525-fltwidth-03-c-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0905-c5525-fltwidth-03-c-g-expected.png.
  • platform/mac-leopard/css2.1/t0905-c5526-fltclr-00-c-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0905-c5526-fltclr-00-c-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0905-c5526-fltclr-00-c-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0905-c5526-fltclr-00-c-ag-expected.png.
  • platform/mac-leopard/css2.1/t0905-c5526-flthw-00-c-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0905-c5526-flthw-00-c-g-expected.checksum.
  • platform/mac-leopard/css2.1/t0905-c5526-flthw-00-c-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0905-c5526-flthw-00-c-g-expected.png.
  • platform/mac-leopard/css2.1/t090501-c414-flt-00-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t090501-c414-flt-00-d-expected.checksum.
  • platform/mac-leopard/css2.1/t090501-c414-flt-00-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t090501-c414-flt-00-d-expected.png.
  • platform/mac-leopard/css2.1/t090501-c414-flt-01-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t090501-c414-flt-01-b-expected.checksum.
  • platform/mac-leopard/css2.1/t090501-c414-flt-01-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t090501-c414-flt-01-b-expected.png.
  • platform/mac-leopard/css2.1/t090501-c414-flt-02-d-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t090501-c414-flt-02-d-g-expected.checksum.
  • platform/mac-leopard/css2.1/t090501-c414-flt-02-d-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t090501-c414-flt-02-d-g-expected.png.
  • platform/mac-leopard/css2.1/t090501-c414-flt-03-b-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t090501-c414-flt-03-b-g-expected.checksum.
  • platform/mac-leopard/css2.1/t090501-c414-flt-03-b-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t090501-c414-flt-03-b-g-expected.png.
  • platform/mac-leopard/css2.1/t090501-c414-flt-ln-00-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t090501-c414-flt-ln-00-d-expected.checksum.
  • platform/mac-leopard/css2.1/t090501-c414-flt-ln-00-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t090501-c414-flt-ln-00-d-expected.png.
  • platform/mac-leopard/css2.1/t090501-c414-flt-ln-01-d-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t090501-c414-flt-ln-01-d-g-expected.checksum.
  • platform/mac-leopard/css2.1/t090501-c414-flt-ln-01-d-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t090501-c414-flt-ln-01-d-g-expected.png.
  • platform/mac-leopard/css2.1/t090501-c414-flt-ln-02-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t090501-c414-flt-ln-02-d-expected.checksum.
  • platform/mac-leopard/css2.1/t090501-c414-flt-ln-02-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t090501-c414-flt-ln-02-d-expected.png.
  • platform/mac-leopard/css2.1/t090501-c414-flt-ln-03-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t090501-c414-flt-ln-03-d-expected.checksum.
  • platform/mac-leopard/css2.1/t090501-c414-flt-ln-03-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t090501-c414-flt-ln-03-d-expected.png.
  • platform/mac-leopard/css2.1/t090501-c5525-flt-l-00-b-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t090501-c5525-flt-l-00-b-g-expected.checksum.
  • platform/mac-leopard/css2.1/t090501-c5525-flt-l-00-b-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t090501-c5525-flt-l-00-b-g-expected.png.
  • platform/mac-leopard/css2.1/t090501-c5525-flt-r-00-b-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t090501-c5525-flt-r-00-b-g-expected.checksum.
  • platform/mac-leopard/css2.1/t090501-c5525-flt-r-00-b-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t090501-c5525-flt-r-00-b-g-expected.png.
  • platform/mac-leopard/css2.1/t1001-abs-pos-cb-01-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1001-abs-pos-cb-01-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1001-abs-pos-cb-01-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1001-abs-pos-cb-01-b-expected.png.
  • platform/mac-leopard/css2.1/t1001-abs-pos-cb-02-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1001-abs-pos-cb-02-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1001-abs-pos-cb-02-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1001-abs-pos-cb-02-b-expected.png.
  • platform/mac-leopard/css2.1/t1001-abs-pos-cb-03-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1001-abs-pos-cb-03-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1001-abs-pos-cb-03-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1001-abs-pos-cb-03-b-expected.png.
  • platform/mac-leopard/css2.1/t1001-abs-pos-cb-04-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1001-abs-pos-cb-04-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1001-abs-pos-cb-04-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1001-abs-pos-cb-04-b-expected.png.
  • platform/mac-leopard/css2.1/t1001-abs-pos-cb-05-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1001-abs-pos-cb-05-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1001-abs-pos-cb-05-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1001-abs-pos-cb-05-b-expected.png.
  • platform/mac-leopard/css2.1/t1001-abs-pos-cb-06-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1001-abs-pos-cb-06-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1001-abs-pos-cb-06-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1001-abs-pos-cb-06-b-expected.png.
  • platform/mac-leopard/css2.1/t1001-abs-pos-cb-07-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1001-abs-pos-cb-07-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1001-abs-pos-cb-07-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1001-abs-pos-cb-07-b-expected.png.
  • platform/mac-leopard/css2.1/t1001-abs-pos-cb-08-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1001-abs-pos-cb-08-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1001-abs-pos-cb-08-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1001-abs-pos-cb-08-b-expected.png.
  • platform/mac-leopard/css2.1/t1001-abs-pos-cb-09-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1001-abs-pos-cb-09-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1001-abs-pos-cb-09-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1001-abs-pos-cb-09-b-expected.png.
  • platform/mac-leopard/css2.1/t1002-c5523-width-00-b-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1002-c5523-width-00-b-g-expected.checksum.
  • platform/mac-leopard/css2.1/t1002-c5523-width-00-b-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1002-c5523-width-00-b-g-expected.png.
  • platform/mac-leopard/css2.1/t1002-c5523-width-01-b-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1002-c5523-width-01-b-g-expected.checksum.
  • platform/mac-leopard/css2.1/t1002-c5523-width-01-b-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1002-c5523-width-01-b-g-expected.png.
  • platform/mac-leopard/css2.1/t1002-c5523-width-02-b-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1002-c5523-width-02-b-g-expected.checksum.
  • platform/mac-leopard/css2.1/t1002-c5523-width-02-b-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1002-c5523-width-02-b-g-expected.png.
  • platform/mac-leopard/css2.1/t100303-c412-blockw-00-d-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t100303-c412-blockw-00-d-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t100303-c412-blockw-00-d-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t100303-c412-blockw-00-d-ag-expected.png.
  • platform/mac-leopard/css2.1/t100304-c43-rpl-bbx-00-d-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t100304-c43-rpl-bbx-00-d-g-expected.checksum.
  • platform/mac-leopard/css2.1/t100304-c43-rpl-bbx-00-d-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t100304-c43-rpl-bbx-00-d-g-expected.png.
  • platform/mac-leopard/css2.1/t100304-c43-rpl-bbx-01-d-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t100304-c43-rpl-bbx-01-d-g-expected.checksum.
  • platform/mac-leopard/css2.1/t100304-c43-rpl-bbx-01-d-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t100304-c43-rpl-bbx-01-d-g-expected.png.
  • platform/mac-leopard/css2.1/t1004-c43-rpl-bbx-00-d-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1004-c43-rpl-bbx-00-d-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t1004-c43-rpl-bbx-00-d-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1004-c43-rpl-bbx-00-d-ag-expected.png.
  • platform/mac-leopard/css2.1/t1004-c43-rpl-ibx-00-d-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1004-c43-rpl-ibx-00-d-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t1004-c43-rpl-ibx-00-d-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1004-c43-rpl-ibx-00-d-ag-expected.png.
  • platform/mac-leopard/css2.1/t1004-c5524-width-00-b-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1004-c5524-width-00-b-g-expected.checksum.
  • platform/mac-leopard/css2.1/t1004-c5524-width-00-b-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1004-c5524-width-00-b-g-expected.png.
  • platform/mac-leopard/css2.1/t1005-c5524-width-00-b-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1005-c5524-width-00-b-g-expected.checksum.
  • platform/mac-leopard/css2.1/t1005-c5524-width-00-b-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1005-c5524-width-00-b-g-expected.png.
  • platform/mac-leopard/css2.1/t1005-c5524-width-01-b-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1005-c5524-width-01-b-g-expected.checksum.
  • platform/mac-leopard/css2.1/t1005-c5524-width-01-b-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1005-c5524-width-01-b-g-expected.png.
  • platform/mac-leopard/css2.1/t1008-c44-ln-box-00-d-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1008-c44-ln-box-00-d-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t1008-c44-ln-box-00-d-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1008-c44-ln-box-00-d-ag-expected.png.
  • platform/mac-leopard/css2.1/t1008-c44-ln-box-01-d-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1008-c44-ln-box-01-d-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t1008-c44-ln-box-01-d-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1008-c44-ln-box-01-d-ag-expected.png.
  • platform/mac-leopard/css2.1/t1008-c44-ln-box-02-d-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1008-c44-ln-box-02-d-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t1008-c44-ln-box-02-d-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1008-c44-ln-box-02-d-ag-expected.png.
  • platform/mac-leopard/css2.1/t1008-c44-ln-box-03-d-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1008-c44-ln-box-03-d-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t1008-c44-ln-box-03-d-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1008-c44-ln-box-03-d-ag-expected.png.
  • platform/mac-leopard/css2.1/t100801-c42-ibx-ht-00-d-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t100801-c42-ibx-ht-00-d-a-expected.checksum.
  • platform/mac-leopard/css2.1/t100801-c42-ibx-ht-00-d-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t100801-c42-ibx-ht-00-d-a-expected.png.
  • platform/mac-leopard/css2.1/t100801-c544-valgn-00-a-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t100801-c544-valgn-00-a-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t100801-c544-valgn-00-a-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t100801-c544-valgn-00-a-ag-expected.png.
  • platform/mac-leopard/css2.1/t100801-c544-valgn-01-d-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t100801-c544-valgn-01-d-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t100801-c544-valgn-01-d-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t100801-c544-valgn-01-d-ag-expected.png.
  • platform/mac-leopard/css2.1/t100801-c544-valgn-02-d-agi-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t100801-c544-valgn-02-d-agi-expected.checksum.
  • platform/mac-leopard/css2.1/t100801-c544-valgn-02-d-agi-expected.png: Copied from LayoutTests/platform/mac/css2.1/t100801-c544-valgn-02-d-agi-expected.png.
  • platform/mac-leopard/css2.1/t100801-c544-valgn-03-d-agi-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t100801-c544-valgn-03-d-agi-expected.checksum.
  • platform/mac-leopard/css2.1/t100801-c544-valgn-03-d-agi-expected.png: Copied from LayoutTests/platform/mac/css2.1/t100801-c544-valgn-03-d-agi-expected.png.
  • platform/mac-leopard/css2.1/t100801-c544-valgn-04-d-agi-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t100801-c544-valgn-04-d-agi-expected.checksum.
  • platform/mac-leopard/css2.1/t100801-c544-valgn-04-d-agi-expected.png: Copied from LayoutTests/platform/mac/css2.1/t100801-c544-valgn-04-d-agi-expected.png.
  • platform/mac-leopard/css2.1/t100801-c548-leadin-00-d-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t100801-c548-leadin-00-d-a-expected.checksum.
  • platform/mac-leopard/css2.1/t100801-c548-leadin-00-d-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t100801-c548-leadin-00-d-a-expected.png.
  • platform/mac-leopard/css2.1/t100801-c548-ln-ht-00-c-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t100801-c548-ln-ht-00-c-a-expected.checksum.
  • platform/mac-leopard/css2.1/t100801-c548-ln-ht-00-c-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t100801-c548-ln-ht-00-c-a-expected.png.
  • platform/mac-leopard/css2.1/t100801-c548-ln-ht-01-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t100801-c548-ln-ht-01-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t100801-c548-ln-ht-01-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t100801-c548-ln-ht-01-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t100801-c548-ln-ht-02-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t100801-c548-ln-ht-02-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t100801-c548-ln-ht-02-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t100801-c548-ln-ht-02-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t100801-c548-ln-ht-03-d-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t100801-c548-ln-ht-03-d-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t100801-c548-ln-ht-03-d-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t100801-c548-ln-ht-03-d-ag-expected.png.
  • platform/mac-leopard/css2.1/t100801-c548-ln-ht-04-d-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t100801-c548-ln-ht-04-d-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t100801-c548-ln-ht-04-d-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t100801-c548-ln-ht-04-d-ag-expected.png.
  • platform/mac-leopard/css2.1/t1202-counter-00-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-00-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counter-00-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-00-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counter-01-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-01-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counter-01-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-01-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counter-02-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-02-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counter-02-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-02-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counter-03-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-03-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counter-03-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-03-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counter-05-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-05-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counter-05-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-05-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counter-06-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-06-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counter-06-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-06-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counter-07-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-07-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counter-07-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-07-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counter-08-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-08-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counter-08-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-08-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counter-09-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-09-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counter-09-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-09-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counter-11-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-11-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counter-11-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-11-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counter-12-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-12-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counter-12-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-12-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counter-13-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-13-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counter-13-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-13-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counter-14-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-14-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counter-14-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-14-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counter-15-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-15-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counter-15-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-15-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counter-16-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-16-f-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counter-16-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counter-16-f-expected.png.
  • platform/mac-leopard/css2.1/t1202-counters-00-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-00-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counters-00-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-00-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counters-01-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-01-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counters-01-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-01-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counters-02-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-02-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counters-02-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-02-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counters-03-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-03-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counters-03-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-03-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counters-05-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-05-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counters-05-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-05-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counters-06-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-06-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counters-06-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-06-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counters-07-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-07-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counters-07-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-07-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counters-08-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-08-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counters-08-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-08-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counters-09-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-09-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counters-09-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-09-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counters-11-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-11-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counters-11-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-11-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counters-12-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-12-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counters-12-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-12-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counters-13-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-13-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counters-13-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-13-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counters-14-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-14-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counters-14-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-14-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counters-15-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-15-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counters-15-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-15-b-expected.png.
  • platform/mac-leopard/css2.1/t1202-counters-16-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-16-c-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counters-16-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-16-c-expected.png.
  • platform/mac-leopard/css2.1/t1202-counters-17-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-17-d-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counters-17-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-17-d-expected.png.
  • platform/mac-leopard/css2.1/t1202-counters-18-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-18-f-expected.checksum.
  • platform/mac-leopard/css2.1/t1202-counters-18-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1202-counters-18-f-expected.png.
  • platform/mac-leopard/css2.1/t1204-implied-00-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1204-implied-00-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1204-implied-00-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1204-implied-00-b-expected.png.
  • platform/mac-leopard/css2.1/t1204-implied-01-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1204-implied-01-c-expected.checksum.
  • platform/mac-leopard/css2.1/t1204-implied-01-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1204-implied-01-c-expected.png.
  • platform/mac-leopard/css2.1/t1204-implied-02-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1204-implied-02-d-expected.checksum.
  • platform/mac-leopard/css2.1/t1204-implied-02-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1204-implied-02-d-expected.png.
  • platform/mac-leopard/css2.1/t1204-multiple-00-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1204-multiple-00-c-expected.checksum.
  • platform/mac-leopard/css2.1/t1204-multiple-00-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1204-multiple-00-c-expected.png.
  • platform/mac-leopard/css2.1/t1204-multiple-01-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1204-multiple-01-c-expected.checksum.
  • platform/mac-leopard/css2.1/t1204-multiple-01-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1204-multiple-01-c-expected.png.
  • platform/mac-leopard/css2.1/t1204-order-00-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1204-order-00-c-expected.checksum.
  • platform/mac-leopard/css2.1/t1204-order-00-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1204-order-00-c-expected.png.
  • platform/mac-leopard/css2.1/t1204-order-01-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1204-order-01-d-expected.checksum.
  • platform/mac-leopard/css2.1/t1204-order-01-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1204-order-01-d-expected.png.
  • platform/mac-leopard/css2.1/t1204-root-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1204-root-e-expected.checksum.
  • platform/mac-leopard/css2.1/t1204-root-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1204-root-e-expected.png.
  • platform/mac-leopard/css2.1/t120401-scope-00-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t120401-scope-00-b-expected.checksum.
  • platform/mac-leopard/css2.1/t120401-scope-00-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t120401-scope-00-b-expected.png.
  • platform/mac-leopard/css2.1/t120401-scope-01-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t120401-scope-01-c-expected.checksum.
  • platform/mac-leopard/css2.1/t120401-scope-01-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t120401-scope-01-c-expected.png.
  • platform/mac-leopard/css2.1/t120401-scope-02-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t120401-scope-02-c-expected.checksum.
  • platform/mac-leopard/css2.1/t120401-scope-02-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t120401-scope-02-c-expected.png.
  • platform/mac-leopard/css2.1/t120401-scope-03-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t120401-scope-03-c-expected.checksum.
  • platform/mac-leopard/css2.1/t120401-scope-03-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t120401-scope-03-c-expected.png.
  • platform/mac-leopard/css2.1/t120401-scope-04-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t120401-scope-04-d-expected.checksum.
  • platform/mac-leopard/css2.1/t120401-scope-04-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t120401-scope-04-d-expected.png.
  • platform/mac-leopard/css2.1/t120403-content-none-00-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t120403-content-none-00-c-expected.checksum.
  • platform/mac-leopard/css2.1/t120403-content-none-00-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t120403-content-none-00-c-expected.png.
  • platform/mac-leopard/css2.1/t120403-display-none-00-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t120403-display-none-00-c-expected.checksum.
  • platform/mac-leopard/css2.1/t120403-display-none-00-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t120403-display-none-00-c-expected.png.
  • platform/mac-leopard/css2.1/t120403-visibility-00-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t120403-visibility-00-c-expected.checksum.
  • platform/mac-leopard/css2.1/t120403-visibility-00-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t120403-visibility-00-c-expected.png.
  • platform/mac-leopard/css2.1/t1205-c561-list-displ-00-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1205-c561-list-displ-00-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1205-c561-list-displ-00-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1205-c561-list-displ-00-b-expected.png.
  • platform/mac-leopard/css2.1/t1205-c563-list-type-00-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1205-c563-list-type-00-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1205-c563-list-type-00-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1205-c563-list-type-00-b-expected.png.
  • platform/mac-leopard/css2.1/t1205-c563-list-type-01-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1205-c563-list-type-01-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1205-c563-list-type-01-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1205-c563-list-type-01-b-expected.png.
  • platform/mac-leopard/css2.1/t1205-c564-list-img-00-b-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1205-c564-list-img-00-b-g-expected.checksum.
  • platform/mac-leopard/css2.1/t1205-c564-list-img-00-b-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1205-c564-list-img-00-b-g-expected.png.
  • platform/mac-leopard/css2.1/t1205-c565-list-pos-00-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1205-c565-list-pos-00-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1205-c565-list-pos-00-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1205-c565-list-pos-00-b-expected.png.
  • platform/mac-leopard/css2.1/t1205-c566-list-stl-00-e-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1205-c566-list-stl-00-e-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t1205-c566-list-stl-00-e-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1205-c566-list-stl-00-e-ag-expected.png.
  • platform/mac-leopard/css2.1/t1205-c566-list-stl-01-c-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1205-c566-list-stl-01-c-g-expected.checksum.
  • platform/mac-leopard/css2.1/t1205-c566-list-stl-01-c-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1205-c566-list-stl-01-c-g-expected.png.
  • platform/mac-leopard/css2.1/t1401-c531-color-00-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1401-c531-color-00-a-expected.checksum.
  • platform/mac-leopard/css2.1/t1401-c531-color-00-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1401-c531-color-00-a-expected.png.
  • platform/mac-leopard/css2.1/t1402-c45-bg-canvas-00-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1402-c45-bg-canvas-00-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1402-c45-bg-canvas-00-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1402-c45-bg-canvas-00-b-expected.png.
  • platform/mac-leopard/css2.1/t140201-c532-bgcolor-00-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t140201-c532-bgcolor-00-a-expected.checksum.
  • platform/mac-leopard/css2.1/t140201-c532-bgcolor-00-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t140201-c532-bgcolor-00-a-expected.png.
  • platform/mac-leopard/css2.1/t140201-c532-bgcolor-01-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t140201-c532-bgcolor-01-b-expected.checksum.
  • platform/mac-leopard/css2.1/t140201-c532-bgcolor-01-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t140201-c532-bgcolor-01-b-expected.png.
  • platform/mac-leopard/css2.1/t140201-c533-bgimage-00-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t140201-c533-bgimage-00-a-expected.checksum.
  • platform/mac-leopard/css2.1/t140201-c533-bgimage-00-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t140201-c533-bgimage-00-a-expected.png.
  • platform/mac-leopard/css2.1/t140201-c533-bgimage-01-b-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t140201-c533-bgimage-01-b-g-expected.checksum.
  • platform/mac-leopard/css2.1/t140201-c533-bgimage-01-b-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t140201-c533-bgimage-01-b-g-expected.png.
  • platform/mac-leopard/css2.1/t140201-c534-bgre-00-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t140201-c534-bgre-00-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t140201-c534-bgre-00-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t140201-c534-bgre-00-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t140201-c534-bgre-01-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t140201-c534-bgre-01-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t140201-c534-bgre-01-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t140201-c534-bgre-01-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t140201-c534-bgreps-00-c-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t140201-c534-bgreps-00-c-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t140201-c534-bgreps-00-c-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t140201-c534-bgreps-00-c-ag-expected.png.
  • platform/mac-leopard/css2.1/t140201-c534-bgreps-01-c-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t140201-c534-bgreps-01-c-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t140201-c534-bgreps-01-c-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t140201-c534-bgreps-01-c-ag-expected.png.
  • platform/mac-leopard/css2.1/t140201-c534-bgreps-02-c-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t140201-c534-bgreps-02-c-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t140201-c534-bgreps-02-c-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t140201-c534-bgreps-02-c-ag-expected.png.
  • platform/mac-leopard/css2.1/t140201-c534-bgreps-03-c-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t140201-c534-bgreps-03-c-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t140201-c534-bgreps-03-c-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t140201-c534-bgreps-03-c-ag-expected.png.
  • platform/mac-leopard/css2.1/t140201-c534-bgreps-04-c-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t140201-c534-bgreps-04-c-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t140201-c534-bgreps-04-c-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t140201-c534-bgreps-04-c-ag-expected.png.
  • platform/mac-leopard/css2.1/t140201-c534-bgreps-05-c-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t140201-c534-bgreps-05-c-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t140201-c534-bgreps-05-c-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t140201-c534-bgreps-05-c-ag-expected.png.
  • platform/mac-leopard/css2.1/t140201-c535-bg-fixd-00-b-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t140201-c535-bg-fixd-00-b-g-expected.checksum.
  • platform/mac-leopard/css2.1/t140201-c535-bg-fixd-00-b-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t140201-c535-bg-fixd-00-b-g-expected.png.
  • platform/mac-leopard/css2.1/t140201-c536-bgpos-00-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t140201-c536-bgpos-00-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t140201-c536-bgpos-00-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t140201-c536-bgpos-00-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t140201-c536-bgpos-01-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t140201-c536-bgpos-01-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t140201-c536-bgpos-01-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t140201-c536-bgpos-01-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t140201-c537-bgfxps-00-c-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t140201-c537-bgfxps-00-c-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t140201-c537-bgfxps-00-c-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t140201-c537-bgfxps-00-c-ag-expected.png.
  • platform/mac-leopard/css2.1/t1504-c523-font-style-00-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1504-c523-font-style-00-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1504-c523-font-style-00-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1504-c523-font-style-00-b-expected.png.
  • platform/mac-leopard/css2.1/t1505-c524-font-var-00-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1505-c524-font-var-00-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1505-c524-font-var-00-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1505-c524-font-var-00-b-expected.png.
  • platform/mac-leopard/css2.1/t1506-c525-font-wt-00-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1506-c525-font-wt-00-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1506-c525-font-wt-00-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1506-c525-font-wt-00-b-expected.png.
  • platform/mac-leopard/css2.1/t1507-c526-font-sz-00-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1507-c526-font-sz-00-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1507-c526-font-sz-00-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1507-c526-font-sz-00-b-expected.png.
  • platform/mac-leopard/css2.1/t1507-c526-font-sz-01-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1507-c526-font-sz-01-b-a-expected.checksum.
  • platform/mac-leopard/css2.1/t1507-c526-font-sz-01-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1507-c526-font-sz-01-b-a-expected.png.
  • platform/mac-leopard/css2.1/t1507-c526-font-sz-02-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1507-c526-font-sz-02-b-a-expected.checksum.
  • platform/mac-leopard/css2.1/t1507-c526-font-sz-02-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1507-c526-font-sz-02-b-a-expected.png.
  • platform/mac-leopard/css2.1/t1507-c526-font-sz-03-f-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1507-c526-font-sz-03-f-a-expected.checksum.
  • platform/mac-leopard/css2.1/t1507-c526-font-sz-03-f-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1507-c526-font-sz-03-f-a-expected.png.
  • platform/mac-leopard/css2.1/t1508-c527-font-01-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1508-c527-font-01-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1508-c527-font-01-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1508-c527-font-01-b-expected.png.
  • platform/mac-leopard/css2.1/t1508-c527-font-02-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1508-c527-font-02-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1508-c527-font-02-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1508-c527-font-02-b-expected.png.
  • platform/mac-leopard/css2.1/t1508-c527-font-09-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1508-c527-font-09-b-expected.checksum.
  • platform/mac-leopard/css2.1/t1508-c527-font-09-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1508-c527-font-09-b-expected.png.
  • platform/mac-leopard/css2.1/t1601-c547-indent-00-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1601-c547-indent-00-b-a-expected.checksum.
  • platform/mac-leopard/css2.1/t1601-c547-indent-00-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1601-c547-indent-00-b-a-expected.png.
  • platform/mac-leopard/css2.1/t1601-c547-indent-01-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1601-c547-indent-01-d-expected.checksum.
  • platform/mac-leopard/css2.1/t1601-c547-indent-01-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1601-c547-indent-01-d-expected.png.
  • platform/mac-leopard/css2.1/t1602-c43-center-00-d-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1602-c43-center-00-d-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t1602-c43-center-00-d-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1602-c43-center-00-d-ag-expected.png.
  • platform/mac-leopard/css2.1/t1604-c541-word-sp-00-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1604-c541-word-sp-00-b-a-expected.checksum.
  • platform/mac-leopard/css2.1/t1604-c541-word-sp-00-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1604-c541-word-sp-00-b-a-expected.png.
  • platform/mac-leopard/css2.1/t1604-c541-word-sp-01-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1604-c541-word-sp-01-b-a-expected.checksum.
  • platform/mac-leopard/css2.1/t1604-c541-word-sp-01-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1604-c541-word-sp-01-b-a-expected.png.
  • platform/mac-leopard/css2.1/t1604-c542-letter-sp-00-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1604-c542-letter-sp-00-b-a-expected.checksum.
  • platform/mac-leopard/css2.1/t1604-c542-letter-sp-00-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1604-c542-letter-sp-00-b-a-expected.png.
  • platform/mac-leopard/css2.1/t1604-c542-letter-sp-01-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1604-c542-letter-sp-01-b-a-expected.checksum.
  • platform/mac-leopard/css2.1/t1604-c542-letter-sp-01-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1604-c542-letter-sp-01-b-a-expected.png.
  • platform/mac-leopard/css2.1/t1606-c562-white-sp-00-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t1606-c562-white-sp-00-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t1606-c562-white-sp-00-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t1606-c562-white-sp-00-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-00-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-00-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-00-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-00-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-01-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-01-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-01-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-01-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-02-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-02-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-02-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-02-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-03-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-03-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-03-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-03-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-04-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-04-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-04-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-04-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-05-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-05-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-05-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-05-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-06-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-06-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-06-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-06-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-07-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-07-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-07-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-07-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-08-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-08-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-08-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-08-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-09-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-09-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-09-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-09-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-10-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-10-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-10-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-10-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-11-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-11-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-11-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-11-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-12-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-12-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-12-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-12-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-13-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-13-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-13-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-13-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-14-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-14-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-14-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-14-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-15-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-15-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-15-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-15-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-16-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-16-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-16-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-16-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-17-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-17-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-17-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-17-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-18-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-18-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-18-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-18-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-19-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-19-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-19-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-19-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-20-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-20-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-20-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-20-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-21-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-21-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-21-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-21-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-22-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-22-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-22-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-22-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-23-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-23-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-23-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-23-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-24-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-24-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-24-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-24-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-25-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-25-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-25-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-25-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-26-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-26-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-26-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-26-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-27-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-27-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-27-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-27-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-28-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-28-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-28-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-28-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-29-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-29-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-29-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-29-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-30-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-30-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-30-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-30-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-31-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-31-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-31-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-31-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-32-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-32-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-32-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-32-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-33-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-33-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-33-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-33-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-34-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-34-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-34-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-34-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-35-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-35-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-35-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-35-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-36-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-36-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-36-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-36-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-37-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-37-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-37-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-37-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-38-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-38-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-38-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-38-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-39-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-39-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-39-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-39-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-40-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-40-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-40-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-40-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-41-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-41-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-41-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-41-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-42-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-42-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-42-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-42-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-43-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-43-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-43-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-43-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-44-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-44-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-44-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-44-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-45-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-45-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-45-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-45-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-46-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-46-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-46-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-46-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-47-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-47-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-47-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-47-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-48-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-48-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-48-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-48-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-49-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-49-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-49-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-49-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-50-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-50-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-50-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-50-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-51-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-51-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-51-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-51-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-52-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-52-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-52-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-52-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-53-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-53-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-53-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-53-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-54-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-54-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-54-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-54-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-55-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-55-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-55-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-55-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-56-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-56-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-56-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-56-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-57-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-57-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-57-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-57-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-58-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-58-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-58-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-58-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-59-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-59-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-59-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-59-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-60-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-60-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-60-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-60-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-61-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-61-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-61-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-61-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-62-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-62-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-62-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-62-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-63-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-63-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-63-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-63-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-64-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-64-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-64-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-64-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-65-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-65-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-65-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-65-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-66-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-66-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-66-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-66-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-67-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-67-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-67-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-67-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-68-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-68-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-68-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-68-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-69-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-69-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-69-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-69-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-70-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-70-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-70-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-70-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-71-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-71-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-71-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-71-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-72-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-72-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-72-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-72-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-73-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-73-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-73-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-73-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-74-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-74-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-74-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-74-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-75-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-75-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-75-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-75-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-76-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-76-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-76-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-76-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-77-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-77-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-77-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-77-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-78-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-78-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-78-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-78-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-79-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-79-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-79-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-79-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-80-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-80-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-80-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-80-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-81-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-81-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-81-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-81-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-82-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-82-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-82-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-82-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-83-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-83-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-83-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-83-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-84-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-84-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-84-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-84-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-85-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-85-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-85-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-85-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-86-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-86-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-86-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-86-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-87-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-87-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-87-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-87-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-88-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-88-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-88-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-88-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-89-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-89-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-89-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-89-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-90-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-90-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-90-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-90-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-91-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-91-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-91-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-91-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-92-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-92-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-92-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-92-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-93-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-93-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-93-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-93-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-94-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-94-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-94-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-94-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-95-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-95-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-95-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-95-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-96-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-96-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-96-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-96-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-97-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-97-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-97-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-97-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-98-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-98-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-98-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-98-d-expected.png.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-99-d-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-99-d-expected.checksum.
  • platform/mac-leopard/css2.1/t170602-bdr-conflct-w-99-d-expected.png: Copied from LayoutTests/platform/mac/css2.1/t170602-bdr-conflct-w-99-d-expected.png.
  • platform/mac/css2.1/t0805-c5514-ibrdr-lw-00-a-expected.checksum:
  • platform/mac/css2.1/t0805-c5514-ibrdr-lw-00-a-expected.png:
  • platform/mac/css2.1/t0805-c5515-brdr-w-00-a-expected.checksum:
  • platform/mac/css2.1/t0805-c5515-brdr-w-00-a-expected.png:
  • platform/mac/css2.1/t0805-c5515-brdr-w-01-b-g-expected.checksum:
  • platform/mac/css2.1/t0805-c5515-brdr-w-01-b-g-expected.png:
  • platform/mac/css2.1/t0805-c5515-brdr-w-02-b-expected.checksum:
  • platform/mac/css2.1/t0805-c5515-brdr-w-02-b-expected.png:
  • platform/mac/css2.1/t0805-c5515-ibrdr-00-b-expected.checksum:
  • platform/mac/css2.1/t0805-c5515-ibrdr-00-b-expected.png:
  • platform/mac/css2.1/t0805-c5516-brdr-c-00-a-expected.checksum:
  • platform/mac/css2.1/t0805-c5516-brdr-c-00-a-expected.png:
  • platform/mac/css2.1/t0805-c5516-ibrdr-c-00-a-expected.checksum:
  • platform/mac/css2.1/t0805-c5516-ibrdr-c-00-a-expected.png:
  • platform/mac/css2.1/t0805-c5517-brdr-s-00-c-expected.checksum:
  • platform/mac/css2.1/t0805-c5517-brdr-s-00-c-expected.png:
  • platform/mac/css2.1/t0805-c5517-ibrdr-s-00-a-expected.checksum:
  • platform/mac/css2.1/t0805-c5517-ibrdr-s-00-a-expected.png:
  • platform/mac/css2.1/t0805-c5518-brdr-t-00-a-expected.checksum:
  • platform/mac/css2.1/t0805-c5518-brdr-t-00-a-expected.png:
  • platform/mac/css2.1/t0805-c5518-brdr-t-01-e-expected.checksum:
  • platform/mac/css2.1/t0805-c5518-brdr-t-01-e-expected.png:
  • platform/mac/css2.1/t0805-c5518-ibrdr-t-00-a-expected.checksum:
  • platform/mac/css2.1/t0805-c5518-ibrdr-t-00-a-expected.png:
  • platform/mac/css2.1/t0805-c5519-brdr-r-00-a-expected.checksum:
  • platform/mac/css2.1/t0805-c5519-brdr-r-00-a-expected.png:
  • platform/mac/css2.1/t0805-c5519-brdr-r-01-e-expected.checksum:
  • platform/mac/css2.1/t0805-c5519-brdr-r-01-e-expected.png:
  • platform/mac/css2.1/t0805-c5519-brdr-r-02-e-expected.checksum:
  • platform/mac/css2.1/t0805-c5519-brdr-r-02-e-expected.png:
  • platform/mac/css2.1/t0805-c5519-ibrdr-r-00-a-expected.checksum:
  • platform/mac/css2.1/t0805-c5519-ibrdr-r-00-a-expected.png:
  • platform/mac/css2.1/t0805-c5520-brdr-b-00-a-expected.checksum:
  • platform/mac/css2.1/t0805-c5520-brdr-b-00-a-expected.png:
  • platform/mac/css2.1/t0805-c5520-brdr-b-01-e-expected.checksum:
  • platform/mac/css2.1/t0805-c5520-brdr-b-01-e-expected.png:
  • platform/mac/css2.1/t0805-c5520-ibrdr-b-00-a-expected.checksum:
  • platform/mac/css2.1/t0805-c5520-ibrdr-b-00-a-expected.png:
  • platform/mac/css2.1/t0805-c5521-brdr-l-00-a-expected.checksum:
  • platform/mac/css2.1/t0805-c5521-brdr-l-00-a-expected.png:
  • platform/mac/css2.1/t0805-c5521-brdr-l-01-e-expected.checksum:
  • platform/mac/css2.1/t0805-c5521-brdr-l-01-e-expected.png:
  • platform/mac/css2.1/t0805-c5521-brdr-l-02-e-expected.checksum:
  • platform/mac/css2.1/t0805-c5521-brdr-l-02-e-expected.png:
  • platform/mac/css2.1/t0805-c5521-ibrdr-l-00-a-expected.checksum:
  • platform/mac/css2.1/t0805-c5521-ibrdr-l-00-a-expected.png:
  • platform/mac/css2.1/t0805-c5522-brdr-00-b-expected.checksum:
  • platform/mac/css2.1/t0805-c5522-brdr-00-b-expected.png:
  • platform/mac/css2.1/t0805-c5522-brdr-01-b-g-expected.checksum:
  • platform/mac/css2.1/t0805-c5522-brdr-01-b-g-expected.png:
  • platform/mac/css2.1/t0805-c5522-brdr-02-e-expected.checksum:
  • platform/mac/css2.1/t0805-c5522-brdr-02-e-expected.png:
  • platform/mac/css2.1/t0805-c5522-ibrdr-00-a-expected.checksum:
  • platform/mac/css2.1/t0805-c5522-ibrdr-00-a-expected.png:
  • platform/mac/css2.1/t090204-display-change-01-b-ao-expected.checksum:
  • platform/mac/css2.1/t090204-display-change-01-b-ao-expected.png:
  • platform/mac/css2.1/t090402-c42-ibx-pad-00-d-ag-expected.checksum:
  • platform/mac/css2.1/t090402-c42-ibx-pad-00-d-ag-expected.png:
  • platform/mac/css2.1/t0905-c414-flt-00-d-expected.checksum:
  • platform/mac/css2.1/t0905-c414-flt-00-d-expected.png:
  • platform/mac/css2.1/t0905-c414-flt-01-d-g-expected.checksum:
  • platform/mac/css2.1/t0905-c414-flt-01-d-g-expected.png:
  • platform/mac/css2.1/t0905-c414-flt-02-c-expected.checksum:
  • platform/mac/css2.1/t0905-c414-flt-02-c-expected.png:
  • platform/mac/css2.1/t0905-c414-flt-03-c-expected.checksum:
  • platform/mac/css2.1/t0905-c414-flt-03-c-expected.png:
  • platform/mac/css2.1/t0905-c414-flt-04-c-expected.checksum:
  • platform/mac/css2.1/t0905-c414-flt-04-c-expected.png:
  • platform/mac/css2.1/t0905-c414-flt-fit-00-d-expected.checksum:
  • platform/mac/css2.1/t0905-c414-flt-fit-00-d-expected.png:
  • platform/mac/css2.1/t0905-c414-flt-fit-01-d-g-expected.checksum:
  • platform/mac/css2.1/t0905-c414-flt-fit-01-d-g-expected.png:
  • platform/mac/css2.1/t0905-c414-flt-wrap-00-e-expected.checksum:
  • platform/mac/css2.1/t0905-c414-flt-wrap-00-e-expected.png:
  • platform/mac/css2.1/t0905-c414-flt-wrap-01-d-g-expected.checksum:
  • platform/mac/css2.1/t0905-c414-flt-wrap-01-d-g-expected.png:
  • platform/mac/css2.1/t0905-c5525-fltblck-00-d-ag-expected.checksum:
  • platform/mac/css2.1/t0905-c5525-fltblck-00-d-ag-expected.png:
  • platform/mac/css2.1/t0905-c5525-fltblck-01-d-expected.checksum:
  • platform/mac/css2.1/t0905-c5525-fltblck-01-d-expected.png:
  • platform/mac/css2.1/t0905-c5525-fltclr-00-c-ag-expected.checksum:
  • platform/mac/css2.1/t0905-c5525-fltclr-00-c-ag-expected.png:
  • platform/mac/css2.1/t0905-c5525-flthw-00-c-g-expected.checksum:
  • platform/mac/css2.1/t0905-c5525-flthw-00-c-g-expected.png:
  • platform/mac/css2.1/t0905-c5525-fltinln-00-c-ag-expected.checksum:
  • platform/mac/css2.1/t0905-c5525-fltinln-00-c-ag-expected.png:
  • platform/mac/css2.1/t0905-c5525-fltmrgn-00-c-ag-expected.checksum:
  • platform/mac/css2.1/t0905-c5525-fltmrgn-00-c-ag-expected.png:
  • platform/mac/css2.1/t0905-c5525-fltmult-00-d-g-expected.checksum:
  • platform/mac/css2.1/t0905-c5525-fltmult-00-d-g-expected.png:
  • platform/mac/css2.1/t0905-c5525-fltwidth-03-c-g-expected.checksum:
  • platform/mac/css2.1/t0905-c5525-fltwidth-03-c-g-expected.png:
  • platform/mac/css2.1/t0905-c5526-fltclr-00-c-ag-expected.checksum:
  • platform/mac/css2.1/t0905-c5526-fltclr-00-c-ag-expected.png:
  • platform/mac/css2.1/t0905-c5526-flthw-00-c-g-expected.checksum:
  • platform/mac/css2.1/t0905-c5526-flthw-00-c-g-expected.png:
  • platform/mac/css2.1/t090501-c414-flt-00-d-expected.checksum:
  • platform/mac/css2.1/t090501-c414-flt-00-d-expected.png:
  • platform/mac/css2.1/t090501-c414-flt-01-b-expected.checksum:
  • platform/mac/css2.1/t090501-c414-flt-01-b-expected.png:
  • platform/mac/css2.1/t090501-c414-flt-02-d-g-expected.checksum:
  • platform/mac/css2.1/t090501-c414-flt-02-d-g-expected.png:
  • platform/mac/css2.1/t090501-c414-flt-03-b-g-expected.checksum:
  • platform/mac/css2.1/t090501-c414-flt-03-b-g-expected.png:
  • platform/mac/css2.1/t090501-c414-flt-ln-00-d-expected.checksum:
  • platform/mac/css2.1/t090501-c414-flt-ln-00-d-expected.png:
  • platform/mac/css2.1/t090501-c414-flt-ln-01-d-g-expected.checksum:
  • platform/mac/css2.1/t090501-c414-flt-ln-01-d-g-expected.png:
  • platform/mac/css2.1/t090501-c414-flt-ln-02-d-expected.checksum:
  • platform/mac/css2.1/t090501-c414-flt-ln-02-d-expected.png:
  • platform/mac/css2.1/t090501-c414-flt-ln-03-d-expected.checksum:
  • platform/mac/css2.1/t090501-c414-flt-ln-03-d-expected.png:
  • platform/mac/css2.1/t090501-c5525-flt-l-00-b-g-expected.checksum:
  • platform/mac/css2.1/t090501-c5525-flt-l-00-b-g-expected.png:
  • platform/mac/css2.1/t090501-c5525-flt-r-00-b-g-expected.checksum:
  • platform/mac/css2.1/t090501-c5525-flt-r-00-b-g-expected.png:
  • platform/mac/css2.1/t1001-abs-pos-cb-01-b-expected.checksum:
  • platform/mac/css2.1/t1001-abs-pos-cb-01-b-expected.png:
  • platform/mac/css2.1/t1001-abs-pos-cb-02-b-expected.checksum:
  • platform/mac/css2.1/t1001-abs-pos-cb-02-b-expected.png:
  • platform/mac/css2.1/t1001-abs-pos-cb-03-b-expected.checksum:
  • platform/mac/css2.1/t1001-abs-pos-cb-03-b-expected.png:
  • platform/mac/css2.1/t1001-abs-pos-cb-04-b-expected.checksum:
  • platform/mac/css2.1/t1001-abs-pos-cb-04-b-expected.png:
  • platform/mac/css2.1/t1001-abs-pos-cb-05-b-expected.checksum:
  • platform/mac/css2.1/t1001-abs-pos-cb-05-b-expected.png:
  • platform/mac/css2.1/t1001-abs-pos-cb-06-b-expected.checksum:
  • platform/mac/css2.1/t1001-abs-pos-cb-06-b-expected.png:
  • platform/mac/css2.1/t1001-abs-pos-cb-07-b-expected.checksum:
  • platform/mac/css2.1/t1001-abs-pos-cb-07-b-expected.png:
  • platform/mac/css2.1/t1001-abs-pos-cb-08-b-expected.checksum:
  • platform/mac/css2.1/t1001-abs-pos-cb-08-b-expected.png:
  • platform/mac/css2.1/t1001-abs-pos-cb-09-b-expected.checksum:
  • platform/mac/css2.1/t1001-abs-pos-cb-09-b-expected.png:
  • platform/mac/css2.1/t1002-c5523-width-00-b-g-expected.checksum:
  • platform/mac/css2.1/t1002-c5523-width-00-b-g-expected.png:
  • platform/mac/css2.1/t1002-c5523-width-01-b-g-expected.checksum:
  • platform/mac/css2.1/t1002-c5523-width-01-b-g-expected.png:
  • platform/mac/css2.1/t1002-c5523-width-02-b-g-expected.checksum:
  • platform/mac/css2.1/t1002-c5523-width-02-b-g-expected.png:
  • platform/mac/css2.1/t100303-c412-blockw-00-d-ag-expected.checksum:
  • platform/mac/css2.1/t100303-c412-blockw-00-d-ag-expected.png:
  • platform/mac/css2.1/t100304-c43-rpl-bbx-00-d-g-expected.checksum:
  • platform/mac/css2.1/t100304-c43-rpl-bbx-00-d-g-expected.png:
  • platform/mac/css2.1/t100304-c43-rpl-bbx-01-d-g-expected.checksum:
  • platform/mac/css2.1/t100304-c43-rpl-bbx-01-d-g-expected.png:
  • platform/mac/css2.1/t1004-c43-rpl-bbx-00-d-ag-expected.checksum:
  • platform/mac/css2.1/t1004-c43-rpl-bbx-00-d-ag-expected.png:
  • platform/mac/css2.1/t1004-c43-rpl-ibx-00-d-ag-expected.checksum:
  • platform/mac/css2.1/t1004-c43-rpl-ibx-00-d-ag-expected.png:
  • platform/mac/css2.1/t1004-c5524-width-00-b-g-expected.checksum:
  • platform/mac/css2.1/t1004-c5524-width-00-b-g-expected.png:
  • platform/mac/css2.1/t1005-c5524-width-00-b-g-expected.checksum:
  • platform/mac/css2.1/t1005-c5524-width-00-b-g-expected.png:
  • platform/mac/css2.1/t1005-c5524-width-01-b-g-expected.checksum:
  • platform/mac/css2.1/t1005-c5524-width-01-b-g-expected.png:
  • platform/mac/css2.1/t1008-c44-ln-box-00-d-ag-expected.checksum:
  • platform/mac/css2.1/t1008-c44-ln-box-00-d-ag-expected.png:
  • platform/mac/css2.1/t1008-c44-ln-box-01-d-ag-expected.checksum:
  • platform/mac/css2.1/t1008-c44-ln-box-01-d-ag-expected.png:
  • platform/mac/css2.1/t1008-c44-ln-box-02-d-ag-expected.checksum:
  • platform/mac/css2.1/t1008-c44-ln-box-02-d-ag-expected.png:
  • platform/mac/css2.1/t1008-c44-ln-box-03-d-ag-expected.checksum:
  • platform/mac/css2.1/t1008-c44-ln-box-03-d-ag-expected.png:
  • platform/mac/css2.1/t100801-c42-ibx-ht-00-d-a-expected.checksum:
  • platform/mac/css2.1/t100801-c42-ibx-ht-00-d-a-expected.png:
  • platform/mac/css2.1/t100801-c544-valgn-00-a-ag-expected.checksum:
  • platform/mac/css2.1/t100801-c544-valgn-00-a-ag-expected.png:
  • platform/mac/css2.1/t100801-c544-valgn-01-d-ag-expected.checksum:
  • platform/mac/css2.1/t100801-c544-valgn-01-d-ag-expected.png:
  • platform/mac/css2.1/t100801-c544-valgn-02-d-agi-expected.checksum:
  • platform/mac/css2.1/t100801-c544-valgn-02-d-agi-expected.png:
  • platform/mac/css2.1/t100801-c544-valgn-03-d-agi-expected.checksum:
  • platform/mac/css2.1/t100801-c544-valgn-03-d-agi-expected.png:
  • platform/mac/css2.1/t100801-c544-valgn-04-d-agi-expected.checksum:
  • platform/mac/css2.1/t100801-c544-valgn-04-d-agi-expected.png:
  • platform/mac/css2.1/t100801-c548-leadin-00-d-a-expected.checksum:
  • platform/mac/css2.1/t100801-c548-leadin-00-d-a-expected.png:
  • platform/mac/css2.1/t100801-c548-ln-ht-00-c-a-expected.checksum:
  • platform/mac/css2.1/t100801-c548-ln-ht-00-c-a-expected.png:
  • platform/mac/css2.1/t100801-c548-ln-ht-01-b-ag-expected.checksum:
  • platform/mac/css2.1/t100801-c548-ln-ht-01-b-ag-expected.png:
  • platform/mac/css2.1/t100801-c548-ln-ht-02-b-ag-expected.checksum:
  • platform/mac/css2.1/t100801-c548-ln-ht-02-b-ag-expected.png:
  • platform/mac/css2.1/t100801-c548-ln-ht-03-d-ag-expected.checksum:
  • platform/mac/css2.1/t100801-c548-ln-ht-03-d-ag-expected.png:
  • platform/mac/css2.1/t100801-c548-ln-ht-04-d-ag-expected.checksum:
  • platform/mac/css2.1/t100801-c548-ln-ht-04-d-ag-expected.png:
  • platform/mac/css2.1/t1202-counter-00-b-expected.checksum:
  • platform/mac/css2.1/t1202-counter-00-b-expected.png:
  • platform/mac/css2.1/t1202-counter-01-b-expected.checksum:
  • platform/mac/css2.1/t1202-counter-01-b-expected.png:
  • platform/mac/css2.1/t1202-counter-02-b-expected.checksum:
  • platform/mac/css2.1/t1202-counter-02-b-expected.png:
  • platform/mac/css2.1/t1202-counter-03-b-expected.checksum:
  • platform/mac/css2.1/t1202-counter-03-b-expected.png:
  • platform/mac/css2.1/t1202-counter-05-b-expected.checksum:
  • platform/mac/css2.1/t1202-counter-05-b-expected.png:
  • platform/mac/css2.1/t1202-counter-06-b-expected.checksum:
  • platform/mac/css2.1/t1202-counter-06-b-expected.png:
  • platform/mac/css2.1/t1202-counter-07-b-expected.checksum:
  • platform/mac/css2.1/t1202-counter-07-b-expected.png:
  • platform/mac/css2.1/t1202-counter-08-b-expected.checksum:
  • platform/mac/css2.1/t1202-counter-08-b-expected.png:
  • platform/mac/css2.1/t1202-counter-09-b-expected.checksum:
  • platform/mac/css2.1/t1202-counter-09-b-expected.png:
  • platform/mac/css2.1/t1202-counter-11-b-expected.checksum:
  • platform/mac/css2.1/t1202-counter-11-b-expected.png:
  • platform/mac/css2.1/t1202-counter-12-b-expected.checksum:
  • platform/mac/css2.1/t1202-counter-12-b-expected.png:
  • platform/mac/css2.1/t1202-counter-13-b-expected.checksum:
  • platform/mac/css2.1/t1202-counter-13-b-expected.png:
  • platform/mac/css2.1/t1202-counter-14-b-expected.checksum:
  • platform/mac/css2.1/t1202-counter-14-b-expected.png:
  • platform/mac/css2.1/t1202-counter-15-b-expected.checksum:
  • platform/mac/css2.1/t1202-counter-15-b-expected.png:
  • platform/mac/css2.1/t1202-counter-16-f-expected.checksum:
  • platform/mac/css2.1/t1202-counter-16-f-expected.png:
  • platform/mac/css2.1/t1202-counters-00-b-expected.checksum:
  • platform/mac/css2.1/t1202-counters-00-b-expected.png:
  • platform/mac/css2.1/t1202-counters-01-b-expected.checksum:
  • platform/mac/css2.1/t1202-counters-01-b-expected.png:
  • platform/mac/css2.1/t1202-counters-02-b-expected.checksum:
  • platform/mac/css2.1/t1202-counters-02-b-expected.png:
  • platform/mac/css2.1/t1202-counters-03-b-expected.checksum:
  • platform/mac/css2.1/t1202-counters-03-b-expected.png:
  • platform/mac/css2.1/t1202-counters-05-b-expected.checksum:
  • platform/mac/css2.1/t1202-counters-05-b-expected.png:
  • platform/mac/css2.1/t1202-counters-06-b-expected.checksum:
  • platform/mac/css2.1/t1202-counters-06-b-expected.png:
  • platform/mac/css2.1/t1202-counters-07-b-expected.checksum:
  • platform/mac/css2.1/t1202-counters-07-b-expected.png:
  • platform/mac/css2.1/t1202-counters-08-b-expected.checksum:
  • platform/mac/css2.1/t1202-counters-08-b-expected.png:
  • platform/mac/css2.1/t1202-counters-09-b-expected.checksum:
  • platform/mac/css2.1/t1202-counters-09-b-expected.png:
  • platform/mac/css2.1/t1202-counters-11-b-expected.checksum:
  • platform/mac/css2.1/t1202-counters-11-b-expected.png:
  • platform/mac/css2.1/t1202-counters-12-b-expected.checksum:
  • platform/mac/css2.1/t1202-counters-12-b-expected.png:
  • platform/mac/css2.1/t1202-counters-13-b-expected.checksum:
  • platform/mac/css2.1/t1202-counters-13-b-expected.png:
  • platform/mac/css2.1/t1202-counters-14-b-expected.checksum:
  • platform/mac/css2.1/t1202-counters-14-b-expected.png:
  • platform/mac/css2.1/t1202-counters-15-b-expected.checksum:
  • platform/mac/css2.1/t1202-counters-15-b-expected.png:
  • platform/mac/css2.1/t1202-counters-16-c-expected.checksum:
  • platform/mac/css2.1/t1202-counters-16-c-expected.png:
  • platform/mac/css2.1/t1202-counters-17-d-expected.checksum:
  • platform/mac/css2.1/t1202-counters-17-d-expected.png:
  • platform/mac/css2.1/t1202-counters-18-f-expected.checksum:
  • platform/mac/css2.1/t1202-counters-18-f-expected.png:
  • platform/mac/css2.1/t1204-implied-00-b-expected.checksum:
  • platform/mac/css2.1/t1204-implied-00-b-expected.png:
  • platform/mac/css2.1/t1204-implied-01-c-expected.checksum:
  • platform/mac/css2.1/t1204-implied-01-c-expected.png:
  • platform/mac/css2.1/t1204-implied-02-d-expected.checksum:
  • platform/mac/css2.1/t1204-implied-02-d-expected.png:
  • platform/mac/css2.1/t1204-multiple-00-c-expected.checksum:
  • platform/mac/css2.1/t1204-multiple-00-c-expected.png:
  • platform/mac/css2.1/t1204-multiple-01-c-expected.checksum:
  • platform/mac/css2.1/t1204-multiple-01-c-expected.png:
  • platform/mac/css2.1/t1204-order-00-c-expected.checksum:
  • platform/mac/css2.1/t1204-order-00-c-expected.png:
  • platform/mac/css2.1/t1204-order-01-d-expected.checksum:
  • platform/mac/css2.1/t1204-order-01-d-expected.png:
  • platform/mac/css2.1/t1204-root-e-expected.checksum:
  • platform/mac/css2.1/t1204-root-e-expected.png:
  • platform/mac/css2.1/t120401-scope-00-b-expected.checksum:
  • platform/mac/css2.1/t120401-scope-00-b-expected.png:
  • platform/mac/css2.1/t120401-scope-01-c-expected.checksum:
  • platform/mac/css2.1/t120401-scope-01-c-expected.png:
  • platform/mac/css2.1/t120401-scope-02-c-expected.checksum:
  • platform/mac/css2.1/t120401-scope-02-c-expected.png:
  • platform/mac/css2.1/t120401-scope-03-c-expected.checksum:
  • platform/mac/css2.1/t120401-scope-03-c-expected.png:
  • platform/mac/css2.1/t120401-scope-04-d-expected.checksum:
  • platform/mac/css2.1/t120401-scope-04-d-expected.png:
  • platform/mac/css2.1/t120403-content-none-00-c-expected.checksum:
  • platform/mac/css2.1/t120403-content-none-00-c-expected.png:
  • platform/mac/css2.1/t120403-display-none-00-c-expected.checksum:
  • platform/mac/css2.1/t120403-display-none-00-c-expected.png:
  • platform/mac/css2.1/t120403-visibility-00-c-expected.checksum:
  • platform/mac/css2.1/t120403-visibility-00-c-expected.png:
  • platform/mac/css2.1/t1205-c561-list-displ-00-b-expected.checksum:
  • platform/mac/css2.1/t1205-c561-list-displ-00-b-expected.png:
  • platform/mac/css2.1/t1205-c563-list-type-00-b-expected.checksum:
  • platform/mac/css2.1/t1205-c563-list-type-00-b-expected.png:
  • platform/mac/css2.1/t1205-c563-list-type-01-b-expected.checksum:
  • platform/mac/css2.1/t1205-c563-list-type-01-b-expected.png:
  • platform/mac/css2.1/t1205-c564-list-img-00-b-g-expected.checksum:
  • platform/mac/css2.1/t1205-c564-list-img-00-b-g-expected.png:
  • platform/mac/css2.1/t1205-c565-list-pos-00-b-expected.checksum:
  • platform/mac/css2.1/t1205-c565-list-pos-00-b-expected.png:
  • platform/mac/css2.1/t1205-c566-list-stl-00-e-ag-expected.checksum:
  • platform/mac/css2.1/t1205-c566-list-stl-00-e-ag-expected.png:
  • platform/mac/css2.1/t1205-c566-list-stl-01-c-g-expected.checksum:
  • platform/mac/css2.1/t1205-c566-list-stl-01-c-g-expected.png:
  • platform/mac/css2.1/t1401-c531-color-00-a-expected.checksum:
  • platform/mac/css2.1/t1401-c531-color-00-a-expected.png:
  • platform/mac/css2.1/t1402-c45-bg-canvas-00-b-expected.checksum:
  • platform/mac/css2.1/t1402-c45-bg-canvas-00-b-expected.png:
  • platform/mac/css2.1/t140201-c532-bgcolor-00-a-expected.checksum:
  • platform/mac/css2.1/t140201-c532-bgcolor-00-a-expected.png:
  • platform/mac/css2.1/t140201-c532-bgcolor-01-b-expected.checksum:
  • platform/mac/css2.1/t140201-c532-bgcolor-01-b-expected.png:
  • platform/mac/css2.1/t140201-c533-bgimage-00-a-expected.checksum:
  • platform/mac/css2.1/t140201-c533-bgimage-00-a-expected.png:
  • platform/mac/css2.1/t140201-c533-bgimage-01-b-g-expected.checksum:
  • platform/mac/css2.1/t140201-c533-bgimage-01-b-g-expected.png:
  • platform/mac/css2.1/t140201-c534-bgre-00-b-ag-expected.checksum:
  • platform/mac/css2.1/t140201-c534-bgre-00-b-ag-expected.png:
  • platform/mac/css2.1/t140201-c534-bgre-01-b-ag-expected.checksum:
  • platform/mac/css2.1/t140201-c534-bgre-01-b-ag-expected.png:
  • platform/mac/css2.1/t140201-c534-bgreps-00-c-ag-expected.checksum:
  • platform/mac/css2.1/t140201-c534-bgreps-00-c-ag-expected.png:
  • platform/mac/css2.1/t140201-c534-bgreps-01-c-ag-expected.checksum:
  • platform/mac/css2.1/t140201-c534-bgreps-01-c-ag-expected.png:
  • platform/mac/css2.1/t140201-c534-bgreps-02-c-ag-expected.checksum:
  • platform/mac/css2.1/t140201-c534-bgreps-02-c-ag-expected.png:
  • platform/mac/css2.1/t140201-c534-bgreps-03-c-ag-expected.checksum:
  • platform/mac/css2.1/t140201-c534-bgreps-03-c-ag-expected.png:
  • platform/mac/css2.1/t140201-c534-bgreps-04-c-ag-expected.checksum:
  • platform/mac/css2.1/t140201-c534-bgreps-04-c-ag-expected.png:
  • platform/mac/css2.1/t140201-c534-bgreps-05-c-ag-expected.checksum:
  • platform/mac/css2.1/t140201-c534-bgreps-05-c-ag-expected.png:
  • platform/mac/css2.1/t140201-c535-bg-fixd-00-b-g-expected.checksum:
  • platform/mac/css2.1/t140201-c535-bg-fixd-00-b-g-expected.png:
  • platform/mac/css2.1/t140201-c536-bgpos-00-b-ag-expected.checksum:
  • platform/mac/css2.1/t140201-c536-bgpos-00-b-ag-expected.png:
  • platform/mac/css2.1/t140201-c536-bgpos-01-b-ag-expected.checksum:
  • platform/mac/css2.1/t140201-c536-bgpos-01-b-ag-expected.png:
  • platform/mac/css2.1/t140201-c537-bgfxps-00-c-ag-expected.checksum:
  • platform/mac/css2.1/t140201-c537-bgfxps-00-c-ag-expected.png:
  • platform/mac/css2.1/t1504-c523-font-style-00-b-expected.checksum:
  • platform/mac/css2.1/t1504-c523-font-style-00-b-expected.png:
  • platform/mac/css2.1/t1505-c524-font-var-00-b-expected.checksum:
  • platform/mac/css2.1/t1505-c524-font-var-00-b-expected.png:
  • platform/mac/css2.1/t1506-c525-font-wt-00-b-expected.checksum:
  • platform/mac/css2.1/t1506-c525-font-wt-00-b-expected.png:
  • platform/mac/css2.1/t1507-c526-font-sz-00-b-expected.checksum:
  • platform/mac/css2.1/t1507-c526-font-sz-00-b-expected.png:
  • platform/mac/css2.1/t1507-c526-font-sz-01-b-a-expected.checksum:
  • platform/mac/css2.1/t1507-c526-font-sz-01-b-a-expected.png:
  • platform/mac/css2.1/t1507-c526-font-sz-02-b-a-expected.checksum:
  • platform/mac/css2.1/t1507-c526-font-sz-02-b-a-expected.png:
  • platform/mac/css2.1/t1507-c526-font-sz-03-f-a-expected.checksum:
  • platform/mac/css2.1/t1507-c526-font-sz-03-f-a-expected.png:
  • platform/mac/css2.1/t1508-c527-font-01-b-expected.checksum:
  • platform/mac/css2.1/t1508-c527-font-01-b-expected.png:
  • platform/mac/css2.1/t1508-c527-font-02-b-expected.checksum:
  • platform/mac/css2.1/t1508-c527-font-02-b-expected.png:
  • platform/mac/css2.1/t1508-c527-font-09-b-expected.checksum:
  • platform/mac/css2.1/t1508-c527-font-09-b-expected.png:
  • platform/mac/css2.1/t1601-c547-indent-00-b-a-expected.checksum:
  • platform/mac/css2.1/t1601-c547-indent-00-b-a-expected.png:
  • platform/mac/css2.1/t1601-c547-indent-01-d-expected.checksum:
  • platform/mac/css2.1/t1601-c547-indent-01-d-expected.png:
  • platform/mac/css2.1/t1602-c43-center-00-d-ag-expected.checksum:
  • platform/mac/css2.1/t1602-c43-center-00-d-ag-expected.png:
  • platform/mac/css2.1/t1604-c541-word-sp-00-b-a-expected.checksum:
  • platform/mac/css2.1/t1604-c541-word-sp-00-b-a-expected.png:
  • platform/mac/css2.1/t1604-c541-word-sp-01-b-a-expected.checksum:
  • platform/mac/css2.1/t1604-c541-word-sp-01-b-a-expected.png:
  • platform/mac/css2.1/t1604-c542-letter-sp-00-b-a-expected.checksum:
  • platform/mac/css2.1/t1604-c542-letter-sp-00-b-a-expected.png:
  • platform/mac/css2.1/t1604-c542-letter-sp-01-b-a-expected.checksum:
  • platform/mac/css2.1/t1604-c542-letter-sp-01-b-a-expected.png:
  • platform/mac/css2.1/t1606-c562-white-sp-00-b-ag-expected.checksum:
  • platform/mac/css2.1/t1606-c562-white-sp-00-b-ag-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-00-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-00-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-01-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-01-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-02-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-02-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-03-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-03-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-04-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-04-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-05-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-05-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-06-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-06-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-07-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-07-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-08-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-08-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-09-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-09-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-10-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-10-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-11-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-11-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-12-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-12-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-13-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-13-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-14-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-14-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-15-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-15-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-16-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-16-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-17-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-17-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-18-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-18-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-19-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-19-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-20-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-20-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-21-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-21-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-22-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-22-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-23-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-23-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-24-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-24-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-25-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-25-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-26-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-26-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-27-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-27-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-28-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-28-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-29-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-29-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-30-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-30-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-31-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-31-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-32-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-32-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-33-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-33-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-34-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-34-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-35-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-35-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-36-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-36-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-37-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-37-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-38-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-38-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-39-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-39-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-40-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-40-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-41-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-41-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-42-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-42-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-43-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-43-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-44-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-44-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-45-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-45-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-46-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-46-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-47-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-47-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-48-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-48-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-49-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-49-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-50-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-50-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-51-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-51-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-52-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-52-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-53-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-53-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-54-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-54-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-55-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-55-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-56-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-56-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-57-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-57-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-58-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-58-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-59-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-59-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-60-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-60-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-61-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-61-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-62-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-62-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-63-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-63-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-64-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-64-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-65-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-65-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-66-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-66-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-67-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-67-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-68-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-68-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-69-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-69-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-70-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-70-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-71-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-71-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-72-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-72-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-73-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-73-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-74-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-74-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-75-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-75-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-76-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-76-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-77-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-77-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-78-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-78-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-79-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-79-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-80-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-80-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-81-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-81-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-82-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-82-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-83-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-83-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-84-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-84-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-85-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-85-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-86-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-86-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-87-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-87-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-88-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-88-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-89-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-89-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-90-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-90-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-91-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-91-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-92-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-92-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-93-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-93-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-94-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-94-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-95-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-95-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-96-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-96-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-97-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-97-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-98-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-98-d-expected.png:
  • platform/mac/css2.1/t170602-bdr-conflct-w-99-d-expected.checksum:
  • platform/mac/css2.1/t170602-bdr-conflct-w-99-d-expected.png:
5:59 PM Changeset in webkit [70377] by aestes@apple.com
  • 3 edits in trunk/WebKit/win

Fix the Windows build.

  • WebCookieManagerCFNet.cpp: Rename CookieStorageWin.h to CookieStorageCFNet.h.
  • WebView.cpp: Ditto.
5:48 PM Changeset in webkit [70376] by commit-queue@webkit.org
  • 6 edits in trunk

2010-10-22 Jenn Braithwaite <jennb@chromium.org>

Reviewed by Adam Roben.

Windows client needs updating when live iframe element is moved between pages
https://bugs.webkit.org/show_bug.cgi?id=46915

  • platform/win/Skipped: Stop skipping fast/frames/iframe-reparenting-adopt-node.html

2010-10-22 Jenn Braithwaite <jennb@chromium.org>

Reviewed by Adam Roben.

Windows client needs updating when live iframe element is moved between pages
https://bugs.webkit.org/show_bug.cgi?id=46915

  • WebCoreSupport/WebFrameLoaderClient.cpp: (WebFrameLoaderClient::didTransferChildFrameToNewDocument): Update WebView in WebFrame to match that of the current page.
  • WebFrame.cpp: (WebFrame::setWebView): Added.
  • WebFrame.h:
5:43 PM Changeset in webkit [70375] by inferno@chromium.org
  • 17 edits
    5 copies in branches/chromium/552

Merge 70335

BUG=57377

5:41 PM Changeset in webkit [70374] by eric@webkit.org
  • 5 edits in trunk/WebKitTools

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

Reviewed by Adam Barth.

commit-queue should not pass --quiet to subcommands now that the parent command does the reporting
https://bugs.webkit.org/show_bug.cgi?id=48165

  • Scripts/webkitpy/tool/bot/commitqueuetask.py:
  • Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
  • Scripts/webkitpy/tool/commands/queues_unittest.py:
5:38 PM Changeset in webkit [70373] by andersca@apple.com
  • 2 edits in trunk/WebKit2

Fix clang++ build.

  • Scripts/webkit2/messages.py:
5:18 PM Changeset in webkit [70372] by inferno@chromium.org
  • 2 edits in trunk/LayoutTests

2010-10-22 Abhishek Arya <inferno@chromium.org>

Unreviewed.

Remove tests from expectations that are now passing.

  • platform/chromium/test_expectations.txt:
5:17 PM WebKit Team edited by mario@webkit.org
Added myself to list of Committers. (diff)
5:09 PM Changeset in webkit [70371] by mario@webkit.org
  • 2 edits in trunk/WebKitTools

2010-10-22 Mario Sanchez Prada <msanchez@igalia.com>

Adding myself as a committer.

  • Scripts/webkitpy/common/config/committers.py:
5:03 PM Changeset in webkit [70370] by inferno@chromium.org
  • 3 edits in trunk/LayoutTests

2010-10-22 Abhishek Arya <inferno@chromium.org>

Unreviewed.

Fix test fail in chromium. Addition to commit already done in bug 48160.

  • fast/css/modify-ua-rules-from-javascript-expected.txt:
  • fast/css/modify-ua-rules-from-javascript.html:
5:00 PM Changeset in webkit [70369] by abarth@webkit.org
  • 12 edits
    2 adds in trunk

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

Reviewed by Eric Seidel, Peter Kasting, and Darin Fisher.
(Eric reviewed the CoreGraphics interactions, Peter reviewed the image
decoder interaction, and Darin Fisher SGTMed the policy decision.)

[chromium] Chromium Mac should use WebKit's image decoders
https://bugs.webkit.org/show_bug.cgi?id=47974

This patch teaches WebKit's image decoders how to talk to CoreGraphics.
This patch doesn't handle color profiles, but that will come in a
subsequent patch.

  • WebCore.gyp/WebCore.gyp:
  • WebCore.gypi:
  • loader/CachedImage.cpp: (WebCore::CachedImage::createImage):
  • platform/graphics/ImageSource.h:
  • platform/image-decoders/ImageDecoder.cpp: (WebCore::RGBA32Buffer::clear): (WebCore::RGBA32Buffer::zeroFill): (WebCore::RGBA32Buffer::copyBitmapData): (WebCore::RGBA32Buffer::setSize):
  • platform/image-decoders/ImageDecoder.h: (WebCore::RGBA32Buffer::getAddr):
  • platform/image-decoders/cg: Added.
  • platform/image-decoders/cg/ImageDecoderCG.cpp: Added. (WebCore::RGBA32Buffer::copyBitmapData): (WebCore::RGBA32Buffer::setSize): (WebCore::RGBA32Buffer::asNewNativeImage):
4:55 PM Changeset in webkit [70368] by Michael Nordman
  • 3 edits
    2 copies in branches/chromium/552

Merge 69560 - 2010-10-11 Eric Uhrhane <ericu@chromium.org>

Reviewed by Dumitru Daniliuc.

FileWriter should hold a reference to a Blob during write
https://bugs.webkit.org/show_bug.cgi?id=47318

Without this reference, the Blob might get garbage-collected from JS
before the write has completed, which would be quite unintuitive to the
user. I just grab a RefPtr to the Blob at write(), then clear it when
we're done.

  • fileapi/FileWriter.cpp: (WebCore::FileWriter::stop): (WebCore::FileWriter::write): (WebCore::FileWriter::didWrite): (WebCore::FileWriter::didFail):
  • fileapi/FileWriter.h:

2010-10-11 Eric Uhrhane <ericu@chromium.org>

Reviewed by Dumitru Daniliuc.

FileWriter should hold a reference to a Blob during write
https://bugs.webkit.org/show_bug.cgi?id=47318

Added the first FileWriter test to cover this.
Problem #1: it's not a deterministic problem; the test might or might
not catch the error, but at least it won't ever trigger a false
positive.
Problem #2: no platform fully implements FileWriter yet, so this test
must start out completely supressed. All non-chromium platforms
already skip all filesystem tests, so I'm only adding a suppression in
chromium.

  • fast/filesystem/file-writer-gc-blob-expected.txt: Added.
  • fast/filesystem/file-writer-gc-blob.html: Added.
  • platform/chromium/test_expectations.txt:

TBR=dumi@chromium.org

4:47 PM Changeset in webkit [70367] by andersca@apple.com
  • 18 edits
    2 adds in trunk

WebCore: Using the decidePolicyForMIMEType delegate message in an asynchronous manner does not work
https://bugs.webkit.org/show_bug.cgi?id=48014
<rdar://problem/8202716>

Reviewed by Adam Barth and Darin Adler.

  • loader/MainResourceLoader.cpp:

(WebCore::MainResourceLoader::continueAfterContentPolicy):
Resume loading.

(WebCore::MainResourceLoader::didReceiveResponse):
Defer loading until we hear back from the policy client.

WebKitTools: Using the decidePolicyForMIMEType delegate message in an asynchronous manner does not work
https://bugs.webkit.org/show_bug.cgi?id=48014
<rdar://problem/8202716>

Reviewed by Adam Barth and Darin Adler.

  • DumpRenderTree/LayoutTestController.cpp:

(setCustomPolicyDelegateCallback):
Add callIgnoreInDecidePolicyForMIMETypeAfterOneSecond argument.

  • DumpRenderTree/gtk/LayoutTestControllerGtk.cpp:

(LayoutTestController::setCustomPolicyDelegate):
Add callIgnoreInDecidePolicyForMIMETypeAfterOneSecond argument.

  • DumpRenderTree/mac/LayoutTestControllerMac.mm:

(LayoutTestController::setCustomPolicyDelegate):
Add callIgnoreInDecidePolicyForMIMETypeAfterOneSecond argument.

  • DumpRenderTree/mac/PolicyDelegate.h:
  • DumpRenderTree/mac/PolicyDelegate.mm:

(-[PolicyDelegate webView:decidePolicyForMIMEType:request:frame:decisionListener:]):
If _callIgnoreInDecidePolicyForMIMETypeAfterOneSecond is true, call [listener ignore] after one second.

(-[PolicyDelegate setCallIgnoreInDecidePolicyForMIMETypeAfterOneSecond:]):
Update _callIgnoreInDecidePolicyForMIMETypeAfterOneSecond.

  • DumpRenderTree/win/LayoutTestControllerWin.cpp:

(LayoutTestController::setCustomPolicyDelegate):
Add callIgnoreInDecidePolicyForMIMETypeAfterOneSecond argument.

  • DumpRenderTree/wx/LayoutTestControllerWx.cpp:

(LayoutTestController::setCustomPolicyDelegate):
Add callIgnoreInDecidePolicyForMIMETypeAfterOneSecond argument.

LayoutTests: Using the decidePolicyForMIMEType delegate message in an asynchronous manner does not work
https://bugs.webkit.org/show_bug.cgi?id=48014
<rdar://problem/8202716>

Reviewed by Adam Barth and Darin Adler.

Add tests and update the skipped list.

  • fast/loader/decide-policy-for-mime-type-async-expected.txt: Added.
  • fast/loader/decide-policy-for-mime-type-async.html: Added.
  • platform/gtk/Skipped:
  • platform/mac-wk2/Skipped:
  • platform/qt/Skipped:
  • platform/qt-wk2/Skipped:
  • platform/win/Skipped:
4:40 PM Changeset in webkit [70366] by jamesr@google.com
  • 5 edits
    2 copies in branches/chromium/552/WebCore

Merge 70365 - 2010-10-22 James Robinson <jamesr@chromium.org>

Reviewed by Dimitri Glazkov.

REGRESSION(66391): http://ligth-arts.all-up.com/ crashes in EventHandler::selectCursor
https://bugs.webkit.org/show_bug.cgi?id=47942

Add checks for a NULL StyleImage in a CursorList.

  • css/CSSComputedStyleDeclaration.cpp: (WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue):
  • css/CSSStyleSelector.cpp: (WebCore::CSSStyleSelector::loadPendingImages):
  • page/EventHandler.cpp: (WebCore::EventHandler::selectCursor):
  • rendering/style/CursorList.h: (WebCore::CursorList::at):
  • manual-tests/cursor-empty-url.html: Added.
  • manual-tests/resources/cursor-empty-url.css: Added.

TBR=jamesr@google.com
BUG=59703

4:39 PM Changeset in webkit [70365] by jamesr@google.com
  • 5 edits
    2 adds in trunk/WebCore

2010-10-22 James Robinson <jamesr@chromium.org>

Reviewed by Dimitri Glazkov.

REGRESSION(66391): http://ligth-arts.all-up.com/ crashes in EventHandler::selectCursor
https://bugs.webkit.org/show_bug.cgi?id=47942

Add checks for a NULL StyleImage in a CursorList.

  • css/CSSComputedStyleDeclaration.cpp: (WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue):
  • css/CSSStyleSelector.cpp: (WebCore::CSSStyleSelector::loadPendingImages):
  • page/EventHandler.cpp: (WebCore::EventHandler::selectCursor):
  • rendering/style/CursorList.h: (WebCore::CursorList::at):
  • manual-tests/cursor-empty-url.html: Added.
  • manual-tests/resources/cursor-empty-url.css: Added.
4:23 PM Changeset in webkit [70364] by Dimitri Glazkov
  • 2 edits in trunk/LayoutTests

2010-10-22 Dimitri Glazkov <Dimitri Glazkov>

[Chromium/DRT] Update layout test expectations to match reality.

  • platform/chromium/drt_expectations.txt: Tweaked.
4:18 PM Changeset in webkit [70363] by inferno@chromium.org
  • 6 edits in trunk/LayoutTests

2010-10-22 Abhishek Arya <inferno@chromium.org>

Reviewed by Dimitri Glazkov.

Fix failing tests on chromium.
https://bugs.webkit.org/show_bug.cgi?id=48160

  • fast/backgrounds/repeat/background-repeat-shorthand-expected.txt:
  • fast/backgrounds/repeat/margin-shorthand-expected.txt:
  • fast/backgrounds/repeat/resources/background-repeat-shorthand.js: (getShorthand):
  • fast/backgrounds/repeat/resources/margin-shorthand.js: (iconMarginValue):
  • fast/css/modify-ua-rules-from-javascript.html:
4:08 PM Changeset in webkit [70362] by andersca@apple.com
  • 4 edits in trunk/WebKit2

Fix build.

  • UIProcess/API/qt/qwkpage_p.h:

(QWKPagePrivate::didRelaunchProcess):

  • UIProcess/win/WebView.cpp:

(WebKit::WebView::didRelaunchProcess):

  • UIProcess/win/WebView.h:
4:06 PM Changeset in webkit [70361] by jcivelli@chromium.org
  • 2 edits in trunk/WebKit/chromium

2010-10-22 Jay Civelli <jcivelli@chromium.org>

Reviewed by David Levin.

Turning on the Autocomplete implementation on the Chromium side.
https://bugs.webkit.org/show_bug.cgi?id=41283

  • public/WebDocument.h:
3:53 PM Changeset in webkit [70360] by Dimitri Glazkov
  • 2 edits in trunk/LayoutTests

2010-10-22 Dimitri Glazkov <Dimitri Glazkov>

Update layout test expectations after r70335.
https://bugs.webkit.org/show_bug.cgi?id=48160

  • platform/chromium/test_expectations.txt: Added failing tests.
3:51 PM Changeset in webkit [70359] by andersca@apple.com
  • 2 edits in trunk/WebKit2

WebContext::ensureWebProcess shouldn't send multiple InitializeWebProcess messages.
https://bugs.webkit.org/show_bug.cgi?id=48158
<rdar://problem/8512572>

Reviewed by Sam Weinig.

If the web process was launching when another call to ensureWebProcess is sent, we
would end up sending another InitializeWebProcess message to it which would result
in assertions firing. Fix this by only checking for m_process, and not requiring a process
to be valid (which it won't be until it's finished launching).

  • UIProcess/WebContext.cpp:

(WebKit::WebContext::ensureWebProcess):

3:49 PM Changeset in webkit [70358] by inferno@chromium.org
  • 1 edit
    2 copies in branches/chromium/517

Merge 69936

BUG=58657
Review URL: http://codereview.chromium.org/3960005

3:40 PM Changeset in webkit [70357] by andersca@apple.com
  • 11 edits in trunk/WebKit2

Rename revive to relaunch everywhere.

Reviewed by Sam Weinig.

  • UIProcess/API/mac/PageClientImpl.h:
  • UIProcess/API/mac/PageClientImpl.mm:

(WebKit::PageClientImpl::didRelaunchProcess):

  • UIProcess/API/mac/WKView.mm:

(-[WKView _didRelaunchProcess]):

  • UIProcess/API/mac/WKViewInternal.h:
  • UIProcess/PageClient.h:
  • UIProcess/WebContext.cpp:

(WebKit::WebContext::relaunchProcessIfNecessary):

  • UIProcess/WebContext.h:
  • UIProcess/WebPageNamespace.h:
  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::relaunch):
(WebKit::WebPageProxy::initializeWebPage):
(WebKit::WebPageProxy::loadURL):
(WebKit::WebPageProxy::loadURLRequest):

  • UIProcess/WebPageProxy.h:
3:36 PM Changeset in webkit [70356] by hyatt@apple.com
  • 9 edits in trunk/WebCore

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

Reviewed by Adele Peterson.

Make vertical lines hit test properly and show a vertical i-beam cursor. Numerous bugs with overflow were discovered while getting this to work,
so these are in the patch as well. The broken layout tests are fixed by the overflow bug fixes as well (which just restore the old behavior).

  • page/EventHandler.cpp:

(WebCore::EventHandler::selectCursor):

  • rendering/InlineBox.h:

(WebCore::InlineBox::width):
(WebCore::InlineBox::height):

  • rendering/InlineFlowBox.cpp:

(WebCore::InlineFlowBox::placeBoxesInInlineDirection):
(WebCore::InlineFlowBox::computeBlockDirectionOverflow):
(WebCore::InlineFlowBox::nodeAtPoint):

  • rendering/InlineFlowBox.h:

(WebCore::InlineFlowBox::logicalTopVisibleOverflow):
(WebCore::InlineFlowBox::logicalBottomVisibleOverflow):
(WebCore::InlineFlowBox::visibleOverflowRect):
(WebCore::InlineFlowBox::layoutOverflowRect):
(WebCore::InlineFlowBox::logicalTopLayoutOverflow):
(WebCore::InlineFlowBox::logicalBottomLayoutOverflow):
(WebCore::InlineFlowBox::visualOverflowRect):
(WebCore::InlineFlowBox::logicalTopVisualOverflow):
(WebCore::InlineFlowBox::logicalBottomVisualOverflow):
(WebCore::InlineFlowBox::setBlockDirectionOverflowPositions):

  • rendering/InlineTextBox.cpp:

(WebCore::InlineTextBox::nodeAtPoint):

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::blockDirectionOverflow):

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

(WebCore::RenderLineBoxList::hitTest):

3:32 PM Changeset in webkit [70355] by mitz@apple.com
  • 2 edits in trunk

Added Radar links

3:31 PM Changeset in webkit [70354] by mitz@apple.com
  • 3 edits
    2 adds in trunk

Layout not updating in a subtree when a scrollbar is hidden in a flexbox descendant
https://bugs.webkit.org/show_bug.cgi?id=48154

Reviewed by Anders Carlsson.

WebCore:

Test: scrollbars/hidden-scrollbar-prevents-layout.html

updateScrollInfoAfterLayout() calling setHasHorizontalScrollbar() caused updateScrollbarParts()
to call setChildNeedsLayout() on the overflow, because the RenderScrollbar was created with
the default thickness instead of the thickness specified in style. This led to the the overflow’s
parent to be re-marked for layout during its own parent’s finishDelayUpdateScrollInfo(), and
the result was that at the end of RenderView::layout(), there was a dirty renderer.

  • rendering/RenderScrollbar.cpp:

(WebCore::RenderScrollbar::RenderScrollbar): Set the frame size in the 'display: none' and
'visibility: hidden' cases as well.

LayoutTests:

  • scrollbars/hidden-scrollbar-prevents-layout-expected.txt: Added.
  • scrollbars/hidden-scrollbar-prevents-layout.html: Added.
3:27 PM Changeset in webkit [70353] by ojan@chromium.org
  • 2 edits in trunk/LayoutTests

2010-10-22 Ojan Vafai <ojan@chromium.org>

fast/parser/block-nesting-cap.html is regularly on the cusp
of exceeding the 12s timeout on the Chromium Windows Debug bot.
Mark it slow to give it more time.

  • platform/chromium/test_expectations.txt:
3:27 PM Changeset in webkit [70352] by weinig@apple.com
  • 4 edits in trunk/WebKitTools

Rename the InjectedBundle for TestWebKitAPI to InjectedBundleTestWebKitAPI.bundle

Reviewed by Anders Carlsson.

  • TestWebKitAPI/Configurations/InjectedBundle.xcconfig:
  • TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
  • TestWebKitAPI/mac/PlatformUtilitiesMac.mm:

(TestWebKitAPI::Util::createInjectedBundlePath):

3:18 PM Changeset in webkit [70351] by inferno@chromium.org
  • 1 edit
    2 copies in branches/chromium/552

Merge 69936

BUG=58657

3:11 PM Changeset in webkit [70350] by dpranke@chromium.org
  • 2 edits in trunk/WebKitTools

2010-10-22 Dirk Pranke <dpranke@chromium.org>

Reviewed by Eric Seidel.

test-webkitpy fails when passed -v (or any other option)

Fix port/base_unittest to pass an explicit list of arguments
rather than accidentally picking up sys.argv.

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

  • Scripts/webkitpy/layout_tests/port/base_unittest.py:
3:10 PM Changeset in webkit [70349] by inferno@chromium.org
  • 5 edits
    2 copies in branches/chromium/552

Merge 69831

BUG=58741

3:07 PM Changeset in webkit [70348] by inferno@chromium.org
  • 5 edits
    2 copies in branches/chromium/517

Merge 69831

BUG=58741
Review URL: http://codereview.chromium.org/4056004

2:58 PM Changeset in webkit [70347] by andersca@apple.com
  • 3 edits in trunk/WebKit2

Fix assert when a NetscapePluginModule loses its last NetscapePlugin.
https://bugs.webkit.org/show_bug.cgi?id=48155

Reviewed by Adam Roben.

(The assert in question is ASSERT(pluginModuleIndex != notFound) in
NetscapePluginModule::shutdown()).

  • WebProcess/Plugins/Netscape/NetscapePluginModule.cpp:

(WebKit::NetscapePluginModule::pluginCreated):
If we didn't have any live plug-ins, load the plug-in module.

(WebKit::NetscapePluginModule::pluginDestroyed):
If this was the last plug-in, unload the plug-in module.

(WebKit::NetscapePluginModule::shutdown):
Set m_isInitialized to false.

(WebKit::NetscapePluginModule::load):
Don't do anything if the plug-in module has already been initialized.

(WebKit::NetscapePluginModule::unload):
Assert that we're not initialized.

  • WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm:

(WebKit::NetscapePlugin::platformPostInitialize):
Assert that we successfully created the window.

2:47 PM Changeset in webkit [70346] by jberlin@webkit.org
  • 6 edits in trunk/WebKit2

Crash in Connection::isValid when called in response to
VisitedLinksProvider::pendingVisitedLinksTimerFired after WebProcessProxy::didClose was
already called.
https://bugs.webkit.org/show_bug.cgi?id=48153

Reviewed by Anders Carlsson.

  • UIProcess/VisitedLinkProvider.cpp:

(WebKit::VisitedLinkProvider::stopVisitedLinksTimer):

  • UIProcess/VisitedLinkProvider.h:
  • UIProcess/WebContext.cpp:

(WebKit::WebContext::processDidClose):
Stop the pendingVisitedLinksTimer and null out the process.

  • UIProcess/WebContext.h:
  • UIProcess/WebProcessProxy.cpp:

(WebKit::WebProcessProxy::didClose):
Tell the WebContext that the WebProcess did close.

2:43 PM Changeset in webkit [70345] by bweinstein@apple.com
  • 2 edits in trunk/WebKitTools

Windows build fix. Update the createNewPage callback to account for the new
arguments.

  • MiniBrowser/win/BrowserView.cpp:

(createNewPage):

2:41 PM Changeset in webkit [70344] by inferno@chromium.org
  • 2 edits
    2 copies in branches/chromium/552

Merge 69716

BUG=59314

2:40 PM Changeset in webkit [70343] by Patrick Gansterer
  • 2 edits in trunk/WebCore

2010-10-22 Patrick Gansterer <Patrick Gansterer>

Unreviewed.

[WINCE] Build fix after r70143.

  • platform/graphics/wince/ImageBufferWinCE.cpp: (WebCore::ImageBuffer::ImageBuffer):
2:36 PM Changeset in webkit [70342] by inferno@chromium.org
  • 2 edits
    2 copies in branches/chromium/552

Merge 69990

BUG=17655

2:32 PM Changeset in webkit [70341] by weinig@apple.com
  • 2 edits in trunk/WebKit/win

Fix windows build.

  • WebCoreSupport/WebChromeClient.h:
2:29 PM Changeset in webkit [70340] by inferno@chromium.org
  • 1 edit
    2 copies in branches/chromium/552

Merge 69914

BUG=58319

2:16 PM Changeset in webkit [70339] by Adam Roben
  • 11 edits
    3 moves in trunk/WebCore

Windows build fix

r70319 added Windows-native versions of the various platform/network
headers to platform/network/win. WebCoreGenerated was copying these
headers over the CFNetwork-specific versions in $WebKitOutputDir,
leading to the wrong headers being used in WebKit.

This patch changes WebCoreGenerated not to copy any headers from
platform/network/win into $WebKitOutputDir. Instead, only headers from
platform/network/cf or platform/network/curl (as specified) are copied.
There were some CFNetwork-specific files still hanging around in
platform/network/win; these have been moved to platform/network/cf.

  • WebCore.vcproj/WebCore.vcproj: Updated for file moves and let VS
  • format the file as it saw fit.
  • WebCore.vcproj/WebCoreGenerated.vcproj: Added the various scripts
  • this project uses to make editing them easier.
  • WebCore.vcproj/copyForwardingHeaders.cmd: Changed not to copy any
  • headers from platform/network/win.
  • platform/network/cf/CookieJarCFNet.cpp: Renamed from WebCore/platform/network/win/CookieJarCFNetWin.cpp.
  • platform/network/cf/CookieStorageCFNet.cpp: Renamed from WebCore/platform/network/win/CookieStorageWin.cpp.
  • platform/network/cf/CookieStorageCFNet.h: Renamed from WebCore/platform/network/win/CookieStorageWin.h.
  • platform/network/cf/ResourceHandleCFNet.cpp: Updated for rename.
  • platform/network/cf/AuthenticationChallenge.h:
  • platform/network/cf/ResourceError.h:
  • platform/network/cf/ResourceRequest.h:
  • platform/network/cf/ResourceResponse.h:
  • platform/network/cf/SocketStreamError.h:
  • platform/network/cf/SocketStreamHandle.h:

Touched to force a re-copy.

2:16 PM Changeset in webkit [70338] by inferno@chromium.org
  • 1 edit
    2 copies in branches/chromium/552

Merge 69735

BUG=55257

2:13 PM Changeset in webkit [70337] by inferno@chromium.org
  • 1 edit
    2 copies in branches/chromium/517

Merge 69735

BUG=55257
Review URL: http://codereview.chromium.org/3997006

2:10 PM UpdatingBugzilla edited by ddkilzer@webkit.org
(diff)
2:08 PM Changeset in webkit [70336] by weinig@apple.com
  • 2 edits in trunk/WebKit2

Fix Qt build.

  • UIProcess/API/qt/ClientImpl.h:
2:05 PM Changeset in webkit [70335] by inferno@chromium.org
  • 19 edits
    5 adds in trunk

2010-10-22 Abhishek Arya <inferno@chromium.org>

Reviewed by Dave Hyatt.

Add code in getMatchedCSSRules to block cross origin access to stylesheet data. Prevent access
in Javascript to non author stylesheets.
https://bugs.webkit.org/show_bug.cgi?id=46853

Tests: http/tests/security/cross-origin-getMatchedCSSRules.html

http/tests/security/cross-origin-getMatchedCSSRules2.html

  • css/CSSRule.h:
  • css/CSSStyleSelector.cpp: (WebCore::CSSStyleSelector::matchRulesForList): (WebCore::CSSStyleSelector::SelectorChecker::SelectorChecker): (WebCore::CSSStyleSelector::styleRulesForElement): (WebCore::CSSStyleSelector::pseudoStyleRulesForElement):
  • css/CSSStyleSelector.h:
  • page/DOMWindow.cpp: (WebCore::DOMWindow::getMatchedCSSRules):
  • page/DOMWindow.idl:

2010-10-22 Abhishek Arya <inferno@chromium.org>

Reviewed by Dave Hyatt.

Tests that cross origin bypass does not work with getMatchedCSSRules. Rebaseline existing tests
that try to access non-author stylesheets. This functionality is no longer supported. So, css rules
should return null for those cases.
https://bugs.webkit.org/show_bug.cgi?id=46853

  • fast/backgrounds/repeat/background-repeat-shorthand-expected.txt:
  • fast/backgrounds/repeat/margin-shorthand-expected.txt:
  • fast/backgrounds/repeat/resources/background-repeat-shorthand.js:
  • fast/backgrounds/repeat/resources/margin-shorthand.js:
  • fast/css/disabled-author-styles.html:
  • fast/css/modify-ua-rules-from-javascript-expected.txt:
  • fast/css/modify-ua-rules-from-javascript.html:
  • fast/css/word-break-user-modify-allowed-values.html:
  • http/tests/security/cross-frame-access-call-expected.txt:
  • http/tests/security/cross-frame-access-call.html:
  • http/tests/security/cross-origin-getMatchedCSSRules-expected.txt: Added.
  • http/tests/security/cross-origin-getMatchedCSSRules.html: Added.
  • http/tests/security/cross-origin-getMatchedCSSRules2-expected.txt: Added.
  • http/tests/security/cross-origin-getMatchedCSSRules2.html: Added.
  • http/tests/security/resources/cross-origin-getMatchedCSSRules-frame.html: Added.
  • platform/chromium/http/tests/security/cross-frame-access-call-expected.txt:
  • platform/qt/http/tests/security/cross-frame-access-call-expected.txt:
2:01 PM Changeset in webkit [70334] by aestes@apple.com
  • 1 edit
    2 adds in trunk/LayoutTests

Add the tests for r70332.
https://bugs.webkit.org/show_bug.cgi?id=48046

Reviewed by Eric Carlson.

  • plugins/invalid-mime-with-valid-extension-shows-missing-plugin-expected.txt: Added.
  • plugins/invalid-mime-with-valid-extension-shows-missing-plugin.html: Added.
1:59 PM Changeset in webkit [70333] by weinig@apple.com
  • 76 edits in trunk

WebKit2 needs to pass the current event modifier flags when requesting a new window
https://bugs.webkit.org/show_bug.cgi?id=48140

Reviewed by Anders Carlsson.

WebCore:

Store the NavigationAction used for the newWindowPolicyDecision in the PolicyCallback
so that it can be used after the decision has been made in further callbacks.

  • WebCore.exp.in: Fix export name for new function signature.
  • loader/EmptyClients.h:

(WebCore::EmptyChromeClient::createWindow):
(WebCore::EmptyFrameLoaderClient::dispatchCreatePage):

  • loader/FrameLoader.cpp:

(WebCore::FrameLoader::callContinueLoadAfterNewWindowPolicy):
(WebCore::FrameLoader::continueLoadAfterNewWindowPolicy):
(WebCore::createWindow):

  • loader/FrameLoader.h:
  • loader/FrameLoaderClient.h:
  • loader/PolicyCallback.cpp:

(WebCore::PolicyCallback::set):
(WebCore::PolicyCallback::call):
(WebCore::PolicyCallback::cancel):

  • loader/PolicyCallback.h:
  • loader/PolicyChecker.cpp:

(WebCore::PolicyChecker::checkNewWindowPolicy):

  • page/Chrome.cpp:

(WebCore::Chrome::createWindow):

  • page/Chrome.h:
  • page/ChromeClient.h:
  • page/ContextMenuController.cpp:

(WebCore::openNewWindow):

WebKit/chromium:

  • src/ChromeClientImpl.cpp:

(WebKit::ChromeClientImpl::createWindow):

  • src/ChromeClientImpl.h:
  • src/FrameLoaderClientImpl.cpp:

(WebKit::FrameLoaderClientImpl::dispatchCreatePage):

  • src/FrameLoaderClientImpl.h:

Add NavigationAction parameter.

WebKit/efl:

  • WebCoreSupport/ChromeClientEfl.cpp:

(WebCore::ChromeClientEfl::createWindow):

  • WebCoreSupport/ChromeClientEfl.h:
  • WebCoreSupport/FrameLoaderClientEfl.cpp:

(WebCore::FrameLoaderClientEfl::dispatchCreatePage):

  • WebCoreSupport/FrameLoaderClientEfl.h:

Add NavigationAction parameter.

WebKit/gtk:

  • WebCoreSupport/ChromeClientGtk.cpp:

(WebKit::ChromeClient::createWindow):

  • WebCoreSupport/ChromeClientGtk.h:
  • WebCoreSupport/FrameLoaderClientGtk.cpp:

(WebKit::FrameLoaderClient::dispatchCreatePage):

  • WebCoreSupport/FrameLoaderClientGtk.h:

Add NavigationAction parameter.

WebKit/haiku:

  • WebCoreSupport/ChromeClientHaiku.cpp:

(WebCore::ChromeClientHaiku::createWindow):

  • WebCoreSupport/ChromeClientHaiku.h:
  • WebCoreSupport/FrameLoaderClientHaiku.cpp:

(WebCore::FrameLoaderClientHaiku::dispatchCreatePage):

  • WebCoreSupport/FrameLoaderClientHaiku.h:

Add NavigationAction parameter.

WebKit/mac:

  • WebCoreSupport/WebChromeClient.h:
  • WebCoreSupport/WebChromeClient.mm:

(WebChromeClient::createWindow):

  • WebCoreSupport/WebFrameLoaderClient.h:
  • WebCoreSupport/WebFrameLoaderClient.mm:

(WebFrameLoaderClient::dispatchCreatePage):
Add NavigationAction parameter.

WebKit/qt:

  • Api/qwebpage.cpp:

(openNewWindow):

  • WebCoreSupport/ChromeClientQt.cpp:

(WebCore::ChromeClientQt::createWindow):

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

(WebCore::FrameLoaderClientQt::dispatchCreatePage):

  • WebCoreSupport/FrameLoaderClientQt.h:

Add NavigationAction parameter.

WebKit/win:

  • WebCoreSupport/WebChromeClient.cpp:

(WebChromeClient::createWindow):

  • WebCoreSupport/WebFrameLoaderClient.cpp:

(WebFrameLoaderClient::dispatchCreatePage):

  • WebCoreSupport/WebFrameLoaderClient.h:

Add NavigationAction parameter.

WebKit/wince:

  • WebCoreSupport/ChromeClientWinCE.cpp:

(WebKit::ChromeClientWinCE::createWindow):

  • WebCoreSupport/ChromeClientWinCE.h:
  • WebCoreSupport/FrameLoaderClientWinCE.cpp:

(WebKit::FrameLoaderClientWinCE::dispatchCreatePage):

  • WebCoreSupport/FrameLoaderClientWinCE.h:

Add NavigationAction parameter.

WebKit/wx:

  • WebKitSupport/ChromeClientWx.cpp:

(WebCore::ChromeClientWx::createWindow):

  • WebKitSupport/ChromeClientWx.h:
  • WebKitSupport/FrameLoaderClientWx.cpp:

(WebCore::FrameLoaderClientWx::dispatchCreatePage):

  • WebKitSupport/FrameLoaderClientWx.h:

Add NavigationAction parameter.

WebKit2:

In addition to passing modifier flags from the now passed NavigationAction, also pass
the WindowFeatures to the UIProcess.

  • Platform/CoreIPC/HandleMessage.h:

(CoreIPC::callMemberFunction):

  • Shared/WebCoreArgumentCoders.h:
  • Shared/WebEvent.h:

(WebKit::WebEvent::modifiers):

  • UIProcess/API/C/WKPage.h:
  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::createNewPage):

  • UIProcess/WebPageProxy.h:
  • UIProcess/WebPageProxy.messages.in:
  • UIProcess/WebUIClient.cpp:

(WebKit::WebUIClient::createNewPage):

  • UIProcess/WebUIClient.h:
  • WebProcess/WebCoreSupport/WebChromeClient.cpp:

(WebKit::WebChromeClient::createWindow):

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

(WebKit::WebFrameLoaderClient::dispatchCreatePage):
(WebKit::modifiersForNavigationAction):
(WebKit::mouseButtonForNavigationAction):

  • WebProcess/WebCoreSupport/WebFrameLoaderClient.h:

WebKitTools:

  • MiniBrowser/mac/BrowserWindowController.m:

(createNewPage):

  • WebKitTestRunner/TestController.cpp:

(WTR::createOtherPage):
Update for new signature for the WKPageCreateNewPageCallback.

1:55 PM Changeset in webkit [70332] by aestes@apple.com
  • 3 edits
    1 add in trunk

WebKit shouldn't load a plug-in based on file extension if a MIME type
is specified.
https://bugs.webkit.org/show_bug.cgi?id=48046

Reviewed by Eric Carlson.

WebKit/mac:

If a MIME type is specified in an object or embed element, and that MIME
type isn't supported by an installed plug-in, WebKit shouldn't attempt
to find a plug-in based on the file extension of the url attribute.
Doing so can lead to cases where a plug-in is loaded that can't handle
resources of the MIME type specified by the author.

  • WebCoreSupport/WebFrameLoaderClient.mm:

(WebFrameLoaderClient::createPlugin): Only check for a pluginPackage by
extension if MIME type is the empty string.

LayoutTests:

  • plugins/invalid-mime-with-valid-extension-shows-missing-plugin-expected.txt: Added.
  • plugins/invalid-mime-with-valid-extension-shows-missing-plugin.html: Added.
  • plugins/resources/test.testnetscape: Added.
1:52 PM Changeset in webkit [70331] by eric@webkit.org
  • 2 edits in trunk/WebKitTools

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

Unreviewed. Just adding a test case.

The style-queue was not recognizing new patches. It turns
out I had fixed this in an earlier change, but just not
deployed to queues.webkit.org. As part of investigating why it
was broken, I wrote a test for my previous change which I'm now landing.

  • QueueStatusServer/model/queues_unittest.py:
1:50 PM UpdatingBugzilla edited by ddkilzer@webkit.org
Fix instructions on installing git-bzr. (diff)
1:29 PM Changeset in webkit [70330] by hyatt@apple.com
  • 9 edits in trunk/WebCore

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

Reviewed by Sam Weinig.

Update block direction line overflow computation to be writing-mode-aware.

  • rendering/InlineBox.h:

(WebCore::InlineBox::logicalBottom):

  • rendering/InlineFlowBox.cpp:

(WebCore::InlineFlowBox::computeBlockDirectionOverflow):

  • rendering/InlineFlowBox.h:

(WebCore::InlineFlowBox::setInlineDirectionOverflowPositions):
(WebCore::InlineFlowBox::setBlockDirectionOverflowPositions):

  • rendering/RenderBlockLineLayout.cpp:

(WebCore::RenderBlock::layoutInlineChildren):

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::blockDirectionOverflow):

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

(WebCore::RootInlineBox::addHighlightOverflow):

  • rendering/style/RenderStyle.h:

(WebCore::InheritedFlags::getTextShadowBlockDirectionExtent):
(WebCore::InheritedFlags::getBoxShadowBlockDirectionExtent):
(WebCore::InheritedFlags::getShadowBlockDirectionExtent):

1:21 PM Changeset in webkit [70329] by andersca@apple.com
  • 16 edits in trunk/WebKit2

Rename processDidExit to processDidCrash
https://bugs.webkit.org/show_bug.cgi?id=48146

Reviewed by Sam Weinig.

  • UIProcess/API/C/WKPage.h:
  • UIProcess/API/mac/PageClientImpl.h:
  • UIProcess/API/mac/PageClientImpl.mm:

(WebKit::PageClientImpl::processDidCrash):

  • UIProcess/API/mac/WKView.mm:

(-[WKView _processDidCrash]):

  • UIProcess/API/mac/WKViewInternal.h:
  • UIProcess/API/qt/qwkpage.cpp:

(QWKPage::QWKPage):

  • UIProcess/API/qt/qwkpage_p.h:

(QWKPagePrivate::processDidCrash):

  • UIProcess/PageClient.h:
  • UIProcess/WebLoaderClient.cpp:

(WebKit::WebLoaderClient::processDidBecomeUnresponsive):
(WebKit::WebLoaderClient::processDidBecomeResponsive):
(WebKit::WebLoaderClient::processDidCrash):

  • UIProcess/WebLoaderClient.h:
  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::processDidBecomeUnresponsive):
(WebKit::WebPageProxy::processDidBecomeResponsive):
(WebKit::WebPageProxy::processDidCrash):

  • UIProcess/WebPageProxy.h:
  • UIProcess/WebProcessProxy.cpp:

(WebKit::WebProcessProxy::didClose):

  • UIProcess/win/WebView.cpp:

(WebKit::WebView::processDidCrash):

  • UIProcess/win/WebView.h:
1:19 PM Changeset in webkit [70328] by eric@webkit.org
  • 7 edits in trunk/WebKitTools

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

Reviewed by Adam Barth.

EWS does not need to process obsolete patches
https://bugs.webkit.org/show_bug.cgi?id=48093

This was an easy change, but to test it I had to pipe
real Attachment objects into the queue testing system.
Doing so revealed a whole bunch of bugs in our unit tests,
which I fixed as part of this patch.

  • Scripts/webkitpy/tool/commands/earlywarningsystem.py:
    • This is the actual code change. This will not reduce the backlog in the EWS queues much, but it will make rejections much quicker for obsolete patches or closed bugs.
  • Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
    • Test my new code.
    • Used a real attachment object and got rid of MockPatch
    • Shared code between the mac-ews and cr-mac-ews tests.
  • Scripts/webkitpy/tool/commands/queues_unittest.py:
    • Can't use MockPatch anymore.
    • Removing MockPatch found more bugs here!
  • Scripts/webkitpy/tool/commands/queuestest.py:
  • Scripts/webkitpy/tool/commands/sheriffbot_unittest.py:
  • Scripts/webkitpy/tool/mocktool.py:
    • MockBugzilla should not be a "Mock" object. Right now tool.bugs() is allowed, but wrong. Making it not a Mock will make tool.bugs() correctly fail.
1:06 PM Changeset in webkit [70327] by abarth@webkit.org
  • 3 edits
    3 adds in trunk

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

Reviewed by Eric Seidel.

ASSERT while viewing Google C++ style guide
https://bugs.webkit.org/show_bug.cgi?id=48148

Make sure we don't hit an ASSERT when an XSLT outputs HTML.

  • fast/xsl/resources/to-html.xsl: Added.
  • fast/xsl/transform-to-html-expected.txt: Added.
  • fast/xsl/transform-to-html.xml: Added.

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

Reviewed by Eric Seidel.

ASSERT while viewing Google C++ style guide
https://bugs.webkit.org/show_bug.cgi?id=48148

This code used to stop the parser twice. Instead of reaching in an
trying to stop the parser manually, we now just let close() do the work
for us.

Test: fast/xsl/transform-to-html.xml

  • xml/XSLTProcessor.cpp: (WebCore::XSLTProcessor::createDocumentFromSource):
1:01 PM Changeset in webkit [70326] by mitz@apple.com
  • 2 edits in trunk/WebKit2

Corrected target dependencies.

Reviewed by Sam Weinig.

  • WebKit2.xcodeproj/project.pbxproj: Made WebKit2 depend on DerivedSources and removed

the explicit dependency of All on DerivedSources and WebKit2, since WebProcess depends on
them.

12:31 PM Changeset in webkit [70325] by Patrick Gansterer
  • 2 edits in trunk/WebCore

2010-10-22 Patrick Gansterer <Patrick Gansterer>

Reviewed by Adam Roben.

[WINCE] Implement GraphicsContext::(get|release)WindowsContext
https://bugs.webkit.org/show_bug.cgi?id=48136

  • platform/graphics/wince/GraphicsContextWinCE.cpp: (WebCore::GraphicsContext::getWindowsContext): (WebCore::GraphicsContext::releaseWindowsContext):
12:27 PM Changeset in webkit [70324] by Adam Roben
  • 2 edits in trunk/WebCore

Attempt to fix the Windows build

  • platform/network/win/CookieJarCFNetWin.cpp: Add a missing #include.
12:00 PM Changeset in webkit [70323] by krit@webkit.org
  • 3 edits in trunk/WebCore

2010-10-22 Cosmin Truta <ctruta@chromium.org>

Reviewed by Dirk Schulze.

getBoundingClientRect does not work with SVG <text>
https://bugs.webkit.org/show_bug.cgi?id=46775

Added back to SVGStyledTransformableElement overloads of the following
methods: nearestViewportElement, farthestViewportElement, getBBox.
This was necessary to appease the Visual C++ compiler, which warned on
inheritance via dominance.

  • svg/SVGStyledTransformableElement.cpp:
  • svg/SVGStyledTransformableElement.h: (SVGStyledTransformableElement::nearestViewportElement): (SVGStyledTransformableElement::farthestViewportElement): (SVGStyledTransformableElement::getBBox):
11:45 AM Changeset in webkit [70322] by Dimitri Glazkov
  • 2 edits in trunk/LayoutTests

2010-10-22 Dimitri Glazkov <Dimitri Glazkov>

Updated expectations for flaky/passing tests.

  • platform/chromium/test_expectations.txt: Tweaked.
11:44 AM Changeset in webkit [70321] by cmarrin@apple.com
  • 2 edits
    1 add in trunk/WebCore

2010-10-21 Chris Marrin <cmarrin@apple.com>

Reviewed by Adam Roben.

Content in <iframe> doesn't appear when going back to http://webkit.org/blog/386/3d-transforms/
https://bugs.webkit.org/show_bug.cgi?id=32447

Added documentDidBecomeActive() when document comes back from cache to cause compositing
layers in iframes to be reattached.

There is no layout test, but I added a manual test. This test is ready to be a layout test
but currently DRT disables the WebCore page cache, so the back/forward essentially do a
page load which does not exhibit the bug.

  • history/CachedFrame.cpp: (WebCore::CachedFrameBase::restore):
  • manual-tests/compositing/show-composited-iframe-on-back-button.html: Added.
11:40 AM Changeset in webkit [70320] by Adam Roben
  • 5 edits in trunk

Turn on ENABLE_3D_RENDERING on all Windows builds

Reviewed by Sam Weinig.

JavaScriptCore:

Remove the QuartzCorePresent.h mechanism

This header was used to detect whether QuartzCore headers were present
on the system. Everyone should have these headers now so we no longer
need to detect.

  • JavaScriptCore.vcproj/JavaScriptCore/build-generated-files.sh: Remove

code to generate QuartzCorePresent.h.

  • wtf/Platform.h: Stop including QuartzCorePresent.h on Windows and

collapse all USE_ACCELERATED_COMPOSITING settings into one #ifdef.

WebKitLibraries:

  • win/tools/vsprops/FeatureDefines.vsprops:
11:22 AM Changeset in webkit [70319] by Patrick Gansterer
  • 1 edit
    4 adds in trunk/WebCore

2010-10-22 Patrick Gansterer <Patrick Gansterer>

Reviewed by Adam Roben.

[WIN] Add Windows specific files for platform/network/win
https://bugs.webkit.org/show_bug.cgi?id=27376

  • platform/network/win/AuthenticationChallenge.h: Added. (WebCore::AuthenticationChallenge::AuthenticationChallenge):
  • platform/network/win/ResourceError.h: Added. (WebCore::ResourceError::ResourceError):
  • platform/network/win/ResourceRequest.h: Added. (WebCore::ResourceRequest::ResourceRequest): (WebCore::ResourceRequest::doUpdatePlatformRequest): (WebCore::ResourceRequest::doUpdateResourceRequest): (WebCore::ResourceRequest::doPlatformCopyData): (WebCore::ResourceRequest::doPlatformAdopt):
  • platform/network/win/ResourceResponse.h: Added. (WebCore::ResourceResponse::ResourceResponse): (WebCore::ResourceResponse::doPlatformCopyData): (WebCore::ResourceResponse::doPlatformAdopt):
10:54 AM Changeset in webkit [70318] by abarth@webkit.org
  • 3 edits
    3 adds in trunk

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

Unreviewed, rolling out r70290.
http://trac.webkit.org/changeset/70290
https://bugs.webkit.org/show_bug.cgi?id=48111

Undelete Android build files.

  • Android.mk: Added.

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

Unreviewed, rolling out r70290.
http://trac.webkit.org/changeset/70290
https://bugs.webkit.org/show_bug.cgi?id=48111

Undelete Android build files.

  • Android.mk: Added.

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

Unreviewed, rolling out r70290.
http://trac.webkit.org/changeset/70290
https://bugs.webkit.org/show_bug.cgi?id=48111

Undelete Android build files.

  • Android.mk: Added.
10:54 AM UpdatingBugzilla edited by ddkilzer@webkit.org
Added missing step to install git-bzr. (diff)
10:43 AM Changeset in webkit [70317] by krit@webkit.org
  • 8 edits
    2 adds in trunk

2010-10-22 Cosmin Truta <ctruta@chromium.org>

Reviewed by Nikolas Zimmermann.

getBoundingClientRect does not work with SVG <text>
https://bugs.webkit.org/show_bug.cgi?id=46775

Dispatched the calls from Element::getBoundingClientRect to getBBox
through SVGElement::boundingBox.
Recognized SVGTextElement in addition to SVGStyledLocatableElement
as a class that provides getBBox.
Fixed the result of zooming: adjusted the getBoundingClientRect rectangle
for absolute zoom, even for SVG elements.

Additional cleanup task:
Removed redundant overloads of SVGStyledTransformableElement
methods: nearestViewportElement, farthestViewportElement, getBBox.
These methods are already inherited from SVGStyledLocatableElement.

Test: css3/zoom-coords.xhtml

  • WebCore.xcodeproj/project.pbxproj: Set role of SVGLocatable.h to private.
  • dom/Element.cpp: (Element::getBoundingClientRect): Used SVGElement::boundingBox. Adjusted coordinates for absolute zoom, for all kinds of elements.
  • svg/SVGElement.cpp:
  • svg/SVGElement.h: (SVGElement::boundingBox): Added.
  • svg/SVGStyledTransformableElement.cpp:
  • svg/SVGStyledTransformableElement.h: (SVGStyledTransformableElement::nearestViewportElement): Removed. (SVGStyledTransformableElement::farthestViewportElement): Removed. (SVGStyledTransformableElement::getBBox): Removed.

2010-10-22 Cosmin Truta <ctruta@chromium.org>

Reviewed by Nikolas Zimmermann.

getBoundingClientRect does not work with SVG <text>
https://bugs.webkit.org/show_bug.cgi?id=46775

Added coordinate checks on various zoomed-in and zoomed-out
XHTML and SVG elements, using getBoundingClientRect.

  • css3/zoom-coords.xhtml: Added.
  • css3/zoom-coords-expected.txt: Added.
10:31 AM Changeset in webkit [70316] by Adam Roben
  • 2 edits in trunk/LayoutTests

Update Windows html5lib results after r70293

  • platform/win/html5lib/runner-expected.txt:
10:15 AM Changeset in webkit [70315] by commit-queue@webkit.org
  • 1 edit
    2 adds in trunk/LayoutTests

2010-10-22 Jedrzej Nowacki <jedrzej.nowacki@nokia.com>

Reviewed by Antonio Gomes.

Add new LayoutTest checking web history on document.location change.

The new test enforce the current behavior; If redirection is caused by
document.location change, immediately after a page load and without using
setTimeout, a web history item shouldn't be created.

History item and document.location change.
https://bugs.webkit.org/show_bug.cgi?id=48117

  • http/tests/navigation/document-location-script-expected.txt: Added.
  • http/tests/navigation/document-location-script.html: Added.
10:12 AM Changeset in webkit [70314] by Patrick Gansterer
  • 1 edit
    3 copies in trunk/WebCore

2010-10-22 Patrick Gansterer <Patrick Gansterer>

Reviewed by Adam Roben.

[WIN] Add stubs for SocketStream classes
https://bugs.webkit.org/show_bug.cgi?id=47983

  • platform/network/win/SocketStreamError.h: Copied from WebCore/platform/network/curl/SocketStreamError.h. (WebCore::SocketStreamError::SocketStreamError):
  • platform/network/win/SocketStreamHandle.h: Copied from WebCore/platform/network/curl/SocketStreamHandle.h. (WebCore::SocketStreamHandle::create):
  • platform/network/win/SocketStreamHandleWin.cpp: Copied from WebCore/platform/network/curl/SocketStreamHandleCurl.cpp.
10:06 AM QtWebKitRelease21 edited by Ademar Reis
(diff)
9:57 AM Changeset in webkit [70313] by Patrick Gansterer
  • 3 edits in trunk/WebKit/wince

2010-10-22 Patrick Gansterer <Patrick Gansterer>

Reviewed by Adam Roben.

[WINCE] Implement EditorClient::handleKeyboardEvent
https://bugs.webkit.org/show_bug.cgi?id=48118

Copy the implementation from the EFL port.

  • WebCoreSupport/EditorClientWinCE.cpp: (WebKit::EditorClientWinCE::interpretKeyEvent): (WebKit::EditorClientWinCE::handleEditingKeyboardEvent): (WebKit::EditorClientWinCE::handleKeyboardEvent):
  • WebCoreSupport/EditorClientWinCE.h:
9:55 AM Changeset in webkit [70312] by Patrick Gansterer
  • 2 edits in trunk/WebCore

2010-10-22 Patrick Gansterer <Patrick Gansterer>

Reviewed by Adam Roben.

Disable cache in ResourceHandleWin
https://bugs.webkit.org/show_bug.cgi?id=48128

The caching of windows does not work correctly, so disable it for now.

  • platform/network/win/ResourceHandleWin.cpp: (WebCore::ResourceHandle::start):
9:28 AM Changeset in webkit [70311] by pfeldman@chromium.org
  • 2 edits in branches/chromium/552

Merge 70231 - 2010-10-21 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Yury Semikhatsky.

Chromium: use dedicated event listener type in EventListenerWrapper.
https://bugs.webkit.org/show_bug.cgi?id=48059

This change introduces new EventListener::Type NativeEventListenerType.
This new type is intended to be used by any code that wants to protect
itself from unsafe casts to particular event listener implementations.

  • dom/EventListener.h:

2010-10-21 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Yury Semikhatsky.

Chromium: use dedicated event listener type in EventListenerWrapper.
https://bugs.webkit.org/show_bug.cgi?id=48059

  • src/EventListenerWrapper.cpp: (WebKit::EventListenerWrapper::EventListenerWrapper):

TBR=pfeldman@chromium.org
BUG=60062

9:11 AM Changeset in webkit [70310] by commit-queue@webkit.org
  • 2 edits
    1 add in trunk/WebCore

2010-10-22 Jia Pu <jpu@apple.com>

Reviewed by Dan Bernstein.

Regression (r69548): cancelled autocorrection suggestion is still applied.
https://bugs.webkit.org/show_bug.cgi?id=48081
<rdar://problem/8579765>

The test requires a 0.3 second delay using setTimeout(). So we put it in manual-tests.

  • editing/Editor.cpp: (WebCore::Editor::handleRejectedCorrection): Clear autocorrection info when user dismissed the panel.
  • manual-tests/autocorrection/autocorrection-cancelled-by-ESC.html: Added.
9:05 AM Changeset in webkit [70309] by tonyg@chromium.org
  • 12 edits
    5 copies
    6 deletes in branches/chromium/552

Merge 70282 - 2010-10-21 Tony Gentilcore <tonyg@chromium.org>

Reviewed by Adam Barth.

Ignore document.write() when it comes from a network task
https://bugs.webkit.org/show_bug.cgi?id=47560

write()s from deferred scripts are now ignored. This matches the latest
Firefox 4 beta behavior. The defer-write expectations are updated, and
the other tests are now all moot since deferred scrits can't write().

  • fast/dom/HTMLScriptElement/defer-double-defer-write-expected.txt: Removed.
  • fast/dom/HTMLScriptElement/defer-double-defer-write.html: Removed.
  • fast/dom/HTMLScriptElement/defer-double-write-expected.txt: Removed.
  • fast/dom/HTMLScriptElement/defer-double-write.html: Removed.
  • fast/dom/HTMLScriptElement/defer-write.html: Updated to match FF4.
  • fast/dom/HTMLScriptElement/remove-source-expected.txt: Added.
  • fast/dom/HTMLScriptElement/remove-source.html: Added. Verifies that writes are still ignored when the src is removed after the script is requested but before it is executed.
  • fast/dom/HTMLScriptElement/two-defer-writes-expected.txt: Removed.
  • fast/dom/HTMLScriptElement/two-defer-writes.html: Removed.
  • fast/dom/HTMLScriptElement/write-after-ignored-write-expected.txt: Added. Verifies that after a write from a network task is ignored, a write which is not from a network task still blows away the document.
  • fast/dom/HTMLScriptElement/write-after-ignored-write.html: Added.

2010-10-21 Tony Gentilcore <tonyg@chromium.org>

Reviewed by Adam Barth.

Ignore document.write() when it comes from a network task
https://bugs.webkit.org/show_bug.cgi?id=47560

This implements the update to the spec made by:
http://www.w3.org/Bugs/Public/show_bug.cgi?id=9767

It also matches the latest Firefox 4 beta. The notable change is that
document.write from a deferred script no longer works. This avoids
blowing the patch away.

  • dom/Document.cpp: (WebCore::Document::Document): (WebCore::Document::write):
  • dom/Document.h: (WebCore::DestructiveWriteCountIncrementer::DestructiveWriteCountIncrementer): (WebCore::Document::ignoreDestructiveWriteCountIncrementer):
  • dom/ScriptElement.cpp: (WebCore::ScriptElement::insertedIntoDocument): (WebCore::ScriptElementData::ScriptElementData): (WebCore::ScriptElementData::evaluateScript):
  • dom/ScriptElement.h:
  • html/parser/HTMLScriptRunner.cpp: (WebCore::HTMLScriptRunner::executePendingScriptAndDispatchEvent):

TBR=tonyg@chromium.org
BUG=57196

8:35 AM Changeset in webkit [70308] by commit-queue@webkit.org
  • 2 edits in trunk/WebKit/qt

2010-10-22 Yi Shen <yi.4.shen@nokia.com>

Reviewed by Andreas Kling.

[Qt] InspectorClientQt crashes when deleting a qwebpage which has an inspector
https://bugs.webkit.org/show_bug.cgi?id=48079

  • Api/qwebpage.cpp: (QWebPagePrivate::~QWebPagePrivate): (QWebPage::~QWebPage):
8:35 AM Changeset in webkit [70307] by commit-queue@webkit.org
  • 4 edits in trunk

2010-10-22 Andreas Kling <kling@webkit.org>

Reviewed by Kenneth Rohde Christiansen.

[Gtk] Fix canvas/philip/tests/2d.path.isPointInPath.nonfinite.html
https://bugs.webkit.org/show_bug.cgi?id=48133

  • platform/gtk/Skipped: Unskip the now passing test.

2010-10-22 Andreas Kling <kling@webkit.org>

Reviewed by Kenneth Rohde Christiansen.

[Gtk] Fix canvas/philip/tests/2d.path.isPointInPath.nonfinite.html
https://bugs.webkit.org/show_bug.cgi?id=48133

  • platform/graphics/cairo/PathCairo.cpp: (WebCore::Path::contains): Return false if any x or y are nonfinite.
8:13 AM QtWebKitRelease21 edited by Ademar Reis
(diff)
8:13 AM QtWebKitRelease21 edited by Ademar Reis
(diff)
8:11 AM QtWebKitRelease21 edited by Ademar Reis
(diff)
8:09 AM QtWebKitRelease21 edited by Ademar Reis
(diff)
8:04 AM Changeset in webkit [70306] by apavlov@chromium.org
  • 5 edits in trunk/WebCore

2010-10-22 Alexander Pavlov <apavlov@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: Implement property toggling in InspectorCSSAgent

This change implements enablement/disablement and setting of style properties.
Disabled properties are persisted in the (top-level) scope of InspectorStyleSheet.
https://bugs.webkit.org/show_bug.cgi?id=47339

Drive-by: fixes for the Web Inspector Protocol format.

  • inspector/InspectorCSSAgent.cpp: (WebCore::InspectorCSSAgent::getComputedStyleForNode2): (WebCore::InspectorCSSAgent::getInheritedStylesForNode2): (WebCore::InspectorCSSAgent::setPropertyText2): (WebCore::InspectorCSSAgent::toggleProperty2): (WebCore::InspectorCSSAgent::setRuleSelector2): (WebCore::InspectorCSSAgent::buildObjectForAttributeStyles):
  • inspector/InspectorCSSAgent.h:
  • inspector/InspectorStyleSheet.cpp: (WebCore::InspectorStyle::buildObjectForStyle): (WebCore::InspectorStyle::setPropertyText): (WebCore::InspectorStyle::toggleProperty): (WebCore::InspectorStyle::disabledIndexByOrdinal): (WebCore::InspectorStyle::styleText): (WebCore::InspectorStyle::disableProperty): (WebCore::InspectorStyle::enableProperty): (WebCore::InspectorStyle::populateAllProperties): (WebCore::InspectorStyle::populateObjectWithStyleProperties): (WebCore::InspectorStyle::shiftDisabledProperties): (WebCore::InspectorStyle::replacePropertyInStyleText): (WebCore::InspectorStyle::shorthandValue): (WebCore::InspectorStyle::shorthandPriority): (WebCore::InspectorStyle::longhandProperties): (WebCore::InspectorStyleSheet::setText): (WebCore::InspectorStyleSheet::setRuleSelector): (WebCore::InspectorStyleSheet::addRule): (WebCore::InspectorStyleSheet::ruleForId): (WebCore::InspectorStyleSheet::buildObjectForStyleSheet): (WebCore::InspectorStyleSheet::buildObjectForRule): (WebCore::InspectorStyleSheet::buildObjectForStyle): (WebCore::InspectorStyleSheet::setPropertyText): (WebCore::InspectorStyleSheet::toggleProperty): (WebCore::InspectorStyleSheet::styleForId): (WebCore::InspectorStyleSheet::inspectorStyleForId): (WebCore::InspectorStyleSheet::rememberInspectorStyle): (WebCore::InspectorStyleSheet::forgetInspectorStyle): (WebCore::InspectorStyleSheet::ruleOrStyleId): (WebCore::InspectorStyleSheet::ensureText): (WebCore::InspectorStyleSheet::setStyleText): (WebCore::InspectorStyleSheet::styleSheetTextWithChangedStyle): (WebCore::InspectorStyleSheet::ruleId): (WebCore::InspectorStyleSheet::revalidateStyle): (WebCore::InspectorStyleSheet::originalStyleSheetText): (WebCore::InspectorStyleSheet::resourceStyleSheetText): (WebCore::InspectorStyleSheetForInlineStyle::InspectorStyleSheetForInlineStyle): (WebCore::InspectorStyleSheetForInlineStyle::setStyleText): (WebCore::InspectorStyleSheetForInlineStyle::inspectorStyleForId):
  • inspector/InspectorStyleSheet.h: (WebCore::InspectorCSSId::createFromParts): (WebCore::InspectorCSSId::InspectorCSSId): (WebCore::InspectorCSSId::styleSheetId): (WebCore::InspectorCSSId::ordinal): (WebCore::InspectorCSSId::isEmpty): (WebCore::InspectorCSSId::asString): (WebCore::InspectorStyleProperty::InspectorStyleProperty): (WebCore::InspectorStyle::create): (WebCore::InspectorStyle::InspectorStyle): (WebCore::InspectorStyle::cssStyle): (WebCore::InspectorStyle::hasDisabledProperties): (WebCore::InspectorStyleSheet::styleId): (WebCore::InspectorStyleSheetForInlineStyle::styleForId): (WebCore::InspectorStyleSheetForInlineStyle::ruleSourceDataFor): (WebCore::InspectorStyleSheetForInlineStyle::rememberInspectorStyle): (WebCore::InspectorStyleSheetForInlineStyle::forgetInspectorStyle):
8:01 AM QtWebKitTableOfFeatures20 edited by Ademar Reis
Adding full list of bugs/commits (diff)
6:33 AM Changeset in webkit [70305] by pfeldman@chromium.org
  • 5 edits in trunk/WebCore

2010-10-22 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Yury Semikhatsky.

Web Inspector: update resources tree in storage panel upon network events.
https://bugs.webkit.org/show_bug.cgi?id=48121

  • inspector/Inspector.idl:
  • inspector/InspectorResourceAgent.cpp: (WebCore::buildObjectForDocumentLoader): (WebCore::buildObjectForFrameTree): (WebCore::InspectorResourceAgent::didCommitLoad): (WebCore::InspectorResourceAgent::frameDetachedFromParent):
  • inspector/front-end/ResourceManager.js: (WebInspector.ResourceManager): (WebInspector.ResourceManager.prototype._createResource): (WebInspector.ResourceManager.prototype.didReceiveResponse): (WebInspector.ResourceManager.prototype.didLoadResourceFromMemoryCache): (WebInspector.ResourceManager.prototype.didCommitLoadForFrame): (WebInspector.ResourceManager.prototype._addResourceToStorageFrame): (WebInspector.ResourceManager.prototype.frameDetachedFromParent): (WebInspector.ResourceManager.prototype._clearResources): (WebInspector.ResourceManager.prototype._processCachedResources): (WebInspector.ResourceManager.prototype._addFramesRecursively): (WebInspector.ResourceManager.getContents):
  • inspector/front-end/StoragePanel.js: (WebInspector.StoragePanel.prototype.addOrUpdateFrame): (WebInspector.StoragePanel.prototype.removeFrame): (WebInspector.StoragePanel.prototype.addResourceToFrame): (WebInspector.StoragePanel.prototype.removeResourcesFromFrame): (WebInspector.BaseStorageTreeElement.prototype.onattach): (WebInspector.BaseStorageTreeElement.prototype.onreveal): (WebInspector.BaseStorageTreeElement.prototype.set titleText): (WebInspector.FrameTreeElement): (WebInspector.FrameTreeElement.prototype.onselect): (WebInspector.FrameTreeElement.prototype.get displayName): (WebInspector.FrameTreeElement.prototype.set displayName):
6:31 AM Changeset in webkit [70304] by commit-queue@webkit.org
  • 12 edits
    4 adds in trunk

2010-10-22 François Sausset <François Sausset>

Reviewed by Kenneth Rohde Christiansen.

Fix wrong xHeight() value for Apple Symbols font.
https://bugs.webkit.org/show_bug.cgi?id=41535

  • mathml/xHeight.xhtml: Added.
  • platform/mac/mathml/presentation/fenced-expected.checksum:
  • platform/mac/mathml/presentation/fenced-expected.png:
  • platform/mac/mathml/presentation/fenced-expected.txt:
  • platform/mac/mathml/presentation/row-alignment-expected.checksum:
  • platform/mac/mathml/presentation/row-alignment-expected.png:
  • platform/mac/mathml/presentation/row-alignment-expected.txt:
  • platform/mac/mathml/presentation/tables-expected.checksum:
  • platform/mac/mathml/presentation/tables-expected.png:
  • platform/mac/mathml/presentation/tables-expected.txt:
  • platform/mac/mathml/xHeight-expected.checksum: Added.
  • platform/mac/mathml/xHeight-expected.png: Added.
  • platform/mac/mathml/xHeight-expected.txt: Added.

2010-10-22 François Sausset <François Sausset>

Reviewed by Kenneth Rohde Christiansen.

Fix wrong xHeight() value for Apple Symbols font.
https://bugs.webkit.org/show_bug.cgi?id=41535

Test: mathml/xHeight.xhtml

  • platform/graphics/mac/SimpleFontDataMac.mm: (WebCore::SimpleFontData::platformInit):
6:26 AM Changeset in webkit [70303] by Nikolas Zimmermann
  • 7 edits in trunk/WebCore

2010-10-22 Nikolas Zimmermann <nzimmermann@rim.com>

Reviewed by Dirk Schulze.

Further preparations to deploy the new SVGAnimatedProperty concept for the rest of the SVG datatypes
https://bugs.webkit.org/show_bug.cgi?id=48125

Model SVGListPropertyTearOff similar to SVGPropertyTearOff, allow it to be used for SVGXXXList datatypes, that are not animated. (SVGStringList)
Recognize all SVG primitive datatypes in SVGPropertyTraits.
Add a new - temporary - macro to support multiple animated properties that map to a single DOM attribute (kernelUnitLength attribute vs. kernelUnitLengthX/Y properties).
These macros will all be removed and expanded by their content, as soon as the transition to the new SVGAnimatedProperty concept is done.

Doesn't affect any tests yet, as the code is still unused.

  • svg/properties/SVGAnimatedProperty.h: (WebCore::SVGAnimatedProperty::lookupOrCreateWrapper): (WebCore::SVGAnimatedProperty::lookupWrapper):
  • svg/properties/SVGAnimatedPropertyMacros.h:
  • svg/properties/SVGAnimatedPropertySynchronizer.h:
  • svg/properties/SVGListPropertyTearOff.h: (WebCore::SVGListPropertyTearOff::create): (WebCore::SVGListPropertyTearOff::removeItemFromList): (WebCore::SVGListPropertyTearOff::detachListWrappers): (WebCore::SVGListPropertyTearOff::clear): (WebCore::SVGListPropertyTearOff::numberOfItems): (WebCore::SVGListPropertyTearOff::initialize): (WebCore::SVGListPropertyTearOff::getItem): (WebCore::SVGListPropertyTearOff::insertItemBefore): (WebCore::SVGListPropertyTearOff::replaceItem): (WebCore::SVGListPropertyTearOff::removeItem): (WebCore::SVGListPropertyTearOff::appendItem): (WebCore::SVGListPropertyTearOff::SVGListPropertyTearOff): (WebCore::SVGListPropertyTearOff::~SVGListPropertyTearOff): (WebCore::SVGListPropertyTearOff::commitChange):
  • svg/properties/SVGPropertyTearOff.h:
  • svg/properties/SVGPropertyTraits.h:
6:13 AM Changeset in webkit [70302] by commit-queue@webkit.org
  • 31 edits
    2 deletes in trunk

2010-10-22 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r70301.
http://trac.webkit.org/changeset/70301
https://bugs.webkit.org/show_bug.cgi?id=48126

"Lang attribute layout tests failing" (Requested by satish on
#webkit).

  • fast/speech/input-text-language-tag-expected.txt: Removed.
  • fast/speech/input-text-language-tag.html: Removed.
  • fast/speech/input-text-speechbutton.html:
  • fast/speech/speech-button-ignore-generated-events.html:
  • platform/chromium/test_expectations.txt:

2010-10-22 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r70301.
http://trac.webkit.org/changeset/70301
https://bugs.webkit.org/show_bug.cgi?id=48126

"Lang attribute layout tests failing" (Requested by satish on
#webkit).

  • dom/Element.cpp: (WebCore::Element::computeInheritedLanguage):
  • page/SpeechInput.cpp: (WebCore::SpeechInput::startRecognition):
  • page/SpeechInput.h:
  • page/SpeechInputClient.h:
  • platform/mock/SpeechInputClientMock.cpp: (WebCore::SpeechInputClientMock::startRecognition): (WebCore::SpeechInputClientMock::setRecognitionResult): (WebCore::SpeechInputClientMock::timerFired):
  • platform/mock/SpeechInputClientMock.h:
  • rendering/TextControlInnerElements.cpp: (WebCore::TextControlInnerElement::attachInnerElement): (WebCore::SearchFieldCancelButtonElement::detach): (WebCore::SpinButtonElement::defaultEventHandler): (WebCore::InputFieldSpeechButtonElement::defaultEventHandler): (WebCore::InputFieldSpeechButtonElement::detach):

2010-10-22 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r70301.
http://trac.webkit.org/changeset/70301
https://bugs.webkit.org/show_bug.cgi?id=48126

"Lang attribute layout tests failing" (Requested by satish on
#webkit).

  • public/WebSpeechInputController.h: (WebKit::WebSpeechInputController::startRecognition):
  • public/WebSpeechInputControllerMock.h:
  • src/SpeechInputClientImpl.cpp: (WebKit::SpeechInputClientImpl::startRecognition):
  • src/SpeechInputClientImpl.h:
  • src/WebSpeechInputControllerMockImpl.cpp: (WebKit::WebSpeechInputControllerMockImpl::setMockRecognitionResult): (WebKit::WebSpeechInputControllerMockImpl::startRecognition):
  • src/WebSpeechInputControllerMockImpl.h:
  • src/WebViewImpl.cpp: (WebKit::WebViewImpl::WebViewImpl):
  • src/WebViewImpl.h:

2010-10-22 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r70301.
http://trac.webkit.org/changeset/70301
https://bugs.webkit.org/show_bug.cgi?id=48126

"Lang attribute layout tests failing" (Requested by satish on
#webkit).

  • DumpRenderTree/LayoutTestController.cpp: (setMockSpeechInputResultCallback):
  • DumpRenderTree/LayoutTestController.h:
  • DumpRenderTree/chromium/LayoutTestController.cpp: (LayoutTestController::setMockSpeechInputResult):
  • DumpRenderTree/gtk/LayoutTestControllerGtk.cpp: (LayoutTestController::setMockSpeechInputResult):
  • DumpRenderTree/mac/LayoutTestControllerMac.mm: (LayoutTestController::setMockSpeechInputResult):
  • DumpRenderTree/qt/LayoutTestControllerQt.cpp: (LayoutTestController::setMockSpeechInputResult):
  • DumpRenderTree/qt/LayoutTestControllerQt.h:
  • DumpRenderTree/win/LayoutTestControllerWin.cpp: (LayoutTestController::setMockSpeechInputResult):
  • DumpRenderTree/wx/LayoutTestControllerWx.cpp: (LayoutTestController::setMockSpeechInputResult):
5:09 AM Changeset in webkit [70301] by jorlow@chromium.org
  • 31 edits
    2 adds in trunk

2010-10-22 Leandro Gracia Gil <leandrogracia@google.com>

Reviewed by Jeremy Orlow.

Added a layout test for the language tag in speech input. Updated
the speech button tests to include the new language parameter in the
mock result.
https://bugs.webkit.org/show_bug.cgi?id=47089

  • fast/speech/input-text-language-tag-expected.txt: Added.
  • fast/speech/input-text-language-tag.html: Added.
  • fast/speech/input-text-speechbutton.html: Added an empty language parameter.
  • fast/speech/speech-button-ignore-generated-events.html: Added an empty language parameter.
  • platform/chromium/test_expectations.txt: language tag test is expected to fail until the chromium-side patch has been applied.

2010-10-22 Leandro Gracia Gil <leandrogracia@google.com>

Reviewed by Jeremy Orlow.

Patch the current speech input implementation to use and validate the
nearest language tag. The language is now passed to the startRecognition
methods so that language-specific recognition could be used. Also added
a second parameter to setMockSpeechInputResult for the language used in
speech recognition.
https://bugs.webkit.org/show_bug.cgi?id=47089

This is the 2nd of a 4-sided patch in Chromium and WebKit. For more
details see http://codereview.chromium.org/3615005/show and
http://codereview.chromium.org/3595018/show.

Test: fast/speech/input-text-language-tag.html

  • dom/Element.cpp: (WebCore::Element::computeInheritedLanguage): includes a brief character validation for the BCP 47 language tag.
  • page/SpeechInput.cpp: (WebCore::SpeechInput::startRecognition):
  • page/SpeechInput.h:
  • page/SpeechInputClient.h:
  • platform/mock/SpeechInputClientMock.cpp: (WebCore::SpeechInputClientMock::startRecognition): (WebCore::SpeechInputClientMock::setRecognitionResult): results are now stored by language using a hash map. (WebCore::SpeechInputClientMock::timerFired):
  • platform/mock/SpeechInputClientMock.h:
  • rendering/TextControlInnerElements.cpp: (WebCore::TextControlInnerElement::attachInnerElement): (WebCore::SearchFieldCancelButtonElement::detach): (WebCore::SpinButtonElement::defaultEventHandler): (WebCore::InputFieldSpeechButtonElement::defaultEventHandler): (WebCore::InputFieldSpeechButtonElement::detach):

2010-10-22 Leandro Gracia Gil <leandrogracia@google.com>

Reviewed by Jeremy Orlow.

Patch the current speech input implementation to use and validate the
nearest language tag. The language is now passed to the startRecognition
methods so that language-specific recognition could be used. Also added
a second parameter to setMockSpeechInputResult for the language used in
speech recognition.
https://bugs.webkit.org/show_bug.cgi?id=47089

This is the 2nd of a 4-sided patch in Chromium and WebKit. For more
details see http://codereview.chromium.org/3615005/show and
http://codereview.chromium.org/3595018/show.

  • public/WebSpeechInputController.h: (WebKit::WebSpeechInputController::startRecognition):
  • public/WebSpeechInputControllerMock.h:
  • src/SpeechInputClientImpl.cpp: (WebKit::SpeechInputClientImpl::create): (WebKit::SpeechInputClientImpl::startRecognition):
  • src/SpeechInputClientImpl.h:
  • src/WebSpeechInputControllerMockImpl.cpp: (WebKit::WebSpeechInputControllerMockImpl::setMockRecognitionResult): (WebKit::WebSpeechInputControllerMockImpl::startRecognition):
  • src/WebSpeechInputControllerMockImpl.h:
  • src/WebViewImpl.cpp: (WebKit::WebViewImpl::WebViewImpl):
  • src/WebViewImpl.h:

2010-10-22 Leandro Gracia Gil <leandrogracia@google.com>

Reviewed by Jeremy Orlow.

Added a second parameter to setMockSpeechInputResult for
the language used in speech input.
https://bugs.webkit.org/show_bug.cgi?id=47089

  • DumpRenderTree/LayoutTestController.cpp: (setMockSpeechInputResultCallback):
  • DumpRenderTree/LayoutTestController.h:
  • DumpRenderTree/chromium/LayoutTestController.cpp: (LayoutTestController::setMockSpeechInputResult):
  • DumpRenderTree/gtk/LayoutTestControllerGtk.cpp: (LayoutTestController::setMockSpeechInputResult):
  • DumpRenderTree/mac/LayoutTestControllerMac.mm: (LayoutTestController::setMockSpeechInputResult):
  • DumpRenderTree/qt/LayoutTestControllerQt.h:
  • DumpRenderTree/qt/LayoutTestControllerQt.cpp: (LayoutTestController::setMockSpeechInputResult):
  • DumpRenderTree/win/LayoutTestControllerWin.cpp: (LayoutTestController::setMockSpeechInputResult):
  • DumpRenderTree/wx/LayoutTestControllerWx.cpp: (LayoutTestController::setMockSpeechInputResult):
4:40 AM Changeset in webkit [70300] by yurys@chromium.org
  • 29 edits
    1 copy
    7 moves
    3 deletes in trunk/WebCore

2010-10-21 Yury Semikhatsky <yurys@chromium.org>

Unreviewed, rolling out r70298.WebKit win compilation failure.
http://trac.webkit.org/changeset/70298
https://bugs.webkit.org/show_bug.cgi?id=48122

3:54 AM Changeset in webkit [70299] by zherczeg@webkit.org
  • 2 edits in trunk/JavaScriptCore

2010-10-22 Zoltan Herczeg <zherczeg@webkit.org>

Reviewed by Csaba Osztrogonác.

JSC interpreter regressions after r69940
https://bugs.webkit.org/show_bug.cgi?id=47839

Wrong "if": It should test whether the result exists,
and not the opposite. It is an interpreter bug, hence
the bots does not capture it.

  • interpreter/Interpreter.cpp: (JSC::Interpreter::resolveBase):
3:49 AM Changeset in webkit [70298] by yurys@chromium.org
  • 29 edits
    4 copies
    6 moves
    2 deletes in trunk/WebCore

2010-10-21 Yury Semikhatsky <yurys@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: decouple ScriptArguments from ScriptCallStack
https://bugs.webkit.org/show_bug.cgi?id=48058

ScriptCallFrame and ScriptCallStack are now the same for both JSC and V8.
The factory functions that allow to create ScriptCallStack from VM-specific
objects are defined in ScriptCallStackFactory.cpp.

ScriptArguments class is used for passing arguments from JS code to the native
part.

No new tests. This refactoring is covered with existing Console tests.

  • WebCore.gypi:
  • WebCore.xcodeproj/project.pbxproj:
  • bindings/js/ScriptCallFrame.cpp: Removed.
  • bindings/js/ScriptCallFrame.h: Removed.
  • bindings/js/ScriptCallStack.cpp: Removed.
  • bindings/js/ScriptCallStack.h: Removed.
  • bindings/js/ScriptCallStackFactory.cpp: Added. (WebCore::createScriptCallStack): (WebCore::createScriptArguments): (WebCore::ScriptCallStack::stackTrace):
  • bindings/js/ScriptCallStackFactory.h: Added.
  • bindings/js/ScriptState.h: (WebCore::ScriptStateProtectedPtr::get):
  • bindings/scripts/CodeGeneratorJS.pm:
  • bindings/scripts/CodeGeneratorV8.pm:
  • bindings/v8/ScriptCallFrame.cpp: Removed.
  • bindings/v8/ScriptCallFrame.h: Removed.
  • bindings/v8/ScriptCallStack.cpp: Removed.
  • bindings/v8/ScriptCallStack.h: Removed.
  • bindings/v8/ScriptCallStackFactory.cpp: Added. (WebCore::toScriptCallFrame): (WebCore::toScriptCallFramesVector): (WebCore::createScriptCallStack): (WebCore::createScriptArguments): (WebCore::ScriptCallStack::stackTrace):
  • bindings/v8/ScriptCallStackFactory.h: Added.
  • bindings/v8/ScriptController.cpp: (WebCore::ScriptController::setCaptureCallStackForUncaughtExceptions):
  • bindings/v8/ScriptState.h: (WebCore::ScriptStateProtectedPtr::get):
  • bindings/v8/V8ConsoleMessage.cpp: (WebCore::V8ConsoleMessage::handler): (WebCore::V8ConsoleMessage::dispatchNow):
  • bindings/v8/V8ConsoleMessage.h:
  • bindings/v8/custom/V8ConsoleCustom.cpp: (WebCore::V8Console::traceCallback): (WebCore::V8Console::assertCallback):
  • inspector/ConsoleMessage.cpp: (WebCore::ConsoleMessage::ConsoleMessage): (WebCore::ConsoleMessage::addToFrontend): (WebCore::ConsoleMessage::updateRepeatCountInConsole): (WebCore::ConsoleMessage::isEqual):
  • inspector/ConsoleMessage.h:
  • inspector/InspectorController.cpp: (WebCore::InspectorController::addMessageToConsole): (WebCore::InspectorController::startGroup):
  • inspector/InspectorController.h:
  • inspector/ScriptArguments.cpp: Added. (WebCore::ScriptArguments::ScriptArguments): (WebCore::ScriptArguments::~ScriptArguments): (WebCore::ScriptArguments::argumentAt): (WebCore::ScriptArguments::globalState): (WebCore::ScriptArguments::getFirstArgumentAsString): (WebCore::ScriptArguments::isEqual):
  • inspector/ScriptArguments.h: Added. (WebCore::ScriptArguments::argumentCount):
  • inspector/ScriptCallFrame.cpp: Added. (WebCore::ScriptCallFrame::ScriptCallFrame): (WebCore::ScriptCallFrame::~ScriptCallFrame): (WebCore::ScriptCallFrame::isEqual): (WebCore::ScriptCallFrame::buildInspectorObject):
  • inspector/ScriptCallFrame.h: Added. (WebCore::ScriptCallFrame::functionName): (WebCore::ScriptCallFrame::sourceURL): (WebCore::ScriptCallFrame::lineNumber):
  • inspector/ScriptCallStack.cpp: Added. (WebCore::ScriptCallStack::ScriptCallStack): (WebCore::ScriptCallStack::~ScriptCallStack): (WebCore::ScriptCallStack::at): (WebCore::ScriptCallStack::size): (WebCore::ScriptCallStack::isEqual): (WebCore::ScriptCallStack::buildInspectorObject):
  • inspector/ScriptCallStack.h: Added.
  • page/Console.cpp: (WebCore::Console::addMessage): (WebCore::Console::debug): (WebCore::Console::error): (WebCore::Console::info): (WebCore::Console::log): (WebCore::Console::dir): (WebCore::Console::dirxml): (WebCore::Console::trace): (WebCore::Console::assertCondition): (WebCore::Console::count): (WebCore::Console::markTimeline): (WebCore::Console::profile): (WebCore::Console::profileEnd): (WebCore::Console::timeEnd): (WebCore::Console::group): (WebCore::Console::groupCollapsed): (WebCore::Console::shouldCaptureFullStackTrace): (WebCore::Console::warn):
  • page/Console.h:
2:57 AM Changeset in webkit [70297] by benjamin.poulain@nokia.com
  • 4 edits in trunk

[Qt] All widgets are rendered incorrectly when rendered through a cache
https://bugs.webkit.org/show_bug.cgi?id=47767

Reviewed by Simon Hausmann.

WebCore:

When a widget is not available to the RenderTheme, default
value are used for the state.

  • platform/qt/RenderThemeQt.cpp:

(WebCore::initStyleOption):
(WebCore::RenderThemeQt::paintButton):
(WebCore::RenderThemeQt::paintTextField):
(WebCore::RenderThemeQt::paintMenuList):
(WebCore::RenderThemeQt::paintMenuListButton):
(WebCore::RenderThemeQt::paintProgressBar):
(WebCore::RenderThemeQt::paintSliderTrack):

WebKit/qt:

Add a new test for rendering with tiling.

  • tests/qgraphicswebview/tst_qgraphicswebview.cpp:

(tst_QGraphicsWebView::widgetsRenderingThroughCache):

1:37 AM Changeset in webkit [70296] by zherczeg@webkit.org
  • 11 edits in trunk/WebCore

Moving all bounding box related calculation to RenderSVGResourceFilterPrimitive
https://bugs.webkit.org/show_bug.cgi?id=47174

Reviewed by Dirk Schulze.

The primitive sub-region calculation was spread in many
files across in WebKit source code, and all of them are moved
to RenderSVGResourceFilterPrimitive, where they should be.
In this patch the calculation is a static method which will
be turned to a real member function in the near future.

  • platform/graphics/filters/FETile.cpp:
  • platform/graphics/filters/FETile.h:

(WebCore::FETile::filterEffectType):

  • platform/graphics/filters/Filter.h:
  • platform/graphics/filters/FilterEffect.cpp:
  • platform/graphics/filters/FilterEffect.h:
  • rendering/RenderSVGResourceFilter.cpp:

(WebCore::RenderSVGResourceFilter::applyResource):

  • rendering/RenderSVGResourceFilterPrimitive.cpp:

(WebCore::RenderSVGResourceFilterPrimitive::determineFilterPrimitiveSubregion):

  • rendering/RenderSVGResourceFilterPrimitive.h:

(WebCore::RenderSVGResourceFilterPrimitive::RenderSVGResourceFilterPrimitive):

  • svg/graphics/filters/SVGFilter.cpp:
  • svg/graphics/filters/SVGFilter.h:

(WebCore::SVGFilter::mapLocalRectToAbsoluteRect):
(WebCore::SVGFilter::targetBoundingBox):

1:21 AM Changeset in webkit [70295] by morrita@google.com
  • 3 edits
    1 add
    9 deletes in trunk/LayoutTests

2010-10-22 MORITA Hajime <morrita@google.com>

Reviewed by Kent Tamura.

https://bugs.webkit.org/show_bug.cgi?id=47645
Conversion to text test: editing/spelling/spellcheck-attribute.html

Replaced a pixel test with test-based test using
LayoutTestController.hasSpellingMarker().

  • editing/spelling/spellcheck-attribute-expected.txt: Added.
  • editing/spelling/spellcheck-attribute.html:
  • platform/chromium-win/editing/spelling/spellcheck-attribute-expected.checksum: Removed.
  • platform/chromium-win/editing/spelling/spellcheck-attribute-expected.png: Removed.
  • platform/chromium-win/editing/spelling/spellcheck-attribute-expected.txt: Removed.
  • platform/chromium/test_expectations.txt:
  • platform/gtk/editing/spelling/spellcheck-attribute-expected.txt: Removed.
  • platform/mac-leopard/editing/spelling/spellcheck-attribute-expected.checksum: Removed.
  • platform/mac-leopard/editing/spelling/spellcheck-attribute-expected.png: Removed.
  • platform/mac/editing/spelling/spellcheck-attribute-expected.checksum: Removed.
  • platform/mac/editing/spelling/spellcheck-attribute-expected.png: Removed.
  • platform/mac/editing/spelling/spellcheck-attribute-expected.txt: Removed.
Note: See TracTimeline for information about the timeline view.