Timeline



May 28, 2010:

11:59 PM Changeset in webkit [60395] by ggaren@apple.com
  • 2 edits in trunk/JavaScriptCore

Windows build fix: Updated exported symbols.

11:53 PM Changeset in webkit [60394] by ggaren@apple.com
  • 4 edits in trunk/JavaScriptCore

Qt build fix: disable a little more stuff when JIT_OPTIMIZE_NATIVE_CALL
is disabled.

  • runtime/Lookup.cpp:

(JSC::setUpStaticFunctionSlot):

  • runtime/Lookup.h:
  • wtf/Platform.h:
11:43 PM Changeset in webkit [60393] by ggaren@apple.com
  • 2 edits in trunk/JavaScriptCore

Windows build fix: Updated exported symbols.

11:33 PM Changeset in webkit [60392] by ggaren@apple.com
  • 132 edits in trunk

JavaScriptCore: Simplified the host calling convention.

Reviewed by Sam Weinig, Gavin Barraclough, Oliver Hunt.

22.5% speedup on 32-bit host function calls. 9.5% speedup on 64-bit host
function calls.

No change on SunSpider.

All JS calls (but not constructs, yet) now go through the normal JS
calling convention via the RegisterFile. As a result, the host calling
convention, which used to be this

JSValue (JSC_HOST_CALL *NativeFunction)(ExecState*, JSObject*, JSValue thisValue, const ArgList&)


is now this

JSValue (JSC_HOST_CALL *NativeFunction)(ExecState*)


Callee, 'this', and argument access all hapen relative to the ExecState*,
which is a pointer into the RegisterFile.

This patch comes in two parts.

PART ONE: Functional code changes.

  • wtf/Platform.h: Disabled optimized calls on platforms I didn't test.

We can re-enable once we verify that host calls on these platforms are
correct.

  • debugger/DebuggerCallFrame.cpp:

(JSC::DebuggerCallFrame::functionName):
(JSC::DebuggerCallFrame::calculatedFunctionName): Updated for change to
ExecState::callee().

(JSC::DebuggerCallFrame::thisObject): Updated for removal of ExecState::thisValue().

  • interpreter/CallFrame.cpp:
  • interpreter/CallFrame.h:

(JSC::ExecState::callee):
(JSC::ExecState::scopeChain):
(JSC::ExecState::init): Changed callee() to be JSObject* instead of
JSFunction* -- now, it might be some other callable host object.

(JSC::ExecState::hostThisRegister):
(JSC::ExecState::hostThisValue):
(JSC::ExecState::argumentCount):
(JSC::ExecState::argumentCountIncludingThis):
(JSC::ExecState::argument):
(JSC::ExecState::setArgumentCountIncludingThis):
(JSC::ExecState::setCallee): Added convenient accessors for arguments
from within a host function. Removed thisValue() because it was too
tempting to use incorrectly, and it only had one or two clients, anyway.

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::callEval): Updated for removal of ExecState::thisValue().

(JSC::Interpreter::throwException): Be sure to shrink the register file
before invoking the exception handler, to reduce the chances that the
handler will re-throw in the case of stack overflow. (Re-throwing is now
more likely than it used to be, since standardizing the calling convention
implicitly added stack overflow checks to some places where they used to be missing.)

(JSC::Interpreter::execute): Clarified the scope of DynamicGlobalObjectScope.
Updated for CallFrame::init API change.

(JSC::Interpreter::executeCall): Clarified scope of DynamicGlobalObjectScope.
Updated for CallFrame::init API change. Added support for calling a host
function.

(JSC::Interpreter::executeConstruct): Clarified scope of DynamicGlobalObjectScope.
Updated for CallFrame::init API change.

(JSC::Interpreter::prepareForRepeatCall): Updated for CallFrame::init API change.

(JSC::Interpreter::privateExecute): Updated for CallFrame::init API change.
Added some explicit JSValue(JSObject*) initialization, since relaxing
the JSFunction* restriction on callee has made register types more ambiguous.
Removed toThisObject() conversion, since all callees do it themselves now.
Updated host function call for new host function signature. Updated for
change to ExecState::argumentCount() API.

  • interpreter/Register.h:

(JSC::Register::):
(JSC::Register::operator=):
(JSC::Register::function): Changed callee() to be JSObject* instead of
JSFunction* -- now, it might be some other callable host object.

  • jit/JITOpcodes.cpp:

(JSC::JIT::privateCompileCTINativeCall):

  • jit/JITOpcodes32_64.cpp:

(JSC::JIT::privateCompileCTINativeCall): Deleted a bunch of code that
set up the arguments to host functions -- all but one of the arguments
are gone now. This is the actual optimization.

  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION): Updated for ExecState and Register API
changes noted above. Removed toThisObject() conversion, since all callees
do it themselves now.

  • runtime/ArgList.h:

(JSC::ArgList::ArgList): ArgList is getting close to unused. Added a
temporary shim for converting from ExecState* to ArgList where it's still
necessary.

  • runtime/Arguments.h:

(JSC::Arguments::getArgumentsData):
(JSC::Arguments::Arguments): Updated for ExecState and Register API
changes noted above.

  • runtime/CallData.cpp:

(JSC::call): Changed call always to call Interpreter::executeCall, even
for host functions. This ensures that the normal calling convention is
set up in the RegsiterFile when calling from C++ to host function.

  • runtime/CallData.h: Changed host function signature as described above.
  • runtime/ConstructData.cpp:

(JSC::construct): Moved JSFunction::construct code here so I could nix
JSFunction::call and JSFunction::call. We want a JSFunction-agnostic
way to call and construct, so that everything works naturally for non-
JSFunction objects.

  • runtime/JSFunction.cpp:

(JSC::callHostFunctionAsConstructor):

  • runtime/JSFunction.h: Updated for ExecState and Register API changes

noted above. Nixed JSFunction::call and JSFunction::construct, noted above.

  • runtime/JSGlobalObject.cpp:

(JSC::JSGlobalObject::init): Ditto.

PART TWO: Global search and replace.

In the areas below, I used global search-and-replace to change

(ExecState*, JSObject*, JSValue, const ArgList&) => (ExecState*)
args.size() => exec->argumentCount()
args.at(i) => exec->argument(i)

  • API/JSCallbackFunction.cpp:

(JSC::JSCallbackFunction::call):

  • API/JSCallbackFunction.h:
  • API/JSCallbackObject.h:
  • API/JSCallbackObjectFunctions.h:

(JSC::::call):

(functionPrint):
(functionDebug):
(functionGC):
(functionVersion):
(functionRun):
(functionLoad):
(functionCheckSyntax):
(functionSetSamplingFlags):
(functionClearSamplingFlags):
(functionReadline):
(functionQuit):

  • runtime/ArrayConstructor.cpp:

(JSC::callArrayConstructor):
(JSC::arrayConstructorIsArray):

  • runtime/ArrayPrototype.cpp:

(JSC::arrayProtoFuncToString):
(JSC::arrayProtoFuncToLocaleString):
(JSC::arrayProtoFuncJoin):
(JSC::arrayProtoFuncConcat):
(JSC::arrayProtoFuncPop):
(JSC::arrayProtoFuncPush):
(JSC::arrayProtoFuncReverse):
(JSC::arrayProtoFuncShift):
(JSC::arrayProtoFuncSlice):
(JSC::arrayProtoFuncSort):
(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::callBooleanConstructor):

  • runtime/BooleanPrototype.cpp:

(JSC::booleanProtoFuncToString):
(JSC::booleanProtoFuncValueOf):

  • runtime/DateConstructor.cpp:

(JSC::callDate):
(JSC::dateParse):
(JSC::dateNow):
(JSC::dateUTC):

  • runtime/DatePrototype.cpp:

(JSC::formatLocaleDate):
(JSC::fillStructuresUsingTimeArgs):
(JSC::fillStructuresUsingDateArgs):
(JSC::dateProtoFuncToString):
(JSC::dateProtoFuncToUTCString):
(JSC::dateProtoFuncToISOString):
(JSC::dateProtoFuncToDateString):
(JSC::dateProtoFuncToTimeString):
(JSC::dateProtoFuncToLocaleString):
(JSC::dateProtoFuncToLocaleDateString):
(JSC::dateProtoFuncToLocaleTimeString):
(JSC::dateProtoFuncGetTime):
(JSC::dateProtoFuncGetFullYear):
(JSC::dateProtoFuncGetUTCFullYear):
(JSC::dateProtoFuncToGMTString):
(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::dateProtoFuncSetMilliSeconds):
(JSC::dateProtoFuncSetUTCMilliseconds):
(JSC::dateProtoFuncSetSeconds):
(JSC::dateProtoFuncSetUTCSeconds):
(JSC::dateProtoFuncSetMinutes):
(JSC::dateProtoFuncSetUTCMinutes):
(JSC::dateProtoFuncSetHours):
(JSC::dateProtoFuncSetUTCHours):
(JSC::dateProtoFuncSetDate):
(JSC::dateProtoFuncSetUTCDate):
(JSC::dateProtoFuncSetMonth):
(JSC::dateProtoFuncSetUTCMonth):
(JSC::dateProtoFuncSetFullYear):
(JSC::dateProtoFuncSetUTCFullYear):
(JSC::dateProtoFuncSetYear):
(JSC::dateProtoFuncGetYear):
(JSC::dateProtoFuncToJSON):

  • runtime/ErrorConstructor.cpp:

(JSC::callErrorConstructor):

  • runtime/ErrorPrototype.cpp:

(JSC::errorProtoFuncToString):

  • runtime/FunctionConstructor.cpp:

(JSC::callFunctionConstructor):

  • runtime/FunctionPrototype.cpp:

(JSC::callFunctionPrototype):
(JSC::functionProtoFuncToString):
(JSC::functionProtoFuncApply):
(JSC::functionProtoFuncCall):

  • runtime/JSGlobalObjectFunctions.cpp:

(JSC::encode):
(JSC::decode):
(JSC::globalFuncEval):
(JSC::globalFuncParseInt):
(JSC::globalFuncParseFloat):
(JSC::globalFuncIsNaN):
(JSC::globalFuncIsFinite):
(JSC::globalFuncDecodeURI):
(JSC::globalFuncDecodeURIComponent):
(JSC::globalFuncEncodeURI):
(JSC::globalFuncEncodeURIComponent):
(JSC::globalFuncEscape):
(JSC::globalFuncUnescape):
(JSC::globalFuncJSCPrint):

  • runtime/JSGlobalObjectFunctions.h:
  • runtime/JSONObject.cpp:

(JSC::JSONProtoFuncParse):
(JSC::JSONProtoFuncStringify):

  • runtime/JSString.h:
  • runtime/MathObject.cpp:

(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::callNativeErrorConstructor):

  • runtime/NumberConstructor.cpp:

(JSC::callNumberConstructor):

  • runtime/NumberPrototype.cpp:

(JSC::numberProtoFuncToString):
(JSC::numberProtoFuncToLocaleString):
(JSC::numberProtoFuncValueOf):
(JSC::numberProtoFuncToFixed):
(JSC::numberProtoFuncToExponential):
(JSC::numberProtoFuncToPrecision):

  • runtime/ObjectConstructor.cpp:

(JSC::callObjectConstructor):
(JSC::objectConstructorGetPrototypeOf):
(JSC::objectConstructorGetOwnPropertyDescriptor):
(JSC::objectConstructorGetOwnPropertyNames):
(JSC::objectConstructorKeys):
(JSC::objectConstructorDefineProperty):
(JSC::objectConstructorDefineProperties):
(JSC::objectConstructorCreate):

  • runtime/ObjectPrototype.cpp:

(JSC::objectProtoFuncValueOf):
(JSC::objectProtoFuncHasOwnProperty):
(JSC::objectProtoFuncIsPrototypeOf):
(JSC::objectProtoFuncDefineGetter):
(JSC::objectProtoFuncDefineSetter):
(JSC::objectProtoFuncLookupGetter):
(JSC::objectProtoFuncLookupSetter):
(JSC::objectProtoFuncPropertyIsEnumerable):
(JSC::objectProtoFuncToLocaleString):
(JSC::objectProtoFuncToString):

  • runtime/ObjectPrototype.h:
  • runtime/Operations.h:

(JSC::jsString):

  • runtime/RegExpConstructor.cpp:

(JSC::callRegExpConstructor):

  • runtime/RegExpObject.cpp:

(JSC::RegExpObject::test):
(JSC::RegExpObject::exec):
(JSC::callRegExpObject):
(JSC::RegExpObject::match):

  • runtime/RegExpObject.h:
  • runtime/RegExpPrototype.cpp:

(JSC::regExpProtoFuncTest):
(JSC::regExpProtoFuncExec):
(JSC::regExpProtoFuncCompile):
(JSC::regExpProtoFuncToString):

  • runtime/StringConstructor.cpp:

(JSC::stringFromCharCodeSlowCase):
(JSC::stringFromCharCode):
(JSC::callStringConstructor):

  • runtime/StringPrototype.cpp:

(JSC::stringProtoFuncReplace):
(JSC::stringProtoFuncToString):
(JSC::stringProtoFuncCharAt):
(JSC::stringProtoFuncCharCodeAt):
(JSC::stringProtoFuncConcat):
(JSC::stringProtoFuncIndexOf):
(JSC::stringProtoFuncLastIndexOf):
(JSC::stringProtoFuncMatch):
(JSC::stringProtoFuncSearch):
(JSC::stringProtoFuncSlice):
(JSC::stringProtoFuncSplit):
(JSC::stringProtoFuncSubstr):
(JSC::stringProtoFuncSubstring):
(JSC::stringProtoFuncToLowerCase):
(JSC::stringProtoFuncToUpperCase):
(JSC::stringProtoFuncLocaleCompare):
(JSC::stringProtoFuncBig):
(JSC::stringProtoFuncSmall):
(JSC::stringProtoFuncBlink):
(JSC::stringProtoFuncBold):
(JSC::stringProtoFuncFixed):
(JSC::stringProtoFuncItalics):
(JSC::stringProtoFuncStrike):
(JSC::stringProtoFuncSub):
(JSC::stringProtoFuncSup):
(JSC::stringProtoFuncFontcolor):
(JSC::stringProtoFuncFontsize):
(JSC::stringProtoFuncAnchor):
(JSC::stringProtoFuncLink):
(JSC::stringProtoFuncTrim):
(JSC::stringProtoFuncTrimLeft):
(JSC::stringProtoFuncTrimRight):

JavaScriptGlue: Simplified the host calling convention.

Reviewed by Sam Weinig, Gavin Barraclough, Oliver Hunt.

PART ONE: Functional code changes.

[ None in JavaScriptGlue ]

PART TWO: Global search and replace.

In the areas below, I used global search-and-replace to change

(ExecState*, JSObject*, JSValue, const ArgList&) => (ExecState*)
args.size() => exec->argumentCount()
args.at(i) => exec->argument(i)

  • JSObject.cpp:

(nativeCallFunction):

  • UserObjectImp.cpp:

(UserObjectImp::callAsFunction):

  • UserObjectImp.h:

WebCore: Simplified the host calling convention.

Reviewed by Sam Weinig, Gavin Barraclough, Oliver Hunt.

PART ONE: Functional code changes.

[ None in WebCore ]

PART TWO: Global search and replace.

In the areas below, I used global search-and-replace to change

(ExecState*, JSObject*, JSValue, const ArgList&) => (ExecState*)
args.size() => exec->argumentCount()
args.at(i) => exec->argument(i)

  • bindings/js/JSArrayBufferViewCustom.cpp:

(WebCore::JSArrayBufferView::slice):

  • bindings/js/JSArrayBufferViewHelper.h:

(WebCore::setWebGLArrayHelper):

  • bindings/js/JSCanvasRenderingContext2DCustom.cpp:

(WebCore::JSCanvasRenderingContext2D::setFillColor):
(WebCore::JSCanvasRenderingContext2D::setStrokeColor):
(WebCore::JSCanvasRenderingContext2D::strokeRect):
(WebCore::JSCanvasRenderingContext2D::drawImage):
(WebCore::JSCanvasRenderingContext2D::drawImageFromRect):
(WebCore::JSCanvasRenderingContext2D::setShadow):
(WebCore::JSCanvasRenderingContext2D::createPattern):
(WebCore::JSCanvasRenderingContext2D::createImageData):
(WebCore::JSCanvasRenderingContext2D::putImageData):
(WebCore::JSCanvasRenderingContext2D::fillText):
(WebCore::JSCanvasRenderingContext2D::strokeText):

  • bindings/js/JSClipboardCustom.cpp:

(WebCore::JSClipboard::clearData):
(WebCore::JSClipboard::getData):
(WebCore::JSClipboard::setDragImage):

  • bindings/js/JSDOMApplicationCacheCustom.cpp:

(WebCore::JSDOMApplicationCache::hasItem):
(WebCore::JSDOMApplicationCache::add):
(WebCore::JSDOMApplicationCache::remove):

  • bindings/js/JSDOMFormDataCustom.cpp:

(WebCore::JSDOMFormData::append):

  • bindings/js/JSDOMWindowCustom.cpp:

(WebCore::JSDOMWindow::open):
(WebCore::JSDOMWindow::showModalDialog):
(WebCore::JSDOMWindow::postMessage):
(WebCore::JSDOMWindow::setTimeout):
(WebCore::JSDOMWindow::setInterval):
(WebCore::JSDOMWindow::addEventListener):
(WebCore::JSDOMWindow::removeEventListener):
(WebCore::JSDOMWindow::openDatabase):

  • bindings/js/JSDatabaseCustom.cpp:

(WebCore::JSDatabase::changeVersion):
(WebCore::createTransaction):
(WebCore::JSDatabase::transaction):
(WebCore::JSDatabase::readTransaction):

  • bindings/js/JSDatabaseSyncCustom.cpp:

(WebCore::JSDatabaseSync::changeVersion):
(WebCore::createTransaction):
(WebCore::JSDatabaseSync::transaction):
(WebCore::JSDatabaseSync::readTransaction):

  • bindings/js/JSDedicatedWorkerContextCustom.cpp:

(WebCore::JSDedicatedWorkerContext::postMessage):

  • bindings/js/JSDesktopNotificationsCustom.cpp:

(WebCore::JSNotificationCenter::requestPermission):

  • bindings/js/JSFloatArrayCustom.cpp:

(WebCore::JSFloatArray::set):

  • bindings/js/JSGeolocationCustom.cpp:

(WebCore::JSGeolocation::getCurrentPosition):
(WebCore::JSGeolocation::watchPosition):

  • bindings/js/JSHTMLAllCollectionCustom.cpp:

(WebCore::callHTMLAllCollection):
(WebCore::JSHTMLAllCollection::item):
(WebCore::JSHTMLAllCollection::namedItem):

  • bindings/js/JSHTMLCanvasElementCustom.cpp:

(WebCore::JSHTMLCanvasElement::getContext):

  • bindings/js/JSHTMLCollectionCustom.cpp:

(WebCore::callHTMLCollection):
(WebCore::JSHTMLCollection::item):
(WebCore::JSHTMLCollection::namedItem):

  • bindings/js/JSHTMLDocumentCustom.cpp:

(WebCore::JSHTMLDocument::open):
(WebCore::documentWrite):
(WebCore::JSHTMLDocument::write):
(WebCore::JSHTMLDocument::writeln):

  • bindings/js/JSHTMLInputElementCustom.cpp:

(WebCore::JSHTMLInputElement::setSelectionRange):

  • bindings/js/JSHTMLOptionsCollectionCustom.cpp:

(WebCore::JSHTMLOptionsCollection::add):
(WebCore::JSHTMLOptionsCollection::remove):

  • bindings/js/JSHTMLSelectElementCustom.cpp:

(WebCore::JSHTMLSelectElement::remove):

  • bindings/js/JSHistoryCustom.cpp:

(WebCore::JSHistory::pushState):
(WebCore::JSHistory::replaceState):

  • bindings/js/JSInjectedScriptHostCustom.cpp:

(WebCore::JSInjectedScriptHost::databaseForId):
(WebCore::JSInjectedScriptHost::currentCallFrame):
(WebCore::JSInjectedScriptHost::nodeForId):
(WebCore::JSInjectedScriptHost::pushNodePathToFrontend):
(WebCore::JSInjectedScriptHost::selectDatabase):
(WebCore::JSInjectedScriptHost::selectDOMStorage):
(WebCore::JSInjectedScriptHost::reportDidDispatchOnInjectedScript):

  • bindings/js/JSInspectorFrontendHostCustom.cpp:

(WebCore::JSInspectorFrontendHost::platform):
(WebCore::JSInspectorFrontendHost::port):
(WebCore::JSInspectorFrontendHost::showContextMenu):

  • bindings/js/JSInt16ArrayCustom.cpp:

(WebCore::JSInt16Array::set):

  • bindings/js/JSInt32ArrayCustom.cpp:

(WebCore::JSInt32Array::set):

  • bindings/js/JSInt8ArrayCustom.cpp:

(WebCore::JSInt8Array::set):

  • bindings/js/JSJavaScriptCallFrameCustom.cpp:

(WebCore::JSJavaScriptCallFrame::evaluate):
(WebCore::JSJavaScriptCallFrame::scopeType):

  • bindings/js/JSLocationCustom.cpp:

(WebCore::JSLocation::replace):
(WebCore::JSLocation::reload):
(WebCore::JSLocation::assign):
(WebCore::JSLocation::toString):

  • bindings/js/JSMessageEventCustom.cpp:

(WebCore::JSMessageEvent::initMessageEvent):

  • bindings/js/JSMessagePortCustom.cpp:

(WebCore::JSMessagePort::postMessage):

  • bindings/js/JSMessagePortCustom.h:

(WebCore::handlePostMessage):

  • bindings/js/JSNodeCustom.cpp:

(WebCore::JSNode::insertBefore):
(WebCore::JSNode::replaceChild):
(WebCore::JSNode::removeChild):
(WebCore::JSNode::appendChild):

  • bindings/js/JSNodeListCustom.cpp:

(WebCore::callNodeList):

  • bindings/js/JSPluginElementFunctions.cpp:

(WebCore::callPlugin):

  • bindings/js/JSSQLResultSetRowListCustom.cpp:

(WebCore::JSSQLResultSetRowList::item):

  • bindings/js/JSSQLTransactionCustom.cpp:

(WebCore::JSSQLTransaction::executeSql):

  • bindings/js/JSSQLTransactionSyncCustom.cpp:

(WebCore::JSSQLTransactionSync::executeSql):

  • bindings/js/JSSVGLengthCustom.cpp:

(WebCore::JSSVGLength::convertToSpecifiedUnits):

  • bindings/js/JSSVGMatrixCustom.cpp:

(WebCore::JSSVGMatrix::multiply):
(WebCore::JSSVGMatrix::inverse):
(WebCore::JSSVGMatrix::rotateFromVector):

  • bindings/js/JSSVGPODListCustom.h:

(WebCore::JSSVGPODListCustom::clear):
(WebCore::JSSVGPODListCustom::initialize):
(WebCore::JSSVGPODListCustom::getItem):
(WebCore::JSSVGPODListCustom::insertItemBefore):
(WebCore::JSSVGPODListCustom::replaceItem):
(WebCore::JSSVGPODListCustom::removeItem):
(WebCore::JSSVGPODListCustom::appendItem):

  • bindings/js/JSSVGPathSegListCustom.cpp:

(WebCore::JSSVGPathSegList::clear):
(WebCore::JSSVGPathSegList::initialize):
(WebCore::JSSVGPathSegList::getItem):
(WebCore::JSSVGPathSegList::insertItemBefore):
(WebCore::JSSVGPathSegList::replaceItem):
(WebCore::JSSVGPathSegList::removeItem):
(WebCore::JSSVGPathSegList::appendItem):

  • bindings/js/JSUint16ArrayCustom.cpp:

(WebCore::JSUint16Array::set):

  • bindings/js/JSUint32ArrayCustom.cpp:

(WebCore::JSUint32Array::set):

  • bindings/js/JSUint8ArrayCustom.cpp:

(WebCore::JSUint8Array::set):

  • bindings/js/JSWebGLRenderingContextCustom.cpp:

(WebCore::JSWebGLRenderingContext::bufferData):
(WebCore::JSWebGLRenderingContext::bufferSubData):
(WebCore::getObjectParameter):
(WebCore::JSWebGLRenderingContext::getBufferParameter):
(WebCore::JSWebGLRenderingContext::getFramebufferAttachmentParameter):
(WebCore::JSWebGLRenderingContext::getParameter):
(WebCore::JSWebGLRenderingContext::getProgramParameter):
(WebCore::JSWebGLRenderingContext::getRenderbufferParameter):
(WebCore::JSWebGLRenderingContext::getShaderParameter):
(WebCore::JSWebGLRenderingContext::getTexParameter):
(WebCore::JSWebGLRenderingContext::getUniform):
(WebCore::JSWebGLRenderingContext::getVertexAttrib):
(WebCore::JSWebGLRenderingContext::texImage2D):
(WebCore::JSWebGLRenderingContext::texSubImage2D):
(WebCore::dataFunctionf):
(WebCore::dataFunctioni):
(WebCore::dataFunctionMatrix):
(WebCore::JSWebGLRenderingContext::uniform1fv):
(WebCore::JSWebGLRenderingContext::uniform1iv):
(WebCore::JSWebGLRenderingContext::uniform2fv):
(WebCore::JSWebGLRenderingContext::uniform2iv):
(WebCore::JSWebGLRenderingContext::uniform3fv):
(WebCore::JSWebGLRenderingContext::uniform3iv):
(WebCore::JSWebGLRenderingContext::uniform4fv):
(WebCore::JSWebGLRenderingContext::uniform4iv):
(WebCore::JSWebGLRenderingContext::uniformMatrix2fv):
(WebCore::JSWebGLRenderingContext::uniformMatrix3fv):
(WebCore::JSWebGLRenderingContext::uniformMatrix4fv):
(WebCore::JSWebGLRenderingContext::vertexAttrib1fv):
(WebCore::JSWebGLRenderingContext::vertexAttrib2fv):
(WebCore::JSWebGLRenderingContext::vertexAttrib3fv):
(WebCore::JSWebGLRenderingContext::vertexAttrib4fv):

  • bindings/js/JSWebSocketCustom.cpp:

(WebCore::JSWebSocket::send):

  • bindings/js/JSWorkerContextCustom.cpp:

(WebCore::JSWorkerContext::importScripts):
(WebCore::JSWorkerContext::setTimeout):
(WebCore::JSWorkerContext::setInterval):
(WebCore::JSWorkerContext::openDatabase):
(WebCore::JSWorkerContext::openDatabaseSync):

  • bindings/js/JSWorkerCustom.cpp:

(WebCore::JSWorker::postMessage):

  • bindings/js/JSXMLHttpRequestCustom.cpp:

(WebCore::JSXMLHttpRequest::open):
(WebCore::JSXMLHttpRequest::send):

  • bindings/js/JSXSLTProcessorCustom.cpp:

(WebCore::JSXSLTProcessor::importStylesheet):
(WebCore::JSXSLTProcessor::transformToFragment):
(WebCore::JSXSLTProcessor::transformToDocument):
(WebCore::JSXSLTProcessor::setParameter):
(WebCore::JSXSLTProcessor::getParameter):
(WebCore::JSXSLTProcessor::removeParameter):

  • bindings/js/ScheduledAction.cpp:

(WebCore::ScheduledAction::create):
(WebCore::ScheduledAction::ScheduledAction):

  • bindings/js/ScheduledAction.h:
  • bindings/js/ScriptCallFrame.cpp:

(WebCore::ScriptCallFrame::ScriptCallFrame):

  • bindings/js/ScriptCallFrame.h:
  • bindings/js/ScriptCallStack.cpp:

(WebCore::ScriptCallStack::ScriptCallStack):
(WebCore::ScriptCallStack::initialize):

  • bindings/js/ScriptCallStack.h:
  • bindings/scripts/CodeGeneratorJS.pm:
  • bridge/c/c_instance.cpp:

(JSC::Bindings::CInstance::invokeMethod):
(JSC::Bindings::CInstance::invokeDefaultMethod):

  • bridge/c/c_instance.h:
  • bridge/jni/jsc/JavaInstanceJSC.cpp:

(JavaInstance::invokeMethod):

  • bridge/jni/jsc/JavaInstanceJSC.h:
  • bridge/jsc/BridgeJSC.h:

(JSC::Bindings::Instance::invokeDefaultMethod):

  • bridge/objc/objc_instance.h:
  • bridge/objc/objc_instance.mm:

(ObjcInstance::invokeMethod):
(ObjcInstance::invokeObjcMethod):
(ObjcInstance::invokeDefaultMethod):

  • bridge/objc/objc_runtime.mm:

(JSC::Bindings::callObjCFallbackObject):

  • bridge/runtime_method.cpp:

(JSC::callRuntimeMethod):

  • bridge/runtime_object.cpp:

(JSC::Bindings::callRuntimeObject):

WebKit/mac: Simplified the host calling convention.

Reviewed by Sam Weinig, Gavin Barraclough, Oliver Hunt.

PART ONE: Functional code changes.

[ None in WebKit ]

PART TWO: Global search and replace.

In the areas below, I used global search-and-replace to change

(ExecState*, JSObject*, JSValue, const ArgList&) => (ExecState*)
args.size() => exec->argumentCount()
args.at(i) => exec->argument(i)

  • Plugins/Hosted/ProxyInstance.h:
  • Plugins/Hosted/ProxyInstance.mm:

(WebKit::ProxyInstance::invoke):
(WebKit::ProxyInstance::invokeMethod):
(WebKit::ProxyInstance::invokeDefaultMethod):

LayoutTests: Simplified the host calling convention.

Reviewed by Sam Weinig, Gavin Barraclough, Oliver Hunt.

Changed these results to expect to fail to stringify their exception
objects in the case of stack overflow. (Standardizing the calling
convention has implicitly added stack overflow checks to some places
where they used to be missing.)

In a future patch, I plan to implement a more reliable way to stringify
exceptions without invoking a JS function. For now, though, it seems best
to match other test results, instead of silently overflowing the stack.

  • fast/js/global-recursion-on-full-stack-expected.txt:
  • fast/xmlhttprequest/xmlhttprequest-recursive-sync-event-expected.txt:
11:27 PM Changeset in webkit [60391] by eric@webkit.org
  • 7 edits in trunk

2010-05-28 Stephen White <senorblanco@chromium.org>

Reviewed by Darin Fisher.

[CHROMIUM] Chromium port should support image interpolation quality
https://bugs.webkit.org/show_bug.cgi?id=38686

  • platform/chromium/test_expectations.txt: Add failure expectations for resizing-based tests, so they can be rebaselined by the bots.

2010-05-28 Stephen White <senorblanco@chromium.org>

Reviewed by Darin Fisher.

Implement GraphicsContext::setImageInterpolation() for the Chromium
port. This is preparatory work for bug 38233. A number of
background-resize tests will need a rebaseline, since the images are
taken during the initial "low quality" phase (<800ms).

[CHROMIUM] Chromium port should support image interpolation quality
https://bugs.webkit.org/show_bug.cgi?id=38686

Covered by fast/backgrounds/size/backgroundSize15.html, and others.

  • platform/graphics/skia/GraphicsContextSkia.cpp: Implement WebCore::GraphicsContext::setImageInterpolationQuality.
  • platform/graphics/skia/ImageSkia.cpp: (WebCore::computeResamplingMode): Only enable high quality interpolation if it has been requested in the GraphicsContext. (WebCore::drawResampledBitmap): Enable cacheing of resampled images even if the size is not full (fix from Brett Wilson). (WebCore::paintSkBitmap): Pass in the PlatformContextSkia to computeResamplingMode, so it can query it for interpolation quality. (WebCore::Image::drawPattern): Ibid.
  • platform/graphics/skia/PlatformContextSkia.cpp: (PlatformContextSkia::State::State): (PlatformContextSkia::interpolationQuality): (PlatformContextSkia::setInterpolationQuality):
  • platform/graphics/skia/PlatformContextSkia.h: Add a member fn and accessors to retain the image interpolation quality in the platform context, and to save/restore it with the state.
11:16 PM Changeset in webkit [60390] by eric@webkit.org
  • 5 edits in trunk/JavaScriptCore

2010-05-28 Jedrzej Nowacki <jedrzej.nowacki@nokia.com>

Reviewed by Geoffrey Garen.

Fix the JSObjectSetPrototype function.

A cycle in a prototype chain can cause an application hang or
even crash.
A check for a prototype chain cycles was added to
the JSObjectSetPrototype.

JSObjectSetPrototype doesn't check for cycle in prototype chain.
https://bugs.webkit.org/show_bug.cgi?id=39360

  • API/JSObjectRef.cpp: (JSObjectSetPrototype):
  • API/tests/testapi.c: (assertTrue): (checkForCycleInPrototypeChain): (main):
  • runtime/JSObject.cpp: (JSC::JSObject::put):
  • runtime/JSObject.h: (JSC::JSObject::setPrototypeWithCycleCheck):
10:54 PM Changeset in webkit [60389] by eric@webkit.org
  • 4 edits in trunk

2010-05-28 Lucas De Marchi <lucas.demarchi@profusion.mobi>

Reviewed by Kenneth Rohde Christiansen.

[EFL] Remove compiler warnings about uninitialized variable.
https://bugs.webkit.org/show_bug.cgi?id=39871

No new tests, just cosmetic changes.

  • platform/efl/WidgetEfl.cpp: (WebCore::Widget::applyCursor):

2010-05-28 Lucas De Marchi <lucas.demarchi@profusion.mobi>

Reviewed by Kenneth Rohde Christiansen.

[EF] Remove compiler warnings and add test for switching page
encoding.
https://bugs.webkit.org/show_bug.cgi?id=39871

  • efl/EWebLauncher/main.c: (print_history): (on_key_down): (main):
10:30 PM Changeset in webkit [60388] by Csaba Osztrogonác
  • 2 edits in trunk/LayoutTests

[Qt] Skip new test introduced in r60386, because of
missing layoutTestController.evaluateScriptInIsolatedWorld()

  • platform/qt/Skipped: storage/transaction-success-callback-isolated-world.html skipped.
9:02 PM BuildingQtOnLinux edited by morrita@google.com
(diff)
8:45 PM Changeset in webkit [60387] by eric@webkit.org
  • 17 edits
    6 copies
    14 adds in trunk/LayoutTests

2010-05-28 Eric Uhrhane <ericu@chromium.org>

Reviewed by Dmitry Titov.

Refactor DB layout tests so that they work in Web Workers as well as Pages.
This is a big set of ports, but there are still more to come.
In general, this is all just trivial changes. For each test file, I pull out the meat into a .js file [with no functional changes]. Then I include that from both the DOM test and a new worker test; in both cases, the .html files are trivial wrappers. All boilerplate code is pulled out into the resource files.

In a couple of these tests, there were try/catch wrappers that suppressed errors. I don't see why you'd want to do that in a test; let's let those errors cause test failures, then fix them. I took out the wrappers and saw no difference in behavior.

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

  • fast/workers/storage/multiple-databases-garbage-collection-expected.txt: Added.
  • fast/workers/storage/multiple-databases-garbage-collection.html: Added.
  • fast/workers/storage/multiple-transactions-expected.txt: Added.
  • fast/workers/storage/multiple-transactions.html: Added.
  • fast/workers/storage/multiple-transactions-on-different-handles-expected.txt: Added.
  • fast/workers/storage/multiple-transactions-on-different-handles.html: Added.
  • fast/workers/storage/change-version-handle-reuse-worker.html: Pulled out even more boilerplate.
  • fast/workers/storage/execute-sql-args-worker.html: Pulled out even more boilerplate.
  • fast/workers/storage/resources/database-worker-controller: Here's where the boilerplate went.
  • fast/workers/storage/resources/database-worker.js:
  • storage/multiple-databases-garbage-collection.html:
  • storage/multiple-databases-garbage-collection.js: Added.
  • storage/multiple-transactions-on-different-handles.html:
  • storage/multiple-transactions-on-different-handles.js: Added.
  • storage/multiple-transactions.html:
  • storage/multiple-transactions.js: Added.
  • storage/hash-change-with-xhr-expected.txt: Trivial whitespace change.
  • storage/hash-change-with-xhr.html:
  • storage/hash-change-with-xhr.js: Added.
  • storage/open-database-while-transaction-in-progress.html:
  • storage/open-database-while-transaction-in-progress.js: Added.
  • storage/read-and-write-transactions-dont-run-together.html:
  • storage/read-and-write-transactions-dont-run-together.js: Added.
  • storage/test-authorizer.html:
  • storage/test-authorizer.js: Added. I made a small common include for all the non-worker tests to remove a little boilerplate.
  • storage/resources/database-common.js: Added. These two tests had already been ported to workers; I updated them to use the common include file.
  • storage/change-version-handle-reuse.html:
  • storage/execute-sql-args.html:
  • fast/workers/storage/open-database-while-transaction-in-progress-expected.txt: Added.
  • fast/workers/storage/open-database-while-transaction-in-progress.html: Added.
  • fast/workers/storage/read-and-write-transactions-dont-run-together-expected.txt: Added.
  • fast/workers/storage/read-and-write-transactions-dont-run-together.html: Added.
  • fast/workers/storage/test-authorizer-expected.txt: Added.
  • fast/workers/storage/test-authorizer.html: Added.
8:33 PM Changeset in webkit [60386] by eric@webkit.org
  • 1 edit
    2 adds in trunk/LayoutTests

2010-05-28 Eric Uhrhane <ericu@chromium.org>

Reviewed by Dmitry Titov.

We don't test the async DB success callback in an isolated world.
https://bugs.webkit.org/show_bug.cgi?id=39849

This pretty much a copy of transaction-error-callback-isolated-world.html.

  • storage/transaction-success-callback-isolated-world-expected.txt: Added.
  • storage/transaction-success-callback-isolated-world.html: Added.
8:21 PM Changeset in webkit [60385] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-28 Vangelis Kokkevis <vangelis@chromium.org>

Reviewed by Dimitri Glazkov.

Prevent chromium composited layers from rendering on top of the scrollbars.
https://bugs.webkit.org/show_bug.cgi?id=39851

  • platform/graphics/chromium/LayerRendererChromium.cpp: (WebCore::LayerRendererChromium::drawLayers):
8:06 PM Changeset in webkit [60384] by eric@webkit.org
  • 4 edits in trunk/WebKitTools

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

Reviewed by David Levin.

webkit-patch should support CHANGE_LOG_EDIT_APPLICATION
https://bugs.webkit.org/show_bug.cgi?id=39546

One sublty is that we want to wait for the user to finish editing the
ChangeLog before moving on to the next step. That means we want to pass
-W to open. However, if the user is using Xcode to edit the ChangeLog,
we don't want them to have to exit the Xcode application. For this reason,
we create a new instance of the application with -n.

Overall, xed seems like a better solution, so we recommend that too.

  • Scripts/webkitpy/common/system/user.py:
  • Scripts/webkitpy/tool/mocktool.py:
  • Scripts/webkitpy/tool/steps/editchangelog.py:
7:54 PM Changeset in webkit [60383] by eric@webkit.org
  • 2 edits in trunk/JavaScriptCore

2010-05-28 Chao-ying Fu <fu@mips.com>

Reviewed by Eric Seidel.

Fix MIPS JIT DoubleGreaterThanOrEqual Operands
https://bugs.webkit.org/show_bug.cgi?id=39504

Swapped two operands of left and right for DoubleGreaterThanOrEqual.
This patch fixed two layout tests as follows.
fast/js/comparison-operators-greater.html
fast/js/comparison-operators-less.html

  • assembler/MacroAssemblerMIPS.h: (JSC::MacroAssemblerMIPS::branchDouble):
5:40 PM Changeset in webkit [60382] by sullivan@apple.com
  • 2 edits in trunk/WebKit2

Add a using declaration for AdoptWK to match the one just added for WKRetainPtr.

Rubber-stamped by Dan Bernstein.

  • UIProcess/API/cpp/WKRetainPtr.h:
5:24 PM UsingGitWithWebKit edited by ojan@chromium.org
(diff)
5:14 PM Changeset in webkit [60381] by dpranke@chromium.org
  • 6 edits in trunk/WebKitTools

2010-05-21 Dirk Pranke <dpranke@chromium.org>

Reviewed by Ojan Vafai.

new-run-webkit-tests: fix handling of Ctrl-C to exit even if some
threads are wedged. Also, the script will print the results of the
tests completed when the interrupt occurs.

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

  • Scripts/webkitpy/layout_tests/layout_package/dump_render_tree_thread.py:
  • Scripts/webkitpy/layout_tests/layout_package/printing.py:
  • Scripts/webkitpy/layout_tests/layout_package/printing_unittest.py:
  • Scripts/webkitpy/layout_tests/run_webkit_tests.py:
4:52 PM Changeset in webkit [60380] by Darin Adler
  • 6 edits in trunk/WebKitTools

Ignore more Python messiness.

  • Scripts/webkitpy/layout_tests/data/platform/test: Added property svn:ignore.
  • Scripts/webkitpy/layout_tests/layout_package: Added property svn:ignore.
  • Scripts/webkitpy/layout_tests/test_types: Added property svn:ignore.
  • Scripts/webkitpy/test: Added property svn:ignore.
  • Scripts/webkitpy/thirdparty/simplejson: Added property svn:ignore.
4:02 PM Changeset in webkit [60379] by weinig@apple.com
  • 2 edits in trunk/WebKit2

Add a using declaration for WKRetainPtr matching what we do for our
other smart pointers and fix the destructor.

Reviewed by Anders Carlsson.

  • UIProcess/API/cpp/WKRetainPtr.h:

(WebKit::WKRetainPtr::~WKRetainPtr):

3:51 PM Changeset in webkit [60378] by barraclough@apple.com
  • 4 edits in trunk/JavaScriptCore

Move jit compilation from linking thunks into cti_vm_lazyLink methods.

Reviewed by Geoff Garen.

  • jit/JITOpcodes.cpp:

(JSC::JIT::privateCompileCTIMachineTrampolines):

  • jit/JITOpcodes32_64.cpp:

(JSC::JIT::privateCompileCTIMachineTrampolines):

  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION):

3:42 PM Changeset in webkit [60377] by aa@chromium.org
  • 5 edits in trunk

2010-05-28 Aaron Boodman <aa@chromium.org>

Reviewed by Darin Fisher.

Added isXHTMLDocument() to WebCore::Document.

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

  • dom/Document.h: Add isXHTMLDocument(). (WebCore::Document::isXHTMLDocument): Ditto.

2010-05-28 Aaron Boodman <aa@chromium.org>

Reviewed by Darin Fisher.

Add isXHTMLDocument() to WebDocument.

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

  • public/WebDocument.h: Add isXHTMLDocument().
  • src/WebDocument.cpp: ditto. (WebKit::WebDocument::isXHTMLDocument): dittorama.
2:18 PM Changeset in webkit [60376] by barraclough@apple.com
  • 9 edits in trunk/JavaScriptCore

Bug 39898 - Move arity check into callee.

Reviewed by Sam Weinig.

We can reduce the size of the virtual call trampolines by moving the arity check
into the callee functions. As a following step we will be able to remove the
check for native function / codeblocks by performing translation in a lazy stub.

  • interpreter/CallFrame.h:

(JSC::ExecState::init):
(JSC::ExecState::setReturnPC):

  • jit/JIT.cpp:

(JSC::JIT::privateCompile):
(JSC::JIT::linkCall):
(JSC::JIT::linkConstruct):

  • jit/JIT.h:

(JSC::JIT::compile):

  • jit/JITOpcodes.cpp:

(JSC::JIT::privateCompileCTIMachineTrampolines):

  • jit/JITOpcodes32_64.cpp:

(JSC::JIT::privateCompileCTIMachineTrampolines):

  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION):

  • runtime/Executable.cpp:

(JSC::FunctionExecutable::generateJITCodeForCall):
(JSC::FunctionExecutable::generateJITCodeForConstruct):
(JSC::FunctionExecutable::reparseExceptionInfo):

  • runtime/Executable.h:

(JSC::NativeExecutable::NativeExecutable):
(JSC::FunctionExecutable::generatedJITCodeForCallWithArityCheck):
(JSC::FunctionExecutable::generatedJITCodeForConstructWithArityCheck):

2:15 PM Changeset in webkit [60375] by pkasting@chromium.org
  • 7 edits
    4 moves in trunk/WebCore

https://bugs.webkit.org/show_bug.cgi?id=39857
Make GIFs loop the correct number of times. Previously, everyone looped
one time too few for non-infinitely-looping GIFs.

Reviewed by Darin Adler.

Modified a Qt manual test to be correct and moved it to the general
manual test directory.

  • manual-tests/animated-gif-looping.html: Copied from WebCore/manual-tests/qt/qt-gif-test.html.
  • manual-tests/qt/qt-10loop-anim.gif: Removed.
  • manual-tests/qt/qt-anim.gif: Removed.
  • manual-tests/qt/qt-gif-test.html: Removed.
  • manual-tests/qt/qt-noanim.gif: Removed.
  • manual-tests/resources/animated-10x.gif: Copied from WebCore/manual-tests/qt/qt-10loop-anim.gif and modified.
  • manual-tests/resources/animated-infinite.gif: Copied from WebCore/manual-tests/qt/qt-anim.gif.
  • manual-tests/resources/non-animated.gif: Copied from WebCore/manual-tests/qt/qt-noanim.gif.
  • platform/graphics/BitmapImage.cpp:

(WebCore::BitmapImage::internalAdvanceAnimation): For a loop count of n, show a total of n + 1 animation cycles.

  • platform/graphics/ImageSource.h:
  • platform/graphics/cg/ImageSourceCG.cpp:

(WebCore::ImageSource::repetitionCount):

  • platform/graphics/qt/ImageDecoderQt.cpp:

(WebCore::ImageDecoderQt::repetitionCount): Remove translation code now that WebCore matches Qt's internal handling of the loop count. Qt itself may still have a bug here.

  • platform/image-decoders/gif/GIFImageDecoder.cpp:

(WebCore::GIFImageDecoder::repetitionCount):

  • platform/image-decoders/gif/GIFImageReader.cpp:

(GIFImageReader::read): Translate loop count 0 to "loop infinitely" (by restoring one piece of the Mozilla code we'd removed).

1:07 PM Changeset in webkit [60374] by benm@google.com
  • 2 edits in trunk/WebCore

openFile(...) in FIleSystemPOSIX does not call fileSystemRepresentation
https://bugs.webkit.org/show_bug.cgi?id=39882

Reviewed by Darin Adler.

No new tests. Existing tests in fast/files should suffice.

  • platform/posix/FileSystemPOSIX.cpp:

(WebCore::openFile): pass the path parameter through fileSystemRepresentation before using it.

12:17 PM Changeset in webkit [60373] by Chris Fleizach
  • 2 edits in trunk/WebKitTools

Adding myself as a reviewer.

Reviewed by Beth Dakin.

  • Scripts/webkitpy/common/config/committers.py:
12:11 PM WebKit Team edited by Chris Fleizach
(diff)
12:10 PM WebKit Team edited by Chris Fleizach
(diff)
11:45 AM Changeset in webkit [60372] by Chris Fleizach
  • 2 edits in trunk/WebKitTools

Build fix. No review.

AX: need to catch NSAccessibilityExceptions in DRT
https://bugs.webkit.org/show_bug.cgi?id=39881

It looks like Tiger doesn't like seeing a NSMakeRange inside a @try.

  • DumpRenderTree/mac/AccessibilityUIElementMac.mm:

(AccessibilityUIElement::rowIndexRange):
(AccessibilityUIElement::columnIndexRange):
(AccessibilityUIElement::selectedTextRange):

11:43 AM Changeset in webkit [60371] by chang.shu@nokia.com
  • 2 edits in trunk/LayoutTests

2010-05-28 Chang Shu <Chang.Shu@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Enable Philip's canvas tests on Qt and skip
the failed ones.

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

  • platform/qt/Skipped:
11:21 AM Changeset in webkit [60370] by abarth@webkit.org
  • 6 edits
    1 add in trunk

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

Reviewed by Eric Seidel.

Named entities in attributes aren't parsed correctly by HTML5 parser
https://bugs.webkit.org/show_bug.cgi?id=39873

I misplaced this if statement when writing this code originally. Now
that we have test coverage for this paragraph in the spec, we can see
and fix the bug.

  • html/HTML5Lexer.cpp: (WebCore::HTML5Lexer::consumeEntity):

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

Reviewed by Eric Seidel.

Named entities in attributes aren't parsed correctly by HTML5 parser
https://bugs.webkit.org/show_bug.cgi?id=39873

Add a test suite for parsing entities in attributes and update expected results.

  • html5lib/resources/entities02.dat: Added.
  • html5lib/runner-expected-html5.txt:
  • html5lib/runner-expected.txt:
  • html5lib/runner.html:
11:17 AM Changeset in webkit [60369] by abarth@webkit.org
  • 6 edits in trunk

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

Reviewed by Eric Seidel.

Handle edge cases in HTML5 entity parsing
https://bugs.webkit.org/show_bug.cgi?id=39823

The HTML5 specification tells us to handle HTML entities in a somewhat
complicated way. This patch attempts to correctly handle numeric
entities. Some of this code is duplicated from HTMLTokenizer.

  • html/HTML5Lexer.cpp: (WebCore::HTMLNames::): (WebCore::HTMLNames::adjustEntity): (WebCore::HTMLNames::legalEntityFor): (WebCore::HTML5Lexer::consumeEntity): (WebCore::HTML5Lexer::processEntity): (WebCore::HTML5Lexer::nextToken): (WebCore::HTML5Lexer::emitCodePoint):
  • html/HTML5Lexer.h:

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

Reviewed by Eric Seidel.

Handle edge cases in HTML5 entity parsing
https://bugs.webkit.org/show_bug.cgi?id=39823

Tests a bunch of the edge cases of entity handling in the HTML5
specification.

  • html5lib/resources/entities01.dat:
  • html5lib/runner-expected.txt:
11:11 AM Changeset in webkit [60368] by Chris Fleizach
  • 2 edits in trunk/WebCore

AX: stop prepping value conversion in accessibilityAttributeValueForParameter
https://bugs.webkit.org/show_bug.cgi?id=39880

Reviewed by Beth Dakin.

Cleaning up a FIXME so that all values are not converted before they're needed in accessibilityAttributeValue:forParameter:

  • accessibility/mac/AccessibilityObjectWrapper.mm:

(visiblePositionForTextMarker):
(-[AccessibilityObjectWrapper visiblePositionRangeForTextMarkerRange:]):
(-[AccessibilityObjectWrapper accessibilityAttributeValue:forParameter:]):

10:55 AM Changeset in webkit [60367] by treat@webkit.org
  • 2 edits in trunk/WebCore

RIM Bug #293 and https://bugs.webkit.org/show_bug.cgi?id=39859

Patch by Adam Treat <atreat@rim.com> on 2010-05-28
Reviewed by Daniel Bates.

Layout is not dependent upon ScrollView::frameRect when useFixedLayout
is true. No reason to set the needs layout flag in this case.

  • platform/ScrollView.cpp:

(WebCore::ScrollView::setFrameRect):

10:44 AM Changeset in webkit [60366] by Chris Fleizach
  • 3 edits
    2 adds in trunk

AX: need to catch NSAccessibilityExceptions in DRT
https://bugs.webkit.org/show_bug.cgi?id=39881

Reviewed by Darin Adler.

WebKitTools:

Normally, accessibility exceptions are caught in the AX Runtime on the Mac, but
because DRT is its own AX client, no one is there to catch these otherwise innocuous exceptions.

So DRT should wrap exception handlers around its AX related calls.

  • DumpRenderTree/mac/AccessibilityUIElementMac.mm:

(attributesOfElement):
(AccessibilityUIElement::getLinkedUIElements):
(AccessibilityUIElement::getDocumentLinks):
(AccessibilityUIElement::getChildren):
(AccessibilityUIElement::getChildrenWithRange):
(AccessibilityUIElement::ariaOwnsElementAtIndex):
(AccessibilityUIElement::ariaFlowToElementAtIndex):
(AccessibilityUIElement::disclosedRowAtIndex):
(AccessibilityUIElement::selectedRowAtIndex):
(AccessibilityUIElement::titleUIElement):
(AccessibilityUIElement::parentElement):
(AccessibilityUIElement::disclosedByRow):
(AccessibilityUIElement::stringAttributeValue):
(AccessibilityUIElement::boolAttributeValue):
(AccessibilityUIElement::isAttributeSettable):
(AccessibilityUIElement::isAttributeSupported):
(AccessibilityUIElement::role):
(AccessibilityUIElement::subrole):
(AccessibilityUIElement::roleDescription):
(AccessibilityUIElement::title):
(AccessibilityUIElement::description):
(AccessibilityUIElement::orientation):
(AccessibilityUIElement::stringValue):
(AccessibilityUIElement::language):
(AccessibilityUIElement::helpText):
(AccessibilityUIElement::x):
(AccessibilityUIElement::y):
(AccessibilityUIElement::width):
(AccessibilityUIElement::height):
(AccessibilityUIElement::clickPointX):
(AccessibilityUIElement::clickPointY):
(AccessibilityUIElement::intValue):
(AccessibilityUIElement::minValue):
(AccessibilityUIElement::maxValue):
(AccessibilityUIElement::valueDescription):
(AccessibilityUIElement::insertionPointLineNumber):
(AccessibilityUIElement::isActionSupported):
(AccessibilityUIElement::isEnabled):
(AccessibilityUIElement::isRequired):
(AccessibilityUIElement::isSelected):
(AccessibilityUIElement::isExpanded):
(AccessibilityUIElement::hierarchicalLevel):
(AccessibilityUIElement::ariaIsGrabbed):
(AccessibilityUIElement::ariaDropEffects):
(AccessibilityUIElement::lineForIndex):
(AccessibilityUIElement::boundsForRange):
(AccessibilityUIElement::stringForRange):
(AccessibilityUIElement::attributesOfColumnHeaders):
(AccessibilityUIElement::attributesOfRowHeaders):
(AccessibilityUIElement::attributesOfColumns):
(AccessibilityUIElement::attributesOfRows):
(AccessibilityUIElement::attributesOfVisibleCells):
(AccessibilityUIElement::attributesOfHeader):
(AccessibilityUIElement::rowCount):
(AccessibilityUIElement::columnCount):
(AccessibilityUIElement::indexInTable):
(AccessibilityUIElement::rowIndexRange):
(AccessibilityUIElement::columnIndexRange):
(AccessibilityUIElement::cellForColumnAndRow):
(AccessibilityUIElement::selectedTextRange):
(AccessibilityUIElement::setSelectedTextRange):
(AccessibilityUIElement::increment):
(AccessibilityUIElement::decrement):
(AccessibilityUIElement::showMenu):
(AccessibilityUIElement::press):
(AccessibilityUIElement::url):
(AccessibilityUIElement::hasPopup):

LayoutTests:

  • platform/mac/accessibility/unsupported-attribute-does-not-crash-expected.txt: Added.
  • platform/mac/accessibility/unsupported-attribute-does-not-crash.html: Added.
10:31 AM Changeset in webkit [60365] by mnaganov@chromium.org
  • 10 edits in trunk

2010-05-28 Mikhail Naganov <mnaganov@chromium.org>

Unreviewed. Revert 60353 -- immature.

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

  • bindings/js/JSConsoleCustom.cpp:
  • bindings/v8/custom/V8ConsoleCustom.cpp:
  • page/Console.cpp:
  • page/Console.h:
  • page/Console.idl:
  • fast/dom/Window/window-properties-expected.txt:
  • platform/gtk/fast/dom/Window/window-properties-expected.txt:
  • platform/qt/fast/dom/Window/window-properties-expected.txt:
9:17 AM Changeset in webkit [60364] by eric@webkit.org
  • 5 edits in trunk/WebKit

2010-05-28 Lucas De Marchi <lucas.demarchi@profusion.mobi>

Reviewed by Kenneth Rohde Christiansen.

[EFL] Allow client to override default database quota. We increase the
default database quota to 1MB (it was incorrectly set to 1KB, which is
too low) and add methods to allow client to iteratively database quota
when it becomes greater than the allowed value.
https://bugs.webkit.org/show_bug.cgi?id=39867

  • efl/WebCoreSupport/ChromeClientEfl.cpp: (WebCore::ChromeClientEfl::exceededDatabaseQuota): reimplement method to allow client to increase database quota iteratively.
  • efl/ewk/ewk_private.h:
  • efl/ewk/ewk_settings.cpp:
  • efl/ewk/ewk_view.h:
9:03 AM Changeset in webkit [60363] by eric@webkit.org
  • 5 edits in trunk/WebKit

2010-05-28 Lucas De Marchi <lucas.demarchi@profusion.mobi>

Reviewed by Kenneth Rohde Christiansen.

[EFL] Add default path to web database and methods to set it.
If a default path is not set, it will default to "/", in which a
normal user usually does not have write permission.

  • efl/EWebLauncher/main.c: overwrite default directory with another one. (main):
  • efl/ewk/ewk_main.cpp: (ewk_init): add default path
  • efl/ewk/ewk_settings.cpp: add methods to set and get database path (ewk_settings_web_database_path_set): (ewk_settings_web_database_path_get):
  • efl/ewk/ewk_settings.h:
8:40 AM Changeset in webkit [60362] by eric@webkit.org
  • 2 edits in trunk/WebKit

2010-05-28 Lucas De Marchi <lucas.demarchi@profusion.mobi>

Reviewed by Kenneth Rohde Christiansen.

[EFL] Fix wrongly set clipper. Now the scrollbars from main
frame are shown even on a zoom level lower than 1.0.

  • efl/ewk/ewk_view_single.c: (_ewk_view_single_smart_add): (_ewk_view_single_smart_backing_store_add): (ewk_view_single_smart_set):
8:38 AM Changeset in webkit [60361] by Darin Adler
  • 56 edits in trunk/WebCore

2010-05-27 Darin Adler <Darin Adler>

Reviewed by David Levin.

Make more HTML DOM members private, especially constructors, batch 2
https://bugs.webkit.org/show_bug.cgi?id=39706

Refactoring so no new tests.

Worked my way up from the bottom of HTMLTagNames.in.

  • html/HTMLTagNames.in: Removed createWithNew from keygen, listing, map, marquee, menu, meta, ol, optgroup, option, p, param, pre, script, select, source, style, table, tbody, td, textarea, tfoot, th, thead, title, tr, ul, video, xmp, and noscript.
  • editing/htmlediting.cpp: (WebCore::createOrderedListElement): Use create function instead of new. (WebCore::createUnorderedListElement): Ditto.
  • html/HTMLParser.cpp: (WebCore::HTMLParser::handleError): Ditto. (WebCore::HTMLParser::mapCreateErrorCheck): Ditto.
  • html/HTMLViewSourceDocument.cpp: (WebCore::HTMLViewSourceDocument::createContainingTable): Ditto. (WebCore::HTMLViewSourceDocument::addLine): Ditto.
  • html/HTMLKeygenElement.cpp: (WebCore::HTMLKeygenElement::HTMLKeygenElement): Use create function instead of new. (WebCore::HTMLKeygenElement::create): Added.
  • html/HTMLKeygenElement.h: Made constructor and virtual function overrides private, added create function.
  • html/HTMLMapElement.cpp: (WebCore::HTMLMapElement::HTMLMapElement): (WebCore::HTMLMapElement::create):
  • html/HTMLMapElement.h:
  • html/HTMLMarqueeElement.cpp: (WebCore::HTMLMarqueeElement::HTMLMarqueeElement): (WebCore::HTMLMarqueeElement::create):
  • html/HTMLMarqueeElement.h:
  • html/HTMLMenuElement.cpp: (WebCore::HTMLMenuElement::HTMLMenuElement): (WebCore::HTMLMenuElement::create):
  • html/HTMLMenuElement.h:
  • html/HTMLMetaElement.cpp: (WebCore::HTMLMetaElement::HTMLMetaElement): (WebCore::HTMLMetaElement::create):
  • html/HTMLMetaElement.h:
  • html/HTMLNoScriptElement.cpp: (WebCore::HTMLNoScriptElement::HTMLNoScriptElement): (WebCore::HTMLNoScriptElement::create): (WebCore::HTMLNoScriptElement::childShouldCreateRenderer):
  • html/HTMLNoScriptElement.h:
  • html/HTMLOListElement.cpp: (WebCore::HTMLOListElement::HTMLOListElement): (WebCore::HTMLOListElement::create):
  • html/HTMLOListElement.h:
  • html/HTMLOptGroupElement.cpp: (WebCore::HTMLOptGroupElement::HTMLOptGroupElement): (WebCore::HTMLOptGroupElement::create):
  • html/HTMLOptGroupElement.h:
  • html/HTMLOptionElement.cpp: (WebCore::HTMLOptionElement::HTMLOptionElement): (WebCore::HTMLOptionElement::create):
  • html/HTMLOptionElement.h:
  • html/HTMLParagraphElement.cpp: (WebCore::HTMLParagraphElement::HTMLParagraphElement): (WebCore::HTMLParagraphElement::create):
  • html/HTMLParagraphElement.h:
  • html/HTMLParamElement.cpp: (WebCore::HTMLParamElement::HTMLParamElement): (WebCore::HTMLParamElement::create):
  • html/HTMLParamElement.h:
  • html/HTMLPreElement.cpp: (WebCore::HTMLPreElement::HTMLPreElement): (WebCore::HTMLPreElement::create):
  • html/HTMLPreElement.h:
  • html/HTMLQuoteElement.cpp: (WebCore::HTMLQuoteElement::HTMLQuoteElement): (WebCore::HTMLQuoteElement::create):
  • html/HTMLQuoteElement.h:
  • html/HTMLScriptElement.cpp: (WebCore::HTMLScriptElement::HTMLScriptElement): (WebCore::HTMLScriptElement::create):
  • html/HTMLScriptElement.h:
  • html/HTMLSelectElement.cpp: (WebCore::HTMLSelectElement::create):
  • html/HTMLSelectElement.h:
  • html/HTMLSourceElement.cpp: (WebCore::HTMLSourceElement::HTMLSourceElement): (WebCore::HTMLSourceElement::create):
  • html/HTMLSourceElement.h:
  • html/HTMLStyleElement.cpp: (WebCore::HTMLStyleElement::HTMLStyleElement): (WebCore::HTMLStyleElement::create):
  • html/HTMLStyleElement.h:
  • html/HTMLTableRowElement.cpp: (WebCore::HTMLTableRowElement::HTMLTableRowElement): (WebCore::HTMLTableRowElement::create): (WebCore::HTMLTableRowElement::insertCell):
  • html/HTMLTableRowElement.h:
  • html/HTMLTableSectionElement.cpp: (WebCore::HTMLTableSectionElement::HTMLTableSectionElement): (WebCore::HTMLTableSectionElement::create): (WebCore::HTMLTableSectionElement::insertRow):
  • html/HTMLTableSectionElement.h:
  • html/HTMLTextAreaElement.cpp: (WebCore::HTMLTextAreaElement::create):
  • html/HTMLTextAreaElement.h:
  • html/HTMLTitleElement.cpp: (WebCore::HTMLTitleElement::HTMLTitleElement): (WebCore::HTMLTitleElement::create):
  • html/HTMLTitleElement.h:
  • html/HTMLUListElement.cpp: (WebCore::HTMLUListElement::HTMLUListElement): (WebCore::HTMLUListElement::create):
  • html/HTMLUListElement.h:
  • html/HTMLVideoElement.cpp: (WebCore::HTMLVideoElement::HTMLVideoElement): (WebCore::HTMLVideoElement::create):
  • html/HTMLVideoElement.h: Made constructors and virtual function overrides private, added create function.
  • html/HTMLTableCellElement.cpp: (WebCore::HTMLTableCellElement::HTMLTableCellElement): Updated names of data members. Renamed _row to m_row, _col to m_col, rSpan to m_rowSpan, cSpan to m_colSpan, and removed unused rowHeight and m_solid. (WebCore::HTMLTableCellElement::create): Added. (WebCore::HTMLTableCellElement::parseMappedAttribute): Updated names.
  • html/HTMLTableCellElement.h: Ditto.
  • html/HTMLTableElement.cpp: (WebCore::HTMLTableElement::create): Added. (WebCore::HTMLTableElement::createTHead): Used create instead of new. (WebCore::HTMLTableElement::createTFoot): Ditto. (WebCore::HTMLTableElement::insertRow): Ditto.
  • html/HTMLTableElement.h:
  • html/HTMLTablePartElement.h: Made members protected instead of public.
8:23 AM Changeset in webkit [60360] by eric@webkit.org
  • 2 edits in trunk/WebCore

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

Reviewed by Kenneth Rohde Christiansen.

[Qt] REGRESSION(r59837): Incorrect clipping of TransparencyLayers
https://bugs.webkit.org/show_bug.cgi?id=39784

Move coordinate transformation from TransparencyLayer to clipToImageBuffer()

  • platform/graphics/qt/GraphicsContextQt.cpp: (WebCore::TransparencyLayer::TransparencyLayer): (WebCore::GraphicsContext::clipToImageBuffer):
8:11 AM Changeset in webkit [60359] by eric@webkit.org
  • 7 edits in trunk

2010-05-28 Lucas De Marchi <lucas.demarchi@profusion.mobi>

Reviewed by Kenneth Rohde Christiansen.

[EF] Implement methods for supporting PopupMenu
https://bugs.webkit.org/show_bug.cgi?id=39629

  • platform/PopupMenu.h: add needed attribute
  • platform/efl/PopupMenuEfl.cpp: implement methods to show/hide popup menu (WebCore::PopupMenu::PopupMenu): initialize new attribute (WebCore::PopupMenu::show): ditto. (WebCore::PopupMenu::hide): ditto.

2010-05-28 Lucas De Marchi <lucas.demarchi@profusion.mobi>

Reviewed by Kenneth Rohde Christiansen.

[EFL] Add support for Popup menus
https://bugs.webkit.org/show_bug.cgi?id=39629

  • efl/WebCoreSupport/ChromeClientEfl.cpp: implement methods to create and destroy popup menu. (WebCore::ChromeClientEfl::createSelectPopup): ditto. (WebCore::ChromeClientEfl::destroySelectPopup): ditto.
  • efl/WebCoreSupport/ChromeClientEfl.h: ditto.
  • efl/ewk/ewk_private.h: add function to call browser when a popup is created/deleted
7:56 AM Changeset in webkit [60358] by eric@webkit.org
  • 4 edits in trunk/WebCore

2010-05-28 Lucas De Marchi <lucas.demarchi@profusion.mobi>

Reviewed by Kenneth Rohde Christiansen.

Reorder class initializers to remove compiler warnings.
https://bugs.webkit.org/show_bug.cgi?id=39596

  • platform/efl/PlatformKeyboardEventEfl.cpp: ditto. (WebCore::PlatformKeyboardEvent::PlatformKeyboardEvent): ditto.
  • platform/efl/PlatformMouseEventEfl.cpp: ditto. (WebCore::PlatformMouseEvent::PlatformMouseEvent): ditto.
  • platform/efl/PlatformWheelEventEfl.cpp: ditto (WebCore::PlatformWheelEvent::PlatformWheelEvent): ditto.
7:55 AM BuildingGtk edited by morrita@google.com
(diff)
7:30 AM Changeset in webkit [60357] by jorlow@chromium.org
  • 49 edits
    11 copies in trunk

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

Reviewed by Steve Block.

Add IndexedDB's IDBIndex
https://bugs.webkit.org/show_bug.cgi?id=39850

Flesh out IDBIndex as much as possible until Andrei finishes
his patch to get around passing Frame*'s all around. I also
cleaned up a bunch of existing files as I noticed style
violations (while basing my new files off of the old).

Not hooked up enough to test. Will add tests soon.

  • Android.derived.jscbindings.mk
  • Android.derived.v8bindings.mk
  • Android.mk
  • CMakeLists.txt
  • DerivedSources.cpp
  • DerivedSources.make
  • GNUmakefile.am
  • WebCore.pri
  • WebCore.pro
  • WebCore.gypi:
  • WebCore.vcproj/WebCore.vcproj
  • WebCore.xcodeproj/project.pbxproj
  • bindings/js/JSIDBAnyCustom.cpp: (WebCore::toJS):
  • bindings/v8/custom/V8IDBAnyCustom.cpp: (WebCore::toV8):
  • storage/IDBAny.cpp: (WebCore::IDBAny::idbIndexRequest): (WebCore::IDBAny::set):
  • storage/IDBAny.h: (WebCore::IDBAny::):
  • storage/IDBCallbacks.h:
  • storage/IDBDatabase.h:
  • storage/IDBDatabaseError.h: (WebCore::IDBDatabaseError::):
  • storage/IDBDatabaseError.idl:
  • storage/IDBDatabaseException.h:
  • storage/IDBDatabaseException.idl:
  • storage/IDBDatabaseImpl.cpp:
  • storage/IDBDatabaseImpl.h:
  • storage/IDBDatabaseRequest.cpp:
  • storage/IDBDatabaseRequest.h:
  • storage/IDBDatabaseRequest.idl:
  • storage/IDBIndex.h: Added. (WebCore::IDBIndex::~IDBIndex):
  • storage/IDBIndexImpl.cpp: Added. (WebCore::IDBIndexImpl::IDBIndexImpl): (WebCore::IDBIndexImpl::~IDBIndexImpl):
  • storage/IDBIndexImpl.h: Added. (WebCore::IDBIndexImpl::create): (WebCore::IDBIndexImpl::name): (WebCore::IDBIndexImpl::keyPath): (WebCore::IDBIndexImpl::unique):
  • storage/IDBIndexRequest.cpp: Added. (WebCore::IDBIndexRequest::IDBIndexRequest): (WebCore::IDBIndexRequest::~IDBIndexRequest):
  • storage/IDBIndexRequest.h: Added. (WebCore::IDBIndexRequest::create): (WebCore::IDBIndexRequest::name): (WebCore::IDBIndexRequest::keyPath): (WebCore::IDBIndexRequest::unique):
  • storage/IDBIndexRequest.idl: Added.
  • storage/IDBObjectStore.cpp: (WebCore::IDBObjectStore::IDBObjectStore): (WebCore::IDBObjectStore::~IDBObjectStore): (WebCore::IDBObjectStore::indexNames): (WebCore::IDBObjectStore::createIndex): (WebCore::IDBObjectStore::index): (WebCore::IDBObjectStore::removeIndex):
  • storage/IDBObjectStore.h:
  • storage/IDBObjectStoreRequest.cpp: (WebCore::IDBObjectStoreRequest::IDBObjectStoreRequest): (WebCore::IDBObjectStoreRequest::name): (WebCore::IDBObjectStoreRequest::keyPath): (WebCore::IDBObjectStoreRequest::indexNames): (WebCore::IDBObjectStoreRequest::createIndex): (WebCore::IDBObjectStoreRequest::index): (WebCore::IDBObjectStoreRequest::removeIndex):
  • storage/IDBObjectStoreRequest.h:
  • storage/IDBObjectStoreRequest.idl:
  • storage/IDBRequest.cpp: (WebCore::IDBRequest::onSuccess):
  • storage/IDBRequest.h:
  • storage/IndexedDatabaseRequest.idl:

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

Reviewed by Steve Block.

Add IndexedDB's IDBIndex
https://bugs.webkit.org/show_bug.cgi?id=39850

Add WebKit layer for IDBIndex.

  • WebKit.gyp:
  • public/WebCommon.h:
  • public/WebIDBCallbacks.h: (WebKit::WebIDBCallbacks::onError): (WebKit::WebIDBCallbacks::onSuccess):
  • public/WebIDBDatabase.h:
  • public/WebIDBIndex.h: Added. (WebKit::WebIDBIndex::~WebIDBIndex): (WebKit::WebIDBIndex::name): (WebKit::WebIDBIndex::keyPath): (WebKit::WebIDBIndex::unique):
  • src/IDBCallbacksProxy.cpp: (WebCore::IDBCallbacksProxy::onSuccess):
  • src/IDBCallbacksProxy.h:
  • src/IDBDatabaseProxy.cpp:
  • src/IDBDatabaseProxy.h:
  • src/IDBIndexProxy.cpp: Added. (WebCore::IDBIndexProxy::create): (WebCore::IDBIndexProxy::IDBIndexProxy): (WebCore::IDBIndexProxy::~IDBIndexProxy): (WebCore::IDBIndexProxy::name): (WebCore::IDBIndexProxy::keyPath): (WebCore::IDBIndexProxy::unique):
  • src/IDBIndexProxy.h: Added.
  • src/WebIDBCallbacksImpl.cpp: (WebCore::WebIDBCallbacksImpl::onSuccess):
  • src/WebIDBCallbacksImpl.h:
  • src/WebIDBDatabaseImpl.cpp:
  • src/WebIDBDatabaseImpl.h:
  • src/WebIDBIndexImpl.cpp: Added. (WebKit::WebIDBIndexImpl::WebIDBIndexImpl): (WebKit::WebIDBIndexImpl::~WebIDBIndexImpl): (WebKit::WebIDBIndexImpl::name): (WebKit::WebIDBIndexImpl::keyPath): (WebKit::WebIDBIndexImpl::unique):
  • src/WebIDBIndexImpl.h: Added.
7:10 AM Changeset in webkit [60356] by yurys@chromium.org
  • 2 edits in trunk/WebKit/chromium

2010-05-28 Yury Semikhatsky <yurys@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: check that ClientMessageLoopAdapter is not 0 before
accessing its fileds from inspectedViewClosed method. It may be 0
if inspector frontend has not been open.
https://bugs.webkit.org/show_bug.cgi?id=39876

  • src/WebDevToolsAgentImpl.cpp: (WebKit::):
7:08 AM Changeset in webkit [60355] by chang.shu@nokia.com
  • 1 edit
    2 deletes in trunk/LayoutTests

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

Unreviewed.

Remove two junk files not supposed to be in.

  • canvas/philip/tests/.reportgen.html.swp: Removed.
  • canvas/philip/tests/.reportgen.js.swp: Removed.
7:07 AM Changeset in webkit [60354] by yurys@chromium.org
  • 2 edits in trunk/WebCore

2010-05-28 Yury Semikhatsky <yurys@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: hide node highlight when inspected page closes.
https://bugs.webkit.org/show_bug.cgi?id=39872

  • inspector/InspectorController.cpp: (WebCore::InspectorController::~InspectorController): (WebCore::InspectorController::inspectedPageDestroyed):
7:01 AM Changeset in webkit [60353] by mnaganov@chromium.org
  • 10 edits in trunk

2010-05-28 Mikhail Naganov <mnaganov@chromium.org>

Reviewed by Yury Semikhatsky.

Web Inspector: add Console API for retrieving memory stats

Add 'console.memory' property which returns an object. Currently
it has two fields: totalHeapSize and usedHeapSize. Later, it can be
extended for reporting total browser's memory consumption.

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

  • bindings/js/JSConsoleCustom.cpp: (WebCore::JSConsole::memory):
  • bindings/v8/custom/V8ConsoleCustom.cpp: (WebCore::V8Console::memoryAccessorGetter):
  • page/Console.cpp: (WebCore::Console::memory):
  • page/Console.h:
  • page/Console.idl:
  • fast/dom/Window/window-properties-expected.txt:
  • platform/gtk/fast/dom/Window/window-properties-expected.txt:
  • platform/qt/fast/dom/Window/window-properties-expected.txt:
6:57 AM Changeset in webkit [60352] by antti.j.koivisto@nokia.com
  • 2 edits in trunk/WebKit/qt

Add a missing #if ENABLE(), some null checking.

Reviewed by Kenneth Rohde Christiansen.

  • Api/qwebpage.cpp:

(QWebPagePrivate::dynamicPropertyChangeEvent):

6:37 AM Changeset in webkit [60351] by xan@webkit.org
  • 2 edits in trunk/WebCore

2010-05-28 Xan Lopez <xlopez@igalia.com>

Add new file to the build system.

  • GNUmakefile.am:
6:28 AM Changeset in webkit [60350] by antti.j.koivisto@nokia.com
  • 5 edits in trunk

https://bugs.webkit.org/show_bug.cgi?id=39874
[Qt] Make tiled backing store more configurable

Reviewed by Kenneth Rohde Christiansen.

Make tile size, tile creation delay and tiling area dynamically configurable.

WebCore:

  • platform/graphics/TiledBackingStore.cpp:

(WebCore::TiledBackingStore::TiledBackingStore):
(WebCore::TiledBackingStore::setTileSize):
(WebCore::TiledBackingStore::setTileCreationDelay):
(WebCore::TiledBackingStore::setKeepAndCoverAreaMultipliers):
(WebCore::TiledBackingStore::createTiles):

  • platform/graphics/TiledBackingStore.h:

(WebCore::TiledBackingStore::tileSize):
(WebCore::TiledBackingStore::tileCreationDelay):
(WebCore::TiledBackingStore::getKeepAndCoverAreaMultipliers):

WebKit/qt:

  • Api/qwebpage.cpp:

(QWebPagePrivate::dynamicPropertyChangeEvent):

6:12 AM Changeset in webkit [60349] by yael.aharon@nokia.com
  • 2 edits in trunk/WebKit/qt

Unreviewed build fix after r60348.

  • WebCoreSupport/DumpRenderTreeSupportQt.cpp:

(DumpRenderTreeSupportQt::setNotificationsReceiver):

5:59 AM Changeset in webkit [60348] by eric@webkit.org
  • 14 edits in trunk

2010-05-28 Yael Aharon <yael.aharon@nokia.com>

Reviewed by Laszlo Gombos.

[Qt] Pass all web notification layout tests
https://bugs.webkit.org/show_bug.cgi?id=39146

  • platform/qt/Skipped:

2010-05-28 Yael Aharon <yael.aharon@nokia.com>

Reviewed by Laszlo Gombos.

[Qt] Pass all web notification layout tests
https://bugs.webkit.org/show_bug.cgi?id=39146

Add support for multiple simultaneous notifications.
Add a private callback mechanism to the client for security checks.
Notifications are disabled if the client does not set the callbacks.
Support replaceId and cancel.
Send close and display events when needed.

  • Api/qwebpage.cpp: (QWebPagePrivate::QWebPagePrivate):
  • WebCoreSupport/DumpRenderTreeSupportQt.cpp: (DumpRenderTreeSupportQt::setNotificationsReceiver): (DumpRenderTreeSupportQt::allowNotificationForOrigin): (DumpRenderTreeSupportQt::setCheckPermissionFunction): (DumpRenderTreeSupportQt::setRequestPermissionFunction):
  • WebCoreSupport/DumpRenderTreeSupportQt.h:
  • WebCoreSupport/FrameLoaderClientQt.cpp: (WebCore::FrameLoaderClientQt::dispatchDidClearWindowObjectInWorld):
  • WebCoreSupport/NotificationPresenterClientQt.cpp: (NotificationIconWrapper::NotificationIconWrapper): (NotificationIconWrapper::~NotificationIconWrapper): (NotificationPresenterClientQt::NotificationPresenterClientQt): (NotificationPresenterClientQt::show): (NotificationPresenterClientQt::cancel): (NotificationPresenterClientQt::notificationObjectDestroyed): (NotificationPresenterClientQt::requestPermission): (NotificationPresenterClientQt::checkPermission): (NotificationPresenterClientQt::allowNotificationForOrigin): (NotificationPresenterClientQt::clearNotificationsList): (NotificationPresenterClientQt::sendEvent):
  • WebCoreSupport/NotificationPresenterClientQt.h: (WebCore::NotificationPresenterClientQt::~NotificationPresenterClientQt): (WebCore::NotificationPresenterClientQt::setReceiver):

2010-05-28 Yael Aharon <yael.aharon@nokia.com>

Reviewed by Laszlo Gombos.

[Qt] Pass all web notification layout tests
https://bugs.webkit.org/show_bug.cgi?id=39146

Mimic Chromium's test_shell security model in Qt's DRT.
It makes a list of origins which were granted permission to display
notifications, and only those origins can display notifications.

  • DumpRenderTree/qt/DumpRenderTreeQt.cpp: (WebCore::checkPermissionCallback): (WebCore::requestPermissionCallback): (WebCore::WebPage::WebPage): (WebCore::DumpRenderTree::checkPermission): (WebCore::DumpRenderTree::requestPermission):
  • DumpRenderTree/qt/DumpRenderTreeQt.h:
  • DumpRenderTree/qt/LayoutTestControllerQt.cpp: (LayoutTestController::reset): (LayoutTestController::grantDesktopNotificationPermission): (LayoutTestController::checkDesktopNotificationPermission):
  • DumpRenderTree/qt/LayoutTestControllerQt.h:
3:11 AM Changeset in webkit [60347] by eric@webkit.org
  • 9 edits
    1 copy in trunk

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

Reviewed by Adam Barth.

document.write does not work correctly in the HTML5 parser
https://bugs.webkit.org/show_bug.cgi?id=39828

Add two tests for document.write behavior and update
our expected results to remove two parse errors now that
document.write is functioning correctly.

  • html5lib/resources/webkit01.dat:
  • html5lib/runner-expected-html5.txt:

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

Reviewed by Adam Barth.

document.write does not work correctly in the HTML5 parser
https://bugs.webkit.org/show_bug.cgi?id=39828

Added a new HTML5ScriptRunnerHost interface which
HTML5Tokenizer implements. This allows HTML5ScriptController
to delegate the actual ScriptController::executeScript back to
HTML5Tokenizer. HTML5Tokenizer saves off the current m_source
before calling ScriptController::executeScript to allow safe
reentrancy through document.write().

  • WebCore.xcodeproj/project.pbxproj:
    • Added HTML5ScriptRunnerHost.h
  • html/HTML5ScriptRunner.cpp: (WebCore::HTML5ScriptRunner::HTML5ScriptRunner): (WebCore::HTML5ScriptRunner::~HTML5ScriptRunner):
    • Unregister m_parsingBlockingScript if stopped before load completion. This was probably causing some of the crashes on page navigation we saw during LayoutTest runs.

(WebCore::documentURLForScriptExecution):

  • Unify our documentURL handling so all callsites get it right.

(WebCore::HTML5ScriptRunner::sourceFromPendingScript):

  • Use documentURLForScriptExecution

(WebCore::HTML5ScriptRunner::executePendingScript):

  • Call stopWatchingForLoad instead of removeClient()
  • Call executeScript instead of ScriptController directly.

(WebCore::HTML5ScriptRunner::executeScript):

  • Wraps calls to HTML5ScriptRunnerHost::executeScript

(WebCore::HTML5ScriptRunner::watchForLoad):

  • Wraps calls to HTML5ScriptRunnerHost::watchForLoad

(WebCore::HTML5ScriptRunner::stopWatchingForLoad):

  • Wraps calls to HTML5ScriptRunnerHost::stopWatchingForLoad

(WebCore::HTML5ScriptRunner::requestScript):

  • Only watch for load if the CachedScript isn't already loaded. This gets rid of rentrancy due to addClient calls, and as a result also stops us from hitting ASSERT(m_scriptNestingLevel) in executePendingScript.

(WebCore::HTML5ScriptRunner::runScript):

  • Use the new fancy documentURLForScriptExecution and executeScript.
  • html/HTML5ScriptRunner.h: (WebCore::HTML5ScriptRunner::PendingScript::PendingScript):
    • Add a watchingForLoad bool so we know if we ever called watchForLoad with this CachedScript*.
  • html/HTML5ScriptRunnerHost.h: Added. (WebCore::HTML5ScriptRunnerHost::~HTML5ScriptRunnerHost):
  • html/HTML5Tokenizer.cpp: (WebCore::HTML5Tokenizer::HTML5Tokenizer):
    • Store an m_document pointer since we need to access m_document->frame()->script() for script execution.

(WebCore::HTML5Tokenizer::pumpLexer):

  • Always pause or unpause the TreeBuilder after script execution. Previously nested script execution would leave the TreeBuilder paused even though the top-level loop wanted to resume parsing. Now whenever m_scriptRunner->execute returns "continue parsing" parsing will actually continue. This fixed cases where we would ignore the rest of the document after document.write() of a script tag.

(WebCore::HTML5Tokenizer::write):

  • Explain how document.write() reentrancy is safe in the new world.

(WebCore::HTML5Tokenizer::watchForLoad):

  • HTML5ScriptRunnerHost implementation. We assert that this call will never cause script execution since that's our current design.

(WebCore::HTML5Tokenizer::stopWatchingForLoad):

  • HTML5ScriptRunnerHost implementation.

(WebCore::HTML5Tokenizer::executeScript):

  • HTML5ScriptRunnerHost implementation. Save off the current source before executing scripts in case document.write is called during script execution.
  • html/HTML5Tokenizer.h:
    • Implement HTML5ScriptRunnerHost.
2:01 AM Changeset in webkit [60346] by jorlow@chromium.org
  • 2 edits in trunk/WebKitSite

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

Reviewed by Darin Adler.

Update the style guide re: static member variables and structs
https://bugs.webkit.org/show_bug.cgi?id=39663

Per Darin Adler's proposal on webkit-dev.

All static member variables should be prefixed with s_.
m_ should not be used for public data members in structs.
Only structs should have public data members.

  • coding/coding-style.html:
1:38 AM QtWebKitJournal edited by Simon Hausmann
(diff)
12:58 AM Changeset in webkit [60345] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-28 Nathan Lawrence <nlawrence@apple.com>

Reviewed by Geoffrey Garen.

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

Because not just <img> and <image> elements can preload images, we
dont want to restrict the element associated with the loader.

No new tests. Should share the same tests as the last patch.

  • html/HTMLImageLoader.cpp: (WebCore::HTMLImageLoader::notifyFinished):
12:00 AM Changeset in webkit [60344] by morrita@google.com
  • 6 edits
    4 adds in trunk

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

Reviewed by Ojan Vafai.

Cursor movement and text selection does not work well if a block is followed by an inline.
https://bugs.webkit.org/show_bug.cgi?id=32123

RenderInline::setSelectionState() missed selection state
propagation for ancestors. This fix pulled
RenderBlock::setSelectionState() up to RenderBoxModelObject, to
share it with RenderInline.

  • editing/selection/range-between-block-and-inline.html: Added.
  • platform/mac/editing/selection/range-between-block-and-inline-expected.checksum: Added.
  • platform/mac/editing/selection/range-between-block-and-inline-expected.png: Added.
  • platform/mac/editing/selection/range-between-block-and-inline-expected.txt: Added.

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

Reviewed by Ojan Vafai.

Cursor movement and text selection does not work well if a block is followed by an inline.
https://bugs.webkit.org/show_bug.cgi?id=32123

RenderInline::setSelectionState() missed selection state
propagation for ancestors. This fix pulled
RenderBlock::setSelectionState() up to RenderBoxModelObject, to
share it with RenderInline.

Test: editing/selection/range-between-block-and-inline.html: Added.

  • rendering/RenderBlock.cpp:
  • rendering/RenderBlock.h:
  • rendering/RenderBoxModelObject.cpp: (WebCore::RenderBoxModelObject::setSelectionState):
  • rendering/RenderBoxModelObject.h: Moved setSelectionState() from RenderBlock to RenderBoxModelObject.

May 27, 2010:

10:09 PM Changeset in webkit [60343] by morrita@google.com
  • 2 edits in trunk/WebCore

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

Not reviewed. Fixed typo

  • rendering/RenderTheme.cpp: (WebCore::RenderTheme::adjustStyle):
9:21 PM Changeset in webkit [60342] by Darin Adler
  • 47 edits in trunk/WebCore

2010-05-27 Darin Adler <Darin Adler>

Reviewed by David Levin.

Make more HTML DOM members private, especially constructors
https://bugs.webkit.org/show_bug.cgi?id=39697

Refactoring, so no new tests needed.

Working my way through HTMLTagNames.in from top to bottom, skipping any
that are non-trivial for some reason.

  • html/HTMLTagNames.in: Removed createWithNew from audio, base, basefont, blockquote, body, br, button, canvas, caption, col, colgroup, datagrid, datalist, dcell, dcol, drow, del, dir, dl, and fieldset.
  • mathml/mathtags.in: Removed createWithNew from msub, and msup.
  • dom/Document.cpp: (WebCore::Document::implicitClose): Use create function instead of new. (WebCore::Document::getCSSCanvasElement): Ditto.
  • editing/IndentOutdentCommand.cpp: (WebCore::createIndentBlockquoteElement): Ditto.
  • editing/htmlediting.cpp: (WebCore::createBreakElement): Ditto.
  • html/HTMLTableElement.cpp: (WebCore::HTMLTableElement::createCaption): Ditto.
  • html/HTMLViewSourceDocument.cpp: (WebCore::HTMLViewSourceDocument::createContainingTable): Ditto.
  • rendering/RenderTextControl.cpp: (WebCore::RenderTextControl::setInnerTextValue): Ditto.
  • html/HTMLParser.cpp: (WebCore::HTMLParser::handleError): Use create function instead of new. Required reordering the code slightly, but the new order works fine.
  • html/HTMLAudioElement.cpp: (WebCore::HTMLAudioElement::create):
  • html/HTMLAudioElement.h:
  • html/HTMLBRElement.cpp: (WebCore::HTMLBRElement::create):
  • html/HTMLBRElement.h:
  • html/HTMLBaseElement.cpp: (WebCore::HTMLBaseElement::create):
  • html/HTMLBaseElement.h:
  • html/HTMLBaseFontElement.cpp: (WebCore::HTMLBaseFontElement::create):
  • html/HTMLBaseFontElement.h:
  • html/HTMLBlockquoteElement.cpp: (WebCore::HTMLBlockquoteElement::create):
  • html/HTMLBlockquoteElement.h:
  • html/HTMLBodyElement.cpp: (WebCore::HTMLBodyElement::create):
  • html/HTMLBodyElement.h:
  • html/HTMLButtonElement.cpp: (WebCore::HTMLButtonElement::create):
  • html/HTMLButtonElement.h:
  • html/HTMLCanvasElement.cpp: (WebCore::HTMLCanvasElement::create):
  • html/HTMLCanvasElement.h:
  • html/HTMLDListElement.cpp: (WebCore::HTMLDListElement::create):
  • html/HTMLDListElement.h:
  • html/HTMLDataGridCellElement.cpp: (WebCore::HTMLDataGridCellElement::create):
  • html/HTMLDataGridCellElement.h:
  • html/HTMLDataGridColElement.cpp: (WebCore::HTMLDataGridColElement::create):
  • html/HTMLDataGridColElement.h:
  • html/HTMLDataGridElement.cpp: (WebCore::HTMLDataGridElement::create):
  • html/HTMLDataGridElement.h:
  • html/HTMLDataGridRowElement.cpp: (WebCore::HTMLDataGridRowElement::create):
  • html/HTMLDataGridRowElement.h:
  • html/HTMLDataListElement.cpp: (WebCore::HTMLDataListElement::create):
  • html/HTMLDataListElement.h:
  • html/HTMLElement.cpp: (WebCore::HTMLElement::setInnerText):
  • html/HTMLFieldSetElement.cpp: (WebCore::HTMLFieldSetElement::create):
  • html/HTMLFieldSetElement.h:
  • html/HTMLModElement.cpp: (WebCore::HTMLModElement::HTMLModElement): (WebCore::HTMLModElement::create):
  • html/HTMLModElement.h:
  • html/HTMLTableCaptionElement.cpp: (WebCore::HTMLTableCaptionElement::create):
  • html/HTMLTableCaptionElement.h: Made constructors and virtual function overrides private, added create functions. Made constructors inline in cases where they were called in only one place.
  • html/HTMLTableColElement.cpp: (WebCore::HTMLTableColElement::HTMLTableColElement): Changed data member name from _span to m_span. (WebCore::HTMLTableColElement::create): Added. (WebCore::HTMLTableColElement::parseMappedAttribute): Updated to use m_span.
  • html/HTMLTableColElement.h: Made constructor and virtual function overrides private, added create function. Renamed _span to m_span.
8:21 PM Changeset in webkit [60341] by eric@webkit.org
  • 2 edits in trunk/WebCore

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

Reviewed by Darin Adler.

wx port: build fix for Linux
https://bugs.webkit.org/show_bug.cgi?id=39860

Use uint16_t instead of uint16.

  • plugins/PluginPackageNone.cpp: (WebCore::PluginPackage::NPVersion):
7:35 PM Changeset in webkit [60340] by rolandsteiner@chromium.org
  • 3 edits in trunk/LayoutTests

2010-05-27 Roland Steiner <rolandsteiner@chromium.org>

Reviewed by Tamura Kent.

[Chromium] Update chromium test expectations for parseFloat & toNumber tests
https://bugs.webkit.org/show_bug.cgi?id=39861

Update expectation files.

  • platform/chromium/fast/js/ToNumber-expected.txt:
  • platform/chromium/fast/js/parseFloat-expected.txt:
6:37 PM Changeset in webkit [60339] by mrowe@apple.com
  • 5 edits in branches/safari-533-branch

Versioning.

6:35 PM Changeset in webkit [60338] by mrowe@apple.com
  • 1 copy in tags/Safari-533.13

New tag.

5:44 PM Changeset in webkit [60337] by eric@webkit.org
  • 2 edits
    1 add in trunk/WebCore

2010-05-27 Nathan Lawrence <nlawrence@apple.com>

Reviewed by Geoffrey Garen.

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

Fixes the issue where images prefetched by JavaScript do not report
their memory usage to the GC.

There is a new test manual-tests/image-prefetch-stress.html that loads
a new 4MB image every half a second.

  • html/HTMLImageLoader.cpp: (WebCore::HTMLImageLoader::notifyFinished):
  • manual-tests/image-prefetch-stress.html: Added.
5:39 PM Changeset in webkit [60336] by mrowe@apple.com
  • 4 edits in branches/safari-533-branch/WebCore

Merge r60317.

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

Merge r60272.

5:38 PM Changeset in webkit [60334] by mrowe@apple.com
  • 2 edits in branches/safari-533-branch/WebCore

Merge r60252.

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

Merge r60247.

4:43 PM Changeset in webkit [60332] by eric@webkit.org
  • 8 edits in trunk/JavaScriptCore

2010-05-27 Luiz Agostini <luiz.agostini@openbossa.org>

Reviewed by Darin Adler.

UTF-16 code points compare() for String objects
https://bugs.webkit.org/show_bug.cgi?id=39701

Moving compare() implementation from UString to StringImpl for it to be shared
with String. Adding overloaded free functions codePointCompare() in StringImpl
and WTFString. Renaming function compare in UString to codePointCompare to be
consistent.

  • runtime/JSArray.cpp: (JSC::compareByStringPairForQSort):
  • runtime/UString.cpp:
  • runtime/UString.h: (JSC::codePointCompare):
  • wtf/text/StringImpl.cpp: (WebCore::codePointCompare):
  • wtf/text/StringImpl.h:
  • wtf/text/WTFString.cpp: (WebCore::codePointCompare):
  • wtf/text/WTFString.h:
4:40 PM Changeset in webkit [60331] by Beth Dakin
  • 2 edits in trunk/WebKit/mac

Change z-component to 1.

Reviewed by Simon Fraser.

  • WebView/WebHTMLView.mm:

(-[WebHTMLView viewDidMoveToWindow]):
(-[WebHTMLView attachRootLayer:]):

4:21 PM Changeset in webkit [60330] by eric@webkit.org
  • 17 edits in trunk

2010-05-27 Eric Uhrhane <ericu@chromium.org>

Reviewed by Adam Barth.

Add v8 bindings for async DB API in workers
https://bugs.webkit.org/show_bug.cgi?id=39145

No new tests. This should share layout tests with JSC.

Tweak the callback generation to switch lots of Frame* to ScriptExecutionContext*, and use the context passed in to handleEvent where possible.

  • bindings/scripts/CodeGeneratorV8.pm:

As with CodeGeneratorV8; these are pretty much all tiny tweaks.
We do have to use a slightly different patch for callback invocation in invokeCallback, as V8Proxy::retrieve() doesn't work in the worker context.

  • bindings/v8/custom/V8CustomPositionCallback.cpp: (WebCore::V8CustomPositionCallback::handleEvent):
  • bindings/v8/custom/V8CustomPositionErrorCallback.cpp: (WebCore::V8CustomPositionErrorCallback::handleEvent):
  • bindings/v8/custom/V8CustomSQLStatementErrorCallback.cpp: (WebCore::V8SQLStatementErrorCallback::handleEvent):
  • bindings/v8/custom/V8CustomVoidCallback.cpp: (WebCore::V8CustomVoidCallback::V8CustomVoidCallback): (WebCore::V8CustomVoidCallback::handleEvent): (WebCore::invokeCallback):
  • bindings/v8/custom/V8CustomVoidCallback.h: (WebCore::V8CustomVoidCallback::create):
  • bindings/v8/custom/V8DOMWindowCustom.cpp: (WebCore::V8DOMWindow::openDatabaseCallback):
  • bindings/v8/custom/V8DatabaseCustom.cpp: (WebCore::V8Database::changeVersionCallback): (WebCore::createTransaction):
  • bindings/v8/custom/V8DatabaseSyncCustom.cpp: (WebCore::V8DatabaseSync::changeVersionCallback): (WebCore::createTransaction):
  • bindings/v8/custom/V8NotificationCenterCustom.cpp: (WebCore::V8NotificationCenter::requestPermissionCallback):
  • bindings/v8/custom/V8SQLTransactionCustom.cpp: (WebCore::V8SQLTransaction::executeSqlCallback):

Add openDatabaseCallback.

  • bindings/v8/custom/V8WorkerContextCustom.cpp: (WebCore::V8WorkerContext::openDatabaseCallback): Remove an obsolete parameter. (WebCore::V8WorkerContext::openDatabaseSyncCallback):

2010-05-27 Eric Uhrhane <ericu@chromium.org>

Reviewed by Adam Barth.

Add v8 bindings for async DB API in workers
https://bugs.webkit.org/show_bug.cgi?id=39145

  • src/DatabaseObserver.cpp: We should check that we're on the context thread now, not the main thread. (WebCore::DatabaseObserver::databaseOpened): (WebCore::DatabaseObserver::databaseModified): (WebCore::DatabaseObserver::databaseClosed):
4:12 PM Changeset in webkit [60329] by crogers@google.com
  • 12 edits in branches/audio/WebCore

preliminary changes to build on Windows

4:09 PM Changeset in webkit [60328] by Darin Adler
  • 8 edits in trunk

2010-05-26 Darin Adler <Darin Adler>

Reviewed by Kent Tamura.

Null characters handled incorrectly in ToNumber conversion
https://bugs.webkit.org/show_bug.cgi?id=38088

  • runtime/JSGlobalObjectFunctions.cpp: (JSC::parseInt): Changed code to use UTF8String().data() instead of ascii() to fix the thread safety issue. Code path is covered by existing tests in run-javascriptcore-tests. (JSC::parseFloat): Moved comment to UString::toDouble since the issue affects all clients, not just parseFloat. Specifically, this also affects standard JavaScript numeric conversion, ToNumber.
  • runtime/UString.cpp: (JSC::UString::toDouble): Added a comment about incorrect space skipping. Changed trailing junk check to use the length of the CString instead of checking for a null character. Also got rid of a little unneeded logic in the case where we tolerate trailing junk.

2010-05-26 Darin Adler <Darin Adler>

Reviewed by Kent Tamura.

Null characters handled incorrectly in ToNumber conversion
https://bugs.webkit.org/show_bug.cgi?id=38088

  • fast/js/ToNumber-expected.txt: Updated for new tests and to expect PASS for two null character tests.
  • fast/js/ToNumber.js: Added more test cases.
  • fast/js/parseFloat-expected.txt: Updated for new test case.
  • fast/js/script-tests/parseFloat.js: Added a test case.
3:52 PM Changeset in webkit [60327] by eric@webkit.org
  • 2 edits in trunk/WebCore

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

Reviewed by Yury Semikhatsky.

Web Inspector: [REGRESSION] Query parameters are not displayed in the resources headers section.

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

  • inspector/front-end/ResourceView.js: (WebInspector.ResourceView): (WebInspector.ResourceView.prototype._refreshRequestPayload):
3:41 PM Changeset in webkit [60326] by eric@webkit.org
  • 11 edits
    1 copy
    2 adds in trunk/WebCore

2010-05-27 Nico Weber <thakis@chromium.org>

Reviewed by Eric Seidel

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

Add Yank support to chromium mac. Do this by moving WebKit Mac's
implementation of Editor::yankFromKillRing() into its own class and
then using that.

  • editing/Editor.cpp: Use new KillRing class.
  • editing/Editor.h: (WebCore::Editor::killRing): Use new KillRing class.
  • editing/EditorCommand.cpp: (WebCore::executeYankAndSelect): Use new KillRing class.
  • platform/KillRing.h: Add new KillRing class, which acts as null object. (WebCore::KillRing::~KillRing):
  • platform/mac/KillRingMac.h: Add new KillRingMac class, which writes to the mac's kill ring.
  • platform/mac/KillRingMac.mm: Add new KillRingMac class, which writes to the mac's kill ring.
3:26 PM Changeset in webkit [60325] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-27 Ben Murdoch <benm@google.com>

Reviewed by Jian Li.

Build break in FileStream.cpp
https://bugs.webkit.org/show_bug.cgi?id=39841

When ENABLE_BLOB_SLICE is not defined, an undefined variable is used
in FileStream.cpp:114. Fix by using the correct variable.

Build fix so no new tests.

  • html/FileStream.cpp: (WebCore::FileStream::openForRead): Replace undefined variable with a defined one.
2:57 PM Changeset in webkit [60324] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-27 Hans Wennborg <hans@chromium.org>

Reviewed by Jeremy Orlow.

[Chromium] Default popup window size should not depend on zoom level
https://bugs.webkit.org/show_bug.cgi?id=39835

V8DOMWindow::openCallback should not set width and height of new
window unless specified in the function's arguments.

There is already code to reset the new window's origin coordinates,
but the same thing should be done to its dimensions as well. Otherwise,
a new popup with unspecified size will have its size depending on the
parent's zoom level, which is not desirable.

This is the same as what is done in
bindings/js/JSDOMWindowCustom.cpp:826.

  • bindings/v8/custom/V8DOMWindowCustom.cpp: (WebCore::V8DOMWindow::openCallback):
2:45 PM Changeset in webkit [60323] by eric@webkit.org
  • 3 edits in trunk/JavaScriptCore

2010-05-27 Nathan Lawrence <nlawrence@apple.com>

Reviewed by Geoffrey Garen.

Search for the new allocation one word at a time. Improves
performance on SunSpider by approximately 1%.
http://bugs.webkit.org/show_bug.cgi?id=39758

  • runtime/Collector.cpp: (JSC::Heap::allocate):
  • runtime/Collector.h: (JSC::CollectorBitmap::advanceToNextPossibleFreeCell):
1:26 PM Changeset in webkit [60322] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-27 Anders Bakken <agbakken@gmail.com>

Reviewed by David Levin.

qt_instance.cpp has coding-style errors
https://bugs.webkit.org/show_bug.cgi?id=39744

Fix webkit coding style issues in qt_instance.cpp

  • bridge/qt/qt_instance.cpp: (JSC::Bindings::QtInstance::getQtInstance): (JSC::Bindings::QtInstance::removeCachedMethod): (JSC::Bindings::QtInstance::markAggregate): (JSC::Bindings::QtInstance::getPropertyNames): (JSC::Bindings::QtInstance::stringValue): (JSC::Bindings::QtField::name): (JSC::Bindings::QtField::valueFromInstance):
1:14 PM Changeset in webkit [60321] by jparent@chromium.org
  • 3 edits in trunk/LayoutTests

Unreviewed.

Update Chromium expectations for runner.html after r60278.

  • platform/chromium-mac/html5lib/runner-expected.txt:
  • platform/chromium-win/html5lib/runner-expected.txt:
1:14 PM Changeset in webkit [60320] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-27 Anders Bakken <agbakken@gmail.com>

Reviewed by David Levin.

qt_instance.h has coding-style errors
https://bugs.webkit.org/show_bug.cgi?id=39743

Fix webkit coding style issues in qt_instance.h

  • bridge/qt/qt_instance.h:
1:01 PM Changeset in webkit [60319] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-27 Anders Bakken <agbakken@gmail.com>

Reviewed by David Levin.

qt_class.h has coding-style errors
https://bugs.webkit.org/show_bug.cgi?id=39742

Fix webkit coding style issues in qt_class.h

  • bridge/qt/qt_class.h:
12:50 PM Changeset in webkit [60318] by kov@webkit.org
  • 1 copy in releases/WebKitGTK/webkit-1.3.1

Tagging 1.3.1.

12:22 PM Changeset in webkit [60317] by eric.carlson@apple.com
  • 4 edits in trunk/WebCore

2010-05-27 Eric Carlson <eric.carlson@apple.com>

Reviewed by Darin Adler.

<rdar://problem/8016158> Crash in CVPixelBufferCreateResolvedAttributesDictionary with RLE
compressed movie.

Configure the visual context to generate Direct3D compatible pixel buffers when we are able to
use a CAImageQueue so there will be less conversion required before display. This change also
works around the issue that causes the RLE compressed movie to crash.

  • platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp: (WebCore::MediaPlayerPrivateQuickTimeVisualContext::load): Pass enum to QTMovieVisualContext constructor instead of CFDictionary.
  • platform/graphics/win/QTMovieVisualContext.cpp: (SetNumberValue): (getPixelBufferCreationOptions): New, create options dictionary appropriate for the visual context type. (pixelBufferCreationOptions): New, return options dictionary appropriate for the visual context type. (QTMovieVisualContextPriv::QTMovieVisualContextPriv): Get the options dictionary from getPixelBufferCreationOptions insteaad of taking it as a parameter. (QTMovieVisualContext::QTMovieVisualContext): Take enum instead of CFDictionary for visual context configuration type.
  • platform/graphics/win/QTMovieVisualContext.h:
12:07 PM Changeset in webkit [60316] by andersca@apple.com
  • 4 edits in trunk

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

Reviewed by Adam Roben.

[Qt] REGRESSION(r60258): It broke 10 tests.
https://bugs.webkit.org/show_bug.cgi?id=39819

  • plugins/qt/PluginDataQt.cpp: (WebCore::PluginData::initPlugins): Append the MimeClassInfo object after it's been initialized.

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

Reviewed by Adam Roben.

[Qt] REGRESSION(r60258): It broke 10 tests.
https://bugs.webkit.org/show_bug.cgi?id=39819

Remove tests from the skipped list.

  • platform/qt/Skipped:
12:02 PM Changeset in webkit [60315] by kevino@webkit.org
  • 8 edits in trunk

[wx] Build fixes for Windows after recent changes.

11:37 AM Changeset in webkit [60314] by ap@apple.com
  • 2 edits in trunk/LayoutTests

https://bugs.webkit.org/show_bug.cgi?id=39852
[Qt] fast/encoding/yentest.html fails

  • platform/Qt/Skipped: Disabling the new tests for backslash transcoding.
11:34 AM Changeset in webkit [60313] by kov@webkit.org
  • 5 edits in trunk/WebKit/gtk

2010-05-27 Gustavo Noronha Silva <Gustavo Noronha Silva>

Update documentation control files, and fix Since tags for 1.3.1.

  • docs/webkitgtk-docs.sgml:
  • docs/webkitgtk-sections.txt:
  • webkit/webkitwebbackforwardlist.cpp:
  • webkit/webkitwebview.cpp:
11:19 AM Changeset in webkit [60312] by kov@webkit.org
  • 2 edits in trunk

2010-05-27 Gustavo Noronha Silva <Gustavo Noronha Silva>

Final make distcheck fix - clean up generated GDOM files on distclean.

  • GNUmakefile.am:
10:27 AM Changeset in webkit [60311] by ap@apple.com
  • 1 edit
    6 adds in trunk/LayoutTests

Reviewed by Shinichiro Hamaji.

https://bugs.webkit.org/show_bug.cgi?id=39606
Land tests for <rdar://problem/3277733>: \ in JavaScript mishandled when encoding is Japanese

  • fast/encoding/resources/yentestexternal.js: Added.
  • fast/encoding/resources/yentestexternal2.js: Added.
  • fast/encoding/yentest-expected.txt: Added.
  • fast/encoding/yentest.html: Added.
  • fast/encoding/yentest2-expected.txt: Added.
  • fast/encoding/yentest2.html: Added.
10:26 AM Changeset in webkit [60310] by Chris Fleizach
  • 2 edits in trunk/WebCore

Bug 39324 - AX: WebKit doesn't call [super -accessibilityAttributeValue:attribute forParameter:] when it encounters a parameter$
https://bugs.webkit.org/show_bug.cgi?id=39324

No review, build fixage.

Rolling out change from r60307 until a better fix is ready.

  • accessibility/mac/AccessibilityObjectWrapper.mm:

(-[AccessibilityObjectWrapper accessibilityAttributeValue:forParameter:]):

10:12 AM Changeset in webkit [60309] by yurys@chromium.org
  • 2 edits in trunk/WebCore

2010-05-27 Yury Semikhatsky <yurys@chromium.org>

Reviewed by Pavel Feldman.

[v8] Web Inspector: check that ScriptDebugListener was not removed
while messages were dispatched in the nested loop.
https://bugs.webkit.org/show_bug.cgi?id=39838

  • bindings/v8/ScriptDebugServer.cpp: (WebCore::ScriptDebugServer::handleV8DebugEvent):
9:26 AM Changeset in webkit [60308] by yurys@chromium.org
  • 2 edits in trunk/WebCore

2010-05-27 Yury Semikhatsky <yurys@chromium.org>

Reviewed by Pavel Feldman.

[v8] Web Inspector: undefined script URL value should be converted to an emtpy
WebCore::String instead of "undefined" string. Otherwise it's shown
in the Scripts panel with "undefined:<line no>" URL.
https://bugs.webkit.org/show_bug.cgi?id=39845

  • bindings/v8/ScriptDebugServer.cpp: (WebCore::ScriptDebugServer::dispatchDidParseSource):
9:20 AM Changeset in webkit [60307] by Chris Fleizach
  • 2 edits in trunk/WebCore

AX: WebKit doesn't call [super -accessibilityAttributeValue:attribute forParameter:] when it encounters a parameterized attribute that it doesn't handle.
https://bugs.webkit.org/show_bug.cgi?id=39324

Reviewed by Darin Adler.

Make sure that accessibilityAttributeValue:forParameter: will default to its super's implementation. This is how AppKit expects objects to behave.

  • accessibility/mac/AccessibilityObjectWrapper.mm:

(-[AccessibilityObjectWrapper accessibilityAttributeValue:forParameter:]):

9:18 AM Changeset in webkit [60306] by xan@webkit.org
  • 4 edits in trunk

2010-05-27 Xan Lopez <xlopez@igalia.com>

More GTK+ distcheck fixes.

  • GNUmakefile.am:
9:16 AM Changeset in webkit [60305] by xan@webkit.org
  • 4 edits in trunk

2010-05-27 Xan Lopez <xlopez@igalia.com>

Reviewed by Gustavo Noronha.

Bump for 1.3.1 release.

  • configure.ac:

WebKit/gtk:

2010-05-27 Xan Lopez <xlopez@igalia.com>

Reviewed by Gustavo Noronha.

Update for 1.3.1 release.

  • NEWS:
8:55 AM Changeset in webkit [60304] by kov@webkit.org
  • 2 edits in trunk/JavaScriptCore

2010-05-27 Gustavo Noronha Silva <Gustavo Noronha Silva>

More build fixage for make dist.

  • GNUmakefile.am:
8:48 AM Changeset in webkit [60303] by yurys@chromium.org
  • 2 edits in trunk/WebKit/chromium

2010-05-27 Yury Semikhatsky <yurys@chromium.org>

Reviewed by Pavel Feldman.

Resume script execution if user tries to navigate to another URL
https://bugs.webkit.org/show_bug.cgi?id=39842

  • src/WebDevToolsAgentImpl.cpp: (WebKit::): (WebKit::WebDevToolsAgentImpl::didNavigate):
8:16 AM Changeset in webkit [60302] by yurys@chromium.org
  • 2 edits in trunk/WebCore

2010-05-27 Yury Semikhatsky <yurys@chromium.org>

Reviewed by Pavel Feldman.

[v8] Web Inspector: notify ScriptDebugListener when execution is resumed
https://bugs.webkit.org/show_bug.cgi?id=39838

  • bindings/v8/ScriptDebugServer.cpp: (WebCore::ScriptDebugServer::handleV8DebugEvent):
8:05 AM Changeset in webkit [60301] by eric@webkit.org
  • 2 edits in trunk/LayoutTests

2010-05-27 Tony Gentilcore <tonyg@chromium.org>

Reviewed by Ojan Vafai.

Mark some SVG tests as flaky on Windows
https://bugs.webkit.org/show_bug.cgi?id=39790

The following SVG tests have been failing intermittently on the
chromium console for the past 2+ days.

  • svg/clip-path/clip-path-childs-clipped.svg
  • svg/clip-path/clip-path-evenodd-nonzero.svg
  • svg/clip-path/clip-path-text-and-shape.svg
  • svg/text/text-text-04-t.svg
  • svg/text/text-text-05-t.svg
  • platform/chromium/test_expectations.txt:
7:36 AM Changeset in webkit [60300] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-27 Anders Bakken <agbakken@gmail.com>

Reviewed by David Levin.

qt_pixmapruntime.cpp has coding-style errors
https://bugs.webkit.org/show_bug.cgi?id=39745

Fix webkit coding style issues in qt_pixmapruntime.cpp

  • bridge/qt/qt_pixmapruntime.cpp:
6:42 AM Changeset in webkit [60299] by jorlow@chromium.org
  • 4 edits
    2 copies
    2 moves
    4 adds
    1 delete in trunk

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

Reviewed by Steve Block.

Clean up IndexedDB layout tests
https://bugs.webkit.org/show_bug.cgi?id=39748

Split basics.js into a common library plus 2 other tests. This
will make it easier to ensure good test coverage as we go forward
without too much cut and paste coding. For the most part, each
IndexedDB idl file should have its own test in the future (at a
minimum).

Also switching the 'description' portion of the test expectation
to reflect the build fix from last night (which breaks the feature).

  • storage/indexeddb/basics-expected.txt: Removed.
  • storage/indexeddb/basics.html: Removed.
  • storage/indexeddb/idb-database-request-expected.txt: Added.
  • storage/indexeddb/idb-database-request.html: Added.
  • storage/indexeddb/indexed-database-request-expected.txt: Added.
  • storage/indexeddb/indexed-database-request.html: Added.
  • storage/indexeddb/resources/shared.js: Added. (init): (done): (verifyEventCommon): (verifyErrorEvent): (verifySuccessEvent): (verifyResult): (unexpectedErrorCallback):
  • storage/indexeddb/script-tests/TEMPLATE.html:
  • storage/indexeddb/script-tests/basics.js: Removed.
  • storage/indexeddb/script-tests/idb-database-request.js: Added. (openSuccess): (test):
  • storage/indexeddb/script-tests/indexed-database-request.js: Added. (openCallback): (test):

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

Reviewed by Steve Block.

Clean up IndexedDB layout tests
https://bugs.webkit.org/show_bug.cgi?id=39748

Remove an assert that always fires.

Tests: storage/indexeddb/idb-database-request.html

storage/indexeddb/indexed-database-request.html

  • storage/IDBDatabaseImpl.cpp: (WebCore::IDBDatabaseImpl::objectStores):
6:35 AM Changeset in webkit [60298] by kov@webkit.org
  • 2 edits in trunk

2010-05-27 Gustavo Noronha Silva <Gustavo Noronha Silva>

Reviewed by Xan Lopez.

Build fix for introspection support - make sure DOM headers are
included by the GI scanner.

  • GNUmakefile.am:
6:12 AM Changeset in webkit [60297] by pfeldman@chromium.org
  • 3 edits
    2 deletes in trunk

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

Reviewed by Yury Semikhatsky.

Web Inspector: Get CSS rule offsets lazily.

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

  • inspector/InspectorCSSStore.cpp: (WebCore::InspectorCSSStore::getStartEndOffsets):
  • inspector/InspectorDOMAgent.cpp: (WebCore::InspectorDOMAgent::buildObjectForRule):
6:02 AM Changeset in webkit [60296] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-27 Anders Bakken <agbakken@gmail.com>

Reviewed by David Levin.

qt_class.cpp has coding-style errors
https://bugs.webkit.org/show_bug.cgi?id=39741

Fix webkit coding style issues in qt_class.cpp

  • bridge/qt/qt_class.cpp: (JSC::Bindings::QtClass::fieldNamed):
5:48 AM Changeset in webkit [60295] by eric@webkit.org
  • 1 edit
    3 adds in trunk/LayoutTests

2010-05-27 Jedrzej Nowacki <jedrzej.nowacki@nokia.com>

Reviewed by Brady Eidson.

New Layout test for the history.pushState function.

The test checks if history.length property is correct after
a few pushState calls.

history.pushState doesn't work for the first page in a window.
https://bugs.webkit.org/show_bug.cgi?id=39418

  • fast/loader/stateobjects/pushstate-without-history-expected.txt: Added.
  • fast/loader/stateobjects/pushstate-without-history.html: Added.
5:36 AM Changeset in webkit [60294] by eric@webkit.org
  • 2 edits in trunk/JavaScriptCore

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

Reviewed by Darin Adler.

RVCT does not have strnstr.
https://bugs.webkit.org/show_bug.cgi?id=39719

Add COMPILER(RVCT) guard to strnstr in StringExtras.h as RVCT does not provide strnstr.

  • wtf/StringExtras.h:
5:14 AM Changeset in webkit [60293] by Philippe Normand
  • 3 edits in trunk/WebKitTools

2010-05-27 Philippe Normand <pnormand@igalia.com>

Reviewed by Shinichiro Hamaji.

check-webkit-style complains about use of NULL in GTK function calls that require sentinels
https://bugs.webkit.org/show_bug.cgi?id=39372

Don't warn about NULL in g_*() calls. Zero can't be used instead
for calls like g_build_filename and g_object_get/set.

  • Scripts/webkitpy/style/checkers/cpp.py:
  • Scripts/webkitpy/style/checkers/cpp_unittest.py:
5:12 AM Changeset in webkit [60292] by eric@webkit.org
  • 2 edits in trunk/WebCore

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

Reviewed by Darin Adler.

Remove bit-rotten INSTRUMENT_LAYOUT_SCHEDULING code from HTMLTokenizer
https://bugs.webkit.org/show_bug.cgi?id=39714

This came from a discussion on #webkit with Hyatt about this code
being old and no longer used to either of our knowledge.

No functional changes, thus no tests.

I also removed a bogus FIXME I had added in an earlier patch
before I understood what the HTMLTokenizer was trying to do.

  • html/HTMLTokenizer.cpp: (WebCore::HTMLTokenizer::scriptHandler): (WebCore::HTMLTokenizer::scriptExecution): (WebCore::HTMLTokenizer::continueProcessing): (WebCore::HTMLTokenizer::willWriteHTML): (WebCore::HTMLTokenizer::didWriteHTML): (WebCore::HTMLTokenizer::timerFired): (WebCore::HTMLTokenizer::executeExternalScriptsIfReady):
5:01 AM Changeset in webkit [60291] by eric@webkit.org
  • 6 edits in trunk/WebCore

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

Reviewed by Adam Barth.

Add callbacks to ScriptController to allow notifications on named items additions and removals
https://bugs.webkit.org/show_bug.cgi?id=39679

  • bindings/js/ScriptController.h: Callbacks with empty implementation added. (WebCore::ScriptController::namedItemAdded): (WebCore::ScriptController::namedItemRemoved):
  • bindings/v8/ScriptController.cpp: Empty implementation of callbacks. (WebCore::ScriptController::namedItemAdded): (WebCore::ScriptController::namedItemRemoved):
  • bindings/v8/ScriptController.h: Callbacks added.
  • html/HTMLDocument.cpp: Hooking in callbacks. (WebCore::HTMLDocument::addItemToMap): (WebCore::HTMLDocument::removeItemFromMap):
  • html/HTMLDocument.h:
4:43 AM Changeset in webkit [60290] by eric@webkit.org
  • 10 edits
    2 adds in trunk

2010-05-27 Zhenyao Mo <zmo@google.com>

Reviewed by Dimitri Glazkov.

Implement lazy clearing of renderbuffers
https://bugs.webkit.org/show_bug.cgi?id=36248

  • fast/canvas/webgl/renderbuffer-initialization-expected.txt: Added.
  • fast/canvas/webgl/renderbuffer-initialization.html: Added.

2010-05-27 Zhenyao Mo <zmo@google.com>

Reviewed by Dimitri Glazkov.

Implement lazy clearing of renderbuffers
https://bugs.webkit.org/show_bug.cgi?id=36248

Test: fast/canvas/webgl/renderbuffer-initialization.html

  • html/canvas/WebGLFramebuffer.cpp: (WebCore::WebGLFramebuffer::WebGLFramebuffer): Init added members. (WebCore::WebGLFramebuffer::setAttachment): Set attachment object. (WebCore::WebGLFramebuffer::onBind): Perform buffer clearing if needed. (WebCore::WebGLFramebuffer::onAttachedObjectChange): Ditto. (WebCore::WebGLFramebuffer::isUninitialized): Check whether an attached object is uninitialized renderbuffer. (WebCore::WebGLFramebuffer::setInitialized): After initialize a renderbuffer, set the flag. (WebCore::WebGLFramebuffer::initializeRenderbuffers): Clear un-initialized renderbuffers if framebuffer is complete.
  • html/canvas/WebGLFramebuffer.h: (WebCore::WebGLFramebuffer::isDepthAttached): Changed to check object. (WebCore::WebGLFramebuffer::isStencilAttached): Ditto. (WebCore::WebGLFramebuffer::isDepthStencilAttached): Ditto.
  • html/canvas/WebGLRenderbuffer.cpp: (WebCore::WebGLRenderbuffer::WebGLRenderbuffer): Init added members.
  • html/canvas/WebGLRenderbuffer.h: (WebCore::WebGLRenderbuffer::isInitialized): As the function name. (WebCore::WebGLRenderbuffer::setInitialized): Ditto.
  • html/canvas/WebGLRenderingContext.cpp: (WebCore::WebGLRenderingContext::bindFramebuffer): Call onBind(). (WebCore::WebGLRenderingContext::copyTexImage2D): Call onAttachedObjectChange(). (WebCore::WebGLRenderingContext::deleteRenderbuffer): Ditto. (WebCore::WebGLRenderingContext::deleteTexture): Ditto. (WebCore::WebGLRenderingContext::framebufferRenderbuffer): Call setAttachment. (WebCore::WebGLRenderingContext::framebufferTexture2D): Call onAttachedObjectChange(). (WebCore::WebGLRenderingContext::renderbufferStorage): Ditto. (WebCore::WebGLRenderingContext::texImage2DBase): Ditto.
  • platform/graphics/mac/GraphicsContext3DMac.cpp: (WebCore::GraphicsContext3D::reshape): Initialize internal buffers.

2010-05-27 Zhenyao Mo <zmo@google.com>

Reviewed by Dimitri Glazkov.

Implement lazy clearing of renderbuffers
https://bugs.webkit.org/show_bug.cgi?id=36248

  • src/WebGraphicsContext3DDefaultImpl.cpp: (WebKit::WebGraphicsContext3DDefaultImpl::reshape): Clear WebGL internal buffers.
3:51 AM Changeset in webkit [60289] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-27 Kristian Monsen <kristianm@google.com>

Reviewed by Darin Adler.

Compile fix for Android, added include for Refcounted.h, this did not get
included through Threading.h in Android.
https://bugs.webkit.org/show_bug.cgi?id=39678

Build fix only, no new tests.

  • storage/SQLTransactionSyncCallback.h:
3:39 AM Changeset in webkit [60288] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-27 Joone Hur <joone@kldp.org>

Reviewed by Xan Lopez.

Add GtkVersioning.h in ScrollbackGtk.cpp for maintaining compatibility with the previous GTK+

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

  • platform/gtk/ScrollbarGtk.cpp:
3:28 AM Changeset in webkit [60287] by eric@webkit.org
  • 6 edits
    4 adds in trunk

2010-05-27 Hans Wennborg <hans@chromium.org>

Reviewed by Alexey Proskuryakov.

Increase limit on number of (i)frames from 200 to 1000.
https://bugs.webkit.org/show_bug.cgi?id=39427

Add layout tests that test the possibility of generating 1000 iframes.

  • compositing/iframes/lots-of-iframes-expected.txt: Added.
  • compositing/iframes/lots-of-iframes.html: Added.
  • compositing/iframes/lots-of-objects-expected.txt: Added.
  • compositing/iframes/lots-of-objects.html: Added.

2010-05-27 Hans Wennborg <hans@chromium.org>

Reviewed by Alexey Proskuryakov.

Increase limit on number of (i)frames from 200 to 1000.
https://bugs.webkit.org/show_bug.cgi?id=39427

The limit on number of iframes was introduced in r3707 back in 2003.
An example of a page that is broken because of this is:
http://vimcolorschemetest.googlecode.com/svn/html/index-c.html
Neither Firefox nor IE has such a limit.

It seems that WebKit can handle a significantly higher number of frames, and
the original reasons for imposing the limit are believed to be gone.

Tests: compositing/iframes/lots-of-iframes.html

compositing/iframes/lots-of-objects.html

  • html/HTMLFrameElementBase.cpp: (WebCore::HTMLFrameElementBase::isURLAllowed):
  • page/FrameTree.cpp: (WebCore::FrameTree::uniqueChildName):
  • page/Page.h:
  • rendering/RenderEmbeddedObject.cpp: (WebCore::isURLAllowed):
2:51 AM Changeset in webkit [60286] by eric@webkit.org
  • 2 edits in trunk/WebCore

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

Reviewed by Xan Lopez.

[GTK] writeToFile fails when length is large
https://bugs.webkit.org/show_bug.cgi?id=39666

writeToFile forgot to increment data pointer.

  • platform/gtk/FileSystemGtk.cpp: (WebCore::writeToFile):
2:37 AM Changeset in webkit [60285] by eric@webkit.org
  • 3 edits
    7 adds in trunk

2010-05-27 Luiz Agostini <luiz.agostini@openbossa.org>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Platform plugin example
https://bugs.webkit.org/show_bug.cgi?id=39489

Adding a Qt platform plugin example to repository.

  • examples/platformplugin/README: Added.
  • examples/platformplugin/WebPlugin.cpp: Added. (Popup::populateList): (Popup::onItemSelected): (WebPopup::WebPopup): (WebPopup::~WebPopup): (WebPopup::createSingleSelectionPopup): (WebPopup::createMultipleSelectionPopup): (WebPopup::createPopup): (WebPopup::show): (WebPopup::hide): (WebPopup::popupClosed): (WebPopup::itemClicked): (SingleSelectionPopup::SingleSelectionPopup): (MultipleItemListDelegate::MultipleItemListDelegate): (MultipleItemListDelegate::paint): (MultipleSelectionPopup::MultipleSelectionPopup): (WebPlugin::supportsExtension):
  • examples/platformplugin/WebPlugin.h: Added. (Popup::Popup): (WebPlugin::createSelectInputMethod):
  • examples/platformplugin/platformplugin.pro: Added.
  • examples/platformplugin/qwebkitplatformplugin.h: Copied from WebKit/qt/Api/qwebkitplatformplugin.h. (QWebSelectData::~QWebSelectData): (QWebSelectData::): (QWebSelectMethod::~QWebSelectMethod): (QWebKitPlatformPlugin::~QWebKitPlatformPlugin): (QWebKitPlatformPlugin::):

2010-05-27 Luiz Agostini <luiz.agostini@openbossa.org>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Platform plugin example
https://bugs.webkit.org/show_bug.cgi?id=39489

Exempting directory WebKit/qt/examples/ from style guide.

  • Scripts/webkitpy/style/checker.py:
2:30 AM Changeset in webkit [60284] by Martin Robinson
  • 2 edits in trunk/WebKit/gtk

[GTK] Dragging onto the desktop causes a critical GLib warning
https://bugs.webkit.org/show_bug.cgi?id=39718

Reviewed by Xan Lopez.

Only increment the window reference count if it is not null during drag-end
signal processing.

  • webkit/webkitwebview.cpp:

(webkit_web_view_drag_end): Guard against null window values.

2:21 AM Changeset in webkit [60283] by Philippe Normand
  • 3 edits in trunk/WebKitTools

2010-05-26 Philippe Normand <pnormand@igalia.com>

Reviewed by David Levin.

[style] Allow usage of NULL in gst_*_many()
https://bugs.webkit.org/show_bug.cgi?id=39740

Don't warn if NULL is used by gst_*_many() functions. Zero can't
be used for the reason explained in Bug 32858.

  • Scripts/webkitpy/style/checkers/cpp.py:
  • Scripts/webkitpy/style/checkers/cpp_unittest.py:
1:30 AM Changeset in webkit [60282] by hyatt@apple.com
  • 7 edits in trunk/WebCore

https://bugs.webkit.org/show_bug.cgi?id=39783, clean up the moveChild functions on RenderBlock.

Reviewed by Sam Weinig.

Eliminate the need to pass the toChildrenList to the moveChild functions by tightening up the type of the
|to| argument to be a RenderBlock.

Add a moveChildrenTo function that can move a range of children, and patch places that were doing this
by hand.

Make the append forms of the functions just use the insert forms with a beforeChild of 0.

Patch insertChildNode in RenderObjectChildList so that it passes the fullInsert parameter through in the
case where it does an append.

Add an assert to RenderLayer that catches bad structure built when the fullInsert/Remove parameters are
messed up when using append/insertChildNode.

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::splitAnonymousBlocksAroundChild):
(WebCore::RenderBlock::makeChildrenAnonymousColumnBlocks):
(WebCore::RenderBlock::createAndAppendRootInlineBox):
(WebCore::RenderBlock::moveChildTo):
(WebCore::RenderBlock::moveChildrenTo):
(WebCore::RenderBlock::makeChildrenNonInline):
(WebCore::RenderBlock::removeChild):

  • rendering/RenderBlock.h:

(WebCore::RenderBlock::moveChildTo):
(WebCore::RenderBlock::moveAllChildrenTo):
(WebCore::RenderBlock::moveChildrenTo):

  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::addChild):

  • rendering/RenderObjectChildList.cpp:

(WebCore::RenderObjectChildList::insertChildNode):

  • rendering/RenderRubyBase.cpp:

(WebCore::RenderRubyBase::moveInlineChildren):

1:30 AM Changeset in webkit [60281] by Csaba Osztrogonác
  • 2 edits in trunk/LayoutTests

Unreviewed. Add failing tests to the Skipped list temporarily.

[Qt] REGRESSION(r60258): It broke 10 tests.
https://bugs.webkit.org/show_bug.cgi?id=39819

  • platform/qt/Skipped:
1:17 AM Changeset in webkit [60280] by eric@webkit.org
  • 6 edits in trunk

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

Reviewed by Adam Barth.

Add <pre>/<listing> hack to HTML5Lexer to fix the last remaining HTML5 test suite regressions
https://bugs.webkit.org/show_bug.cgi?id=39818

  • html5lib/runner-expected-html5.txt:

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

Reviewed by Adam Barth.

Add <pre>/<listing> hack to HTML5Lexer to fix the last remaining HTML5 test suite regressions
https://bugs.webkit.org/show_bug.cgi?id=39818

HTML parsers are supposed to ignore the first \n after a <pre> or <listing> tag
for authoring convenience. Our new HTML5Lexer didn't have this hack yet
so there were 4 HTML5 tests failing. Fixing this fixed the last of the HTML5
test suite regressions using the HTML5Lexer vs the old lexer.

  • html/HTML5Lexer.cpp: (WebCore::HTML5Lexer::reset): (WebCore::HTML5Lexer::nextToken):
  • html/HTML5Lexer.h: (WebCore::HTML5Lexer::skipLeadingNewLineForListing):
  • html/HTML5TreeBuilder.cpp: (WebCore::HTML5TreeBuilder::passTokenToLegacyParser):
1:00 AM Changeset in webkit [60279] by abarth@webkit.org
  • 1 add in trunk/LayoutTests/html5lib/runner-expected-html5.txt

Add missing file from my last commit.

12:44 AM Changeset in webkit [60278] by abarth@webkit.org
  • 5 edits
    3 deletes in trunk

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

Reviewed by Eric Seidel.

Remove custom webkit runner and update normal runner with our nifty
goodness.

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

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

Reviewed by Eric Seidel.

Update script to run the normal version of the parser tests.

  • Scripts/test-html5-parser:
12:20 AM Changeset in webkit [60277] by abarth@webkit.org
  • 2 edits in trunk/WebKitTools

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

Reviewed by Eric Seidel.

Add HTML5 parser support to run-webkit-tests
https://bugs.webkit.org/show_bug.cgi?id=39815

  • Scripts/old-run-webkit-tests:
12:18 AM Changeset in webkit [60276] by rolandsteiner@chromium.org
  • 2 edits in trunk/WebKit/chromium

2010-05-26 Roland Steiner <rolandsteiner@chromium.org>

Reviewed by NOBODY (layout test crashing fix).

Bug 39811 - WebPluginListBuilderImpl::addMediaTypeToLastPlugin does not initialize pluginIndex
https://bugs.webkit.org/show_bug.cgi?id=39811

Initialize the pluginIndex field (quick fix).

Tests: covered by fast/dom/prototype-inheritance-2.html
(crashed under Chromium Linux and Windows)

  • src/WebPluginListBuilderImpl.cpp: (WebKit::WebPluginListBuilderImpl::addMediaTypeToLastPlugin):
12:14 AM Changeset in webkit [60275] by eric@webkit.org
  • 17 edits
    1 copy
    1 add in trunk

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

Reviewed by Adam Barth.

Update our expectations now that we're handling external scripts.

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

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

Reviewed by Adam Barth.

Teach the HTML5 parser how to handle external scripts
https://bugs.webkit.org/show_bug.cgi?id=39716

Make it possible for the HTML5Tokenizer to run external scripts.
I created a new class HTML5ScriptRunner to hold all of the
script-logic which is scattered throughout the old HTMLTokenizer.

The design is for the HTML5Tokenizer (the "controller") to hold
the Lexer, TreeBuilder and ScriptRunner. The Lexer returns back
to the controller, which passes tokens to the TreeBuilder. When the
treebuilder encounters a </script> tag it pauses itself and returns
back to the controller which calls the ScriptRunner. The TreeBuilder
is un-paused when the HTML5Tokenizer calls takeScriptToProcess().

The ScriptRunner attempts to process the passed script, and additionally
any blocked scripts it can. It returns to the controller indicating if
parsing should continue. If not, callbacks when external scripts load
or when stylesheets are finished parsing will cause the controller to
kick off script execution and parsing again at a later point.

  • WebCore.xcodeproj/project.pbxproj:
    • Add HTML5ScriptRunner.*
  • bindings/js/CachedScriptSourceProvider.h:
    • Add missing include discovered while building.
  • dom/ScriptElement.cpp: (WebCore::ScriptElement::finishParsingChildren):
    • Remove previous hack for inline <script> execution.
  • dom/ScriptElement.h:
    • Explain the HTML5 spec names for m_evaluated and m_createdByParser.
  • html/HTML5ScriptRunner.cpp: Added. (WebCore::HTML5ScriptRunner::HTML5ScriptRunner):
    • The HTML5Tokenizer is passed to the HTML5ScriptRunner as a CachedResourceClient. The HTML5ScriptRunner will register the HTML5Tokenizer for notifyFinished callbacks when the scripts load. The HTML5Tokenizer is expected to call the HTML5ScriptRunner to execute any loaded scripts at that point.

(WebCore::HTML5ScriptRunner::~HTML5ScriptRunner):
(WebCore::HTML5ScriptRunner::frame): Helper method.
(WebCore::createScriptLoadEvent): Helper method.
(WebCore::createScriptErrorEvent): Helper method.
(WebCore::HTML5ScriptRunner::sourceFromPendingScript):

  • Helper method for dealing with both inline and external script types.

(WebCore::HTML5ScriptRunner::isPendingScriptReady):

  • Helper for dealing with both inline and external scripts.

(WebCore::HTML5ScriptRunner::executePendingScript):

  • Execute one script. Both external and inline scripts can become m_parsingBlockingScript if they can't be executed immediately after parsing.

(WebCore::HTML5ScriptRunner::execute):

  • Takes a script element from the tree builder and tries to process it.

(WebCore::HTML5ScriptRunner::executeParsingBlockingScripts):

  • Runs the current parsing blocking script if ready.
  • Running a script could add another parsing blocking script so we loop until there is no ready-to-run parsing blocking script.

(WebCore::HTML5ScriptRunner::executeScriptsWaitingForLoad):

  • Called by HTML5Tokenizer when a script loads.

(WebCore::HTML5ScriptRunner::executeScriptsWaitingForStylesheets):

  • Called by HTML5Tokenizer when stylesheets complete.

(WebCore::HTML5ScriptRunner::requestScript):

  • Transcription of the HTML5 spec.

(WebCore::HTML5ScriptRunner::runScript):

  • Transcription of the HTML5 spec.
  • html/HTML5ScriptRunner.h: Added.
    • New class to handle script loading and execution for the HTML5 parser.
  • html/HTML5Tokenizer.cpp: (WebCore::HTML5Tokenizer::HTML5Tokenizer):
    • Create a HTML5ScriptRunner and pass it "this" as the CachedResourceClient.

(WebCore::HTML5Tokenizer::pumpLexer):

  • When the parser is paused, try to run scripts.

(WebCore::HTML5Tokenizer::write):

  • Only pump the lexer when the parser is not paused.

(WebCore::HTML5Tokenizer::end):

  • finish() tells us that we've reached EOF, not end()
  • Only pump the lexer when the parser is not paused.

(WebCore::HTML5Tokenizer::finish):

  • Mark EOF, and end() if we're not waiting on scripts.

(WebCore::HTML5Tokenizer::isWaitingForScripts):

  • isPaused() seems to mean isPausedForExternalScripts().

(WebCore::HTML5Tokenizer::resumeParsingAfterScriptExecution):
(WebCore::HTML5Tokenizer::notifyFinished):
(WebCore::HTML5Tokenizer::executeScriptsWaitingForStylesheets):

  • html/HTML5Tokenizer.h:
  • html/HTML5TreeBuilder.cpp: (WebCore::HTML5TreeBuilder::HTML5TreeBuilder):
    • Add an m_isPaused flag.

(WebCore::HTML5TreeBuilder::handleScriptStartTag):
(WebCore::HTML5TreeBuilder::handleScriptEndTag):
(WebCore::HTML5TreeBuilder::takeScriptToProcess):

  • Acknowledge that the caller has received the script element. It is the caller's responsibility to execute the script if necessary and re-pause the tree builder if necessary.

(WebCore::HTML5TreeBuilder::passTokenToLegacyParser):

  • Save off the current script tag so that it can be passed to the HTML5ScriptRunner when we're paused.
  • html/HTML5TreeBuilder.h: (WebCore::HTML5TreeBuilder::setPaused): (WebCore::HTML5TreeBuilder::isPaused):

May 26, 2010:

11:54 PM Changeset in webkit [60274] by abarth@webkit.org
  • 3 edits in trunk/WebCore

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

Reviewed by Darin Adler.

Implement SegmentedString::lookAheadSlowCase
https://bugs.webkit.org/show_bug.cgi?id=39802

The slow case is need by the resumer test suite. Sadly, the resumer
test suite is really slow and produces infinite errors (many of which
are false positives). I'll land more of the resumer test suite in a
future patch.

  • platform/text/SegmentedString.cpp: (WebCore::SegmentedString::advance):
  • platform/text/SegmentedString.h: (WebCore::SegmentedString::lookAhead): (WebCore::SegmentedString::lookAheadIgnoringCase): (WebCore::SegmentedString::equalsLiterally): (WebCore::SegmentedString::equalsIgnoringCase): (WebCore::SegmentedString::lookAheadInline): (WebCore::SegmentedString::lookAheadSlowCase):
11:25 PM Changeset in webkit [60273] by barraclough@apple.com
  • 4 edits in trunk/JavaScriptCore

Bug 39795 - Add support for YARR JIT generation of greedy quantified parens at the end of the main disjunction.
(relanding r60267)

Reviewed by Oliver Hunt.

If the last item in a main disjunction is a quantified set of parentheses,
this is easier to code generate for than the general case for quantified
parentheses. This is because we never need to backtrack into the parentheses

  • the first match will be the final and accepted match.

This patch also somewhat reverts a recent change to when fallback to PCRE
occurs. At the minute the compiler is tracking on patterns which will
require JIT fallback. This is handy from a performance perspective (it saves
the failed attempt at JIT compilation), but it means introducing knowledge
of the JITs capabilities into the other layers of the regex compilers. For
the specific feature of back-references, add a flag tracking their presence
on the pattern, and make these expressions fallback without attempting to
JIT. For parentheses, return to detecting which cases are have or have not
been handled during JIT compilation.

18% progression on tagcloud, ~1.5% overall on sunspidey.

  • yarr/RegexCompiler.cpp:

(JSC::Yarr::RegexPatternConstructor::atomBackReference):
(JSC::Yarr::RegexPatternConstructor::quantifyAtom):

  • yarr/RegexJIT.cpp:

(JSC::Yarr::RegexGenerator::TermGenerationState::isLastTerm):
(JSC::Yarr::RegexGenerator::TermGenerationState::isMainDisjunction):
(JSC::Yarr::RegexGenerator::generateParenthesesGreedyNoBacktrack):
(JSC::Yarr::RegexGenerator::generateTerm):
(JSC::Yarr::RegexGenerator::RegexGenerator):
(JSC::Yarr::RegexGenerator::shouldFallBack):
(JSC::Yarr::jitCompileRegex):

  • yarr/RegexPattern.h:

(JSC::Yarr::RegexPattern::RegexPattern):
(JSC::Yarr::RegexPattern::reset):

10:56 PM Changeset in webkit [60272] by eric.carlson@apple.com
  • 4 edits in trunk/WebCore

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

Patch edited by Adele Peterson and Mark Rowe.
Reviewed by Eric Carlson

Video elements show no video on Windows machines that do not support accelerated compositing
https://bugs.webkit.org/show_bug.cgi?id=39446
rdar://problem/7999794


Create the visual context in setUpVideoRendering (as opposed to in load), and destroy it in
tearDownVideoRendering (as opposed to in the destructor.)

  • platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp: (WebCore::MediaPlayerPrivateQuickTimeVisualContext::~MediaPlayerPrivateQuickTimeVisualContext): (WebCore::MediaPlayerPrivateQuickTimeVisualContext::load): Moved creation of the visual context to setUpVideoRendering. (WebCore::MediaPlayerPrivateQuickTimeVisualContext::paint): Return early if the visual context isn't set up. (WebCore::MediaPlayerPrivateQuickTimeVisualContext::currentRenderingMode): If the visual context isn't set up, return MediaRenderingNone. (WebCore::MediaPlayerPrivateQuickTimeVisualContext::setUpVideoRendering): Create the visual context. (WebCore::MediaPlayerPrivateQuickTimeVisualContext::tearDownVideoRendering): Destroy the visual context. (WebCore::MediaPlayerPrivateQuickTimeVisualContext::hasSetUpVideoRendering): For software rendering mode, make sure the visual context has been set up when saying the setup has been done.
  • platform/graphics/win/QTMovieVisualContext.cpp: (QTMovieVisualContextPriv::~QTMovieVisualContextPriv): Destruction moved to tearDownVideoRendering. Also, make sure to cancel the visual context's newImageAvailable callback in the visual context's destructor. (QTMovieVisualContext::create): Added.
  • platform/graphics/win/QTMovieVisualContext.h:
10:17 PM Changeset in webkit [60271] by barraclough@apple.com
  • 4 edits in trunk/JavaScriptCore

Temporarily rolling out r60267, I appear to have hoesed perf at the last minute. :-/ Fixing.

Reviewed by NOBODY (revert).

  • yarr/RegexCompiler.cpp:

(JSC::Yarr::RegexPatternConstructor::atomBackReference):
(JSC::Yarr::RegexPatternConstructor::quantifyAtom):

  • yarr/RegexJIT.cpp:

(JSC::Yarr::RegexGenerator::TermGenerationState::term):
(JSC::Yarr::RegexGenerator::generateParenthesesSingle):
(JSC::Yarr::RegexGenerator::generateTerm):
(JSC::Yarr::RegexGenerator::RegexGenerator):
(JSC::Yarr::jitCompileRegex):

  • yarr/RegexPattern.h:

(JSC::Yarr::RegexPattern::RegexPattern):
(JSC::Yarr::RegexPattern::reset):

9:50 PM Changeset in webkit [60270] by kov@webkit.org
  • 6 edits in trunk

2010-05-26 Gustavo Noronha Silva <Gustavo Noronha Silva>

Build fixes for make distcheck.

  • GNUmakefile.am:
9:48 PM Changeset in webkit [60269] by tony@chromium.org
  • 2 edits in trunk/LayoutTests

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

Not reviewed, skipping new test on gtk.

[gtk] skip editing/input/scroll-viewport-page-up-down.html because of missing eventSender methods
https://bugs.webkit.org/show_bug.cgi?id=39808

  • platform/gtk/Skipped:
9:18 PM Changeset in webkit [60268] by tony@chromium.org
  • 12 edits
    3 adds in trunk

2010-05-26 Zelidrag Hornung <zelidrag@chromium.org>

Reviewed by Ojan Vafai.

Fixed frame page up/down scrolling calculation. Made sure that the
cursor moves with page up/down event. Please note that now for mac
editing behavior we will scroll the content to center the cursor on
page up/down while other platforms will align the cursor with the top of
displayed frame.
https://bugs.webkit.org/show_bug.cgi?id=38213

  • editing/input/option-page-up-down-expected.txt: Fixed page scroll calculation. Now scroll height is calculated only from the visible portion not the entire frame height.
  • editing/input/option-page-up-down.html: Ditto.
  • editing/input/scroll-viewport-page-up-down-expected.txt: Scrolling test of contenteditable iframe and div.
  • editing/input/scroll-viewport-page-up-down.html: Ditto.
  • editing/resources/contenteditable-iframe-fixed-size-src.html: Resource for the scrolling test above.
  • platform/mac/editing/selection/25228.html: Change the test to have the cursor on the right edge of the screen. The original test

wasn't testing the behavior anymore.

2010-05-26 Zelidrag Hornung <zelidrag@chromium.org>

Reviewed by Ojan Vafai.

Fixed frame page up/down scrolling calculation. Made sure that the
cursor moves with page up/down event. Please note that now for mac
editing behavior we will scroll the content to center the cursor on
page up/down while other platforms will align the cursor with the top of
displayed frame.
https://bugs.webkit.org/show_bug.cgi?id=38213

Tests: editing/input/option-page-up-down.html (fixed)

editing/input/scroll-viewport-page-up-down.html

  • WebCore.base.exp:
  • editing/EditorCommand.cpp: (WebCore::verticalScrollDistance): Fixed page scroll calculation. Now scroll height is calculated only from the visible portion not the entire frame height. (WebCore::executeMovePageDown): Now it can tell SelectionController to move the cursor with the page scroll up/down events. (WebCore::executeMovePageDownAndModifySelection): Ditto. (WebCore::executeMovePageUp): Ditto. (WebCore::executeMovePageUpAndModifySelection): Ditto.
  • editing/SelectionController.cpp:
  • editing/SelectionController.cpp: Exposed an enum param that lets EditorCommand.cpp control how cursor position will be aligned when page moves. (WebCore::SelectionController::setSelection): Ditto. (WebCore::SelectionController::modify): Ditto.
  • editing/SelectionController.h: Ditto. (WebCore::SelectionController::): Ditto. (WebCore::SelectionController::setSelection): Ditto.
8:44 PM Changeset in webkit [60267] by barraclough@apple.com
  • 4 edits in trunk/JavaScriptCore

Bug 39795 - Add support for YARR JIT generation of greedy quantified parens at the end of the main disjunction.

Reviewed by Oliver Hunt.

If the last item in a main disjunction is a quantified set of parentheses,
this is easier to code generate for than the general case for quantified
parentheses. This is because we never need to backtrack into the parentheses

  • the first match will be the final and accepted match.

This patch also somewhat reverts a recent change to when fallback to PCRE
occurs. At the minute the compiler is tracking on patterns which will
require JIT fallback. This is handy from a performance perspective (it saves
the failed attempt at JIT compilation), but it means introducing knowledge
of the JITs capabilities into the other layers of the regex compilers. For
the specific feature of back-references, add a flag tracking their presence
on the pattern, and make these expressions fallback without attempting to
JIT. For parentheses, return to detecting which cases are have or have not
been handled during JIT compilation.

18% progression on tagcloud, ~1.5% overall on sunspidey.

  • yarr/RegexCompiler.cpp:

(JSC::Yarr::RegexPatternConstructor::atomBackReference):
(JSC::Yarr::RegexPatternConstructor::quantifyAtom):

  • yarr/RegexJIT.cpp:

(JSC::Yarr::RegexGenerator::TermGenerationState::isLastTerm):
(JSC::Yarr::RegexGenerator::TermGenerationState::isMainDisjunction):
(JSC::Yarr::RegexGenerator::generateParenthesesGreedyNoBacktrack):
(JSC::Yarr::RegexGenerator::generateTerm):
(JSC::Yarr::RegexGenerator::RegexGenerator):
(JSC::Yarr::RegexGenerator::shouldFallBack):
(JSC::Yarr::jitCompileRegex):

  • yarr/RegexPattern.h:

(JSC::Yarr::RegexPattern::RegexPattern):
(JSC::Yarr::RegexPattern::reset):

7:14 PM Changeset in webkit [60266] by tony@chromium.org
  • 2 edits in trunk/WebCore

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

Reviewed by Pavel Feldman.

ScriptCallStack::callLocation() sometimes passed an empty handle to
toWebCoreString() causing a null pointer deref.
https://bugs.webkit.org/show_bug.cgi?id=39681

  • bindings/v8/ScriptCallStack.cpp: (WebCore::ScriptCallStack::callLocation):
7:01 PM Changeset in webkit [60265] by bweinstein@apple.com
  • 2 edits in trunk/WebCore

Web Inspector: Tooltip on Pause on Exceptions doesn't show up until it is clicked.
https://bugs.webkit.org/show_bug.cgi?id=39804

Reviewed by Mark Rowe.

Initialize the title attribute of the Pause on Exceptions button when we initialize other information
about it.

  • inspector/front-end/ScriptsPanel.js:

(WebInspector.ScriptsPanel):

6:37 PM Changeset in webkit [60264] by abarth@webkit.org
  • 6 edits in trunk/WebCore

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

Unreviewed, rolling out r60262.
http://trac.webkit.org/changeset/60262
https://bugs.webkit.org/show_bug.cgi?id=39783

Broke every build and is blocking me from working. :(

  • rendering/RenderBlock.cpp: (WebCore::RenderBlock::splitAnonymousBlocksAroundChild): (WebCore::RenderBlock::makeChildrenAnonymousColumnBlocks): (WebCore::RenderBlock::moveChildTo): (WebCore::RenderBlock::moveAllChildrenTo): (WebCore::RenderBlock::makeChildrenNonInline): (WebCore::RenderBlock::removeChild):
  • rendering/RenderBlock.h:
  • rendering/RenderLayer.cpp: (WebCore::RenderLayer::addChild):
  • rendering/RenderObjectChildList.cpp: (WebCore::RenderObjectChildList::insertChildNode):
  • rendering/RenderRubyBase.cpp: (WebCore::RenderRubyBase::moveInlineChildren): (WebCore::RenderRubyBase::moveBlockChildren): (WebCore::RenderRubyBase::mergeBlockChildren):
6:03 PM Changeset in webkit [60263] by andersca@apple.com
  • 7 edits in trunk/WebCore

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

Unreviewed, rolling out r60256.
http://trac.webkit.org/changeset/60256
https://bugs.webkit.org/show_bug.cgi?id=39382

Causes fast/dom/prototype-inheritance-2.html to start
crashing.

  • history/PageCache.cpp: (WebCore::PageCache::PageCache): (WebCore::PageCache::add):
  • history/PageCache.h: (WebCore::PageCache::get):
  • loader/DocumentLoader.cpp: (WebCore::DocumentLoader::commitIfReady):
  • loader/FrameLoader.cpp: (WebCore::FrameLoader::canCachePageContainingThisFrame): (WebCore::FrameLoader::canCachePage): (WebCore::pageCacheLogPrefix): (WebCore::pageCacheLog): (WebCore::FrameLoader::logCanCachePageDecision): (WebCore::FrameLoader::logCanCacheFrameDecision): (WebCore::FrameLoader::commitProvisionalLoad): (WebCore::FrameLoader::open): (WebCore::FrameLoader::continueLoadAfterNavigationPolicy): (WebCore::FrameLoader::loadProvisionalItemFromCachedPage): (WebCore::FrameLoader::cachePageForHistoryItem): (WebCore::FrameLoader::navigateToDifferentDocument):
  • loader/FrameLoader.h:
  • svg/graphics/SVGImage.cpp: (WebCore::SVGImage::dataChanged):
5:40 PM Changeset in webkit [60262] by hyatt@apple.com
  • 6 edits in trunk/WebCore

https://bugs.webkit.org/show_bug.cgi?id=39783, clean up the moveChild functions on RenderBlock.

Reviewed by Sam Weinig.

Eliminate the need to pass the toChildrenList to the moveChild functions by tightening up the type of the
|to| argument to be a RenderBlock.

Add a moveChildrenTo function that can move a range of children, and patch places that were doing this
by hand.

Make the append forms of the functions just use the insert forms with a beforeChild of 0.

Patch insertChildNode in RenderObjectChildList so that it passes the fullInsert parameter through in the
case where it does an append.

Add an assert to RenderLayer that catches bad structure built when the fullInsert/Remove parameters are
messed up when using append/insertChildNode.

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::splitAnonymousBlocksAroundChild):
(WebCore::RenderBlock::makeChildrenAnonymousColumnBlocks):
(WebCore::RenderBlock::createAndAppendRootInlineBox):
(WebCore::RenderBlock::moveChildTo):
(WebCore::RenderBlock::moveChildrenTo):
(WebCore::RenderBlock::makeChildrenNonInline):
(WebCore::RenderBlock::removeChild):

  • rendering/RenderBlock.h:

(WebCore::RenderBlock::moveChildTo):
(WebCore::RenderBlock::moveAllChildrenTo):
(WebCore::RenderBlock::moveChildrenTo):

  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::addChild):

  • rendering/RenderObjectChildList.cpp:

(WebCore::RenderObjectChildList::insertChildNode):

  • rendering/RenderRubyBase.cpp:

(WebCore::RenderRubyBase::moveInlineChildren):

5:17 PM Changeset in webkit [60261] by ggaren@apple.com
  • 2 edits in trunk/JavaScriptCore

Fixed a crash seen on the Leopard bot, caused by merge.

Reviewed by Sam Weinig.

  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION): Get the return address from the callframe,
since it's no longer passed to us as an argument.

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

Fix GTK+ test failures.

  • plugins/gtk/PluginDataGtk.cpp:

(WebCore::PluginData::initPlugins):

  • plugins/win/PluginDataWin.cpp:

(WebCore::PluginData::initPlugins):

4:27 PM Changeset in webkit [60259] by Beth Dakin
  • 2 edits in trunk/WebKit/mac

Fix for <rdar://problem/7464703> HiDPI: [Layers] Compositing layers
do not scale properly when running with a resolution independent
scale

Patch by Simon Fraser <Simon Fraser> on 2010-05-26
Reviewed by Beth Dakin and Darin Adler.

Apply the userSpaceScaleFactor as a scale on the layerHostingView.

  • WebView/WebHTMLView.mm:

(-[WebHTMLView viewDidMoveToWindow]):
(-[WebHTMLView attachRootLayer:]):

4:20 PM Changeset in webkit [60258] by andersca@apple.com
  • 22 edits in trunk

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

Reviewed by Darin Adler.

Clean up MimeClassInfo and PluginInfo
https://bugs.webkit.org/show_bug.cgi?id=39700

Update for WebCore changes.

  • src/WebPluginListBuilderImpl.cpp: (WebKit::WebPluginListBuilderImpl::addPlugin): (WebKit::WebPluginListBuilderImpl::addMediaTypeToLastPlugin): (WebKit::WebPluginListBuilderImpl::addFileExtensionToLastMediaType):
  • src/WebPluginListBuilderImpl.h: (WebKit::WebPluginListBuilderImpl::WebPluginListBuilderImpl):

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

Reviewed by Darin Adler.

Clean up MimeClassInfo and PluginInfo
https://bugs.webkit.org/show_bug.cgi?id=39700

This gets rid of all the heap allocation from MimeClassInfo and PluginInfo.


It also changes the m_plugins and m_mimes vectors in PluginData to not hold heap allocated MimeClassInfo
and PluginClassInfo objects.

  • page/Page.cpp: (WebCore::Page::refreshPlugins):
  • plugins/MimeType.cpp: (WebCore::MimeType::type): (WebCore::MimeType::suffixes): (WebCore::MimeType::description): (WebCore::MimeType::enabledPlugin):
  • plugins/MimeType.h: (WebCore::MimeType::mimeClassInfo):
  • plugins/MimeTypeArray.cpp: (WebCore::MimeTypeArray::item): (WebCore::MimeTypeArray::canGetItemsForName): (WebCore::MimeTypeArray::namedItem):
  • plugins/Plugin.cpp: (WebCore::Plugin::name): (WebCore::Plugin::filename): (WebCore::Plugin::description): (WebCore::Plugin::length): (WebCore::Plugin::item): (WebCore::Plugin::canGetItemsForName): (WebCore::Plugin::namedItem):
  • plugins/Plugin.h: (WebCore::Plugin::pluginInfo):
  • plugins/PluginArray.cpp: (WebCore::PluginArray::length): (WebCore::PluginArray::item): (WebCore::PluginArray::canGetItemsForName): (WebCore::PluginArray::namedItem): (WebCore::PluginArray::pluginData):
  • plugins/PluginArray.h:
  • plugins/PluginData.cpp: (WebCore::PluginData::PluginData): (WebCore::PluginData::~PluginData): (WebCore::PluginData::supportsMimeType): (WebCore::PluginData::pluginNameForMimeType):
  • plugins/PluginData.h: (WebCore::operator==): (WebCore::PluginData::create): (WebCore::PluginData::disconnectPage): (WebCore::PluginData::page): (WebCore::PluginData::plugins): (WebCore::PluginData::mimes):
  • plugins/chromium/PluginDataChromium.cpp: (WebCore::PluginCache::reset): (WebCore::PluginCache::plugins): (WebCore::PluginData::initPlugins): (WebCore::getPluginMimeTypeFromExtension):
  • plugins/gtk/PluginDataGtk.cpp: (WebCore::PluginData::initPlugins):
  • plugins/mac/PluginDataMac.mm: (WebCore::PluginData::initPlugins):
  • plugins/qt/PluginDataQt.cpp: (WebCore::PluginData::initPlugins):
  • plugins/win/PluginDataWin.cpp: (WebCore::PluginData::initPlugins):
  • plugins/wx/PluginDataWx.cpp: (WebCore::PluginData::initPlugins):
4:06 PM Changeset in webkit [60257] by abarth@webkit.org
  • 9 edits in trunk

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

Reviewed by Eric Seidel.

Fix webkit01.dat resumer tests in HTML5 parser
https://bugs.webkit.org/show_bug.cgi?id=39796

Update expectations to show massive passage.

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

2010-05-26 Nate Chapin <Nate Chapin>

Reviewed by Adam Barth.

Factor PageCache functionality out of FrameLoader and into
PageCache.

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

Refactor only, so no new tests.

  • history/PageCache.cpp: (WebCore::pageCacheLogPrefix): (WebCore::pageCacheLog): (WebCore::logCanCacheFrameDecision): (WebCore::logCanCachePageDecision): (WebCore::PageCache::canCachePageContainingThisFrame): (WebCore::PageCache::canCache): (WebCore::PageCache::add): (WebCore::PageCache::get):
  • history/PageCache.h:
  • loader/DocumentLoader.cpp:
  • loader/FrameLoader.cpp: (WebCore::FrameLoader::commitProvisionalLoad): (WebCore::FrameLoader::prepareForCachedPageRestore): (WebCore::FrameLoader::continueLoadAfterNavigationPolicy): (WebCore::FrameLoader::loadProvisionalItemFromCachedPage): (WebCore::FrameLoader::navigateToDifferentDocument):
  • loader/FrameLoader.h: (WebCore::FrameLoader::quickRedirectComing):
  • svg/graphics/SVGImage.cpp:
4:00 PM Changeset in webkit [60256] by Nate Chapin
  • 7 edits in trunk/WebCore

2010-05-26 Nate Chapin <Nate Chapin>

Reviewed by Adam Barth.

Factor PageCache functionality out of FrameLoader and into
PageCache.

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

Refactor only, so no new tests.

  • history/PageCache.cpp: (WebCore::pageCacheLogPrefix): (WebCore::pageCacheLog): (WebCore::logCanCacheFrameDecision): (WebCore::logCanCachePageDecision): (WebCore::PageCache::canCachePageContainingThisFrame): (WebCore::PageCache::canCache): (WebCore::PageCache::add): (WebCore::PageCache::get):
  • history/PageCache.h:
  • loader/DocumentLoader.cpp:
  • loader/FrameLoader.cpp: (WebCore::FrameLoader::commitProvisionalLoad): (WebCore::FrameLoader::prepareForCachedPageRestore): (WebCore::FrameLoader::continueLoadAfterNavigationPolicy): (WebCore::FrameLoader::loadProvisionalItemFromCachedPage): (WebCore::FrameLoader::navigateToDifferentDocument):
  • loader/FrameLoader.h: (WebCore::FrameLoader::quickRedirectComing):
  • svg/graphics/SVGImage.cpp:
3:26 PM Changeset in webkit [60255] by pkasting@chromium.org
  • 2 edits in trunk/WebCore

https://bugs.webkit.org/show_bug.cgi?id=39786
Properly reset |bytes_to_consume| when reaching the "gif_done" state in
the open-source GIF decoder.

Reviewed by Adam Barth.

No tests, since there's no test harness support for checking the
internal ImageDecoder state values.

  • platform/image-decoders/gif/GIFImageReader.cpp:

(GIFImageReader::read): Use a macro to perform the state change, like we do everywhere else in the file. Also correctly return "failure" for certain corrupt GIFs, since that doesn't prevent their display (due to WebKit's different use of this code compared to Mozilla).

3:14 PM Changeset in webkit [60254] by eric@webkit.org
  • 5 edits in trunk/WebCore

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

Unreviewed, rolling out r60251.
http://trac.webkit.org/changeset/60251
https://bugs.webkit.org/show_bug.cgi?id=39788

broke tests (Requested by dhyatt on #webkit).

  • rendering/RenderBlock.cpp: (WebCore::RenderBlock::moveChildTo): (WebCore::RenderBlock::moveAllChildrenTo): (WebCore::RenderBlock::makeChildrenNonInline): (WebCore::RenderBlock::removeChild):
  • rendering/RenderBlock.h:
  • rendering/RenderRubyBase.cpp: (WebCore::RenderRubyBase::moveInlineChildren): (WebCore::RenderRubyBase::moveBlockChildren): (WebCore::RenderRubyBase::mergeBlockChildren):
  • rendering/RenderRubyRun.cpp: (WebCore::RenderRubyRun::removeChild):
2:51 PM Changeset in webkit [60253] by abarth@webkit.org
  • 8 edits
    3 adds in trunk

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

Reviewed by Eric Seidel.

Make HTML5 lexer not ASSERT when resuming partial parses
https://bugs.webkit.org/show_bug.cgi?id=39755

Add a test suite for partial parsing. This test runs all our parsing
test cases, but stops and starts the parser at every character in the
parse stream to make sure we resume parsing properly. Currently, a
bunch of the test cases are commented out, but I'll comment them back
in as I get them running.

  • html5lib/webkit-resumer-expected-html5.txt: Added.
  • html5lib/webkit-resumer-expected.txt: Added.
  • html5lib/webkit-resumer.html: Added.

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

Reviewed by Eric Seidel.

Make HTML5 lexer not ASSERT when resuming partial parses
https://bugs.webkit.org/show_bug.cgi?id=39755

I'm working through a variation of the webkit-runner.html test suite
that stops the parser at every character to make sure we can resume
parsing correctly. This patch fixes some errors caught by ASSERTs,
which prevent the basic tests from running to completion. There's a
bunch more work to do, however.

Test: html5lib/webkit-resumer.html

  • html/HTML5Lexer.cpp: (WebCore::HTMLNames::isEndTagBufferingState): (WebCore::HTML5Lexer::nextToken): (WebCore::HTML5Lexer::addToPossibleEndTag):
  • html/HTML5Lexer.h:
  • html/HTML5Tokenizer.cpp: (WebCore::HTML5Tokenizer::write):
  • html/HTML5Tokenizer.h:

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

Reviewed by Eric Seidel.

Make HTML5 lexer not ASSERT when resuming partial parses
https://bugs.webkit.org/show_bug.cgi?id=39755

Add webkit-resumer.html to the HTML5 parser test suite.

  • Scripts/test-html5-parser:
2:38 PM Changeset in webkit [60252] by ap@apple.com
  • 2 edits in trunk/WebCore

Mac 32 bit build fix.

  • platform/graphics/mac/SimpleFontDataMac.mm: (WebCore::SimpleFontData::platformInit): Use static_cast instead of narrowPrecisionToFloat - the latter can't convert from float to float.
2:25 PM Changeset in webkit [60251] by hyatt@apple.com
  • 5 edits in trunk/WebCore

https://bugs.webkit.org/show_bug.cgi?id=39783, clean up moveChild functions in RenderBlock.

Reviewed by Ojan.

Cut out the need to pass the to block's child list by tightening up the type of the to object
from RenderObject to RenderBlock.

Implement the "append" versions of the move functions using their "insert" counterparts, since
insertChildNode just calls appendChildNode when beforeChild is 0 anyway.

Add comments explaining why the default for fullRemoveInsert is false, and make sure all forms
of the move functions have the optional parameter for consistency.

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::createAndAppendRootInlineBox):
(WebCore::RenderBlock::moveChildTo):
(WebCore::RenderBlock::moveAllChildrenTo):
(WebCore::RenderBlock::makeChildrenNonInline):
(WebCore::RenderBlock::removeChild):

  • rendering/RenderBlock.h:

(WebCore::RenderBlock::moveChildTo):
(WebCore::RenderBlock::moveAllChildrenTo):

  • rendering/RenderRubyBase.cpp:

(WebCore::RenderRubyBase::moveInlineChildren):
(WebCore::RenderRubyBase::moveBlockChildren):
(WebCore::RenderRubyBase::mergeBlockChildren):

  • rendering/RenderRubyRun.cpp:

(WebCore::RenderRubyRun::removeChild):

2:17 PM Changeset in webkit [60250] by ap@apple.com
  • 2 edits in trunk/LayoutTests

Make the test pass on chromium by weakening expectations. It's probably a chromium bug, but
the test only practically checks that the height is non-zero, so chromium's 198 is fine
for now.

  • fast/css/custom-font-xheight.html:
2:13 PM QtWebKitTriageRoster edited by Simon Hausmann
(diff)
2:04 PM Changeset in webkit [60249] by ap@apple.com
  • 1 edit in trunk/LayoutTests/platform/mac-tiger/Skipped

Added a newline at the end of file.

2:03 PM Changeset in webkit [60248] by ap@apple.com
  • 1 edit in trunk/WebCore/ChangeLog

Removing a duplicate/obsolete ChangeLog entry.

1:53 PM Changeset in webkit [60247] by ap@apple.com
  • 4 edits
    2 adds in trunk

2010-05-26 Dan Bernstein <mitz@apple.com>

Typed and reviewed by Alexey Proskuryakov.

https://bugs.webkit.org/show_bug.cgi?id=39682
<rdar://problem/8026774> REGRESSION: WebKit nightly adding insane height to div at random

Test: fast/css/custom-font-xheight.html

  • platform/graphics/mac/SimpleFontDataMac.mm: (WebCore::SimpleFontData::platformInit): Calling an Objective C method that returns a structure with a null object can leave garbage in returned value. Custom fonts don't have an NSFont, they only have a CGFont. Call platformBoundsForGlyph() function instead, which works with CGFont. (WebCore::SimpleFontData::platformBoundsForGlyph): Fixed to work on Tiger (for fonts that have an NSFont), since this is now used in more cases.
1:43 PM Changeset in webkit [60246] by Beth Dakin
  • 2 edits in trunk/WebCore

Build fix for Mac clean builds.

  • storage/IDBDatabaseRequest.idl:
12:07 PM Changeset in webkit [60245] by eric.carlson@apple.com
  • 2 edits in trunk/WebCore

2010-05-26 Eric Carlson <eric.carlson@apple.com>

Reviewed by Dan Bernstein.

Must not cast between CFNumberRef and CFBooleanRef.
<rdar://problem/8030739>
https://bugs.webkit.org/show_bug.cgi?id=39756

  • platform/graphics/win/QTMovieVisualContext.cpp: (QTMovieVisualContext::getCGImageOptions): QuickTime assumes the value associated with kCVPixelBufferCGImageCompatibilityKey is a CFBoolean, so add one.
11:09 AM Changeset in webkit [60244] by kevino@webkit.org
  • 2 edits in trunk/WebKit/wx

Build fix after new client added to Page constructor.

10:51 AM Changeset in webkit [60243] by xan@webkit.org
  • 2 edits in trunk/WebCore

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

GTK+ build fix, strike two.

  • bindings/gobject/WebKitDOMEventTarget.cpp: (webkit_dom_event_target_get_type): (webkit_dom_event_target_default_init):
10:05 AM Changeset in webkit [60242] by mitz@apple.com
  • 1 edit in trunk/WebCore/ChangeLog

Fixed typos in the change log

9:01 AM Changeset in webkit [60241] by jorlow@chromium.org
  • 3 edits in trunk/WebCore

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

Unreviewed build fix for Windows + clean up the xcode project.

  • WebCore.gypi:
  • WebCore.vcproj/WebCore.vcproj:
8:39 AM Changeset in webkit [60240] by jorlow@chromium.org
  • 14 edits
    2 copies
    3 adds in trunk/WebCore

2010-05-26 Andrei Popescu <andreip@google.com>

Reviewed by Jeremy Orlow.

Indexed Database component is missing IDBObjectStoreRequest interface
https://bugs.webkit.org/show_bug.cgi?id=39490

Adding IDL and stub implementation for IDBObjectStoreRequest.

No new tests, indexed database isn't yet testable.

  • DerivedSources.cpp:
  • DerivedSources.make:
  • GNUmakefile.am:
  • WebCore.gypi:
  • WebCore.pri:
  • WebCore.pro:
  • WebCore.xcodeproj/project.pbxproj:
  • bindings/js/JSIDBObjectStoreRequestCustom.cpp: Added. (WebCore::JSIDBObjectStoreRequest::remove): (WebCore::JSIDBObjectStoreRequest::addOrModify): (WebCore::JSIDBObjectStoreRequest::modify): (WebCore::JSIDBObjectStoreRequest::add): (WebCore::JSIDBObjectStoreRequest::get):
  • bindings/v8/custom/V8IDBObjectStoreRequestCustom.cpp: Added. (WebCore::V8IDBObjectStoreRequest::removeCallback): (WebCore::V8IDBObjectStoreRequest::addOrModifyCallback): (WebCore::V8IDBObjectStoreRequest::modifyCallback): (WebCore::V8IDBObjectStoreRequest::addCallback): (WebCore::V8IDBObjectStoreRequest::getCallback):
  • storage/IDBObjectStore.cpp: Added.
  • storage/IDBObjectStore.h: Added. (WebCore::IDBObjectStore::~IDBObjectStore):
  • storage/IDBObjectStoreRequest.cpp: Added. (WebCore::IDBObjectStoreRequest::name): (WebCore::IDBObjectStoreRequest::keyPath): (WebCore::IDBObjectStoreRequest::IDBObjectStoreRequest):
  • storage/IDBObjectStoreRequest.h: Added. (WebCore::IDBObjectStoreRequest::create): (WebCore::IDBObjectStoreRequest::~IDBObjectStoreRequest):
  • storage/IDBObjectStoreRequest.idl: Added.
8:26 AM Changeset in webkit [60239] by jorlow@chromium.org
  • 2 edits in trunk/WebKit/chromium

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

Unreviewed chromium build fix
https://bugs.webkit.org/show_bug.cgi?id=39739

The backwards compat function needs to take in a WebSecurityOrigin
instead of a WebString.

  • public/WebIndexedDatabase.h: (WebKit::WebIndexedDatabase::open):
7:34 AM Changeset in webkit [60238] by xan@webkit.org
  • 2 edits in trunk/WebCore

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

Unreviewed GTK+ build fix.

Use G_DEFINE_INTERFACE only if it's available.

  • bindings/gobject/WebKitDOMEventTarget.cpp: (webkit_dom_event_target_get_type): (webkit_dom_event_target_default_init):
7:30 AM Changeset in webkit [60237] by Csaba Osztrogonác
  • 2 edits in trunk/LayoutTests

Unreviewed fix, Qt specific expected file updated after r60235.

  • platform/qt/fast/dom/Window/window-properties-expected.txt: updated.
7:18 AM Changeset in webkit [60236] by Csaba Osztrogonác
  • 2 edits in trunk/LayoutTests

Unreviewed.

[Qt] media/media-can-play-ogg.html crashes intermittently on the bot
https://bugs.webkit.org/show_bug.cgi?id=39481

  • platform/qt/Skipped: the culprit media/audio-only-video-intrinsic-size.html skipped until fix.
7:14 AM Changeset in webkit [60235] by jorlow@chromium.org
  • 8 edits
    2 adds in trunk

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

Reviewed by Darin Fisher.

Implement WebDOMStorageList and make WebIDBDatabase use it
https://bugs.webkit.org/show_bug.cgi?id=39731

Remove unused function.

  • dom/DOMStringList.h:

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

Reviewed by Darin Fisher.

Implement WebDOMStorageList and make WebIDBDatabase use it
https://bugs.webkit.org/show_bug.cgi?id=39731

  • WebKit.gyp:
  • public/WebDOMStringList.h: Added. (WebKit::WebDOMStringList::~WebDOMStringList): (WebKit::WebDOMStringList::WebDOMStringList): (WebKit::WebDOMStringList::operator=):
  • public/WebIDBDatabase.h: (WebKit::WebIDBDatabase::objectStores):
  • src/IDBDatabaseProxy.cpp: (WebCore::IDBDatabaseProxy::objectStores):
  • src/WebDOMStringList.cpp: Added. (WebKit::WebDOMStringList::reset): (WebKit::WebDOMStringList::assign): (WebKit::WebDOMStringList::append): (WebKit::WebDOMStringList::length): (WebKit::WebDOMStringList::item): (WebKit::WebDOMStringList::WebDOMStringList): (WebKit::WebDOMStringList::operator=): (WebKit::WebDOMStringList::operator WTF::PassRefPtr<WebCore::DOMStringList>):
  • src/WebIDBDatabaseImpl.cpp: (WebKit::WebIDBDatabaseImpl::objectStores):
  • src/WebIDBDatabaseImpl.h:
6:44 AM Changeset in webkit [60234] by jberlin@webkit.org
  • 11 edits in trunk

Bug 31296 - Web Inspector: Should support console.groupCollapsed
https://bugs.webkit.org/show_bug.cgi?id=31296

Reviewed by Pavel Feldman

WebCore:

  • inspector/InspectorController.cpp:

(WebCore::InspectorController::startGroup):
Set the message type based on whether or not it should be initially collapsed.

  • inspector/InspectorController.h:
  • inspector/front-end/ConsoleView.js:

Treat a StartGroupCollapsed message the same way as a StartGroup message, but display the tree for the group as collapsed.
(WebInspector.ConsoleView.prototype.addMessage):
(WebInspector.ConsoleMessage.prototype.toMessageElement):
(WebInspector.ConsoleMessage.prototype.toString):
(WebInspector.ConsoleGroup.prototype.addMessage):

  • page/Console.cpp:

(WebCore::Console::groupCollapsed):
Create a group and indicate that it should be collapsed.

  • page/Console.h:

Add the StartGroupCollapsed message type.

(WebCore::):

  • page/Console.idl:

Create the JS bindings for groupCollapsed.

LayoutTests:

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

Update results to take into account added groupCollapsed function.

  • inspector/console-tests-expected.txt:
  • inspector/console-tests.html:

Add test for groupCollapsed and its results.

6:34 AM Changeset in webkit [60233] by Nikolas Zimmermann
  • 1 edit
    2 adds in trunk/LayoutTests

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

Not reviewed. Add results for svg/hixie/links/003-broken.xml for mac-leopard. All SVG tests pass with --tolerance 0 again for me on Leopard.

  • platform/mac-leopard/svg/hixie/links/003-broken-expected.checksum: Added.
  • platform/mac-leopard/svg/hixie/links/003-broken-expected.png: Added.
6:12 AM Changeset in webkit [60232] by yael.aharon@nokia.com
  • 23 edits
    26 adds in trunk

Support the labels attribute in labelable form controls
https://bugs.webkit.org/show_bug.cgi?id=38713

Reviewed by Kent Tamura.

WebCore:

Added a new cache type in NodeRareData to store the new cache type.
This cache is created on demand.

Added the "labels" attribute to all form controls that support this attribute.

Tests: fast/forms/labels-add-htmlFor-label.html

fast/forms/labels-add-parent-label.html
fast/forms/labels-change-htmlFor-attribute.html
fast/forms/labels-item-index.html
fast/forms/labels-remove-htmlFor-attribute.html
fast/forms/labels-remove-htmlFor-label.html
fast/forms/labels-remove-parent-label.html
fast/forms/labels-set-htmlFor-attribute.html

  • CMakeLists.txt:
  • GNUmakefile.am:
  • WebCore.gypi:
  • WebCore.pro:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.xcodeproj/project.pbxproj:
  • dom/Node.cpp:

(WebCore::Node::notifyLocalNodeListsLabelChanged):
(WebCore::Node::removeCachedLabelsNodeList):
(WebCore::NodeListsNodeData::invalidateCaches):
(WebCore::NodeListsNodeData::invalidateCachesThatDependOnAttributes):
(WebCore::NodeListsNodeData::isEmpty):

  • dom/Node.h:
  • dom/NodeRareData.h:

(WebCore::NodeListsNodeData::NodeListsNodeData):

  • html/HTMLButtonElement.idl:
  • html/HTMLFormControlElement.cpp:

(WebCore::HTMLFormControlElement::isLabelable):
(WebCore::HTMLFormControlElement::labels):

  • html/HTMLFormControlElement.h:
  • html/HTMLInputElement.idl:
  • html/HTMLLabelElement.cpp:

(WebCore::HTMLLabelElement::parseMappedAttribute):

  • html/HTMLLabelElement.h:
  • html/HTMLMeterElement.idl:
  • html/HTMLProgressElement.idl:
  • html/HTMLSelectElement.idl:
  • html/HTMLTextAreaElement.idl:
  • html/LabelsNodeList.cpp: Added.

(WebCore::LabelsNodeList::LabelsNodeList):
(WebCore::LabelsNodeList::~LabelsNodeList):
(WebCore::LabelsNodeList::nodeMatches):

  • html/LabelsNodeList.h: Added.

(WebCore::LabelsNodeList::create):

LayoutTests:

Update result for HTMLSelectElement, since it now includes the new attribute "labels"

  • fast/dom/domListEnumeration-expected.txt:
  • fast/dom/script-tests/domListEnumeration.js:
  • fast/forms/labels-add-htmlFor-label-expected.txt: Added.
  • fast/forms/labels-add-htmlFor-label.html: Added.
  • fast/forms/labels-add-parent-label-expected.txt: Added.
  • fast/forms/labels-add-parent-label.html: Added.
  • fast/forms/labels-change-htmlFor-attribute-expected.txt: Added.
  • fast/forms/labels-change-htmlFor-attribute.html: Added.
  • fast/forms/labels-item-index-expected.txt: Added.
  • fast/forms/labels-item-index.html: Added.
  • fast/forms/labels-remove-htmlFor-attribute-expected.txt: Added.
  • fast/forms/labels-remove-htmlFor-attribute.html: Added.
  • fast/forms/labels-remove-htmlFor-label-expected.txt: Added.
  • fast/forms/labels-remove-htmlFor-label.html: Added.
  • fast/forms/labels-remove-parent-label-expected.txt: Added.
  • fast/forms/labels-remove-parent-label.html: Added.
  • fast/forms/labels-set-htmlFor-attribute-expected.txt: Added.
  • fast/forms/labels-set-htmlFor-attribute.html: Added.
  • fast/forms/script-tests/labels-add-htmlFor-label.js: Added.
  • fast/forms/script-tests/labels-add-parent-label.js: Added.
  • fast/forms/script-tests/labels-change-htmlFor-attribute.js: Added.
  • fast/forms/script-tests/labels-item-index.js: Added.
  • fast/forms/script-tests/labels-remove-htmlFor-attribute.js: Added.
  • fast/forms/script-tests/labels-remove-htmlFor-label.js: Added.
  • fast/forms/script-tests/labels-remove-parent-label.js: Added.
  • fast/forms/script-tests/labels-set-htmlFor-attribute.js: Added.
5:18 AM QtWebKitBackportingFixes edited by Laszlo Gombos
(diff)
4:54 AM Changeset in webkit [60231] by xan@webkit.org
  • 2 edits in trunk/WebCore

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

Reviewed by Jeremy Orlow.

Style fix in JSEventCustom.cpp
https://bugs.webkit.org/show_bug.cgi?id=39727

Conditional includes should be all together after the
unconditional includes.

  • bindings/js/JSEventCustom.cpp:
4:43 AM Changeset in webkit [60230] by jorlow@chromium.org
  • 30 edits
    1 copy
    1 move in trunk

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

Reviewed by Steve Block.

Flesh out IDBDatabase
https://bugs.webkit.org/show_bug.cgi?id=39602

Update the test expectations now that this succeeds.

  • storage/indexeddb/basics-expected.txt:

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

Reviewed by Steve Block.

Add IDBDatabase's attributes
https://bugs.webkit.org/show_bug.cgi?id=39602

Add the attributes (like name, description, etc) for
IDBDatabaseRequest. Plumb that back to the IDBDatabase
object which stores the data.

CMake and Android build changes in another CL (that
fixes other stuff too).

Updated the layout test, but there's some further testing
that needs to be added once the Chromium side of this lands.

  • GNUmakefile.am
  • WebCore.gypi:
  • WebCore.pro
  • WebCore.vcproj/WebCore.vcproj
  • WebCore.xcodeproj/project.pbxproj
  • dom/DOMStringList.h: (WebCore::DOMStringList::strings):
  • storage/IDBDatabase.cpp: Removed.
  • storage/IDBDatabase.h:
  • storage/IDBDatabaseImpl.cpp: Added. (WebCore::IDBDatabaseImpl::IDBDatabaseImpl): (WebCore::IDBDatabaseImpl::~IDBDatabaseImpl): (WebCore::IDBDatabaseImpl::objectStores):
  • storage/IDBDatabaseImpl.h: Added. (WebCore::IDBDatabaseImpl::create): (WebCore::IDBDatabaseImpl::name): (WebCore::IDBDatabaseImpl::description): (WebCore::IDBDatabaseImpl::version):
  • storage/IDBDatabaseRequest.h: (WebCore::IDBDatabaseRequest::name): (WebCore::IDBDatabaseRequest::description): (WebCore::IDBDatabaseRequest::version): (WebCore::IDBDatabaseRequest::objectStores):
  • storage/IDBDatabaseRequest.idl:
  • storage/IDBSuccessEvent.cpp: (WebCore::IDBSuccessEvent::IDBSuccessEvent):
  • storage/IndexedDatabaseImpl.cpp: (WebCore::IndexedDatabaseImpl::open):
  • storage/IndexedDatabaseImpl.h:

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

Reviewed by Steve Block.

Add IDBDatabase's attributes
https://bugs.webkit.org/show_bug.cgi?id=39602

Plumbing to hook up the synchronous attribute requests
on IDBDatabase.

  • public/WebIDBDatabase.h: (WebKit::WebIDBDatabase::name): (WebKit::WebIDBDatabase::description): (WebKit::WebIDBDatabase::version): (WebKit::WebIDBDatabase::objectStores):
  • src/IDBDatabaseProxy.cpp: (WebCore::IDBDatabaseProxy::name): (WebCore::IDBDatabaseProxy::description): (WebCore::IDBDatabaseProxy::version): (WebCore::IDBDatabaseProxy::objectStores):
  • src/IDBDatabaseProxy.h:
  • src/WebIDBDatabaseImpl.cpp: (WebKit::WebIDBDatabaseImpl::WebIDBDatabaseImpl): (WebKit::WebIDBDatabaseImpl::name): (WebKit::WebIDBDatabaseImpl::description): (WebKit::WebIDBDatabaseImpl::version): (WebKit::WebIDBDatabaseImpl::objectStores):
  • src/WebIDBDatabaseImpl.h:
4:11 AM QtWebKit edited by jocelyn.turcotte@nokia.com
typo (diff)
3:51 AM Changeset in webkit [60229] by xan@webkit.org
  • 9 edits
    3 adds in trunk

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

Reviewed by Gustavo Noronha.

[GTK] Add support for DOM events in the GObject DOM bindings
https://bugs.webkit.org/show_bug.cgi?id=38844

Add new test to the build.

  • GNUmakefile.am:

WebCore:

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

Reviewed by NOBODY Gustavo Noronha.

[GTK] Add support for DOM events in the GObject DOM bindings
https://bugs.webkit.org/show_bug.cgi?id=38844

Add actual GObject event objects to the DOM event signals.

  • GNUmakefile.am:
  • bindings/gobject/GObjectEventListener.cpp: (WebCore::GObjectEventListener::handleEvent):
  • bindings/gobject/WebKitDOMBinding.cpp: (WebKit::wrapEventTarget): (WebKit::kit):
  • bindings/gobject/WebKitDOMBinding.h:
  • bindings/gobject/WebKitDOMEventTarget.cpp: Added. (webkit_dom_event_target_default_init): (webkit_dom_event_target_dispatch_event):
  • bindings/gobject/WebKitDOMEventTarget.h: Added.
  • bindings/scripts/CodeGeneratorGObject.pm:

WebKit/gtk:

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

Reviewed by Gustavo Noronha.

[GTK] Add support for DOM events in the GObject DOM bindings
https://bugs.webkit.org/show_bug.cgi?id=38844

Test DOMWindow signals.

  • tests/testdomdomwindow.c: Added. (finish_loading): (dom_domview_fixture_setup): (dom_domview_fixture_teardown): (loadedCallback): (clickedCallback): (map_event_cb): (load_event_callback): (test_dom_domview_signals): (main):
3:35 AM Changeset in webkit [60228] by jorlow@chromium.org
  • 5 edits in trunk/WebCore

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

Reviewed by Steve Block.

[Android] Add IndexedDB to the build
https://bugs.webkit.org/show_bug.cgi?id=39593

Add the current list of build files to Android's make files. From now on,
I'll try to be sure to update these along with the rest.
Also, fix a nit in the gypi file.

No tests..just changing build files.

  • Android.derived.jscbindings.mk:
  • Android.derived.v8bindings.mk:
  • Android.mk:
  • WebCore.gypi:
3:33 AM Changeset in webkit [60227] by apavlov@chromium.org
  • 12 edits
    3 adds in trunk

2010-05-26 Alexander Pavlov <apavlov@chromium.org>

Reviewed by Pavel Feldman.

Expose CSS rule body start/end offsets in the parent stylesheet
https://bugs.webkit.org/show_bug.cgi?id=38906

CSSParser::parseSheet() accepts an optional external Vector where the start/end offsets
of the CSSStyleRule bodies, relative to the beginning of the stylesheet, will be stored.
This Vector is only used when the Web Inspector needs the body ranges, thus there is no
memory overhead until the user starts editing styles via the Web Inspector.
Additionally, fixed an issue with a single inspectorStyleSheet for all frames in the page.

Test: inspector/styles-source-offsets.html

WebCore:

  • css/CSSGrammar.y:
  • css/CSSParser.cpp: (WebCore::CSSParser::CSSParser): (WebCore::CSSParser::setupParser): (WebCore::CSSParser::parseSheet): (WebCore::CSSParser::createStyleRule): (WebCore::CSSParser::updateLastSelectorLineAndPosition): (WebCore::CSSParser::markRuleBodyStart): (WebCore::CSSParser::markRuleBodyEnd):
  • css/CSSParser.h: (WebCore::CSSParser::resetRuleBodyMarks):
  • inspector/InspectorCSSStore.cpp: (WebCore::InspectorCSSStore::InspectorCSSStore): (WebCore::InspectorCSSStore::reset): (WebCore::InspectorCSSStore::removeDocument): (WebCore::InspectorCSSStore::inspectorStyleSheet): (WebCore::InspectorCSSStore::getStartEndOffsets): (WebCore::InspectorCSSStore::getIndexInStyleRules): (WebCore::InspectorCSSStore::disabledStyleForId): (WebCore::InspectorCSSStore::styleForId): (WebCore::InspectorCSSStore::ruleForId): (WebCore::InspectorCSSStore::bindStyle): (WebCore::InspectorCSSStore::bindStyleSheet): (WebCore::InspectorCSSStore::bindRule):
  • inspector/InspectorCSSStore.h:
  • inspector/InspectorController.cpp: (WebCore::InspectorController::InspectorController): (WebCore::InspectorController::resourceForURL):
  • inspector/InspectorController.h: (WebCore::InspectorController::inspectorFrontend):
  • inspector/InspectorDOMAgent.cpp: (WebCore::InspectorDOMAgent::InspectorDOMAgent): (WebCore::InspectorDOMAgent::unbind): (WebCore::InspectorDOMAgent::getStyles): (WebCore::InspectorDOMAgent::getAllStyles): (WebCore::InspectorDOMAgent::buildArrayForCSSRules): (WebCore::InspectorDOMAgent::buildArrayForPseudoElements): (WebCore::InspectorDOMAgent::applyStyleText): (WebCore::InspectorDOMAgent::setStyleText): (WebCore::InspectorDOMAgent::setStyleProperty): (WebCore::InspectorDOMAgent::toggleStyleEnabled): (WebCore::InspectorDOMAgent::setRuleSelector): (WebCore::InspectorDOMAgent::addRule): (WebCore::InspectorDOMAgent::buildObjectForStyle): (WebCore::InspectorDOMAgent::buildArrayForDisabledStyleProperties): (WebCore::InspectorDOMAgent::buildObjectForStyleSheet): (WebCore::InspectorDOMAgent::buildObjectForRule):
  • inspector/InspectorDOMAgent.h:
  • inspector/front-end/DOMAgent.js: (WebInspector.CSSStyleDeclaration):

LayoutTests:

  • inspector/resources/styles-source-offsets.css: Added. (body): (/* comment before selector */body.main1/* comment after selector */): (body.main2):
  • inspector/styles-source-offsets-expected.txt: Added.
  • inspector/styles-source-offsets.html: Added.
3:23 AM Changeset in webkit [60226] by xan@webkit.org
  • 2 edits in trunk/WebCore

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

Reviewed by Gustavo Noronha.

[GTK] Add support for DOM events in the GObject DOM bindings
https://bugs.webkit.org/show_bug.cgi?id=38844

Use GObject-like names for the DOM event signals. Basically go
from 'mousewheel' to 'mouse-wheel-event'.

  • bindings/scripts/CodeGeneratorGObject.pm:
3:16 AM Changeset in webkit [60225] by xan@webkit.org
  • 7 edits
    2 adds in trunk/WebCore

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

Reviewed by Gustavo Noronha.

[GTK] Add support for DOM events in the GObject DOM bindings
https://bugs.webkit.org/show_bug.cgi?id=38844

First step towards DOM events support. We create one signal per
event supported in the DOM classes, and create a custom
GObjectEventListener that will emit a GObject signal when an event
is dispatched to the object. There is no event object at the
moment (we just pass NULL), and no support for hooking into the
capture phase.

  • GNUmakefile.am:
  • bindings/gobject/GObjectEventListener.cpp: Added. (WebCore::GObjectEventListener::handleEvent): (WebCore::GObjectEventListener::operator==):
  • bindings/gobject/GObjectEventListener.h: Added. (WebCore::GObjectEventListener::create): (WebCore::GObjectEventListener::cast): (WebCore::GObjectEventListener::GObjectEventListener):
  • bindings/scripts/CodeGeneratorGObject.pm:
  • bindings/scripts/test/GObject/WebKitDOMTestCallback.cpp: (WebKit::core): (webkit_dom_test_callback_finalize): (webkit_dom_test_callback_class_init): (WebKit::wrapTestCallback):
  • bindings/scripts/test/GObject/WebKitDOMTestInterface.cpp: (WebKit::core): (webkit_dom_test_interface_finalize): (webkit_dom_test_interface_class_init): (WebKit::wrapTestInterface):
  • bindings/scripts/test/GObject/WebKitDOMTestObj.cpp: (WebKit::core): (webkit_dom_test_obj_finalize): (webkit_dom_test_obj_class_init): (WebKit::wrapTestObj):
  • dom/EventListener.h: (WebCore::EventListener::):
3:08 AM Changeset in webkit [60224] by Nikolas Zimmermann
  • 2 edits in trunk/WebCore

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

Not reviewed. Sort XCode project file.

  • WebCore.xcodeproj/project.pbxproj:
2:18 AM Changeset in webkit [60223] by xan@webkit.org
  • 2 edits in trunk/WebCore

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

Reviewed by Gustavo Noronha.

[GTK] GObject DOM bindings
https://bugs.webkit.org/show_bug.cgi?id=33590

We need to protect the body of some methods with #ifdefs, since
the availability of the code they call into is decided at compile
time.

  • bindings/scripts/CodeGeneratorGObject.pm:
1:41 AM Changeset in webkit [60222] by tkent@chromium.org
  • 3 edits in trunk/WebCore

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

Reviewed by Shinichiro Hamaji.

Move date/time limit values to DateComponents.h from HTMLInputElement.cpp
https://bugs.webkit.org/show_bug.cgi?id=39423

The minimum and maximum values for date, datetime, datetime-local,
month, time, and week types depend on the implementation of
DateComponents. So move them to DateComponents.

  • html/DateComponents.h:
  • html/HTMLInputElement.cpp: (WebCore::HTMLInputElement::minimum): (WebCore::HTMLInputElement::maximum):
12:58 AM Changeset in webkit [60221] by Csaba Osztrogonác
  • 2 edits in trunk/WebCore

Buildfix for build without ENABLE(RUBY) after r60201.

Reviewed by Simon Hausmann.

  • rendering/RenderBlock.cpp:

(WebCore::canMergeContiguousAnonymousBlocks): Missing #if ENABLE(RUBY) guard added.

12:35 AM Changeset in webkit [60220] by Nikolas Zimmermann
  • 5 edits in trunk/WebCore

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

Not reviewed. Update test expectations for JS generator, when using run-webkit-tests. This has been forgotten.

  • bindings/scripts/test/JS/JSTestInterface.cpp: (WebCore::JSTestInterfaceConstructor::JSTestInterfaceConstructor): (WebCore::JSTestInterface::createPrototype):
  • bindings/scripts/test/JS/JSTestInterface.h: (WebCore::JSTestInterfacePrototype::JSTestInterfacePrototype):
  • bindings/scripts/test/JS/JSTestObj.cpp: (WebCore::JSTestObjConstructor::JSTestObjConstructor): (WebCore::JSTestObj::createPrototype):
  • bindings/scripts/test/JS/JSTestObj.h: (WebCore::JSTestObjPrototype::JSTestObjPrototype):
12:18 AM Changeset in webkit [60219] by Philippe Normand
  • 2 edits in trunk/WebCore

2010-05-25 Philippe Normand <pnormand@igalia.com>

Reviewed by Gustavo Noronha Silva.

[GStreamer] Apple trailers not playing
https://bugs.webkit.org/show_bug.cgi?id=37390

Set the AppleTrailer User-Agent workaround after
FrameLoader::addExtraFieldsToSubresourceRequest has been called
because that method sets the global User-Agent.

  • platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp: (webKitWebSrcStart):

May 25, 2010:

11:54 PM Changeset in webkit [60218] by tony@chromium.org
  • 5 edits
    1 add in trunk

2010-05-24 Dirk Pranke <dpranke@chromium.org>

Reviewed by Dimitri Glazkov.

Re-commit r58765 - it had been rolled out to see if it was causing
a perf regression (in r59787 and r59789), but that does not seem to
have been the case.

  • public/WebNotification.h:
  • src/WebNotification.cpp: (WebKit::WebNotification::dir): (WebKit::WebNotification::replaceId):

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

Reviewed by Kent Tamura.

[chromium] setup fonts on chromium linux DRT
https://bugs.webkit.org/show_bug.cgi?id=39644

  • DumpRenderTree/chromium/TestShellGtk.cpp: (setupFontconfig): (platformInit):
  • DumpRenderTree/chromium/WebViewHost.cpp: (WebViewHost::paintRect): Fix a bug where in release builds, we didn't initialize m_canvas.
  • DumpRenderTree/chromium/fonts.conf: Added.
11:18 PM Changeset in webkit [60217] by tony@chromium.org
  • 1 edit
    17 adds in trunk/LayoutTests

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

Not reviewed, adding chromium-mac results. They differ from
mac-leopard results because of scollbars.

[chromium] add layout test results for mac for fast/multicol/span tests
https://bugs.webkit.org/show_bug.cgi?id=39709

  • platform/chromium-mac/fast/multicol/span/anonymous-style-inheritance-expected.checksum: Added.
  • platform/chromium-mac/fast/multicol/span/anonymous-style-inheritance-expected.png: Added.
  • platform/chromium-mac/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.checksum: Added.
  • platform/chromium-mac/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.png: Added.
  • platform/chromium-mac/fast/multicol/span/span-as-immediate-child-generated-content-expected.checksum: Added.
  • platform/chromium-mac/fast/multicol/span/span-as-immediate-child-generated-content-expected.png: Added.
  • platform/chromium-mac/fast/multicol/span/span-as-immediate-child-property-removal-expected.checksum: Added.
  • platform/chromium-mac/fast/multicol/span/span-as-immediate-child-property-removal-expected.png: Added.
  • platform/chromium-mac/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.checksum: Added.
  • platform/chromium-mac/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.png: Added.
  • platform/chromium-mac/fast/multicol/span/span-as-immediate-columns-child-expected.checksum: Added.
  • platform/chromium-mac/fast/multicol/span/span-as-immediate-columns-child-expected.png: Added.
  • platform/chromium-mac/fast/multicol/span/span-as-immediate-columns-child-removal-expected.checksum: Added.
  • platform/chromium-mac/fast/multicol/span/span-as-immediate-columns-child-removal-expected.png: Added.
  • platform/chromium-mac/fast/multicol/span/span-margin-collapsing-expected.checksum: Added.
  • platform/chromium-mac/fast/multicol/span/span-margin-collapsing-expected.png: Added.
10:59 PM Changeset in webkit [60216] by sfalken@apple.com
  • 3 edits in tags/Safari-533.12.2/WebCore

Merge r60214.

2010-05-25 Steve Falkenburg <sfalken@apple.com>

Windows build fix.
Branch doesn't have r59910, so remove the argument from WKCACFLayerRenderer::create.

  • platform/graphics/win/MediaPlayerPrivateFullscreenWindow.cpp:

(WebCore::MediaPlayerPrivateFullscreenWindow::MediaPlayerPrivateFullscreenWindow):

10:55 PM Changeset in webkit [60215] by sfalken@apple.com
  • 1 copy in tags/Safari-533.12.2

New tag.

10:53 PM Changeset in webkit [60214] by sfalken@apple.com
  • 2 edits in branches/safari-533-branch/WebCore

Windows build fix.
Branch doesn't have r59910, so remove the argument from WKCACFLayerRenderer::create.

  • platform/graphics/win/MediaPlayerPrivateFullscreenWindow.cpp:

(WebCore::MediaPlayerPrivateFullscreenWindow::MediaPlayerPrivateFullscreenWindow):

8:57 PM Changeset in webkit [60213] by dumi@chromium.org
  • 2 edits in trunk/WebCore

Unreviewed, changing "fts2" to "fts3" in one location I missed in r60188.

  • storage/DatabaseAuthorizer.cpp:

(WebCore::DatabaseAuthorizer::dropVTable):

8:55 PM Changeset in webkit [60212] by tony@chromium.org
  • 1 edit
    67 adds in trunk/LayoutTests

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

Not reviewed, just adding chromium and mac-leopard results.

add chromium layout test results for fast/multicol/span tests added in r60201
https://bugs.webkit.org/show_bug.cgi?id=39707

  • platform/chromium-linux/fast/multicol/span/anonymous-style-inheritance-expected.checksum: Added.
  • platform/chromium-linux/fast/multicol/span/anonymous-style-inheritance-expected.png: Added.
  • platform/chromium-linux/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.checksum: Added.
  • platform/chromium-linux/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.png: Added.
  • platform/chromium-linux/fast/multicol/span/span-as-immediate-child-generated-content-expected.checksum: Added.
  • platform/chromium-linux/fast/multicol/span/span-as-immediate-child-generated-content-expected.png: Added.
  • platform/chromium-linux/fast/multicol/span/span-as-immediate-child-property-removal-expected.checksum: Added.
  • platform/chromium-linux/fast/multicol/span/span-as-immediate-child-property-removal-expected.png: Added.
  • platform/chromium-linux/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.checksum: Added.
  • platform/chromium-linux/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.png: Added.
  • platform/chromium-linux/fast/multicol/span/span-as-immediate-columns-child-expected.checksum: Added.
  • platform/chromium-linux/fast/multicol/span/span-as-immediate-columns-child-expected.png: Added.
  • platform/chromium-linux/fast/multicol/span/span-as-immediate-columns-child-removal-expected.checksum: Added.
  • platform/chromium-linux/fast/multicol/span/span-as-immediate-columns-child-removal-expected.png: Added.
  • platform/chromium-linux/fast/multicol/span/span-margin-collapsing-expected.checksum: Added.
  • platform/chromium-linux/fast/multicol/span/span-margin-collapsing-expected.png: Added.
  • platform/chromium-win/fast/multicol/span/anonymous-style-inheritance-expected.checksum: Added.
  • platform/chromium-win/fast/multicol/span/anonymous-style-inheritance-expected.png: Added.
  • platform/chromium-win/fast/multicol/span/anonymous-style-inheritance-expected.txt: Added.
  • platform/chromium-win/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.checksum: Added.
  • platform/chromium-win/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.png: Added.
  • platform/chromium-win/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.txt: Added.
  • platform/chromium-win/fast/multicol/span/span-as-immediate-child-generated-content-expected.checksum: Added.
  • platform/chromium-win/fast/multicol/span/span-as-immediate-child-generated-content-expected.png: Added.
  • platform/chromium-win/fast/multicol/span/span-as-immediate-child-generated-content-expected.txt: Added.
  • platform/chromium-win/fast/multicol/span/span-as-immediate-child-property-removal-expected.checksum: Added.
  • platform/chromium-win/fast/multicol/span/span-as-immediate-child-property-removal-expected.png: Added.
  • platform/chromium-win/fast/multicol/span/span-as-immediate-child-property-removal-expected.txt: Added.
  • platform/chromium-win/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.checksum: Added.
  • platform/chromium-win/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.png: Added.
  • platform/chromium-win/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.txt: Added.
  • platform/chromium-win/fast/multicol/span/span-as-immediate-columns-child-expected.checksum: Added.
  • platform/chromium-win/fast/multicol/span/span-as-immediate-columns-child-expected.png: Added.
  • platform/chromium-win/fast/multicol/span/span-as-immediate-columns-child-expected.txt: Added.
  • platform/chromium-win/fast/multicol/span/span-as-immediate-columns-child-removal-expected.checksum: Added.
  • platform/chromium-win/fast/multicol/span/span-as-immediate-columns-child-removal-expected.png: Added.
  • platform/chromium-win/fast/multicol/span/span-as-immediate-columns-child-removal-expected.txt: Added.
  • platform/chromium-win/fast/multicol/span/span-margin-collapsing-expected.checksum: Added.
  • platform/chromium-win/fast/multicol/span/span-margin-collapsing-expected.png: Added.
  • platform/chromium-win/fast/multicol/span/span-margin-collapsing-expected.txt: Added.
  • platform/mac-leopard/fast/multicol/span/anonymous-style-inheritance-expected.checksum: Added.
  • platform/mac-leopard/fast/multicol/span/anonymous-style-inheritance-expected.png: Added.
  • platform/mac-leopard/fast/multicol/span/anonymous-style-inheritance-expected.txt: Copied from LayoutTests/platform/mac/fast/multicol/span/anonymous-style-inheritance-expected.txt.
  • platform/mac-leopard/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.checksum: Added.
  • platform/mac-leopard/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.png: Added.
  • platform/mac-leopard/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.txt: Copied from LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.txt.
  • platform/mac-leopard/fast/multicol/span/span-as-immediate-child-generated-content-expected.checksum: Added.
  • platform/mac-leopard/fast/multicol/span/span-as-immediate-child-generated-content-expected.png: Added.
  • platform/mac-leopard/fast/multicol/span/span-as-immediate-child-generated-content-expected.txt: Copied from LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-child-generated-content-expected.txt.
  • platform/mac-leopard/fast/multicol/span/span-as-immediate-child-property-removal-expected.checksum: Added.
  • platform/mac-leopard/fast/multicol/span/span-as-immediate-child-property-removal-expected.png: Added.
  • platform/mac-leopard/fast/multicol/span/span-as-immediate-child-property-removal-expected.txt: Copied from LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-child-property-removal-expected.txt.
  • platform/mac-leopard/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.checksum: Added.
  • platform/mac-leopard/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.png: Added.
  • platform/mac-leopard/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.txt: Copied from LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.txt.
  • platform/mac-leopard/fast/multicol/span/span-as-immediate-columns-child-expected.checksum: Added.
  • platform/mac-leopard/fast/multicol/span/span-as-immediate-columns-child-expected.png: Added.
  • platform/mac-leopard/fast/multicol/span/span-as-immediate-columns-child-expected.txt: Copied from LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-columns-child-expected.txt.
  • platform/mac-leopard/fast/multicol/span/span-as-immediate-columns-child-removal-expected.checksum: Added.
  • platform/mac-leopard/fast/multicol/span/span-as-immediate-columns-child-removal-expected.png: Added.
  • platform/mac-leopard/fast/multicol/span/span-as-immediate-columns-child-removal-expected.txt: Copied from LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-columns-child-removal-expected.txt.
  • platform/mac-leopard/fast/multicol/span/span-margin-collapsing-expected.checksum: Added.
  • platform/mac-leopard/fast/multicol/span/span-margin-collapsing-expected.png: Added.
  • platform/mac-leopard/fast/multicol/span/span-margin-collapsing-expected.txt: Copied from LayoutTests/platform/mac/fast/multicol/span/span-margin-collapsing-expected.txt.
8:39 PM Changeset in webkit [60211] by mrowe@apple.com
  • 5 edits in branches/safari-533-branch

Versioning.

8:38 PM Changeset in webkit [60210] by mrowe@apple.com
  • 1 copy in tags/Safari-533.12.1

New tag.

8:38 PM Changeset in webkit [60209] by mrowe@apple.com
  • 5 edits in branches/safari-533-branch

Versioning.

8:35 PM Changeset in webkit [60208] by mrowe@apple.com
  • 2 edits in branches/safari-533-branch/WebCore

Merge r60207.

8:32 PM Changeset in webkit [60207] by mrowe@apple.com
  • 2 edits in trunk/WebCore

Build fix.

  • platform/graphics/win/MediaPlayerPrivateFullscreenWindow.cpp:
7:35 PM Changeset in webkit [60206] by ukai@chromium.org
  • 7 edits in trunk/WebCore

2010-05-25 Yuta Kitamura <yutak@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: Show HTTP status message sent from server in Resources tab.

This patch obtains an HTTP status message of each resource and pass it to
the front end of Web Inspector. The status message is shown in "Headers" tab in
the detail view of that resource, along with the HTTP status code.

Web Inspector does not respect HTTP status message
https://bugs.webkit.org/show_bug.cgi?id=39595

  • inspector/InspectorResource.cpp: (WebCore::InspectorResource::updateResponse): (WebCore::InspectorResource::updateScriptObject):
  • inspector/InspectorResource.h:
  • inspector/front-end/Resource.js: (WebInspector.Resource.CompareByTransferSize):
  • inspector/front-end/ResourceView.js: (WebInspector.ResourceView.prototype._refreshHTTPInformation):
  • inspector/front-end/inspector.js: (WebInspector.updateResource):
  • inspector/front-end/utilities.js: (String.prototype.escapeHTML): Escape '"' so that we can escape messages that may occur inside HTML attributes.
6:55 PM Changeset in webkit [60205] by jamesr@google.com
  • 1 edit
    400 copies
    409 adds in trunk/LayoutTests

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

Unreviewed, pixel expectations change only.

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

This is the first 200 diffs from css1/ and css2.1/.

  • platform/mac-leopard/css1/basic: Added.
  • platform/mac-leopard/css1/basic/class_as_selector-expected.checksum: Copied from LayoutTests/platform/mac/css1/basic/class_as_selector-expected.checksum.
  • platform/mac-leopard/css1/basic/class_as_selector-expected.png: Copied from LayoutTests/platform/mac/css1/basic/class_as_selector-expected.png.
  • platform/mac-leopard/css1/basic/comments-expected.checksum: Copied from LayoutTests/platform/mac/css1/basic/comments-expected.checksum.
  • platform/mac-leopard/css1/basic/comments-expected.png: Copied from LayoutTests/platform/mac/css1/basic/comments-expected.png.
  • platform/mac-leopard/css1/basic/containment-expected.checksum: Copied from LayoutTests/platform/mac/css1/basic/containment-expected.checksum.
  • platform/mac-leopard/css1/basic/containment-expected.png: Copied from LayoutTests/platform/mac/css1/basic/containment-expected.png.
  • platform/mac-leopard/css1/basic/contextual_selectors-expected.checksum: Copied from LayoutTests/platform/mac/css1/basic/contextual_selectors-expected.checksum.
  • platform/mac-leopard/css1/basic/contextual_selectors-expected.png: Copied from LayoutTests/platform/mac/css1/basic/contextual_selectors-expected.png.
  • platform/mac-leopard/css1/basic/grouping-expected.checksum: Copied from LayoutTests/platform/mac/css1/basic/grouping-expected.checksum.
  • platform/mac-leopard/css1/basic/grouping-expected.png: Copied from LayoutTests/platform/mac/css1/basic/grouping-expected.png.
  • platform/mac-leopard/css1/basic/id_as_selector-expected.checksum: Copied from LayoutTests/platform/mac/css1/basic/id_as_selector-expected.checksum.
  • platform/mac-leopard/css1/basic/id_as_selector-expected.png: Copied from LayoutTests/platform/mac/css1/basic/id_as_selector-expected.png.
  • platform/mac-leopard/css1/basic/inheritance-expected.checksum: Copied from LayoutTests/platform/mac/css1/basic/inheritance-expected.checksum.
  • platform/mac-leopard/css1/basic/inheritance-expected.png: Copied from LayoutTests/platform/mac/css1/basic/inheritance-expected.png.
  • platform/mac-leopard/css1/box_properties: Added.
  • platform/mac-leopard/css1/box_properties/border-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border-expected.checksum.
  • platform/mac-leopard/css1/box_properties/border-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border-expected.png.
  • platform/mac-leopard/css1/box_properties/border_bottom-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_bottom-expected.checksum.
  • platform/mac-leopard/css1/box_properties/border_bottom-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_bottom-expected.png.
  • platform/mac-leopard/css1/box_properties/border_bottom_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_bottom_inline-expected.checksum.
  • platform/mac-leopard/css1/box_properties/border_bottom_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_bottom_inline-expected.png.
  • platform/mac-leopard/css1/box_properties/border_bottom_width-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_bottom_width-expected.checksum.
  • platform/mac-leopard/css1/box_properties/border_bottom_width-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_bottom_width-expected.png.
  • platform/mac-leopard/css1/box_properties/border_bottom_width_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_bottom_width_inline-expected.checksum.
  • platform/mac-leopard/css1/box_properties/border_bottom_width_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_bottom_width_inline-expected.png.
  • platform/mac-leopard/css1/box_properties/border_color-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_color-expected.checksum.
  • platform/mac-leopard/css1/box_properties/border_color-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_color-expected.png.
  • platform/mac-leopard/css1/box_properties/border_color_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_color_inline-expected.checksum.
  • platform/mac-leopard/css1/box_properties/border_color_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_color_inline-expected.png.
  • platform/mac-leopard/css1/box_properties/border_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_inline-expected.checksum.
  • platform/mac-leopard/css1/box_properties/border_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_inline-expected.png.
  • platform/mac-leopard/css1/box_properties/border_left-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_left-expected.checksum.
  • platform/mac-leopard/css1/box_properties/border_left-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_left-expected.png.
  • platform/mac-leopard/css1/box_properties/border_left_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_left_inline-expected.checksum.
  • platform/mac-leopard/css1/box_properties/border_left_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_left_inline-expected.png.
  • platform/mac-leopard/css1/box_properties/border_left_width-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_left_width-expected.checksum.
  • platform/mac-leopard/css1/box_properties/border_left_width-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_left_width-expected.png.
  • platform/mac-leopard/css1/box_properties/border_left_width_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_left_width_inline-expected.checksum.
  • platform/mac-leopard/css1/box_properties/border_left_width_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_left_width_inline-expected.png.
  • platform/mac-leopard/css1/box_properties/border_right-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_right-expected.checksum.
  • platform/mac-leopard/css1/box_properties/border_right-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_right-expected.png.
  • platform/mac-leopard/css1/box_properties/border_right_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_right_inline-expected.checksum.
  • platform/mac-leopard/css1/box_properties/border_right_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_right_inline-expected.png.
  • platform/mac-leopard/css1/box_properties/border_right_width-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_right_width-expected.checksum.
  • platform/mac-leopard/css1/box_properties/border_right_width-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_right_width-expected.png.
  • platform/mac-leopard/css1/box_properties/border_right_width_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_right_width_inline-expected.checksum.
  • platform/mac-leopard/css1/box_properties/border_right_width_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_right_width_inline-expected.png.
  • platform/mac-leopard/css1/box_properties/border_style-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_style-expected.checksum.
  • platform/mac-leopard/css1/box_properties/border_style-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_style-expected.png.
  • platform/mac-leopard/css1/box_properties/border_style_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_style_inline-expected.checksum.
  • platform/mac-leopard/css1/box_properties/border_style_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_style_inline-expected.png.
  • platform/mac-leopard/css1/box_properties/border_top-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_top-expected.checksum.
  • platform/mac-leopard/css1/box_properties/border_top-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_top-expected.png.
  • platform/mac-leopard/css1/box_properties/border_top_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_top_inline-expected.checksum.
  • platform/mac-leopard/css1/box_properties/border_top_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_top_inline-expected.png.
  • platform/mac-leopard/css1/box_properties/border_top_width-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_top_width-expected.checksum.
  • platform/mac-leopard/css1/box_properties/border_top_width-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_top_width-expected.png.
  • platform/mac-leopard/css1/box_properties/border_top_width_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_top_width_inline-expected.checksum.
  • platform/mac-leopard/css1/box_properties/border_top_width_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_top_width_inline-expected.png.
  • platform/mac-leopard/css1/box_properties/border_width-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_width-expected.checksum.
  • platform/mac-leopard/css1/box_properties/border_width-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_width-expected.png.
  • platform/mac-leopard/css1/box_properties/border_width_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_width_inline-expected.checksum.
  • platform/mac-leopard/css1/box_properties/border_width_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_width_inline-expected.png.
  • platform/mac-leopard/css1/box_properties/clear-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/clear-expected.checksum.
  • platform/mac-leopard/css1/box_properties/clear-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/clear-expected.png.
  • platform/mac-leopard/css1/box_properties/clear_float-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/clear_float-expected.checksum.
  • platform/mac-leopard/css1/box_properties/clear_float-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/clear_float-expected.png.
  • platform/mac-leopard/css1/box_properties/float-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/float-expected.checksum.
  • platform/mac-leopard/css1/box_properties/float-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/float-expected.png.
  • platform/mac-leopard/css1/box_properties/float_elements_in_series-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/float_elements_in_series-expected.checksum.
  • platform/mac-leopard/css1/box_properties/float_elements_in_series-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/float_elements_in_series-expected.png.
  • platform/mac-leopard/css1/box_properties/float_on_text_elements-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/float_on_text_elements-expected.checksum.
  • platform/mac-leopard/css1/box_properties/float_on_text_elements-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/float_on_text_elements-expected.png.
  • platform/mac-leopard/css1/box_properties/height-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/height-expected.checksum.
  • platform/mac-leopard/css1/box_properties/height-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/height-expected.png.
  • platform/mac-leopard/css1/box_properties/margin-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/margin-expected.checksum.
  • platform/mac-leopard/css1/box_properties/margin-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/margin-expected.png.
  • platform/mac-leopard/css1/box_properties/margin_bottom-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/margin_bottom-expected.checksum.
  • platform/mac-leopard/css1/box_properties/margin_bottom-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/margin_bottom-expected.png.
  • platform/mac-leopard/css1/box_properties/margin_bottom_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/margin_bottom_inline-expected.checksum.
  • platform/mac-leopard/css1/box_properties/margin_bottom_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/margin_bottom_inline-expected.png.
  • platform/mac-leopard/css1/box_properties/margin_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/margin_inline-expected.checksum.
  • platform/mac-leopard/css1/box_properties/margin_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/margin_inline-expected.png.
  • platform/mac-leopard/css1/box_properties/margin_left-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/margin_left-expected.checksum.
  • platform/mac-leopard/css1/box_properties/margin_left-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/margin_left-expected.png.
  • platform/mac-leopard/css1/box_properties/margin_left_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/margin_left_inline-expected.checksum.
  • platform/mac-leopard/css1/box_properties/margin_left_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/margin_left_inline-expected.png.
  • platform/mac-leopard/css1/box_properties/margin_right-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/margin_right-expected.checksum.
  • platform/mac-leopard/css1/box_properties/margin_right-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/margin_right-expected.png.
  • platform/mac-leopard/css1/box_properties/margin_right_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/margin_right_inline-expected.checksum.
  • platform/mac-leopard/css1/box_properties/margin_right_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/margin_right_inline-expected.png.
  • platform/mac-leopard/css1/box_properties/margin_top-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/margin_top-expected.checksum.
  • platform/mac-leopard/css1/box_properties/margin_top-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/margin_top-expected.png.
  • platform/mac-leopard/css1/box_properties/margin_top_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/margin_top_inline-expected.checksum.
  • platform/mac-leopard/css1/box_properties/margin_top_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/margin_top_inline-expected.png.
  • platform/mac-leopard/css1/box_properties/padding-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/padding-expected.checksum.
  • platform/mac-leopard/css1/box_properties/padding-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/padding-expected.png.
  • platform/mac-leopard/css1/box_properties/padding_bottom-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/padding_bottom-expected.checksum.
  • platform/mac-leopard/css1/box_properties/padding_bottom-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/padding_bottom-expected.png.
  • platform/mac-leopard/css1/box_properties/padding_bottom_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/padding_bottom_inline-expected.checksum.
  • platform/mac-leopard/css1/box_properties/padding_bottom_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/padding_bottom_inline-expected.png.
  • platform/mac-leopard/css1/box_properties/padding_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/padding_inline-expected.checksum.
  • platform/mac-leopard/css1/box_properties/padding_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/padding_inline-expected.png.
  • platform/mac-leopard/css1/box_properties/padding_left-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/padding_left-expected.checksum.
  • platform/mac-leopard/css1/box_properties/padding_left-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/padding_left-expected.png.
  • platform/mac-leopard/css1/box_properties/padding_left_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/padding_left_inline-expected.checksum.
  • platform/mac-leopard/css1/box_properties/padding_left_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/padding_left_inline-expected.png.
  • platform/mac-leopard/css1/box_properties/padding_right-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/padding_right-expected.checksum.
  • platform/mac-leopard/css1/box_properties/padding_right-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/padding_right-expected.png.
  • platform/mac-leopard/css1/box_properties/padding_right_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/padding_right_inline-expected.checksum.
  • platform/mac-leopard/css1/box_properties/padding_right_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/padding_right_inline-expected.png.
  • platform/mac-leopard/css1/box_properties/padding_top-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/padding_top-expected.checksum.
  • platform/mac-leopard/css1/box_properties/padding_top-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/padding_top-expected.png.
  • platform/mac-leopard/css1/box_properties/padding_top_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/padding_top_inline-expected.checksum.
  • platform/mac-leopard/css1/box_properties/padding_top_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/padding_top_inline-expected.png.
  • platform/mac-leopard/css1/cascade: Added.
  • platform/mac-leopard/css1/cascade/cascade_order-expected.checksum: Copied from LayoutTests/platform/mac/css1/cascade/cascade_order-expected.checksum.
  • platform/mac-leopard/css1/cascade/cascade_order-expected.png: Copied from LayoutTests/platform/mac/css1/cascade/cascade_order-expected.png.
  • platform/mac-leopard/css1/cascade/important-expected.checksum: Copied from LayoutTests/platform/mac/css1/cascade/important-expected.checksum.
  • platform/mac-leopard/css1/cascade/important-expected.png: Copied from LayoutTests/platform/mac/css1/cascade/important-expected.png.
  • platform/mac-leopard/css1/classification: Added.
  • platform/mac-leopard/css1/classification/display-expected.checksum: Copied from LayoutTests/platform/mac/css1/classification/display-expected.checksum.
  • platform/mac-leopard/css1/classification/display-expected.png: Copied from LayoutTests/platform/mac/css1/classification/display-expected.png.
  • platform/mac-leopard/css1/classification/list_style-expected.checksum: Copied from LayoutTests/platform/mac/css1/classification/list_style-expected.checksum.
  • platform/mac-leopard/css1/classification/list_style-expected.png: Copied from LayoutTests/platform/mac/css1/classification/list_style-expected.png.
  • platform/mac-leopard/css1/classification/list_style_image-expected.checksum: Copied from LayoutTests/platform/mac/css1/classification/list_style_image-expected.checksum.
  • platform/mac-leopard/css1/classification/list_style_image-expected.png: Copied from LayoutTests/platform/mac/css1/classification/list_style_image-expected.png.
  • platform/mac-leopard/css1/classification/list_style_position-expected.checksum: Copied from LayoutTests/platform/mac/css1/classification/list_style_position-expected.checksum.
  • platform/mac-leopard/css1/classification/list_style_position-expected.png: Copied from LayoutTests/platform/mac/css1/classification/list_style_position-expected.png.
  • platform/mac-leopard/css1/classification/list_style_type-expected.checksum: Copied from LayoutTests/platform/mac/css1/classification/list_style_type-expected.checksum.
  • platform/mac-leopard/css1/classification/list_style_type-expected.png: Copied from LayoutTests/platform/mac/css1/classification/list_style_type-expected.png.
  • platform/mac-leopard/css1/classification/white_space-expected.checksum: Copied from LayoutTests/platform/mac/css1/classification/white_space-expected.checksum.
  • platform/mac-leopard/css1/classification/white_space-expected.png: Copied from LayoutTests/platform/mac/css1/classification/white_space-expected.png.
  • platform/mac-leopard/css1/color_and_background: Added.
  • platform/mac-leopard/css1/color_and_background/background-expected.checksum: Copied from LayoutTests/platform/mac/css1/color_and_background/background-expected.checksum.
  • platform/mac-leopard/css1/color_and_background/background-expected.png: Copied from LayoutTests/platform/mac/css1/color_and_background/background-expected.png.
  • platform/mac-leopard/css1/color_and_background/background_attachment-expected.checksum: Copied from LayoutTests/platform/mac/css1/color_and_background/background_attachment-expected.checksum.
  • platform/mac-leopard/css1/color_and_background/background_attachment-expected.png: Copied from LayoutTests/platform/mac/css1/color_and_background/background_attachment-expected.png.
  • platform/mac-leopard/css1/color_and_background/background_color-expected.checksum: Copied from LayoutTests/platform/mac/css1/color_and_background/background_color-expected.checksum.
  • platform/mac-leopard/css1/color_and_background/background_color-expected.png: Copied from LayoutTests/platform/mac/css1/color_and_background/background_color-expected.png.
  • platform/mac-leopard/css1/color_and_background/background_image-expected.checksum: Copied from LayoutTests/platform/mac/css1/color_and_background/background_image-expected.checksum.
  • platform/mac-leopard/css1/color_and_background/background_image-expected.png: Copied from LayoutTests/platform/mac/css1/color_and_background/background_image-expected.png.
  • platform/mac-leopard/css1/color_and_background/background_position-expected.checksum: Copied from LayoutTests/platform/mac/css1/color_and_background/background_position-expected.checksum.
  • platform/mac-leopard/css1/color_and_background/background_position-expected.png: Copied from LayoutTests/platform/mac/css1/color_and_background/background_position-expected.png.
  • platform/mac-leopard/css1/color_and_background/background_repeat-expected.checksum: Copied from LayoutTests/platform/mac/css1/color_and_background/background_repeat-expected.checksum.
  • platform/mac-leopard/css1/color_and_background/background_repeat-expected.png: Copied from LayoutTests/platform/mac/css1/color_and_background/background_repeat-expected.png.
  • platform/mac-leopard/css1/color_and_background/color-expected.checksum: Copied from LayoutTests/platform/mac/css1/color_and_background/color-expected.checksum.
  • platform/mac-leopard/css1/color_and_background/color-expected.png: Copied from LayoutTests/platform/mac/css1/color_and_background/color-expected.png.
  • platform/mac-leopard/css1/font_properties: Added.
  • platform/mac-leopard/css1/font_properties/font-expected.checksum: Copied from LayoutTests/platform/mac/css1/font_properties/font-expected.checksum.
  • platform/mac-leopard/css1/font_properties/font-expected.png: Copied from LayoutTests/platform/mac/css1/font_properties/font-expected.png.
  • platform/mac-leopard/css1/font_properties/font_size-expected.checksum: Copied from LayoutTests/platform/mac/css1/font_properties/font_size-expected.checksum.
  • platform/mac-leopard/css1/font_properties/font_size-expected.png: Copied from LayoutTests/platform/mac/css1/font_properties/font_size-expected.png.
  • platform/mac-leopard/css1/font_properties/font_style-expected.checksum: Copied from LayoutTests/platform/mac/css1/font_properties/font_style-expected.checksum.
  • platform/mac-leopard/css1/font_properties/font_style-expected.png: Copied from LayoutTests/platform/mac/css1/font_properties/font_style-expected.png.
  • platform/mac-leopard/css1/font_properties/font_weight-expected.checksum: Copied from LayoutTests/platform/mac/css1/font_properties/font_weight-expected.checksum.
  • platform/mac-leopard/css1/font_properties/font_weight-expected.png: Copied from LayoutTests/platform/mac/css1/font_properties/font_weight-expected.png.
  • platform/mac-leopard/css1/formatting_model: Added.
  • platform/mac-leopard/css1/formatting_model/canvas-expected.checksum: Copied from LayoutTests/platform/mac/css1/formatting_model/canvas-expected.checksum.
  • platform/mac-leopard/css1/formatting_model/canvas-expected.png: Copied from LayoutTests/platform/mac/css1/formatting_model/canvas-expected.png.
  • platform/mac-leopard/css1/formatting_model/floating_elements-expected.checksum: Copied from LayoutTests/platform/mac/css1/formatting_model/floating_elements-expected.checksum.
  • platform/mac-leopard/css1/formatting_model/floating_elements-expected.png: Copied from LayoutTests/platform/mac/css1/formatting_model/floating_elements-expected.png.
  • platform/mac-leopard/css1/formatting_model/height_of_lines-expected.checksum: Copied from LayoutTests/platform/mac/css1/formatting_model/height_of_lines-expected.checksum.
  • platform/mac-leopard/css1/formatting_model/height_of_lines-expected.png: Copied from LayoutTests/platform/mac/css1/formatting_model/height_of_lines-expected.png.
  • platform/mac-leopard/css1/formatting_model/horizontal_formatting-expected.checksum: Copied from LayoutTests/platform/mac/css1/formatting_model/horizontal_formatting-expected.checksum.
  • platform/mac-leopard/css1/formatting_model/horizontal_formatting-expected.png: Copied from LayoutTests/platform/mac/css1/formatting_model/horizontal_formatting-expected.png.
  • platform/mac-leopard/css1/formatting_model/inline_elements-expected.checksum: Copied from LayoutTests/platform/mac/css1/formatting_model/inline_elements-expected.checksum.
  • platform/mac-leopard/css1/formatting_model/inline_elements-expected.png: Copied from LayoutTests/platform/mac/css1/formatting_model/inline_elements-expected.png.
  • platform/mac-leopard/css1/formatting_model/replaced_elements-expected.checksum: Copied from LayoutTests/platform/mac/css1/formatting_model/replaced_elements-expected.checksum.
  • platform/mac-leopard/css1/formatting_model/replaced_elements-expected.png: Copied from LayoutTests/platform/mac/css1/formatting_model/replaced_elements-expected.png.
  • platform/mac-leopard/css1/formatting_model/vertical_formatting-expected.checksum: Copied from LayoutTests/platform/mac/css1/formatting_model/vertical_formatting-expected.checksum.
  • platform/mac-leopard/css1/formatting_model/vertical_formatting-expected.png: Copied from LayoutTests/platform/mac/css1/formatting_model/vertical_formatting-expected.png.
  • platform/mac-leopard/css1/pseudo: Added.
  • platform/mac-leopard/css1/pseudo/anchor-expected.checksum: Copied from LayoutTests/platform/mac/css1/pseudo/anchor-expected.checksum.
  • platform/mac-leopard/css1/pseudo/anchor-expected.png: Copied from LayoutTests/platform/mac/css1/pseudo/anchor-expected.png.
  • platform/mac-leopard/css1/pseudo/firstletter-expected.checksum: Copied from LayoutTests/platform/mac/css1/pseudo/firstletter-expected.checksum.
  • platform/mac-leopard/css1/pseudo/firstletter-expected.png: Copied from LayoutTests/platform/mac/css1/pseudo/firstletter-expected.png.
  • platform/mac-leopard/css1/pseudo/firstline-expected.checksum: Copied from LayoutTests/platform/mac/css1/pseudo/firstline-expected.checksum.
  • platform/mac-leopard/css1/pseudo/firstline-expected.png: Copied from LayoutTests/platform/mac/css1/pseudo/firstline-expected.png.
  • platform/mac-leopard/css1/pseudo/multiple_pseudo_elements-expected.checksum: Copied from LayoutTests/platform/mac/css1/pseudo/multiple_pseudo_elements-expected.checksum.
  • platform/mac-leopard/css1/pseudo/multiple_pseudo_elements-expected.png: Copied from LayoutTests/platform/mac/css1/pseudo/multiple_pseudo_elements-expected.png.
  • platform/mac-leopard/css1/pseudo/pseudo_elements_in_selectors-expected.checksum: Copied from LayoutTests/platform/mac/css1/pseudo/pseudo_elements_in_selectors-expected.checksum.
  • platform/mac-leopard/css1/pseudo/pseudo_elements_in_selectors-expected.png: Copied from LayoutTests/platform/mac/css1/pseudo/pseudo_elements_in_selectors-expected.png.
  • platform/mac-leopard/css1/text_properties/letter_spacing-expected.checksum: Copied from LayoutTests/platform/mac/css1/text_properties/letter_spacing-expected.checksum.
  • platform/mac-leopard/css1/text_properties/letter_spacing-expected.png: Copied from LayoutTests/platform/mac/css1/text_properties/letter_spacing-expected.png.
  • platform/mac-leopard/css1/text_properties/line_height-expected.checksum: Copied from LayoutTests/platform/mac/css1/text_properties/line_height-expected.checksum.
  • platform/mac-leopard/css1/text_properties/line_height-expected.png: Copied from LayoutTests/platform/mac/css1/text_properties/line_height-expected.png.
  • platform/mac-leopard/css1/text_properties/text_align-expected.checksum: Copied from LayoutTests/platform/mac/css1/text_properties/text_align-expected.checksum.
  • platform/mac-leopard/css1/text_properties/text_align-expected.png: Copied from LayoutTests/platform/mac/css1/text_properties/text_align-expected.png.
  • platform/mac-leopard/css1/text_properties/text_decoration-expected.checksum: Copied from LayoutTests/platform/mac/css1/text_properties/text_decoration-expected.checksum.
  • platform/mac-leopard/css1/text_properties/text_decoration-expected.png: Copied from LayoutTests/platform/mac/css1/text_properties/text_decoration-expected.png.
  • platform/mac-leopard/css1/text_properties/text_indent-expected.checksum: Copied from LayoutTests/platform/mac/css1/text_properties/text_indent-expected.checksum.
  • platform/mac-leopard/css1/text_properties/text_indent-expected.png: Copied from LayoutTests/platform/mac/css1/text_properties/text_indent-expected.png.
  • platform/mac-leopard/css1/text_properties/vertical_align-expected.checksum: Copied from LayoutTests/platform/mac/css1/text_properties/vertical_align-expected.checksum.
  • platform/mac-leopard/css1/text_properties/vertical_align-expected.png: Copied from LayoutTests/platform/mac/css1/text_properties/vertical_align-expected.png.
  • platform/mac-leopard/css1/text_properties/word_spacing-expected.checksum: Copied from LayoutTests/platform/mac/css1/text_properties/word_spacing-expected.checksum.
  • platform/mac-leopard/css1/text_properties/word_spacing-expected.png: Copied from LayoutTests/platform/mac/css1/text_properties/word_spacing-expected.png.
  • platform/mac-leopard/css1/units: Added.
  • platform/mac-leopard/css1/units/color_units-expected.checksum: Copied from LayoutTests/platform/mac/css1/units/color_units-expected.checksum.
  • platform/mac-leopard/css1/units/color_units-expected.png: Copied from LayoutTests/platform/mac/css1/units/color_units-expected.png.
  • platform/mac-leopard/css1/units/length_units-expected.checksum: Copied from LayoutTests/platform/mac/css1/units/length_units-expected.checksum.
  • platform/mac-leopard/css1/units/length_units-expected.png: Copied from LayoutTests/platform/mac/css1/units/length_units-expected.png.
  • platform/mac-leopard/css1/units/percentage_units-expected.checksum: Copied from LayoutTests/platform/mac/css1/units/percentage_units-expected.checksum.
  • platform/mac-leopard/css1/units/percentage_units-expected.png: Copied from LayoutTests/platform/mac/css1/units/percentage_units-expected.png.
  • platform/mac-leopard/css1/units/urls-expected.checksum: Copied from LayoutTests/platform/mac/css1/units/urls-expected.checksum.
  • platform/mac-leopard/css1/units/urls-expected.png: Copied from LayoutTests/platform/mac/css1/units/urls-expected.png.
  • platform/mac-leopard/css2.1/t0402-c71-fwd-parsing-00-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0402-c71-fwd-parsing-00-f-expected.checksum.
  • platform/mac-leopard/css2.1/t0402-c71-fwd-parsing-00-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0402-c71-fwd-parsing-00-f-expected.png.
  • platform/mac-leopard/css2.1/t0402-c71-fwd-parsing-01-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0402-c71-fwd-parsing-01-f-expected.checksum.
  • platform/mac-leopard/css2.1/t0402-c71-fwd-parsing-01-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0402-c71-fwd-parsing-01-f-expected.png.
  • platform/mac-leopard/css2.1/t0402-c71-fwd-parsing-02-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0402-c71-fwd-parsing-02-f-expected.checksum.
  • platform/mac-leopard/css2.1/t0402-c71-fwd-parsing-02-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0402-c71-fwd-parsing-02-f-expected.png.
  • platform/mac-leopard/css2.1/t0402-c71-fwd-parsing-03-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0402-c71-fwd-parsing-03-f-expected.checksum.
  • platform/mac-leopard/css2.1/t0402-c71-fwd-parsing-03-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0402-c71-fwd-parsing-03-f-expected.png.
  • platform/mac-leopard/css2.1/t0402-c71-fwd-parsing-04-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0402-c71-fwd-parsing-04-f-expected.checksum.
  • platform/mac-leopard/css2.1/t0402-c71-fwd-parsing-04-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0402-c71-fwd-parsing-04-f-expected.png.
  • platform/mac-leopard/css2.1/t0402-syntax-01-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0402-syntax-01-f-expected.checksum.
  • platform/mac-leopard/css2.1/t0402-syntax-01-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0402-syntax-01-f-expected.png.
  • platform/mac-leopard/css2.1/t0402-syntax-02-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0402-syntax-02-f-expected.checksum.
  • platform/mac-leopard/css2.1/t0402-syntax-02-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0402-syntax-02-f-expected.png.
  • platform/mac-leopard/css2.1/t0402-syntax-03-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0402-syntax-03-f-expected.checksum.
  • platform/mac-leopard/css2.1/t0402-syntax-03-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0402-syntax-03-f-expected.png.
  • platform/mac-leopard/css2.1/t0402-syntax-04-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0402-syntax-04-f-expected.checksum.
  • platform/mac-leopard/css2.1/t0402-syntax-04-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0402-syntax-04-f-expected.png.
  • platform/mac-leopard/css2.1/t0402-syntax-05-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0402-syntax-05-f-expected.checksum.
  • platform/mac-leopard/css2.1/t0402-syntax-05-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0402-syntax-05-f-expected.png.
  • platform/mac-leopard/css2.1/t0402-syntax-06-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0402-syntax-06-f-expected.checksum.
  • platform/mac-leopard/css2.1/t0402-syntax-06-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0402-syntax-06-f-expected.png.
  • platform/mac-leopard/css2.1/t0505-c16-descendant-00-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0505-c16-descendant-00-e-expected.checksum.
  • platform/mac-leopard/css2.1/t0505-c16-descendant-00-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0505-c16-descendant-00-e-expected.png.
  • platform/mac-leopard/css2.1/t0505-c16-descendant-01-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0505-c16-descendant-01-e-expected.checksum.
  • platform/mac-leopard/css2.1/t0505-c16-descendant-01-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0505-c16-descendant-01-e-expected.png.
  • platform/mac-leopard/css2.1/t0505-c16-descendant-02-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0505-c16-descendant-02-e-expected.checksum.
  • platform/mac-leopard/css2.1/t0505-c16-descendant-02-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0505-c16-descendant-02-e-expected.png.
  • platform/mac-leopard/css2.1/t0509-c15-ids-00-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0509-c15-ids-00-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0509-c15-ids-00-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0509-c15-ids-00-a-expected.png.
  • platform/mac-leopard/css2.1/t0509-c15-ids-01-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0509-c15-ids-01-e-expected.checksum.
  • platform/mac-leopard/css2.1/t0509-c15-ids-01-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0509-c15-ids-01-e-expected.png.
  • platform/mac-leopard/css2.1/t0509-id-sel-syntax-01-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0509-id-sel-syntax-01-f-expected.checksum.
  • platform/mac-leopard/css2.1/t0509-id-sel-syntax-01-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0509-id-sel-syntax-01-f-expected.png.
  • platform/mac-leopard/css2.1/t0509-id-sel-syntax-02-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0509-id-sel-syntax-02-b-expected.checksum.
  • platform/mac-leopard/css2.1/t0509-id-sel-syntax-02-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0509-id-sel-syntax-02-b-expected.png.
  • platform/mac-leopard/css2.1/t0510-c25-pseudo-elmnt-00-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0510-c25-pseudo-elmnt-00-c-expected.checksum.
  • platform/mac-leopard/css2.1/t0510-c25-pseudo-elmnt-00-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0510-c25-pseudo-elmnt-00-c-expected.png.
  • platform/mac-leopard/css2.1/t0511-c21-pseud-anch-00-e-i-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0511-c21-pseud-anch-00-e-i-expected.checksum.
  • platform/mac-leopard/css2.1/t0511-c21-pseud-anch-00-e-i-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0511-c21-pseud-anch-00-e-i-expected.png.
  • platform/mac-leopard/css2.1/t0511-c21-pseud-link-00-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0511-c21-pseud-link-00-e-expected.checksum.
  • platform/mac-leopard/css2.1/t0511-c21-pseud-link-00-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0511-c21-pseud-link-00-e-expected.png.
  • platform/mac-leopard/css2.1/t0511-c21-pseud-link-01-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0511-c21-pseud-link-01-e-expected.checksum.
  • platform/mac-leopard/css2.1/t0511-c21-pseud-link-01-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0511-c21-pseud-link-01-e-expected.png.
  • platform/mac-leopard/css2.1/t0511-c21-pseud-link-02-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0511-c21-pseud-link-02-e-expected.checksum.
  • platform/mac-leopard/css2.1/t0511-c21-pseud-link-02-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0511-c21-pseud-link-02-e-expected.png.
  • platform/mac-leopard/css2.1/t0511-c21-pseud-link-03-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0511-c21-pseud-link-03-e-expected.checksum.
  • platform/mac-leopard/css2.1/t0511-c21-pseud-link-03-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0511-c21-pseud-link-03-e-expected.png.
  • platform/mac-leopard/css2.1/t0602-c13-inh-underlin-00-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0602-c13-inh-underlin-00-e-expected.checksum.
  • platform/mac-leopard/css2.1/t0602-c13-inh-underlin-00-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0602-c13-inh-underlin-00-e-expected.png.
  • platform/mac-leopard/css2.1/t0602-c13-inheritance-00-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0602-c13-inheritance-00-e-expected.checksum.
  • platform/mac-leopard/css2.1/t0602-c13-inheritance-00-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0602-c13-inheritance-00-e-expected.png.
  • platform/mac-leopard/css2.1/t0602-inherit-bdr-pad-b-00-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0602-inherit-bdr-pad-b-00-expected.checksum.
  • platform/mac-leopard/css2.1/t0602-inherit-bdr-pad-b-00-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0602-inherit-bdr-pad-b-00-expected.png.
  • platform/mac-leopard/css2.1/t0603-c11-import-00-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0603-c11-import-00-b-expected.checksum.
  • platform/mac-leopard/css2.1/t0603-c11-import-00-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0603-c11-import-00-b-expected.png.
  • platform/mac-leopard/css2.1/t0801-c412-hz-box-00-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0801-c412-hz-box-00-b-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0801-c412-hz-box-00-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0801-c412-hz-box-00-b-a-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-03-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-03-b-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-03-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-03-b-a-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5502-mrgn-r-01-c-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-mrgn-r-01-c-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5502-mrgn-r-01-c-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-mrgn-r-01-c-a-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5502-mrgn-r-02-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-mrgn-r-02-c-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5502-mrgn-r-02-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-mrgn-r-02-c-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5502-mrgn-r-03-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-mrgn-r-03-c-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5502-mrgn-r-03-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-mrgn-r-03-c-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-03-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-03-b-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-03-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-03-b-a-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5504-mrgn-l-01-c-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-mrgn-l-01-c-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5504-mrgn-l-01-c-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-mrgn-l-01-c-a-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5504-mrgn-l-02-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-mrgn-l-02-c-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5504-mrgn-l-02-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-mrgn-l-02-c-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5504-mrgn-l-03-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-mrgn-l-03-c-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5504-mrgn-l-03-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-mrgn-l-03-c-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5505-imrgn-00-a-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5505-imrgn-00-a-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5505-imrgn-00-a-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5505-imrgn-00-a-ag-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5505-mrgn-00-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5505-mrgn-00-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5505-mrgn-00-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5505-mrgn-00-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5505-mrgn-01-e-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5505-mrgn-01-e-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5505-mrgn-01-e-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5505-mrgn-01-e-a-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5505-mrgn-02-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5505-mrgn-02-c-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5505-mrgn-02-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5505-mrgn-02-c-expected.png.
  • platform/mac-leopard/css2.1/t0803-c5505-mrgn-03-c-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5505-mrgn-03-c-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0803-c5505-mrgn-03-c-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5505-mrgn-03-c-ag-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5506-padn-t-00-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5506-padn-t-00-b-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5506-padn-t-00-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5506-padn-t-00-b-a-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5507-ipadn-r-03-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-ipadn-r-03-b-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5507-ipadn-r-03-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-ipadn-r-03-b-a-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5507-padn-r-00-c-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-padn-r-00-c-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5507-padn-r-00-c-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-padn-r-00-c-ag-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5507-padn-r-01-c-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-padn-r-01-c-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5507-padn-r-01-c-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-padn-r-01-c-a-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5507-padn-r-02-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-padn-r-02-f-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5507-padn-r-02-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-padn-r-02-f-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5507-padn-r-03-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-padn-r-03-f-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5507-padn-r-03-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-padn-r-03-f-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5509-ipadn-l-03-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-ipadn-l-03-b-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5509-ipadn-l-03-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-ipadn-l-03-b-a-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5509-padn-l-00-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-padn-l-00-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5509-padn-l-00-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-padn-l-00-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5509-padn-l-01-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-padn-l-01-b-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5509-padn-l-01-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-padn-l-01-b-a-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5509-padn-l-02-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-padn-l-02-f-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5509-padn-l-02-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-padn-l-02-f-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5509-padn-l-03-f-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-padn-l-03-f-g-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5509-padn-l-03-f-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-padn-l-03-f-g-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5510-ipadn-00-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5510-ipadn-00-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5510-ipadn-00-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5510-ipadn-00-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5510-padn-00-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5510-padn-00-b-ag-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5510-padn-00-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5510-padn-00-b-ag-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5510-padn-01-e-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5510-padn-01-e-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5510-padn-01-e-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5510-padn-01-e-a-expected.png.
  • platform/mac-leopard/css2.1/t0804-c5510-padn-02-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5510-padn-02-f-expected.checksum.
  • platform/mac-leopard/css2.1/t0804-c5510-padn-02-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5510-padn-02-f-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5511-brdr-tw-00-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5511-brdr-tw-00-b-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5511-brdr-tw-00-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5511-brdr-tw-00-b-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5511-brdr-tw-02-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5511-brdr-tw-02-b-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5511-brdr-tw-02-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5511-brdr-tw-02-b-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5511-brdr-tw-03-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5511-brdr-tw-03-b-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5511-brdr-tw-03-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5511-brdr-tw-03-b-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5512-brdr-rw-00-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5512-brdr-rw-00-b-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5512-brdr-rw-00-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5512-brdr-rw-00-b-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5512-brdr-rw-02-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5512-brdr-rw-02-b-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5512-brdr-rw-02-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5512-brdr-rw-02-b-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5512-brdr-rw-03-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5512-brdr-rw-03-b-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5512-brdr-rw-03-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5512-brdr-rw-03-b-expected.png.
  • platform/mac-leopard/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.checksum.
  • platform/mac-leopard/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.png.
  • platform/mac-leopard/css2.1/t09-c5526c-display-00-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t09-c5526c-display-00-e-expected.checksum.
  • platform/mac-leopard/css2.1/t09-c5526c-display-00-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t09-c5526c-display-00-e-expected.png.
  • platform/mac/css1/basic/class_as_selector-expected.checksum: Replaced.
  • platform/mac/css1/basic/class_as_selector-expected.png: Replaced.
  • platform/mac/css1/basic/comments-expected.checksum: Replaced.
  • platform/mac/css1/basic/comments-expected.png: Replaced.
  • platform/mac/css1/basic/containment-expected.checksum: Replaced.
  • platform/mac/css1/basic/containment-expected.png: Replaced.
  • platform/mac/css1/basic/contextual_selectors-expected.checksum: Replaced.
  • platform/mac/css1/basic/contextual_selectors-expected.png: Replaced.
  • platform/mac/css1/basic/grouping-expected.checksum: Replaced.
  • platform/mac/css1/basic/grouping-expected.png: Replaced.
  • platform/mac/css1/basic/id_as_selector-expected.checksum: Replaced.
  • platform/mac/css1/basic/id_as_selector-expected.png: Replaced.
  • platform/mac/css1/basic/inheritance-expected.checksum: Replaced.
  • platform/mac/css1/basic/inheritance-expected.png: Replaced.
  • platform/mac/css1/box_properties/border-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/border-expected.png: Replaced.
  • platform/mac/css1/box_properties/border_bottom-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/border_bottom-expected.png: Replaced.
  • platform/mac/css1/box_properties/border_bottom_inline-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/border_bottom_inline-expected.png: Replaced.
  • platform/mac/css1/box_properties/border_bottom_width-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/border_bottom_width-expected.png: Replaced.
  • platform/mac/css1/box_properties/border_bottom_width_inline-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/border_bottom_width_inline-expected.png: Replaced.
  • platform/mac/css1/box_properties/border_color-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/border_color-expected.png: Replaced.
  • platform/mac/css1/box_properties/border_color_inline-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/border_color_inline-expected.png: Replaced.
  • platform/mac/css1/box_properties/border_inline-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/border_inline-expected.png: Replaced.
  • platform/mac/css1/box_properties/border_left-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/border_left-expected.png: Replaced.
  • platform/mac/css1/box_properties/border_left_inline-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/border_left_inline-expected.png: Replaced.
  • platform/mac/css1/box_properties/border_left_width-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/border_left_width-expected.png: Replaced.
  • platform/mac/css1/box_properties/border_left_width_inline-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/border_left_width_inline-expected.png: Replaced.
  • platform/mac/css1/box_properties/border_right-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/border_right-expected.png: Replaced.
  • platform/mac/css1/box_properties/border_right_inline-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/border_right_inline-expected.png: Replaced.
  • platform/mac/css1/box_properties/border_right_width-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/border_right_width-expected.png: Replaced.
  • platform/mac/css1/box_properties/border_right_width_inline-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/border_right_width_inline-expected.png: Replaced.
  • platform/mac/css1/box_properties/border_style-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/border_style-expected.png: Replaced.
  • platform/mac/css1/box_properties/border_style_inline-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/border_style_inline-expected.png: Replaced.
  • platform/mac/css1/box_properties/border_top-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/border_top-expected.png: Replaced.
  • platform/mac/css1/box_properties/border_top_inline-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/border_top_inline-expected.png: Replaced.
  • platform/mac/css1/box_properties/border_top_width-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/border_top_width-expected.png: Replaced.
  • platform/mac/css1/box_properties/border_top_width_inline-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/border_top_width_inline-expected.png: Replaced.
  • platform/mac/css1/box_properties/border_width-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/border_width-expected.png: Replaced.
  • platform/mac/css1/box_properties/border_width_inline-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/border_width_inline-expected.png: Replaced.
  • platform/mac/css1/box_properties/clear-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/clear-expected.png: Replaced.
  • platform/mac/css1/box_properties/clear_float-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/clear_float-expected.png: Replaced.
  • platform/mac/css1/box_properties/float-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/float-expected.png: Replaced.
  • platform/mac/css1/box_properties/float_elements_in_series-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/float_elements_in_series-expected.png: Replaced.
  • platform/mac/css1/box_properties/float_on_text_elements-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/float_on_text_elements-expected.png: Replaced.
  • platform/mac/css1/box_properties/height-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/height-expected.png: Replaced.
  • platform/mac/css1/box_properties/margin-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/margin-expected.png: Replaced.
  • platform/mac/css1/box_properties/margin_bottom-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/margin_bottom-expected.png: Replaced.
  • platform/mac/css1/box_properties/margin_bottom_inline-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/margin_bottom_inline-expected.png: Replaced.
  • platform/mac/css1/box_properties/margin_inline-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/margin_inline-expected.png: Replaced.
  • platform/mac/css1/box_properties/margin_left-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/margin_left-expected.png: Replaced.
  • platform/mac/css1/box_properties/margin_left_inline-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/margin_left_inline-expected.png: Replaced.
  • platform/mac/css1/box_properties/margin_right-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/margin_right-expected.png: Replaced.
  • platform/mac/css1/box_properties/margin_right_inline-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/margin_right_inline-expected.png: Replaced.
  • platform/mac/css1/box_properties/margin_top-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/margin_top-expected.png: Replaced.
  • platform/mac/css1/box_properties/margin_top_inline-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/margin_top_inline-expected.png: Replaced.
  • platform/mac/css1/box_properties/padding-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/padding-expected.png: Replaced.
  • platform/mac/css1/box_properties/padding_bottom-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/padding_bottom-expected.png: Replaced.
  • platform/mac/css1/box_properties/padding_bottom_inline-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/padding_bottom_inline-expected.png: Replaced.
  • platform/mac/css1/box_properties/padding_inline-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/padding_inline-expected.png: Replaced.
  • platform/mac/css1/box_properties/padding_left-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/padding_left-expected.png: Replaced.
  • platform/mac/css1/box_properties/padding_left_inline-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/padding_left_inline-expected.png: Replaced.
  • platform/mac/css1/box_properties/padding_right-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/padding_right-expected.png: Replaced.
  • platform/mac/css1/box_properties/padding_right_inline-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/padding_right_inline-expected.png: Replaced.
  • platform/mac/css1/box_properties/padding_top-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/padding_top-expected.png: Replaced.
  • platform/mac/css1/box_properties/padding_top_inline-expected.checksum: Replaced.
  • platform/mac/css1/box_properties/padding_top_inline-expected.png: Replaced.
  • platform/mac/css1/cascade/cascade_order-expected.checksum: Replaced.
  • platform/mac/css1/cascade/cascade_order-expected.png: Replaced.
  • platform/mac/css1/cascade/important-expected.checksum: Replaced.
  • platform/mac/css1/cascade/important-expected.png: Replaced.
  • platform/mac/css1/classification/display-expected.checksum: Replaced.
  • platform/mac/css1/classification/display-expected.png: Replaced.
  • platform/mac/css1/classification/list_style-expected.checksum: Replaced.
  • platform/mac/css1/classification/list_style-expected.png: Replaced.
  • platform/mac/css1/classification/list_style_image-expected.checksum: Replaced.
  • platform/mac/css1/classification/list_style_image-expected.png: Replaced.
  • platform/mac/css1/classification/list_style_position-expected.checksum: Replaced.
  • platform/mac/css1/classification/list_style_position-expected.png: Replaced.
  • platform/mac/css1/classification/list_style_type-expected.checksum: Replaced.
  • platform/mac/css1/classification/list_style_type-expected.png: Replaced.
  • platform/mac/css1/classification/white_space-expected.checksum: Replaced.
  • platform/mac/css1/classification/white_space-expected.png: Replaced.
  • platform/mac/css1/color_and_background/background-expected.checksum: Replaced.
  • platform/mac/css1/color_and_background/background-expected.png: Replaced.
  • platform/mac/css1/color_and_background/background_attachment-expected.checksum: Replaced.
  • platform/mac/css1/color_and_background/background_attachment-expected.png: Replaced.
  • platform/mac/css1/color_and_background/background_color-expected.checksum: Replaced.
  • platform/mac/css1/color_and_background/background_color-expected.png: Replaced.
  • platform/mac/css1/color_and_background/background_image-expected.checksum: Replaced.
  • platform/mac/css1/color_and_background/background_image-expected.png: Replaced.
  • platform/mac/css1/color_and_background/background_position-expected.checksum: Replaced.
  • platform/mac/css1/color_and_background/background_position-expected.png: Replaced.
  • platform/mac/css1/color_and_background/background_repeat-expected.checksum: Replaced.
  • platform/mac/css1/color_and_background/background_repeat-expected.png: Replaced.
  • platform/mac/css1/color_and_background/color-expected.checksum: Replaced.
  • platform/mac/css1/color_and_background/color-expected.png: Replaced.
  • platform/mac/css1/font_properties/font-expected.checksum: Replaced.
  • platform/mac/css1/font_properties/font-expected.png: Replaced.
  • platform/mac/css1/font_properties/font_size-expected.checksum: Replaced.
  • platform/mac/css1/font_properties/font_size-expected.png: Replaced.
  • platform/mac/css1/font_properties/font_style-expected.checksum: Replaced.
  • platform/mac/css1/font_properties/font_style-expected.png: Replaced.
  • platform/mac/css1/font_properties/font_weight-expected.checksum: Replaced.
  • platform/mac/css1/font_properties/font_weight-expected.png: Replaced.
  • platform/mac/css1/formatting_model/canvas-expected.checksum: Replaced.
  • platform/mac/css1/formatting_model/canvas-expected.png: Replaced.
  • platform/mac/css1/formatting_model/floating_elements-expected.checksum: Replaced.
  • platform/mac/css1/formatting_model/floating_elements-expected.png: Replaced.
  • platform/mac/css1/formatting_model/height_of_lines-expected.checksum: Replaced.
  • platform/mac/css1/formatting_model/height_of_lines-expected.png: Replaced.
  • platform/mac/css1/formatting_model/horizontal_formatting-expected.checksum: Replaced.
  • platform/mac/css1/formatting_model/horizontal_formatting-expected.png: Replaced.
  • platform/mac/css1/formatting_model/inline_elements-expected.checksum: Replaced.
  • platform/mac/css1/formatting_model/inline_elements-expected.png: Replaced.
  • platform/mac/css1/formatting_model/replaced_elements-expected.checksum: Replaced.
  • platform/mac/css1/formatting_model/replaced_elements-expected.png: Replaced.
  • platform/mac/css1/formatting_model/vertical_formatting-expected.checksum: Replaced.
  • platform/mac/css1/formatting_model/vertical_formatting-expected.png: Replaced.
  • platform/mac/css1/pseudo/anchor-expected.checksum: Replaced.
  • platform/mac/css1/pseudo/anchor-expected.png: Replaced.
  • platform/mac/css1/pseudo/firstletter-expected.checksum: Replaced.
  • platform/mac/css1/pseudo/firstletter-expected.png: Replaced.
  • platform/mac/css1/pseudo/firstline-expected.checksum: Replaced.
  • platform/mac/css1/pseudo/firstline-expected.png: Replaced.
  • platform/mac/css1/pseudo/multiple_pseudo_elements-expected.checksum: Replaced.
  • platform/mac/css1/pseudo/multiple_pseudo_elements-expected.png: Replaced.
  • platform/mac/css1/pseudo/pseudo_elements_in_selectors-expected.checksum: Replaced.
  • platform/mac/css1/pseudo/pseudo_elements_in_selectors-expected.png: Replaced.
  • platform/mac/css1/text_properties/letter_spacing-expected.checksum: Replaced.
  • platform/mac/css1/text_properties/letter_spacing-expected.png: Replaced.
  • platform/mac/css1/text_properties/line_height-expected.checksum: Replaced.
  • platform/mac/css1/text_properties/line_height-expected.png: Replaced.
  • platform/mac/css1/text_properties/text_align-expected.checksum: Replaced.
  • platform/mac/css1/text_properties/text_align-expected.png: Replaced.
  • platform/mac/css1/text_properties/text_decoration-expected.checksum: Replaced.
  • platform/mac/css1/text_properties/text_decoration-expected.png: Replaced.
  • platform/mac/css1/text_properties/text_indent-expected.checksum: Replaced.
  • platform/mac/css1/text_properties/text_indent-expected.png: Replaced.
  • platform/mac/css1/text_properties/vertical_align-expected.checksum: Replaced.
  • platform/mac/css1/text_properties/vertical_align-expected.png: Replaced.
  • platform/mac/css1/text_properties/word_spacing-expected.checksum: Replaced.
  • platform/mac/css1/text_properties/word_spacing-expected.png: Replaced.
  • platform/mac/css1/units/color_units-expected.checksum: Replaced.
  • platform/mac/css1/units/color_units-expected.png: Replaced.
  • platform/mac/css1/units/length_units-expected.checksum: Replaced.
  • platform/mac/css1/units/length_units-expected.png: Replaced.
  • platform/mac/css1/units/percentage_units-expected.checksum: Replaced.
  • platform/mac/css1/units/percentage_units-expected.png: Replaced.
  • platform/mac/css1/units/urls-expected.checksum: Replaced.
  • platform/mac/css1/units/urls-expected.png: Replaced.
  • platform/mac/css2.1/t0402-c71-fwd-parsing-00-f-expected.checksum: Replaced.
  • platform/mac/css2.1/t0402-c71-fwd-parsing-00-f-expected.png: Replaced.
  • platform/mac/css2.1/t0402-c71-fwd-parsing-01-f-expected.checksum: Replaced.
  • platform/mac/css2.1/t0402-c71-fwd-parsing-01-f-expected.png: Replaced.
  • platform/mac/css2.1/t0402-c71-fwd-parsing-02-f-expected.checksum: Replaced.
  • platform/mac/css2.1/t0402-c71-fwd-parsing-02-f-expected.png: Replaced.
  • platform/mac/css2.1/t0402-c71-fwd-parsing-03-f-expected.checksum: Replaced.
  • platform/mac/css2.1/t0402-c71-fwd-parsing-03-f-expected.png: Replaced.
  • platform/mac/css2.1/t0402-c71-fwd-parsing-04-f-expected.checksum: Replaced.
  • platform/mac/css2.1/t0402-c71-fwd-parsing-04-f-expected.png: Replaced.
  • platform/mac/css2.1/t0402-syntax-01-f-expected.checksum: Replaced.
  • platform/mac/css2.1/t0402-syntax-01-f-expected.png: Replaced.
  • platform/mac/css2.1/t0402-syntax-02-f-expected.checksum: Replaced.
  • platform/mac/css2.1/t0402-syntax-02-f-expected.png: Replaced.
  • platform/mac/css2.1/t0402-syntax-03-f-expected.checksum: Replaced.
  • platform/mac/css2.1/t0402-syntax-03-f-expected.png: Replaced.
  • platform/mac/css2.1/t0402-syntax-04-f-expected.checksum: Replaced.
  • platform/mac/css2.1/t0402-syntax-04-f-expected.png: Replaced.
  • platform/mac/css2.1/t0402-syntax-05-f-expected.checksum: Replaced.
  • platform/mac/css2.1/t0402-syntax-05-f-expected.png: Replaced.
  • platform/mac/css2.1/t0402-syntax-06-f-expected.checksum: Replaced.
  • platform/mac/css2.1/t0402-syntax-06-f-expected.png: Replaced.
  • platform/mac/css2.1/t0505-c16-descendant-00-e-expected.checksum: Replaced.
  • platform/mac/css2.1/t0505-c16-descendant-00-e-expected.png: Replaced.
  • platform/mac/css2.1/t0505-c16-descendant-01-e-expected.checksum: Replaced.
  • platform/mac/css2.1/t0505-c16-descendant-01-e-expected.png: Replaced.
  • platform/mac/css2.1/t0505-c16-descendant-02-e-expected.checksum: Replaced.
  • platform/mac/css2.1/t0505-c16-descendant-02-e-expected.png: Replaced.
  • platform/mac/css2.1/t0509-c15-ids-00-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0509-c15-ids-00-a-expected.png: Replaced.
  • platform/mac/css2.1/t0509-c15-ids-01-e-expected.checksum: Replaced.
  • platform/mac/css2.1/t0509-c15-ids-01-e-expected.png: Replaced.
  • platform/mac/css2.1/t0509-id-sel-syntax-01-f-expected.checksum: Replaced.
  • platform/mac/css2.1/t0509-id-sel-syntax-01-f-expected.png: Replaced.
  • platform/mac/css2.1/t0509-id-sel-syntax-02-b-expected.checksum: Replaced.
  • platform/mac/css2.1/t0509-id-sel-syntax-02-b-expected.png: Replaced.
  • platform/mac/css2.1/t0510-c25-pseudo-elmnt-00-c-expected.checksum: Replaced.
  • platform/mac/css2.1/t0510-c25-pseudo-elmnt-00-c-expected.png: Replaced.
  • platform/mac/css2.1/t0511-c21-pseud-anch-00-e-i-expected.checksum: Replaced.
  • platform/mac/css2.1/t0511-c21-pseud-anch-00-e-i-expected.png: Replaced.
  • platform/mac/css2.1/t0511-c21-pseud-link-00-e-expected.checksum: Replaced.
  • platform/mac/css2.1/t0511-c21-pseud-link-00-e-expected.png: Replaced.
  • platform/mac/css2.1/t0511-c21-pseud-link-01-e-expected.checksum: Replaced.
  • platform/mac/css2.1/t0511-c21-pseud-link-01-e-expected.png: Replaced.
  • platform/mac/css2.1/t0511-c21-pseud-link-02-e-expected.checksum: Replaced.
  • platform/mac/css2.1/t0511-c21-pseud-link-02-e-expected.png: Replaced.
  • platform/mac/css2.1/t0511-c21-pseud-link-03-e-expected.checksum: Replaced.
  • platform/mac/css2.1/t0511-c21-pseud-link-03-e-expected.png: Replaced.
  • platform/mac/css2.1/t0602-c13-inh-underlin-00-e-expected.checksum: Replaced.
  • platform/mac/css2.1/t0602-c13-inh-underlin-00-e-expected.png: Replaced.
  • platform/mac/css2.1/t0602-c13-inheritance-00-e-expected.checksum: Replaced.
  • platform/mac/css2.1/t0602-c13-inheritance-00-e-expected.png: Replaced.
  • platform/mac/css2.1/t0602-inherit-bdr-pad-b-00-expected.checksum: Replaced.
  • platform/mac/css2.1/t0602-inherit-bdr-pad-b-00-expected.png: Replaced.
  • platform/mac/css2.1/t0603-c11-import-00-b-expected.checksum: Replaced.
  • platform/mac/css2.1/t0603-c11-import-00-b-expected.png: Replaced.
  • platform/mac/css2.1/t0801-c412-hz-box-00-b-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0801-c412-hz-box-00-b-a-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5502-imrgn-r-03-b-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5502-imrgn-r-03-b-a-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5502-mrgn-r-01-c-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5502-mrgn-r-01-c-a-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5502-mrgn-r-02-c-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5502-mrgn-r-02-c-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5502-mrgn-r-03-c-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5502-mrgn-r-03-c-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5504-imrgn-l-03-b-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5504-imrgn-l-03-b-a-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5504-mrgn-l-01-c-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5504-mrgn-l-01-c-a-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5504-mrgn-l-02-c-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5504-mrgn-l-02-c-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5504-mrgn-l-03-c-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5504-mrgn-l-03-c-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5505-imrgn-00-a-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5505-imrgn-00-a-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5505-mrgn-00-b-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5505-mrgn-00-b-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5505-mrgn-01-e-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5505-mrgn-01-e-a-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5505-mrgn-02-c-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5505-mrgn-02-c-expected.png: Replaced.
  • platform/mac/css2.1/t0803-c5505-mrgn-03-c-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0803-c5505-mrgn-03-c-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5506-padn-t-00-b-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5506-padn-t-00-b-a-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5507-ipadn-r-03-b-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5507-ipadn-r-03-b-a-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5507-padn-r-00-c-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5507-padn-r-00-c-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5507-padn-r-01-c-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5507-padn-r-01-c-a-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5507-padn-r-02-f-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5507-padn-r-02-f-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5507-padn-r-03-f-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5507-padn-r-03-f-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5509-ipadn-l-03-b-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5509-ipadn-l-03-b-a-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5509-padn-l-00-b-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5509-padn-l-00-b-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5509-padn-l-01-b-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5509-padn-l-01-b-a-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5509-padn-l-02-f-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5509-padn-l-02-f-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5509-padn-l-03-f-g-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5509-padn-l-03-f-g-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5510-ipadn-00-b-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5510-ipadn-00-b-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5510-padn-00-b-ag-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5510-padn-00-b-ag-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5510-padn-01-e-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5510-padn-01-e-a-expected.png: Replaced.
  • platform/mac/css2.1/t0804-c5510-padn-02-f-expected.checksum: Replaced.
  • platform/mac/css2.1/t0804-c5510-padn-02-f-expected.png: Replaced.
  • platform/mac/css2.1/t0805-c5511-brdr-tw-00-b-expected.checksum: Replaced.
  • platform/mac/css2.1/t0805-c5511-brdr-tw-00-b-expected.png: Replaced.
  • platform/mac/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.checksum: Replaced.
  • platform/mac/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.png: Replaced.
  • platform/mac/css2.1/t0805-c5511-brdr-tw-02-b-expected.checksum: Replaced.
  • platform/mac/css2.1/t0805-c5511-brdr-tw-02-b-expected.png: Replaced.
  • platform/mac/css2.1/t0805-c5511-brdr-tw-03-b-expected.checksum: Replaced.
  • platform/mac/css2.1/t0805-c5511-brdr-tw-03-b-expected.png: Replaced.
  • platform/mac/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.png: Replaced.
  • platform/mac/css2.1/t0805-c5512-brdr-rw-00-b-expected.checksum: Replaced.
  • platform/mac/css2.1/t0805-c5512-brdr-rw-00-b-expected.png: Replaced.
  • platform/mac/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.checksum: Replaced.
  • platform/mac/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.png: Replaced.
  • platform/mac/css2.1/t0805-c5512-brdr-rw-02-b-expected.checksum: Replaced.
  • platform/mac/css2.1/t0805-c5512-brdr-rw-02-b-expected.png: Replaced.
  • platform/mac/css2.1/t0805-c5512-brdr-rw-03-b-expected.checksum: Replaced.
  • platform/mac/css2.1/t0805-c5512-brdr-rw-03-b-expected.png: Replaced.
  • platform/mac/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.checksum: Replaced.
  • platform/mac/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.png: Replaced.
  • platform/mac/css2.1/t09-c5526c-display-00-e-expected.checksum: Replaced.
  • platform/mac/css2.1/t09-c5526c-display-00-e-expected.png: Replaced.
5:31 PM Changeset in webkit [60204] by mrowe@apple.com
  • 5 edits in branches/safari-533-branch

Versioning.

5:30 PM Changeset in webkit [60203] by mrowe@apple.com
  • 1 copy in tags/Safari-533.12

New tag.

5:20 PM Changeset in webkit [60202] by mrowe@apple.com
  • 21 edits
    2 adds in branches/safari-533-branch

Merge r60190.

5:18 PM Changeset in webkit [60201] by hyatt@apple.com
  • 6 edits
    34 adds in trunk

https://bugs.webkit.org/show_bug.cgi?id=39615, implement basic support for -webkit-column-span.

Reviewed by Dan Bernstein.

This patch adds support for -webkit-column-span elements that can span across all of the columns
in a multi-column block. In this first stage, column span support is limited to only immediate
children of the multi-column block, so no elements actually have to split across a span yet.

Two new kinds of anonymous blocks have been added: anonymous columns blocks and anonymous column
span blocks. When a span gets inserted into a multicol block, the block is split, with the
column portions of the multicol getting wrapped in anonymous columns blocks and the spans getting
wrapped in anonymous column span blocks. The multicol block then stops being multicol and lets
the anonymous multicol blocks take over column layout.

Many new tests added in fast/multicol/span.

  • dom/Node.cpp:

(WebCore::Node::diff):
Changes to column span result in a detach/attach, since spanning elements don't typically have
much content.

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::styleDidChange):
Make sure to inherit the appropriate new styles into the anonymous column and column span blocks.

(WebCore::RenderBlock::addChildToAnonymousColumnBlocks):
This method handles the insertion of new children into the block after it has had to wrap its
children in anonymous column/column-span blocks.

(WebCore::RenderBlock::splitAnonymousBlocksAroundChild):
A helper method for splitting all anonymous blocks between beforeChild and this block so that
a new element with an incompatible type can be inserted between them.

(WebCore::RenderBlock::makeChildrenAnonymousColumnBlocks):
This method does the initial split of a block into anonymous components. This happens the first
time a column-span element gets inserted into the block.

(WebCore::columnsBlockForSpanningElement):
This function checks whether or not the column-span element is actually being inserted into a viable
columns block.

(WebCore::RenderBlock::addChildIgnoringAnonymousColumnBlocks):
This is the original RenderBlock::addChild. It handles everything else just like it used to.

(WebCore::RenderBlock::addChild):
Patched to now call addChildToAnonymousColumnBlocks if the block has wrapped its current children
in anonymous column/column-span blocks already.

(WebCore::RenderBlock::moveAllChildrenTo):
moveAllChildrenTo has been enhanced to support doing a full remove/append in the case where elements
are shifting across layers. (This should arguably be the default behavior, but that can happen in
a future patch.)

(WebCore::RenderBlock::removeLeftoverAnonymousBlock):
Patched to fix a bug when the leftover block is empty and to prevent anonymous column/column-span
block from being coalesced with a parent if they are non-empty.

(WebCore::canMergeContiguousAnonymousBlocks):
Whether or not two contiguous anonymous blocks can merge after the removal of a child.

(WebCore::RenderBlock::removeChild):
removeChild has been patched to handle more cases of merging/deletion than it did before. It
can now destroy empty anonymous block chains and can now merge two contiguous anonymous blocks
that don't share the same childrenInline() setting (by putting one inside the other). It also
makes sure to do full appends/moves/inserts in the cases where the affected blocks have layers.

(WebCore::RenderBlock::fillSelectionGaps):
Don't let the selection extend outside of a column-span.

(WebCore::RenderBlock::setDesiredColumnCountAndWidth):
Turn off multi-column layout on the outermost block if it has wrapped its children in anonymous
column/column-span blocks.

(WebCore::RenderBlock::createAnonymousBlockWithSameTypeAs):
(WebCore::RenderBlock::createAnonymousColumnsBlock):
(WebCore::RenderBlock::createAnonymousColumnSpanBlock):
New helper functions for anonymous block creation.

(WebCore::RenderBlock::renderName):
Patched to dump anonymous column and column-span blocks so that they can be distinguished from
regular anonymous blocks.

  • rendering/RenderBlock.h:
  • rendering/RenderObject.h:

(WebCore::RenderObject::isAnonymousColumnsBlock):
(WebCore::RenderObject::isAnonymousColumnSpanBlock):
New helper functions for asking the type of an anonymous block.

  • rendering/style/RenderStyle.h:

(WebCore::InheritedFlags::inheritColumnPropertiesFrom):
A helper function to allow anonymous column blocks to easily inherit all column properties for
rendering.

5:18 PM Changeset in webkit [60200] by mrowe@apple.com
  • 12 edits
    2 adds in branches/safari-533-branch

Merge r60150.

5:14 PM Changeset in webkit [60199] by mrowe@apple.com
  • 2 edits in branches/safari-533-branch/JavaScriptCore

Merge r60194.

5:06 PM Changeset in webkit [60198] by mrowe@apple.com
  • 6 edits in branches/safari-533-branch/WebKit

Merge r60168.

5:06 PM Changeset in webkit [60197] by mrowe@apple.com
  • 5 edits in branches/safari-533-branch/WebCore

Merge r60092.

5:05 PM Changeset in webkit [60196] by jamesr@google.com
  • 1 edit
    350 copies
    357 adds in trunk/LayoutTests

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

Unreviewed pixel expectations change

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

Moves leopard-specific pixel test expectations for tests in tables/mozilla to
platform/mac-leopard and adds new snow leopard expectations to platform/mac.
This is the second batch (after 60185) of of updates for pixel diffs <0.1%
in the LayoutTests/tables/ directory.

  • platform/mac-leopard/tables/mozilla/marvin/tbody_align_center-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_align_center-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tbody_align_center-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_align_center-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tbody_align_char-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_align_char-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tbody_align_char-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_align_char-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tbody_align_justify-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_align_justify-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tbody_align_justify-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_align_justify-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tbody_align_left-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_align_left-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tbody_align_left-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_align_left-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tbody_align_right-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_align_right-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tbody_align_right-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_align_right-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tbody_char-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_char-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tbody_char-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_char-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tbody_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_valign_baseline-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tbody_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_valign_baseline-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tbody_valign_bottom-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_valign_bottom-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tbody_valign_bottom-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_valign_bottom-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tbody_valign_middle-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_valign_middle-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tbody_valign_middle-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_valign_middle-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tbody_valign_top-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_valign_top-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tbody_valign_top-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_valign_top-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/td_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/td_valign_baseline-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/td_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/td_valign_baseline-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tfoot_align_center-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_align_center-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tfoot_align_center-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_align_center-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tfoot_align_char-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_align_char-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tfoot_align_char-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_align_char-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tfoot_align_justify-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_align_justify-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tfoot_align_justify-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_align_justify-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tfoot_align_left-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_align_left-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tfoot_align_left-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_align_left-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tfoot_align_right-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_align_right-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tfoot_align_right-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_align_right-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tfoot_char-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_char-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tfoot_char-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_char-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tfoot_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_valign_baseline-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tfoot_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_valign_baseline-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tfoot_valign_bottom-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_valign_bottom-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tfoot_valign_bottom-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_valign_bottom-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tfoot_valign_middle-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_valign_middle-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tfoot_valign_middle-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_valign_middle-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tfoot_valign_top-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_valign_top-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tfoot_valign_top-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_valign_top-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/thead_align_center-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_align_center-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/thead_align_center-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_align_center-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/thead_align_char-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_align_char-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/thead_align_char-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_align_char-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/thead_align_justify-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_align_justify-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/thead_align_justify-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_align_justify-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/thead_align_left-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_align_left-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/thead_align_left-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_align_left-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/thead_align_right-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_align_right-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/thead_align_right-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_align_right-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/thead_char-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_char-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/thead_char-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_char-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/thead_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_valign_baseline-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/thead_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_valign_baseline-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/thead_valign_bottom-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_valign_bottom-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/thead_valign_bottom-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_valign_bottom-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/thead_valign_middle-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_valign_middle-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/thead_valign_middle-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_valign_middle-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/thead_valign_top-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_valign_top-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/thead_valign_top-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_valign_top-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tr_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tr_valign_baseline-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tr_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tr_valign_baseline-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_col_align_justify-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_col_align_justify-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_col_align_justify-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_col_align_justify-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_col_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_col_valign_baseline-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_col_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_col_valign_baseline-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_col_valign_bottom-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_col_valign_bottom-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_col_valign_bottom-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_col_valign_bottom-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_col_width_pct-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_col_width_pct-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_col_width_pct-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_col_width_pct-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_col_width_rel-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_col_width_rel-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_col_width_rel-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_col_width_rel-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_colgroup_align_justify-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_colgroup_align_justify-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_colgroup_align_justify-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_colgroup_align_justify-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_colgroup_width_pct-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_colgroup_width_pct-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_colgroup_width_pct-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_colgroup_width_pct-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_colgroup_width_rel-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_colgroup_width_rel-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_colgroup_width_rel-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_colgroup_width_rel-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_table-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_table-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_table_bgcolor_name-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_bgcolor_name-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_table_bgcolor_name-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_bgcolor_name-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_table_border-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_border-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_table_border-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_border-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_table_border_none-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_border_none-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_table_border_none-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_border_none-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_table_border_px-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_border_px-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_table_border_px-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_border_px-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_table_frame_void-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_frame_void-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_table_frame_void-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_frame_void-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_table_rules_groups-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_rules_groups-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_table_rules_groups-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_rules_groups-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_table_rules_none-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_rules_none-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_table_rules_none-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_rules_none-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_table_width_pct-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_width_pct-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_table_width_pct-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_width_pct-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_table_width_px-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_width_px-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_table_width_px-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_width_px-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_tbody_align_char-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tbody_align_char-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_tbody_align_char-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tbody_align_char-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_tbody_align_justify-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tbody_align_justify-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_tbody_align_justify-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tbody_align_justify-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_tbody_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tbody_valign_baseline-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_tbody_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tbody_valign_baseline-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_tbody_valign_bottom-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tbody_valign_bottom-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_tbody_valign_bottom-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tbody_valign_bottom-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_tbody_valign_middle-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tbody_valign_middle-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_tbody_valign_middle-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tbody_valign_middle-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_tbody_valign_top-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tbody_valign_top-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_tbody_valign_top-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tbody_valign_top-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_td_align_center-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_align_center-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_td_align_center-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_align_center-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_td_align_justify-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_align_justify-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_td_align_justify-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_align_justify-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_td_align_left-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_align_left-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_td_align_left-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_align_left-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_td_align_right-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_align_right-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_td_align_right-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_align_right-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_td_bgcolor_name-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_bgcolor_name-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_td_bgcolor_name-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_bgcolor_name-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_td_height-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_height-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_td_height-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_height-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_td_nowrap-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_nowrap-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_td_nowrap-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_nowrap-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_td_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_valign_baseline-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_td_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_valign_baseline-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_td_valign_bottom-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_valign_bottom-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_td_valign_bottom-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_valign_bottom-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_td_width-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_width-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_td_width-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_width-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_tfoot_align_char-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tfoot_align_char-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_tfoot_align_char-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tfoot_align_char-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_tfoot_align_justify-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tfoot_align_justify-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_tfoot_align_justify-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tfoot_align_justify-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_tfoot_valign_middle-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tfoot_valign_middle-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_tfoot_valign_middle-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tfoot_valign_middle-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_tfoot_valign_top-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tfoot_valign_top-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_tfoot_valign_top-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tfoot_valign_top-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_th_align_center-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_align_center-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_th_align_center-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_align_center-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_th_align_justify-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_align_justify-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_th_align_justify-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_align_justify-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_th_align_left-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_align_left-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_th_align_left-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_align_left-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_th_align_right-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_align_right-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_th_align_right-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_align_right-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_th_bgcolor_name-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_bgcolor_name-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_th_bgcolor_name-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_bgcolor_name-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_th_nowrap-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_nowrap-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_th_nowrap-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_nowrap-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_th_valign_bottom-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_valign_bottom-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_th_valign_bottom-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_valign_bottom-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_th_width-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_width-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_th_width-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_width-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_thead_align_char-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_align_char-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_thead_align_char-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_align_char-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_thead_align_justify-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_align_justify-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_thead_align_justify-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_align_justify-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_thead_class-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_class-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_thead_class-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_class-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_thead_id-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_id-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_thead_id-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_id-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_thead_style-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_style-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_thead_style-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_style-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_thead_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_valign_baseline-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_thead_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_valign_baseline-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_thead_valign_bottom-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_valign_bottom-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_thead_valign_bottom-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_valign_bottom-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_thead_valign_middle-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_valign_middle-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_thead_valign_middle-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_valign_middle-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_thead_valign_top-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_valign_top-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_thead_valign_top-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_valign_top-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_tr_align_justify-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tr_align_justify-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_tr_align_justify-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tr_align_justify-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_tr_bgcolor_name-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tr_bgcolor_name-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_tr_bgcolor_name-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tr_bgcolor_name-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_tr_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tr_valign_baseline-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_tr_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tr_valign_baseline-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/x_tr_valign_bottom-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tr_valign_bottom-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/x_tr_valign_bottom-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tr_valign_bottom-expected.png.
  • platform/mac-leopard/tables/mozilla/other: Added.
  • platform/mac-leopard/tables/mozilla/other/cell_widths-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/other/cell_widths-expected.checksum.
  • platform/mac-leopard/tables/mozilla/other/cell_widths-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/other/cell_widths-expected.png.
  • platform/mac-leopard/tables/mozilla/other/cellspacing-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/other/cellspacing-expected.checksum.
  • platform/mac-leopard/tables/mozilla/other/cellspacing-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/other/cellspacing-expected.png.
  • platform/mac-leopard/tables/mozilla/other/nested2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/other/nested2-expected.checksum.
  • platform/mac-leopard/tables/mozilla/other/nested2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/other/nested2-expected.png.
  • platform/mac-leopard/tables/mozilla/other/nestedTables-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/other/nestedTables-expected.checksum.
  • platform/mac-leopard/tables/mozilla/other/nestedTables-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/other/nestedTables-expected.png.
  • platform/mac-leopard/tables/mozilla/other/padding-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/other/padding-expected.checksum.
  • platform/mac-leopard/tables/mozilla/other/padding-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/other/padding-expected.png.
  • platform/mac-leopard/tables/mozilla/other/test3-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/other/test3-expected.checksum.
  • platform/mac-leopard/tables/mozilla/other/test3-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/other/test3-expected.png.
  • platform/mac-leopard/tables/mozilla/other/test6-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/other/test6-expected.checksum.
  • platform/mac-leopard/tables/mozilla/other/test6-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/other/test6-expected.png.
  • platform/mac-leopard/tables/mozilla/other/wa_table_thtd_rowspan-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/other/wa_table_thtd_rowspan-expected.checksum.
  • platform/mac-leopard/tables/mozilla/other/wa_table_thtd_rowspan-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/other/wa_table_thtd_rowspan-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures: Added.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs: Added.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/97619-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/97619-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/97619-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/97619-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug1010-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug1010-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug1010-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug1010-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug10140-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug10140-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug10140-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug10140-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug101759-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug101759-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug101759-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug101759-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug10216-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug10216-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug10216-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug10216-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug1055-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug1055-2-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug1055-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug1055-2-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug106966-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug106966-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug106966-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug106966-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug1128-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug1128-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug1128-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug1128-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug11331-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug11331-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug11331-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug11331-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug11945-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug11945-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug11945-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug11945-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug131020-3-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug131020-3-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug131020-3-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug131020-3-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug14007-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug14007-2-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug14489-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug14489-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug14489-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug14489-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug1725-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug1725-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug1725-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug1725-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug17826-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug17826-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug17826-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug17826-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug18770-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug18770-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug18770-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug18770-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug21518-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug21518-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug21518-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug21518-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug22122-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug22122-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug22122-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug22122-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug2479-5-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug25707-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug25707-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug25707-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug25707-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug29058-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug29058-2-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-18-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug3166-18-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-18-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug3166-18-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-5-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug3166-5-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-5-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug3166-5-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug32205-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug32205-1-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug32205-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug32205-1-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug32205-4-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug32205-4-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug32205-4-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug32205-4-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug42043-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug42043-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug42043-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug42043-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug4294-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug4294-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug4294-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug4294-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug47163-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug47163-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug47163-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug47163-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug51000-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug51000-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug51000-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug51000-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug56024-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug56024-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug56024-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug56024-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug59252-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug59252-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug59252-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug59252-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug61042-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug61042-1-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug61042-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug61042-1-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug61042-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug61042-2-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug61042-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug61042-2-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug73629-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug73629-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug73629-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug73629-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug91057-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug91057-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug91057-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug91057-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/collapsing_borders: Added.
  • platform/mac-leopard/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/core: Added.
  • platform/mac-leopard/tables/mozilla_expected_failures/core/backgrounds-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/backgrounds-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/core/backgrounds-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/backgrounds-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/core/captions1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/captions1-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/core/captions1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/captions1-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/core/captions2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/captions2-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/core/captions2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/captions2-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/core/captions3-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/captions3-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/core/captions3-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/captions3-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/core/col_span2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/col_span2-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/core/col_span2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/col_span2-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/core/columns-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/columns-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/core/columns-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/columns-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/core/conflicts-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/conflicts-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/core/conflicts-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/conflicts-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/core/standards1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/standards1-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/core/standards1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/standards1-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin: Added.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_above-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_above-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_above-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_above-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_below-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_below-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_below-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_below-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_void-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_void-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_void-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_void-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/other: Added.
  • platform/mac-leopard/tables/mozilla_expected_failures/other/empty_cells-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/other/empty_cells-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/other/empty_cells-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/other/empty_cells-expected.png.
  • platform/mac-leopard/tables/mozilla_expected_failures/other/test4-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/other/test4-expected.checksum.
  • platform/mac-leopard/tables/mozilla_expected_failures/other/test4-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/other/test4-expected.png.
  • platform/mac/tables/mozilla/marvin/tbody_align_center-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tbody_align_center-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tbody_align_char-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tbody_align_char-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tbody_align_justify-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tbody_align_justify-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tbody_align_left-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tbody_align_left-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tbody_align_right-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tbody_align_right-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tbody_char-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tbody_char-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tbody_valign_baseline-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tbody_valign_baseline-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tbody_valign_bottom-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tbody_valign_bottom-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tbody_valign_middle-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tbody_valign_middle-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tbody_valign_top-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tbody_valign_top-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/td_valign_baseline-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/td_valign_baseline-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tfoot_align_center-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tfoot_align_center-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tfoot_align_char-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tfoot_align_char-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tfoot_align_justify-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tfoot_align_justify-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tfoot_align_left-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tfoot_align_left-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tfoot_align_right-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tfoot_align_right-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tfoot_char-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tfoot_char-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tfoot_valign_baseline-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tfoot_valign_baseline-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tfoot_valign_bottom-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tfoot_valign_bottom-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tfoot_valign_middle-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tfoot_valign_middle-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tfoot_valign_top-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tfoot_valign_top-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/thead_align_center-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/thead_align_center-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/thead_align_char-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/thead_align_char-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/thead_align_justify-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/thead_align_justify-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/thead_align_left-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/thead_align_left-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/thead_align_right-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/thead_align_right-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/thead_char-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/thead_char-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/thead_valign_baseline-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/thead_valign_baseline-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/thead_valign_bottom-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/thead_valign_bottom-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/thead_valign_middle-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/thead_valign_middle-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/thead_valign_top-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/thead_valign_top-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tr_valign_baseline-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tr_valign_baseline-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_col_align_justify-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_col_align_justify-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_col_valign_baseline-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_col_valign_baseline-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_col_valign_bottom-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_col_valign_bottom-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_col_width_pct-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_col_width_pct-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_col_width_rel-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_col_width_rel-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_colgroup_align_justify-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_colgroup_align_justify-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_colgroup_width_pct-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_colgroup_width_pct-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_colgroup_width_rel-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_colgroup_width_rel-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_table-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_table-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_table_bgcolor_name-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_table_bgcolor_name-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_table_border-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_table_border-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_table_border_none-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_table_border_none-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_table_border_px-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_table_border_px-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_table_frame_void-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_table_frame_void-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_table_rules_groups-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_table_rules_groups-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_table_rules_none-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_table_rules_none-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_table_width_pct-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_table_width_pct-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_table_width_px-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_table_width_px-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tbody_align_char-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tbody_align_char-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tbody_align_justify-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tbody_align_justify-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tbody_valign_baseline-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tbody_valign_baseline-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tbody_valign_bottom-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tbody_valign_bottom-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tbody_valign_middle-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tbody_valign_middle-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tbody_valign_top-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tbody_valign_top-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_td_align_center-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_td_align_center-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_td_align_justify-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_td_align_justify-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_td_align_left-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_td_align_left-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_td_align_right-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_td_align_right-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_td_bgcolor_name-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_td_bgcolor_name-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_td_height-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_td_height-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_td_nowrap-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_td_nowrap-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_td_valign_baseline-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_td_valign_baseline-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_td_valign_bottom-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_td_valign_bottom-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_td_width-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_td_width-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tfoot_align_char-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tfoot_align_char-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tfoot_align_justify-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tfoot_align_justify-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tfoot_valign_middle-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tfoot_valign_middle-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tfoot_valign_top-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tfoot_valign_top-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_th_align_center-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_th_align_center-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_th_align_justify-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_th_align_justify-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_th_align_left-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_th_align_left-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_th_align_right-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_th_align_right-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_th_bgcolor_name-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_th_bgcolor_name-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_th_nowrap-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_th_nowrap-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_th_valign_bottom-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_th_valign_bottom-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_th_width-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_th_width-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_thead_align_char-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_thead_align_char-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_thead_align_justify-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_thead_align_justify-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_thead_class-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_thead_class-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_thead_id-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_thead_id-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_thead_style-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_thead_style-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_thead_valign_baseline-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_thead_valign_baseline-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_thead_valign_bottom-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_thead_valign_bottom-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_thead_valign_middle-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_thead_valign_middle-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_thead_valign_top-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_thead_valign_top-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tr_align_justify-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tr_align_justify-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tr_bgcolor_name-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tr_bgcolor_name-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tr_valign_baseline-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tr_valign_baseline-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tr_valign_bottom-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/x_tr_valign_bottom-expected.png: Replaced.
  • platform/mac/tables/mozilla/other/cell_widths-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/other/cell_widths-expected.png: Replaced.
  • platform/mac/tables/mozilla/other/cellspacing-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/other/cellspacing-expected.png: Replaced.
  • platform/mac/tables/mozilla/other/nested2-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/other/nested2-expected.png: Replaced.
  • platform/mac/tables/mozilla/other/nestedTables-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/other/nestedTables-expected.png: Replaced.
  • platform/mac/tables/mozilla/other/padding-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/other/padding-expected.png: Replaced.
  • platform/mac/tables/mozilla/other/test3-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/other/test3-expected.png: Replaced.
  • platform/mac/tables/mozilla/other/test6-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/other/test6-expected.png: Replaced.
  • platform/mac/tables/mozilla/other/wa_table_thtd_rowspan-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/other/wa_table_thtd_rowspan-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/97619-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/97619-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug1010-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug1010-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug10140-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug10140-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug101759-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug101759-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug10216-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug10216-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug1055-2-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug1055-2-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug106966-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug106966-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug1128-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug1128-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug11331-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug11331-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug11945-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug11945-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug131020-3-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug131020-3-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug14007-2-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug14489-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug14489-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug1725-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug1725-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug17826-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug17826-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug18770-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug18770-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug21518-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug21518-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug22122-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug22122-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug25707-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug25707-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug29058-2-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug3166-18-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug3166-18-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug3166-5-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug3166-5-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug32205-1-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug32205-1-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug32205-4-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug32205-4-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug42043-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug42043-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug4294-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug4294-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug47163-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug47163-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug51000-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug51000-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug56024-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug56024-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug59252-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug59252-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug61042-1-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug61042-1-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug61042-2-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug61042-2-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug73629-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug73629-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug91057-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/bugs/bug91057-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/core/backgrounds-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/core/backgrounds-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/core/captions1-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/core/captions1-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/core/captions2-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/core/captions2-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/core/captions3-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/core/captions3-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/core/col_span2-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/core/col_span2-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/core/columns-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/core/columns-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/core/conflicts-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/core/conflicts-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/core/standards1-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/core/standards1-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/table_frame_above-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/table_frame_above-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/table_frame_below-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/table_frame_below-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/table_frame_void-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/table_frame_void-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/other/empty_cells-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/other/empty_cells-expected.png: Replaced.
  • platform/mac/tables/mozilla_expected_failures/other/test4-expected.checksum: Replaced.
  • platform/mac/tables/mozilla_expected_failures/other/test4-expected.png: Replaced.
4:44 PM Changeset in webkit [60195] by ggaren@apple.com
  • 2 edits in trunk/JavaScriptCore

Fixed build failure caused by merge.

  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION): On error, return a single value, since this
function no longer returns a pair.

4:32 PM Changeset in webkit [60194] by ggaren@apple.com
  • 2 edits in trunk/JavaScriptCore

<rdar://problem/8020221>

Reviewed by Oliver Hunt.

Fixed a crash seen on Windows when calling a function with too many
arguments.

SunSpider reports no change.

No test because the ASSERT I added fires in existing tests.

  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION): Make sure to grow the registerFile when too
many arguments have been provided, since the caller only allocated enough
registerFile space for the arguments it provided, not enough for the extra
copy of arguments we're going to need.

3:47 PM Changeset in webkit [60193] by dpranke@chromium.org
  • 10 edits
    4 adds in trunk

2010-05-25 Dirk Pranke <dpranke@chromium.org>

Reviewed by Dimitri Glazkov.

Re-commit r58765 - it had been rolled out to see if it was causing
a perf regression (in r59787 and r59789), but that does not seem to
have been the case.

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

  • fast/notifications/notifications-replace-expected.txt: Added.
  • fast/notifications/notifications-replace.html: Added.
  • fast/notifications/notifications-rtl-expected.txt: Added.
  • fast/notifications/notifications-rtl.html: Added.

2010-05-25 Dirk Pranke <dpranke@chromium.org>

Reviewed by Dimitri Glazkov.

Re-commit r58765 - it had been rolled out to see if it was causing
a perf regression (in r59787), but that does not seem to have been
the case.

Tests: fast/notifications/notifications-replace.html

fast/notifications/notifications-rtl.html

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

  • notifications/Notification.h: (WebCore::Notification::dir): (WebCore::Notification::setDir): (WebCore::Notification::replaceId): (WebCore::Notification::setReplaceId):
  • notifications/Notification.idl:

2010-05-24 Dirk Pranke <dpranke@chromium.org>

Reviewed by Dimitri Glazkov.

Re-commit r58765 - it had been rolled out to see if it was causing
a perf regression (in r59787 and r59789), but that does not seem to
have been the case.

  • public/WebNotification.h:
  • src/WebNotification.cpp: (WebKit::WebNotification::dir): (WebKit::WebNotification::replaceId):

2010-05-24 Dirk Pranke <dpranke@chromium.org>

Reviewed by Dimitri Glazkov.

Re-commit r58765 - it had been rolled out to see if it was causing
a perf regression (in r59787 and r59789), but that does not seem to
have been the case.

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

  • DumpRenderTree/chromium/NotificationPresenter.cpp: (NotificationPresenter::show):
3:45 PM Changeset in webkit [60192] by jamesr@google.com
  • 1 edit
    2 adds in trunk/LayoutTests

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

Reviewed by Darin Adler.

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

Add leopard baselines for one test I missed.

  • platform/mac-leopard/tables/mozilla/bugs/bug8411-expected.checksum: Added.
  • platform/mac-leopard/tables/mozilla/bugs/bug8411-expected.png: Added.
3:41 PM Changeset in webkit [60191] by ojan@chromium.org
  • 2 edits in trunk/WebKitTools

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

Reviewed by Chris Jerdonek.

remove suppression of rietveld logging
https://bugs.webkit.org/show_bug.cgi?id=39693

Now that we only upload to rietveld explicitly, e.g. on the bot
or via webkit-patch post-attachment-to-rietveld, we should print
all the rietveld logging. It was suppressed before to avoid making
webkit-patch upload too noisy.

  • Scripts/webkitpy/common/net/rietveld.py:
3:29 PM Changeset in webkit [60190] by jer.noble@apple.com
  • 21 edits
    2 adds in trunk

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

Reviewed by Adam Roben.

Full screen doesn't work for video elements
https://bugs.webkit.org/show_bug.cgi?id=39557
rdar://problem/8011813


Modified FullscreenVideoController to work with MediaPlayerPrivateFullscreenWindow. The FullscreenVideoController
is now MediaPlayerPrivate agnostic..

  • FullscreenVideoController.cpp: (FullscreenVideoController::LayoutClient::LayoutClient): New helper class which implements WKCACFLayerLayoutClient. (FullscreenVideoController::LayoutClient::layoutSublayersOfLayer): (FullscreenVideoController::FullscreenVideoController): (FullscreenVideoController::~FullscreenVideoController): (FullscreenVideoController::enterFullscreen): (FullscreenVideoController::exitFullscreen): (FullscreenVideoController::fullscreenClientWndProc): Handle WM_KEYDOWN. (FullscreenVideoController::createHUDWindow): (FullscreenVideoController::hudWndProc): Handle WM_KEYDOWN. (FullscreenVideoController::onChar): (FullscreenVideoController::onKeyDown): New function: handles the VK_ESCAPE case more reliably than WM_CHAR.
  • FullscreenVideoController.h:
  • WebView.h: (WebView::viewWindow): Added a simple viewWindow() accessor.

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

Reviewed by Adam Roben.

Full screen doesn't work for video elements
https://bugs.webkit.org/show_bug.cgi?id=39557
rdar://problem/8011813


Add fullscreen support for MediaPlayerPrivateVisualContext. A new class, MediaPlayerPrivateFullscreenWindow,
provides the fullscreen hwnd and layer renderer. Any WKCACFLayer can be provided to MediaPlayerPrivateFullscreenWindow
so future additional MediaPlayerPrivate implementations can use the fullscreen window.


Minor additions have been made to the FloatSize and IntSize classes.

MediaPlayerPrivateQuickTimeVisualContext now calls retrieveCurrentImage after creating a new
videoLayer; this is an existing bug that was never really exposed before now.

  • WebCore.vcproj/WebCore.vcproj:
  • platform/graphics/FloatSize.h: Added aspectRatio() and scale(float). (WebCore::FloatSize::aspectRatio): (WebCore::FloatSize::scale):
  • platform/graphics/IntSize.h: Added aspectRatio(). (WebCore::IntSize::aspectRatio):
  • platform/graphics/win/MediaPlayerPrivateFullscreenWindow.cpp: Added.
  • platform/graphics/win/MediaPlayerPrivateFullscreenWindow.h: Added.
  • platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp: Call retrieveCurrentImage() after creating the videoLayer. (WebCore::MediaPlayerPrivateQuickTimeVisualContext::supportsFullscreen): (WebCore::MediaPlayerPrivateQuickTimeVisualContext::retrieveCurrentImage): (WebCore::MediaPlayerPrivateQuickTimeVisualContext::createLayerForMovie):
  • platform/graphics/win/WKCACFLayer.cpp: (WebCore::WKCACFLayer::WKCACFLayer): (WebCore::WKCACFLayer::removeFromSuperlayer): (WebCore::WKCACFLayer::setFrame): (WebCore::WKCACFLayer::internalSetNeedsDisplay): (WebCore::WKCACFLayer::setLayoutClient): (WebCore::WKCACFLayer::layoutSublayersProc): (WebCore::WKCACFLayer::layoutClient): (WebCore::WKCACFLayer::setNeedsLayout):
  • platform/graphics/win/WKCACFLayer.h: Add layout client class. (WebCore::WKCACFLayerLayoutClient::~WKCACFLayerLayoutClient): (WebCore::WKCACFLayer::frame): Added back frame()/setFrame().
  • platform/graphics/win/WebTiledLayer.cpp: (WebCore::WebTiledLayer::setFrame): Implamented setFrame() in subclass of WKCACFLayer
  • platform/graphics/win/WebTiledLayer.h:
  • platform/graphics/win/WebTiledLayer.cpp: Added setFrame() overriding WKCACFLayer's implementation (WebCore::WebTiledLayer::setFrame):
  • platform/graphics/win/WebTiledLayer.h:

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

Reviewed by Adam Roben.

Full screen doesn't work for video elements
https://bugs.webkit.org/show_bug.cgi?id=39557
rdar://problem/8011813

Re-enabled fullscreen support on windows, and modified tests to match.

  • platform/win/media/controls-after-reload-expected.txt:
  • platform/win/media/controls-drag-timebar-expected.txt:
  • platform/win/media/controls-strict-expected.txt:
  • platform/win/media/controls-styling-expected.txt:
  • platform/win/media/video-controls-rendering-expected.txt:
  • platform/win/media/video-display-toggle-expected.txt:
  • platform/win/media/video-no-audio-expected.txt:
3:14 PM Changeset in webkit [60189] by tonikitoo@webkit.org
  • 6 edits in trunk

[Qt] Expose the editing behavior setting in DRT to test all editing code paths
https://bugs.webkit.org/show_bug.cgi?id=39680

Reviewed by Ojan Vafai.
Patch by Antonio Gomes <tonikitoo@webkit.org>

WebKit/qt:

Add support to Qt's DRT to setting the editing behavior. Patch is a follow up of
bug 38603, which just stubbed out the Qt bits of it.

  • WebCoreSupport/DumpRenderTreeSupportQt.cpp: Implementation of editing behavior control.

(DumpRenderTreeSupportQt::setEditingBehavior):

  • WebCoreSupport/DumpRenderTreeSupportQt.h:

WebKitTools:

Implement LayoutTestController::setEditingBehavior in Qt's DRT.

  • DumpRenderTree/qt/DumpRenderTreeQt.cpp:

(WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting):

  • DumpRenderTree/qt/LayoutTestControllerQt.cpp:

(LayoutTestController::setEditingBehavior):

3:05 PM Changeset in webkit [60188] by dumi@chromium.org
  • 2 edits in trunk/WebCore

Allow FTS3 functions.
https://bugs.webkit.org/show_bug.cgi?id=38003

Reviewed by Brady Eidson.

  • storage/DatabaseAuthorizer.cpp:

(WebCore::DatabaseAuthorizer::addWhitelistedFunctions):
(WebCore::DatabaseAuthorizer::createVTable):

2:44 PM Changeset in webkit [60187] by andersca@apple.com
  • 4 edits
    1 delete in trunk/WebCore

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

Reviewed by Sam Weinig.

Get rid of PluginDatabaseClient
https://bugs.webkit.org/show_bug.cgi?id=39685

PluginDatabaseClient isn't used anywhere so just remove it.

  • GNUmakefile.am:
  • plugins/PluginDatabase.cpp: (WebCore::PluginDatabase::PluginDatabase): (WebCore::PluginDatabase::refresh):
  • plugins/PluginDatabase.h:
  • plugins/PluginDatabaseClient.h: Removed.
2:28 PM Changeset in webkit [60186] by ap@apple.com
  • 6 edits
    2 adds in trunk

Reviewed by Darin Adler.

https://bugs.webkit.org/show_bug.cgi?id=18595
REGRESSION (r20766): Setting display:none on an iframe causes the ownerDocument to freeze

Test: fast/events/frame-detached-in-mousedown.html

  • page/EventHandler.h: Added a boolean tracking whether EventHandler needs to reset capturing node on mouse up. It's only done for nodes that hold subframes - elements that capture events are responsible for resetting the state.
  • page/EventHandler.cpp: (WebCore::EventHandler::EventHandler): Don't initialize m_capturingMouseEventsNode, it's a RefPtr and is initialized automatically. (WebCore::EventHandler::handleMousePressEvent): Remember that EventHandler should reset capturing node on its own. (WebCore::EventHandler::handleMouseDoubleClickEvent): The code here looked like it was copied from the below in r21156. Copied correct code instead. (WebCore::EventHandler::handleMouseReleaseEvent): We only clear the capturing node when it holds a subframe, but the frame may be already detached by the time mouse up is handled, so the check was wrong - and return code of passMouseReleaseEventToSubframe() is obviously irrelevant. (WebCore::EventHandler::setCapturingMouseEventsNode): Remember that EventHandler should not reset capturing node on its own.
2:27 PM Changeset in webkit [60185] by jamesr@google.com
  • 3 edits
    338 copies
    346 adds in trunk/LayoutTests

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

Unreviewed. Pixel expectations change only

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

Adds snow leopard specific baselines for tables/mozilla and moves the current
leopard-specific baselines to platform/mac-leopard.

  • platform/mac-leopard/tables: Added.
  • platform/mac-leopard/tables/mozilla: Added.
  • platform/mac-leopard/tables/mozilla/bugs: Added.
  • platform/mac-leopard/tables/mozilla/bugs/bug10296-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug10296-1-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug10296-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug10296-1-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug1055-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug1055-1-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug1055-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug1055-1-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug106816-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug106816-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug106816-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug106816-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug113235-3-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug113235-3-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug113235-3-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug113235-3-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug11944-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug11944-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug11944-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug11944-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug119786-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug119786-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug119786-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug119786-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug131020-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug131020-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug131020-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug131020-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug13118-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug13118-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug13118-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug13118-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug13196-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug13196-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug13196-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug13196-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug133756-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug133756-2-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug133756-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug133756-2-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug139524-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug139524-2-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug139524-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug139524-2-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug14159-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug14159-1-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug14159-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug14159-1-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug1430-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug1430-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug1430-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug1430-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug14929-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug14929-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug14929-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug14929-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug15247-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug15247-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug15247-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug15247-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug17130-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug17130-1-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug17130-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug17130-1-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug17130-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug17130-2-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug17130-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug17130-2-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug1800-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug1800-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug1800-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug1800-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug18359-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug18359-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug18359-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug18359-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug18955-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug18955-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug18955-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug18955-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug19061-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug19061-1-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug19061-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug19061-1-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug19061-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug19061-2-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug19061-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug19061-2-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug194024-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug194024-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug194024-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug194024-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug19599-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug19599-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug19599-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug19599-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug20804-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug20804-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug20804-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug20804-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug2267-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2267-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug2267-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2267-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug23235-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug23235-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug23235-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug23235-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug23299-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug23299-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug23299-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug23299-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug24627-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug24627-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug24627-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug24627-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug2479-3-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2479-3-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug2479-3-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2479-3-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug2479-4-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2479-4-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug2479-4-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2479-4-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug25086-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug25086-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug25086-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug25086-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug25663-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug25663-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug25663-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug25663-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug2684-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2684-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug2684-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2684-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug27038-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug27038-2-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug27038-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug27038-2-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug2773-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2773-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug2773-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2773-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug2886-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2886-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug2886-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2886-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug29058-3-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug29058-3-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug29058-3-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug29058-3-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug29429-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug29429-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug29429-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug29429-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug2947-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2947-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug2947-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2947-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug2981-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2981-1-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug2981-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2981-1-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug2981-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2981-2-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug2981-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2981-2-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug2997-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2997-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug2997-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2997-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug30692-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug30692-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug30692-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug30692-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug3103-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug3103-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug3103-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug3103-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug32205-3-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug32205-3-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug32205-3-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug32205-3-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug33855-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug33855-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug33855-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug33855-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug3454-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug3454-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug3454-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug3454-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug3681-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug3681-1-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug3681-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug3681-1-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug3977-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug3977-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug3977-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug3977-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug41890-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug41890-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug41890-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug41890-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug42187-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug42187-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug42187-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug42187-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug43039-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug43039-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug43039-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug43039-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug4382-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug4382-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug4382-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug4382-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug43854-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug43854-2-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug43854-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug43854-2-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug4427-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug4427-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug4427-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug4427-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug44505-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug44505-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug44505-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug44505-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug45055-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug45055-2-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug45055-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug45055-2-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug45486-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug45486-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug45486-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug45486-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug46368-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug46368-1-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug46368-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug46368-1-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug46368-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug46368-2-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug46368-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug46368-2-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug46623-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug46623-2-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug46623-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug46623-2-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug46924-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug46924-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug46924-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug46924-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug47432-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug47432-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug47432-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug47432-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug51727-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug51727-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug51727-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug51727-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug52505-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug52505-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug52505-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug52505-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug52506-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug52506-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug52506-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug52506-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug5538-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug5538-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug5538-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug5538-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug55694-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug55694-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug55694-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug55694-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug57300-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug57300-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug57300-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug57300-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug5799-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug5799-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug5799-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug5799-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug5835-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug5835-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug5835-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug5835-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug60749-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug60749-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug60749-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug60749-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug6184-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug6184-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug6184-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug6184-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug6404-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug6404-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug6404-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug6404-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug650-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug650-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug650-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug650-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug68912-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug68912-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug68912-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug68912-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug69382-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug69382-1-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug69382-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug69382-1-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug7112-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7112-1-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug7112-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7112-1-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug7112-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7112-2-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug7112-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7112-2-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug7121-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7121-1-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug7121-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7121-1-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug7342-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7342-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug7342-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7342-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug7471-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7471-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug7471-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7471-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug7714-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7714-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug7714-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7714-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug78162-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug78162-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug78162-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug78162-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug80762-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug80762-1-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug80762-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug80762-1-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug82946-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug82946-1-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug82946-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug82946-1-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug8858-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug8858-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug8858-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug8858-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug8950-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug8950-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug8950-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug8950-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug9123-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug9123-1-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug9123-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug9123-1-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug9123-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug9123-2-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug9123-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug9123-2-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug92143-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug92143-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug92143-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug92143-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug93363-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug93363-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug93363-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug93363-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug96334-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug96334-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug96334-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug96334-expected.png.
  • platform/mac-leopard/tables/mozilla/bugs/bug965-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug965-expected.checksum.
  • platform/mac-leopard/tables/mozilla/bugs/bug965-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug965-expected.png.
  • platform/mac-leopard/tables/mozilla/collapsing_borders: Added.
  • platform/mac-leopard/tables/mozilla/collapsing_borders/bug41262-3-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/collapsing_borders/bug41262-3-expected.checksum.
  • platform/mac-leopard/tables/mozilla/collapsing_borders/bug41262-3-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/collapsing_borders/bug41262-3-expected.png.
  • platform/mac-leopard/tables/mozilla/core: Added.
  • platform/mac-leopard/tables/mozilla/core/borders-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/borders-expected.checksum.
  • platform/mac-leopard/tables/mozilla/core/borders-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/borders-expected.png.
  • platform/mac-leopard/tables/mozilla/core/col_span-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_span-expected.checksum.
  • platform/mac-leopard/tables/mozilla/core/col_span-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_span-expected.png.
  • platform/mac-leopard/tables/mozilla/core/col_widths_auto_autoFix-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_auto_autoFix-expected.checksum.
  • platform/mac-leopard/tables/mozilla/core/col_widths_auto_autoFix-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_auto_autoFix-expected.png.
  • platform/mac-leopard/tables/mozilla/core/col_widths_auto_autoPer-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_auto_autoPer-expected.checksum.
  • platform/mac-leopard/tables/mozilla/core/col_widths_auto_autoPer-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_auto_autoPer-expected.png.
  • platform/mac-leopard/tables/mozilla/core/col_widths_auto_fix-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_auto_fix-expected.checksum.
  • platform/mac-leopard/tables/mozilla/core/col_widths_auto_fix-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_auto_fix-expected.png.
  • platform/mac-leopard/tables/mozilla/core/col_widths_auto_fixPer-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_auto_fixPer-expected.checksum.
  • platform/mac-leopard/tables/mozilla/core/col_widths_auto_fixPer-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_auto_fixPer-expected.png.
  • platform/mac-leopard/tables/mozilla/core/col_widths_auto_per-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_auto_per-expected.checksum.
  • platform/mac-leopard/tables/mozilla/core/col_widths_auto_per-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_auto_per-expected.png.
  • platform/mac-leopard/tables/mozilla/core/col_widths_fix_autoFix-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_fix_autoFix-expected.checksum.
  • platform/mac-leopard/tables/mozilla/core/col_widths_fix_autoFix-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_fix_autoFix-expected.png.
  • platform/mac-leopard/tables/mozilla/core/col_widths_fix_autoPer-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_fix_autoPer-expected.checksum.
  • platform/mac-leopard/tables/mozilla/core/col_widths_fix_autoPer-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_fix_autoPer-expected.png.
  • platform/mac-leopard/tables/mozilla/core/col_widths_fix_fix-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_fix_fix-expected.checksum.
  • platform/mac-leopard/tables/mozilla/core/col_widths_fix_fix-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_fix_fix-expected.png.
  • platform/mac-leopard/tables/mozilla/core/col_widths_fix_fixPer-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_fix_fixPer-expected.checksum.
  • platform/mac-leopard/tables/mozilla/core/col_widths_fix_fixPer-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_fix_fixPer-expected.png.
  • platform/mac-leopard/tables/mozilla/core/margins-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/margins-expected.checksum.
  • platform/mac-leopard/tables/mozilla/core/margins-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/margins-expected.png.
  • platform/mac-leopard/tables/mozilla/core/one_row-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/one_row-expected.checksum.
  • platform/mac-leopard/tables/mozilla/core/one_row-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/one_row-expected.png.
  • platform/mac-leopard/tables/mozilla/core/row_span-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/row_span-expected.checksum.
  • platform/mac-leopard/tables/mozilla/core/row_span-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/row_span-expected.png.
  • platform/mac-leopard/tables/mozilla/core/table_rules-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/table_rules-expected.checksum.
  • platform/mac-leopard/tables/mozilla/core/table_rules-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/table_rules-expected.png.
  • platform/mac-leopard/tables/mozilla/core/table_widths-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/table_widths-expected.checksum.
  • platform/mac-leopard/tables/mozilla/core/table_widths-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/table_widths-expected.png.
  • platform/mac-leopard/tables/mozilla/dom: Added.
  • platform/mac-leopard/tables/mozilla/dom/deleteTbodyRebuild1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/dom/deleteTbodyRebuild1-expected.checksum.
  • platform/mac-leopard/tables/mozilla/dom/deleteTbodyRebuild1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/dom/deleteTbodyRebuild1-expected.png.
  • platform/mac-leopard/tables/mozilla/dom/insertCellsRebuild1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/dom/insertCellsRebuild1-expected.checksum.
  • platform/mac-leopard/tables/mozilla/dom/insertCellsRebuild1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/dom/insertCellsRebuild1-expected.png.
  • platform/mac-leopard/tables/mozilla/images: Added.
  • platform/mac-leopard/tables/mozilla/images/adforce_imgis_com-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/images/adforce_imgis_com-expected.checksum.
  • platform/mac-leopard/tables/mozilla/images/adforce_imgis_com-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/images/adforce_imgis_com-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin: Added.
  • platform/mac-leopard/tables/mozilla/marvin/body_tbody-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/body_tbody-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/body_tbody-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/body_tbody-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/body_tfoot-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/body_tfoot-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/body_tfoot-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/body_tfoot-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/body_thead-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/body_thead-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/body_thead-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/body_thead-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/col_span-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/col_span-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/col_span-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/col_span-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/colgroup_align_center-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_align_center-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/colgroup_align_center-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_align_center-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/colgroup_align_justify-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_align_justify-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/colgroup_align_justify-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_align_justify-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/colgroup_align_left-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_align_left-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/colgroup_align_left-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_align_left-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/colgroup_align_right-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_align_right-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/colgroup_align_right-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_align_right-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/colgroup_span-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_span-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/colgroup_span-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_span-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/colgroup_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_valign_baseline-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/colgroup_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_valign_baseline-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/colgroup_valign_bottom-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_valign_bottom-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/colgroup_valign_bottom-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_valign_bottom-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/colgroup_valign_middle-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_valign_middle-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/colgroup_valign_middle-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_valign_middle-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/colgroup_valign_top-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_valign_top-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/colgroup_valign_top-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_valign_top-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/colgroup_width_pct-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_width_pct-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/colgroup_width_pct-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_width_pct-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/colgroup_width_px-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_width_px-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/colgroup_width_px-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_width_px-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/table_frame_border-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_frame_border-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/table_frame_border-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_frame_border-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/table_frame_box-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_frame_box-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/table_frame_box-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_frame_box-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/table_row_align_center-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_row_align_center-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/table_row_align_center-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_row_align_center-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/table_row_align_left-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_row_align_left-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/table_row_align_left-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_row_align_left-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/table_row_align_right-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_row_align_right-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/table_row_align_right-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_row_align_right-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/table_rules_all-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_rules_all-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/table_rules_all-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_rules_all-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/table_rules_groups-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_rules_groups-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/table_rules_groups-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_rules_groups-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/table_rules_none-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_rules_none-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/table_rules_none-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_rules_none-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_align_center-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_align_center-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_align_center-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_align_center-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_align_left-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_align_left-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_align_left-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_align_left-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_align_right-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_align_right-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_align_right-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_align_right-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_border_0-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_border_0-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_border_0-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_border_0-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_border_1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_border_1-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_border_1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_border_1-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_border_2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_border_2-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_border_2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_border_2-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_border_3-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_border_3-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_border_3-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_border_3-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_cellpadding-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_cellpadding-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_cellpadding-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_cellpadding-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_cellpadding_pct-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_cellpadding_pct-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_cellpadding_pct-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_cellpadding_pct-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_cellspacing-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_cellspacing-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_cellspacing-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_cellspacing-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_class-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_class-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_class-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_class-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_id-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_id-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_id-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_id-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_row_th_nowrap-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_row_th_nowrap-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_row_th_nowrap-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_row_th_nowrap-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_style-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_style-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_style-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_style-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_td_align_center-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_align_center-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_td_align_center-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_align_center-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_td_align_left-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_align_left-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_td_align_left-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_align_left-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_td_align_right-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_align_right-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_td_align_right-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_align_right-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_td_colspan-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_colspan-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_td_colspan-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_colspan-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_td_height-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_height-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_td_height-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_height-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_td_nowrap-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_nowrap-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_td_nowrap-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_nowrap-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_td_rowspan-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_rowspan-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_td_rowspan-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_rowspan-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_td_width-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_width-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_td_width-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_width-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_th_align_center-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_align_center-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_th_align_center-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_align_center-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_th_align_left-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_align_left-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_th_align_left-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_align_left-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_th_align_right-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_align_right-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_th_align_right-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_align_right-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_th_colspan-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_colspan-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_th_colspan-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_colspan-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_th_height-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_height-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_th_height-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_height-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_th_rowspan-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_rowspan-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_th_rowspan-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_rowspan-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_th_width-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_width-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_th_width-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_width-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_width_percent-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_width_percent-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_width_percent-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_width_percent-expected.png.
  • platform/mac-leopard/tables/mozilla/marvin/tables_width_px-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_width_px-expected.checksum.
  • platform/mac-leopard/tables/mozilla/marvin/tables_width_px-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_width_px-expected.png.
  • platform/mac/tables/mozilla/bugs/bug10296-1-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug10296-1-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug1055-1-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug1055-1-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug106816-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug106816-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug113235-3-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug113235-3-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug11944-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug11944-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug119786-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug119786-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug131020-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug131020-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug13118-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug13118-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug13196-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug13196-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug133756-2-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug133756-2-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug139524-2-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug139524-2-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug14159-1-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug14159-1-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug1430-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug1430-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug14929-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug14929-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug15247-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug15247-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug17130-1-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug17130-1-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug17130-2-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug17130-2-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug1800-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug1800-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug18359-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug18359-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug18955-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug18955-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug19061-1-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug19061-1-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug19061-2-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug19061-2-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug194024-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug194024-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug19599-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug19599-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug20804-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug20804-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug2267-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug2267-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug23235-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug23235-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug23299-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug23299-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug24627-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug24627-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug2479-3-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug2479-3-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug2479-4-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug2479-4-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug25086-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug25086-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug25663-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug25663-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug2684-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug2684-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug27038-2-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug27038-2-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug2773-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug2773-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug2886-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug2886-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug29058-3-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug29058-3-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug29429-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug29429-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug2947-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug2947-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug2981-1-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug2981-1-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug2981-2-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug2981-2-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug2997-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug2997-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug30692-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug30692-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug3103-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug3103-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug32205-3-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug32205-3-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug33855-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug33855-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug3454-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug3454-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug3681-1-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug3681-1-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug3977-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug3977-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug41890-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug41890-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug42187-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug42187-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug43039-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug43039-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug4382-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug4382-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug43854-2-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug43854-2-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug4427-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug4427-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug44505-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug44505-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug45055-2-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug45055-2-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug45486-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug45486-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug46368-1-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug46368-1-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug46368-2-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug46368-2-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug46623-2-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug46623-2-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug46924-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug46924-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug47432-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug47432-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug51727-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug51727-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug52505-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug52505-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug52506-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug52506-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug5538-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug5538-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug55694-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug55694-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug57300-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug57300-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug5799-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug5799-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug5835-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug5835-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug60749-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug60749-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug6184-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug6184-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug6404-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug6404-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug650-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug650-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug68912-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug68912-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug69382-1-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug69382-1-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug7112-1-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug7112-1-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug7112-2-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug7112-2-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug7121-1-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug7121-1-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug7342-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug7342-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug7471-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug7471-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug7714-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug7714-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug78162-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug78162-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug80762-1-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug80762-1-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug82946-1-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug82946-1-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug8411-expected.checksum:
  • platform/mac/tables/mozilla/bugs/bug8411-expected.png:
  • platform/mac/tables/mozilla/bugs/bug8858-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug8858-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug8950-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug8950-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug9123-1-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug9123-1-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug9123-2-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug9123-2-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug92143-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug92143-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug93363-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug93363-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug96334-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug96334-expected.png: Replaced.
  • platform/mac/tables/mozilla/bugs/bug965-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/bugs/bug965-expected.png: Replaced.
  • platform/mac/tables/mozilla/collapsing_borders/bug41262-3-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/collapsing_borders/bug41262-3-expected.png: Replaced.
  • platform/mac/tables/mozilla/core/borders-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/core/borders-expected.png: Replaced.
  • platform/mac/tables/mozilla/core/col_span-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/core/col_span-expected.png: Replaced.
  • platform/mac/tables/mozilla/core/col_widths_auto_autoFix-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/core/col_widths_auto_autoFix-expected.png: Replaced.
  • platform/mac/tables/mozilla/core/col_widths_auto_autoPer-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/core/col_widths_auto_autoPer-expected.png: Replaced.
  • platform/mac/tables/mozilla/core/col_widths_auto_fix-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/core/col_widths_auto_fix-expected.png: Replaced.
  • platform/mac/tables/mozilla/core/col_widths_auto_fixPer-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/core/col_widths_auto_fixPer-expected.png: Replaced.
  • platform/mac/tables/mozilla/core/col_widths_auto_per-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/core/col_widths_auto_per-expected.png: Replaced.
  • platform/mac/tables/mozilla/core/col_widths_fix_autoFix-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/core/col_widths_fix_autoFix-expected.png: Replaced.
  • platform/mac/tables/mozilla/core/col_widths_fix_autoPer-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/core/col_widths_fix_autoPer-expected.png: Replaced.
  • platform/mac/tables/mozilla/core/col_widths_fix_fix-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/core/col_widths_fix_fix-expected.png: Replaced.
  • platform/mac/tables/mozilla/core/col_widths_fix_fixPer-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/core/col_widths_fix_fixPer-expected.png: Replaced.
  • platform/mac/tables/mozilla/core/margins-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/core/margins-expected.png: Replaced.
  • platform/mac/tables/mozilla/core/one_row-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/core/one_row-expected.png: Replaced.
  • platform/mac/tables/mozilla/core/row_span-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/core/row_span-expected.png: Replaced.
  • platform/mac/tables/mozilla/core/table_rules-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/core/table_rules-expected.png: Replaced.
  • platform/mac/tables/mozilla/core/table_widths-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/core/table_widths-expected.png: Replaced.
  • platform/mac/tables/mozilla/dom/deleteTbodyRebuild1-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/dom/deleteTbodyRebuild1-expected.png: Replaced.
  • platform/mac/tables/mozilla/dom/insertCellsRebuild1-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/dom/insertCellsRebuild1-expected.png: Replaced.
  • platform/mac/tables/mozilla/images/adforce_imgis_com-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/images/adforce_imgis_com-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/body_tbody-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/body_tbody-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/body_tfoot-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/body_tfoot-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/body_thead-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/body_thead-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/col_span-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/col_span-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/colgroup_align_center-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/colgroup_align_center-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/colgroup_align_justify-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/colgroup_align_justify-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/colgroup_align_left-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/colgroup_align_left-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/colgroup_align_right-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/colgroup_align_right-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/colgroup_span-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/colgroup_span-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/colgroup_valign_baseline-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/colgroup_valign_baseline-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/colgroup_valign_bottom-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/colgroup_valign_bottom-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/colgroup_valign_middle-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/colgroup_valign_middle-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/colgroup_valign_top-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/colgroup_valign_top-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/colgroup_width_pct-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/colgroup_width_pct-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/colgroup_width_px-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/colgroup_width_px-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/table_frame_border-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/table_frame_border-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/table_frame_box-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/table_frame_box-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/table_row_align_center-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/table_row_align_center-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/table_row_align_left-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/table_row_align_left-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/table_row_align_right-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/table_row_align_right-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/table_rules_all-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/table_rules_all-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/table_rules_groups-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/table_rules_groups-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/table_rules_none-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/table_rules_none-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_align_center-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_align_center-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_align_left-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_align_left-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_align_right-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_align_right-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_border_0-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_border_0-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_border_1-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_border_1-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_border_2-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_border_2-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_border_3-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_border_3-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_cellpadding-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_cellpadding-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_cellpadding_pct-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_cellpadding_pct-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_cellspacing-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_cellspacing-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_class-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_class-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_id-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_id-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_row_th_nowrap-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_row_th_nowrap-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_style-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_style-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_td_align_center-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_td_align_center-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_td_align_left-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_td_align_left-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_td_align_right-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_td_align_right-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_td_colspan-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_td_colspan-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_td_height-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_td_height-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_td_nowrap-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_td_nowrap-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_td_rowspan-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_td_rowspan-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_td_width-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_td_width-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_th_align_center-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_th_align_center-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_th_align_left-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_th_align_left-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_th_align_right-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_th_align_right-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_th_colspan-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_th_colspan-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_th_height-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_th_height-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_th_rowspan-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_th_rowspan-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_th_width-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_th_width-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_width_percent-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_width_percent-expected.png: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_width_px-expected.checksum: Replaced.
  • platform/mac/tables/mozilla/marvin/tables_width_px-expected.png: Replaced.
2:19 PM Changeset in webkit [60184] by kevino@webkit.org
  • 5 edits in trunk

[wx] Build fixes after recent changes.

2:18 PM Changeset in webkit [60183] by adachan@apple.com
  • 3 edits in trunk/WebKit2

Reviewed by Darin Adler.

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

Fix the ProjectGUID of the WebKit2 project so it doesn't conflict with the one in WebKit.

  • WebKit2.sln:
  • win/WebKit2.vcproj:
2:11 PM Changeset in webkit [60182] by eric@webkit.org
  • 3 edits in trunk/WebKit

2010-05-25 Joone Hur <joone.hur@samsung.com>

Reviewed by Gustavo Noronha Silva.

[EFL] Build fix.
http://webkit.org/b/39648

  • efl/ewk/ewk_frame.cpp: (ewk_frame_zoom_get): Add missed namespace (ewk_frame_zoom_set): Ditto. (ewk_frame_zoom_text_only_set): Ditto.
  • efl/ewk/ewk_view.cpp: (_ewk_view_priv_new): Add a null parameter when creating a Page.
2:03 PM Changeset in webkit [60181] by Darin Adler
  • 2 edits in trunk/WebCore
  • dom/Element.cpp:

(WebCore::Element::getIDAttribute): Added comments about problems with this function.

1:56 PM Changeset in webkit [60180] by eric@webkit.org
  • 2 edits in trunk/WebCore

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

Reviewed by Gustavo Noronha Silva.

[EFL] Build fix.
http://webkit.org/b/39598

  • CMakeLists.txt:
1:46 PM Changeset in webkit [60179] by Darin Adler
  • 11 edits in trunk/LayoutTests

Update more files that changed as a result of
https://bugs.webkit.org/show_bug.cgi?id=39516
That patch added -webkit-column-span.

  • fast/css/getComputedStyle/computed-style-expected.txt:
  • fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
  • platform/chromium-mac/fast/css/computed-style-expected.txt:
  • platform/chromium-mac/fast/css/computed-style-without-renderer-expected.txt:
  • platform/chromium-win/fast/css/computed-style-expected.txt:
  • platform/chromium-win/fast/css/computed-style-without-renderer-expected.txt:
  • platform/qt/fast/css/getComputedStyle/computed-style-expected.txt:
  • platform/qt/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
  • platform/win/fast/css/getComputedStyle/computed-style-expected.txt:
  • platform/win/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:

Added -webkit-column-span.

1:13 PM Changeset in webkit [60178] by brettw@chromium.org
  • 2 edits in trunk/WebKit/chromium

2010-05-25 Brett Wilson <brettw@chromium.org>

Reviewed by Darin Fisher.

Remove obsolete code for Mac & Windows plugin creation in the Chromium
port. This non-Windows code was to prevent a crash which we no longer
seem to have, and it is preventing other types of plugins from working.
https://bugs.webkit.org/show_bug.cgi?id=39684

  • src/FrameLoaderClientImpl.cpp: (WebKit::FrameLoaderClientImpl::createPlugin):
11:37 AM Changeset in webkit [60177] by jparent@chromium.org
  • 2 edits in trunk/LayoutTests

Unreviewed.

Update Chromium test expectations from r60172.

  • platform/chromium/html5lib/webkit-runner-expected.txt:
11:21 AM Changeset in webkit [60176] by enrica@apple.com
  • 2 edits in trunk/WebCore

REGRESSION(51522): typing at the end of a line in designMode documents is *very* slow.
https://bugs.webkit.org/show_bug.cgi?id=36037
<rdar://problem/8022887>

Reviewed by Darin Adler.

The performance regression was traced to r51522 but this is not entirely true. That revision introduced, among other things,
additional checks in the method isCandidate of both Position and PositionIterator classes to support scenarios of mixed editability
that were not allowed before. This change uncovered an underlying issue with the decrement method of PositionIterator, that in some
cases would iterate through every position as offset in a block before moving to the last child in the block.
This was exactly the case of the attached test case, where, trying to check if the caret was placed at the end of a block, we were examining
every position in the block before considering the last true position in the block.
The performance was linear with the number of child nodes in the block, instead of constant.

  • dom/PositionIterator.cpp:

(WebCore::PositionIterator::decrement):

11:02 AM Changeset in webkit [60175] by ap@apple.com
  • 6 edits in trunk

Reviewed by Darin Adler.

https://bugs.webkit.org/show_bug.cgi?id=39621
<rdar://problem/8009738> Extreme memory growth on DOM Hanoi test

The largest cause of memory growth on this test were autoreleased DOMNode objects created
to make webView:formStateDidChangeForNode: delegate calls.

WebCore:

  • html/HTMLTextAreaElement.cpp: (WebCore::HTMLTextAreaElement::HTMLTextAreaElement): Don't call notifyFormStateChanged() - since the element starts with refcount 0, it's not safe to call functions that are likely to create temporary wrappers (wrapper destructor would bring refcount back to 0, and destroy HTMLTextAreaElement from within its constructor).

WebKit/mac:

Removed formStateDidChange support, which is not needed by any client.

  • WebCoreSupport/WebChromeClient.h: (WebChromeClient::formStateDidChange):
  • WebCoreSupport/WebChromeClient.mm:
  • WebView/WebUIDelegatePrivate.h:
10:59 AM Changeset in webkit [60174] by Dimitri Glazkov
  • 4 edits in trunk

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

Reviewed by Dimitri Glazkov.

[DRT/Chromium] Enable 3D_CANVAS, FILTERS, METER_TAG and PROGRESS_TAG
https://bugs.webkit.org/show_bug.cgi?id=39652

  • rendering/RenderTheme.cpp: (WebCore::RenderTheme::paintMeter): Fix narrowPrecisionToFloat() usage.

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

Reviewed by Dimitri Glazkov.

[DRT/Chromium] Enable 3D_CANVAS, FILTERS, METER_TAG and PROGRESS_TAG
https://bugs.webkit.org/show_bug.cgi?id=39652

3D_CANVAS and FILTERS have been enabled for Chromium tree
build. They fix dozens of unexpected test results in a case of
upstreaming build.
Enable METER_TAG and PROGRESS_TAG too because they will be enabled
in Chromium tree in the near future.

  • features.gypi:
10:49 AM Changeset in webkit [60173] by Darin Adler
  • 5 edits in trunk/WebCore

Sort ".exp" files with the sort tool.
This makes later merging easier.

These Mac-specific files should probably move into a subdirectory
at some point.

  • WebCore.Inspector.exp: Sorted.
  • WebCore.PluginHostProcess.exp: Removed blank line.
  • WebCore.VideoProxy.exp: Sorted.
  • WebCore.base.exp: Ditto.
10:14 AM Changeset in webkit [60172] by eric@webkit.org
  • 4 edits
    1 add in trunk/LayoutTests

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

Reviewed by Eric Seidel.

Add more HTML5 entity parsing test coverage
https://bugs.webkit.org/show_bug.cgi?id=39662

These tests all pass in Firefox. We have some more work to do here.
There's a large testing matrix for entities, so expect more tests in
the future.

  • html5lib/webkit-runner-expected-html5.txt:
  • html5lib/webkit-runner-expected.txt:
  • html5lib/webkit-runner.html:
10:03 AM Changeset in webkit [60171] by eric@webkit.org
  • 8 edits in trunk

2010-05-25 Vangelis Kokkevis <vangelis@chromium.org>

Reviewed by Darin Fisher.

Removing the persistent GraphicsContext from LayerChromium to save on
memory and simplify code. Layers now create a temporary context, draw into
it, update the GL texture and discard the context.
https://bugs.webkit.org/show_bug.cgi?id=39640

  • platform/graphics/chromium/GraphicsLayerChromium.cpp: (WebCore::GraphicsLayerChromium::updateLayerDrawsContent):
  • platform/graphics/chromium/LayerChromium.cpp: (WebCore::LayerChromium::LayerChromium): (WebCore::LayerChromium::~LayerChromium): (WebCore::LayerChromium::setLayerRenderer): (WebCore::LayerChromium::updateTextureContents): (WebCore::LayerChromium::setContents): (WebCore::LayerChromium::setBounds): (WebCore::LayerChromium::setNeedsDisplay):
  • platform/graphics/chromium/LayerChromium.h:
  • platform/graphics/chromium/LayerRendererChromium.cpp: (WebCore::LayerRendererChromium::~LayerRendererChromium): (WebCore::LayerRendererChromium::setRootLayerCanvasSize): (WebCore::LayerRendererChromium::drawLayers): (WebCore::LayerRendererChromium::assignTextureForLayer): (WebCore::LayerRendererChromium::compositeLayersRecursive):
  • platform/graphics/chromium/LayerRendererChromium.h: (WebCore::LayerRendererChromium::rootLayerGraphicsContext):

2010-05-25 Vangelis Kokkevis <vangelis@chromium.org>

Reviewed by Darin Fisher.

The GraphicsContext that serves as a backing store for the root layer
updates when doing accelerated compositing is now stored in LayerRendererChromium
instead of the Layer itself. Updating code in WebViewImpl to reflect
that change.
https://bugs.webkit.org/show_bug.cgi?id=39640

  • src/WebViewImpl.cpp: (WebKit::WebViewImpl::updateRootLayerContents):
9:51 AM Changeset in webkit [60170] by eric@webkit.org
  • 3 edits in trunk/JavaScriptCore

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

Reviewed by Darin Adler.

Build fix for JSFunction
https://bugs.webkit.org/show_bug.cgi?id=39658

MSVC can't compile one of JSFunction constructors when JIT is disabled.
"PassRefPtr<NativeExecutable>" causes the compile error as NativeExecutable is not defined.
Add ENABLE(JIT) guard to the constructor.

  • runtime/JSFunction.cpp: (JSC::JSFunction::JSFunction):
  • runtime/JSFunction.h:
9:22 AM Changeset in webkit [60169] by kenneth@webkit.org
  • 2 edits in trunk/WebCore

[Qt] Make text filling work together with text stroke.

Patch by Kenneth Rohde Christiansen <kenneth@webkit.org> on 2010-05-24
Reviewed by Simon Hausmann.

When the text has stroke a new QPen was set, overriding the pen
set for text filling. This patch fixes that by storing the two
pens and using where appropriate.

  • platform/graphics/qt/FontQt.cpp:

(WebCore::Font::drawComplexText):

9:01 AM Changeset in webkit [60168] by beidson@apple.com
  • 6 edits in trunk/WebKit

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

Reviewed by Darin Adler.

WebKit/mac:

  • Storage/WebDatabaseManager.mm:

(WebKitInitializeDatabasesIfNecessary): Call initializeTracker() instead of trying to set the path on

an already created tracker that already has its origins populated.

WebKit/win:

  • WebDatabaseManager.cpp:

(WebKitInitializeWebDatabasesIfNecessary): Call initializeTracker() instead of trying to set the path on

an already created tracker that already has its origins populated.

  • WebDatabaseManager.h:
  • WebView.cpp:

(WebView::initWithFrame): Call a renamed method instead.

8:46 AM Changeset in webkit [60167] by tonikitoo@webkit.org
  • 2 edits in trunk/LayoutTests

Unreviewed attempt to make Tiger bot green.

[Mac][Tiger] failing philip canvas tests
https://bugs.webkit.org/show_bug.cgi?id=39677

  • platform/mac-tiger/Skipped:
8:39 AM Changeset in webkit [60166] by chang.shu@nokia.com
  • 2 edits in trunk/LayoutTests

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

Unreviewed.

Skipped two additional canvas test cases that failed on SnowLeopard only.
https://bugs.webkit.org/show_bug.cgi?id=20553

  • platform/mac-snowleopard/Skipped:
8:25 AM Changeset in webkit [60165] by tonikitoo@webkit.org
  • 3 edits in trunk/WebKitTools

Re-laning r60158.

Reviewed by Eric Seidel and Kent Tamura (Chromium part).
Patch by Antonio Gomes <tonikitoo@webkit.org>

Fixed LayoutTests regression on Gtk's bot, due to wrong reset value.

Thank you Martin Robinson <Martin Robinson> for spotting this.

  • DumpRenderTree/chromium/TestShell.cpp:

(TestShell::resetWebSettings):

  • DumpRenderTree/gtk/DumpRenderTree.cpp:

(resetDefaultsToConsistentValues):

8:22 AM Changeset in webkit [60164] by tonikitoo@webkit.org
  • 4 edits in trunk/WebCore

Re-laning r60159.

Reviewed by Darin Adler.

Mac build failures fixed by updating WebCore/WebCore.base.exp

  • page/EventHandler.cpp:

(WebCore::EventHandler::scrollOverflow):
(WebCore::EventHandler::scrollRecursively):

  • page/EventHandler.h:
  • WebCore.base.exp:
7:46 AM Changeset in webkit [60163] by yurys@chromium.org
  • 2 edits in trunk/WebCore

2010-05-25 Yury Semikhatsky <yurys@chromium.org>

Reviewed by Timothy Hatcher.

Web Inspector: localize heap graph strings.

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

  • English.lproj/localizedStrings.js:
7:31 AM Changeset in webkit [60162] by chang.shu@nokia.com
  • 2 edits
    788 adds in trunk/LayoutTests

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

Reviewed by Kenneth Rohde Christiansen.

The following are the steps on how the expected results were created:

  1. Generated ~800 results on Mac.
  2. Manually edited ~100 failed results to "Passed" to make them "expected". All ~800 expected results are the same across the platforms.
  3. Put the failed ones in Mac's Skipped list. Other platforms are skipping the whole directory, which will be worked on later. https://bugs.webkit.org/show_bug.cgi?id=20553
  • canvas/philip/tests/*-expected.txt: 788 files Added.
  • platform/mac/Skipped:
7:03 AM Changeset in webkit [60161] by tonikitoo@webkit.org
  • 3 edits in trunk/WebKitTools

Revert "editingBehavior settings needs to be set back to a reasonable default between tests"

This reverts commit r60158: might have broken GTK Linux 32-bit Release.

6:58 AM Changeset in webkit [60160] by tonikitoo@webkit.org
  • 3 edits in trunk/WebCore

Revert "Add an optional "starting node' parameter to scrollRecursively and scrollOverflow of EventHandler"

Mac builders broken. WebCore.base.exp needs update.

This reverts commit f3cbfc2e071d81eb7943b739b922bf1ad0fcd6b0.

6:14 AM Changeset in webkit [60159] by tonikitoo@webkit.org
  • 3 edits in trunk/WebCore

Add an optional "starting node' parameter to scrollRecursively and scrollOverflow of EventHandler
https://bugs.webkit.org/show_bug.cgi?id=39217

Reviewed by Darin Adler.
Patch by Antonio Gomes <tonikitoo@webkit.org>

It would be usefull if scrollOverflow and scrollRecursively methods of EventHandler
could receive a parameter to specify where to start scrolling from. Currently they
start scrolling from either the current focused node or the node where mouse last
pressed on. Patch proposes an aditional starting point as an optional parameter.
Since it is optional, all call sites can remain as are, and if a Null node is passed
in, both methods work as previously.

  • page/EventHandler.cpp:

(WebCore::EventHandler::scrollOverflow):
(WebCore::EventHandler::scrollRecursively):

  • page/EventHandler.h:
6:13 AM Changeset in webkit [60158] by tonikitoo@webkit.org
  • 3 edits in trunk/WebKitTools

editingBehavior settings needs to be set back to a reasonable default between tests
https://bugs.webkit.org/show_bug.cgi?id=39433

Reviewed by Eric Seidel and Kent Tamura (Chromium part).
Patch by Antonio Gomes <tonikitoo@webkit.org>

Similarly to r59861, hard code the default setting during reset for Gtk and Chromium,
so that the serialized version of the setting stays in sync with expectations.

  • DumpRenderTree/chromium/TestShell.cpp:

(TestShell::resetWebSettings):

  • DumpRenderTree/gtk/DumpRenderTree.cpp:

(resetDefaultsToConsistentValues):

5:55 AM Changeset in webkit [60157] by eric@webkit.org
  • 2 edits in trunk/WebCore

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

Reviewed by Eric Seidel.

Switch HTML parsing benchmark to use document.write instead of innerHTML
https://bugs.webkit.org/show_bug.cgi?id=39661

We'd like to exercise the main parsing pipeline instead of the fragment
parsing pipeline.

  • benchmarks/parser/html-parser.html:
5:44 AM Changeset in webkit [60156] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-25 Kenneth Rohde Christiansen <kenneth.christiansen@openbossa.org>

Reviewed by Laszlo Gombos.

[Qt] Running with accelerated compositing enabled sometimes result in a crash
https://bugs.webkit.org/show_bug.cgi?id=39609

Check if we have a scene before applying the workaround for
the QGraphicsScene bug where opacity change doesn't always have
immediate effect.

  • platform/graphics/qt/GraphicsLayerQt.cpp: (WebCore::OpacityAnimationQt::applyFrame):
5:14 AM Changeset in webkit [60155] by yurys@chromium.org
  • 2 edits in trunk/WebCore

2010-05-25 Yury Semikhatsky <yurys@chromium.org>

Unreviewed. Fix Chromium Mac Release build.

  • bindings/v8/ScriptDebugServer.cpp:
4:45 AM Changeset in webkit [60154] by yurys@chromium.org
  • 15 edits in trunk

2010-05-24 Yury Semikhatsky <yurys@chromium.org>

Reviewed by Pavel Feldman.

ScriptDebugServer is now implemented as DebugEventListener which means it doesn't
depend on v8 debugging protocol, instead it uses ExecState to collect debugging
info and pass it to the listeners.

New implementation of ScriptDebugServer uses methods provided by client to dispatch
its messages while JS is paused(previously the messages was dispatched in a callback
passed to v8 along with DebugEventHandler).

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

  • bindings/js/ScriptDebugServer.cpp: (WebCore::ScriptDebugServer::dispatchDidPause): (WebCore::ScriptDebugServer::dispatchDidContinue): (WebCore::ScriptDebugServer::dispatchFunctionToListeners): Changed method signature to allow invocation of ScriptDebugListener methods that have non-empty argument list. (WebCore::ScriptDebugServer::pauseIfNeeded):
  • bindings/js/ScriptDebugServer.h:
  • bindings/v8/ScriptDebugServer.cpp: (WebCore::retrieveFrame): (WebCore::ScriptDebugServer::ScriptDebugServer): (WebCore::ScriptDebugServer::addListener): (WebCore::ScriptDebugServer::removeListener): Execution is resumed(nested message loop is terminated) when corresponding debugger window closes. (WebCore::ScriptDebugServer::clearBreakpoints): (WebCore::ScriptDebugServer::pauseOnExceptionsState): (WebCore::ScriptDebugServer::setPauseOnExceptionsState): (WebCore::ScriptDebugServer::continueProgram): (WebCore::ScriptDebugServer::stepIntoStatement): (WebCore::ScriptDebugServer::stepOverStatement): (WebCore::ScriptDebugServer::stepOutOfFunction): (WebCore::ScriptDebugServer::v8DebugEventCallback): (WebCore::ScriptDebugServer::handleV8DebugEvent): (WebCore::ScriptDebugServer::didResume):
  • bindings/v8/ScriptDebugServer.h: (WebCore::ScriptDebugServer::ClientMessageLoop::~ClientMessageLoop): (WebCore::ScriptDebugServer::setClientMessageLoop):
  • inspector/InspectorController.cpp: (WebCore::InspectorController::didPause):
  • inspector/InspectorController.h:
  • inspector/ScriptDebugListener.h: Changed didPause signature to explicitly pass ScriptState where execution is paused.

2010-05-24 Yury Semikhatsky <yurys@chromium.org>

Reviewed by Pavel Feldman.

ScriptDebugServer is now implemented as DebugEventListener which means it doesn't
depend on v8 debugging protocol, instead it uses ExecState to collect debugging
info and pass it to the listeners.

New implementation of ScriptDebugServer uses methods provided by client to dispatch
its messages while JS is paused(previously the messages was dispatched in a callback
passed to v8 along with DebugEventHandler).

Pause command is dispatched on IO thread.

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

  • public/WebDevToolsAgentClient.h: (WebKit::WebDevToolsAgentClient::ClientMessageLoop::~ClientMessageLoop): (WebKit::WebDevToolsAgentClient::createClientMessageLoop): Returns an object that allows to run nested client message loop while script execution is paused on a breakpoint.
  • src/DebuggerAgentManager.cpp: (WebKit::DebuggerAgentManager::setMessageLoopDispatchHandler):
  • src/DebuggerAgentManager.h:
  • src/WebDevToolsAgentImpl.cpp: (WebKit::): (WebKit::WebDevToolsAgentImpl::~WebDevToolsAgentImpl): (WebKit::WebDevToolsAgentImpl::attach):
  • src/js/DebuggerScript.js: (debuggerScriptConstructor.DebuggerScript.getAfterCompileScript): (debuggerScriptConstructor.DebuggerScript.stepIntoStatement): (debuggerScriptConstructor.DebuggerScript.stepOverStatement): (debuggerScriptConstructor.DebuggerScript.stepOutOfFunction):
  • src/js/InspectorControllerImpl.js: (devtools.InspectorBackendImpl): (else.devtools.InspectorBackendImpl.prototype.pauseInDebugger): Pause command should be handled on IO thread so that script can be paused even if it's in an infinite loop.
3:21 AM Changeset in webkit [60153] by eric@webkit.org
  • 4 edits in trunk

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

Reviewed by Eric Seidel.

Clear attributes for each tag in the HTML5 parser
https://bugs.webkit.org/show_bug.cgi?id=39660

I'm surprised this wasn't covered already, but sometimes the most basic
things are the hardest to remember to test.

  • html5lib/resources/webkit01.dat:

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

Reviewed by Eric Seidel.

Clear attributes for each tag in the HTML5 parser
https://bugs.webkit.org/show_bug.cgi?id=39660

Yes, I did screw this up.

  • html/HTML5Token.h: (WebCore::HTML5Token::beginStartTag): (WebCore::HTML5Token::beginEndTag):
3:07 AM Changeset in webkit [60152] by eric@webkit.org
  • 2 edits in trunk/WebCore

2010-05-25 Anders Bakken <agbakken@gmail.com>

Reviewed by Darin Adler.

Remove warning for GCC 4.4.3

GCC suggest parentheses around && within
  • dom/Element.cpp: (WebCore::Element::recalcStyle):
2:48 AM Changeset in webkit [60151] by xan@webkit.org
  • 2 edits in trunk/WebCore

2010-05-25 Xan Lopez <xlopez@igalia.com>

Fix the GTK+ build, PluginInfoStore was removed.

  • GNUmakefile.am:
2:19 AM Changeset in webkit [60150] by adachan@apple.com
  • 13 edits
    2 adds in trunk

WebCore:

Reviewed by Steve Falkenburg.

Add a base class for DOMTimer called SuspendableTimer which captures just the
basic functionality of TimerBase and ActiveDOMObject combined. It does not
contain functionality specific to scripting timers.


SuspendableTimer is used in fixing https://bugs.webkit.org/show_bug.cgi?id=39651

  • Android.mk:
  • CMakeLists.txt:
  • GNUmakefile.am:
  • WebCore.gypi:
  • WebCore.pro:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.xcodeproj/project.pbxproj:
  • page/DOMTimer.cpp: (WebCore::DOMTimer::DOMTimer): (WebCore::DOMTimer::contextDestroyed): (WebCore::DOMTimer::stop):
  • page/DOMTimer.h:
  • page/SuspendableTimer.cpp: Added. (WebCore::SuspendableTimer::SuspendableTimer): (WebCore::SuspendableTimer::~SuspendableTimer): (WebCore::SuspendableTimer::hasPendingActivity): (WebCore::SuspendableTimer::stop): (WebCore::SuspendableTimer::suspend): (WebCore::SuspendableTimer::resume): (WebCore::SuspendableTimer::canSuspend):
  • page/SuspendableTimer.h: Added.

WebKit/win:

Reviewed by Steve Falkenburg.

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


Make m_closeWindowTimer a SuspendableTimer, so it is properly suspended
when page loading is deferred.

  • WebView.cpp: (WebView::WebView): m_closeWindowTimer is now a pointer to a SuspendableTimer. (WindowCloseTimer::create): (WindowCloseTimer::WindowCloseTimer): (WindowCloseTimer::contextDestroyed): Make sure we delete the WindowCloseTimer in the end. (WindowCloseTimer::fired): (WebView::closeWindowSoon): (WebView::closeWindowTimerFired): (WebView::notifyPreferencesChanged): Can just check for the existence m_closeWindowTimer, since we only create it when we need to start the timer.
  • WebView.h:
1:56 AM Changeset in webkit [60149] by tony@chromium.org
  • 2 edits in trunk/LayoutTests

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

Not reviewed, fixing the expected result.

[chromium] add v8 baseline for html5lib/webkit-runner.html (error message differences)
https://bugs.webkit.org/show_bug.cgi?id=39659

I checked in expected results generated from the wrong revision.

  • platform/chromium/html5lib/webkit-runner-expected.txt:
1:53 AM Changeset in webkit [60148] by eric@webkit.org
  • 4 edits in trunk/WebCore

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

Reviewed by Nate Chapin.

Remove custom bindings for Element.SetAttribute*
https://bugs.webkit.org/show_bug.cgi?id=39604

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

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

  • bindings/js/JSElementCustom.cpp:
  • bindings/v8/custom/V8ElementCustom.cpp:
  • dom/Element.idl:
1:38 AM Changeset in webkit [60147] by tony@chromium.org
  • 1 edit
    2 adds in trunk/LayoutTests

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

Reviewed by Adam Barth.

[chromium] add v8 baseline for html5lib/webkit-runner.html (error message differences)
https://bugs.webkit.org/show_bug.cgi?id=39659

  • platform/chromium/html5lib/webkit-runner-expected.txt: Added.
1:22 AM Changeset in webkit [60146] by mrowe@apple.com
  • 5 edits in branches/safari-533-branch

Versioning.

1:21 AM Changeset in webkit [60145] by mrowe@apple.com
  • 1 copy in tags/Safari-533.11

New tag.

1:14 AM Changeset in webkit [60144] by tony@chromium.org
  • 2 edits
    1 move
    1 delete in trunk/LayoutTests

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

Not reviewed, updating test expectations.

[chromium] Fix test expectation for fast/dom/global-constructors.html
https://bugs.webkit.org/show_bug.cgi?id=39656

This test was modified in r60119 and the V8 specific expecatation needs updating.
Also disable fast/dom/prototype-property.html because it's failing.

  • platform/chromium-mac/fast/dom/global-constructors-expected.txt: Removed.
  • platform/chromium-win/fast/dom/global-constructors-expected.txt: Removed.
  • platform/chromium/fast/dom/global-constructors-expected.txt: Copied from LayoutTests/platform/chromium-mac/fast/dom/global-constructors-expected.txt.
  • platform/chromium/test_expectations.txt:
1:10 AM Changeset in webkit [60143] by mrowe@apple.com
  • 12 edits
    2 adds in branches/safari-533-branch

Merge r60110.

1:01 AM Changeset in webkit [60142] by mrowe@apple.com
  • 5 adds in branches/safari-533-branch/LayoutTests/compositing

Add results for a few new compositing tests that were missing them.

12:52 AM Changeset in webkit [60141] by yurys@chromium.org
  • 10 edits in trunk

2010-05-25 Yury Semikhatsky <yurys@chromium.org>

Reviewed by Pavel Feldman.

Add memory graph to Timeline overview pane.

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

  • inspector/front-end/Drawer.js: (WebInspector.Drawer): (WebInspector.Drawer.prototype.show.animationFinished): (WebInspector.Drawer.prototype.show): (WebInspector.Drawer.prototype.hide): (WebInspector.Drawer.prototype.set currentPanelCounters):
  • inspector/front-end/Panel.js:
  • inspector/front-end/TimelineOverviewPane.js: (WebInspector.TimelineOverviewPane): (WebInspector.TimelineOverviewPane.prototype.showTimelines): (WebInspector.TimelineOverviewPane.prototype.showMemoryGraph): (WebInspector.TimelineOverviewPane.prototype._forAllRecords): (WebInspector.TimelineOverviewPane.prototype.update): (WebInspector.TimelineOverviewPane.prototype.updateMainViewWidth): (WebInspector.TimelineOverviewPane.prototype._endWindowDragging): (WebInspector.TimelineOverviewPane.prototype._createTimelineCategoryStatusBarCheckbox): (WebInspector.HeapGraph): (WebInspector.HeapGraph.prototype.get element): (WebInspector.HeapGraph.prototype.get visible): (WebInspector.HeapGraph.prototype.show): (WebInspector.HeapGraph.prototype.hide): (WebInspector.HeapGraph.prototype.setSize): (WebInspector.HeapGraph.prototype.update): (WebInspector.HeapGraph.prototype._clear): (WebInspector.HeapGraph.prototype._drawScale):
  • inspector/front-end/TimelinePanel.js: (WebInspector.TimelinePanel): (WebInspector.TimelinePanel.prototype.toolbarItemClass._createTopPane): (WebInspector.TimelinePanel.prototype.get statusBarItems): (WebInspector.TimelinePanel.prototype._timelinesOverviewItemSelected): (WebInspector.TimelinePanel.prototype._memoryOverviewItemSelected): (WebInspector.TimelinePanel.prototype.setSidebarWidth): (WebInspector.TimelinePanel.prototype.show): (WebInspector.TimelinePanel.prototype.hide):
  • inspector/front-end/inspector.css: (#counters): (#timeline-overview-sidebar): (.timeline-category-statusbar-item): (.timeline-category-statusbar-item .timeline-category-checkbox): (.timeline-category-statusbar-item .timeline-category-checkbox:checked): (.timeline-category-statusbar-item.timeline-category-loading .timeline-category-checkbox): (.timeline-category-statusbar-item.timeline-category-scripting .timeline-category-checkbox): (.timeline-category-statusbar-item.timeline-category-rendering .timeline-category-checkbox): (#timeline-overview-memory): (.timeline-records-counter): (#main-status-bar > .timeline-records-counter): (#counters > .timeline-records-counter):
  • inspector/front-end/inspector.html:
  • inspector/front-end/utilities.js: ():

2010-05-25 Yury Semikhatsky <yurys@chromium.org>

Reviewed by Pavel Feldman.

Add memory graph to Timeline overview pane.

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

  • src/js/devTools.css: (.timeline-category-statusbar-item input):
12:49 AM QtWebKitTableOfFeatures20 edited by Henry Haverinen
(diff)
12:48 AM Changeset in webkit [60140] by levin@chromium.org
  • 2 edits in trunk/WebKitSite

Improve canvas perf test accuracy.
https://bugs.webkit.org/show_bug.cgi?id=39635

Reviewed by Maciej Stachowiak.

  • demos/canvas-perf/canvas.html:
    1. Change the various tests to get the image data for the result to help ensure that the operation has completed by the time, and subtract out the time needed to do this.
    2. Made the test more flexible about number of repetitions and image size.
    3. Make the tests run separately and have a pause between them to allow for garbage collection so that results are more consistent.
    4. Added a standard logging function and shouldBe asserts to verify that the correct scaling operations were happening.
12:43 AM Changeset in webkit [60139] by abarth@webkit.org
  • 2 edits in trunk/WebCore

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

Unreviewed. Fix typo pointed out by Maciej.

  • html/HTML5Lexer.cpp: (WebCore::HTMLNames::unconsumeCharacters): (WebCore::HTML5Lexer::consumeEntity):
12:29 AM Changeset in webkit [60138] by abarth@webkit.org
  • 4 edits in trunk/LayoutTests

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

Unreviewed.

Use @type="text/plain" to silence JavaScript parse errors. These
errors show up differently in JSC and V8 and that's not what we're
trying to test with this test.

  • html5lib/resources/scriptdata01.dat:
  • html5lib/webkit-runner-expected-html5.txt:
  • html5lib/webkit-runner-expected.txt:
12:20 AM Changeset in webkit [60137] by abarth@webkit.org
  • 4 edits in trunk

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

Reviewed by Eric Seidel.

Fix <noembed> and <plaintext> content models
https://bugs.webkit.org/show_bug.cgi?id=39653

Update expected result to show new passing test.

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

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

Reviewed by Eric Seidel.

Fix <noembed> and <plaintext> content models
https://bugs.webkit.org/show_bug.cgi?id=39653

PLAINTEXTState is my favorite lexer state. :)

  • html/HTML5TreeBuilder.cpp: (WebCore::HTML5TreeBuilder::passTokenToLegacyParser):
12:19 AM Changeset in webkit [60136] by mrowe@apple.com
  • 68 edits in branches/safari-533-branch/LayoutTests

Update test results for the disabling of SVG filters.

12:19 AM Changeset in webkit [60135] by mrowe@apple.com
  • 2 edits in branches/safari-533-branch/LayoutTests/http/tests/local

Update test results for the disabling of Blob.slice.

12:19 AM Changeset in webkit [60134] by mrowe@apple.com
  • 8 edits in branches/safari-533-branch/LayoutTests

Update test results for the disabling of progress element.

12:18 AM Changeset in webkit [60133] by mrowe@apple.com
  • 2 edits in branches/safari-533-branch/LayoutTests/platform/mac/compositing/webgl

Update test results for the disabling of WebGL.

12:18 AM Changeset in webkit [60132] by mrowe@apple.com
  • 4 edits in branches/safari-533-branch/LayoutTests/inspector

Update test results after disabling audits panel and workers sidebar.

May 24, 2010:

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

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

Reviewed by David Levin.

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

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

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

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

Reviewed by Eric Seidel.

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

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

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

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

Reviewed by Eric Seidel.

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

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

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

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

Unreviewed. Sort features.

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

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

Reviewed by Kenneth Rohde Christiansen.

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

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

Build fix for 32bit systems.

Rubber-stamped by Mark Rowe.

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

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

Reviewed by Yury Semikhatsky.

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

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

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

Reviewed by Sam Weinig.

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

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

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

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

  • jit/JITCall32_64.cpp:

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

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

(JSC::JIT::privateCompileCTIMachineTrampolines):

  • jit/JITOpcodes32_64.cpp:

(JSC::JIT::privateCompileCTIMachineTrampolines):

  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION):

  • jit/JITStubs.h:

(JSC::):

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

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

Reviewed by Adam Barth.

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

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

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

Reviewed by Dimitri Glazkov.

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

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

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

Reviewed by Dimitri Glazkov.

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

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

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

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

Reviewed by Dimitri Glazkov.

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

This change fixes about 70 unexpected results.

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

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

Reviewed by Kent Tamura.

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

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

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

Reviewed by Kent Tamura.

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

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

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

Reviewed by Laszlo Gombos.

[Qt] DRT Support for removeOriginAccessWhitelistEntry

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

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

  • platform/qt/Skipped:

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

Reviewed by Laszlo Gombos.

[Qt] DRT Support for removeOriginAccessWhitelistEntry

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

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

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

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

Reviewed by Laszlo Gombos.

[Qt] DRT Support for removeOriginAccessWhitelistEntry

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

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

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

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

Reviewed by Sam Weinig.

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

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

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

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

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

Reviewed by Sam Weinig.

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

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

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

Test: fast/dom/prototype-property.html

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

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

Reviewed by Ojan Vafai.

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

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

Relanding r60075.

Reviewed by Sam Weinig.

  • bytecode/CodeBlock.cpp:

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

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

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

  • bytecompiler/BytecodeGenerator.h:

(JSC::BytecodeGenerator::emitGetByIdExceptionInfo):

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::privateExecute):

  • jit/JIT.cpp:

(JSC::JIT::privateCompileMainPass):

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

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

  • jit/JITCall32_64.cpp:

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

  • jit/JITOpcodes.cpp:

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

  • jit/JITOpcodes32_64.cpp:

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

  • jit/JITStubs.cpp:

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

  • jit/JITStubs.h:

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

  • runtime/ExceptionHelpers.cpp:

(JSC::createNotAnObjectError):

  • runtime/Executable.h:

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

  • runtime/JSFunction.cpp:

(JSC::callHostFunctionAsConstructor):

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

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

Reviewed by Adam Barth.

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

Adam Barth wrote half of this patch.

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

No review; build fix only.

Roll-out changes r60110.

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

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

Reviewed by Eric Seidel.

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

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

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

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

Try to fix the Qt build by including Settings.h

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

Merge r59974.

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

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

Not reviewed, build fix.

Fix the chromium compile due to pageZoomFactor refactoring.

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

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

Not reviewed, build fix.

Fix the chromium compile due to pageZoomFactor refactoring.

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

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

Reviewed by Eric Carlson.

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

Added WebKitSystemInterface calls for new CAImageQueue APIs.


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

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

No review; build fix only.

Roll-out changes r60094, 60096-60097.

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

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

Reviewed by Eric Carlson.

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


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


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


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


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


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

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

Reviewed by Eric Seidel.

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

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

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

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

Reviewed by Eric Seidel.

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

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

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

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

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

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

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

Unreviewed baseline only change

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

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

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

Fix build on platforms with touch code enabled.

  • page/EventHandler.cpp:

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

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

Reverting 60075 & 60084, these broke the interpreter.

Reviewed by NOBODY (revert).

  • bytecode/CodeBlock.cpp:

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

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

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

  • bytecompiler/BytecodeGenerator.h:

(JSC::BytecodeGenerator::emitGetByIdExceptionInfo):

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::privateExecute):

  • jit/JIT.cpp:

(JSC::JIT::privateCompileMainPass):

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

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

  • jit/JITCall32_64.cpp:

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

  • jit/JITOpcodes.cpp:

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

  • jit/JITOpcodes32_64.cpp:

(JSC::JIT::privateCompileCTIMachineTrampolines):

  • jit/JITStubs.cpp:

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

  • jit/JITStubs.h:

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

  • runtime/ExceptionHelpers.cpp:

(JSC::createNotAnObjectError):

  • runtime/Executable.h:

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

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

2010-05-24 Darin Adler <Darin Adler>

Reviewed by Eric Seidel.

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

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

2010-05-24 Darin Adler <Darin Adler>

Reviewed by Eric Seidel.

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

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

2010-05-24 Darin Adler <Darin Adler>

Reviewed by Eric Seidel.

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

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

2010-05-24 Darin Adler <Darin Adler>

Reviewed by Eric Seidel.

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

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

2010-05-24 Darin Adler <Darin Adler>

Reviewed by Eric Seidel.

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

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

2010-05-24 Darin Adler <Darin Adler>

Reviewed by Eric Seidel.

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

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

2010-05-24 Darin Adler <Darin Adler>

Reviewed by Eric Seidel.

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

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

2010-05-24 Darin Adler <Darin Adler>

Reviewed by Eric Seidel.

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

Refactoring only so adds no new tests.

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

Merge r60045.

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

Merge r59982.

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

Merge r60014.

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

No review; build fix only.

WebCore:

Roll-out changes r60094, 60096-60097.

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

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

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

(WebCore::WKCACFLayer::printLayer):

  • platform/graphics/win/WKCACFLayer.h:

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

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

WebKitLibraries:

Roll-out changes r60094, 60096-60097.

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

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

Not reviewed: cleaning up, actually deleting false expectations.

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

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

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

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

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

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

No review; build fix only.

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

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

No review; build fix only.

Include WKCAImageQueue.h outside the ACCELERATED_COMPOSITING check.

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

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

Reviewed by Adam Barth.

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

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

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

No functionality change, so no new tests.

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

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

Reviewed by Eric Carlson.

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

Added WebKitSystemInterface calls for new CAImageQueue APIs.


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

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

Reviewed by Eric Carlson.

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


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


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


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


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


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

Windows build fix.

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

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

Reviewed by Darin Adler.

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

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

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

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

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

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

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

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

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

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

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

Reviewed by Pavel Feldman.

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

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

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

Rubber-stamped by Eric Seidel.

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

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

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

Unreviewed. Update HTML4 parser expected results for new tests.

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

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

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

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

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

Reviewed by Eric Seidel.

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

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

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

Reviewed by Eric Seidel.

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

Add tests for DOCTYPEs.

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

Attempt to fix the Chromium build.

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

Roll over some ChangeLog files.

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

Rubber Stamped by Sam Weinig.

Accidentally committed double write of codeblock in Interpreter.

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::privateExecute):

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

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

Reviewed by Pavel Feldman.

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

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

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

Reviewed by Eric Seidel.

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

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

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

Reviewed by Adam Barth.

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

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

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

Reviewed by Adam Barth.

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

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

Yet another Windows build fix.

  • WebView.cpp:

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

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

Another Windows build fix.

  • WebView.cpp:

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

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

Fix Windows build.

  • WebView.cpp:

(WebView::canShowMIMEType):

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

Try to fix build.

  • plugins/npapi.cpp:

(NPN_ReloadPlugins):

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

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

Reviewed by Sam Weinig.

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

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

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

Reviewed by Sam Weinig.

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

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

  • bytecode/CodeBlock.cpp:

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

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

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

  • bytecompiler/BytecodeGenerator.h:

(JSC::BytecodeGenerator::emitGetByIdExceptionInfo):

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::privateExecute):

  • jit/JIT.cpp:

(JSC::JIT::privateCompileMainPass):

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

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

  • jit/JITCall32_64.cpp:

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

  • jit/JITOpcodes.cpp:

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

  • jit/JITOpcodes32_64.cpp:

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

  • jit/JITStubs.cpp:

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

  • jit/JITStubs.h:

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

  • runtime/ExceptionHelpers.cpp:

(JSC::createNotAnObjectError):

  • runtime/Executable.h:

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

  • runtime/JSFunction.cpp:

(JSC::callHostFunctionAsConstructor):

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

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

Unreviewed broken Qt test fix.

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

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

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

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

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

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

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

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

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

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

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

Unreviewed.

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

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

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

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

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

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

Unreviewed. Checked in merge error. :-(

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

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

Not reviewed.

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

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

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

Reviewed by Darin Adler.

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

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

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

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

Reviewed by Darin Adler.

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

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

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

Reviewed by Kent Tamura.

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

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

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

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

Reviewed by Kent Tamura.

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

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

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

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

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

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

Reviewed by Alexey Proskuryakov.

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

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

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

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

Reviewed by Alexey Proskuryakov.

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

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

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

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

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

Reviewed by Chris Jerdonek.

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

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

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

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

Unreviewed. Fixed a typo in test_expecations.txt.

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

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

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

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

  • platform/win/fast/text/backslash-to-yen-sign-dynamic-expected.txt:
  • platform/win/fast/text/backslash-to-yen-sign-expected.txt:
Note: See TracTimeline for information about the timeline view.